/* ==========================================================================
   XO TOURS  -  design system v2
   Apple-grade typography and layout, XO's classic mark and gold, and a
   spring-driven 3D layer on buttons, tiles and photographs.

   1. Tokens          6. Header / nav      11. Forms
   2. Reset           7. Hero              12. Footer
   3. Typography      8. Page hero         13. 3D + reveal system
   4. Layout          9. Sections          14. Responsive
   5. Buttons        10. Components        15. Preferences / print
   ========================================================================== */

/* 1. TOKENS ============================================================== */
:root {
    /* Surfaces and ink (light). Dark sections remap these in .on-dark. */
    --c-bg:        #ffffff;
    --c-bg-2:      #f5f5f7;
    --c-surface:   #ffffff;
    --c-surface-2: #f5f5f7;
    --c-ink:       #1d1d1f;
    --c-ink-2:     #6e6e73;
    --c-ink-3:     #86868b;
    --c-line:      rgba(0, 0, 0, 0.08);
    --c-line-2:    rgba(0, 0, 0, 0.14);

    /* Brand */
    --gold:        #c9a227;
    --gold-2:      #e3c05a;
    --gold-3:      #f3dc8a;
    --gold-ink:    #8a6b12;   /* gold that passes contrast on white */
    --sky:         #7ec5e0;   /* the dress in the mark */
    --green:       #1f8a5b;
    --red:         #d0342c;

    --dark:        #0a0a0b;
    --dark-2:      #161617;

    /* Type */
    --font: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display",
            "Inter", "Segoe UI", Helvetica, Arial, sans-serif;

    --fs-hero:  clamp(2.25rem, 4.6vw, 3.5rem);
    --fs-h1:    clamp(2.125rem, 4.2vw, 3.25rem);
    --fs-h2:    clamp(1.75rem, 3.3vw, 2.625rem);
    --fs-h3:    clamp(1.1875rem, 1.6vw, 1.4375rem);
    --fs-lead:  clamp(1.0625rem, 1.35vw, 1.3125rem);
    --fs-body:  1.0625rem;
    --fs-sm:    0.875rem;
    --fs-xs:    0.75rem;

    /* Space */
    --gutter:    clamp(1.25rem, 5vw, 3rem);
    --section:   clamp(4rem, 9vw, 7.5rem);
    --maxw:      1180px;
    --maxw-md:   980px;
    --maxw-text: 720px;
    --header-h:  56px;

    /* Radius */
    --r-sm: 10px;
    --r:    16px;
    --r-lg: 22px;
    --r-xl: 30px;

    /* Neutral layered shadows */
    --shadow-sm: 0 2px 3px -1px rgba(0,0,0,0.10), 0 1px 0 0 rgba(25,28,33,0.02),
                 0 0 0 1px rgba(25,28,33,0.08);
    --shadow-md: 0 0 0 1px rgba(0,0,0,0.06), 0 1px 1px -0.5px rgba(0,0,0,0.06),
                 0 3px 3px -1.5px rgba(0,0,0,0.06), 0 6px 6px -3px rgba(0,0,0,0.06),
                 0 12px 12px -6px rgba(0,0,0,0.06), 0 24px 24px -12px rgba(0,0,0,0.06);
    --shadow-lg: 0 2.8px 2.2px rgba(0,0,0,0.034), 0 6.7px 5.3px rgba(0,0,0,0.048),
                 0 12.5px 10px rgba(0,0,0,0.06), 0 22.3px 17.9px rgba(0,0,0,0.072),
                 0 41.8px 33.4px rgba(0,0,0,0.086), 0 100px 80px rgba(0,0,0,0.12);

    /* Motion */
    --ease-out:    cubic-bezier(0.23, 1, 0.32, 1);
    --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
    --t-fast: 140ms;
    --t:      220ms;
    --t-slow: 520ms;
}

.on-dark {
    --c-bg:        var(--dark);
    --c-bg-2:      var(--dark-2);
    --c-surface:   #1c1c1e;
    --c-surface-2: #2a2a2d;
    --c-ink:       #f5f5f7;
    --c-ink-2:     #a1a1a6;
    --c-ink-3:     #86868b;
    --c-line:      rgba(255, 255, 255, 0.12);
    --c-line-2:    rgba(255, 255, 255, 0.2);
    --gold-ink:    var(--gold-2);
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.06);
    --shadow-md: 0 0 0 1px rgba(255,255,255,0.06), 0 6px 12px -4px rgba(0,0,0,0.5),
                 0 24px 40px -16px rgba(0,0,0,0.6);
    --shadow-lg: 0 10px 20px -8px rgba(0,0,0,0.6), 0 40px 80px -20px rgba(0,0,0,0.7),
                 0 0 0 1px rgba(255,255,255,0.05);
    background: var(--c-bg);
    color: var(--c-ink);
}

/* 2. RESET =============================================================== */
*, *::before, *::after { box-sizing: border-box; }

html {
    -webkit-text-size-adjust: 100%;
    scroll-padding-top: calc(var(--header-h) + 1rem);
}

body {
    margin: 0;
    font-family: var(--font);
    font-size: var(--fs-body);
    line-height: 1.47;
    letter-spacing: -0.014em;
    color: var(--c-ink);
    background: var(--c-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

body.nav-open { overflow: hidden; }

img, picture, video, svg { max-width: 100%; display: block; }
img { height: auto; }

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; letter-spacing: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p, figure, blockquote { margin: 0; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

::selection { background: rgba(201, 162, 39, 0.28); }

.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
    position: fixed; top: -100px; left: 1rem; z-index: 200;
    padding: 0.6rem 1rem; background: var(--dark); color: #fff;
    border-radius: var(--r-sm); font-size: var(--fs-sm);
}
.skip-link:focus { top: 1rem; }

/* 3. TYPOGRAPHY ========================================================== */
.display, .h1, .h2, .h3 {
    font-weight: 600;
    color: var(--c-ink);
    text-wrap: balance;
}
.display { font-size: var(--fs-h2); line-height: 1.08; letter-spacing: -0.025em; }
h1.display, .h1 { font-size: var(--fs-h1); line-height: 1.05; letter-spacing: -0.028em; }
.h3 { font-size: var(--fs-h3); line-height: 1.22; letter-spacing: -0.016em; }

.display em, .h1 em { font-style: normal; color: var(--gold-ink); }

.eyebrow {
    display: inline-block;
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold-ink);
}

.lead {
    font-size: var(--fs-lead);
    line-height: 1.4;
    letter-spacing: -0.018em;
    color: var(--c-ink-2);
    text-wrap: pretty;
}
p.lead + p { margin-top: 1rem; }

.muted { color: var(--c-ink-2); }
.faint { color: var(--c-ink-3); }
.small { font-size: var(--fs-sm); }
.xs { font-size: var(--fs-xs); }
.center { text-align: center; }

/* Apple-style text link with chevron */
.link {
    display: inline-flex; align-items: center; gap: 0.2rem;
    font-weight: 500; font-size: var(--fs-body);
    color: var(--gold-ink);
    transition: color var(--t) ease;
}
.link svg { flex-shrink: 0; transition: translate var(--t) var(--ease-out); }
.link:hover { text-decoration: underline; text-underline-offset: 3px; }
.link:hover svg { translate: 3px 0; }

.prose > * + * { margin-top: 1.1rem; }
.prose p { color: var(--c-ink-2); max-width: 66ch; }
.prose p.lead { color: var(--c-ink); }
.prose h2 { margin-top: 2.4rem; }
.prose h2 + p { margin-top: 0.7rem; }

.pull-quote {
    font-size: clamp(1.375rem, 2.4vw, 1.875rem);
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.024em;
    color: var(--c-ink);
    max-width: 30ch;
    text-wrap: pretty;
}
.pull-quote::before { content: "\201C"; color: var(--gold); margin-right: 0.08em; }

/* 4. LAYOUT ============================================================== */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.wrap-md { max-width: var(--maxw-md); }
.wrap-narrow { max-width: var(--maxw-text); }

.section { padding-block: var(--section); }
.section-sm { padding-block: calc(var(--section) * 0.62); }
.section-top { padding-top: calc(var(--header-h) + clamp(2.5rem, 6vw, 4.5rem)); }
.bg-alt { background: var(--c-bg-2); }

.sec-head { max-width: 640px; margin: 0 auto clamp(2rem, 4.5vw, 3.25rem); text-align: center; }
.sec-head .display { margin-top: 0.7rem; }
.sec-head .lead { margin-top: 0.85rem; margin-inline: auto; max-width: 52ch; }
.sec-head.left { margin-inline: 0; text-align: left; }
.sec-head.left .lead { margin-inline: 0; }

.sec-row {
    display: flex; align-items: flex-end; justify-content: space-between;
    gap: 2rem; margin-bottom: clamp(2rem, 4.5vw, 3.25rem);
}
.sec-row .sec-head { margin: 0; text-align: left; }
.sec-row .sec-head .lead { margin-inline: 0; }
.sec-row > .link { flex-shrink: 0; margin-bottom: 0.35rem; }

.grid { display: grid; gap: 1.25rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.actions { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }

.crumbs {
    display: flex; flex-wrap: wrap; align-items: center; gap: 0.4rem;
    font-size: var(--fs-xs); color: var(--c-ink-3); margin-bottom: 1rem;
}
.crumbs a:hover { color: var(--c-ink); }
.crumbs span[aria-hidden] { opacity: 0.5; }

/* 5. BUTTONS ============================================================= */
.btn {
    --gx: 50%; --gy: 50%; --glare: 0;
    position: relative;
    display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
    min-height: 46px; padding: 0 1.5rem;
    border: 0; border-radius: 999px;
    font-family: var(--font); font-size: 0.9375rem; font-weight: 600;
    letter-spacing: -0.01em; line-height: 1; white-space: nowrap;
    cursor: pointer; user-select: none; -webkit-tap-highlight-color: transparent;
    transform-style: preserve-3d;
    transition: translate 260ms var(--ease-out), scale 110ms var(--ease-out),
                box-shadow 260ms var(--ease-out), background-color var(--t) ease,
                color var(--t) ease, border-color var(--t) ease;
}
.btn svg { flex-shrink: 0; }
/* Specular sheen that follows the pointer (position set by JS) */
.btn::after {
    content: ""; position: absolute; inset: 0; border-radius: inherit;
    background: radial-gradient(140px 90px at var(--gx) var(--gy), rgba(255,255,255,0.38), transparent 62%);
    opacity: var(--glare); pointer-events: none;
    transition: opacity var(--t) ease;
}
.btn:active { scale: 0.965; transition-duration: 80ms; }

.btn-gold {
    color: #1d1d1f;
    background: linear-gradient(180deg, #e9cb62 0%, var(--gold) 100%);
    box-shadow: 0 1px 0 0 rgba(255,255,255,0.4) inset, 0 -1px 0 0 rgba(0,0,0,0.08) inset,
                0 1px 2px rgba(0,0,0,0.15), 0 4px 12px -4px rgba(201,162,39,0.5);
}
.btn-primary { color: #fff; background: var(--c-ink); box-shadow: var(--shadow-sm); }
.on-dark .btn-primary { color: #1d1d1f; background: #fff; }
.btn-ghost {
    color: var(--c-ink); background: transparent;
    box-shadow: 0 0 0 1px var(--c-line-2) inset;
}
.btn-glass {
    color: var(--c-ink);
    background: rgba(0, 0, 0, 0.05);
    -webkit-backdrop-filter: blur(14px) saturate(160%); backdrop-filter: blur(14px) saturate(160%);
    box-shadow: 0 0 0 1px rgba(0,0,0,0.06) inset;
}
.on-dark .btn-glass {
    background: rgba(255, 255, 255, 0.11);
    box-shadow: 0 0 0 1px rgba(255,255,255,0.14) inset, 0 1px 0 rgba(255,255,255,0.08) inset;
}
.btn-sm { min-height: 36px; padding: 0 1.05rem; font-size: 0.8125rem; }
.btn-lg { min-height: 52px; padding: 0 1.85rem; font-size: 1.0625rem; }
.btn-block { width: 100%; }

@media (hover: hover) and (pointer: fine) {
    .btn:hover { translate: 0 -2px; box-shadow: var(--shadow-md); }
    .btn-gold:hover {
        box-shadow: 0 1px 0 0 rgba(255,255,255,0.45) inset, 0 2px 4px rgba(0,0,0,0.12),
                    0 14px 28px -10px rgba(201,162,39,0.65);
    }
    .btn-ghost:hover { background: rgba(0,0,0,0.04); }
    .on-dark .btn-ghost:hover { background: rgba(255,255,255,0.08); }
    .btn-glass:hover { background: rgba(0,0,0,0.08); }
    .on-dark .btn-glass:hover { background: rgba(255,255,255,0.17); }
}

/* 6. HEADER / NAV ======================================================== */
.header {
    position: fixed; inset: 0 0 auto 0; z-index: 100;
    height: var(--header-h);
    color: var(--c-ink);
    background: rgba(255, 255, 255, 0.72);
    -webkit-backdrop-filter: saturate(180%) blur(20px); backdrop-filter: saturate(180%) blur(20px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
    transition: background-color 320ms ease, color 320ms ease, box-shadow 320ms ease;
}
.header.is-transparent, .header.is-over-dark {
    color: #f5f5f7;
    background: rgba(10, 10, 11, 0.55);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}
.header.is-transparent.at-top { background: transparent; box-shadow: none; -webkit-backdrop-filter: none; backdrop-filter: none; }

.header-inner {
    height: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter);
    display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 1.5rem;
}

.brand { display: inline-flex; align-items: center; height: 100%; }
.brand .xo-mark { height: 42px; width: auto; display: block; }
.xo-mark .xo-ink .xo-p  { fill: var(--mark-ink, #1d1d1f); transition: fill 320ms ease; }
.xo-mark .xo-blue .xo-p { fill: var(--sky); }
.header.is-transparent .xo-mark, .header.is-over-dark .xo-mark { --mark-ink: #f5f5f7; }
.xo-mark.is-drawing .xo-p { will-change: clip-path; }

.nav { display: flex; justify-content: center; gap: clamp(1rem, 2.2vw, 1.9rem); }
.nav-link {
    font-size: 0.8125rem; font-weight: 400; letter-spacing: -0.005em;
    opacity: 0.82; padding: 0.35rem 0; position: relative;
    transition: opacity var(--t) ease;
}
.nav-link::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
    background: currentColor; scale: 0 1; transform-origin: left;
    transition: scale var(--t) var(--ease-out);
}
.nav-link:hover, .nav-link[aria-current="page"] { opacity: 1; }
.nav-link[aria-current="page"]::after, .nav-link:hover::after { scale: 1 1; }

.nav-actions { display: flex; align-items: center; gap: 0.6rem; }

/* Language selector */
.lang { position: relative; }
.lang-btn {
    display: inline-flex; align-items: center; gap: 0.35rem;
    height: 32px; padding: 0 0.6rem; border: 0; border-radius: 999px;
    background: transparent; font-size: 0.75rem; font-weight: 500; cursor: pointer;
    transition: background-color var(--t) ease;
}
.lang-btn:hover { background: rgba(127, 127, 127, 0.15); }
.lang-menu {
    position: absolute; top: calc(100% + 8px); right: 0; min-width: 190px;
    padding: 0.35rem; border-radius: 14px;
    background: rgba(255, 255, 255, 0.9); color: #1d1d1f;
    -webkit-backdrop-filter: blur(20px) saturate(180%); backdrop-filter: blur(20px) saturate(180%);
    box-shadow: var(--shadow-md);
    opacity: 0; translate: 0 -6px; scale: 0.96; transform-origin: top right;
    pointer-events: none;
    transition: opacity 180ms var(--ease-out), translate 180ms var(--ease-out), scale 180ms var(--ease-out);
}
.lang-menu.is-open { opacity: 1; translate: 0 0; scale: 1; pointer-events: auto; }
.lang-menu button {
    width: 100%; display: flex; justify-content: space-between; gap: 1rem;
    padding: 0.5rem 0.7rem; border: 0; border-radius: 9px; background: transparent;
    font-size: 0.8125rem; text-align: left; cursor: pointer;
}
.lang-menu button:hover { background: rgba(0, 0, 0, 0.06); }
.lang-menu button[aria-current="true"] { font-weight: 600; }
.lang-native { color: #86868b; }

/* Menu toggle (mobile) */
.menu-toggle {
    display: none; width: 40px; height: 40px; border: 0; border-radius: 50%;
    background: transparent; cursor: pointer; position: relative;
}
.menu-toggle span, .menu-toggle span::before, .menu-toggle span::after {
    content: ""; position: absolute; left: 11px; width: 18px; height: 1.5px;
    background: currentColor; border-radius: 2px;
    transition: transform 260ms var(--ease-out), opacity 200ms ease, top 260ms var(--ease-out);
}
.menu-toggle span { top: 19px; }
.menu-toggle span::before { left: 0; top: -6px; }
.menu-toggle span::after { left: 0; top: 6px; }
.menu-toggle[aria-expanded="true"] span { background: transparent; }
.menu-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

/* Full-screen mobile menu: a dark sheet with grouped, inset lists */
.mobile-menu {
    position: fixed; inset: 0; z-index: 90; color: #f5f5f7;
    background: rgba(10, 10, 11, 0.94);
    -webkit-backdrop-filter: blur(24px) saturate(160%); backdrop-filter: blur(24px) saturate(160%);
    opacity: 0; pointer-events: none; overflow: hidden;
    transition: opacity 240ms var(--ease-out);
}
.mobile-menu::before {
    content: ""; position: absolute; width: 70vw; height: 70vw; right: -25vw; top: -30vw;
    border-radius: 50%; pointer-events: none;
    background: radial-gradient(closest-side, rgba(201, 162, 39, 0.28), transparent 72%);
    filter: blur(30px);
}
.mobile-menu.is-open { opacity: 1; pointer-events: auto; }
.mm-sheet {
    position: relative; height: 100%; overflow-y: auto; -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain; scrollbar-width: none;
    padding: calc(var(--header-h) + 0.75rem) var(--gutter) calc(1.25rem + env(safe-area-inset-bottom, 0px));
    display: flex; flex-direction: column; gap: 1.25rem;
    translate: 0 16px; scale: 0.985;
    transition: translate 420ms var(--ease-out), scale 420ms var(--ease-out);
}
.mm-sheet::-webkit-scrollbar { display: none; }
/* Content that scrolls up under the logo and close button fades out. */
.mm-sheet {
    -webkit-mask-image: linear-gradient(to bottom, transparent calc(var(--header-h) - 12px), #000 calc(var(--header-h) + 18px));
    mask-image: linear-gradient(to bottom, transparent calc(var(--header-h) - 12px), #000 calc(var(--header-h) + 18px));
}
.mobile-menu.is-open .mm-sheet { translate: 0 0; scale: 1; }

.mm-nav { display: flex; flex-direction: column; gap: 0.5rem; }
.mm-label {
    margin: 0.7rem 0.3rem 0.15rem; font-size: 0.6875rem; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-2);
}
.mm-group {
    display: grid; border-radius: 20px; overflow: hidden;
    background: rgba(255, 255, 255, 0.055);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 20px 40px -24px rgba(0, 0, 0, 0.8);
}
.mm-row {
    position: relative; display: grid; grid-template-columns: auto 1fr auto; align-items: center;
    gap: 0.85rem; min-height: 62px; padding: 0.7rem 0.85rem 0.7rem 0.75rem;
    color: #f5f5f7; -webkit-tap-highlight-color: transparent;
    transition: background-color 160ms ease;
}
.mm-group > .mm-row + .mm-row::before {
    content: ""; position: absolute; left: 4rem; right: 0; top: 0; height: 1px;
    background: rgba(255, 255, 255, 0.08);
}
.mm-row:active { background: rgba(255, 255, 255, 0.09); }
.mm-ico {
    width: 40px; height: 40px; border-radius: 13px; display: grid; place-items: center;
    background: rgba(255, 255, 255, 0.08); color: var(--gold-2);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}
.mm-ico svg { width: 20px; height: 20px; }
.mm-text { display: grid; gap: 0.12rem; min-width: 0; }
.mm-text strong { font-size: 1.0625rem; font-weight: 600; letter-spacing: -0.015em; line-height: 1.2; }
.mm-text small { font-size: 0.75rem; color: #a1a1a6; line-height: 1.3; }
.mm-chev { color: #6e6e73; justify-self: end; }
.mm-row.is-current .mm-text strong { color: var(--gold-2); }
.mm-row.is-current .mm-chev { color: var(--gold-2); }

/* Home: one warm gold card above the lists */
.mm-home {
    min-height: 72px; border-radius: 20px; padding-left: 0.85rem;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.26), rgba(201, 162, 39, 0.08));
    box-shadow: inset 0 0 0 1px rgba(227, 192, 90, 0.35), 0 20px 40px -24px rgba(201, 162, 39, 0.5);
}
.mm-home .mm-ico { background: var(--gold); color: #1d1d1f; box-shadow: 0 6px 14px -6px rgba(201, 162, 39, 0.9); }
.mm-home .mm-text strong { font-size: 1.1875rem; color: #fff; }
.mm-home .mm-chev { color: var(--gold-2); }
.mm-home:active { background: linear-gradient(135deg, rgba(201, 162, 39, 0.34), rgba(201, 162, 39, 0.14)); }

/* Tours: thumbnail, name, time and the price on the right */
.mm-thumb {
    width: 54px; height: 54px; border-radius: 14px; overflow: hidden; background: #222;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}
.mm-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mm-group > .mm-tour + .mm-tour::before { left: 4.9rem; }
.mm-price { text-align: right; font-size: 1.0625rem; font-weight: 600; letter-spacing: -0.02em; line-height: 1; white-space: nowrap; }
.mm-price i { display: block; margin-top: 0.2rem; font-style: normal; font-size: 0.625rem; font-weight: 600; letter-spacing: 0.08em; color: #a1a1a6; }
.mm-tour.is-current .mm-price { color: var(--gold-2); }

/* Foot: Book Now, three quick contacts, languages, hours */
.mm-foot { display: grid; gap: 0.7rem; margin-top: auto; padding-top: 0.5rem; }
.mm-book { display: flex; align-items: baseline; justify-content: center; gap: 0.5rem; }
.mm-book small { font-size: 0.8125rem; font-weight: 500; opacity: 0.7; }
.mm-quick { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
.mm-chip {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
    min-height: 46px; border-radius: 999px; color: #f5f5f7;
    background: rgba(255, 255, 255, 0.07); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    font-size: 0.875rem; font-weight: 500; -webkit-tap-highlight-color: transparent;
    transition: background-color 160ms ease, scale 160ms var(--ease-out);
}
.mm-chip svg { width: 17px; height: 17px; }
.mm-chip:first-child svg { color: #3ddc84; }
.mm-chip:active { background: rgba(255, 255, 255, 0.12); scale: 0.97; }
.mm-langs { display: flex; gap: 0.4rem; overflow-x: auto; scrollbar-width: none; padding: 0.15rem 0; }
.mm-langs::-webkit-scrollbar { display: none; }
.mm-langs button {
    flex: 0 0 auto; padding: 0.45rem 0.8rem; border: 1px solid rgba(255,255,255,0.14); border-radius: 999px;
    background: transparent; color: #d2d2d7; font-size: var(--fs-xs); font-weight: 500; cursor: pointer;
    transition: background-color 160ms ease, color 160ms ease;
}
.mm-langs button[aria-current="true"] { background: #f5f5f7; color: #1d1d1f; border-color: transparent; }
.mm-hours { margin: 0; text-align: center; font-size: var(--fs-xs); color: #86868b; }

/* Staggered reveal; main.js sets the delay per child */
.mm-nav > *, .mm-foot > * { opacity: 0; translate: 0 14px; }
.mobile-menu.is-open .mm-nav > *, .mobile-menu.is-open .mm-foot > * { animation: mm-in 560ms var(--ease-out) forwards; }
@keyframes mm-in { to { opacity: 1; translate: 0 0; } }

/* The header floats over the open sheet: make it dark and quiet */
body.nav-open .header {
    color: #f5f5f7; background: transparent; box-shadow: none;
    -webkit-backdrop-filter: none; backdrop-filter: none;
}
body.nav-open .header .xo-mark { --mark-ink: #f5f5f7; }
body.nav-open .mobile-bar { visibility: hidden; }

/* 7. HERO (home) ========================================================= */
.hero {
    position: relative; overflow: hidden;
    padding-top: calc(var(--header-h) + clamp(1.4rem, 2.6vw, 2.1rem));
    padding-bottom: clamp(2rem, 5vw, 3.5rem);
}
.hero-ground { position: absolute; inset: 0; pointer-events: none; }
.hero-glow {
    position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.55;
}
.hero-glow-gold { width: 60vw; height: 60vw; max-width: 760px; max-height: 760px; right: -12vw; top: 18%;
    background: radial-gradient(circle, rgba(201,162,39,0.34), transparent 62%); }
.hero-glow-sky { width: 44vw; height: 44vw; max-width: 560px; max-height: 560px; left: -10vw; top: 42%;
    background: radial-gradient(circle, rgba(126,197,224,0.22), transparent 64%); }
.hero-grain {
    position: absolute; inset: 0; opacity: 0.06; mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-copy { position: relative; text-align: center; max-width: 860px; margin: 0 auto; padding: 0 var(--gutter); }
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-size: var(--fs-xs); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--gold-2);
}
.hero-eyebrow::before, .hero-eyebrow::after { content: ""; width: 22px; height: 1px; background: currentColor; opacity: 0.6; }
.hero-title {
    margin-top: 1.1rem;
    font-size: var(--fs-hero); font-weight: 600; line-height: 1.04; letter-spacing: -0.03em;
    color: #f5f5f7; text-wrap: balance;
}
.hero-title em { font-style: normal; color: var(--gold-2); }
.hero-lead { max-width: 48ch; margin: 1.15rem auto 0; color: #a1a1a6; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; margin-top: 1.7rem; }

/* The stage: one photograph in a deep card, the rating chip floating
   above it on its own depth. The card leans toward the pointer and the
   photo drifts slower than the page on scroll, so the frame reads as a
   window rather than a picture. */
.hero-scene {
    position: relative; margin: clamp(2.5rem, 5.5vw, 4rem) auto 0;
    max-width: 1040px; padding: 0 var(--gutter);
    perspective: 1600px; perspective-origin: 50% 40%;
}
.hero-stage {
    position: relative; margin: 0; aspect-ratio: 16 / 9;
    border-radius: clamp(20px, 2.4vw, 30px);
    box-shadow: 0 40px 80px -30px rgba(0,0,0,0.85), 0 0 0 1px rgba(255,255,255,0.07);
    transform-style: preserve-3d; will-change: transform;
}
.hero-stage-media {
    --gx: 50%; --gy: 40%; --glare: 0;
    position: absolute; inset: 0; overflow: hidden; border-radius: inherit; background: var(--dark-2);
    transform: translateZ(0);
}
.hero-stage-media img {
    position: absolute; left: 0; top: -4%; width: 100%; height: 108%;
    object-fit: cover; object-position: 50% 42%; will-change: transform;
}
.hero-stage-media::before {
    content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
    background: linear-gradient(180deg, rgba(255,255,255,0.10), transparent 22%),
                linear-gradient(180deg, transparent 58%, rgba(0,0,0,0.55));
}
.hero-stage-media::after {
    content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
    background: radial-gradient(460px circle at var(--gx) var(--gy), rgba(255,255,255,0.14), transparent 60%);
    opacity: var(--glare); transition: opacity 320ms ease;
}

/* Hero pieces stay hidden until the entrance runs; main.js releases them
   if the motion layer never arrives, so nothing can stay invisible. */
html.js .hero [data-hero] { opacity: 0; }
html.js.hero-ready .hero [data-hero] { opacity: 1; transition: opacity 600ms ease; }

.hero-badge {
    position: absolute; z-index: 4; display: flex; align-items: center; gap: 0.55rem;
    padding: 0.55rem 0.85rem; border-radius: 999px;
    background: rgba(28, 28, 30, 0.72); color: #f5f5f7;
    -webkit-backdrop-filter: blur(18px) saturate(160%); backdrop-filter: blur(18px) saturate(160%);
    box-shadow: 0 0 0 1px rgba(255,255,255,0.1) inset, 0 12px 30px -10px rgba(0,0,0,0.7);
    font-size: var(--fs-xs); white-space: nowrap; will-change: transform;
}
.hero-badge strong { font-size: 0.8125rem; font-weight: 600; }
.hero-badge-sub { color: #a1a1a6; }
.hero-badge-stars { display: inline-flex; color: var(--gold-2); }
.hero-badge-rating {
    left: clamp(0.85rem, 1.6vw, 1.25rem); bottom: clamp(0.85rem, 1.6vw, 1.25rem);
    padding: 0.65rem 1rem 0.65rem 0.9rem; font-size: 0.8125rem;
}
.hero-badge-rating strong { font-size: 0.9375rem; }
.hero-live { width: 8px; height: 8px; border-radius: 50%; background: #34c759; box-shadow: 0 0 0 0 rgba(52,199,89,0.6); animation: live 2.2s ease-out infinite; }
@keyframes live { 0% { box-shadow: 0 0 0 0 rgba(52,199,89,0.6); } 100% { box-shadow: 0 0 0 9px rgba(52,199,89,0); } }

.hero-trust {
    position: relative; max-width: 900px; margin: clamp(2rem, 4vw, 3rem) auto 0;
    padding: 0 var(--gutter);
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
    text-align: center;
}
.hero-trust li { display: grid; gap: 0.1rem; padding: 0.9rem 0.5rem; border-radius: var(--r);
    background: rgba(255,255,255,0.04); box-shadow: 0 0 0 1px rgba(255,255,255,0.07) inset; }
.hero-trust strong { font-size: 1.25rem; font-weight: 600; letter-spacing: -0.02em; color: #f5f5f7; }
.hero-trust span { font-size: var(--fs-xs); color: #a1a1a6; }

.scroll-hint {
    display: flex; justify-content: center; margin-top: 2.2rem; color: #86868b; font-size: var(--fs-xs);
}
.scroll-hint i {
    display: block; width: 1px; height: 30px; margin-left: 0.6rem; background: currentColor; opacity: 0.5;
    animation: hint 1.8s var(--ease-in-out) infinite; transform-origin: top;
}
@keyframes hint { 0% { scale: 1 0; } 50% { scale: 1 1; } 100% { scale: 1 0; transform-origin: bottom; } }

/* 8. PAGE HERO (inner pages) ============================================ */
.page-hero { padding-top: calc(var(--header-h) + clamp(2.75rem, 6vw, 4.75rem)); }
.page-hero-copy { max-width: 720px; margin: 0 auto; text-align: center; padding: 0 var(--gutter); }
.page-hero-copy .crumbs { justify-content: center; }
.page-hero-copy .display { margin-top: 0.7rem; }
.page-hero-copy .lead { margin: 0.9rem auto 0; max-width: 50ch; }
.page-hero-media { max-width: var(--maxw); margin: clamp(2rem, 5vw, 3.5rem) auto 0; padding: 0 var(--gutter); perspective: 1400px; }
.page-hero-frame {
    position: relative; aspect-ratio: 21 / 9; border-radius: var(--r-xl); overflow: hidden;
    box-shadow: var(--shadow-lg); background: var(--c-bg-2);
}
.page-hero-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 38%; will-change: transform; }
.page-hero-meta { display: flex; flex-wrap: wrap; gap: 0.4rem 1rem; justify-content: center; margin-top: 0.9rem; font-size: var(--fs-sm); color: var(--c-ink-2); }

/* 9. SECTIONS ============================================================ */

/* --- Trust strip --- */
.trust-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0.8rem; }
.trust-item {
    display: grid; justify-items: center; gap: 0.55rem; padding: 1.25rem 0.75rem; text-align: center;
    border-radius: var(--r); background: var(--c-surface); box-shadow: var(--shadow-sm);
}
.trust-item strong { display: block; font-size: var(--fs-sm); font-weight: 600; letter-spacing: -0.01em; }
.trust-item span span { display: block; font-size: var(--fs-xs); color: var(--c-ink-3); margin-top: 0.1rem; }
.coin {
    width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
    color: var(--gold-ink); background: linear-gradient(160deg, #fbf3d6, #f1de9c);
    box-shadow: 0 1px 0 rgba(255,255,255,0.7) inset, 0 -1px 0 rgba(0,0,0,0.06) inset, 0 2px 4px rgba(0,0,0,0.08);
    transform-style: preserve-3d; transition: transform 700ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
    .trust-item:hover .coin { transform: perspective(300px) rotateY(360deg); }
}
.press { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.6rem 2rem; margin-top: 2rem; }
.press-label { width: 100%; text-align: center; font-size: var(--fs-xs); color: var(--c-ink-3); letter-spacing: 0.06em; text-transform: uppercase; }
.press span:not(.press-label) { font-size: var(--fs-sm); font-weight: 600; letter-spacing: -0.01em; color: var(--c-ink-3); }

/* --- Tiles (the base card) --- */
.tile {
    --gx: 50%; --gy: 50%; --glare: 0;
    position: relative; border-radius: var(--r-lg);
    background: var(--c-surface); box-shadow: var(--shadow-md);
    transform-style: preserve-3d; will-change: transform;
}
.tile::after {
    content: ""; position: absolute; inset: 0; z-index: 3; border-radius: inherit; pointer-events: none;
    background: radial-gradient(260px circle at var(--gx) var(--gy), rgba(255,255,255,0.32), transparent 62%);
    opacity: var(--glare); transition: opacity var(--t) ease;
}
.on-dark .tile::after { background: radial-gradient(260px circle at var(--gx) var(--gy), rgba(255,255,255,0.12), transparent 62%); }
.tile-media { position: relative; overflow: hidden; border-radius: var(--r-lg) var(--r-lg) 0 0; background: var(--c-bg-2); }
.tile-media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 38%; transition: scale 900ms var(--ease-out); }
.tile-body { padding: 1.25rem 1.35rem 1.4rem; }
.tile-body > * + * { margin-top: 0.45rem; }
.tile-title { font-size: 1.1875rem; font-weight: 600; letter-spacing: -0.018em; line-height: 1.2; }
.tile-text { font-size: var(--fs-sm); color: var(--c-ink-2); line-height: 1.45; }
.stretched { position: absolute; inset: 0; z-index: 2; border-radius: inherit; }
.tag {
    display: inline-block; padding: 0.3rem 0.65rem; border-radius: 999px;
    font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
    background: rgba(255,255,255,0.85); color: #1d1d1f;
    -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
}
.price { font-weight: 600; letter-spacing: -0.02em; white-space: nowrap; }
.price small { font-size: var(--fs-xs); font-weight: 400; color: var(--c-ink-3); margin-right: 0.25rem; }
@media (hover: hover) and (pointer: fine) {
    .tile:hover .tile-media img { scale: 1.04; }
}

/* --- Tour cards --- */
.tours-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.tour-card .tile-media { aspect-ratio: 4 / 3; }
.tour-card .tag { position: absolute; top: 0.85rem; left: 0.85rem; z-index: 2; }
.tour-meta {
    display: flex; align-items: center; justify-content: space-between; gap: 0.75rem;
    margin-top: 0.9rem; padding-top: 0.85rem; border-top: 1px solid var(--c-line);
    font-size: var(--fs-xs); color: var(--c-ink-3);
}
.tour-meta > span:first-child { display: inline-flex; align-items: center; gap: 0.3rem; }
.tour-meta .price { font-size: 1.0625rem; color: var(--c-ink); }
.tour-cta { margin-top: 0.75rem; font-size: var(--fs-sm); }
/* Card footers line up across a row whatever the title length */
.tour-card, .article-card { display: flex; flex-direction: column; }
.tour-card .tile-body, .article-card .tile-body { flex: 1; display: flex; flex-direction: column; }
.tour-card .tour-meta { margin-top: auto; padding-top: 0.85rem; }
.tour-card .tile-text { margin-bottom: 0.9rem; }
.article-card .link { margin-top: auto; padding-top: 0.75rem; }
.article-card p { margin-bottom: 0.4rem; }

/* Summary tiles on the experiences page */
.tour-summary { padding: 1.35rem 1.4rem; display: flex; flex-direction: column; gap: 0.75rem; }
.tour-summary .h3 { margin-top: 0.45rem; }
.tour-summary .check-list { margin-top: auto; }
.tour-summary-foot { display: flex; align-items: center; gap: 0.6rem; padding-top: 0.9rem; border-top: 1px solid var(--c-line); }
.tour-summary-foot .price { font-size: 1.375rem; }
.tour-summary-foot .btn { margin-left: auto; position: relative; z-index: 3; }

/* --- Why us --- */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.why-item { padding: 1.6rem 1.5rem 1.7rem; }
.why-num {
    display: inline-grid; place-items: center; width: 34px; height: 34px; border-radius: 50%;
    font-size: var(--fs-xs); font-weight: 600; color: var(--gold-ink);
    background: linear-gradient(160deg, #fbf3d6, #f1de9c);
    box-shadow: 0 1px 0 rgba(255,255,255,0.7) inset, 0 1px 2px rgba(0,0,0,0.06);
}
.why-item h3 { margin-top: 1rem; font-size: 1.0625rem; font-weight: 600; letter-spacing: -0.014em; line-height: 1.3; }
.why-item p { margin-top: 0.5rem; font-size: var(--fs-sm); color: var(--c-ink-2); }

/* --- Story rail (dark) --- */
.story { position: relative; overflow: hidden; }
.atmosphere { position: absolute; inset: 0; pointer-events: none; }
.atmosphere canvas { width: 100%; height: 100%; display: block; }
.story .wrap { position: relative; }
.story-rail {
    display: grid; grid-auto-flow: column; grid-auto-columns: minmax(0, 1fr); gap: 1.1rem;
    overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 0.5rem;
    scrollbar-width: none; -ms-overflow-style: none;
}
.story-rail::-webkit-scrollbar { display: none; }
.story-frame { scroll-snap-align: start; background: var(--c-surface); }
.story-frame .tile-media { aspect-ratio: 4 / 3; }
.story-index { font-size: var(--fs-xs); font-weight: 600; color: var(--gold-2); letter-spacing: 0.08em; }
.story-frame h3 { margin-top: 0.45rem; font-size: 1.0625rem; font-weight: 600; letter-spacing: -0.014em; }
.story-frame p { margin-top: 0.35rem; font-size: var(--fs-sm); color: var(--c-ink-2); }

/* --- Safety --- */
.safety-layout { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.safety-media { position: relative; perspective: 1200px; }
.safety-frame { border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 4 / 5; box-shadow: var(--shadow-lg); background: var(--c-bg-2); transform-style: preserve-3d; }
.safety-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 35%; }
.safety-badge {
    position: absolute; left: 1rem; bottom: 1rem; z-index: 2;
    display: flex; align-items: center; gap: 0.7rem; padding: 0.8rem 1rem; border-radius: var(--r);
    background: rgba(255,255,255,0.88); color: #1d1d1f;
    -webkit-backdrop-filter: blur(16px) saturate(160%); backdrop-filter: blur(16px) saturate(160%);
    box-shadow: var(--shadow-md); max-width: calc(100% - 2rem);
}
.safety-badge svg { color: var(--gold-ink); flex-shrink: 0; }
.safety-badge strong { display: block; font-size: var(--fs-sm); font-weight: 600; }
.safety-badge span span { display: block; font-size: var(--fs-xs); color: #6e6e73; }
.safety-copy .display { margin: 0.7rem 0 0.9rem; }
.safety-list { display: grid; gap: 0.7rem; margin-top: 1.6rem; }
.safety-item {
    display: flex; gap: 0.85rem; align-items: flex-start; padding: 1rem 1.1rem;
    border-radius: var(--r); background: var(--c-surface); box-shadow: var(--shadow-sm);
}
.safety-tick {
    flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center;
    color: #fff; background: var(--green);
}
.safety-item strong { display: block; font-size: var(--fs-sm); font-weight: 600; }
.safety-item p { margin-top: 0.15rem; font-size: var(--fs-sm); color: var(--c-ink-2); }

/* --- Comparison --- */
.compare { border-radius: var(--r-lg); background: var(--c-surface); box-shadow: var(--shadow-md); overflow: hidden; }
.compare-row { display: grid; grid-template-columns: 1.1fr 1.6fr 1.6fr; gap: 1rem; padding: 0.95rem 1.4rem; border-top: 1px solid var(--c-line); font-size: var(--fs-sm); }
.compare-head { border-top: 0; background: var(--c-bg-2); font-size: var(--fs-xs); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--c-ink-3); }
.compare-head .col-us { color: var(--gold-ink); }
.compare-point { font-weight: 600; }
.col-us, .col-them { display: flex; align-items: flex-start; gap: 0.55rem; }
.compare-row:not(.compare-head) .col-us svg { color: var(--green); flex-shrink: 0; margin-top: 2px; }
.compare-row:not(.compare-head) .col-them { color: var(--c-ink-2); }
.compare-row:not(.compare-head) .col-them svg { color: var(--c-ink-3); flex-shrink: 0; margin-top: 2px; }

/* --- Mood explorer (segmented control) --- */
.segmented-wrap { display: flex; justify-content: center; margin-bottom: 2rem; }
.segmented {
    position: relative; display: inline-flex; gap: 2px; padding: 4px; border-radius: 999px;
    background: rgba(0,0,0,0.06); max-width: 100%; overflow-x: auto; scrollbar-width: none;
}
.segmented::-webkit-scrollbar { display: none; }
/* The white pill spans the whole track and is revealed through a rounded
   clip, so sliding between tabs of different widths never touches layout. */
.seg-indicator {
    position: absolute; top: 4px; left: 4px; height: calc(100% - 8px); width: calc(100% - 8px);
    border-radius: 999px; background: #fff; z-index: 0;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05), inset 0 -1px 0 rgba(0, 0, 0, 0.04);
    clip-path: inset(0 100% 0 0 round 999px);
    transition: clip-path 340ms var(--ease-out);
}
.seg-tab {
    position: relative; z-index: 1; padding: 0.5rem 1rem; border: 0; border-radius: 999px;
    background: transparent; font-size: var(--fs-sm); font-weight: 500; color: var(--c-ink-2);
    white-space: nowrap; cursor: pointer; transition: color var(--t) ease;
}
.seg-tab[aria-selected="true"] { color: var(--c-ink); }
.mood-stage { position: relative; perspective: 1600px; }
.mood-panel { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.mood-panel[hidden] { display: none; }
.mood-panel.is-entering { animation: panel-in 520ms var(--ease-out); }
@keyframes panel-in { from { opacity: 0; transform: rotateY(-6deg) translateX(14px); } to { opacity: 1; transform: none; } }
.mood-media { border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 5 / 4; box-shadow: var(--shadow-lg); background: var(--c-bg-2); }
.mood-media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 38%; }
.mood-copy .display { font-size: var(--fs-h3); }
.mood-copy .lead { margin-top: 0.5rem; }
.mood-matches { display: grid; gap: 0.6rem; margin: 1.4rem 0 1.5rem; }
.mood-match {
    display: grid; grid-template-columns: 48px 1fr auto; align-items: center; gap: 0.85rem;
    padding: 0.6rem 0.85rem 0.6rem 0.6rem; border-radius: 14px;
    background: var(--c-surface); box-shadow: var(--shadow-sm);
    transition: translate var(--t) var(--ease-out), box-shadow var(--t) var(--ease-out);
}
.mood-match img { width: 48px; height: 48px; border-radius: 10px; object-fit: cover; }
.mood-match strong { display: block; font-size: var(--fs-sm); font-weight: 600; }
.mood-match span span { display: block; font-size: var(--fs-xs); color: var(--c-ink-3); }
.mood-match .price { font-size: var(--fs-sm); }
@media (hover: hover) and (pointer: fine) {
    .mood-match:hover { translate: 0 -2px; box-shadow: var(--shadow-md); }
}

/* --- Testimonials --- */
.stars { display: inline-flex; gap: 2px; color: var(--gold); }
.t-featured {
    max-width: 820px; margin: 0 auto clamp(2rem, 4vw, 3rem); text-align: center;
    padding: clamp(1.75rem, 4vw, 2.75rem); border-radius: var(--r-xl);
    background: var(--c-surface); box-shadow: var(--shadow-md);
}
.t-featured .stars { justify-content: center; }
.t-featured blockquote {
    margin-top: 1rem; font-size: clamp(1.1875rem, 2vw, 1.5rem); font-weight: 500;
    line-height: 1.35; letter-spacing: -0.02em; text-wrap: pretty;
}
.t-featured .t-author { justify-content: center; margin-top: 1.4rem; }
.t-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.t-grid.two { grid-template-columns: repeat(2, 1fr); }
.tours-grid.three { grid-template-columns: repeat(3, 1fr); }
.contact-grid.three { grid-template-columns: repeat(3, 1fr); }
.t-card { padding: 1.4rem 1.4rem 1.3rem; display: flex; flex-direction: column; gap: 0.75rem; }
.t-card blockquote { font-size: var(--fs-sm); line-height: 1.5; color: var(--c-ink); flex: 1; }
.t-tour { font-size: var(--fs-xs); color: var(--c-ink-3); }
.t-author { display: flex; align-items: center; gap: 0.7rem; font-size: var(--fs-xs); }
.t-author strong { display: block; font-size: var(--fs-sm); font-weight: 600; }
.t-author > span:nth-child(2) span { display: block; color: var(--c-ink-3); }
.t-avatar {
    width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; flex-shrink: 0;
    font-weight: 600; font-size: var(--fs-sm); color: #1d1d1f;
    background: linear-gradient(160deg, var(--gold-3), var(--gold-2));
}
.t-source { margin-left: auto; color: var(--c-ink-3); white-space: nowrap; }

/* --- Gallery --- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 0.8rem; grid-auto-flow: dense; }
.gallery-item {
    --gx: 50%; --gy: 50%; --glare: 0;
    position: relative; overflow: hidden; border: 0; padding: 0; border-radius: var(--r);
    background: var(--c-bg-2); cursor: zoom-in; box-shadow: var(--shadow-sm); will-change: transform;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 40%; transition: scale 900ms var(--ease-out); }
.gallery-item::after {
    content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
    background: radial-gradient(240px circle at var(--gx) var(--gy), rgba(255,255,255,0.28), transparent 60%);
    opacity: var(--glare); transition: opacity var(--t) ease;
}
.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }
.gallery-zoom {
    position: absolute; right: 0.7rem; bottom: 0.7rem; width: 32px; height: 32px; border-radius: 50%;
    display: grid; place-items: center; color: #1d1d1f; background: rgba(255,255,255,0.86);
    opacity: 0; translate: 0 6px; transition: opacity var(--t) ease, translate var(--t) var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
    .gallery-item:hover img { scale: 1.05; }
    .gallery-item:hover .gallery-zoom { opacity: 1; translate: 0 0; }
}
.lightbox {
    position: fixed; inset: 0; z-index: 150; display: grid; place-items: center; padding: 3.5rem 1rem;
    background: rgba(0,0,0,0.9); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
    opacity: 0; pointer-events: none; transition: opacity 240ms ease;
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox figure { margin: 0; display: grid; place-items: center; max-width: min(1100px, 92vw); }
.lightbox img { max-height: 76vh; width: auto; border-radius: var(--r); box-shadow: var(--shadow-lg); scale: 0.96; transition: scale 320ms var(--ease-out); }
.lightbox.is-open img { scale: 1; }
.lightbox-cap { margin-top: 0.9rem; font-size: var(--fs-sm); color: #a1a1a6; text-align: center; max-width: 60ch; }
.lightbox-close, .lightbox-nav {
    position: absolute; width: 44px; height: 44px; border: 0; border-radius: 50%; cursor: pointer;
    display: grid; place-items: center; color: #f5f5f7; background: rgba(255,255,255,0.12);
    transition: background-color var(--t) ease, scale 120ms var(--ease-out);
}
.lightbox-close:hover, .lightbox-nav:hover { background: rgba(255,255,255,0.22); }
.lightbox-close:active, .lightbox-nav:active { scale: 0.94; }
.lightbox-close { top: 1rem; right: 1rem; }
.lightbox-nav { top: 50%; translate: 0 -50%; }
.lightbox-nav.prev { left: 1rem; }
.lightbox-nav.next { right: 1rem; }

/* --- Stats --- */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.stat { padding: 1.6rem 1.4rem; text-align: center; }
.stat-value { display: block; font-size: clamp(2rem, 3.6vw, 2.75rem); font-weight: 600; letter-spacing: -0.035em; line-height: 1; color: var(--c-ink); font-variant-numeric: tabular-nums; }
.stat-label { display: block; margin-top: 0.55rem; font-size: var(--fs-sm); font-weight: 600; }
.stat-note { display: block; margin-top: 0.2rem; font-size: var(--fs-xs); color: var(--c-ink-3); }

/* --- Articles --- */
.articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.article-card .tile-media { aspect-ratio: 16 / 10; }
.article-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 0.35rem 0.7rem; font-size: var(--fs-xs); color: var(--c-ink-3); }
.article-cat { font-weight: 600; color: var(--gold-ink); letter-spacing: 0.05em; text-transform: uppercase; font-size: 0.6875rem; }
.article-card h3 { font-size: 1.0625rem; font-weight: 600; letter-spacing: -0.014em; line-height: 1.3; margin-top: 0.55rem; }
.article-card p { margin-top: 0.4rem; font-size: var(--fs-sm); color: var(--c-ink-2); }
.article-card .link { margin-top: 0.7rem; font-size: var(--fs-sm); }
.article-featured { display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 5fr); margin-bottom: 1.1rem; overflow: visible; }
.article-featured .tile-media { aspect-ratio: auto; height: 100%; min-height: 320px; border-radius: var(--r-lg) 0 0 var(--r-lg); }
.article-featured .tile-body { padding: clamp(1.5rem, 3.5vw, 2.75rem); display: flex; flex-direction: column; justify-content: center; }
.article-featured .display { font-size: var(--fs-h3); margin-top: 0.7rem; }
.article-featured p { margin-top: 0.7rem; color: var(--c-ink-2); }
.article-featured .link { margin-top: 1rem; }

/* --- FAQ --- */
.faq-list { max-width: 820px; margin: 0 auto; border-top: 1px solid var(--c-line); }
.faq-item { border-bottom: 1px solid var(--c-line); }
.faq-heading { margin: 0; font-size: inherit; }
.faq-q {
    width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
    padding: 1.15rem 0; border: 0; background: transparent; text-align: left; cursor: pointer;
    font-size: 1.0625rem; font-weight: 600; letter-spacing: -0.014em; color: var(--c-ink);
}
.faq-icon {
    flex-shrink: 0; position: relative; width: 28px; height: 28px; border-radius: 50%;
    background: var(--c-bg-2); transition: transform 360ms var(--ease-out), background-color var(--t) ease;
}
.on-dark .faq-icon { background: rgba(255,255,255,0.1); }
.faq-icon::before, .faq-icon::after {
    content: ""; position: absolute; left: 50%; top: 50%; width: 11px; height: 1.6px;
    background: currentColor; border-radius: 2px; translate: -50% -50%;
}
.faq-icon::after { rotate: 90deg; }
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); background: var(--gold-3); color: var(--gold-ink); }
/* Height animates through grid rows: no measured heights, no layout thrash. */
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 380ms var(--ease-out); }
.faq-item.is-open .faq-a { grid-template-rows: 1fr; }
.faq-a-inner { min-height: 0; overflow: hidden; padding: 0 3rem 0 0; }
.faq-a-inner p { padding-bottom: 1.3rem; }
.faq-a-inner p { font-size: var(--fs-body); color: var(--c-ink-2); max-width: 64ch; }

/* --- Booking CTA band --- */
.cta { position: relative; overflow: hidden; color: #f5f5f7; }
.cta-media { position: absolute; inset: 0; }
.cta-media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 40%; will-change: transform; }
.cta-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,10,11,0.55), rgba(10,10,11,0.82)); }
.cta-inner { position: relative; text-align: center; padding-block: clamp(4.5rem, 10vw, 8rem); max-width: 720px; }
.cta-inner .display { margin-top: 0.7rem; color: #f5f5f7; }
.cta-inner .lead { margin: 0.9rem auto 0; color: #d1d1d6; max-width: 46ch; }
.cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; margin-top: 1.7rem; }
.cta-note { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem 1.4rem; margin-top: 1.5rem; font-size: var(--fs-xs); color: #a1a1a6; }
.cta-note span { display: inline-flex; align-items: center; gap: 0.3rem; }
.cta-note svg { color: var(--gold-2); }

/* --- Split feature --- */
.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split .display { margin: 0.7rem 0 0.9rem; }
.split-media { perspective: 1200px; }
.split-frame { border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 4 / 3; box-shadow: var(--shadow-lg); background: var(--c-bg-2); }
.split-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 40%; }
.split .check-list { margin: 1.4rem 0 1.6rem; }
.split .actions { margin-top: 1.4rem; }

/* --- Check list --- */
.check-list { display: grid; gap: 0.55rem; }
.check-list li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: var(--fs-sm); color: var(--c-ink-2); }
.check-list li svg { flex-shrink: 0; margin-top: 3px; color: var(--green); }
.check-list li strong { color: var(--c-ink); }

/* --- Contact cards --- */
.contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.contact-card { padding: 1.5rem 1.4rem; display: flex; flex-direction: column; gap: 0.6rem; }
.contact-card .h3 { font-size: 1.0625rem; }
.contact-card p { font-size: var(--fs-sm); color: var(--c-ink-2); flex: 1; }
.contact-card .link { font-size: var(--fs-sm); position: relative; z-index: 3; }
.contact-icon {
    width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center;
    color: var(--gold-ink); background: linear-gradient(160deg, #fbf3d6, #f1de9c);
    box-shadow: 0 1px 0 rgba(255,255,255,0.7) inset;
}
.company-list { display: grid; gap: 0.45rem; font-size: var(--fs-sm); color: var(--c-ink-2); }
.company-list strong { color: var(--c-ink); }

/* --- Detail page (experience / booking) --- */
.detail-layout { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.detail-main > * + * { margin-top: clamp(2.25rem, 5vw, 3.25rem); }
.detail-main .display { font-size: var(--fs-h3); margin-bottom: 0.9rem; }
.detail-facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.75rem; }
.detail-fact { padding: 0.9rem 1rem; border-radius: var(--r); background: var(--c-bg-2); }
.detail-fact span { display: block; font-size: var(--fs-xs); color: var(--c-ink-3); }
.detail-fact strong { display: block; margin-top: 0.15rem; font-size: var(--fs-sm); font-weight: 600; }
.booking-aside {
    position: sticky; top: calc(var(--header-h) + 1.25rem);
    padding: 1.5rem; border-radius: var(--r-lg); background: var(--c-surface); box-shadow: var(--shadow-md);
}
.booking-price { display: flex; align-items: baseline; gap: 0.4rem; margin-bottom: 0.5rem; }
.booking-price strong { font-size: 2rem; font-weight: 600; letter-spacing: -0.03em; }
.booking-price span { font-size: var(--fs-sm); color: var(--c-ink-3); }
.booking-aside .check-list { margin: 1.1rem 0 1.4rem; }
.booking-aside .btn + .btn { margin-top: 0.6rem; }
.booking-aside .fine { margin-top: 1rem; text-align: center; font-size: var(--fs-xs); color: var(--c-ink-3); }

/* --- Sticky mobile booking bar --- */
.mobile-bar {
    position: fixed; left: 0.75rem; right: 0.75rem; bottom: 0.75rem; z-index: 80;
    display: none; align-items: center; justify-content: space-between; gap: 1rem;
    padding: 0.6rem 0.6rem 0.6rem 1.1rem; border-radius: 999px;
    background: rgba(28,28,30,0.82); color: #f5f5f7;
    -webkit-backdrop-filter: blur(20px) saturate(160%); backdrop-filter: blur(20px) saturate(160%);
    box-shadow: 0 0 0 1px rgba(255,255,255,0.1) inset, 0 12px 30px -10px rgba(0,0,0,0.6);
    translate: 0 120%; transition: translate 360ms var(--ease-out);
}
.mobile-bar.is-visible { translate: 0 0; }
.mobile-bar-price { display: grid; line-height: 1.1; }
.mobile-bar-price span { font-size: var(--fs-xs); color: #a1a1a6; }
.mobile-bar-price strong { font-size: 1.125rem; font-weight: 600; }

/* --- 404 --- */
.notfound { min-height: 80vh; display: grid; place-items: center; text-align: center; padding: calc(var(--header-h) + 3rem) 0 4rem; }
.notfound-num { display: block; font-size: clamp(5rem, 16vw, 10rem); font-weight: 600; letter-spacing: -0.06em; line-height: 0.9; opacity: 0.12; }
.notfound .display { margin-top: 1rem; }
.notfound .lead { margin: 0.9rem auto 0; max-width: 44ch; }
.notfound .actions { justify-content: center; margin-top: 2rem; }

/* 11. FORMS ============================================================== */
.field { display: grid; gap: 0.35rem; }
.field + .field, .field-row + .field, .field + .field-row, .field-row + .field-row { margin-top: 1.1rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field label, .field .label { font-size: var(--fs-sm); font-weight: 600; }
.field input, .field select, .field textarea {
    width: 100%; min-height: 46px; padding: 0.7rem 0.95rem;
    border: 1px solid var(--c-line-2); border-radius: 12px;
    background: var(--c-surface); color: var(--c-ink); font: inherit; letter-spacing: inherit;
    transition: border-color var(--t) ease, box-shadow var(--t) ease;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus {
    outline: 0; border-color: var(--gold); box-shadow: 0 0 0 4px rgba(201,162,39,0.18);
}
.field [aria-invalid="true"] { border-color: var(--red); }
.field-hint { font-size: var(--fs-xs); color: var(--c-ink-3); }
.field-error { display: none; font-size: var(--fs-xs); color: var(--red); }
.field-error.is-shown { display: block; }
fieldset { border: 0; padding: 0; margin: 0 0 2rem; min-width: 0; }
legend { padding: 0; margin-bottom: 1rem; }

.stepper { display: inline-grid; grid-template-columns: 46px 70px 46px; align-items: stretch; border: 1px solid var(--c-line-2); border-radius: 12px; overflow: hidden; }
.stepper button { border: 0; background: var(--c-bg-2); font-size: 1.25rem; cursor: pointer; transition: background-color var(--t) ease; }
.stepper button:hover:not(:disabled) { background: rgba(0,0,0,0.08); }
.stepper button:disabled { opacity: 0.35; cursor: default; }
.stepper input { border: 0; border-radius: 0; text-align: center; min-height: 44px; padding: 0; -moz-appearance: textfield; }
.stepper input::-webkit-outer-spin-button, .stepper input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.stepper input:focus { box-shadow: none; }

.choices { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.choice { position: relative; }
.choice input { position: absolute; opacity: 0; inset: 0; }
.choice span {
    display: inline-block; padding: 0.5rem 0.9rem; border-radius: 999px; font-size: var(--fs-sm);
    background: var(--c-bg-2); color: var(--c-ink); box-shadow: 0 0 0 1px transparent inset;
    cursor: pointer; transition: background-color var(--t) ease, color var(--t) ease, scale 120ms var(--ease-out);
}
.choice span:active { scale: 0.96; }
.choice input:checked + span { background: var(--c-ink); color: #fff; }
.choice input:focus-visible + span { outline: 2px solid var(--gold); outline-offset: 2px; }

.steps { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.75rem; }
.step {
    display: inline-flex; align-items: center; gap: 0.45rem; padding: 0.4rem 0.8rem 0.4rem 0.4rem;
    border-radius: 999px; background: var(--c-bg-2); font-size: var(--fs-xs); font-weight: 500; color: var(--c-ink-2);
    transition: background-color var(--t) ease, color var(--t) ease;
}
.step b { display: grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; background: #fff; box-shadow: var(--shadow-sm); font-size: 0.6875rem; }
.step.is-done { background: var(--gold-3); color: var(--gold-ink); }
.step.is-done b { background: var(--gold-ink); color: #fff; box-shadow: none; }

.summary { display: grid; gap: 0.5rem; }
.summary-row { display: flex; justify-content: space-between; gap: 1rem; font-size: var(--fs-sm); }
.summary-row span { color: var(--c-ink-3); }
.summary-row strong { font-weight: 500; text-align: right; }
.summary-total { margin-top: 0.4rem; padding-top: 0.8rem; border-top: 1px solid var(--c-line); font-size: var(--fs-body); }
.summary-total strong { font-weight: 600; }

.form-status { display: none; margin-top: 1rem; padding: 0.9rem 1rem; border-radius: 12px; font-size: var(--fs-sm); }
.form-status.is-shown { display: block; }
.form-status.ok { background: rgba(31,138,91,0.1); color: #14663f; }
.form-status.err { background: rgba(208,52,44,0.08); color: #a3231c; }

/* 12. FOOTER ============================================================= */
.footer { padding: clamp(3.5rem, 7vw, 5.5rem) 0 2rem; font-size: var(--fs-sm); }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--c-line); }
.seal {
    display: grid; place-items: center; width: 104px; height: 104px; border-radius: 50%;
    background: #fff; box-shadow: 0 0 0 1px rgba(255,255,255,0.08), 0 14px 30px -12px rgba(0,0,0,0.7);
    transform-style: preserve-3d; transition: transform 800ms var(--ease-out);
}
.seal img { width: 76px; height: auto; }
@media (hover: hover) and (pointer: fine) { .seal:hover { transform: perspective(500px) rotateY(18deg) rotateX(-6deg); } }
.footer-statement { margin-top: 1.1rem; max-width: 34ch; color: var(--c-ink-2); }
.socials { display: flex; gap: 0.5rem; margin-top: 1.2rem; }
.socials a {
    width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center;
    background: rgba(255,255,255,0.08); color: var(--c-ink);
    transition: background-color var(--t) ease, translate var(--t) var(--ease-out);
}
.socials a:hover { background: rgba(255,255,255,0.16); translate: 0 -2px; }
.footer-h { font-size: var(--fs-xs); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--c-ink-3); margin-bottom: 0.9rem; }
.footer-links, .footer-contact { display: grid; gap: 0.5rem; }
.footer-links a, .footer-contact a { color: var(--c-ink-2); transition: color var(--t) ease; }
.footer-links a:hover, .footer-contact a:hover { color: var(--c-ink); }
.footer-contact .muted { color: var(--c-ink-3); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.75rem 2rem; padding-top: 1.5rem; font-size: var(--fs-xs); color: var(--c-ink-3); }
.footer-legal { display: grid; gap: 0.2rem; }
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 1.2rem; }
.footer-bottom nav a:hover { color: var(--c-ink); }

/* 13. 3D + REVEAL SYSTEM ================================================= */
/* Scroll reveal: opacity and translate only, so JS can own transform for tilt */
[data-reveal], .stagger > * {
    opacity: 0; translate: 0 22px;
    transition: opacity 700ms var(--ease-out), translate 820ms var(--ease-out);
}
[data-reveal].is-visible, .stagger.is-visible > * { opacity: 1; translate: 0 0; }
.stagger > * { transition-delay: calc(var(--i, 0) * 70ms); }
[data-reveal-delay="1"] { transition-delay: 90ms; }
[data-reveal-delay="2"] { transition-delay: 180ms; }
[data-reveal-delay="3"] { transition-delay: 270ms; }
/* Flip-in: cards rise and tip up from their base edge */
.flip { perspective: 1600px; }
.flip > * { rotate: x 22deg; transform-origin: 50% 100%; transition: opacity 700ms var(--ease-out), translate 820ms var(--ease-out), rotate 900ms var(--ease-out); }
.flip.is-visible > * { rotate: x 0deg; }

/* Tilt elements: JS writes transform, CSS keeps everything else */
[data-tilt] { transform-style: preserve-3d; }
[data-tilt] > .tile-body, [data-tilt] > .why-num, [data-tilt] > h3 { transform: translateZ(0); }
.tilt-pop { transform: translateZ(28px); }

/* Words rising behind their line box (hero headline) */
.motion-word-mask { display: inline-block; overflow: hidden; vertical-align: bottom; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.motion-word { display: inline-block; will-change: transform; }

/* 14. RESPONSIVE ========================================================= */
@media (max-width: 1100px) {
    .tours-grid, .tours-grid.three { grid-template-columns: repeat(2, 1fr); }
    .story-rail { grid-auto-columns: 300px; }
    .trust-grid { grid-template-columns: repeat(3, 1fr); }
    .contact-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 180px; }
}

@media (max-width: 960px) {
    :root { --header-h: 52px; }
    .brand .xo-mark { height: 38px; }
    .nav { display: none; }
    .menu-toggle { display: block; }
    .header-inner { grid-template-columns: auto 1fr auto; }
    /* The desktop nav is gone, so pin the actions to the right column. */
    .nav-actions { grid-column: 3; justify-self: end; margin-right: -0.5rem; }
    .nav-actions .btn { display: none; }
    .lang { display: none; }
    .why-grid, .t-grid, .articles-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .safety-layout, .split, .mood-panel { grid-template-columns: 1fr; }
    .split-media { order: -1; }
    .detail-layout { grid-template-columns: 1fr; }
    .booking-aside { position: static; }
    .detail-facts { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .article-featured { grid-template-columns: 1fr; }
    .article-featured .tile-media { border-radius: var(--r-lg) var(--r-lg) 0 0; min-height: 0; aspect-ratio: 16 / 9; }
    .compare-row { grid-template-columns: 1fr; gap: 0.35rem; }
    .compare-head { display: none; }
    .compare-point { font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: 0.06em; color: var(--c-ink-3); }
    .sec-row { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
    .mobile-bar { display: flex; }
    .hero-trust { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .tours-grid {
        display: grid; grid-auto-flow: column; grid-auto-columns: 78%; grid-template-columns: none;
        overflow-x: auto; scroll-snap-type: x mandatory; padding: 0 var(--gutter) 0.75rem;
        margin: 0 calc(var(--gutter) * -1); scrollbar-width: none;
    }
    .tours-grid::-webkit-scrollbar { display: none; }
    .tours-grid > * { scroll-snap-align: start; }
    .why-grid, .t-grid, .t-grid.two, .articles-grid, .contact-grid, .contact-grid.three, .field-row { grid-template-columns: 1fr; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
    .gallery-item.wide { grid-column: span 2; }
    .gallery-item.tall { grid-row: span 1; }
    .footer-top { grid-template-columns: 1fr; gap: 2rem; }
    .detail-facts { grid-template-columns: 1fr 1fr; }
    .hero-cta .btn, .cta-actions .btn { width: 100%; }
    .story-rail { grid-auto-columns: 82%; margin: 0 calc(var(--gutter) * -1); padding: 0 var(--gutter) 0.5rem; }
    .hero-scene { margin-top: 2rem; }
    .hero-stage { aspect-ratio: 4 / 5; border-radius: 22px; }
    .hero-stage-media img { object-position: 50% 45%; }
    .hero-badge-rating { left: 0.7rem; bottom: 0.7rem; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
    .stat { padding: 1.2rem 0.75rem; }
    .lightbox-nav { top: auto; bottom: 1rem; translate: 0 0; }
}

/* 15. PREFERENCES / PRINT =============================================== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
    [data-reveal], .stagger > *, .flip > * { opacity: 1; translate: 0 0; rotate: x 0deg; }
    .hero-live, .scroll-hint i { animation: none; }
    .mm-nav > *, .mm-foot > * { opacity: 1; translate: 0 0; }
}
@media (prefers-reduced-transparency: reduce) {
    .header, .mobile-menu, .hero-badge, .safety-badge, .mobile-bar, .lang-menu { -webkit-backdrop-filter: none; backdrop-filter: none; }
    .header { background: #fff; }
    .header.is-transparent, .header.is-over-dark { background: #0a0a0b; }
    .mobile-menu, .mobile-bar { background: #0a0a0b; }
}
@media print {
    .header, .mobile-menu, .mobile-bar, .cta, .footer .socials, .scroll-hint { display: none !important; }
    body { color: #000; background: #fff; }
    [data-reveal], .stagger > * { opacity: 1; translate: 0 0; }
}
