/* =========================================================================
   Ahsan on the Map — core stylesheet
   Editorial travel design system: warm paper, ink, a single clay accent.
   ========================================================================= */

:root {
    /* Brand palette — restrained & editorial */
    --clay:      #c2562f;   /* primary accent (terracotta) */
    --clay-deep: #a8431f;
    --teal:      #0f6b61;   /* secondary accent (deep teal) */
    --teal-deep: #0a4f47;
    --gold:      #b9893f;   /* sparing tertiary */

    --ink:       #20211d;   /* near-black, warm */
    --ink-soft:  #3a3b35;
    --muted:     #6f6c63;   /* secondary text */
    --line:      rgba(32,33,29,.10);
    --line-2:    rgba(32,33,29,.16);

    --paper:     #f4f0e9;   /* page background */
    --paper-2:   #ebe5da;
    --card:      #fbf9f4;   /* surface */
    --card-solid:#ffffff;
    --glass:     rgba(251,249,244,.78);
    --glass-brd: rgba(32,33,29,.08);

    --shadow:    0 10px 30px -16px rgba(32,33,29,.30);
    --shadow-lg: 0 30px 60px -28px rgba(32,33,29,.40);

    --radius:    18px;
    --radius-sm: 12px;
    --maxw:      1180px;

    --ff-body: 'Plus Jakarta Sans', system-ui, sans-serif;
    --ff-head: 'Fraunces', Georgia, serif;
}

* { box-sizing: border-box; }

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

body {
    margin: 0;
    font-family: var(--ff-body);
    color: var(--ink);
    background: var(--paper);
    line-height: 1.65;
    overflow-x: hidden;        /* fallback for old browsers */
    overflow-x: clip;          /* clips horizontally WITHOUT breaking position:sticky */
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { font-family: var(--ff-head); line-height: 1.1; margin: 0 0 .4em; letter-spacing: -.015em; font-weight: 600; color: var(--ink); }
p { margin: 0 0 1rem; }
::selection { background: var(--clay); color: #fff; }

.container { width: min(100% - 2.4rem, var(--maxw)); margin-inline: auto; }

/* ---------- Buttons ---------------------------------------------------- */
.btn {
    --bg: var(--card-solid);
    display: inline-flex; align-items: center; gap: .55rem;
    padding: .8rem 1.45rem; border-radius: 999px;
    font-weight: 600; font-size: .92rem; cursor: pointer; letter-spacing: .005em;
    border: 1px solid var(--line-2); background: var(--bg); color: var(--ink);
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease, color .25s ease;
    will-change: transform;
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--small { padding: .55rem 1.05rem; font-size: .82rem; }
.btn--primary { background: var(--clay); color: #fff; border-color: transparent; }
.btn--primary:hover { background: var(--clay-deep); }
.btn--sky     { background: var(--teal); color: #fff; border-color: transparent; }
.btn--sky:hover { background: var(--teal-deep); }
.btn--ghost   { background: transparent; border-color: var(--line-2); }
.btn--ghost:hover { background: rgba(32,33,29,.04); border-color: var(--ink); }
.btn--dark    { background: var(--ink); color: #fff; border-color: transparent; }
.btn--dark:hover { background: #000; }

/* ---------- Section scaffolding --------------------------------------- */
.section { padding: clamp(3.5rem, 7vw, 6rem) 0; position: relative; }
.section--tight { padding: clamp(2.75rem, 5vw, 4.25rem) 0; }
.section__head { max-width: 620px; margin: 0 auto clamp(2rem,4vw,3rem); text-align: center; }
.section__head--left { margin-inline: 0; text-align: left; }
.eyebrow {
    display: inline-flex; align-items: center; gap: .45rem;
    font-family: var(--ff-body); font-weight: 600; font-size: .74rem;
    text-transform: uppercase; letter-spacing: .18em;
    color: var(--clay); margin-bottom: 1rem;
}
.eyebrow svg { width: 15px; height: 15px; }
.eyebrow::before { content: ""; width: 22px; height: 1px; background: var(--clay); opacity: .6; }
.section__head h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
.section__head p { color: var(--muted); font-size: 1.05rem; }
.text-grad { color: var(--clay); font-style: italic; }

/* ---------- Nav ------------------------------------------------------- */
.nav { position: sticky; top: 0; z-index: 60; padding: .65rem 0; transition: .3s; }
.nav.is-scrolled .nav__inner { box-shadow: var(--shadow); background: var(--glass); border-color: var(--glass-brd); }
.nav__inner {
    width: min(100% - 1.6rem, calc(var(--maxw) + 40px)); margin-inline: auto;
    display: flex; align-items: center; justify-content: space-between;
    padding: .5rem .7rem .5rem 1.1rem; border-radius: 999px;
    background: rgba(244,240,233,.6); backdrop-filter: blur(14px);
    border: 1px solid transparent; transition: .3s;
}
.brand { display: inline-flex; align-items: center; gap: .6rem; font-weight: 700; }
.brand__mark {
    display: grid; place-items: center; width: 38px; height: 38px; border-radius: 12px;
    background: var(--ink); color: #fff;
}
.brand__mark svg { width: 22px; height: 22px; }
.brand__mark .logo-mark { width: 24px; height: 24px; }
.brand__text { display: flex; flex-direction: column; font-family: var(--ff-head); font-size: 1.1rem; line-height: 1; font-weight: 600; }
.brand__text span { font-family: var(--ff-body); font-size: .66rem; font-weight: 500; color: var(--muted); letter-spacing: .06em; text-transform: uppercase; margin-top: .25em; }
.brand--light, .brand--light .brand__text { color: #fff; }
.brand--light .brand__mark { background: #fff; color: var(--ink); }
.brand--light .brand__text span { color: rgba(255,255,255,.65); }

.nav__links { display: flex; align-items: center; gap: .1rem; }
.nav__links a { padding: .5rem .7rem; border-radius: 999px; font-weight: 500; font-size: .9rem; color: var(--ink-soft); transition: .2s; }
.nav__links a:hover { color: var(--ink); background: rgba(32,33,29,.05); }
.nav__links a.is-active { color: var(--clay); }
.nav__cta { color: #fff !important; margin-left: .45rem; }
.nav__toggle, .nav__burger { display: none; }

/* ---------- Floating decorative icons (disabled — kept inert) --------- */
.floaties, .floaty { display: none !important; }

main { position: relative; z-index: 1; }

/* ====================================================================== */
/* HOME — Savonlinna journey                                              */
/* ====================================================================== */

/* ---------- Journey hero ---------------------------------------------- */
.journey-hero {
    position: relative; overflow: hidden;
    min-height: clamp(560px, 88vh, 880px);
    display: flex; align-items: center;
    padding: clamp(5rem,12vh,8rem) 0 clamp(3rem,7vh,5rem);
}
.journey-hero__media {
    position: absolute; inset: 0; z-index: 0;
    background-image: var(--hero-img); background-size: cover; background-position: center;
    transform: scale(1.06); animation: heroDrift 24s ease-in-out infinite alternate;
}
@keyframes heroDrift { from { transform: scale(1.06) translate3d(0,0,0); } to { transform: scale(1.14) translate3d(-2%, -1.5%, 0); } }
.journey-hero__shade {
    position: absolute; inset: 0; z-index: 1; pointer-events: none;
    background:
        linear-gradient(105deg, rgba(244,240,233,.96) 0%, rgba(244,240,233,.86) 34%, rgba(244,240,233,.30) 62%, rgba(32,33,29,.10) 100%),
        linear-gradient(to top, rgba(32,33,29,.22), transparent 40%);
}
.journey-hero__grid {
    position: relative; z-index: 2;
    display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(1.5rem,4vw,3.5rem); align-items: center;
}
.journey-hero__copy { max-width: 38rem; }
.journey-kicker {
    display: inline-flex; align-items: center; gap: .5rem;
    font-weight: 600; font-size: .76rem; letter-spacing: .2em; text-transform: uppercase;
    color: var(--clay); margin-bottom: 1.2rem;
}
.journey-kicker svg { width: 16px; height: 16px; }
.journey-hero__copy h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); line-height: 1.02; margin-bottom: .35em; }
.journey-hero__copy > p { font-size: clamp(1.05rem, 2vw, 1.28rem); color: var(--ink-soft); max-width: 40ch; margin-bottom: 2rem; }
.journey-hero__actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-bottom: 2.4rem; }
.btn--frost { background: rgba(255,255,255,.6); backdrop-filter: blur(8px); border-color: var(--line-2); }
.btn--frost:hover { background: #fff; border-color: var(--ink); }
.journey-facts { display: flex; flex-wrap: wrap; gap: clamp(1.4rem,4vw,2.6rem); margin: 0; }
.journey-facts div { display: flex; flex-direction: column; }
.journey-facts dt { font-size: .72rem; text-transform: uppercase; letter-spacing: .14em; color: var(--muted); margin-bottom: .3rem; }
.journey-facts dd { margin: 0; font-family: var(--ff-head); font-size: 1.12rem; font-weight: 600; color: var(--ink); }

/* ---------- Saimaa 3D stage (hero canvas + CSS fallback) -------------- */
.saimaa-stage {
    position: relative; aspect-ratio: 5/4; border-radius: var(--radius); overflow: hidden;
    background: linear-gradient(180deg, #cdeafa 0%, #bfe4f3 45%, #2f88a6 100%);
    box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.5);
}
.saimaa-stage__canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; z-index: 2; }
.saimaa-stage__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 2; }
.saimaa-stage__badge { position: absolute; left: 1rem; bottom: 1rem; z-index: 3; display: inline-flex; align-items: center; gap: .4rem; padding: .4rem .85rem; border-radius: 999px; background: rgba(20,20,16,.6); color: #fff; font-size: .76rem; font-weight: 600; backdrop-filter: blur(4px); }
.saimaa-stage__badge svg { width: 15px; height: 15px; }
/* CSS fallback hidden once WebGL boots */
.saimaa-stage.is-saimaa-webgl .saimaa-stage__fallback { opacity: 0; }
.saimaa-stage__fallback { position: absolute; inset: 0; z-index: 1; transition: opacity .4s ease; }
.saimaa-sky { position: absolute; inset: 0 0 38% 0; background: linear-gradient(180deg, #bfe6fb, #e8f6fe); }
.saimaa-sun { position: absolute; top: 14%; right: 18%; width: 64px; height: 64px; border-radius: 50%; background: radial-gradient(circle, #fff6df, #ffd98a); box-shadow: 0 0 50px #ffe6a8; }
.saimaa-lake { position: absolute; inset: 62% 0 0 0; background: linear-gradient(180deg, #5fb6cf, #2f88a6); }
.saimaa-ridge { position: absolute; bottom: 36%; width: 55%; height: 16%; background: linear-gradient(180deg, #3d7d54, #28573d); }
.saimaa-ridge--left { left: 0; border-radius: 0 60% 0 0; }
.saimaa-ridge--right { right: 0; border-radius: 60% 0 0 0; }
.saimaa-road { position: absolute; left: 50%; bottom: 0; transform: translateX(-50%); width: 36%; height: 40%; background: linear-gradient(180deg, #595a4f, #43443b); clip-path: polygon(38% 0, 62% 0, 100% 100%, 0% 100%); }
.saimaa-road span { position: absolute; left: 50%; width: 4px; height: 10%; background: #f3d36b; transform: translateX(-50%); }
.saimaa-road span:nth-child(1) { bottom: 8%; } .saimaa-road span:nth-child(2) { bottom: 34%; } .saimaa-road span:nth-child(3) { bottom: 60%; }
.saimaa-car { position: absolute; left: 50%; bottom: 8%; transform: translateX(-50%); width: 46px; height: 26px; background: var(--clay); border-radius: 8px 8px 5px 5px; }
.saimaa-car i { position: absolute; bottom: -5px; width: 10px; height: 10px; background: #171814; border-radius: 50%; }
.saimaa-car i:first-child { left: 5px; } .saimaa-car i:last-child { right: 5px; }
.saimaa-label { position: absolute; left: 1rem; bottom: 1rem; padding: .35rem .8rem; border-radius: 999px; background: rgba(32,33,29,.55); color: #fff; font-size: .74rem; font-weight: 600; }

/* ---------- Journey highlight strip ----------------------------------- */
.journey-strip { padding: clamp(1.5rem,3vw,2.5rem) 0; border-bottom: 1px solid var(--line); }
.journey-strip__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.journey-strip__item { display: flex; flex-direction: column; gap: .35rem; padding-left: 1rem; border-left: 2px solid var(--clay); }
.journey-strip__item span { font-size: .74rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); }
.journey-strip__item strong { font-family: var(--ff-head); font-size: 1.18rem; font-weight: 600; }

/* ---------- Route board ----------------------------------------------- */
.route-board { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(1.5rem,4vw,3rem); align-items: stretch; }
.route-board__map {
    position: relative; border-radius: var(--radius); overflow: hidden; min-height: 360px;
    background: radial-gradient(120% 90% at 20% 10%, #e7f4f1, #d7ece6 60%, #c9e2dc);
    border: 1px solid var(--line); box-shadow: var(--shadow);
}
.route-board__lake { position: absolute; inset: 12% 10% 14% 12%; border-radius: 45% 55% 50% 50%/55% 45% 55% 45%; background: linear-gradient(160deg, #8fcad9, #2f88a6); opacity: .85; box-shadow: inset 0 6px 30px rgba(10,79,71,.3); }
.route-board__road { position: absolute; inset: 0; background:
    linear-gradient(115deg, transparent 18%, var(--clay) 18.4%, var(--clay) 19.4%, transparent 19.8%) no-repeat; opacity: .0; }
.route-dot {
    position: absolute; width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center;
    font-size: .8rem; font-weight: 700; color: #fff; background: var(--clay);
    box-shadow: 0 6px 16px -4px rgba(32,33,29,.5); transform: translate(-50%,-50%); z-index: 2;
}
.route-dot--1 { left: 16%; top: 78%; } .route-dot--2 { left: 34%; top: 52%; background: var(--teal); }
.route-dot--3 { left: 58%; top: 40%; background: var(--gold); color: var(--ink); } .route-dot--4 { left: 74%; top: 56%; background: var(--teal); }
.route-dot--5 { left: 86%; top: 30%; }
.route-board__stops { display: flex; flex-direction: column; gap: .8rem; }
.stop-card { padding: 1.1rem 1.3rem; border-radius: var(--radius-sm); background: var(--card-solid); border: 1px solid var(--line); border-left: 3px solid var(--clay); box-shadow: var(--shadow); transition: transform .25s ease; }
.stop-card:hover { transform: translateX(4px); }
.stop-card span { font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; color: var(--clay); font-weight: 600; }
.stop-card h3 { font-size: 1.2rem; margin: .25rem 0 .35rem; }
.stop-card p { margin: 0; color: var(--muted); font-size: .92rem; }

/* clean numbered route stops (replaces the old fake map board) */
.route-stops { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1rem; }
.route-stop { display: flex; gap: 1rem; padding: 1.2rem 1.3rem; border-radius: var(--radius-sm); background: var(--card-solid); border: 1px solid var(--line); box-shadow: var(--shadow); transition: transform .25s ease, box-shadow .25s ease; }
.route-stop:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.route-stop__no { font-family: var(--ff-head); font-size: 1.6rem; font-weight: 600; line-height: 1; color: var(--clay); flex: none; }
.route-stop__type { font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); font-weight: 600; }
.route-stop__body h3 { font-size: 1.18rem; margin: .25rem 0 .35rem; }
.route-stop__body p { margin: 0; color: var(--muted); font-size: .92rem; }

/* ---------- Trip film (cinema-framed embed) --------------------------- */
.film-section { background: linear-gradient(180deg, transparent, rgba(32,33,29,.03)); }
.film-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(1.5rem,4vw,3rem); align-items: center; }
.film-copy h2 { font-size: clamp(1.8rem,3.5vw,2.6rem); }
.film-copy p { color: var(--muted); }
.film-player { perspective: 1500px; width: 100%; max-width: 100%; min-width: 0; }
.film-player__chrome {
    display: flex; align-items: center; gap: .5rem; padding: .6rem 1rem;
    background: var(--ink); border-radius: 14px 14px 0 0;
}
.film-player__chrome span { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,.3); }
.film-player__chrome span:first-child { background: #ff5f57; } .film-player__chrome span:nth-child(2) { background: #febc2e; } .film-player__chrome span:nth-child(3) { background: #28c840; }
.film-player__chrome b { margin-left: .6rem; color: rgba(255,255,255,.75); font-family: var(--ff-body); font-weight: 600; font-size: .82rem; }
.film-player__screen {
    position: relative; width: 100%; aspect-ratio: 16/9; border-radius: 0 0 14px 14px; overflow: hidden;
    background: #000; box-shadow: 0 40px 80px -30px rgba(32,33,29,.55);
}
.film-player__screen iframe { position: absolute; inset: 0; width: 100%; height: 100%; display: block; border: 0; }

/* ---------- Cinema photo gallery -------------------------------------- */
.cinema-gallery { display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: 200px; gap: 1rem; }
.cinema-photo { position: relative; margin: 0; overflow: hidden; border-radius: var(--radius-sm); box-shadow: var(--shadow); grid-column: span 2; grid-row: span 1; }
.cinema-photo:nth-child(1) { grid-column: span 3; grid-row: span 2; }
.cinema-photo:nth-child(4) { grid-column: span 3; grid-row: span 1; }
.cinema-photo:nth-child(6) { grid-column: span 3; }
.cinema-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.cinema-photo:hover img { transform: scale(1.06); }
.cinema-photo figcaption {
    position: absolute; inset: auto 0 0 0; padding: 1.4rem 1rem .9rem; color: #fff;
    background: linear-gradient(transparent, rgba(20,20,16,.82)); display: flex; flex-direction: column;
    opacity: 0; transform: translateY(8px); transition: .3s;
}
.cinema-photo:hover figcaption { opacity: 1; transform: none; }
.cinema-photo figcaption span { font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; color: var(--gold); }
.cinema-photo figcaption strong { font-family: var(--ff-head); font-size: 1.05rem; font-weight: 600; }
.cinema-photo figcaption small { font-size: .8rem; opacity: .8; }

/* ---------- Practical / why-it-worked --------------------------------- */
.practical-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem,4vw,3rem); align-items: center; }
.practical-image { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/3; }
.practical-image img { width: 100%; height: 100%; object-fit: cover; }
.practical-copy h2 { font-size: clamp(1.8rem,3.5vw,2.6rem); }
.practical-copy > p { color: var(--muted); }
.practical-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.4rem; }
.practical-list div { display: flex; flex-direction: column; gap: .25rem; padding-left: 1rem; border-left: 2px solid var(--teal); }
.practical-list b { font-family: var(--ff-head); font-weight: 600; font-size: 1.05rem; }
.practical-list span { color: var(--muted); font-size: .92rem; }

@media (max-width: 900px) {
    .journey-hero__grid { grid-template-columns: 1fr; }
    .saimaa-stage { order: -1; aspect-ratio: 16/10; }
    .journey-strip__grid { grid-template-columns: repeat(2,1fr); }
    .route-board, .film-grid, .practical-grid { grid-template-columns: 1fr; }
    .film-player { order: -1; }
    .cinema-gallery { grid-template-columns: repeat(2,1fr); grid-auto-rows: 180px; }
    .cinema-photo, .cinema-photo:nth-child(1), .cinema-photo:nth-child(4), .cinema-photo:nth-child(6) { grid-column: span 1; grid-row: span 1; }
}
@media (max-width: 540px) {
    .journey-strip__grid { grid-template-columns: 1fr; }
    .film-grid { gap: 1rem; }
    .film-player { perspective: none; }
    .film-player__chrome { padding: .5rem .75rem; border-radius: 10px 10px 0 0; min-width: 0; }
    .film-player__chrome b { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: .76rem; }
    .film-player__screen { border-radius: 0 0 10px 10px; box-shadow: 0 20px 44px -26px rgba(32,33,29,.55); }
    .cinema-gallery { grid-template-columns: 1fr; }
}

.chip { display: inline-flex; align-items: center; gap: .45rem; padding: .45rem .9rem; border-radius: 999px; background: transparent; border: 1px solid var(--line-2); font-weight: 500; font-size: .82rem; color: var(--ink-soft); }
.chip svg { width: 16px; height: 16px; color: var(--clay); }

/* ---------- Home: cinematic real-photo parallax hero ------------------ */
.home-hero {
    position: relative; overflow: hidden;
    min-height: clamp(620px, 96vh, 980px);
    min-height: clamp(620px, 100svh, 980px);
    display: flex; align-items: center;
    padding: clamp(5rem,12vh,8rem) 0 clamp(3rem,7vh,5rem);
    background: #20303f;
}
/* background slider (crossfading real photos) */
.home-hero__slider { position: absolute; inset: 0; z-index: 0; overflow: hidden; background: #20303f; }
.home-hero__bg {
    position: absolute; inset: -3%;
    background: var(--img) center/cover no-repeat;
    opacity: 0; transform: none;
    transition: opacity 1.4s ease;
    will-change: opacity;
}
.home-hero__bg img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    max-width: none;
}
.home-hero__bg.is-active { opacity: 1; }
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.06); } }
/* soft warm glow + vignette that flatters every backdrop */
.home-hero__glow {
    position: absolute; inset: 0; z-index: 1; pointer-events: none; mix-blend-mode: screen;
    background: radial-gradient(60% 55% at 72% 32%, rgba(255,205,150,.42), rgba(255,170,110,.12) 50%, transparent 72%);
    animation: heroGlow 8s ease-in-out infinite;
}
@keyframes heroGlow { 0%,100% { opacity: .6; } 50% { opacity: .9; } }
/* drifting real clouds */
.home-hero__cloud { position: absolute; z-index: 2; pointer-events: none; opacity: .85; mix-blend-mode: screen; will-change: transform, translate; }
.home-hero__cloud--1 { top: 5%; width: clamp(220px, 30vw, 480px); animation: drift1 52s linear infinite; }
.home-hero__cloud--2 { top: 13%; width: clamp(170px, 22vw, 360px); opacity: .7; animation: drift2 68s linear infinite; }
@keyframes drift1 { from { transform: translateX(-34vw); } to { transform: translateX(120vw); } }
@keyframes drift2 { from { transform: translateX(122vw); } to { transform: translateX(-42vw); } }
/* the plane silhouette, gliding across the bright sky (above the scrim) */
.home-hero__plane {
    position: absolute; z-index: 5; top: 15%; width: clamp(96px, 12vw, 190px); pointer-events: none;
    filter: drop-shadow(0 10px 18px rgba(0,0,0,.3));
    animation: planeFly 32s linear infinite; will-change: transform, translate;
}
@keyframes planeFly {
    0%   { transform: translate(-12vw, 6vh) rotate(-4deg); opacity: 0; }
    8%   { opacity: .92; }
    90%  { opacity: .92; }
    100% { transform: translate(108vw, -8vh) rotate(-7deg); opacity: 0; }
}
/* cinematic scrim for white type (left + bottom) */
.home-hero__scrim {
    position: absolute; inset: 0; z-index: 4; pointer-events: none;
    background:
        linear-gradient(95deg, rgba(16,22,30,.82) 0%, rgba(16,22,30,.62) 34%, rgba(16,22,30,.18) 56%, transparent 72%),
        linear-gradient(to top, rgba(16,22,30,.78) 0%, transparent 34%);
}
.home-hero__inner { position: relative; z-index: 5; max-width: 42rem; color: #fff; }
.home-hero__kicker {
    display: inline-flex; align-items: center; gap: .5rem; color: #ffd9a8;
    font-weight: 600; font-size: .78rem; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 1.2rem;
}
.home-hero__kicker svg { width: 17px; height: 17px; }
.home-hero__inner h1 { color: #fff; font-size: clamp(3rem, 8vw, 6rem); line-height: .98; margin-bottom: .35em; text-shadow: 0 2px 40px rgba(0,0,0,.35); }
.home-hero__inner .text-grad { color: #ffb27a; font-style: italic; }
.home-hero__inner > p { color: rgba(255,255,255,.9); font-size: clamp(1.08rem, 2vw, 1.34rem); max-width: 42ch; margin-bottom: 2rem; text-shadow: 0 1px 16px rgba(0,0,0,.35); }
.home-hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 2.6rem; }
.btn--frost-dark { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.4); color: #fff; backdrop-filter: blur(8px); }
.btn--frost-dark:hover { background: rgba(255,255,255,.22); border-color: #fff; }
.home-hero__stats { display: flex; flex-wrap: wrap; gap: clamp(1.6rem,5vw,3.2rem); }
.home-hero__stats b { display: block; font-family: var(--ff-head); font-size: clamp(1.9rem,4vw,2.8rem); font-weight: 600; line-height: 1; color: #fff; }
.home-hero__stats span { font-size: .74rem; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.72); }
.home-hero__cue { position: absolute; left: 50%; bottom: 1.4rem; z-index: 6; transform: translateX(-50%); width: 24px; height: 38px; border: 2px solid rgba(255,255,255,.6); border-radius: 13px; }
.home-hero__cue span { position: absolute; left: 50%; top: 7px; width: 3px; height: 7px; border-radius: 2px; background: #fff; transform: translateX(-50%); animation: cue 1.6s ease-in-out infinite; }
@keyframes cue { 0%,100% { opacity: 0; transform: translate(-50%,0); } 40% { opacity: 1; } 70% { opacity: 1; transform: translate(-50%,10px); } }
/* backdrop slider dots */
.home-hero__dots { position: absolute; right: 1.6rem; bottom: 1.5rem; z-index: 6; display: flex; gap: .55rem; }
.home-hero__dot { width: 11px; height: 11px; padding: 0; border: 0; border-radius: 50%; cursor: pointer; background: rgba(255,255,255,.42); transition: .25s; }
.home-hero__dot:hover { background: rgba(255,255,255,.75); }
.home-hero__dot.is-active { background: #fff; transform: scale(1.18); }
@media (max-width: 760px) {
    .home-hero { align-items: flex-end; }
    .home-hero__inner { max-width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
    .home-hero__bg, .home-hero__glow, .home-hero__cloud, .home-hero__plane { animation: none; }
}

/* ---------- Home: featured journal spotlight -------------------------- */
.spotlight { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(1.5rem,4vw,3rem); align-items: center; }
.spotlight__media { position: relative; display: block; border-radius: var(--radius); overflow: hidden; aspect-ratio: 16/10; box-shadow: var(--shadow-lg); }
.spotlight__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.spotlight__media:hover img { transform: scale(1.05); }
.spotlight__tag { position: absolute; top: 1rem; left: 1rem; background: rgba(255,255,255,.92); color: var(--ink); padding: .3rem .8rem; border-radius: 999px; font-size: .74rem; font-weight: 600; }
.spotlight__body h3 { font-size: clamp(1.6rem,3vw,2.4rem); margin: .3rem 0 .6rem; }
.spotlight__body > p { color: var(--muted); font-size: 1.05rem; margin-bottom: 1.4rem; }
@media (max-width: 820px) { .spotlight { grid-template-columns: 1fr; } }

/* ---------- Generic tilt card (subtle) -------------------------------- */
.tilt { transform-style: preserve-3d; transition: transform .3s ease, box-shadow .3s ease; will-change: transform; }
.tilt > * { transform: translateZ(0); }

/* ---------- Glass / surface card -------------------------------------- */
.glass {
    background: var(--card); border: 1px solid var(--line);
    border-radius: var(--radius); box-shadow: var(--shadow);
}

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

/* ---------- Trip cards ------------------------------------------------ */
.trip-card {
    position: relative; border-radius: var(--radius); overflow: hidden;
    background: var(--card-solid); border: 1px solid var(--line); box-shadow: var(--shadow);
    transition: transform .35s, box-shadow .35s;
}
.trip-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.trip-card__media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.trip-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.trip-card:hover .trip-card__media img { transform: scale(1.05); }
.trip-card__flag { position: absolute; top: .8rem; left: .8rem; z-index: 2; }
.trip-card__badge {
    position: absolute; top: .8rem; right: .8rem; z-index: 2;
    background: rgba(255,255,255,.92); border-radius: 999px; padding: .3rem .7rem;
    font-weight: 600; font-size: .78rem; color: var(--ink); box-shadow: var(--shadow);
}
.trip-card__body { padding: 1.2rem 1.3rem 1.4rem; }
.trip-card__title { font-size: 1.35rem; margin-bottom: .15em; }
.trip-card__country { color: var(--muted); font-weight: 500; font-size: .88rem; display: inline-flex; align-items: center; gap: .35rem; }
.trip-card__meta { display: flex; gap: 1rem; margin: .85rem 0; flex-wrap: wrap; }
.trip-card__meta span { display: inline-flex; align-items: center; gap: .35rem; font-weight: 500; font-size: .84rem; color: var(--ink-soft); }
.trip-card__meta svg { width: 16px; height: 16px; color: var(--clay); }
.trip-fact { font-size: .88rem; color: var(--muted); margin: .25rem 0; }
.trip-fact strong { color: var(--ink); font-weight: 600; }
.trip-card__actions { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: 1rem; }
.pill-link { display: inline-flex; align-items: center; gap: .35rem; font-weight: 600; font-size: .8rem; padding: .45rem .85rem; border-radius: 999px; background: transparent; border: 1px solid var(--line-2); color: var(--ink-soft); transition: .2s; }
.pill-link:hover { background: var(--ink); border-color: var(--ink); color: #fff; }
.pill-link svg { width: 15px; height: 15px; }

/* accent borders */
.accent-sunset { border-top: 3px solid var(--clay); }
.accent-sky    { border-top: 3px solid var(--teal); }
.accent-leaf   { border-top: 3px solid var(--teal); }
.accent-violet { border-top: 3px solid var(--gold); }

/* ---------- Photo gallery / masonry ---------------------------------- */
.masonry { columns: 3; column-gap: 1.1rem; }
.photo {
    position: relative; break-inside: avoid; margin-bottom: 1.1rem;
    border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow);
    transition: transform .35s, box-shadow .35s;
}
.photo img { width: 100%; transition: transform .6s ease; }
.photo:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.photo:hover img { transform: scale(1.04); }
.photo__cap {
    position: absolute; inset: auto 0 0 0; padding: 1.6rem .95rem .85rem;
    background: linear-gradient(transparent, rgba(20,20,16,.82)); color: #fff;
    opacity: 0; transform: translateY(8px); transition: .3s;
}
.photo:hover .photo__cap { opacity: 1; transform: none; }
.photo__cap b { display: block; font-family: var(--ff-head); font-size: 1.05rem; font-weight: 600; }
.photo__cap span { font-size: .8rem; opacity: .85; }
.photo__tag { position: absolute; top: .7rem; left: .7rem; background: rgba(255,255,255,.92); padding: .25rem .65rem; border-radius: 999px; font-size: .7rem; font-weight: 600; color: var(--ink); }

/* filter chips */
.filters { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; margin-bottom: 2rem; }
.filter {
    border: 1px solid var(--line-2); background: transparent; cursor: pointer;
    padding: .5rem 1.05rem; border-radius: 999px; font-weight: 500; font-size: .85rem; color: var(--muted);
    transition: .2s;
}
.filter:hover { color: var(--ink); border-color: var(--ink); }
.filter.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }
.is-hidden { display: none !important; }

/* ---------- Video cards ---------------------------------------------- */
.video-card {
    position: relative; border-radius: var(--radius); overflow: hidden; display: block;
    box-shadow: var(--shadow); transition: transform .35s, box-shadow .35s;
}
.video-card:hover { box-shadow: var(--shadow-lg); }
.video-card__media { position: relative; aspect-ratio: 16/10; }
.video-card__media img { width: 100%; height: 100%; object-fit: cover; }
.video-card__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 38%, rgba(20,20,16,.72)); }
.video-card__play {
    position: absolute; inset: 0; margin: auto; width: 60px; height: 60px; display: grid; place-items: center;
    border-radius: 50%; background: rgba(255,255,255,.95); color: var(--clay); z-index: 2;
    box-shadow: var(--shadow); transition: transform .3s;
}
.video-card__play svg { width: 24px; height: 24px; margin-left: 3px; }
.video-card:hover .video-card__play { transform: scale(1.1); }
.video-card__info { position: absolute; inset: auto 0 0 0; z-index: 2; padding: 1rem 1.1rem; color: #fff; display: flex; justify-content: space-between; align-items: flex-end; gap: .5rem; }
.video-card__info b { font-family: var(--ff-head); font-size: 1.08rem; font-weight: 600; }
.video-card__plat { position: absolute; top: .8rem; left: .8rem; z-index: 2; display: inline-flex; align-items: center; gap: .35rem; background: rgba(20,20,16,.62); color: #fff; padding: .3rem .65rem; border-radius: 999px; font-size: .7rem; font-weight: 600; }
.video-card__plat svg { width: 14px; height: 14px; }
.video-card__dur { background: rgba(20,20,16,.55); padding: .2rem .55rem; border-radius: 7px; font-size: .74rem; font-weight: 600; }

/* ---------- Stats ----------------------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem; }
.stat {
    text-align: center; padding: 1.6rem 1rem; border-radius: var(--radius-sm);
    background: var(--card-solid); border: 1px solid var(--line);
    box-shadow: var(--shadow); transition: transform .3s;
}
.stat:hover { transform: translateY(-4px); }
.stat__num { font-family: var(--ff-head); font-size: clamp(1.7rem, 3vw, 2.5rem); line-height: 1; color: var(--ink); font-weight: 600; }
.stat__label { font-size: .78rem; color: var(--muted); font-weight: 500; margin-top: .4rem; text-transform: uppercase; letter-spacing: .08em; }
.stat--wide { grid-column: span 2; text-align: left; display: flex; align-items: center; gap: .9rem; }
.stat--wide .stat__icon { width: 46px; height: 46px; flex: none; display: grid; place-items: center; border-radius: 12px; background: var(--clay); color: #fff; }
.stat--wide .stat__num { font-size: 1.2rem; }

/* ---------- Bucket list postcards ------------------------------------ */
.postcard {
    position: relative; border-radius: var(--radius-sm); overflow: hidden; background: var(--card-solid);
    border: 1px solid var(--line); box-shadow: var(--shadow); transition: transform .4s, box-shadow .4s;
}
.postcard:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.postcard__img { aspect-ratio: 5/3; position: relative; }
.postcard__img img { width: 100%; height: 100%; object-fit: cover; }
.postcard__stamp { position: absolute; top: .7rem; right: .7rem; background: rgba(255,255,255,.94); border: 1px solid var(--clay); border-radius: 8px; padding: .3rem .6rem; font-weight: 600; font-size: .68rem; color: var(--clay); text-transform: uppercase; letter-spacing: .06em; }
.postcard__body { padding: 1.1rem 1.2rem 1.3rem; }
.postcard__body h3 { font-size: 1.25rem; margin-bottom: 0; }
.postcard__body .sub { color: var(--muted); font-weight: 500; font-size: .84rem; margin-bottom: .65rem; }
.postcard__reason { font-size: .9rem; color: var(--ink-soft); }
.progress { height: 6px; border-radius: 999px; background: rgba(32,33,29,.1); overflow: hidden; margin: .95rem 0 .4rem; }
.progress__bar { height: 100%; border-radius: 999px; background: var(--clay); }
.progress__label { display: flex; justify-content: space-between; font-size: .76rem; font-weight: 600; color: var(--muted); }

/* ---------- Travel map ------------------------------------------------ */
.mapbox {
    position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 16/8;
    background:
        radial-gradient(circle at 30% 30%, rgba(15,107,97,.3), transparent 42%),
        linear-gradient(155deg, var(--teal-deep), var(--ink));
    border: 1px solid rgba(255,255,255,.08); box-shadow: var(--shadow-lg);
}
.mapbox::before {
    content: ""; position: absolute; inset: 0;
    background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
    background-size: 46px 46px;
}
.mapbox__world { position: absolute; inset: 8% 6%; opacity: .22; background: radial-gradient(circle at 50% 50%, rgba(15,107,97,.6), transparent 70%); border-radius: 50%; filter: blur(2px); }
.map-pin {
    position: absolute; left: var(--l); top: var(--t); transform: translate(-50%, -100%);
    display: grid; place-items: center; color: #fff; z-index: 2; cursor: pointer; background: none; border: none;
}
.map-pin__dot { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50% 50% 50% 0; transform: rotate(-45deg); box-shadow: 0 6px 14px -4px rgba(0,0,0,.5); }
.map-pin__dot svg { width: 14px; height: 14px; transform: rotate(45deg); }
.map-pin--visited .map-pin__dot { background: var(--clay); }
.map-pin--wishlist .map-pin__dot { background: var(--gold); }
.map-pin::after { content: ""; position: absolute; bottom: -6px; left: 50%; transform: translateX(-50%); width: 16px; height: 5px; border-radius: 50%; background: rgba(0,0,0,.35); filter: blur(2px); }
.map-pin__card {
    position: absolute; bottom: 130%; left: 50%; transform: translateX(-50%) translateY(6px);
    width: 180px; background: #fff; color: var(--ink); border-radius: 12px; padding: .7rem .85rem;
    box-shadow: var(--shadow-lg); opacity: 0; pointer-events: none; transition: .25s; text-align: left;
}
.map-pin:hover .map-pin__card, .map-pin:focus .map-pin__card { opacity: 1; transform: translateX(-50%); }
.map-pin__card b { display: block; font-family: var(--ff-head); font-size: .95rem; font-weight: 600; }
.map-pin__card span { font-size: .78rem; color: var(--muted); }
.map-ping { position: absolute; width: 28px; height: 28px; border-radius: 50%; left: var(--l); top: var(--t); transform: translate(-50%,-100%); animation: ping 2.6s ease-out infinite; }
.map-pin--visited + .map-ping { background: rgba(194,86,47,.45); }
@keyframes ping { 0% { transform: translate(-50%,-100%) scale(.4); opacity: .8; } 100% { transform: translate(-50%,-100%) scale(2.4); opacity: 0; } }
.map-legend { display: flex; gap: 1.4rem; justify-content: center; margin-top: 1.4rem; flex-wrap: wrap; }
.map-legend span { display: inline-flex; align-items: center; gap: .5rem; font-weight: 500; font-size: .88rem; color: var(--muted); }
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot--visited { background: var(--clay); }
.dot--wishlist { background: var(--gold); }

/* ---------- Budget ---------------------------------------------------- */
.budget-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.2rem; }
.budget-card { position: relative; border-radius: var(--radius-sm); padding: 1.4rem; background: var(--card-solid); border: 1px solid var(--line); box-shadow: var(--shadow); overflow: hidden; transition: transform .3s; }
.budget-card:hover { transform: translateY(-4px); }
.budget-card__icon { width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; color: #fff; margin-bottom: .85rem; }
.budget-card__icon svg { width: 24px; height: 24px; }
.budget-card__amt { font-family: var(--ff-head); font-size: 1.85rem; line-height: 1; font-weight: 600; }
.budget-card__label { font-weight: 600; margin: .25rem 0; }
.budget-card__note { color: var(--muted); font-size: .84rem; }
.budget-card__bar { height: 5px; border-radius: 999px; background: rgba(32,33,29,.08); margin-top: .95rem; overflow: hidden; }
.budget-card__bar i { display: block; height: 100%; border-radius: 999px; }
.bg-sky { background: var(--teal); }
.bg-violet { background: var(--gold); }
.bg-sunset { background: var(--clay); }
.bg-leaf { background: var(--teal-deep); }
.bg-pink { background: var(--clay-deep); }
.bg-amber { background: var(--gold); }
.budget-total {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem;
    padding: 1.8rem 2rem; border-radius: var(--radius); color: #fff;
    background: var(--ink); box-shadow: var(--shadow-lg); margin-top: 1.6rem;
}
.budget-total b { font-family: var(--ff-head); font-size: clamp(2rem,5vw,3rem); font-weight: 600; }

/* ---------- Diary / blog --------------------------------------------- */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.6rem; }
.post-card { background: var(--card-solid); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform .35s, box-shadow .35s; display: flex; flex-direction: column; }
.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.post-card__media { aspect-ratio: 16/10; overflow: hidden; }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.post-card:hover .post-card__media img { transform: scale(1.05); }
.post-card__body { padding: 1.3rem; display: flex; flex-direction: column; flex: 1; }
.post-card__meta { display: flex; gap: .6rem; align-items: center; font-size: .76rem; color: var(--muted); font-weight: 500; margin-bottom: .55rem; flex-wrap: wrap; }
.post-card__meta span { display: inline-flex; align-items: center; gap: .32rem; }
.post-card__meta svg { width: 14px; height: 14px; color: var(--clay); flex: none; }
.tag { background: rgba(194,86,47,.1); color: var(--clay); padding: .2rem .6rem; border-radius: 999px; font-size: .7rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.post-card__title { font-size: 1.28rem; margin-bottom: .4rem; }
.post-card__excerpt { color: var(--muted); font-size: .92rem; flex: 1; }
.read-more { display: inline-flex; align-items: center; gap: .35rem; font-weight: 600; color: var(--clay); margin-top: .95rem; }
.read-more svg { width: 16px; height: 16px; transition: transform .25s; }
.post-card:hover .read-more svg { transform: translateX(4px); }

/* ---------- Article (single story / itinerary) ----------------------- */
.article { max-width: 720px; margin-inline: auto; }
.article__hero { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); margin-bottom: 2rem; aspect-ratio: 16/8; }
.article__hero img { width: 100%; height: 100%; object-fit: cover; }
.article h1 { font-size: clamp(2rem,5vw,3rem); }
.article__body { font-size: 1.1rem; color: var(--ink-soft); line-height: 1.8; }
.callout { border-radius: var(--radius-sm); padding: 1.2rem 1.4rem; background: var(--card); border: 1px solid var(--line); border-left: 3px solid var(--clay); box-shadow: var(--shadow); margin: 1.4rem 0; }
.callout h4 { display: flex; align-items: center; gap: .5rem; margin-bottom: .6rem; }
.callout h4 svg { width: 20px; height: 20px; color: var(--clay); }
.callout ul { margin: 0; padding-left: 1.1rem; }
.callout li { margin-bottom: .3rem; }

/* day-by-day timeline */
.timeline { position: relative; margin: 1.5rem 0; padding-left: 2rem; }
.timeline::before { content: ""; position: absolute; left: 9px; top: 6px; bottom: 6px; width: 2px; background: var(--line-2); }
.tl-item { position: relative; margin-bottom: 1.3rem; }
.tl-item::before { content: ""; position: absolute; left: -1.55rem; top: 4px; width: 14px; height: 14px; border-radius: 50%; background: #fff; border: 3px solid var(--clay); }
.tl-day { font-weight: 600; color: var(--clay); font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; }
.tl-item h4 { margin: .15rem 0 .2rem; font-size: 1.12rem; }
.tl-item p { color: var(--muted); margin: 0; font-size: .94rem; }

/* ---------- About ----------------------------------------------------- */
.about-hero { display: grid; grid-template-columns: .8fr 1.2fr; gap: 2.5rem; align-items: center; }
.about-photo { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/5; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Contact --------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
.field { margin-bottom: 1rem; }
.field label { display: block; font-weight: 600; font-size: .84rem; margin-bottom: .4rem; }
.field input, .field select, .field textarea {
    width: 100%; padding: .85rem 1rem; border-radius: 12px; border: 1px solid var(--line-2);
    background: var(--card-solid); font-family: inherit; font-size: .95rem; color: var(--ink); transition: .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--clay); box-shadow: 0 0 0 3px rgba(194,86,47,.16); }
.field textarea { min-height: 130px; resize: vertical; }
.error { color: #c0392b; font-size: .8rem; margin-top: .25rem; }
.alert { background: rgba(15,107,97,.1); border: 1px solid rgba(15,107,97,.3); border-radius: var(--radius-sm); padding: 1rem 1.2rem; font-weight: 500; margin-bottom: 1.4rem; }
.collab-card { display: flex; gap: .9rem; align-items: flex-start; padding: 1.1rem; border-radius: var(--radius-sm); background: var(--card-solid); border: 1px solid var(--line); box-shadow: var(--shadow); transition: transform .3s; }
.collab-card:hover { transform: translateY(-3px); }
.collab-card__ic { width: 44px; height: 44px; flex: none; border-radius: 12px; display: grid; place-items: center; color: #fff; background: var(--clay); }
.collab-card__ic svg { width: 22px; height: 22px; }
.collab-card h4 { margin: 0 0 .2rem; font-size: 1.02rem; }
.collab-card p { margin: 0; font-size: .85rem; color: var(--muted); }

/* ---------- CTA band -------------------------------------------------- */
.cta-band {
    position: relative; overflow: hidden; border-radius: var(--radius); text-align: center;
    padding: clamp(2.75rem,5vw,4.5rem); color: #fff;
    background: linear-gradient(150deg, var(--teal-deep) 0%, var(--ink) 70%);
    box-shadow: var(--shadow-lg);
}
.cta-band h2 { font-size: clamp(1.9rem,4vw,2.7rem); color: #fff; }
.cta-band p { max-width: 46ch; margin: 0 auto 1.8rem; opacity: .85; }
.cta-band .btn-row { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }
.cta-band::after { content: ""; position: absolute; width: 260px; height: 260px; border-radius: 50%; filter: blur(10px); opacity: .25; background: var(--clay); bottom: -130px; right: -60px; }

/* ---------- Page header ----------------------------------------------- */
.page-head { text-align: center; padding: clamp(2.5rem,6vw,4.5rem) 0 clamp(1.5rem,3vw,2.5rem); }
.page-head .eyebrow { margin-bottom: 1rem; }
.page-head h1 { font-size: clamp(2.3rem, 6vw, 4rem); }
.page-head p { color: var(--muted); font-size: 1.1rem; max-width: 52ch; margin-inline: auto; }
.crumbs { font-size: .84rem; color: var(--muted); margin-bottom: 1rem; }
.crumbs a { color: var(--clay); font-weight: 600; }

/* ---------- Scroll reveal --------------------------------------------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- Back-to-top ----------------------------------------------- */
.skip-top { position: fixed; right: 1.2rem; bottom: 1.2rem; z-index: 50; width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%; background: var(--ink); color: #fff; box-shadow: var(--shadow-lg); opacity: 0; transform: translateY(20px); pointer-events: none; transition: .3s; }
.skip-top svg { width: 21px; height: 21px; }
.skip-top.is-show { opacity: 1; transform: none; pointer-events: auto; }

/* ---------- Responsive ------------------------------------------------ */
@media (max-width: 980px) {
    .grid--4 { grid-template-columns: repeat(2,1fr); }
    .stats { grid-template-columns: repeat(3,1fr); }
    .stat--wide { grid-column: span 3; }
    .hero__grid { grid-template-columns: 1fr; }
    .hero__stage { order: -1; height: 340px; }
    .about-hero { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .blog-grid, .budget-grid { grid-template-columns: repeat(2,1fr); }
    .masonry { columns: 2; }
}
@media (max-width: 720px) {
    .nav__burger { display: flex; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
    .nav__burger span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s; }
    .nav__links {
        position: absolute; top: calc(100% + .6rem); right: .8rem; left: .8rem;
        flex-direction: column; align-items: stretch; gap: .2rem; padding: .8rem;
        background: rgba(251,249,244,.98); backdrop-filter: blur(16px); border: 1px solid var(--glass-brd);
        border-radius: 20px; box-shadow: var(--shadow-lg);
        max-height: 0; overflow: hidden; opacity: 0; pointer-events: none; transition: .3s; padding-block: 0;
    }
    .nav__toggle:checked ~ .nav__links { max-height: 80vh; opacity: 1; pointer-events: auto; padding-block: .8rem; }
    .nav__toggle:checked ~ .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav__toggle:checked ~ .nav__burger span:nth-child(2) { opacity: 0; }
    .nav__toggle:checked ~ .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .nav__cta { text-align: center; margin: .4rem 0 0; }
}
@media (max-width: 620px) {
    .grid--2, .grid--3, .grid--4, .blog-grid, .budget-grid { grid-template-columns: 1fr; }
    .stats { grid-template-columns: repeat(2,1fr); }
    .stat--wide { grid-column: span 2; }
    .masonry { columns: 1; }
}

/* ---------- Reveal stagger + parallax --------------------------------- */
.reveal[style*="--i"] { transition-delay: calc(var(--i) * 80ms); }
[data-parallax] { will-change: transform; }

/* ---------- 3D Video embed (lazy YouTube facade) ---------------------- */
.video3d { perspective: 1400px; margin: 2.5rem 0; }
.video3d__frame {
    position: relative; aspect-ratio: 16/9; border-radius: var(--radius); overflow: hidden;
    cursor: pointer; border: 1px solid var(--line);
    box-shadow: 0 30px 60px -28px rgba(32,33,29,.45), 0 8px 20px -12px rgba(32,33,29,.3);
    transform: rotateX(7deg) rotateY(-4deg); transform-style: preserve-3d;
    transition: transform .5s cubic-bezier(.2,.7,.2,1), box-shadow .5s ease;
    background: var(--ink);
}
.video3d__frame:hover, .video3d__frame:focus-visible { transform: rotateX(0) rotateY(0) translateY(-4px); box-shadow: var(--shadow-lg); outline: none; }
.video3d__frame img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease, filter .4s ease; filter: saturate(1.02); }
.video3d__frame:hover img { transform: scale(1.04); }
.video3d__frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,20,16,.05), rgba(20,20,16,.45)); transition: opacity .4s; }
.video3d__play {
    position: absolute; inset: 0; margin: auto; width: 86px; height: 86px; z-index: 2;
    display: grid; place-items: center; border-radius: 50%;
    background: rgba(251,249,244,.95); color: var(--clay);
    box-shadow: 0 18px 40px -12px rgba(32,33,29,.6); transition: transform .35s ease, background .3s;
    transform: translateZ(60px);
}
.video3d__frame:hover .video3d__play { transform: translateZ(60px) scale(1.08); background: #fff; }
.video3d__play svg { width: 34px; height: 34px; margin-left: 4px; }
.video3d__badge {
    position: absolute; left: 1rem; top: 1rem; z-index: 2; transform: translateZ(40px);
    display: inline-flex; align-items: center; gap: .4rem; padding: .35rem .8rem; border-radius: 999px;
    background: rgba(20,20,16,.6); color: #fff; font-size: .74rem; font-weight: 600; letter-spacing: .02em;
}
.video3d__badge svg { width: 15px; height: 15px; }
.video3d__cap { margin-top: 1rem; text-align: center; color: var(--muted); font-size: .9rem; }
.video3d.is-playing .video3d__frame { transform: none; cursor: default; }
.video3d.is-playing .video3d__frame::after, .video3d.is-playing .video3d__play, .video3d.is-playing .video3d__badge { display: none; }
.video3d iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------- Inline editorial gallery + lightbox ----------------------- */
.gallery-strip { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1rem; margin: 2rem 0; }
.gallery-strip figure { position: relative; margin: 0; border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow); cursor: zoom-in; grid-column: span 4; aspect-ratio: 3/2; }
.gallery-strip figure:nth-child(4n+1) { grid-column: span 6; }
.gallery-strip figure:nth-child(4n+4) { grid-column: span 8; }
.gallery-strip img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gallery-strip figure:hover img { transform: scale(1.05); }
.lightbox { position: fixed; inset: 0; z-index: 200; display: none; place-items: center; padding: 4vw;
    background: rgba(20,20,16,.92); backdrop-filter: blur(6px); }
.lightbox.is-open { display: grid; }
.lightbox img { max-width: 100%; max-height: 88vh; border-radius: var(--radius-sm); box-shadow: var(--shadow-lg); }
.lightbox__close { position: absolute; top: 1.2rem; right: 1.4rem; width: 46px; height: 46px; border-radius: 50%; border: 0; cursor: pointer; background: rgba(255,255,255,.12); color: #fff; font-size: 1.5rem; display: grid; place-items: center; }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border-radius: 50%; border: 0; cursor: pointer; background: rgba(255,255,255,.12); color: #fff; display: grid; place-items: center; }
.lightbox__nav svg { width: 24px; height: 24px; }
.lightbox__nav--prev { left: 1.2rem; } .lightbox__nav--next { right: 1.2rem; }
.lightbox__nav:hover, .lightbox__close:hover { background: rgba(255,255,255,.24); }
@media (max-width: 720px) { .gallery-strip figure, .gallery-strip figure:nth-child(4n+1), .gallery-strip figure:nth-child(4n+4) { grid-column: span 12; } }

/* ---------- Footer ---------------------------------------------------- */
.footer { position: relative; margin-top: clamp(3rem,7vw,6rem); background: var(--ink); color: rgba(255,255,255,.82); overflow: hidden; }
.footer__glow { position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(60% 80% at 15% 0%, rgba(31,185,166,.16), transparent 60%), radial-gradient(50% 70% at 90% 20%, rgba(194,86,47,.14), transparent 60%); }
.footer__inner { position: relative; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 2.5rem; padding: clamp(3rem,6vw,4.5rem) 0 2.5rem; }
.footer__brand p { color: rgba(255,255,255,.6); max-width: 30ch; margin: 1rem 0 1.3rem; font-size: .92rem; }
.footer__socials { display: flex; gap: .6rem; }
.footer__socials a { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.08); color: #fff; transition: .25s; }
.footer__socials a:hover { background: var(--clay); transform: translateY(-3px); }
.footer__socials svg { width: 18px; height: 18px; }
.footer__col h4 { color: #fff; font-family: var(--ff-body); font-size: .78rem; text-transform: uppercase; letter-spacing: .14em; font-weight: 600; margin-bottom: 1.1rem; }
.footer__col a { display: block; color: rgba(255,255,255,.6); padding: .3rem 0; font-size: .92rem; transition: .2s; }
.footer__col a:hover { color: #fff; padding-left: .3rem; }
.footer__cta p { color: rgba(255,255,255,.6); font-size: .9rem; margin-bottom: 1.1rem; }
.footer__bar { position: relative; display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between; padding: 1.4rem 0; border-top: 1px solid rgba(255,255,255,.1); font-size: .82rem; color: rgba(255,255,255,.5); }
.footer .container { width: min(100% - 2.4rem, var(--maxw)); margin-inline: auto; }
@media (max-width: 900px) { .footer__inner { grid-template-columns: 1fr 1fr; gap: 2rem; } .footer__brand, .footer__cta { grid-column: span 2; } }
@media (max-width: 520px) { .footer__inner { grid-template-columns: 1fr; } .footer__brand, .footer__cta { grid-column: span 1; } }

/* ---------- Google map embed + country flag cards -------------------- */
.gmap { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 16/7; background: var(--paper-2); border: 1px solid var(--line); box-shadow: var(--shadow-lg); }
.gmap--tall { aspect-ratio: 16/9; }
.gmap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
@media (max-width: 700px) { .gmap, .gmap--tall { aspect-ratio: 4/5; } }

.flag-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.flag-grid--lg { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1rem; }
.flag-card { display: flex; align-items: center; gap: .9rem; padding: .9rem 1.1rem; border-radius: var(--radius-sm); background: var(--card-solid); border: 1px solid var(--line); box-shadow: var(--shadow); transition: transform .25s, box-shadow .25s; }
.flag-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.flag-card__flag { font-size: 1.9rem; line-height: 1; flex: none; }
.flag-card__body { display: flex; flex-direction: column; min-width: 0; }
.flag-card__body b { font-family: var(--ff-head); font-size: 1.05rem; font-weight: 600; }
.flag-card__body span { font-size: .82rem; color: var(--muted); }
.flag-card--planned { border-left: 3px solid var(--gold); }
.flag-card__link { margin-left: auto; width: 34px; height: 34px; flex: none; display: grid; place-items: center; border-radius: 50%; background: rgba(194,86,47,.1); color: var(--clay); transition: .2s; }
.flag-card__link:hover { background: var(--clay); color: #fff; }
.flag-card__link svg { width: 16px; height: 16px; }
@media (max-width: 560px) { .flag-grid { grid-template-columns: 1fr; } }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; }
    .video3d__frame { transform: none; }
}

/* =========================================================================
   PREMIUM 3D LAYER — atmosphere, glass, glow, depth (2026 refresh)
   Additive only. Hooks onto existing markup. Warm palette preserved.
   ========================================================================= */

/* ---- Film-grain texture (site-wide, whisper-subtle) ------------------- */
.fx-grain {
    position: fixed; inset: 0; z-index: 9997; pointer-events: none;
    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.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---- Scroll-progress beam -------------------------------------------- */
.scroll-progress {
    position: fixed; top: 0; left: 0; height: 3px; width: 100%; z-index: 9999;
    background: linear-gradient(90deg, var(--clay), var(--gold) 55%, var(--teal));
    box-shadow: 0 0 14px rgba(194,86,47,.55), 0 0 4px rgba(194,86,47,.7);
    transform: scaleX(0); transform-origin: left center; will-change: transform;
}

/* ---- Living aura behind the home page -------------------------------- */
body[data-page="home"]::before {
    content: ""; position: fixed; inset: -20%; z-index: -1; pointer-events: none;
    background:
        radial-gradient(38% 40% at 14% 20%, rgba(194,86,47,.13), transparent 68%),
        radial-gradient(40% 42% at 88% 14%, rgba(15,107,97,.12), transparent 70%),
        radial-gradient(46% 48% at 78% 90%, rgba(185,137,63,.13), transparent 72%);
    animation: auraFloat 28s ease-in-out infinite alternate;
}
@keyframes auraFloat {
    0%   { transform: translate3d(0,0,0) scale(1); }
    100% { transform: translate3d(2.5%, -2%, 0) scale(1.08); }
}

/* ---- Animated gradient accent text ----------------------------------- */
.text-grad {
    background: linear-gradient(100deg, var(--clay), var(--gold) 55%, var(--clay));
    background-size: 200% 100%;
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
    font-style: italic; animation: gradShift 7s ease-in-out infinite;
}
@keyframes gradShift { 0%,100% { background-position: 0 0; } 50% { background-position: 100% 0; } }

/* ---------------------------- HERO ------------------------------------ */
/* glowing bloom orbs (decorative, parallax via [data-depth]) */
.home-hero__orb {
    position: absolute; z-index: 2; border-radius: 50%; pointer-events: none;
    filter: blur(46px); mix-blend-mode: screen; opacity: .6; will-change: transform;
}
.home-hero__orb--1 { width: 42vw; max-width: 560px; aspect-ratio: 1; top: -6%; right: 4%;
    background: radial-gradient(circle, rgba(255,180,120,.75), transparent 66%); }
.home-hero__orb--2 { width: 34vw; max-width: 440px; aspect-ratio: 1; bottom: -12%; left: -4%;
    background: radial-gradient(circle, rgba(90,200,190,.55), transparent 66%);
    animation: orbPulse 9s ease-in-out infinite; }
@keyframes orbPulse { 0%,100% { opacity: .45; } 50% { opacity: .7; } }

/* glass kicker pill */
.home-hero__kicker {
    padding: .5rem .95rem; border-radius: 999px;
    background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.22);
    -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
    box-shadow: 0 10px 34px -14px rgba(0,0,0,.6);
}
/* animated shimmer on the hero headline accent */
.home-hero__inner .text-grad {
    background: linear-gradient(100deg, #ffd9a8, #ff9e5e 40%, #ffc98a 60%, #ff8a4c);
    background-size: 220% 100%;
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
    animation: gradShift 6s ease-in-out infinite;
}
/* hero stats become a floating glass slab */
.home-hero__stats {
    width: fit-content; padding: 1rem 1.4rem; border-radius: 18px;
    background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
    -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
    box-shadow: 0 26px 60px -28px rgba(0,0,0,.75), inset 0 1px 0 rgba(255,255,255,.14);
}
/* smooth blend from hero into the paper page */
.home-hero::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 110px;
    z-index: 5; pointer-events: none;
    background: linear-gradient(to top, var(--paper), transparent);
}

/* ---- Sheen + glow on primary buttons --------------------------------- */
.btn--primary { position: relative; overflow: hidden; box-shadow: 0 12px 34px -12px rgba(194,86,47,.65); }
.btn--primary::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(120deg, transparent 32%, rgba(255,255,255,.4) 50%, transparent 68%);
    transform: translateX(-130%); transition: transform .65s ease;
}
.btn--primary:hover::after { transform: translateX(130%); }

/* ---- Cursor spotlight for dark, [data-spotlight] sections ------------- */
[data-spotlight] { position: relative; }
[data-spotlight]::before {
    content: ""; position: absolute; inset: 0; z-index: 3; pointer-events: none;
    opacity: 0; transition: opacity .4s ease; mix-blend-mode: soft-light;
    background: radial-gradient(220px 220px at var(--mx,50%) var(--my,40%), rgba(255,255,255,.6), transparent 70%);
}
[data-spotlight].is-live::before { opacity: 1; }

/* ---------------------------- SPOTLIGHT ------------------------------- */
.spotlight__media { box-shadow: 0 44px 90px -34px rgba(32,33,29,.6); }
.spotlight__media::after {
    content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.18);
    background: linear-gradient(130deg, rgba(255,255,255,.16), transparent 42%);
}

/* ---------------------------- PHOTOS ---------------------------------- */
.photo::before {
    content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
    background: linear-gradient(115deg, transparent 42%, rgba(255,255,255,.4) 50%, transparent 58%);
    transform: translateX(-130%); transition: transform .8s ease;
}
.photo:hover::before { transform: translateX(130%); }

/* --------------------------- BLOG CARDS ------------------------------- */
.post-card {
    position: relative; border-radius: var(--radius); overflow: hidden;
    background: var(--card-solid); border: 1px solid var(--line); box-shadow: var(--shadow);
    display: flex; flex-direction: column;
    transition: transform .4s cubic-bezier(.2,.7,.2,1), box-shadow .4s;
}
.post-card::before {
    content: ""; position: absolute; inset: 0; z-index: 3; border-radius: inherit; padding: 1px;
    background: linear-gradient(135deg, rgba(194,86,47,.7), transparent 42%, rgba(15,107,97,.6));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude;
    opacity: 0; transition: opacity .4s; pointer-events: none;
}
.post-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.post-card:hover::before { opacity: 1; }
.post-card__media { position: relative; aspect-ratio: 16/10; overflow: hidden; display: block; }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.post-card:hover .post-card__media img { transform: scale(1.06); }

/* ----------------------------- STATS ---------------------------------- */
.stat { position: relative; overflow: hidden; }
.stat::before {
    content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
    background: linear-gradient(135deg, rgba(194,86,47,.55), transparent 40%, rgba(15,107,97,.5));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude;
    opacity: 0; transition: opacity .35s; pointer-events: none;
}
.stat:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.stat:hover::before { opacity: 1; }
.stat:not(.stat--wide) .stat__num {
    background: linear-gradient(135deg, var(--ink), var(--clay));
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
}

/* ------------------------------ MAP ----------------------------------- */
.gmap { box-shadow: 0 40px 80px -34px rgba(32,33,29,.5); }
.gmap::after {
    content: ""; position: absolute; inset: 0; z-index: 2; border-radius: inherit; pointer-events: none;
    box-shadow: inset 0 0 0 1px rgba(32,33,29,.14), inset 0 0 60px -20px rgba(15,107,97,.35);
}

/* ---------------------------- CTA BAND -------------------------------- */
.cta-band::before {
    content: ""; position: absolute; inset: -45%; z-index: 0; pointer-events: none;
    background: conic-gradient(from 0deg, rgba(194,86,47,.4), rgba(15,107,97,.34), rgba(185,137,63,.4), rgba(194,86,47,.4));
    filter: blur(64px); opacity: .5; animation: spinAura 24s linear infinite;
}
.cta-band > * { position: relative; z-index: 1; }
@keyframes spinAura { to { transform: rotate(360deg); } }

/* --------------------- Premium reveal (depth in) ---------------------- */
.reveal {
    opacity: 0; transform: translateY(30px) scale(.985); filter: blur(6px);
    transition: opacity .85s cubic-bezier(.2,.7,.2,1),
                transform .85s cubic-bezier(.2,.7,.2,1), filter .85s ease;
}
.reveal.is-in { opacity: 1; transform: none; filter: none; }

@media (prefers-reduced-motion: reduce) {
    body[data-page="home"]::before, .home-hero__orb, .text-grad,
    .home-hero__inner .text-grad, .cta-band::before { animation: none; }
    .reveal { opacity: 1; transform: none; filter: none; }
}

/* =========================================================================
   GLASS REFINEMENT v2 — macOS / Windows 11 frosted glass across the page,
   calmer hero, glassy (not flashy) photos. Overrides the v1 premium layer.
   ========================================================================= */

/* ---- HERO: drop the muddy bottom fade; add a soft cinematic vignette --- */
.home-hero::after {
    content: ""; position: absolute; inset: 0; z-index: 4; pointer-events: none;
    background: radial-gradient(125% 90% at 50% 26%, transparent 52%, rgba(10,14,20,.42) 100%);
    height: auto; /* was a bottom band — now a full, subtle vignette */
}
.home-hero__slider { will-change: transform; }

/* ---- HERO orbs: warm, soft, upper — no more green lower glow ---------- */
.home-hero__orb { filter: blur(72px); opacity: .5; will-change: transform; animation: none; }
.home-hero__orb--1 {
    top: -12%; right: -4%; left: auto; bottom: auto; width: 46vw; max-width: 640px;
    background: radial-gradient(circle, rgba(255,190,132,.7), transparent 64%);
}
.home-hero__orb--2 {
    top: 8%; right: 26%; left: auto; bottom: auto; width: 30vw; max-width: 440px; opacity: .38;
    background: radial-gradient(circle, rgba(255,158,110,.55), transparent 66%);
}

/* ---- Reusable frosted-glass surface ---------------------------------- */
.post-card, .video-card, .trip-card, .stat, .flag-card, .callout,
.spotlight__body.glasspane, .collab-card, .contact-card {
    background: rgba(255,255,255,.5);
    -webkit-backdrop-filter: blur(18px) saturate(165%);
    backdrop-filter: blur(18px) saturate(165%);
    border: 1px solid rgba(255,255,255,.55);
    box-shadow:
        0 14px 42px -18px rgba(32,33,29,.30),
        inset 0 1px 0 rgba(255,255,255,.65);
}

/* keep media crisp inside glass cards */
.post-card__media, .video-card__media, .trip-card__media { background: rgba(255,255,255,.35); }

/* ---- Frosted nav bar (always, not just scrolled) --------------------- */
.nav__inner {
    background: rgba(251,249,244,.55);
    -webkit-backdrop-filter: blur(20px) saturate(170%);
    backdrop-filter: blur(20px) saturate(170%);
    border: 1px solid rgba(255,255,255,.45);
    box-shadow: 0 10px 34px -18px rgba(32,33,29,.28), inset 0 1px 0 rgba(255,255,255,.55);
}
.nav.is-scrolled .nav__inner { box-shadow: 0 14px 40px -16px rgba(32,33,29,.34), inset 0 1px 0 rgba(255,255,255,.6); }

/* ---- Glass pills: chips, filters, frost buttons ---------------------- */
.chip, .filter, .pill-link {
    background: rgba(255,255,255,.42);
    -webkit-backdrop-filter: blur(12px) saturate(150%);
    backdrop-filter: blur(12px) saturate(150%);
    border-color: rgba(255,255,255,.55);
}
.filter.is-active { background: var(--ink); border-color: var(--ink); }

/* ---- PHOTOS: glassy, calm — no fast shine sweep ---------------------- */
.photo::before { content: none; }        /* kill the v1 sweep */
.photo {
    border: 1px solid rgba(255,255,255,.5);
    box-shadow: 0 14px 40px -18px rgba(32,33,29,.32);
    transition: transform .55s cubic-bezier(.2,.7,.2,1), box-shadow .55s ease;
}
.photo::after {  /* soft glass reflection, fades in slowly */
    content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: 0;
    background: linear-gradient(180deg, rgba(255,255,255,.4), rgba(255,255,255,.06) 34%, transparent 55%);
    transition: opacity .6s ease;
}
.photo:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.photo:hover::after { opacity: 1; }
.photo img { transition: transform 1s cubic-bezier(.2,.7,.2,1); }
.photo:hover img { transform: scale(1.05); }
.photo__cap {
    z-index: 2;
    background: linear-gradient(transparent, rgba(18,20,24,.62));
    -webkit-backdrop-filter: blur(6px) saturate(140%);
    backdrop-filter: blur(6px) saturate(140%);
}
.photo__tag { z-index: 2; background: rgba(255,255,255,.72); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }

/* ---- Spotlight media: glassy edge, slower reveal --------------------- */
.spotlight__media img { transition: transform 1s cubic-bezier(.2,.7,.2,1); }

/* ---- Map frame as a glass panel ------------------------------------- */
.gmap { border: 1px solid rgba(255,255,255,.5); }

/* ---- CTA: dark glass with light rim --------------------------------- */
.cta-band {
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 34px 70px -30px rgba(0,0,0,.6), inset 0 1px 0 rgba(255,255,255,.14);
}
.cta-band .btn--ghost {
    background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.42); color: #fff;
    -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
}
.cta-band .btn--ghost:hover { background: rgba(255,255,255,.22); border-color: #fff; }

/* ---- Video cards: glass info bar ------------------------------------ */
.video-card__info {
    -webkit-backdrop-filter: blur(10px) saturate(150%);
    backdrop-filter: blur(10px) saturate(150%);
}

@media (prefers-reduced-motion: reduce) {
    .photo, .photo img, .spotlight__media img { transition: none; }
}

/* =========================================================================
   HERO v3 — responsive <img> slides (mobile-safe) + smart title lockup
   ========================================================================= */

/* Slides are now real <img> (srcset picks the ~1200px -sm file on phones,
   so mobile no longer blanks out on huge CSS-background decodes). */
.home-hero__bg { background: none; overflow: hidden; will-change: opacity; }
.home-hero__bg img {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; transform: scale(1); will-change: transform;
    image-rendering: -webkit-optimize-contrast; image-rendering: auto;
}
.home-hero__bg.is-active { animation: none; }               /* zoom moves to the img */
.home-hero__bg.is-active img { animation: heroZoom 16s ease-in-out infinite alternate; }

/* Smart editorial title: tracked "WE ARE" over a big serif "on the Map" */
.home-hero__title { display: flex; flex-direction: column; gap: .14em; margin-bottom: .55em; }
.home-hero__title-kick {
    font-family: var(--ff-body); font-weight: 600;
    font-size: clamp(.8rem, 2.1vw, 1.08rem); letter-spacing: .42em;
    text-transform: uppercase; color: rgba(255,255,255,.86); padding-left: .14em;
    text-shadow: 0 1px 14px rgba(0,0,0,.35);
}
.home-hero__title-word {
    font-family: var(--ff-head); font-weight: 600; line-height: .9;
    font-size: clamp(2.7rem, 8.4vw, 6.2rem); letter-spacing: -.022em; color: #fff;
    white-space: nowrap; text-shadow: 0 2px 44px rgba(0,0,0,.4);
}
.home-hero__title-word .text-grad {
    font-style: italic; line-height: 1;
    padding: .02em .06em .3em; margin: -.02em -.06em -.3em;
}

@media (prefers-reduced-motion: reduce) {
    .home-hero__bg.is-active img { animation: none; }
}

/* =========================================================================
   PREMIUM POLISH v4 — senior editorial refinement (same warm theme)
   Type rhythm · depth · card craft · motion · focus. Additive, later-wins.
   ========================================================================= */
:root{
    /* softer, layered luxe shadows */
    --shadow:    0 3px 10px -5px rgba(32,33,29,.14), 0 20px 44px -26px rgba(32,33,29,.30);
    --shadow-lg: 0 8px 22px -10px rgba(32,33,29,.18), 0 46px 84px -40px rgba(32,33,29,.44);
    --ease:      cubic-bezier(.22,.61,.36,1);
    --ring:      0 0 0 3px rgba(194,86,47,.30);
}

/* ---- Typography: optical sizing + graceful wrapping ------------------- */
h1, h2, h3, h4 { font-optical-sizing: auto; text-wrap: balance; }
p { text-wrap: pretty; }
.section__head h2 { line-height: 1.06; letter-spacing: -.02em; }
.section__head p { text-wrap: balance; }
.eyebrow { letter-spacing: .2em; }
.eyebrow::before { width: 26px; }

/* Gradient accent text — `background-clip:text` clips the glyph paint-box, so
   italic serif descenders (p, y, g) AND the right-leaning overhang get cut.
   inline-block gives a real box we can pad on every side; negative margins
   cancel the padding so layout/baseline don't shift. Bulletproof across browsers. */
.text-grad {
    display: inline-block;
    padding: .02em .1em .2em;
    margin: -.02em -.1em -.2em;
    line-height: inherit;
    vertical-align: baseline;
}

/* ---- Buttons: refined depth, easing & focus -------------------------- */
.btn { transition: transform .32s var(--ease), box-shadow .32s var(--ease),
        background .32s var(--ease), border-color .32s var(--ease), color .32s var(--ease); }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary {
    background: linear-gradient(180deg, #cf6238, var(--clay) 62%, var(--clay-deep));
    box-shadow: 0 10px 24px -12px rgba(194,86,47,.6), inset 0 1px 0 rgba(255,255,255,.28);
}
.btn--primary:hover { box-shadow: 0 16px 34px -12px rgba(194,86,47,.72), inset 0 1px 0 rgba(255,255,255,.28); }
.btn--sky { background: linear-gradient(180deg, #14867a, var(--teal) 60%, var(--teal-deep)); }
.btn--dark { box-shadow: 0 10px 26px -14px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.08); }
:where(a, button, input, textarea, select, .filter, .chip, [tabindex]):focus-visible {
    outline: none; box-shadow: var(--ring);
}

/* ---- Tag pill: crisper, editorial ------------------------------------ */
.tag {
    background: rgba(194,86,47,.09); border: 1px solid rgba(194,86,47,.22);
    letter-spacing: .09em; padding: .24rem .62rem;
}

/* ---- Post cards: premium lift + refined internals -------------------- */
.post-card { border-radius: 20px; transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.post-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.post-card__body { padding: 1.45rem 1.5rem 1.5rem; }
.post-card__title { line-height: 1.22; letter-spacing: -.01em; margin-bottom: .5rem; }
.post-card__title a {
    background-image: linear-gradient(var(--clay), var(--clay));
    background-size: 0% 1.5px; background-position: 0 100%; background-repeat: no-repeat;
    transition: background-size .45s var(--ease); padding-bottom: 1px;
}
.post-card:hover .post-card__title a { background-size: 100% 1.5px; }
.post-card__excerpt { line-height: 1.68; }
.post-card__media img { transition: transform .8s var(--ease); }
.read-more { position: relative; }
.read-more::after {
    content: ""; position: absolute; left: 0; bottom: -3px; height: 1.5px; width: 100%;
    background: currentColor; transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease);
}
.post-card:hover .read-more::after { transform: scaleX(1); }

/* ---- Spotlight (home featured): richer type -------------------------- */
.spotlight__body h3 { letter-spacing: -.015em; line-height: 1.08; }
.spotlight__tag { -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); box-shadow: 0 6px 18px -8px rgba(0,0,0,.4); }

/* ---- Video cards ----------------------------------------------------- */
.video-card { transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.video-card:hover { transform: translateY(-6px); }
.video-card__play { transition: transform .4s var(--ease), background .3s var(--ease); }

/* ---- Article: elegant lead + refined measure ------------------------- */
.article { max-width: 760px; }
.article__lead {
    font-family: var(--ff-head); font-weight: 500; font-style: italic;
    font-size: clamp(1.25rem, 2.4vw, 1.55rem); line-height: 1.5; color: var(--ink-soft);
    margin: 0 0 1.6rem; padding-left: 1.1rem; border-left: 2px solid var(--clay);
}
.article__body { font-size: 1.12rem; line-height: 1.85; }
.article__body p { margin-bottom: 1.25rem; }

/* ---- Gallery strip: calmer, uniform premium grid --------------------- */
.gallery-strip figure { border-radius: 16px; box-shadow: var(--shadow); transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.gallery-strip figure:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.gallery-strip img { transition: transform .8s var(--ease); }

/* ---- Nav links: refined pill + active dot ---------------------------- */
.nav__links a { transition: color .25s var(--ease), background .25s var(--ease); }
.nav__links a.is-active { background: rgba(194,86,47,.09); }
.nav__links a.is-active::after {
    content: ""; display: block; width: 4px; height: 4px; border-radius: 999px;
    background: var(--clay); margin: 2px auto 0;
}

/* ---- Reveal: smoother, more cinematic -------------------------------- */
.reveal { transition: opacity .9s var(--ease), transform .9s var(--ease), filter .9s var(--ease); }

/* ---- Refined selection + custom scrollbar ---------------------------- */
::selection { background: var(--clay); color: #fff; }
* { scrollbar-width: thin; scrollbar-color: rgba(32,33,29,.28) transparent; }
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-thumb { background: rgba(32,33,29,.24); border-radius: 999px; border: 3px solid transparent; background-clip: content-box; }
::-webkit-scrollbar-thumb:hover { background: rgba(32,33,29,.4); background-clip: content-box; }

@media (prefers-reduced-motion: reduce) {
    .btn, .post-card, .video-card, .gallery-strip figure, .reveal,
    .post-card__title a, .read-more::after, .nav__link::after { transition: none !important; }
}

/* =========================================================================
   WOW LAYER — destinations marquee, mobile perf, motion polish
   ========================================================================= */
/* ---- Destinations marquee — striking dark editorial band ------------- */
.marquee {
    position: relative; overflow: hidden; padding: 1.7rem 0;
    background: linear-gradient(105deg, #201f1b 0%, #2a2b24 52%, #1d1e19 100%);
    border-block: 1px solid rgba(255,255,255,.06);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.05), inset 0 -1px 0 rgba(0,0,0,.35);
}
.marquee::before, .marquee::after {
    content: ""; position: absolute; top: 0; bottom: 0; width: 16%; z-index: 2; pointer-events: none;
}
.marquee::before { left: 0;  background: linear-gradient(90deg, #201f1b, transparent); }
.marquee::after  { right: 0; background: linear-gradient(270deg, #1d1e19, transparent); }
.marquee__track {
    display: flex; align-items: center; gap: 2.9rem; width: max-content;
    animation: marqueeScroll 46s linear infinite; will-change: transform;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
    font-family: var(--ff-head); font-style: italic; font-weight: 500;
    font-size: clamp(1.4rem, 3.4vw, 2.5rem); color: #f4efe6;
    white-space: nowrap; letter-spacing: -.01em; line-height: 1;
    display: inline-flex; align-items: center; gap: 2.9rem;
    text-shadow: 0 1px 20px rgba(0,0,0,.4);
}
/* alternating outline glyphs for editorial rhythm */
.marquee__item:nth-child(even) {
    color: transparent;
    -webkit-text-stroke: 1px rgba(244,239,230,.5); text-stroke: 1px rgba(244,239,230,.5);
    text-shadow: none;
}
.marquee__item::after {
    content: "\2726"; font-style: normal; color: var(--gold);
    font-size: .52em; -webkit-text-stroke: 0; text-shadow: 0 0 18px rgba(185,137,63,.5);
}
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---- Magnetic buttons: smooth return ---------------------------------- */
[data-magnetic] { transition: transform .35s var(--ease), box-shadow .32s var(--ease), background .32s var(--ease); }

/* ---- Mobile: lighter glass (scroll perf) + tighter rhythm ------------- */
@media (max-width: 720px) {
    .post-card, .video-card, .trip-card, .stat, .flag-card, .callout,
    .collab-card, .contact-card {
        -webkit-backdrop-filter: blur(9px) saturate(140%);
        backdrop-filter: blur(9px) saturate(140%);
    }
    .marquee { padding: .9rem 0; }
    .section__head { margin-bottom: clamp(1.4rem, 5vw, 2rem); }
    .home-hero__stats { width: 100%; justify-content: space-between; }
}
@media (max-width: 400px) {
    .home-hero__title-word { font-size: clamp(2.4rem, 12vw, 3rem); }
}

/* ---- Reduced-motion: freeze the marquee ------------------------------ */
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* =========================================================================
   CINEMATIC v5 — hero title entrance, image loaders, blur-up
   ========================================================================= */
/* ---- Hero headline: cinematic staggered entrance ---------------------- */
@keyframes heroRise { 0% { opacity: 0; transform: translateY(32px); filter: blur(9px); } 100% { opacity: 1; transform: none; filter: blur(0); } }
@keyframes heroKick { 0% { opacity: 0; letter-spacing: .72em; transform: translateY(8px); } 100% { opacity: 1; letter-spacing: .42em; transform: none; } }
@keyframes mapGlow  { 0%,100% { filter: drop-shadow(0 6px 26px rgba(255,168,84,.32)); } 50% { filter: drop-shadow(0 8px 40px rgba(255,185,105,.55)); } }

.home-hero__kicker    { animation: heroRise .9s var(--ease) .10s both; }
.home-hero__title-kick{ animation: heroKick 1.15s var(--ease) .26s both; }
.home-hero__title-word{ animation: heroRise 1s var(--ease) .42s both; }
.home-hero__inner > p { animation: heroRise .9s var(--ease) .64s both; }
.home-hero__actions   { animation: heroRise .9s var(--ease) .80s both; }
.home-hero__stats     { animation: heroRise .9s var(--ease) .94s both; }

/* Bigger, more dramatic lockup + a warm glow on the gold word */
.home-hero__title { gap: .06em; }
.home-hero__title-kick { color: rgba(255,255,255,.92); }
.home-hero__title-word { font-size: clamp(3rem, 9.2vw, 7rem); line-height: .86; }
.home-hero__title-word .text-grad { animation: gradShift 6s ease-in-out infinite, mapGlow 4.5s ease-in-out infinite; }

/* ---- Hero image loader (spinner over the dark base) ------------------- */
.hero-loader { position: absolute; inset: 0; z-index: 3; display: grid; place-items: center; pointer-events: none; opacity: 1; transition: opacity .6s ease; }
.hero-loader.is-hidden { opacity: 0; }
.hero-loader__ring { width: 46px; height: 46px; border-radius: 50%; border: 3px solid rgba(255,255,255,.22); border-top-color: rgba(255,255,255,.92); animation: heroSpin .8s linear infinite; }
@keyframes heroSpin { to { transform: rotate(360deg); } }

/* ---- Content images: skeleton shimmer + blur-up fade-in -------------- */
.media-loading { position: relative; background: linear-gradient(100deg, #e8e1d5 22%, #f4efe6 50%, #e8e1d5 78%) !important; background-size: 200% 100% !important; animation: skelShimmer 1.5s ease-in-out infinite; }
.media-loading::after { content: ""; position: absolute; z-index: 3; inset: 0; margin: auto; width: 30px; height: 30px; border-radius: 50%; border: 2.5px solid rgba(32,33,29,.15); border-top-color: rgba(32,33,29,.5); animation: heroSpin .75s linear infinite; }
@keyframes skelShimmer { 0% { background-position: 180% 0; } 100% { background-position: -180% 0; } }
img.img-fade { opacity: 0; transform: scale(1.03); transition: opacity .6s var(--ease), transform .9s var(--ease); }
img.img-fade.is-loaded { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    .home-hero__kicker, .home-hero__title-kick, .home-hero__title-word,
    .home-hero__inner > p, .home-hero__actions, .home-hero__stats,
    .home-hero__title-word .text-grad, .hero-loader__ring, .media-loading, .media-loading::after { animation: none !important; }
    img.img-fade { opacity: 1; transform: none; transition: none; }
    .home-hero__title-kick { letter-spacing: .42em; }
}

/* =========================================================================
   SCROLL PERFORMANCE — smoother scrolling, fewer repaints
   ========================================================================= */
/* Give persistent overlays their own GPU layer so scroll doesn't repaint them */
.nav__inner { transform: translateZ(0); }
.scroll-progress { transform: scaleX(0) translateZ(0); }
.fx-grain { will-change: auto; }

/* Lighter backdrop blur = dramatically fewer repaint costs while scrolling glass.
   Visually near-identical, but keeps scroll buttery on mid-range devices. */
.post-card, .video-card, .trip-card, .stat, .flag-card, .callout,
.collab-card, .contact-card {
    -webkit-backdrop-filter: blur(12px) saturate(150%);
    backdrop-filter: blur(12px) saturate(150%);
}
.nav__inner {
    -webkit-backdrop-filter: blur(15px) saturate(160%);
    backdrop-filter: blur(15px) saturate(160%);
}
@media (max-width: 720px) {
    .post-card, .video-card, .trip-card, .stat, .flag-card, .callout,
    .collab-card, .contact-card {
        -webkit-backdrop-filter: blur(8px) saturate(135%);
        backdrop-filter: blur(8px) saturate(135%);
    }
}

/* =========================================================================
   HERO ORBIT v2 — elliptical, glowing rings, liquid glass, sticky pin-rotate
   ========================================================================= */
.home-hero__inner--orbit {
    max-width: none; width: min(100% - 2.4rem, 1180px);
    display: flex; flex-direction: column; align-items: center; text-align: center;
}
.home-hero__inner--orbit .home-hero__kicker { margin-bottom: .3rem; animation: heroRise .9s var(--ease) .1s both; }

.orbit {
    position: relative; width: 100%;
    height: min(clamp(500px, 58vw, 640px), 74vh);
    margin-top: clamp(.3rem, 2vh, 1.2rem);
    /* elliptical radii — wider than tall, like the reference */
    --rx: min(clamp(230px, 33vw, 430px), 44vw);
    --ry: min(clamp(150px, 20vw, 250px), 32vh);
    --coreR: clamp(104px, 13vw, 140px);
    perspective: 1300px;
}
/* radial darkening so glass reads over any photo */
.orbit::before {
    content: ""; position: absolute; inset: -14% -8%; z-index: 0; pointer-events: none;
    background: radial-gradient(52% 60% at 50% 50%, rgba(9,12,18,.66), rgba(9,12,18,.3) 52%, transparent 76%);
}
.orbit__spin {
    position: absolute; inset: 0; z-index: 1;
    transform: rotateX(calc(var(--oy,0) * -5deg)) rotateY(calc(var(--ox,0) * 6deg));
    transform-style: preserve-3d;
    transition: transform .6s cubic-bezier(.17,.67,.2,1);
    will-change: transform;
}

/* ---- Glowing orbit rings (outer ellipse + inner ring) ---------------- */
.orbit__ring {
    position: absolute; top: 50%; left: 50%; border-radius: 50%;
    transform: translate(-50%,-50%); pointer-events: none;
}
.orbit__ring--outer {
    width: calc(var(--rx) * 2); height: calc(var(--ry) * 2);
    /* glow sweep tracks the cards: its `from` angle follows the same --spin */
    background: conic-gradient(from calc(215deg + var(--spin, 0deg)),
        rgba(15,107,97,.0) 0deg, var(--teal) 55deg, var(--gold) 130deg,
        var(--clay) 200deg, rgba(194,86,47,.0) 275deg, rgba(15,107,97,.0) 360deg);
    -webkit-mask: radial-gradient(farthest-side, #0000 calc(100% - 2.5px), #000 calc(100% - 2.5px));
            mask: radial-gradient(farthest-side, #0000 calc(100% - 2.5px), #000 calc(100% - 2.5px));
    filter: drop-shadow(0 0 7px rgba(185,137,63,.55)) drop-shadow(0 0 18px rgba(194,86,47,.4));
    opacity: .95;
}
.orbit__ring--inner {
    width: calc(var(--coreR) * 2.35); height: calc(var(--coreR) * 2.35);
    border: 1px dashed rgba(255,255,255,.34);
    box-shadow: 0 0 24px rgba(255,255,255,.12) inset;
    /* dashes rotate in sync with the cards, not on their own */
    transform: translate(-50%,-50%) rotate(var(--spin, 0deg));
}

/* ---- Orbit cards: elliptical position via sin/cos, premium liquid glass */
.orbit__card {
    position: absolute; top: 50%; left: 50%; z-index: 2;
    width: clamp(168px, 20vw, 226px); padding: clamp(.85rem,1.3vw,1.15rem) clamp(1rem,1.5vw,1.25rem);
    border-radius: 20px; text-align: left; color: var(--ink);
    /* Apple/Windows liquid glass: more see-through, blur keeps text crisp */
    background:
        linear-gradient(150deg, rgba(255,255,255,.24), rgba(255,255,255,0) 44%),
        linear-gradient(180deg, rgba(255,255,255,.52), rgba(255,255,255,.34));
    -webkit-backdrop-filter: blur(22px) saturate(170%); backdrop-filter: blur(22px) saturate(170%);
    border: 1px solid rgba(255,255,255,.62);
    box-shadow:
        0 22px 50px -20px rgba(8,12,20,.55),
        0 2px 6px -2px rgba(8,12,20,.3),
        inset 0 1px 0 rgba(255,255,255,.9),
        inset 0 -1px 0 rgba(255,255,255,.25);
    transform: translate(-50%,-50%)
        translate(calc(var(--rx) * sin(var(--a) + var(--spin, 0deg))),
                  calc(-1 * var(--ry) * cos(var(--a) + var(--spin, 0deg))));
    transition: box-shadow .3s var(--ease), border-color .3s var(--ease);
    animation: orbCardIn .7s var(--ease) .5s both;
}
.orbit__card::before {
    content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
    background: linear-gradient(180deg, rgba(255,255,255,.5), transparent 30%);
    opacity: .5; mix-blend-mode: screen;
}
.orbit__card:hover { border-color: rgba(194,86,47,.55); box-shadow: 0 30px 62px -18px rgba(8,12,20,.62), inset 0 1px 0 rgba(255,255,255,.95); z-index: 6; }
.orbit__card-label { position: relative; display: block; font-family: var(--ff-body); font-size: .66rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--clay); margin-bottom: .38rem; }
.orbit__card-text { position: relative; display: block; font-family: var(--ff-head); font-weight: 600; font-size: clamp(.94rem,1.3vw,1.08rem); line-height: 1.24; letter-spacing: -.01em; color: var(--ink); }

/* ---- Core: liquid-glass orb -------------------------------------------- */
.orbit__core {
    position: absolute; top: 50%; left: 50%; z-index: 3;
    width: clamp(200px, 25vw, 268px); aspect-ratio: 1; border-radius: 50%;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .28rem;
    text-align: center; padding: 1.4rem;
    background:
        radial-gradient(130% 100% at 50% 16%, rgba(255,255,255,.55), transparent 46%),
        radial-gradient(120% 120% at 50% 30%, rgba(255,255,255,.72), rgba(255,255,255,.52));
    -webkit-backdrop-filter: blur(24px) saturate(175%); backdrop-filter: blur(24px) saturate(175%);
    border: 1px solid rgba(255,255,255,.7);
    box-shadow:
        0 36px 80px -26px rgba(8,12,20,.6),
        0 0 0 6px rgba(255,255,255,.06),
        inset 0 2px 0 rgba(255,255,255,.95), inset 0 -8px 24px rgba(8,12,20,.06);
    transform: translate(-50%,-50%);
    animation: orbCoreIn 1s var(--ease) .28s both;
}
.orbit__core-kick { font-family: var(--ff-body); font-size: .68rem; font-weight: 700; letter-spacing: .34em; text-transform: uppercase; color: var(--muted); }
.orbit__core-title { font-family: var(--ff-head); font-weight: 600; font-size: clamp(1.7rem,3.4vw,2.5rem); line-height: .92; color: var(--ink); }
.orbit__core-title .text-grad { color: transparent; }
.orbit__core-sub { font-size: .74rem; color: var(--muted); max-width: 21ch; line-height: 1.4; margin: .1rem 0 .55rem; }

@keyframes orbCoreIn { 0% { opacity: 0; transform: translate(-50%,-50%) scale(.82); } 100% { opacity: 1; transform: translate(-50%,-50%) scale(1); } }
@keyframes orbCardIn { from { opacity: 0; } to { opacity: 1; } }

/* ---- Sticky pin-rotate stage (desktop): scroll rotates the ring, then releases */
.hero-stage { position: relative; }
@media (min-width: 821px) {
    .hero-stage { height: 172vh; }
    .home-hero { position: sticky !important; top: 0; height: 100svh; min-height: 0 !important; }
}

/* ---- Mobile: upright stack of translucent DARK glass (photo shows through) */
@media (max-width: 820px) {
    .home-hero { min-height: auto; padding-top: clamp(6rem, 16vh, 8rem); padding-bottom: 3rem; }
    .orbit { height: auto; display: flex; flex-direction: column; gap: .7rem; perspective: none; margin-top: 1.1rem; }
    .orbit::before { display: none; }
    .orbit__spin { position: static; inset: auto; display: flex; flex-direction: column; gap: .7rem; transform: none !important; }
    .orbit__ring { display: none; }

    .orbit__core {
        position: static; transform: none; width: 100%; aspect-ratio: auto;
        border-radius: 24px; order: -1; padding: 1.4rem; animation: none;
        background: rgba(14,18,24,.24);
        -webkit-backdrop-filter: blur(14px) saturate(140%); backdrop-filter: blur(14px) saturate(140%);
        border: 1px solid rgba(255,255,255,.16);
        box-shadow: 0 16px 42px -18px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.16);
    }
    .orbit__core-kick { color: rgba(255,255,255,.72); }
    .orbit__core-title { color: #fff; }
    .orbit__core-sub { color: rgba(255,255,255,.82); }

    .orbit__card {
        position: static; transform: none !important; width: 100%; animation: none;
        background: rgba(14,18,24,.2);
        -webkit-backdrop-filter: blur(12px) saturate(140%); backdrop-filter: blur(12px) saturate(140%);
        border: 1px solid rgba(255,255,255,.14);
        box-shadow: 0 12px 32px -18px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.12);
    }
    .orbit__card-text { text-shadow: 0 1px 10px rgba(0,0,0,.5); }
    .orbit__card-label { text-shadow: 0 1px 8px rgba(0,0,0,.5); }
    .orbit__core-title, .orbit__core-sub, .orbit__core-kick { text-shadow: 0 1px 12px rgba(0,0,0,.55); }
    .orbit__card::before { display: none; }
    .orbit__card-text { color: #f4efe6; }
    .orbit__card-label { color: #ffd8ab; }
}
@media (prefers-reduced-motion: reduce) {
    .orbit__spin { transition: none; }
    .orbit__ring--outer, .orbit__ring--inner { animation: none; }
    .orbit__core, .orbit__card, .home-hero__inner--orbit .home-hero__kicker { animation: none !important; }
}

/* ---- Latest-from-the-journal: stacked, alternating spotlights -------- */
.spotlight-stack { display: flex; flex-direction: column; gap: clamp(1.6rem, 4vw, 3rem); }
.spotlight--reverse { grid-template-columns: .85fr 1.15fr; }
.spotlight--reverse .spotlight__media { order: 2; }
.spotlight--reverse .spotlight__body { order: 1; }
@media (max-width: 820px) {
    .spotlight--reverse { grid-template-columns: 1fr; }
    .spotlight--reverse .spotlight__media, .spotlight--reverse .spotlight__body { order: 0; }
}
