/* ==========================================================================
   Wayfinder Namibia design system
   Bespoke stylesheet (replaces Tailwind CDN on remodeled pages).
   Component names in [brackets] credit the ReactBits.dev pattern they adapt.
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
    /* Ink (warm blacks) */
    --ink-950: #120E0B;
    --ink-900: #1A1510;
    --ink-800: #272019;
    --ink-700: #3A3128;

    /* Sand (warm surfaces) */
    --sand-50: #FAF7F0;
    --sand-100: #F4EEE1;
    --sand-200: #E9E0CC;
    --sand-300: #D9CCAF;

    /* Clay (brand primary) */
    --clay-600: #A84527;
    --clay-500: #C75B39;
    --clay-400: #DE7551;
    --clay-300: #EC9878;

    /* Gold (accent) */
    --gold-500: #C29A2B;
    --gold-400: #D4AF37;
    --gold-300: #E6C86A;

    /* Teal (secondary) */
    --teal-700: #07404E;
    --teal-600: #0E5E6F;
    --teal-500: #17798D;

    /* Neutrals */
    --stone-700: #4A4239;
    --stone-600: #6B6156;
    --stone-500: #8C8276;
    --stone-400: #ABA294;
    --stone-300: #C9C1B2;

    --success: #3E8E5A;

    --font-display: 'Fraunces', Georgia, serif;
    --font-body: 'DM Sans', system-ui, sans-serif;

    --container: 76rem;
    --radius-lg: 1.75rem;
    --radius-md: 1.125rem;
    --radius-sm: .625rem;

    --shadow-soft: 0 20px 60px -20px rgba(18, 14, 11, .25);
    --shadow-card: 0 8px 30px -12px rgba(18, 14, 11, .18);

    --ease-out: cubic-bezier(.22, 1, .36, 1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--ink-900);
    background: var(--sand-50);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font: inherit; }
h1, h2, h3, h4, h5 { margin: 0; font-family: var(--font-display); font-weight: 600; line-height: 1.08; letter-spacing: -.01em; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

::selection { background: var(--clay-500); color: #fff; }

iconify-icon { display: inline-block; vertical-align: middle; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 1.5rem; }

/* ---------- Typography helpers ---------- */
.eyebrow {
    display: inline-flex; align-items: center; gap: .5rem;
    font-size: .72rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
    color: var(--clay-500);
}
.eyebrow--gold { color: var(--gold-500); }
.eyebrow--light { color: var(--gold-300); }

.display-xl { font-size: clamp(2.75rem, 7.2vw, 5.5rem); }
.display-lg { font-size: clamp(2.25rem, 5vw, 4rem); }
.display-md { font-size: clamp(1.75rem, 3.6vw, 2.75rem); }
.display-sm { font-size: clamp(1.35rem, 2.4vw, 1.85rem); }

.lede { font-size: clamp(1.05rem, 1.4vw, 1.25rem); line-height: 1.65; color: var(--stone-600); }

.serif-i { font-family: var(--font-display); font-style: italic; font-weight: 500; }

/* [GradientText] static gradient fill for key words */
.text-gradient {
    background: linear-gradient(100deg, var(--gold-300), var(--clay-400) 45%, var(--gold-400));
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
}

/* [ShinyText] shimmering sweep across gradient text */
.shiny-text {
    background: linear-gradient(110deg, var(--gold-300) 20%, #fff8e7 42%, var(--clay-300) 55%, var(--gold-300) 80%);
    background-size: 220% 100%;
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
    animation: shine 5.5s linear infinite;
}
@keyframes shine { to { background-position: -220% 0; } }

/* [BlurText / SplitText] hero word reveal, spans injected by JS */
.blur-text .w {
    display: inline-block;
    opacity: 0;
    filter: blur(12px);
    transform: translateY(.6em);
    animation: word-in .9s var(--ease-out) forwards;
    animation-delay: calc(var(--i) * 90ms + 150ms);
}
@keyframes word-in { to { opacity: 1; filter: blur(0); transform: none; } }

/* gradient words revealed as one unit keep their shimmer running */
.blur-text .shiny-text.w {
    animation: word-in .9s var(--ease-out) forwards, shine 5.5s linear infinite;
    animation-delay: calc(var(--i) * 90ms + 150ms), 0s;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
    padding: 1rem 2rem;
    border-radius: 999px;
    font-weight: 700; font-size: .95rem;
    transition: transform .3s var(--ease-out), box-shadow .3s, background .3s, color .3s, border-color .3s;
    will-change: transform;
}
.btn:active { transform: scale(.97); }

.btn--primary {
    background: linear-gradient(120deg, var(--clay-500), var(--clay-600));
    color: #fff;
    box-shadow: 0 12px 30px -8px rgba(199, 91, 57, .55);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -10px rgba(199, 91, 57, .65); }

.btn--ghost {
    background: rgba(255, 255, 255, .07);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .25);
    backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: rgba(255, 255, 255, .14); border-color: rgba(255, 255, 255, .45); transform: translateY(-3px); }

.btn--dark {
    background: var(--ink-900); color: var(--sand-50);
    box-shadow: 0 12px 30px -10px rgba(18, 14, 11, .5);
}
.btn--dark:hover { background: var(--ink-800); transform: translateY(-3px); }

.btn--outline {
    background: #fff; color: var(--ink-900);
    border: 1px solid var(--sand-300);
}
.btn--outline:hover { border-color: var(--clay-500); color: var(--clay-500); transform: translateY(-3px); }

.btn--lg { padding: 1.2rem 2.6rem; font-size: 1.05rem; }

/* [StarBorder] animated rotating gradient border around a CTA */
.star-border {
    position: relative; display: inline-block; border-radius: 999px; padding: 2px;
    background: linear-gradient(var(--ink-900), var(--ink-900)) padding-box,
        conic-gradient(from var(--sb-angle, 0deg), transparent 0 40%, var(--gold-300) 47%, #fff 50%, var(--gold-300) 53%, transparent 60% 100%) border-box;
    border: 2px solid transparent;
    animation: sb-spin 4.2s linear infinite;
}
@property --sb-angle { syntax: '<angle>'; initial-value: 0deg; inherits: false; }
@keyframes sb-spin { to { --sb-angle: 360deg; } }
.star-border .btn { display: flex; }

/* [Magnet] magnetic hover applied via JS: .magnetic gets translated */
.magnetic { transition: transform .25s var(--ease-out); }

/* ---------- Nav ---------- */
.nav {
    position: fixed; inset-inline: 0; top: 0; z-index: 90;
    transition: background .35s, box-shadow .35s, backdrop-filter .35s;
}
.nav__inner {
    display: flex; align-items: center; justify-content: space-between;
    padding-block: .9rem;
}
.nav__logo img {
    height: 4.8rem; width: auto;
    /* white halo so the logo doesn't sink into the dark hero when the nav is transparent */
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, .85)) drop-shadow(0 0 20px rgba(255, 255, 255, .5));
    transition: height .35s, filter .35s;
}
.nav__links { display: none; align-items: center; gap: 2.2rem; }
.nav__link {
    position: relative; font-size: .9rem; font-weight: 600; color: rgba(255, 255, 255, .85);
    transition: color .25s;
}
.nav__link::after {
    content: ''; position: absolute; left: 0; bottom: -6px; height: 2px; width: 100%;
    background: var(--gold-400); transform: scaleX(0); transform-origin: right;
    transition: transform .35s var(--ease-out);
}
.nav__link:hover { color: #fff; }
.nav__link:hover::after { transform: scaleX(1); transform-origin: left; }

.nav.is-scrolled {
    background: rgba(250, 247, 240, .88);
    backdrop-filter: blur(14px);
    box-shadow: 0 8px 30px -18px rgba(18, 14, 11, .35);
}
.nav.is-scrolled .nav__logo img { height: 3.8rem; mix-blend-mode: multiply; filter: none; }
.nav.is-scrolled .nav__link { color: var(--stone-600); }
.nav.is-scrolled .nav__link:hover { color: var(--clay-500); }
.nav.is-scrolled .nav__burger { color: var(--ink-900); }

/* Nav on light pages (pricing) starts scrolled-style */
.nav--solid { background: rgba(250, 247, 240, .88); backdrop-filter: blur(14px); box-shadow: 0 8px 30px -18px rgba(18, 14, 11, .35); }
.nav--solid .nav__logo img { height: 3.8rem; mix-blend-mode: multiply; filter: none; }
.nav--solid .nav__link { color: var(--stone-600); }
.nav--solid .nav__link:hover { color: var(--clay-500); }
.nav--solid .nav__burger { color: var(--ink-900); }

.nav__cta { padding: .7rem 1.5rem; font-size: .85rem; }

.nav__burger { display: grid; place-items: center; width: 2.75rem; height: 2.75rem; color: #fff; font-size: 1.7rem; }

/* Mobile menu */
.mobile-menu {
    position: fixed; inset: 0; z-index: 80;
    background: rgba(18, 14, 11, .96);
    backdrop-filter: blur(18px);
    display: flex; flex-direction: column; justify-content: center; gap: .5rem;
    padding: 6rem 2.5rem 3rem;
    opacity: 0; pointer-events: none; transition: opacity .35s;
}
.mobile-menu.is-open { opacity: 1; pointer-events: auto; }
.mobile-menu a {
    font-family: var(--font-display); font-size: 2rem; color: var(--sand-100);
    padding-block: .7rem; border-bottom: 1px solid rgba(255, 255, 255, .08);
    display: flex; justify-content: space-between; align-items: center;
    opacity: 0; transform: translateY(14px); transition: opacity .4s var(--ease-out), transform .4s var(--ease-out), color .25s;
}
.mobile-menu.is-open a { opacity: 1; transform: none; }
.mobile-menu.is-open a:nth-child(1) { transition-delay: .08s; }
.mobile-menu.is-open a:nth-child(2) { transition-delay: .14s; }
.mobile-menu.is-open a:nth-child(3) { transition-delay: .2s; }
.mobile-menu.is-open a:nth-child(4) { transition-delay: .26s; }
.mobile-menu.is-open a:nth-child(5) { transition-delay: .32s; }
.mobile-menu a:hover { color: var(--gold-300); }
.mobile-menu__cta { margin-top: 1.5rem; opacity: 0; transition: opacity .4s .4s; }
.mobile-menu.is-open .mobile-menu__cta { opacity: 1; }

/* Scroll progress bar */
.scroll-progress {
    position: fixed; top: 0; left: 0; height: 3px; width: 100%; z-index: 95;
    transform-origin: left; transform: scaleX(0);
    background: linear-gradient(90deg, var(--clay-500), var(--gold-400));
}

/* ---------- Hero ---------- */
.hero {
    position: relative; min-height: 100svh;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; color: #fff; text-align: center;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img {
    width: 100%; height: 100%; object-fit: cover;
    animation: kenburns 26s var(--ease-out) infinite alternate;
}
@keyframes kenburns {
    from { transform: scale(1.02) translateY(0); }
    to { transform: scale(1.14) translateY(-1.5%); }
}
.hero__bg::after {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(120% 60% at 50% 108%, rgba(18, 14, 11, .92) 8%, transparent 60%),
        linear-gradient(to bottom, rgba(18, 14, 11, .72), rgba(18, 14, 11, .28) 42%, rgba(18, 14, 11, .78));
}
/* dust particle canvas [Particles] */
.hero__particles { position: absolute; inset: 0; z-index: 1; pointer-events: none; }

.hero__content { position: relative; z-index: 2; padding-top: 7rem; padding-bottom: 9rem; }

.hero__badge {
    display: inline-flex; align-items: center; gap: .6rem;
    padding: .65rem 1.4rem; border-radius: 999px;
    background: rgba(255, 255, 255, .09); border: 1px solid rgba(255, 255, 255, .22);
    backdrop-filter: blur(10px);
    font-size: .82rem; font-weight: 700; letter-spacing: .06em;
    animation: fade-down .8s var(--ease-out) both;
}
.hero__badge iconify-icon { font-size: 1.15rem; color: var(--gold-300); }
@keyframes fade-down { from { opacity: 0; transform: translateY(-16px); } }

.hero h1 { margin: 1.6rem auto 1.4rem; max-width: 15ch; font-weight: 550; }

.hero__sub {
    max-width: 40rem; margin: 0 auto 2.6rem;
    font-size: clamp(1.05rem, 1.5vw, 1.3rem); line-height: 1.65; color: var(--sand-200);
    animation: fade-up 1s .7s var(--ease-out) both;
}
@keyframes fade-up { from { opacity: 0; transform: translateY(20px); } }

.hero__tagline {
    margin: -1.4rem auto 2.6rem;
    font-size: .95rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
    color: var(--gold-300);
    animation: fade-up 1s .8s var(--ease-out) both;
}

.hero__ctas {
    display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center;
    animation: fade-up 1s .9s var(--ease-out) both;
}

.hero__trust {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 1.4rem 2.4rem;
    margin-top: 3rem; animation: fade-up 1s 1.1s var(--ease-out) both;
}
.hero__trust span {
    display: inline-flex; align-items: center; gap: .55rem;
    font-size: .85rem; font-weight: 600; color: rgba(255, 255, 255, .72);
}
.hero__trust iconify-icon { font-size: 1.25rem; color: var(--gold-300); }

.hero__scrollcue {
    position: absolute; bottom: 6.5rem; left: 50%; transform: translateX(-50%); z-index: 3;
    color: rgba(255, 255, 255, .65); font-size: 1.6rem;
    animation: cue 2.2s ease-in-out infinite;
}
@keyframes cue { 0%, 100% { transform: translate(-50%, 0); opacity: .55; } 50% { transform: translate(-50%, 10px); opacity: 1; } }

/* Dune divider sitting on hero bottom edge */
.hero__dune { position: absolute; bottom: -1px; left: 0; right: 0; z-index: 3; }
.hero__dune svg { display: block; width: 100%; height: clamp(50px, 9vw, 130px); }

/* ---------- Section scaffolding ---------- */
.section { padding-block: clamp(4.5rem, 9vw, 8rem); position: relative; }
.section--white { background: #fff; }
.section--sand { background: var(--sand-50); }
.section--dark { background: var(--ink-900); color: var(--sand-100); }

.section-head { max-width: 46rem; margin: 0 auto clamp(3rem, 6vw, 5rem); text-align: center; }
.section-head h2 { margin-top: .9rem; margin-bottom: 1.1rem; color: inherit; }
.section-head .lede { margin-inline: auto; }
.section--dark .lede { color: var(--stone-400); }

/* film grain overlay */
.grain::before {
    content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 1; opacity: .05;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
}
.grain > * { position: relative; z-index: 2; }

/* [ScrollReveal] reveal-on-scroll (replaces AOS) */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); transition-delay: var(--d, 0s); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal--left { transform: translateX(-40px); }
.reveal--right { transform: translateX(40px); }
.reveal--left.is-visible, .reveal--right.is-visible { transform: none; }

/* ---------- Marquee strip [InfiniteScroll / LogoLoop] ---------- */
.marquee {
    --gap: 3.5rem;
    overflow: hidden; display: flex;
    background: var(--ink-950); color: var(--sand-200);
    padding-block: 1.1rem;
    border-block: 1px solid rgba(255, 255, 255, .07);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
    display: flex; align-items: center; gap: var(--gap); flex-shrink: 0;
    padding-inline-start: var(--gap);
    animation: marquee 36s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-100%); } }
.marquee__item {
    display: inline-flex; align-items: center; gap: 1rem; white-space: nowrap;
    font-family: var(--font-display); font-size: 1.05rem; font-style: italic; letter-spacing: .04em;
}
.marquee__item iconify-icon { color: var(--gold-400); font-size: .8rem; }

/* ---------- Stats ---------- */
.stats {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
    max-width: 52rem; margin-inline: auto; text-align: center;
}
.stat__num {
    font-family: var(--font-display); font-weight: 600;
    font-size: clamp(2.2rem, 4.5vw, 3.4rem); line-height: 1;
    color: var(--ink-900);
}
.stat__num em { font-style: normal; color: var(--clay-500); }
.stat__label { margin-top: .6rem; font-size: .85rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--stone-500); }

/* ---------- How it works ---------- */
.step { display: grid; gap: 2.5rem; align-items: center; margin-bottom: clamp(4rem, 8vw, 7rem); }
.step:last-child { margin-bottom: 0; }

.step__media { position: relative; }
.step__media::before {
    content: ''; position: absolute; inset: -1.2rem; border-radius: calc(var(--radius-lg) + 1.2rem);
    background: linear-gradient(135deg, rgba(199, 91, 57, .14), rgba(212, 175, 55, .12));
    filter: blur(28px);
}
.step__frame {
    position: relative; border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-soft); border: 1px solid var(--sand-200);
}
.step__frame > img { width: 100%; height: 400px; object-fit: cover; }

.step__num {
    display: flex; align-items: center; gap: 1.2rem; margin-bottom: 1.6rem;
}
.step__num span {
    font-family: var(--font-display); font-style: italic; font-size: 3.2rem; line-height: 1;
    color: transparent; -webkit-text-stroke: 1.5px var(--clay-500);
}
.step__num::after { content: ''; height: 1px; flex: 1; background: linear-gradient(90deg, var(--clay-500), transparent); opacity: .4; }

.step h3 { font-size: clamp(1.6rem, 3vw, 2.3rem); margin-bottom: 1rem; }
.step > div > p { color: var(--stone-600); font-size: 1.05rem; margin-bottom: 1.5rem; }

.checklist li { display: flex; align-items: center; gap: .8rem; padding-block: .45rem; color: var(--stone-700); font-weight: 500; }
.checklist iconify-icon { color: var(--clay-500); font-size: 1.25rem; flex-shrink: 0; }

/* floating UI vignettes inside step images */
.float-card {
    position: absolute; left: 1.25rem; right: 1.25rem; bottom: 1.25rem;
    background: rgba(255, 255, 255, .94); backdrop-filter: blur(10px);
    border-radius: var(--radius-md); padding: 1.1rem 1.25rem;
    box-shadow: var(--shadow-card); border: 1px solid rgba(255, 255, 255, .6);
    text-align: left;
}
.float-card--stack { display: grid; gap: .55rem; background: none; border: 0; box-shadow: none; padding: 0; backdrop-filter: none; }
.float-card--stack > div {
    background: rgba(255, 255, 255, .94); backdrop-filter: blur(10px);
    border-radius: var(--radius-sm); padding: .7rem .9rem;
    box-shadow: var(--shadow-card);
    display: flex; align-items: center; gap: .8rem;
}
.float-card__chip {
    width: 2.4rem; height: 2.4rem; border-radius: .6rem; flex-shrink: 0;
    display: grid; place-items: center; font-weight: 700; font-size: .8rem;
}
.float-card small { color: var(--stone-500); font-size: .75rem; }
.float-card strong { font-size: .9rem; color: var(--ink-900); }

/* ---------- Feature grid [SpotlightCard] ---------- */
.features-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem;
    max-width: 64rem; margin-inline: auto;
}
.spot-card {
    position: relative; overflow: hidden;
    background: #fff; border: 1px solid var(--sand-200);
    border-radius: var(--radius-md); padding: 1.9rem 1.7rem;
    transition: transform .4s var(--ease-out), box-shadow .4s, border-color .4s;
}
.spot-card::before {
    /* mouse-tracking radial spotlight */
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(320px circle at var(--mx, 50%) var(--my, 50%), rgba(199, 91, 57, .09), transparent 65%);
    opacity: 0; transition: opacity .4s;
}
.spot-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); border-color: rgba(199, 91, 57, .3); }
.spot-card:hover::before { opacity: 1; }

.spot-card__icon {
    width: 3.3rem; height: 3.3rem; border-radius: .9rem; margin-bottom: 1.2rem;
    display: grid; place-items: center; font-size: 1.6rem;
    background: linear-gradient(135deg, rgba(199, 91, 57, .1), rgba(212, 175, 55, .12));
    color: var(--clay-500);
    transition: background .35s, color .35s, transform .35s var(--ease-out);
}
.spot-card:hover .spot-card__icon { background: linear-gradient(135deg, var(--clay-500), var(--clay-600)); color: #fff; transform: scale(1.06) rotate(-4deg); }
.spot-card--teal .spot-card__icon { background: rgba(14, 94, 111, .09); color: var(--teal-600); }
.spot-card--teal:hover .spot-card__icon { background: linear-gradient(135deg, var(--teal-500), var(--teal-700)); color: #fff; }
.spot-card--gold .spot-card__icon { background: rgba(212, 175, 55, .13); color: var(--gold-500); }
.spot-card--gold:hover .spot-card__icon { background: linear-gradient(135deg, var(--gold-400), var(--gold-500)); color: #fff; }

.spot-card h4 { font-size: 1.15rem; margin-bottom: .45rem; font-family: var(--font-body); font-weight: 700; }
.spot-card p { font-size: .92rem; color: var(--stone-600); }

/* ---------- Experience cards (dark) [TiltedCard] ---------- */
.exp-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }

.tilt-card {
    position: relative; height: 420px; border-radius: var(--radius-lg); overflow: hidden;
    transform-style: preserve-3d; will-change: transform;
    transition: transform .5s var(--ease-out), box-shadow .5s;
    display: block;
}
.tilt-card:hover { box-shadow: 0 30px 70px -25px rgba(0, 0, 0, .8); }
.tilt-card img {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
    transition: transform .8s var(--ease-out);
}
.tilt-card:hover img { transform: scale(1.08); }
.tilt-card::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10, 8, 6, .88) 8%, rgba(10, 8, 6, .18) 48%, transparent 75%);
}
.tilt-card__body { position: absolute; inset-inline: 0; bottom: 0; padding: 1.8rem; z-index: 2; transform: translateZ(40px); }
.tilt-card__tag {
    display: inline-flex; align-items: center; gap: .45rem;
    font-size: .7rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
    color: var(--gold-300); margin-bottom: .6rem;
}
.tilt-card h4 { color: #fff; font-size: 1.55rem; margin-bottom: .5rem; }
.tilt-card p { color: var(--stone-300); font-size: .9rem; max-height: 0; opacity: 0; overflow: hidden; transition: max-height .5s var(--ease-out), opacity .5s; }
.tilt-card:hover p { max-height: 5rem; opacity: 1; }
.tilt-card__go {
    position: absolute; top: 1.4rem; right: 1.4rem; z-index: 2;
    width: 2.9rem; height: 2.9rem; border-radius: 999px;
    display: grid; place-items: center;
    background: rgba(255, 255, 255, .12); border: 1px solid rgba(255, 255, 255, .25);
    backdrop-filter: blur(8px); color: #fff; font-size: 1.3rem;
    opacity: 0; transform: translateY(-8px) rotate(-45deg);
    transition: opacity .4s, transform .4s var(--ease-out), background .3s;
}
.tilt-card:hover .tilt-card__go { opacity: 1; transform: none; }
.tilt-card__go:hover { background: var(--clay-500); }

/* ---------- Destinations bento ---------- */
.bento { display: grid; gap: 1.25rem; grid-template-columns: repeat(2, 1fr); }
.bento .tilt-card { height: 330px; }

/* ---------- Provider CTA panel ---------- */
.provider-panel {
    position: relative; overflow: hidden;
    background: var(--ink-900); color: var(--sand-100);
    border-radius: clamp(1.5rem, 4vw, 3rem);
    padding: clamp(2.5rem, 6vw, 5rem);
}
.provider-panel::before {
    content: ''; position: absolute; width: 640px; height: 640px; border-radius: 50%;
    top: -40%; right: -18%;
    background: radial-gradient(circle, rgba(199, 91, 57, .28), transparent 65%);
    filter: blur(30px);
}
.provider-panel::after {
    content: ''; position: absolute; width: 460px; height: 460px; border-radius: 50%;
    bottom: -35%; left: -12%;
    background: radial-gradient(circle, rgba(212, 175, 55, .16), transparent 65%);
    filter: blur(30px);
}
.provider-panel__grid { position: relative; z-index: 2; display: grid; gap: 3rem; align-items: center; }
.provider-panel h2 { color: #fff; margin: .9rem 0 1.2rem; }
.provider-panel .lede { color: var(--stone-300); }

.claim-note {
    margin-top: 1.5rem; padding: 1.3rem 1.5rem;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(212, 175, 55, .25);
    border-radius: var(--radius-md);
    font-size: .95rem; line-height: 1.65; color: var(--stone-300);
}
.claim-note strong { color: var(--sand-100); }

.provider-panel__ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }

/* revenue vignette cards */
.rev-card {
    background: #fff; color: var(--ink-900);
    border-radius: var(--radius-md); padding: 1.4rem 1.6rem;
    box-shadow: var(--shadow-soft);
    display: flex; align-items: center; gap: 1.1rem;
    max-width: 22rem;
}
.rev-card__icon {
    width: 3rem; height: 3rem; border-radius: 999px; flex-shrink: 0;
    display: grid; place-items: center; font-size: 1.5rem;
}
.rev-card small { display: block; color: var(--stone-500); font-size: .78rem; font-weight: 600; }
.rev-card strong { font-family: var(--font-display); font-size: 1.5rem; }
.rev-stack { display: grid; gap: 1.1rem; justify-items: end; }
.rev-stack .rev-card:nth-child(1) { transform: rotate(2.5deg); }
.rev-stack .rev-card:nth-child(2) { transform: rotate(-2deg) translateX(-2.5rem); }
.rev-stack .rev-card:nth-child(3) { transform: rotate(1.5deg); }
.rev-stack .rev-card { transition: transform .5s var(--ease-out); }
.rev-stack .rev-card:hover { transform: rotate(0) scale(1.03); }

/* ---------- Testimonials ---------- */
.quote-grid { display: grid; gap: 1.4rem; grid-template-columns: 1fr; max-width: 70rem; margin-inline: auto; }
.quote-card {
    background: #fff; border: 1px solid var(--sand-200); border-radius: var(--radius-md);
    padding: 2rem;
    display: flex; flex-direction: column;
    transition: transform .4s var(--ease-out), box-shadow .4s;
}
.quote-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); }
.quote-card__stars { display: flex; gap: .2rem; color: var(--gold-400); font-size: 1.05rem; margin-bottom: 1.1rem; }
.quote-card blockquote { margin: 0 0 1.5rem; font-size: .95rem; line-height: 1.7; color: var(--stone-700); flex: 1; }
.quote-card blockquote::before { content: '\201C'; font-family: var(--font-display); font-size: 2.6rem; line-height: 0; display: block; margin-bottom: 1rem; color: var(--clay-400); }
.quote-card footer { display: flex; align-items: center; gap: .9rem; }
.quote-card__avatar {
    width: 2.7rem; height: 2.7rem; border-radius: 999px; flex-shrink: 0;
    display: grid; place-items: center; font-weight: 700; font-size: .85rem; color: #fff;
    background: linear-gradient(135deg, var(--clay-500), var(--gold-500));
}
.quote-card__avatar--teal { background: linear-gradient(135deg, var(--teal-500), var(--teal-700)); }
.quote-card__avatar--gold { background: linear-gradient(135deg, var(--gold-400), var(--clay-500)); }
.quote-card footer strong { display: block; font-size: .9rem; }
.quote-card footer small { color: var(--stone-500); font-size: .78rem; }

.trustbar { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.2rem 3rem; }
.trustbar span { display: inline-flex; align-items: center; gap: .6rem; font-weight: 700; font-family: var(--font-body); color: var(--stone-400); font-size: .95rem; transition: color .3s; }
.trustbar span:hover { color: var(--stone-600); }
.trustbar iconify-icon { font-size: 1.5rem; }

/* ---------- Newsletter ---------- */
.newsletter { position: relative; overflow: hidden; background: var(--ink-900); color: #fff; }
.newsletter__bg { position: absolute; inset: 0; opacity: .14; }
.newsletter__bg img { width: 100%; height: 100%; object-fit: cover; }
.newsletter__orb1, .newsletter__orb2 { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; }
.newsletter__orb1 { width: 380px; height: 380px; background: rgba(199, 91, 57, .22); top: -20%; left: 18%; }
.newsletter__orb2 { width: 300px; height: 300px; background: rgba(212, 175, 55, .16); bottom: -25%; right: 16%; }

.newsletter__form { display: flex; flex-direction: column; gap: .8rem; max-width: 32rem; margin: 2.4rem auto 0; }
.newsletter__form input {
    flex: 1; padding: 1.05rem 1.5rem; border-radius: 999px;
    background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .2);
    color: #fff; outline: none; transition: border-color .3s, box-shadow .3s;
}
.newsletter__form input::placeholder { color: var(--stone-500); }
.newsletter__form input:focus { border-color: var(--clay-400); box-shadow: 0 0 0 4px rgba(199, 91, 57, .18); }
.newsletter__note { margin-top: 1.1rem; font-size: .78rem; color: var(--stone-500); }

/* ---------- Footer ---------- */
.footer { background: linear-gradient(to bottom, var(--ink-900), var(--ink-950)); color: var(--stone-400); position: relative; }
.footer__dune svg { display: block; width: 100%; height: clamp(40px, 7vw, 90px); }
.footer__grid {
    display: grid; gap: 2.6rem; grid-template-columns: 1fr;
    padding-block: clamp(3rem, 6vw, 4.5rem) 2.5rem;
}
.footer__brand img { height: 8.5rem; width: auto; filter: invert(1) drop-shadow(0 2px 4px rgba(0, 0, 0, .5)); margin-bottom: 1.2rem; }
.footer__brand p { font-size: .9rem; max-width: 20rem; line-height: 1.7; }
.footer h5 { color: #fff; font-family: var(--font-body); font-weight: 700; font-size: .95rem; margin-bottom: 1.2rem; }
.footer__col a { display: flex; align-items: center; gap: .5rem; padding-block: .38rem; font-size: .9rem; transition: color .25s, transform .25s var(--ease-out); }
.footer__col a:hover { color: var(--gold-300); transform: translateX(4px); }
.footer__social { display: flex; gap: .8rem; margin-top: 1.4rem; }
.footer__social a {
    width: 2.6rem; height: 2.6rem; border-radius: 999px;
    display: grid; place-items: center; font-size: 1.15rem;
    background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .1);
    transition: background .3s, color .3s, transform .3s var(--ease-out), border-color .3s;
}
.footer__social a:hover { background: var(--clay-500); border-color: var(--clay-500); color: #fff; transform: translateY(-3px); }
.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding-block: 1.6rem;
    display: flex; flex-direction: column; gap: .9rem; align-items: center;
    font-size: .78rem; text-align: center;
}
.footer__bottom a { transition: color .25s; }
.footer__bottom a:hover { color: #fff; }
.footer__legal { display: flex; gap: 1.4rem; }

/* Scroll-to-top */
.scroll-top {
    position: fixed; bottom: 2rem; right: 2rem; z-index: 70;
    width: 3.1rem; height: 3.1rem; border-radius: 999px;
    display: grid; place-items: center; font-size: 1.4rem;
    background: var(--clay-500); color: #fff;
    box-shadow: 0 10px 26px -8px rgba(199, 91, 57, .6);
    opacity: 0; pointer-events: none; transform: translateY(14px);
    transition: opacity .35s, transform .35s var(--ease-out), background .3s;
}
.scroll-top.is-visible { opacity: 1; pointer-events: auto; transform: none; }
.scroll-top:hover { background: var(--clay-600); transform: translateY(-3px); }

/* ==========================================================================
   PRICING PAGE
   ========================================================================== */
.page-hero {
    position: relative; overflow: hidden; text-align: center;
    padding: clamp(9rem, 16vw, 12rem) 0 clamp(4rem, 8vw, 6rem);
    background: var(--ink-900); color: #fff;
}
.page-hero__bg { position: absolute; inset: 0; opacity: .22; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero::after {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(90% 70% at 50% 115%, rgba(199, 91, 57, .3), transparent 60%);
    pointer-events: none;
}
.page-hero > .container { position: relative; z-index: 2; }
.page-hero h1 { max-width: 18ch; margin: 1.4rem auto 1.2rem; color: #fff; }
.page-hero .lede { color: var(--sand-200); max-width: 42rem; margin-inline: auto; }
.page-hero__ctas { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 2.4rem; }
.page-hero__fineprint { margin-top: 1.6rem; font-size: .8rem; color: var(--stone-400); }

/* Tier cards */
.tiers { display: grid; gap: 1.5rem; grid-template-columns: 1fr; max-width: 70rem; margin-inline: auto; align-items: stretch; }
.tier {
    position: relative; display: flex; flex-direction: column;
    background: #fff; border: 1px solid var(--sand-200);
    border-radius: var(--radius-lg); padding: 2.4rem 2.1rem;
    transition: transform .4s var(--ease-out), box-shadow .4s, border-color .4s;
}
.tier:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.tier--featured { border-color: rgba(199, 91, 57, .45); box-shadow: var(--shadow-soft); }
.tier__flag {
    position: absolute; top: -0.95rem; left: 50%; transform: translateX(-50%);
    padding: .38rem 1.2rem; border-radius: 999px;
    background: linear-gradient(120deg, var(--clay-500), var(--clay-600)); color: #fff;
    font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
    white-space: nowrap;
}
.tier h3 { font-size: 1.45rem; margin-bottom: .5rem; }
.tier__desc { color: var(--stone-600); font-size: .92rem; margin-bottom: 1.6rem; min-height: 3.2em; }
.tier__rate { display: flex; align-items: baseline; gap: .45rem; }
.tier__rate strong { font-family: var(--font-display); font-size: 3.6rem; font-weight: 600; line-height: 1; color: var(--ink-900); }
.tier__rate strong sup { font-size: 1.6rem; color: var(--clay-500); }
.tier__rate span { color: var(--stone-500); font-size: .85rem; }
.tier__range {
    margin: 1.1rem 0 1.5rem; padding: .55rem 1rem; border-radius: 999px;
    background: var(--sand-100); font-size: .82rem; font-weight: 700; color: var(--stone-700);
    display: inline-flex; align-items: center; gap: .5rem; align-self: flex-start;
}
.tier__range iconify-icon { color: var(--clay-500); }
.tier ul { flex: 1; margin-bottom: 1.8rem; }
.tier ul li { display: flex; gap: .7rem; align-items: flex-start; padding-block: .42rem; font-size: .92rem; color: var(--stone-700); }
.tier ul iconify-icon { color: var(--success); font-size: 1.15rem; flex-shrink: 0; margin-top: .1rem; }
.tier .btn { width: 100%; }

.tier-note {
    max-width: 70rem; margin: 1.8rem auto 0; padding: 1.3rem 1.6rem;
    display: flex; gap: 1rem; align-items: flex-start;
    background: rgba(14, 94, 111, .06); border: 1px solid rgba(14, 94, 111, .18);
    border-radius: var(--radius-md); font-size: .92rem; color: var(--stone-700);
}
.tier-note iconify-icon { color: var(--teal-600); font-size: 1.5rem; flex-shrink: 0; }

/* Booking-flow timeline */
.flow { max-width: 44rem; margin-inline: auto; position: relative; }
.flow::before {
    content: ''; position: absolute; left: 1.55rem; top: .5rem; bottom: .5rem; width: 2px;
    background: linear-gradient(to bottom, var(--clay-500), var(--gold-400), var(--teal-500));
    opacity: .35;
}
.flow__step { position: relative; display: flex; gap: 1.6rem; padding-bottom: 2.4rem; }
.flow__step:last-child { padding-bottom: 0; }
.flow__dot {
    position: relative; z-index: 2; flex-shrink: 0;
    width: 3.2rem; height: 3.2rem; border-radius: 999px;
    display: grid; place-items: center;
    background: #fff; border: 2px solid var(--clay-500); color: var(--clay-500);
    font-family: var(--font-display); font-weight: 700; font-size: 1.15rem;
    transition: background .35s, color .35s;
}
.flow__step.is-visible .flow__dot { background: var(--clay-500); color: #fff; }
.flow__step h4 { font-family: var(--font-body); font-weight: 700; font-size: 1.1rem; margin-bottom: .4rem; }
.flow__step p { color: var(--stone-600); font-size: .95rem; }

/* invoice example */
.invoice-card {
    background: var(--ink-900); color: var(--sand-100);
    border-radius: var(--radius-lg); padding: 2.2rem;
    max-width: 26rem; margin-inline: auto;
    box-shadow: var(--shadow-soft);
}
.invoice-card h4 { display: flex; align-items: center; gap: .7rem; font-family: var(--font-body); font-weight: 700; font-size: 1rem; margin-bottom: 1.6rem; color: var(--gold-300); }
.invoice-card__row { display: flex; justify-content: space-between; align-items: baseline; padding-block: .85rem; border-bottom: 1px solid rgba(255, 255, 255, .08); }
.invoice-card__row:last-of-type { border-bottom: 0; }
.invoice-card__row small { display: block; color: var(--stone-500); font-size: .75rem; }
.invoice-card__row span { font-size: .9rem; color: var(--stone-300); }
.invoice-card__row strong { font-family: var(--font-display); font-size: 1.5rem; }
.invoice-card__row--total strong { color: var(--gold-300); font-size: 1.8rem; }
.invoice-card figcaption { margin-top: 1.4rem; font-size: .78rem; color: var(--stone-500); line-height: 1.6; }

/* FAQ accordion */
.faq { max-width: 46rem; margin-inline: auto; }
.faq details {
    background: #fff; border: 1px solid var(--sand-200); border-radius: var(--radius-md);
    margin-bottom: .9rem; overflow: hidden;
    transition: border-color .3s, box-shadow .3s;
}
.faq details[open] { border-color: rgba(199, 91, 57, .35); box-shadow: var(--shadow-card); }
.faq summary {
    display: flex; justify-content: space-between; align-items: center; gap: 1rem;
    padding: 1.25rem 1.5rem; cursor: pointer; list-style: none;
    font-weight: 700; font-size: .98rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary iconify-icon { flex-shrink: 0; font-size: 1.3rem; color: var(--clay-500); transition: transform .35s var(--ease-out); }
.faq details[open] summary iconify-icon { transform: rotate(45deg); }
.faq .faq__body { padding: 0 1.5rem 1.4rem; color: var(--stone-600); font-size: .93rem; line-height: 1.7; }
.faq .faq__body p + p { margin-top: .8rem; }

/* Contact form */
.contact-card {
    background: #fff; border: 1px solid var(--sand-200); border-radius: var(--radius-lg);
    padding: clamp(1.8rem, 4vw, 3rem); max-width: 44rem; margin-inline: auto;
    box-shadow: var(--shadow-card);
}
.form-grid { display: grid; gap: 1.1rem; grid-template-columns: 1fr; }
.form-field label { display: block; font-size: .82rem; font-weight: 700; margin-bottom: .45rem; color: var(--stone-700); }
.form-field input, .form-field select, .form-field textarea {
    width: 100%; padding: .9rem 1.15rem;
    border: 1px solid var(--sand-300); border-radius: var(--radius-sm);
    background: var(--sand-50); color: var(--ink-900); outline: none;
    transition: border-color .3s, box-shadow .3s, background .3s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
    border-color: var(--clay-500); background: #fff;
    box-shadow: 0 0 0 4px rgba(199, 91, 57, .12);
}
.form-field textarea { resize: vertical; min-height: 8rem; }
.form-msg { display: flex; align-items: center; gap: .6rem; margin-top: 1rem; padding: .9rem 1.2rem; border-radius: var(--radius-sm); font-size: .9rem; font-weight: 600; }
.form-msg--ok { background: rgba(62, 142, 90, .1); color: var(--success); border: 1px solid rgba(62, 142, 90, .3); }
.form-msg--err { background: rgba(199, 60, 57, .08); color: #B33; border: 1px solid rgba(199, 60, 57, .3); }
.hidden { display: none !important; }

/* CTA band */
.cta-band {
    text-align: center; color: #fff; position: relative; overflow: hidden;
    background: linear-gradient(120deg, var(--clay-600), var(--clay-500) 55%, var(--gold-500));
    border-radius: clamp(1.5rem, 4vw, 3rem);
    padding: clamp(3rem, 7vw, 5rem) clamp(1.5rem, 5vw, 4rem);
}
.cta-band h3 { color: #fff; margin-bottom: 1rem; }
.cta-band p { color: rgba(255, 255, 255, .85); max-width: 36rem; margin: 0 auto 2rem; }

/* ---------- Responsive ---------- */
@media (min-width: 640px) {
    .newsletter__form { flex-direction: row; }
    .quote-grid { grid-template-columns: repeat(3, 1fr); }
    .bento { grid-template-columns: repeat(6, 1fr); }
    .bento > *:nth-child(1) { grid-column: span 4; }
    .bento > *:nth-child(2) { grid-column: span 2; }
    .bento > *:nth-child(3) { grid-column: span 2; }
    .bento > *:nth-child(4) { grid-column: span 2; }
    .bento > *:nth-child(5) { grid-column: span 2; }
    .bento > *:nth-child(6) { grid-column: span 6; height: 260px; }
}

@media (min-width: 768px) {
    .step { grid-template-columns: 1fr 1fr; gap: 4rem; }
    .step--flip .step__media { order: 2; }
    .features-grid { grid-template-columns: repeat(3, 1fr); }
    .footer__grid { grid-template-columns: 2fr 1fr 1fr; }
    .provider-panel__grid { grid-template-columns: 1.15fr 1fr; }
    .tiers { grid-template-columns: repeat(3, 1fr); }
    .form-grid--2 { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
    .nav__links { display: flex; }
    .nav__burger { display: none; }
    .exp-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 1023px) {
    .rev-stack { justify-items: center; }
    .rev-stack .rev-card:nth-child(2) { transform: rotate(-2deg); }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    .reveal { opacity: 1; transform: none; }
    .blur-text .w { opacity: 1; filter: none; transform: none; }
    html { scroll-behavior: auto; }
}
