/* Pinnacle Auto — bold automotive UI */

:root {
    --ink: #0c0e12;
    --navy: #151920;
    --coral: #c41e1e;
    --coral-hot: #e02828;
    --coral-deep: #9a1515;
    --teal: #8a9199;
    --sky: #eceff2;
    --fog: #f3f4f6;
    --paper: #ffffff;
    --muted: #5a6270;
    --line: rgba(12, 14, 18, 0.1);
    --glass: rgba(255, 255, 255, 0.72);
    --shadow: 0 10px 40px rgba(12, 14, 18, 0.1);
    --shadow-lg: 0 24px 60px rgba(12, 14, 18, 0.18);
    --radius: 4px;
    --header-h: 72px;
    --font-display: 'Syne', 'Noto Sans JP', sans-serif;
    --font-hero: 'Bebas Neue', 'Syne', sans-serif;
    --font-body: 'Noto Sans JP', sans-serif;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--paper);
    line-height: 1.75;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; object-fit: cover; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
address { font-style: normal; }
ul { list-style: none; }
.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

.container {
    width: min(100%, 1180px);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.skip-link {
    position: absolute; top: -100px; left: 1rem; z-index: 9999;
    background: var(--coral); color: #fff; padding: 0.75rem 1.25rem; font-weight: 700;
}
.skip-link:focus { top: 0; }

/* Cursor glow */
.cursor-glow {
    position: fixed; width: 280px; height: 280px; border-radius: 50%;
    pointer-events: none; z-index: 0;
    background: radial-gradient(circle, rgba(196, 30, 30, 0.12), transparent 70%);
    transform: translate(-50%, -50%);
    opacity: 0; transition: opacity 0.4s;
}
body.is-pointer .cursor-glow { opacity: 1; }

.scroll-progress {
    display: none;
}

/* Header */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    height: var(--header-h);
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid transparent;
    overflow: hidden;
    transition: box-shadow 0.35s var(--ease), border-color 0.35s, background 0.35s;
}
.site-header.is-scrolled {
    box-shadow: var(--shadow);
    border-bottom-color: var(--line);
}
.site-header__inner {
    display: flex; align-items: center; justify-content: space-between;
    height: var(--header-h); gap: 1rem;
}
.site-logo {
    display: flex; align-items: center; gap: 0.65rem; z-index: 2;
}
.site-logo__mark {
    width: 28px; height: 28px; border-radius: 50%;
    background: conic-gradient(from 200deg, var(--coral), var(--teal), var(--coral));
    position: relative;
}
.site-logo__mark::after {
    content: ''; position: absolute; inset: 6px; border-radius: 50%; background: #fff;
}
.site-logo__text {
    font-family: var(--font-display);
    font-size: 1.35rem; font-weight: 800; letter-spacing: -0.02em;
    color: var(--ink);
}
.site-nav { display: flex; align-items: center; gap: 1.5rem; }
.site-nav__list { display: flex; align-items: center; gap: 0.15rem; }
.site-nav__link {
    display: inline-flex; padding: 0.45rem 0.85rem;
    font-size: 0.875rem; font-weight: 500; color: var(--ink);
    position: relative; transition: color 0.25s;
}
.site-nav__link::after {
    content: ''; position: absolute; left: 0.85rem; right: 0.85rem; bottom: 0.2rem;
    height: 2px; background: var(--coral); transform: scaleX(0);
    transform-origin: left; transition: transform 0.35s var(--ease);
}
.site-nav__link:hover, .site-nav__link.is-active { color: var(--coral); }
.site-nav__link:hover::after, .site-nav__link.is-active::after { transform: scaleX(1); }
.site-nav__link--cta {
    background: var(--coral) !important; color: #fff !important;
    padding: 0.55rem 1.2rem; border-radius: 2px; font-weight: 700;
}
.site-nav__link--cta::after { display: none; }
.site-nav__link--cta:hover { background: var(--coral-deep) !important; color: #fff !important; }
.site-nav__social { display: flex; gap: 0.5rem; }
.site-nav__social-link {
    width: 32px; height: 32px; display: grid; place-items: center;
    color: var(--muted); border-radius: 50%; transition: color 0.25s, background 0.25s;
}
.site-nav__social-link:hover { color: var(--coral); background: rgba(196, 30, 30,0.08); }

.menu-toggle {
    display: none; flex-direction: column; justify-content: center; gap: 5px;
    width: 44px; height: 44px; padding: 10px;
    background: rgba(255,255,255,0.95); border: 1px solid var(--line); cursor: pointer;
    position: fixed; top: 14px; right: 14px; z-index: 1200;
    border-radius: 4px;
    transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.menu-toggle span {
    display: block; width: 22px; height: 2px; background: var(--ink);
    transition: transform 0.35s var(--ease), opacity 0.25s;
    transform-origin: center;
}
.menu-toggle.is-active {
    background: #fff;
    border-color: var(--coral);
    box-shadow: 0 4px 16px rgba(196, 30, 30, 0.25);
}
.menu-toggle.is-active span { background: var(--ink); }
.menu-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile full-screen nav (outside header — avoids backdrop-filter clip) */
.mobile-nav {
    display: none;
}

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    padding: 0.85rem 1.75rem; font-weight: 700; font-size: 0.9rem;
    border: 2px solid transparent; border-radius: 2px; cursor: pointer;
    transition: transform 0.3s var(--ease), background 0.3s, color 0.3s, box-shadow 0.3s;
    position: relative; overflow: hidden;
}
.btn::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.25) 50%, transparent 70%);
    transform: translateX(-120%); transition: transform 0.6s var(--ease);
}
.btn:hover::before { transform: translateX(120%); }
.btn:hover { transform: translateY(-2px); }
.btn--accent, .btn--primary {
    background: var(--coral); color: #fff; border-color: var(--coral);
    box-shadow: 0 8px 24px rgba(196, 30, 30, 0.35);
}
.btn--accent:hover, .btn--primary:hover { background: var(--coral-deep); border-color: var(--coral-deep); }
.btn--outline {
    background: transparent; color: #fff; border-color: rgba(255,255,255,0.5);
}
.btn--outline:hover { background: #fff; color: var(--ink); }
.btn--ghost {
    background: transparent; color: var(--ink); border-color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: #fff; }
.btn--lg { padding: 1rem 2.25rem; font-size: 1rem; }
.btn--white {
    background: #fff; color: var(--ink); border-color: #fff;
}
.btn--white:hover { background: var(--fog); }

/* Reveal system */
.reveal {
    opacity: 0; transform: translateY(48px);
    transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-left { opacity: 0; transform: translateX(-60px); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); }
.reveal-right { opacity: 0; transform: translateX(60px); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); }
.reveal-scale { opacity: 0; transform: scale(0.88); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); }
.reveal-left.is-visible, .reveal-right.is-visible, .reveal-scale.is-visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* Section helpers */
.section { padding: 5.5rem 0; position: relative; }
.section--fog { background: var(--fog); }
.section--ink {
    background: var(--ink); color: #fff;
}
.section--slate {
    background: #5a6570; color: #fff;
}
.section-header { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 800; letter-spacing: -0.02em; line-height: 1.25;
    margin-bottom: 0.75rem;
}
.section-header p { color: var(--muted); }
.section--ink .section-header p,
.section--slate .section-header p { color: rgba(255,255,255,0.7); }
.section-tag {
    display: inline-block; font-size: 0.75rem; font-weight: 700;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--coral); margin-bottom: 0.75rem;
}
.section-tag--light { color: var(--coral-hot); }

/* ========== HOME HERO ========== */
.trav-hero {
    position: relative; min-height: 100vh;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: calc(var(--header-h) + 4rem) 0 0;
    color: #fff; overflow: hidden;
}
.trav-hero__bg {
    position: absolute; inset: 0; z-index: 0;
}
.trav-hero__bg img {
    width: 100%; height: 120%; object-fit: cover;
    animation: kenBurns 22s ease-in-out infinite alternate;
    will-change: transform;
}
.trav-hero__bg::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(11,18,32,0.35) 0%, rgba(11,18,32,0.55) 45%, rgba(11,18,32,0.75) 100%);
}
@keyframes kenBurns {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.12) translate(-2%, -1%); }
}
.trav-hero__content {
    position: relative; z-index: 2;
    text-align: center; padding: 0 1.5rem 5rem;
}
.trav-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 9vw, 5.5rem);
    line-height: 1.15; letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
    text-shadow: 0 8px 40px rgba(0,0,0,0.35);
    animation: titleIn 1.1s var(--ease-out) both;
}
.trav-hero__lead {
    max-width: 480px; margin: 0 auto 2rem;
    font-size: 1rem; color: rgba(255,255,255,0.88);
    animation: titleIn 1.1s 0.15s var(--ease-out) both;
}
.trav-hero__actions { animation: titleIn 1.1s 0.3s var(--ease-out) both; }
@keyframes titleIn {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: none; }
}
.trav-hero__cards {
    position: relative; z-index: 3;
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1rem; width: min(100%, 900px);
    margin: -3.5rem auto 0; padding: 0 1.5rem 0;
}
.hero-card {
    position: relative; aspect-ratio: 1; overflow: hidden;
    box-shadow: var(--shadow-lg);
    transform: translateY(0);
    transition: transform 0.5s var(--ease), box-shadow 0.5s;
}
.hero-card:hover { transform: translateY(-10px); box-shadow: 0 30px 60px rgba(0,0,0,0.3); }
.hero-card img {
    width: 100%; height: 100%;
    transition: transform 0.7s var(--ease);
}
.hero-card:hover img { transform: scale(1.12); }
.hero-card__label {
    position: absolute; left: 0; right: 0; bottom: 0;
    padding: 1rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.75));
    color: #fff; font-weight: 700; font-size: 0.9rem; text-align: center;
}

/* Quick info */
.quick-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem; padding-top: 5rem;
}
.quick-item { text-align: center; }
.quick-item__icon {
    width: 56px; height: 56px; margin: 0 auto 1.25rem;
    color: var(--coral); stroke: currentColor; fill: none; stroke-width: 1.5;
}
.quick-item h3 {
    font-family: var(--font-display);
    font-size: 1.15rem; font-weight: 700; margin-bottom: 0.5rem;
}
.quick-item p { color: var(--muted); font-size: 0.92rem; }

/* Testimonial asymmetric */
.testi-asym {
    display: grid; grid-template-columns: 1.1fr 0.9fr;
    gap: 0; align-items: center; min-height: 520px;
}
.testi-asym__visual {
    position: relative; height: 100%; min-height: 480px; overflow: hidden;
}
.testi-asym__visual img {
    width: 100%; height: 100%;
    transition: transform 1.2s var(--ease);
}
.testi-asym:hover .testi-asym__visual img { transform: scale(1.06); }
.testi-asym__panel {
    background: #fff; padding: 3rem 2.5rem;
    margin-left: -4rem; position: relative; z-index: 2;
    box-shadow: var(--shadow-lg);
}
.testi-asym__panel blockquote {
    font-size: 1.15rem; line-height: 1.85; margin-bottom: 1.5rem;
}
.testi-asym__panel cite {
    display: block; font-style: normal; font-weight: 700; color: var(--coral);
}
.testi-asym__panel .trip { font-size: 0.85rem; color: var(--muted); }
.testi-dots {
    display: flex; gap: 0.5rem; margin-top: 1.75rem;
}
.testi-dots button {
    width: 10px; height: 10px; border-radius: 50%; border: none;
    background: var(--line); cursor: pointer; transition: background 0.3s, transform 0.3s;
}
.testi-dots button.is-active { background: var(--coral); transform: scale(1.25); }

/* Destinations gallery */
.dest-gallery {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.dest-card {
    position: relative; aspect-ratio: 4/3; overflow: hidden;
    cursor: pointer;
}
.dest-card img {
    width: 100%; height: 100%;
    transition: transform 0.8s var(--ease), filter 0.5s;
}
.dest-card:hover img { transform: scale(1.1); filter: brightness(0.85); }
.dest-card__name {
    position: absolute; left: 50%; bottom: 1.25rem;
    transform: translateX(-50%);
    background: rgba(255,255,255,0.95);
    padding: 0.4rem 1.25rem; font-weight: 700; font-size: 0.85rem;
    letter-spacing: 0.04em; white-space: nowrap;
    transition: background 0.3s, color 0.3s, transform 0.3s;
}
.dest-card:hover .dest-card__name {
    background: var(--coral); color: #fff; transform: translateX(-50%) translateY(-4px);
}

/* Showroom film banner */
.film-banner {
    position: relative;
    min-height: clamp(420px, 56vw, 560px);
    display: grid;
    align-items: center;
    overflow: hidden;
    color: #fff;
}
.film-banner__media {
    position: absolute; inset: 0;
}
.film-banner__media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transform: scale(1.04);
    transition: transform 8s var(--ease-out);
}
.film-banner:hover .film-banner__media img {
    transform: scale(1.1);
}
.film-banner__wash {
    position: absolute; inset: 0;
    background:
        linear-gradient(105deg, rgba(12, 14, 18, 0.92) 0%, rgba(12, 14, 18, 0.72) 42%, rgba(12, 14, 18, 0.28) 100%),
        linear-gradient(0deg, rgba(196, 30, 30, 0.22), transparent 55%);
    pointer-events: none;
}
.film-banner__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    align-items: center;
    padding-block: 4.5rem;
}
.film-banner__eyebrow {
    display: inline-block;
    font-family: var(--font-hero);
    letter-spacing: 0.22em;
    font-size: 0.95rem;
    color: var(--coral-hot);
    margin-bottom: 0.85rem;
}
.film-banner__title {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 4.2vw, 3.1rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1rem;
    max-width: 14ch;
}
.film-banner__lead {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 36ch;
    margin-bottom: 1.75rem;
}
.film-banner__play {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 0.55rem 1.35rem 0.55rem 0.55rem;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    color: #fff;
    cursor: pointer;
    transition: transform 0.35s var(--ease), background 0.35s, border-color 0.35s, box-shadow 0.35s;
}
.film-banner__play:hover {
    transform: translateY(-3px);
    background: var(--coral);
    border-color: var(--coral);
    box-shadow: 0 16px 40px rgba(196, 30, 30, 0.35);
}
.film-banner__play-icon {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: #fff;
    color: var(--ink);
    display: grid; place-items: center;
    flex-shrink: 0;
    transition: color 0.35s, background 0.35s;
}
.film-banner__play:hover .film-banner__play-icon {
    background: #fff; color: var(--coral-deep);
}
.film-banner__play-text {
    display: flex; flex-direction: column; align-items: flex-start; gap: 0.1rem;
    text-align: left;
}
.film-banner__play-text strong {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
}
.film-banner__play-text small {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.7);
}
.film-banner__play:hover .film-banner__play-text small {
    color: rgba(255, 255, 255, 0.9);
}
.film-banner__gauge {
    justify-self: end;
    width: min(220px, 40vw);
    aspect-ratio: 1;
    position: relative;
    display: grid; place-items: center;
}
.film-banner__gauge-ring {
    position: absolute; inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.18);
    border-top-color: var(--coral);
    border-right-color: rgba(255, 255, 255, 0.55);
    animation: filmSpin 10s linear infinite;
}
.film-banner__gauge-label {
    font-family: var(--font-hero);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    letter-spacing: 0.14em;
    opacity: 0.9;
}
@keyframes filmSpin {
    to { transform: rotate(360deg); }
}

@media (max-width: 860px) {
    .film-banner__inner {
        grid-template-columns: 1fr;
        padding-block: 3.5rem;
    }
    .film-banner__gauge { display: none; }
    .film-banner__title { max-width: none; }
    .film-banner__lead { max-width: none; }
}

/* Services grid home */
.svc-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem 2rem;
}
.svc-item {
    padding: 0.5rem 0;
    transition: transform 0.4s var(--ease);
}
.svc-item:hover { transform: translateY(-6px); }
.svc-item__icon {
    width: 42px; height: 42px; margin-bottom: 1rem;
    color: var(--coral);
}
.svc-item h3 {
    font-family: var(--font-display);
    font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem;
}
.svc-item p { color: var(--muted); font-size: 0.9rem; margin-bottom: 0.75rem; }
.svc-item__link {
    color: var(--coral); font-weight: 700; font-size: 0.85rem;
    display: inline-flex; align-items: center; gap: 0.35rem;
    transition: gap 0.3s;
}
.svc-item__link:hover { gap: 0.65rem; }

/* Blog home */
.blog-duo {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.blog-preview {
    overflow: hidden;
}
.blog-preview__img {
    aspect-ratio: 16/10; overflow: hidden; margin-bottom: 1.25rem;
}
.blog-preview__img img {
    width: 100%; height: 100%;
    transition: transform 0.7s var(--ease);
}
.blog-preview:hover .blog-preview__img img { transform: scale(1.08); }
.blog-meta {
    display: flex; gap: 1rem; font-size: 0.8rem; color: var(--muted); margin-bottom: 0.5rem;
}
.blog-tag {
    color: var(--coral); font-weight: 700;
}
.blog-preview h3 {
    font-family: var(--font-display);
    font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; line-height: 1.4;
}
.blog-preview p { color: var(--muted); font-size: 0.92rem; }
.blog-more { text-align: center; margin-top: 2.5rem; }

/* Final CTA */
.final-cta {
    text-align: center; padding: 5.5rem 1.5rem;
}
.final-cta h2 {
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 5vw, 3rem);
    letter-spacing: -0.02em; margin-bottom: 0.5rem;
    font-weight: 800;
}
.final-cta__jp {
    color: var(--muted); margin-bottom: 2rem; font-size: 1rem;
}

/* ========== PAGE HERO (inner) ========== */
.page-hero {
    position: relative; min-height: 62vh;
    display: flex; align-items: flex-end;
    padding: calc(var(--header-h) + 3rem) 0 4rem;
    color: #fff; overflow: hidden;
}
.page-hero--short { min-height: 48vh; }
.page-hero__bg { position: absolute; inset: 0; }
.page-hero__bg img {
    width: 100%; height: 115%; object-fit: cover;
    animation: kenBurns 18s ease-in-out infinite alternate;
}
.page-hero__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(120deg, rgba(11,18,32,0.8), rgba(11,18,32,0.4));
}
.page-hero__content { position: relative; z-index: 2; max-width: 720px; }
.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.75rem);
    font-weight: 800; line-height: 1.2; margin-bottom: 1rem;
}
.page-hero p { color: rgba(255,255,255,0.85); max-width: 520px; }

/* ========== ABOUT unique ========== */
.pulse-stats {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}
.pulse-stat {
    text-align: center; padding: 2rem 1rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    transition: transform 0.4s, border-color 0.4s;
}
.pulse-stat:hover { transform: translateY(-8px); border-color: var(--coral); }
.pulse-stat__value {
    font-family: var(--font-hero);
    font-size: 3rem; color: var(--coral-hot); display: block; line-height: 1;
}
.pulse-stat__label { font-size: 0.85rem; color: rgba(255,255,255,0.7); margin-top: 0.5rem; display: block; }

.timeline {
    position: relative; padding-left: 2rem;
}
.timeline::before {
    content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
    background: linear-gradient(var(--coral), var(--teal));
}
.timeline__item {
    position: relative; padding: 0 0 2.5rem 2rem;
}
.timeline__item::before {
    content: ''; position: absolute; left: -2rem; top: 0.35rem;
    width: 14px; height: 14px; border-radius: 50%;
    background: var(--coral); border: 3px solid #fff;
    box-shadow: 0 0 0 3px var(--coral); transform: translateX(-6px);
}
.timeline__year {
    font-family: var(--font-hero); font-size: 1.75rem; color: var(--coral);
    letter-spacing: 0.05em;
}
.timeline__item h3 { font-family: var(--font-display); font-weight: 700; margin: 0.25rem 0; }
.timeline__item p { color: var(--muted); }

.values-strip {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
    background: var(--line);
}
.values-strip article {
    background: var(--fog); padding: 3rem 2rem; text-align: center;
    transition: background 0.4s, color 0.4s;
}
.values-strip article:hover { background: var(--ink); color: #fff; }
.values-strip article span {
    font-family: var(--font-display); font-weight: 700; font-size: 1.1rem;
}

.studio-split {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0; min-height: 420px;
}
.studio-split__img { overflow: hidden; }
.studio-split__img img {
    width: 100%; height: 100%; min-height: 420px;
    transition: transform 1s var(--ease);
}
.studio-split:hover .studio-split__img img { transform: scale(1.08); }
.studio-split__copy {
    background: var(--navy); color: #fff; padding: 3.5rem;
    display: flex; flex-direction: column; justify-content: center;
}
.studio-split__copy h2 {
    font-family: var(--font-display); font-size: 2rem; margin-bottom: 1rem;
}
.studio-split__copy p { color: rgba(255,255,255,0.75); margin-bottom: 1.5rem; }

.mission-mosaic {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.mission-tile {
    position: relative; overflow: hidden; min-height: 320px;
}
.mission-tile img {
    position: absolute; inset: 0; width: 100%; height: 100%;
    transition: transform 0.8s var(--ease);
}
.mission-tile:hover img { transform: scale(1.1); }
.mission-tile__body {
    position: absolute; inset: 0;
    background: linear-gradient(transparent 30%, rgba(11,18,32,0.9));
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 1.75rem; color: #fff;
}
.mission-tile h3 { font-family: var(--font-display); margin-bottom: 0.5rem; }
.mission-tile p { font-size: 0.88rem; color: rgba(255,255,255,0.75); }

.quote-banner {
    text-align: center; padding: 4rem 2rem;
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2.5vw, 1.85rem);
    font-weight: 700; line-height: 1.6;
    background: linear-gradient(135deg, var(--sky), #fff 50%, rgba(196, 30, 30,0.08));
}

/* ========== SERVICES unique ========== */
.orbit-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.orbit-card {
    background: #fff; border: 1px solid var(--line);
    padding: 2rem 1.5rem; position: relative; overflow: hidden;
    transition: border-color 0.4s, transform 0.4s, box-shadow 0.4s;
}
.orbit-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--coral), var(--teal));
    transform: scaleX(0); transform-origin: left; transition: transform 0.45s var(--ease);
}
.orbit-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.orbit-card:hover::before { transform: scaleX(1); }
.orbit-card__img {
    aspect-ratio: 16/10; overflow: hidden; margin-bottom: 1.25rem;
}
.orbit-card__img img {
    width: 100%; height: 100%; transition: transform 0.6s;
}
.orbit-card:hover .orbit-card__img img { transform: scale(1.08); }
.orbit-card h3 { font-family: var(--font-display); font-weight: 700; margin-bottom: 0.5rem; }
.orbit-card p { color: var(--muted); font-size: 0.9rem; margin-bottom: 0.75rem; }
.orbit-card__price { color: var(--coral); font-weight: 800; }

.tier-row {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
.tier-card {
    padding: 2.5rem 2rem; text-align: center;
    background: var(--fog); border: 2px solid transparent;
    transition: border-color 0.4s, background 0.4s, transform 0.4s;
}
.tier-card:nth-child(2) {
    background: var(--ink); color: #fff; transform: scale(1.04);
}
.tier-card:hover { border-color: var(--coral); }
.tier-card h3 { font-family: var(--font-display); font-size: 1.35rem; margin-bottom: 0.75rem; }
.tier-card p { font-size: 0.9rem; opacity: 0.8; }

.hscroll-wrap {
    overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 1rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.hscroll-wrap::-webkit-scrollbar { display: none; }
.hscroll {
    display: flex; gap: 1.5rem; width: max-content; padding: 0.5rem 0;
}
.hscroll__step {
    width: min(320px, 80vw); scroll-snap-align: start;
    background: #fff; border: 1px solid var(--line); padding: 1.75rem;
}
.hscroll__step .num {
    font-family: var(--font-hero); font-size: 2.5rem; color: var(--coral);
}
.hscroll__step h3 { font-family: var(--font-display); margin: 0.5rem 0; }
.hscroll__step p { color: var(--muted); font-size: 0.9rem; }

.perk-mosaic {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
.perk-chip {
    padding: 1.5rem; background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    font-weight: 700; text-align: center;
    transition: background 0.35s, transform 0.35s;
}
.perk-chip:hover { background: var(--coral); transform: scale(1.03); }

.marquee {
    overflow: hidden; white-space: nowrap;
    background: var(--coral); color: #fff; padding: 1rem 0;
}
.marquee__track {
    display: inline-block;
    font-family: var(--font-hero); font-size: 2rem; letter-spacing: 0.08em;
    animation: marquee 18s linear infinite;
}
@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.faq-stack details {
    border-bottom: 1px solid var(--line); padding: 1.25rem 0;
}
.faq-stack summary {
    font-family: var(--font-display); font-weight: 700; cursor: pointer;
    list-style: none; display: flex; justify-content: space-between; align-items: center;
}
.faq-stack summary::-webkit-details-marker { display: none; }
.faq-stack summary::after {
    content: '+'; font-size: 1.5rem; color: var(--coral); transition: transform 0.3s;
}
.faq-stack details[open] summary::after { transform: rotate(45deg); }
.faq-stack details p { color: var(--muted); margin-top: 0.75rem; padding-right: 2rem; }

/* ========== BLOG unique ========== */
.topic-chips {
    display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center;
}
.topic-chip {
    padding: 0.55rem 1.25rem; border: 1.5px solid var(--line);
    font-weight: 700; font-size: 0.85rem; cursor: default;
    transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.topic-chip:hover, .topic-chip.is-on {
    background: var(--coral); color: #fff; border-color: var(--coral);
}

.blog-featured {
    display: grid; grid-template-columns: 1.2fr 1fr; gap: 0;
    background: var(--ink); color: #fff; overflow: hidden;
}
.blog-featured__img { min-height: 360px; overflow: hidden; }
.blog-featured__img img {
    width: 100%; height: 100%; min-height: 360px;
    transition: transform 1s var(--ease);
}
.blog-featured:hover .blog-featured__img img { transform: scale(1.06); }
.blog-featured__body { padding: 3rem 2.5rem; display: flex; flex-direction: column; justify-content: center; }
.blog-featured__body h2 {
    font-family: var(--font-display); font-size: 1.75rem; margin: 0.75rem 0 1rem; line-height: 1.35;
}
.blog-featured__body p { color: rgba(255,255,255,0.7); margin-bottom: 1.25rem; }
.blog-featured .blog-meta { color: rgba(255,255,255,0.55); }
.blog-featured .blog-tag { color: var(--coral-hot); }

.blog-rail {
    display: grid; grid-template-columns: 1fr 280px; gap: 3rem; align-items: start;
}
.blog-list { display: flex; flex-direction: column; gap: 2rem; }
.blog-row {
    display: grid; grid-template-columns: 200px 1fr; gap: 1.5rem;
    padding-bottom: 2rem; border-bottom: 1px solid var(--line);
}
.blog-row__img { aspect-ratio: 4/3; overflow: hidden; }
.blog-row__img img {
    width: 100%; height: 100%; transition: transform 0.6s;
}
.blog-row:hover .blog-row__img img { transform: scale(1.08); }
.blog-row h3 {
    font-family: var(--font-display); font-size: 1.15rem; margin: 0.35rem 0 0.5rem;
}
.blog-row p { color: var(--muted); font-size: 0.9rem; }
.blog-aside {
    position: sticky; top: calc(var(--header-h) + 1.5rem);
    background: var(--fog); padding: 1.75rem;
}
.blog-aside h3 {
    font-family: var(--font-display); font-size: 1rem; margin-bottom: 1rem;
}
.blog-aside li {
    padding: 0.65rem 0; border-bottom: 1px solid var(--line);
    font-size: 0.88rem; font-weight: 500;
}

.field-notes {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
.field-note {
    position: relative; aspect-ratio: 3/4; overflow: hidden;
}
.field-note img {
    width: 100%; height: 100%; transition: transform 0.7s;
}
.field-note:hover img { transform: scale(1.1); }
.field-note span {
    position: absolute; left: 0.75rem; bottom: 0.75rem;
    background: #fff; padding: 0.25rem 0.65rem; font-size: 0.75rem; font-weight: 700;
}

.newsletter-glass {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0;
    background: linear-gradient(135deg, var(--navy), #1a3a52);
    color: #fff; overflow: hidden;
}
.newsletter-glass__img { min-height: 320px; }
.newsletter-glass__img img { width: 100%; height: 100%; min-height: 320px; }
.newsletter-glass__copy {
    padding: 3rem; display: flex; flex-direction: column; justify-content: center;
    backdrop-filter: blur(4px);
}
.newsletter-glass__copy h2 {
    font-family: var(--font-display); font-size: 1.85rem; margin-bottom: 0.75rem;
}
.newsletter-glass__copy p { color: rgba(255,255,255,0.7); margin-bottom: 1.5rem; }

/* ========== CONTACT unique ========== */
.channel-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.channel-card {
    padding: 2.25rem 1.75rem; text-align: center;
    background: #fff; border: 1px solid var(--line);
    transition: transform 0.4s, box-shadow 0.4s, border-color 0.4s;
}
.channel-card:hover {
    transform: translateY(-8px); box-shadow: var(--shadow); border-color: var(--coral);
}
.channel-card__icon {
    width: 48px; height: 48px; margin: 0 auto 1rem;
    border-radius: 50%; background: rgba(196, 30, 30,0.1);
    display: grid; place-items: center; color: var(--coral); font-size: 1.25rem;
}
.channel-card h3 { font-family: var(--font-display); margin-bottom: 0.5rem; }
.channel-card p { color: var(--muted); font-size: 0.9rem; }

.contact-duo {
    display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 2.5rem;
}
.contact-form-panel, .contact-info-panel {
    padding: 2.5rem;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(12px);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}
.contact-form-panel h2, .contact-info-panel h2 {
    font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 0.5rem;
}
.contact-form-panel > p, .contact-info-panel > p {
    color: var(--muted); margin-bottom: 1.5rem; font-size: 0.92rem;
}
.contact-form-panel label {
    display: block; margin-bottom: 1.15rem;
}
.contact-form-panel label span {
    display: block; font-size: 0.8rem; font-weight: 700; margin-bottom: 0.4rem;
}
.contact-form-panel input,
.contact-form-panel textarea {
    width: 100%; padding: 0.85rem 1rem;
    border: 1.5px solid var(--line); background: var(--fog);
    transition: border-color 0.3s, box-shadow 0.3s;
}
.contact-form-panel input:focus,
.contact-form-panel textarea:focus {
    outline: none; border-color: var(--coral);
    box-shadow: 0 0 0 3px rgba(196, 30, 30,0.15);
}
.notice {
    padding: 1rem 1.25rem; margin-bottom: 1.25rem; font-size: 0.9rem;
}
.notice--success { background: rgba(13,148,136,0.12); color: #0f766e; }
.notice--error { background: rgba(196, 30, 30,0.12); color: var(--coral-deep); }

.contact-details__item { margin-bottom: 1.25rem; }
.contact-details__item strong {
    display: block; font-size: 0.75rem; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--coral); margin-bottom: 0.25rem;
}
.promise-row {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
.promise-card {
    padding: 2rem 1.5rem; text-align: center;
    background: var(--ink); color: #fff;
    transition: transform 0.4s;
}
.promise-card:hover { transform: translateY(-6px); }
.promise-card strong {
    display: block; font-family: var(--font-display); font-size: 1.1rem;
}

.visit-steps {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    position: relative;
}
.visit-step {
    position: relative;
    background: #fff;
    border: 1px solid var(--line);
    padding: 1.75rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform 0.35s var(--ease), box-shadow 0.35s, border-color 0.35s;
}
.visit-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: rgba(196, 30, 30, 0.35);
}
.visit-step__num {
    font-family: var(--font-hero);
    font-size: 2.5rem;
    line-height: 1;
    color: var(--coral);
    letter-spacing: 0.04em;
}
.visit-step__icon {
    width: 44px; height: 44px;
    color: var(--ink);
    opacity: 0.75;
}
.visit-step__icon svg { width: 100%; height: 100%; }
.visit-step__label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 0.35rem;
}
.visit-step__body p {
    font-weight: 500;
    line-height: 1.65;
    margin: 0;
}
.visit-step::before { content: none; }

.map-bleed {
    position: relative; height: 420px; overflow: hidden;
}
.map-bleed iframe {
    width: 100%; height: 100%; border: 0; filter: grayscale(0.3) contrast(1.05);
    transition: filter 0.5s;
}
.map-bleed:hover iframe { filter: none; }
.map-bleed__label {
    position: absolute; top: 1.5rem; left: 1.5rem;
    background: #fff; padding: 0.75rem 1.25rem;
    font-family: var(--font-display); font-weight: 700;
    box-shadow: var(--shadow);
}

/* Footer */
.site-footer {
    background: #1a1f26; color: rgba(255,255,255,0.75); padding-top: 4rem;
}
.site-footer__top {
    display: grid; grid-template-columns: 1.5fr 0.9fr 1.1fr 1.4fr; gap: 2.5rem;
    padding-bottom: 3rem;
}
.site-footer h3 {
    font-family: var(--font-display); color: #fff;
    font-size: 1rem; margin-bottom: 1.25rem;
}
.site-footer__logo {
    display: inline-flex; align-items: center; gap: 0.65rem;
    color: #fff; margin-bottom: 0.75rem;
}
.site-footer__logo strong {
    font-family: var(--font-display); font-size: 1.15rem; font-weight: 800;
}
.site-footer__tagline {
    font-size: 0.85rem; color: var(--coral-hot);
    letter-spacing: 0.04em; margin-bottom: 0.85rem;
}
.site-footer__desc { font-size: 0.9rem; line-height: 1.8; max-width: 360px; margin-bottom: 1.25rem; }
.site-footer__social {
    display: flex; gap: 0.6rem; list-style: none;
}
.site-footer__col ul { display: flex; flex-direction: column; gap: 0.55rem; }
.site-footer__col a {
    font-size: 0.9rem; transition: color 0.25s;
}
.site-footer__col a:hover { color: var(--coral-hot); }
.site-footer__address {
    font-size: 0.88rem; line-height: 1.75; margin-bottom: 1.5rem;
}
.site-footer__address p { margin-bottom: 0.4rem; }
.site-footer__address a { transition: color 0.25s; }
.site-footer__address a:hover { color: var(--coral-hot); }
.site-footer__hours { color: rgba(255,255,255,0.55); font-size: 0.82rem; }
.site-footer__news-heading { margin-top: 0.5rem; }
.footer-newsletter {
    display: flex; gap: 0.5rem; flex-wrap: wrap;
}
.footer-newsletter input {
    flex: 1; min-width: 160px; padding: 0.75rem 1rem;
    border: 1px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.06);
    color: #fff;
}
.footer-newsletter input::placeholder { color: rgba(255,255,255,0.4); }
.site-footer__bottom {
    background: #12161c; padding: 1.5rem 0;
}
.site-footer__bottom-inner {
    display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}
.site-footer__bottom-note {
    font-size: 0.82rem; color: rgba(255,255,255,0.45);
}
.social-links { display: flex; gap: 0.75rem; }
.social-links__item {
    width: 36px; height: 36px; display: grid; place-items: center;
    border-radius: 50%; background: rgba(255,255,255,0.08);
    transition: background 0.3s, color 0.3s;
}
.social-links__item:hover { background: var(--coral); color: #fff; }
.back-to-top {
    width: 40px; height: 40px; border: 1px solid rgba(255,255,255,0.25);
    background: transparent; color: #fff; cursor: pointer;
    transition: background 0.3s, border-color 0.3s;
}
.back-to-top:hover { background: var(--coral); border-color: var(--coral); }

.text-link {
    color: var(--coral); font-weight: 700; font-size: 0.9rem;
    display: inline-flex; gap: 0.35rem; transition: gap 0.3s;
}
.text-link:hover { gap: 0.65rem; }
.text-center { text-align: center; }

.band-cta {
    text-align: center; padding: 4.5rem 1.5rem;
}
.band-cta h2 {
    font-family: var(--font-display); font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 0.75rem;
}
.band-cta p { color: var(--muted); margin-bottom: 1.75rem; max-width: 480px; margin-left: auto; margin-right: auto; }
.section--ink .band-cta p { color: rgba(255,255,255,0.7); }

/* Parallax helper */
[data-parallax] { will-change: transform; }

/* Video modal */
.video-modal {
    position: fixed; inset: 0; z-index: 3000;
    background: rgba(0,0,0,0.88);
    display: none; align-items: center; justify-content: center; padding: 2rem;
}
.video-modal.is-open { display: flex; }
.video-modal__inner {
    position: relative; width: min(900px, 100%); aspect-ratio: 16/9;
    background: #000;
}
.video-modal__inner iframe { width: 100%; height: 100%; border: 0; }
.video-modal__close {
    position: absolute; top: -2.5rem; right: 0;
    background: none; border: none; color: #fff; font-size: 1.75rem; cursor: pointer;
}

/* Tap ripple */
.btn, .site-nav__link--cta, .mobile-nav__link--cta, .film-banner__play {
    position: relative; overflow: hidden;
}
.tap-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    transform: scale(0);
    animation: rippleOut 0.55s ease-out forwards;
    pointer-events: none; z-index: 2;
}
@keyframes rippleOut {
    to { transform: scale(2.4); opacity: 0; }
}

/* Responsive */
@media (max-width: 980px) {
    .trav-hero__cards { grid-template-columns: repeat(3, 1fr); margin-top: -2rem; }
    .quick-grid, .dest-gallery, .svc-grid, .orbit-grid, .mission-mosaic,
    .pulse-stats, .values-strip, .tier-row, .perk-mosaic, .channel-grid,
    .promise-row, .field-notes { grid-template-columns: repeat(2, 1fr); }
    .visit-steps { grid-template-columns: 1fr; gap: 1rem; }
    .testi-asym { grid-template-columns: 1fr; }
    .testi-asym__panel { margin-left: 1.5rem; margin-right: 1.5rem; margin-top: -3rem; }
    .blog-duo, .blog-featured, .studio-split,
    .newsletter-glass, .site-footer__top { grid-template-columns: 1fr 1fr; }
    .site-footer__brand, .site-footer__col--contact { grid-column: 1 / -1; }
    .contact-duo {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .blog-rail {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .blog-aside {
        position: static;
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
    }
    .blog-row { grid-template-columns: 160px 1fr; gap: 1.15rem; }
    .tier-card:nth-child(2) { transform: none; }

    .site-header { overflow: hidden; }
    .site-header.is-menu-open {
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        box-shadow: none;
        border-color: transparent;
    }
    .site-header.is-menu-open .site-logo { opacity: 0; pointer-events: none; }
    .site-nav--desktop { display: none !important; }
    .menu-toggle { display: flex; }

    .mobile-nav {
        display: flex;
        flex-direction: column;
        position: fixed;
        inset: 0;
        z-index: 1150;
        background: #0b1220;
        color: #fff;
        padding: calc(var(--header-h) + 0.5rem) 1.75rem max(2rem, env(safe-area-inset-bottom));
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-12px);
        transition: opacity 0.4s var(--ease), visibility 0.4s, transform 0.45s var(--ease);
    }
    .mobile-nav[hidden] { display: flex !important; }
    .mobile-nav.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }
    .mobile-nav__top {
        margin-bottom: 2rem;
    }
    .mobile-nav__logo {
        display: inline-flex;
        align-items: center;
        gap: 0.65rem;
        color: #fff;
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity 0.4s 0.05s, transform 0.4s 0.05s;
    }
    .mobile-nav.is-open .mobile-nav__logo {
        opacity: 1;
        transform: none;
    }
    .mobile-nav__logo strong {
        font-family: var(--font-display);
        font-size: 1.35rem;
        font-weight: 800;
    }
    .mobile-nav__logo .site-logo__mark::after { background: #0b1220; }

    .mobile-nav__list {
        display: flex;
        flex-direction: column;
        gap: 0;
        flex: 1;
    }
    .mobile-nav__item {
        opacity: 0;
        transform: translateX(32px);
        transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .mobile-nav.is-open .mobile-nav__item {
        opacity: 1;
        transform: none;
    }
    .mobile-nav.is-open .mobile-nav__item:nth-child(1) { transition-delay: 0.08s; }
    .mobile-nav.is-open .mobile-nav__item:nth-child(2) { transition-delay: 0.14s; }
    .mobile-nav.is-open .mobile-nav__item:nth-child(3) { transition-delay: 0.2s; }
    .mobile-nav.is-open .mobile-nav__item:nth-child(4) { transition-delay: 0.26s; }
    .mobile-nav.is-open .mobile-nav__item:nth-child(5) { transition-delay: 0.32s; }
    .mobile-nav.is-open .mobile-nav__item:nth-child(6) { transition-delay: 0.38s; }

    .mobile-nav__link {
        display: flex;
        align-items: center;
        width: 100%;
        padding: 1.1rem 0;
        font-size: 1.45rem;
        font-weight: 700;
        color: #fff;
        letter-spacing: 0.02em;
        transition: color 0.25s, padding-left 0.3s var(--ease);
        -webkit-tap-highlight-color: transparent;
    }
    .mobile-nav__link:active,
    .mobile-nav__link:hover { color: var(--coral-hot); padding-left: 0.5rem; }
    .mobile-nav__link.is-active { color: var(--coral-hot); }

    .mobile-nav__link--cta {
        margin-top: 1.5rem;
        margin-bottom: 0.5rem;
        justify-content: center;
        padding: 1rem 1.5rem !important;
        background: var(--coral);
        color: #fff !important;
        border-radius: 2px;
        border-bottom: none;
        font-size: 1.1rem;
        box-shadow: 0 8px 28px rgba(196, 30, 30, 0.4);
    }
    .mobile-nav__item:has(.mobile-nav__link--cta) {
        border-bottom: none;
    }
    .mobile-nav__link--cta:active,
    .mobile-nav__link--cta:hover {
        padding-left: 1.5rem !important;
        background: var(--coral-deep);
        color: #fff !important;
    }
    .mobile-nav.is-open .mobile-nav__link--cta {
        animation: ctaPulse 2.2s ease-in-out 0.6s infinite;
    }

    .mobile-nav__footer {
        margin-top: auto;
        padding-top: 2rem;
        opacity: 0;
        transform: translateY(16px);
        transition: opacity 0.5s 0.4s, transform 0.5s 0.4s;
    }
    .mobile-nav.is-open .mobile-nav__footer {
        opacity: 1;
        transform: none;
    }
    .mobile-nav__tagline {
        font-size: 0.85rem;
        color: rgba(255,255,255,0.5);
        margin-bottom: 1.25rem;
    }
    .mobile-nav__social {
        display: flex;
        gap: 0.75rem;
    }
    .mobile-nav__social-link {
        width: 44px;
        height: 44px;
        display: grid;
        place-items: center;
        border-radius: 50%;
        background: rgba(255,255,255,0.08);
        color: rgba(255,255,255,0.8);
        transition: background 0.3s, color 0.3s, transform 0.3s;
    }
    .mobile-nav__social-link:active {
        transform: scale(0.9);
        background: var(--coral);
        color: #fff;
    }
}

@media (max-width: 768px) {
    :root { --header-h: 64px; }

    body { padding-bottom: env(safe-area-inset-bottom); }

    .container { padding: 0 1.15rem; }
    .section { padding: 3.25rem 0; }
    .section-header { margin-bottom: 2rem; }
    .section-header h2 { font-size: clamp(1.55rem, 7vw, 2.1rem); }
    .cursor-glow { display: none !important; }

    /* —— Hero —— */
    .trav-hero {
        min-height: 100svh;
        padding: calc(var(--header-h) + 2.5rem) 0 0;
        justify-content: flex-end;
    }
    .trav-hero__content { padding: 0 1.15rem 2.5rem; }
    .trav-hero__title {
        font-size: clamp(2.4rem, 11vw, 3.4rem);
        line-height: 1.2;
    }
    .trav-hero__lead { font-size: 0.95rem; margin-bottom: 1.5rem; }
    .trav-hero__actions .btn {
        width: 100%; max-width: 280px;
        min-height: 52px;
    }
    .trav-hero__cards {
        display: flex;
        grid-template-columns: none;
        gap: 0.85rem;
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 0 1.15rem 1.5rem;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .trav-hero__cards::-webkit-scrollbar { display: none; }
    .hero-card {
        flex: 0 0 72vw;
        max-width: 260px;
        aspect-ratio: 4/5;
        scroll-snap-align: center;
    }
    .hero-card.is-visible {
        animation: cardFloat 5s ease-in-out infinite;
    }
    .hero-card.is-visible:nth-child(2) { animation-delay: 0.6s; }
    .hero-card.is-visible:nth-child(3) { animation-delay: 1.2s; }
    .hero-card:active,
    .hero-card.is-pressed { transform: scale(0.97); animation: none; }

    /* —— Touch feedback —— */
    .btn {
        min-height: 48px;
        -webkit-tap-highlight-color: transparent;
        transition: transform 0.2s var(--ease), background 0.25s, box-shadow 0.25s, opacity 0.25s;
    }
    .btn:active {
        transform: scale(0.96) !important;
        box-shadow: 0 4px 12px rgba(196, 30, 30, 0.3);
    }
    .btn--accent, .btn--primary {
        box-shadow: 0 10px 28px rgba(196, 30, 30, 0.4);
    }

    /* —— Reveal tuned for mobile —— */
    .reveal { transform: translateY(36px); }
    .reveal-left { transform: translateX(-28px); }
    .reveal-right { transform: translateX(28px); }
    .reveal-scale { transform: scale(0.92); }

    /* —— Grids —— */
    .quick-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-top: 2.5rem;
    }
    .quick-item__icon {
        animation: iconBob 3.5s ease-in-out infinite;
    }
    .quick-item:nth-child(2) .quick-item__icon { animation-delay: 0.4s; }
    .quick-item:nth-child(3) .quick-item__icon { animation-delay: 0.8s; }

    .dest-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    .dest-card { aspect-ratio: 3/4; border-radius: 2px; }
    .dest-card__name {
        font-size: 0.75rem; padding: 0.3rem 0.75rem; bottom: 0.75rem;
    }
    .dest-card:active img { transform: scale(1.08); }

    .svc-grid { grid-template-columns: 1fr; gap: 1.75rem; }
    .svc-item {
        padding: 1.25rem;
        background: var(--fog);
        border-left: 3px solid var(--coral);
    }
    .svc-item:active { transform: translateY(-2px) scale(0.99); }

    .orbit-grid, .mission-mosaic, .perk-mosaic,
    .channel-grid, .promise-row, .visit-steps,
    .values-strip, .tier-row, .pulse-stats { grid-template-columns: 1fr; gap: 1rem; }

    .field-notes { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }

    .testi-asym__visual { min-height: 280px; }
    .testi-asym__panel {
        margin: -2.5rem 1rem 0;
        padding: 1.75rem 1.35rem;
    }
    .testi-dots button {
        width: 12px; height: 12px;
        min-width: 12px;
    }

    .film-banner__play:active {
        transform: scale(0.97);
    }

    .blog-duo { gap: 2rem; }
    .blog-rail {
        grid-template-columns: 1fr;
        gap: 1.75rem;
        overflow: visible;
    }
    .blog-list { gap: 1.5rem; }
    .blog-row {
        grid-template-columns: 1fr;
        gap: 0.85rem;
        padding-bottom: 1.5rem;
    }
    .blog-row__img {
        aspect-ratio: 16/10;
        border-radius: 2px;
    }
    .blog-row h3 { font-size: 1.1rem; line-height: 1.4; }
    .blog-row p {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .blog-aside {
        position: static;
        padding: 1.35rem 1.25rem;
        border-left: 3px solid var(--coral);
        background: #fff;
        box-shadow: var(--shadow);
    }
    .blog-aside h3 {
        font-size: 1.05rem;
        margin-bottom: 0.85rem;
    }
    .blog-aside ul {
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    .blog-aside li {
        padding: 0.8rem 0;
        font-size: 0.9rem;
        line-height: 1.55;
    }
    .blog-aside li:last-child { border-bottom: none; }
    .blog-featured {
        grid-template-columns: 1fr;
    }
    .blog-featured__img,
    .blog-featured__img img { min-height: 220px; }
    .blog-featured__body { padding: 1.75rem 1.35rem; }
    .blog-featured__body h2 { font-size: 1.35rem; }
    .topic-chips {
        display: flex;
        flex-wrap: nowrap;
        gap: 0.55rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 0.25rem;
        margin: 0 -1.15rem;
        padding-left: 1.15rem;
        padding-right: 1.15rem;
    }
    .topic-chips::-webkit-scrollbar { display: none; }
    .topic-chip {
        flex: 0 0 auto;
        white-space: nowrap;
    }
    .newsletter-glass,
    .blog-duo {
        grid-template-columns: 1fr;
    }

    .page-hero {
        min-height: 52svh;
        padding: calc(var(--header-h) + 2rem) 0 2.5rem;
    }
    .page-hero h1 { font-size: clamp(1.85rem, 8vw, 2.6rem); }

    .contact-duo {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    .contact-form-panel,
    .contact-info-panel {
        padding: 1.5rem 1.25rem;
        width: 100%;
        max-width: 100%;
    }
    .contact-form-panel h2,
    .contact-info-panel h2 {
        font-size: 1.35rem;
        line-height: 1.35;
    }
    .contact-form-panel form {
        display: flex;
        flex-direction: column;
    }
    .contact-form-panel .btn {
        width: 100%;
        margin-top: 0.35rem;
        white-space: nowrap;
        writing-mode: horizontal-tb;
    }
    .contact-form-panel input,
    .contact-form-panel textarea {
        font-size: 16px;
        min-height: 48px;
        box-sizing: border-box;
    }
    .contact-form-panel textarea { min-height: 140px; }
    .contact-details__item {
        margin-bottom: 1.1rem;
    }
    .contact-details__item strong {
        display: block;
        margin-bottom: 0.25rem;
    }
    .channel-grid,
    .promise-row,
    .visit-steps {
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }
    .visit-step {
        flex-direction: row;
        align-items: flex-start;
        gap: 1rem;
        padding: 1.25rem 1.15rem;
    }
    .visit-step__num {
        font-size: 1.85rem;
        min-width: 2.2rem;
        flex-shrink: 0;
    }
    .visit-step__icon {
        display: none;
    }
    .visit-step__body {
        flex: 1;
        min-width: 0;
    }
    .visit-step__label {
        font-size: 0.7rem;
    }
    .visit-step__body p {
        font-size: 0.95rem;
    }
    .visit-step:active {
        transform: scale(0.99);
    }

    .studio-split__img img { min-height: 280px; }
    .studio-split__copy { padding: 2rem 1.5rem; }

    .newsletter-glass__copy { padding: 2rem 1.5rem; }
    .newsletter-glass__img { min-height: 220px; }
    .newsletter-glass__img img { min-height: 220px; }

    .hscroll__step { width: min(280px, 78vw); }

    .map-bleed { height: 300px; }
    .map-bleed__label {
        font-size: 0.8rem; padding: 0.5rem 0.85rem;
        top: 1rem; left: 1rem;
    }

    .faq-stack { position: relative; z-index: 1; }
    .faq-stack summary {
        padding: 0.35rem 0;
        min-height: 48px;
        font-size: 1rem;
    }
    .faq-stack details[open] {
        animation: faqOpen 0.35s var(--ease);
    }

    .final-cta { padding: 3.5rem 1.15rem; }
    .final-cta h2 { font-size: clamp(1.6rem, 7vw, 2.2rem); }
    .final-cta .btn { width: 100%; max-width: 280px; }

    .band-cta { padding: 3.25rem 1.15rem; }
    .band-cta .btn { width: 100%; max-width: 280px; }

    .site-footer { padding-top: 3rem; }
    .site-footer__top { grid-template-columns: 1fr; gap: 2rem; padding-bottom: 2rem; }
    .site-footer__brand, .site-footer__col--contact { grid-column: auto; }
    .footer-newsletter { flex-direction: column; }
    .footer-newsletter input { width: 100%; min-height: 48px; font-size: 16px; }
    .footer-newsletter .btn { width: 100%; }
    .site-footer__bottom-inner {
        flex-direction: column; text-align: center; gap: 1rem;
    }

    .marquee__track { font-size: 1.5rem; }

    .orbit-card:active,
    .mission-tile:active,
    .blog-preview:active .blog-preview__img img,
    .field-note:active img {
        transform: scale(0.98);
    }
    .orbit-card:active .orbit-card__img img,
    .mission-tile:active img { transform: scale(1.06); }

    .dest-card.is-visible::after,
    .hero-card.is-visible::after,
    .orbit-card.is-visible .orbit-card__img::after {
        content: '';
        position: absolute; inset: 0;
        background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.22) 50%, transparent 60%);
        animation: sheen 1.2s var(--ease) 0.2s both;
        pointer-events: none; z-index: 2;
    }
    .dest-card, .orbit-card__img { position: relative; overflow: hidden; }

    /* —— Mobile motion polish —— */
    .section-header.reveal {
        transform: translateY(28px);
    }
    .section-header.reveal.is-visible {
        animation: textRise 0.85s var(--ease-out) both;
    }
    .section-header .section-tag {
        display: inline-block;
    }
    .section-header.is-visible .section-tag {
        animation: tagPop 0.55s var(--ease-out) 0.05s both;
    }
    .section-header.is-visible h2 {
        animation: textRise 0.75s var(--ease-out) 0.12s both;
    }
    .section-header.is-visible p {
        animation: textRise 0.75s var(--ease-out) 0.22s both;
    }

    .page-hero__content .section-tag {
        animation: tagPop 0.6s var(--ease-out) 0.1s both;
    }
    .page-hero__content h1 {
        animation: titleIn 0.95s var(--ease-out) 0.18s both;
    }
    .page-hero__content p {
        animation: titleIn 0.95s var(--ease-out) 0.32s both;
    }
    .page-hero__bg img {
        animation: kenBurns 20s ease-in-out infinite alternate;
    }

    .dest-card img,
    .blog-row__img img,
    .blog-featured__img img,
    .svc-item + .svc-item,
    .field-note img,
    .orbit-card__img img,
    .mission-tile img,
    .studio-split__img img {
        will-change: transform;
    }
    .dest-card img,
    .blog-row__img img,
    .field-note img,
    .orbit-card__img img {
        transform: scale(1.08);
        transition: transform 1.1s var(--ease-out), filter 0.45s;
    }
    .dest-card.is-visible img,
    .blog-row.is-visible .blog-row__img img,
    .field-note.is-visible img,
    .orbit-card.is-visible .orbit-card__img img,
    .img-inview img {
        transform: scale(1);
        animation: imgSettle 1.15s var(--ease-out) both;
    }
    .dest-card.is-visible:nth-child(2) img { animation-delay: 0.06s; }
    .dest-card.is-visible:nth-child(3) img { animation-delay: 0.12s; }
    .dest-card.is-visible:nth-child(4) img { animation-delay: 0.18s; }

    .blog-row {
        opacity: 0;
        transform: translateY(28px);
        transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
    }
    .blog-row.is-visible,
    .blog-row.reveal.is-visible {
        opacity: 1;
        transform: none;
    }
    .blog-aside {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
    }
    .blog-aside.is-visible,
    .blog-aside.reveal-right.is-visible {
        opacity: 1;
        transform: none;
    }
    .blog-aside.is-visible li {
        animation: tipSlide 0.5s var(--ease-out) both;
    }
    .blog-aside.is-visible li:nth-child(1) { animation-delay: 0.1s; }
    .blog-aside.is-visible li:nth-child(2) { animation-delay: 0.2s; }
    .blog-aside.is-visible li:nth-child(3) { animation-delay: 0.3s; }

    .text-link {
        position: relative;
        display: inline-block;
        transition: color 0.25s, transform 0.25s;
    }
    .text-link::after {
        content: '';
        position: absolute; left: 0; bottom: -2px;
        width: 0; height: 2px; background: var(--coral);
        transition: width 0.35s var(--ease);
    }
    .blog-row.is-visible .text-link::after { width: 100%; transition-delay: 0.35s; }
    .text-link:active { transform: translateX(3px); }

    .trav-hero .btn,
    .film-banner__play,
    .band-cta .btn,
    .final-cta .btn,
    .page-hero + .section .btn--accent {
        animation: ctaPulse 2.4s ease-in-out 1s infinite;
    }
    .trav-hero .btn:active,
    .film-banner__play:active,
    .band-cta .btn:active,
    .final-cta .btn:active {
        animation: none;
    }

    .quick-item {
        transition: transform 0.3s var(--ease), box-shadow 0.3s;
    }
    .quick-item.is-visible {
        animation: softPop 0.7s var(--ease-out) both;
    }
    .quick-item:active {
        transform: scale(0.98);
    }

    .svc-item.is-visible,
    .tier-card.is-visible,
    .perk-chip.is-visible,
    .channel-card.is-visible {
        animation: softPop 0.65s var(--ease-out) both;
    }

    .film-banner.is-visible .film-banner__title {
        animation: textRise 0.8s var(--ease-out) both;
    }
    .film-banner.is-visible .film-banner__lead {
        animation: textRise 0.8s var(--ease-out) 0.12s both;
    }
    .film-banner.is-visible .film-banner__play {
        animation: softPop 0.7s var(--ease-out) 0.22s both, ctaPulse 2.4s ease-in-out 1.2s infinite;
    }
    .film-banner__media img {
        animation: kenBurns 16s ease-in-out infinite alternate;
    }

    .site-footer__brand,
    .site-footer__col {
        opacity: 0;
        transform: translateY(18px);
        transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
    }
    .site-footer.is-visible .site-footer__brand { opacity: 1; transform: none; transition-delay: 0.05s; }
    .site-footer.is-visible .site-footer__col:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.12s; }
    .site-footer.is-visible .site-footer__col:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.18s; }
    .site-footer.is-visible .site-footer__col:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.24s; }

    .mobile-nav.is-open .mobile-nav__item {
        animation: navItemIn 0.45s var(--ease-out) both;
    }
    .mobile-nav.is-open .mobile-nav__item:nth-child(1) { animation-delay: 0.05s; }
    .mobile-nav.is-open .mobile-nav__item:nth-child(2) { animation-delay: 0.1s; }
    .mobile-nav.is-open .mobile-nav__item:nth-child(3) { animation-delay: 0.15s; }
    .mobile-nav.is-open .mobile-nav__item:nth-child(4) { animation-delay: 0.2s; }
    .mobile-nav.is-open .mobile-nav__item:nth-child(5) { animation-delay: 0.25s; }
    .mobile-nav.is-open .mobile-nav__item:nth-child(6) { animation-delay: 0.3s; }
    .mobile-nav__link {
        transition: transform 0.25s, color 0.25s, opacity 0.25s;
    }
    .mobile-nav__link:active { transform: translateX(6px); color: var(--coral-hot); }

    .menu-toggle span {
        transition: transform 0.35s var(--ease), opacity 0.25s, background 0.25s;
    }
    .back-to-top {
        transition: transform 0.25s, background 0.25s, opacity 0.25s;
    }
    .back-to-top:active { transform: scale(0.9); }

    .topic-chip {
        transition: transform 0.25s, background 0.25s, color 0.25s, border-color 0.25s;
    }
    .topic-chip:active { transform: scale(0.95); }
}

@media (max-width: 400px) {
    .dest-gallery { gap: 0.55rem; }
    .trav-hero__title { font-size: 2.2rem; }
    .hero-card { flex-basis: 78vw; }
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}
@keyframes iconBob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}
@keyframes ctaPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(196, 30, 30, 0.45); }
    50% { box-shadow: 0 0 0 10px rgba(196, 30, 30, 0); }
}
@keyframes sheen {
    from { transform: translateX(-120%); }
    to { transform: translateX(120%); }
}
@keyframes faqOpen {
    from { opacity: 0.6; }
    to { opacity: 1; }
}
@keyframes textRise {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: none; }
}
@keyframes tagPop {
    from { opacity: 0; transform: translateY(8px) scale(0.92); }
    to { opacity: 1; transform: none; }
}
@keyframes softPop {
    from { opacity: 0; transform: translateY(22px) scale(0.96); }
    to { opacity: 1; transform: none; }
}
@keyframes imgSettle {
    from { transform: scale(1.1); filter: brightness(0.92); }
    to { transform: scale(1); filter: none; }
}
@keyframes tipSlide {
    from { opacity: 0; transform: translateX(12px); }
    to { opacity: 1; transform: none; }
}
@keyframes navItemIn {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .trav-hero__bg img, .page-hero__bg img, .film-banner__media img { animation: none; }
    .hero-card, .quick-item__icon,
    .trav-hero .btn, .film-banner__play,
    .band-cta .btn, .final-cta .btn { animation: none !important; }
}
