/* ============================================================================
   Meridian Travel Co. — single stylesheet, no external requests.
   Fonts are system stacks on purpose: zero network cost, and the page paints
   on the first frame. That does more for "fast" than any copy line.
   ==========================================================================*/

:root{
  /* Brand — Deep Green & Champagne.
     Two accents, used in different places on purpose: champagne is light and
     only legible on the dark surfaces; bronze is its counterpart for accent
     work on cream, where champagne would fail contrast. Don't swap them. */
  --green:      #1C2B23;
  --green-deep: #141F19;
  --green-soft: #26382E;
  /* Raised panels on the dark sections: a grey with a green cast, not a lighter
     green — lightening the green alone just read as "more green". Chosen by
     measurement: 1.57:1 against the section so the card clearly separates,
     while body text stays at 7.76:1 and the muted meta line at 5.02:1, both
     comfortably past AA. Don't darken it without re-checking those. */
  --slate:      #3F4844;
  --champagne:      #D9C7A3;   /* accents ON DARK  */
  --champagne-wash: #F0E7D6;   /* tinted panels    */
  --bronze:         #7C6742;   /* accents ON LIGHT */

  /* Neutrals */
  --bg:      #F7F4ED;
  --bg-tint: #EFEADF;
  --card:    #FFFFFF;
  --ink:     #1C2B23;
  --muted:   #5A6560;
  --faint:   #8A928C;
  --line:    #E2DCCE;
  --line-dk: rgba(255,255,255,.14);

  /* Type — Fraunces for display, IBM Plex Sans for everything else.
     Both load from Google Fonts with a full local fallback stack, so the page
     still sets correctly if the request is blocked or slow. */
  --serif: "Fraunces", "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans:  "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  /* Rhythm */
  --wrap: 1160px;
  --pad: 24px;
  --r: 14px;
  --r-lg: 20px;
  --shadow: 0 1px 2px rgba(28,43,35,.05), 0 8px 28px rgba(28,43,35,.07);
  --shadow-lg: 0 2px 4px rgba(28,43,35,.06), 0 20px 50px rgba(28,43,35,.12);
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
@media (prefers-reduced-motion:reduce){ html{scroll-behavior:auto} *{animation:none!important;transition:none!important} }

body{
  margin:0; background:var(--bg); color:var(--ink); /* .sky paints over this */
  font-family:var(--sans); font-size:17px; line-height:1.62;
  -webkit-font-smoothing:antialiased; text-rendering:optimizeLegibility;
}
img{ max-width:100%; height:auto; display:block; }
a{ color:inherit; }
button,input,textarea,select{ font:inherit; color:inherit; }

.wrap{ width:100%; max-width:var(--wrap); margin:0 auto; padding:0 var(--pad); }

/* Hidden by transform, not by a large negative offset. `left:-9999px` is the
   old idiom and it breaks RTL: the offset extends the document's scrollable
   width, and since RTL scrolls the other way the viewport lands on empty
   space. A transform never affects layout, in either direction. */
.skip{
  position:absolute; inset-inline-start:0; top:0; z-index:200;
  background:var(--green); color:#fff; padding:12px 18px;
  border-start-start-radius:0; border-end-end-radius:8px;
  transform:translateY(-130%); transition:transform .15s ease;
}
.skip:focus{ transform:none; }

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

/* ---------- Living sky ----------
   A fixed backdrop of slow-drifting haze plus two contrail arcs. Everything
   here animates `transform` and `opacity` only, so it stays on the compositor
   and never triggers layout or paint. Total cost: one extra layer. */
.sky{
  position:fixed; inset:0; z-index:-1; overflow:hidden; pointer-events:none;
  background:
    linear-gradient(180deg, #FCFAF5 0%, var(--bg) 38%, #EFEADF 100%);
}
.sky__haze{
  position:absolute; display:block; will-change:transform;
  border-radius:50%;
}
/* Cool high cloud, drifting right across a long cycle. */
.sky__haze--a{
  width:90vw; height:62vh; left:-18vw; top:-14vh;
  background:radial-gradient(closest-side, rgba(122,152,132,.20), rgba(122,152,132,0) 72%);
  animation:hazeA 96s ease-in-out infinite alternate;
}
/* Warm light, as if the sun is off to one side. */
.sky__haze--b{
  width:75vw; height:70vh; right:-20vw; top:14vh;
  background:radial-gradient(closest-side, rgba(217,199,163,.17), rgba(217,199,163,0) 70%);
  animation:hazeB 128s ease-in-out infinite alternate;
}
/* A cooler mass low down, moving against the other two. */
.sky__haze--c{
  width:110vw; height:58vh; left:-5vw; bottom:-20vh;
  background:radial-gradient(closest-side, rgba(86,118,98,.16), rgba(86,118,98,0) 74%);
  animation:hazeC 154s ease-in-out infinite alternate;
}
@keyframes hazeA{
  from{ transform:translate3d(0,0,0) scale(1); }
  to  { transform:translate3d(14vw,6vh,0) scale(1.14); }
}
@keyframes hazeB{
  from{ transform:translate3d(0,0,0) scale(1.06); }
  to  { transform:translate3d(-12vw,10vh,0) scale(1); }
}
@keyframes hazeC{
  from{ transform:translate3d(0,0,0) scale(1); }
  to  { transform:translate3d(10vw,-7vh,0) scale(1.1); }
}

.sky__trails{ position:absolute; inset:0; width:100%; height:100%; }
.sky__trail{
  fill:none; stroke:var(--bronze); stroke-width:1.25; stroke-linecap:round;
  opacity:.13; will-change:transform;
}
.sky__trail--1{ animation:trail1 190s linear infinite; }
.sky__trail--2{ stroke:#6E8A76; opacity:.11; animation:trail2 240s linear infinite; }
@keyframes trail1{
  from{ transform:translate3d(-6%,2%,0); }
  50% { transform:translate3d(6%,-2%,0); }
  to  { transform:translate3d(-6%,2%,0); }
}
@keyframes trail2{
  from{ transform:translate3d(5%,-1%,0); }
  50% { transform:translate3d(-5%,3%,0); }
  to  { transform:translate3d(5%,-1%,0); }
}

/* Light sections are translucent so the sky shows through them (see .sec--tint,
   .stats and .trustbar below). The dark green sections stay opaque on purpose. */

@media (prefers-reduced-motion:reduce){
  .sky__haze, .sky__trail{ animation:none; }
}

/* ---------- Type scale ---------- */
.h2{
  font-family:var(--serif); font-weight:600;
  font-variation-settings:"SOFT" 0, "WONK" 0; letter-spacing:-.015em;
  font-size:clamp(28px,4.2vw,42px); line-height:1.14; margin:.2em 0 .5rem;
  max-width:22ch;
}
.h2--on-dark{ color:#fff; }
.kicker{
  font-size:12px; font-weight:700; letter-spacing:.14em; text-transform:uppercase;
  color:var(--bronze); margin:0 0 .35rem;
}
.kicker--on-dark{ color:var(--champagne); }
.lede{ font-size:clamp(17px,1.7vw,19px); color:var(--muted); max-width:62ch; margin:0 0 1.5rem; }
.lede--on-dark{ color:rgba(255,255,255,.72); }
.note{ font-size:15px; color:var(--faint); max-width:52ch; }

/* ---------- Buttons ---------- */
.btn{
  --bh:#16221B;
  display:inline-flex; align-items:center; justify-content:center; gap:.5em;
  background:var(--green); color:#fff; text-decoration:none;
  font-size:16px; font-weight:600; letter-spacing:-.005em;
  padding:15px 26px; border:1px solid var(--green); border-radius:10px; cursor:pointer;
  transition:background .16s ease, transform .16s ease, box-shadow .16s ease;
  box-shadow:0 1px 2px rgba(28,43,35,.16);
}
.btn:hover{ background:var(--bh); transform:translateY(-1px); box-shadow:0 6px 18px rgba(28,43,35,.2); }
.btn:active{ transform:translateY(0); }
.btn--sm{ padding:10px 18px; font-size:15px; }
.btn--bronze{ background:var(--bronze); border-color:var(--bronze); --bh:#6A5837; box-shadow:0 1px 2px rgba(124,103,66,.28); }
.btn--bronze:hover{ box-shadow:0 6px 18px rgba(124,103,66,.32); }
.btn--ghost{ background:transparent; color:var(--green); border-color:var(--line); box-shadow:none; --bh:transparent; }
.btn--ghost:hover{ border-color:var(--green); background:transparent; }
.btn--full{ width:100%; }

.link-arrow{
  font-weight:600; text-decoration:none; color:var(--green);
  border-bottom:1.5px solid rgba(28,43,35,.25); padding-bottom:2px;
}
.link-arrow::after{ content:" →"; }
.link-arrow:hover{ border-color:var(--green); }

/* ---------- Nav ---------- */
.nav{
  position:sticky; top:0; z-index:100;
  background:rgba(250,248,244,.86); backdrop-filter:saturate(160%) blur(12px);
  border-bottom:1px solid transparent; transition:border-color .2s, box-shadow .2s;
}
.nav.is-stuck{ border-bottom-color:var(--line); box-shadow:0 6px 24px rgba(28,43,35,.06); }
.nav__in{ display:flex; align-items:center; gap:28px; min-height:70px; }
.brand{ display:flex; align-items:center; gap:10px; text-decoration:none; font-weight:700; }
.brand__mark{ width:30px; height:30px; flex:none; }
.brand__mark rect{ fill:var(--green); }
.brand__mark path{ fill:var(--champagne); }
.brand__name{ font-family:var(--serif); font-size:19px; letter-spacing:-.01em; }
.nav__links{ display:flex; gap:26px; margin-left:auto; }
.nav__links a{ text-decoration:none; font-size:15.5px; color:var(--muted); font-weight:500; }
.nav__links a:hover{ color:var(--green); }

/* ---------- Language switcher ---------- */
.lang{ position:relative; margin-left:auto; }
.nav__links + .lang{ margin-left:0; }
.lang__btn{
  display:inline-flex; align-items:center; gap:7px;
  background:none; border:1px solid var(--line); border-radius:999px;
  padding:7px 13px 7px 11px; cursor:pointer; color:var(--ink);
  font-size:14px; font-weight:600; letter-spacing:.02em;
  transition:border-color .16s ease, background .16s ease;
}
.lang__btn:hover, .lang.is-open .lang__btn{ border-color:var(--bronze); background:var(--champagne-wash); }
.lang__btn svg{ width:16px; height:16px; fill:none; stroke:var(--bronze); stroke-width:1.5; }
.lang__menu{
  position:absolute; top:calc(100% + 10px); inset-inline-end:0; z-index:110;
  list-style:none; margin:0; padding:6px;
  min-width:210px; max-height:min(60vh,420px); overflow-y:auto;
  background:var(--card); border:1px solid var(--line); border-radius:12px;
  box-shadow:var(--shadow-lg);
}
.lang__menu[hidden]{ display:none; }
.lang__menu button{
  display:flex; align-items:baseline; gap:8px; width:100%;
  background:none; border:0; cursor:pointer; text-align:start;
  padding:9px 11px; border-radius:8px; color:var(--ink); font-size:15px;
}
.lang__menu button:hover{ background:var(--bg-tint); }
.lang__menu button.is-current{ background:var(--champagne-wash); font-weight:650; }
.lang__native{ font-weight:600; }
.lang__label{ font-size:12.5px; color:var(--faint); margin-inline-start:auto; }

/* First-visit notice: shown only when we guessed the language from the
   browser. Never blocks the page; auto-dismisses. */
.langbar{
  position:fixed; inset-inline:0; bottom:0; z-index:130;
  display:flex; align-items:center; justify-content:center; flex-wrap:wrap; gap:10px 20px;
  padding:13px 20px; background:var(--green); color:#fff; font-size:15px;
  transform:translateY(100%); transition:transform .32s cubic-bezier(.2,.7,.3,1);
}
.langbar.in{ transform:none; }
.langbar p{ margin:0; }
.langbar b{ color:var(--champagne); }
.langbar__actions{ display:flex; align-items:center; gap:8px; }
.langbar button{
  background:none; border:1px solid rgba(255,255,255,.3); border-radius:999px;
  color:#fff; padding:6px 14px; cursor:pointer; font-size:14px; font-weight:600;
}
.langbar button:hover{ border-color:var(--champagne); color:var(--champagne); }
.langbar__close{ padding:4px 11px; font-size:18px; line-height:1; }

/* Right-to-left: the layout is logical-property based, so only the handful of
   physically-anchored decorations need mirroring. */
[dir="rtl"] .flight{ right:auto; left:20px; }
[dir="rtl"] .wa{ right:auto; left:18px; }
[dir="rtl"] .link-arrow::after,
[dir="rtl"] .pack__cta::after,
[dir="rtl"] .jcard__cta::after{ content:" \2190"; }
[dir="rtl"] .step::before{ right:auto; left:0; }
[dir="rtl"] .founder__note{ border-left:0; border-right:3px solid var(--bronze); padding-left:0; padding-right:22px; }
[dir="rtl"] .founder__sig{ padding-left:0; padding-right:25px; }
[dir="rtl"] .jhero__note{ padding-left:0; padding-right:16px; border-left:0; border-right:2px solid rgba(217,199,163,.6); }
[dir="rtl"] .faq summary{ padding:20px 0 20px 40px; }
[dir="rtl"] .faq summary::after{ right:auto; left:6px; }
[dir="rtl"] .finalcta__points li{ padding-left:0; padding-right:26px; }
[dir="rtl"] .finalcta__points li::before{ left:auto; right:0; }

@media (max-width:900px){
  .lang__label{ display:none; }
  .lang__menu{ min-width:150px; }
}

/* ---------- Hero ---------- */
.hero{ position:relative; background:var(--green); color:#fff; overflow:hidden; isolation:isolate; }
.hero__art{ position:absolute; inset:0; z-index:-1; }
.hero__slot{ position:absolute; inset:0; }
/* Placeholder "photograph": a warm dusk gradient, no image request. Replace
   the whole .hero__art block with a real <img>/<picture> when you have one. */
/* The gradient stays as the paint-before-the-photo-arrives layer, so the hero
   never flashes white and the headline is legible from the first frame. */
.hero__slot::before{
  content:""; position:absolute; inset:0; z-index:1;
  background:
    radial-gradient(120% 90% at 78% 12%, rgba(217,199,163,.34) 0%, transparent 55%),
    radial-gradient(90% 70% at 10% 100%, rgba(74,110,88,.5) 0%, transparent 60%),
    linear-gradient(160deg,#1C2B23 0%,#17251E 55%,#101913 100%);
}
.hero__img{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
  opacity:0; transition:opacity .7s ease;
}
.hero__slot.is-loaded .hero__img{ opacity:1; }
/* Scrim over the photograph: the headline has to hold at any crop. */
.hero__slot.is-loaded::before{
  background:
    linear-gradient(105deg, rgba(14,24,18,.88) 0%, rgba(14,24,18,.58) 44%, rgba(14,24,18,.10) 100%),
    linear-gradient(to top, rgba(14,24,18,.62) 0%, transparent 48%);
  z-index:2;
}
/* Hero carries the same graticule, laid over the photograph. */
.hero__slot::after{
  content:""; position:absolute; inset:0; z-index:3;
  --line:rgba(217,199,163,.085);
  background-image:
    repeating-linear-gradient(90deg, var(--line) 0 1px, transparent 1px 118px),
    linear-gradient(180deg,
      var(--line) 0 1px,       transparent 1px 18px,
      var(--line) 18px 19px,   transparent 19px 52px,
      var(--line) 52px 53px,   transparent 53px 116px,
      var(--line) 116px 117px, transparent 117px 214px,
      var(--line) 214px 215px, transparent 215px 312px,
      var(--line) 312px 313px, transparent 313px 376px,
      var(--line) 376px 377px, transparent 377px 410px,
      var(--line) 410px 411px, transparent 411px 428px);
  background-size:auto, 100% 428px;
  -webkit-mask-image:radial-gradient(85% 75% at 62% 38%, #000 0%, transparent 76%);
  mask-image:radial-gradient(85% 75% at 62% 38%, #000 0%, transparent 76%);
}
.hero__in{ position:relative; padding:clamp(52px,7vw,88px) var(--pad) clamp(56px,7vw,84px); }
.eyebrow{
  display:inline-flex; align-items:center; gap:9px; margin:0 0 22px;
  font-size:13.5px; font-weight:600; letter-spacing:.02em;
  color:#fff; background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.16);
  padding:7px 15px 7px 12px; border-radius:999px;
}
.pulse{ width:8px; height:8px; border-radius:50%; background:#7FE3AC; box-shadow:0 0 0 0 rgba(127,227,172,.6); animation:pulse 2.4s infinite; }
@keyframes pulse{ 70%{box-shadow:0 0 0 9px rgba(127,227,172,0)} 100%{box-shadow:0 0 0 0 rgba(127,227,172,0)} }

.hero__h1{
  font-family:var(--serif); font-weight:600; letter-spacing:-.022em;
  font-size:clamp(36px,5.6vw,60px); line-height:1.07; margin:0 0 20px; max-width:17ch;
}
.hero__h1 em{ font-style:normal; color:var(--champagne); }
.hero__sub{ font-size:clamp(17px,1.9vw,20px); color:rgba(255,255,255,.78); max-width:54ch; margin:0 0 32px; }

.seek{ display:flex; gap:10px; max-width:640px; background:#fff; padding:8px; border-radius:14px; box-shadow:var(--shadow-lg); }
.seek__field{ flex:1; display:flex; flex-direction:column; justify-content:center; padding:4px 8px 6px 14px; min-width:0; }
.seek__label{ font-size:11.5px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--faint); }
.seek input{ border:0; outline:0; background:transparent; font-size:17px; padding:2px 0; width:100%; color:var(--ink); }
.seek input::placeholder{ color:#A8ADA6; }
.seek__btn{ flex:none; }
.hero__alt{ margin:24px 0 0; }
.hero__alt .link-arrow{ color:#fff; border-color:rgba(255,255,255,.35); }
.hero__alt .link-arrow:hover{ border-color:#fff; }

/* ---------- Trust bar ---------- */
.trustbar{
  background:rgba(255,255,255,.8); backdrop-filter:saturate(150%) blur(8px);
  border-bottom:1px solid var(--line);
}
.trustbar__in{
  display:flex; flex-wrap:wrap; gap:14px 44px; align-items:center; justify-content:center;
  padding:18px var(--pad);
}
.badge{ display:flex; align-items:center; gap:11px; color:var(--muted); }
.badge svg{ width:22px; height:22px; flex:none; fill:none; stroke:var(--bronze); stroke-width:1.6; stroke-linecap:round; stroke-linejoin:round; }
.badge span{ display:flex; flex-direction:column; line-height:1.28; }
.badge b{ font-size:14px; color:var(--ink); font-weight:650; }
.badge small{ font-size:12.5px; color:var(--faint); }

/* ---------- Stats ---------- */
.stats{ background:transparent; padding:clamp(40px,6vw,64px) 0 clamp(36px,5vw,56px); }
/* Separate cards rather than a hairline grid: an odd number of tiles (or one
   you delete because you can't yet back it up) never leaves a blank cell. */
.stats__grid{ display:grid; gap:14px; grid-template-columns:repeat(auto-fit,minmax(180px,1fr)); }
.stat{
  background:var(--card); border:1px solid var(--line); border-radius:var(--r);
  padding:28px 22px; text-align:center;
}
.stat__v{
  font-family:var(--serif); font-size:clamp(34px,4.4vw,46px); font-weight:600;
  line-height:1; letter-spacing:-.02em; color:var(--green); display:block;
  /* tabular figures stop the tile jittering while the number counts up */
  font-variant-numeric:tabular-nums; font-feature-settings:"tnum" 1;
}
.stat__l{ display:block; margin-top:10px; font-size:13.5px; color:var(--muted); letter-spacing:.01em; }
.stats__foot{ text-align:center; font-size:14px; color:var(--faint); margin:18px 0 0; }

/* ---------- Graticule ----------
   The map grid of meridians and parallels, which is where the agency's name
   comes from. Meridians are evenly spaced; the parallels are not — they bunch
   toward the top and bottom of each tile the way latitudes compress toward the
   poles, so it reads as a projected globe rather than graph paper.

   Two gradients, no image request, and it sits under the content on its own
   layer. Applied to the dark surfaces only: on cream it would fight the sky. */
.grat{ position:relative; isolation:isolate; }
.grat > *{ position:relative; z-index:1; }
.grat::before{
  content:""; position:absolute; inset:0; z-index:0; pointer-events:none;
  --line:rgba(217,199,163,.055);
  background-image:
    /* meridians */
    repeating-linear-gradient(90deg, var(--line) 0 1px, transparent 1px 118px),
    /* parallels — squeezed toward the tile edges, as latitudes are toward the poles */
    linear-gradient(180deg,
      var(--line) 0 1px,       transparent 1px 18px,
      var(--line) 18px 19px,   transparent 19px 52px,
      var(--line) 52px 53px,   transparent 53px 116px,
      var(--line) 116px 117px, transparent 117px 214px,
      var(--line) 214px 215px, transparent 215px 312px,
      var(--line) 312px 313px, transparent 313px 376px,
      var(--line) 376px 377px, transparent 377px 410px,
      var(--line) 410px 411px, transparent 411px 428px);
  background-size:auto, 100% 428px;
  /* fade at the edges so the tiling never announces itself */
  -webkit-mask-image:radial-gradient(120% 100% at 50% 0%, #000 12%, transparent 82%);
  mask-image:radial-gradient(120% 100% at 50% 0%, #000 12%, transparent 82%);
}
/* The footer sits at the bottom of the page, so its fade runs the other way. */
.foot.grat::before{
  -webkit-mask-image:radial-gradient(120% 100% at 50% 100%, #000 12%, transparent 82%);
  mask-image:radial-gradient(120% 100% at 50% 100%, #000 12%, transparent 82%);
}

/* ---------- Section shells ---------- */
.sec{ padding:clamp(64px,8vw,104px) 0; }
.sec--tint{ background:rgba(228,222,210,.46); }
.sec--dark{ background:var(--green); color:#fff; }

/* ---------- Steps ---------- */
.steps{ list-style:none; margin:36px 0 0; padding:0; display:grid; gap:28px; grid-template-columns:repeat(auto-fit,minmax(230px,1fr)); counter-reset:s; }
.step{ counter-increment:s; position:relative; padding-top:8px; }
.step::before{
  content:"0" counter(s); position:absolute; right:0; top:0;
  font-family:var(--serif); font-size:44px; color:rgba(28,43,35,.06); font-weight:600; line-height:1;
}
.step__ico{
  display:inline-flex; align-items:center; justify-content:center;
  width:46px; height:46px; border-radius:12px; background:var(--champagne-wash); margin-bottom:16px;
}
.step__ico svg{ width:23px; height:23px; fill:none; stroke:var(--bronze); stroke-width:1.6; stroke-linecap:round; stroke-linejoin:round; }
.step h3{ font-family:var(--serif); font-size:20px; font-weight:600; margin:0 0 8px; letter-spacing:-.01em; }
.step p{ margin:0; color:var(--muted); font-size:15.5px; }

/* ---------- Packages ---------- */
/* Five packages, so the column count is fixed per breakpoint rather than
   auto-fit — auto-fit leaves a single orphaned card on the second row. */
.packs{ display:grid; gap:16px; margin-top:36px; grid-template-columns:1fr; }
@media (min-width:620px){ .packs{ grid-template-columns:repeat(2,1fr); } }
@media (min-width:1080px){ .packs{ grid-template-columns:repeat(5,1fr); } }
/* Each package gets its own tint. All five are mixed from the same two brand
   hues — the green and the bronze — at low chroma, so they read as one set
   rather than five unrelated colours. Keyed on `data-pack`, not nth-child:
   reordering the packages in content.js must not reshuffle the colours. */
.pack{
  background:var(--pack-bg, var(--card));
  border:1px solid var(--pack-line, var(--line));
  border-radius:var(--r);
  padding:24px 20px; display:flex; flex-direction:column;
  transition:border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.pack[data-pack="family"]  { --pack-bg:#F4EADB; --pack-line:#E7D9C1; --pack-chip:rgba(255,255,255,.72); }
.pack[data-pack="couple"]  { --pack-bg:#EFE2DC; --pack-line:#DFCEC4; --pack-chip:rgba(255,255,255,.72); }
.pack[data-pack="group"]   { --pack-bg:#E8EFE8; --pack-line:#D5E0D4; --pack-chip:rgba(255,255,255,.75); }
.pack[data-pack="solo"]    { --pack-bg:#EDEDE6; --pack-line:#DEDED2; --pack-chip:rgba(255,255,255,.75); }
.pack[data-pack="students"]{ --pack-bg:#F6F1E0; --pack-line:#E8E0C8; --pack-chip:rgba(255,255,255,.72); }
/* A package with no tint defined falls back to white rather than breaking. */
.pack:hover{ border-color:rgba(124,103,66,.5); transform:translateY(-2px); box-shadow:var(--shadow); }
.pack__head{ display:flex; flex-direction:column; align-items:flex-start; gap:9px; margin-bottom:14px; }
.pack__name{ font-family:var(--serif); font-size:22px; font-weight:600; margin:0; letter-spacing:-.012em; }
.pack__detail{
  font-size:11.5px; font-weight:700; letter-spacing:.08em; text-transform:uppercase;
  color:var(--bronze); background:var(--pack-chip, var(--champagne-wash));
  padding:4px 9px; border-radius:999px;
  white-space:nowrap; flex:none;
}
.pack__line{ margin:0 0 10px; font-weight:600; font-size:16px; letter-spacing:-.005em; }
.pack__body{ margin:0 0 20px; color:var(--muted); font-size:14.5px; }
.pack__cta{
  margin-top:auto; align-self:flex-start; text-decoration:none;
  font-size:15px; font-weight:600; color:var(--green);
  border-bottom:1.5px solid rgba(124,103,66,.5); padding-bottom:2px;
}
.pack__cta::after{ content:" →"; }
.pack__cta:hover{ border-color:var(--bronze); }
.sr-only{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; border:0;
}

/* ---------- Destinations ---------- */
.dests{ display:grid; gap:20px; grid-template-columns:repeat(auto-fill,minmax(250px,1fr)); }
.dest{
  position:relative; border-radius:var(--r); overflow:hidden; background:var(--green);
  min-height:260px; display:flex; align-items:flex-end; color:#fff;
  text-decoration:none; box-shadow:var(--shadow);
  transition:transform .2s ease, box-shadow .2s ease;
}
.dest:hover{ transform:translateY(-3px); box-shadow:var(--shadow-lg); }
.dest__art{ position:absolute; inset:0; background:var(--green-deep); overflow:hidden; }
.dest__img{
  width:100%; height:100%; object-fit:cover; display:block;
  transition:transform .6s cubic-bezier(.2,.7,.3,1);
}
.dest:hover .dest__img{ transform:scale(1.05); }
.dest__scrim{ position:absolute; inset:0; background:linear-gradient(to top,rgba(10,18,13,.86) 0%,rgba(10,18,13,.34) 48%,rgba(10,18,13,.08) 100%); }
.dest__in{ position:relative; padding:20px; width:100%; }
.dest__country{ font-size:12px; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:var(--champagne); }
.dest__city{ font-family:var(--serif); font-size:26px; font-weight:600; margin:3px 0 6px; letter-spacing:-.015em; }
.dest__hook{ font-size:14.5px; color:rgba(255,255,255,.82); margin:0; }
.dests__foot{ margin:26px 0 0; font-size:15.5px; color:var(--muted); }


/* ---------- Presence ---------- */
.presence{ display:grid; gap:clamp(32px,5vw,64px); grid-template-columns:minmax(280px,.85fr) 1.15fr; align-items:start; }
.presence__copy{ position:sticky; top:100px; }
.presence__copy .btn{ margin-top:22px; }
.presence__list{ display:grid; gap:1px; background:var(--line); border:1px solid var(--line); border-radius:var(--r-lg); overflow:hidden; }
.city{ background:var(--card); padding:20px 22px; display:flex; align-items:center; gap:16px; }
.city__pin{ width:34px; height:34px; flex:none; border-radius:50%; background:var(--champagne-wash); display:grid; place-items:center; }
.city__pin svg{ width:17px; height:17px; fill:none; stroke:var(--bronze); stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
.city__name{ font-weight:650; font-size:16.5px; }
.city__name span{ font-weight:400; color:var(--faint); }
.city__svc{ font-size:13.5px; color:var(--muted); margin-top:2px; }

/* ---------- Testimonials ---------- */
.quotes{ display:grid; gap:20px; grid-template-columns:repeat(auto-fit,minmax(290px,1fr)); margin-top:36px; }
.quote{
  background:var(--slate); border:1px solid rgba(217,199,163,.13); border-radius:var(--r);
  padding:26px 24px; display:flex; flex-direction:column;
  box-shadow:0 1px 2px rgba(0,0,0,.18), 0 10px 30px rgba(0,0,0,.14);
}
.quote__mark{ font-family:var(--serif); font-size:44px; line-height:.6; color:var(--champagne); opacity:.55; margin-bottom:14px; }
.quote__text{ margin:0 0 20px; font-size:16px; color:rgba(255,255,255,.9); }
.quote__who{ display:flex; align-items:center; gap:12px; margin-top:auto; }
.avatar{
  width:40px; height:40px; border-radius:50%; flex:none; display:grid; place-items:center;
  background:var(--champagne-wash); color:var(--green); font-weight:700; font-size:14px; letter-spacing:.02em;
  background-size:cover; background-position:center;
}
.quote__name{ font-weight:650; font-size:15px; }
.quote__trip{ font-size:13px; color:rgba(255,255,255,.55); }

.cta-inline{ display:flex; flex-wrap:wrap; align-items:center; gap:18px; margin-top:36px; }
.cta-inline span{ font-size:15px; color:rgba(255,255,255,.7); }

/* ---------- Founder ---------- */
.founder{ display:grid; gap:clamp(28px,5vw,56px); grid-template-columns:minmax(240px,.75fr) 1.25fr; align-items:center; }
.founder__photo{ position:relative; }
.founder__slot{
  aspect-ratio:4/5; border-radius:var(--r-lg); background:linear-gradient(160deg,#EAE3D3,#D3C9B4);
  border:1px solid var(--line); position:relative; overflow:hidden;
}
/* object-position is set per-photo from content.js, so a replacement portrait
   composed differently can be re-centred without touching CSS. */
.founder__img{
  position:absolute; inset:0; width:100%; height:100%;
  object-fit:cover; object-position:50% 32%;
  opacity:0; transition:opacity .5s ease;
}
.founder__slot.is-loaded .founder__img{ opacity:1; }
/* Centre the portrait in its column at every width, rather than letting it
   hang off the left edge once the grid collapses. */
.founder__photo{ margin-inline:auto; width:100%; max-width:380px; }
.founder__note{ margin:.4rem 0 1.4rem; padding:0; border-left:3px solid var(--bronze); padding-left:22px; }
.founder__note p{
  font-family:var(--serif); font-size:clamp(18px,2.1vw,22px); line-height:1.55;
  margin:0 0 .8em; color:var(--ink); letter-spacing:-.008em;
}
.founder__note p:last-child{ margin-bottom:0; }
.founder__sig{ display:flex; flex-direction:column; margin:0; padding-left:25px; }
.founder__sig b{ font-size:16px; }
.founder__sig span{ font-size:14px; color:var(--faint); }

/* Photo placeholder note — visible in dev, so a real photo doesn't get forgotten. */
.founder__slot[data-photo-slot]::after{
  content:attr(data-photo-slot); position:absolute; left:14px; right:14px; bottom:14px;
  font-family:var(--sans); font-size:11.5px; line-height:1.5; color:rgba(28,43,35,.5);
  background:rgba(255,255,255,.72); border-radius:8px; padding:8px 10px;
}

/* ---------- Guarantees ---------- */
.guards{ display:grid; gap:20px; grid-template-columns:repeat(auto-fit,minmax(250px,1fr)); margin-top:36px; }
.guard{ background:var(--card); border:1px solid var(--line); border-radius:var(--r); padding:26px 24px; }
.guard__tick{ width:26px; height:26px; margin-bottom:14px; fill:none; stroke:var(--bronze); stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
.guard h3{ font-family:var(--serif); font-size:19px; font-weight:600; margin:0 0 8px; }
.guard p{ margin:0; color:var(--muted); font-size:15.5px; }

/* ---------- FAQ ---------- */
.faqwrap{ display:grid; gap:clamp(28px,5vw,64px); grid-template-columns:minmax(260px,.8fr) 1.2fr; align-items:start; }
.faqwrap__head{ position:sticky; top:100px; }
.faq{ border-top:1px solid var(--line); }
.faq details{ border-bottom:1px solid var(--line); }
.faq summary{
  cursor:pointer; list-style:none; padding:20px 40px 20px 0; position:relative;
  font-size:17px; font-weight:600; letter-spacing:-.008em;
}
.faq summary::-webkit-details-marker{ display:none; }
.faq summary::after{
  content:""; position:absolute; right:6px; top:50%; width:11px; height:11px;
  border-right:2px solid var(--bronze); border-bottom:2px solid var(--bronze);
  transform:translateY(-70%) rotate(45deg); transition:transform .2s ease;
}
.faq details[open] summary::after{ transform:translateY(-20%) rotate(225deg); }
.faq p{ margin:0 0 22px; color:var(--muted); font-size:16px; max-width:66ch; }

/* ---------- Final CTA + form ---------- */
.finalcta{
  background:var(--green-deep); color:#fff; position:relative; overflow:hidden;
  padding:clamp(60px,8vw,96px) 0;
}
/* Same layering as the Journeys hero: below the graticule, above the section
   background. The specific selector is needed to beat `.grat > *`. */
.finalcta .cta__art{ position:absolute; inset:0; z-index:-1; }
.cta__slot{ position:absolute; inset:0; }
.cta__slot::before{
  content:""; position:absolute; inset:0; z-index:1;
  background:linear-gradient(160deg, var(--green-deep) 0%, #16221B 60%, var(--green-deep) 100%);
}
/* Framed on the window wall and the aircraft beyond it. The source is a tall
   portrait, so this value picks which band of it the wide section shows —
   retune it if you swap the photograph. */
.cta__img{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
  object-position:50% 22%; opacity:0; transition:opacity .7s ease;
}
.cta__slot.is-loaded .cta__img{ opacity:1; }
/* Heavier on the left, where the copy sits; the form on the right is an opaque
   card so it needs no help. */
.cta__slot.is-loaded::before{
  background:
    linear-gradient(100deg, rgba(14,24,18,.90) 0%, rgba(14,24,18,.66) 50%, rgba(14,24,18,.42) 100%),
    linear-gradient(to bottom, rgba(14,24,18,.35) 0%, transparent 45%);
  z-index:2;
}
.finalcta__in{ display:grid; gap:clamp(32px,5vw,64px); grid-template-columns:1fr 1fr; align-items:start; }
.finalcta__points{ list-style:none; margin:26px 0 0; padding:0; display:grid; gap:12px; }
.finalcta__points li{ position:relative; padding-left:26px; color:rgba(255,255,255,.74); font-size:15.5px; }
.finalcta__points li::before{
  content:""; position:absolute; left:0; top:.55em; width:9px; height:5px;
  border-left:2px solid var(--champagne); border-bottom:2px solid var(--champagne); transform:rotate(-45deg);
}
.finalcta__points a{ color:#fff; }

.qform{ background:#fff; color:var(--ink); border-radius:var(--r-lg); padding:clamp(22px,3vw,30px); box-shadow:var(--shadow-lg); }
/* Chip showing which package the form was prefilled for. */
.qchip{
  display:flex; align-items:center; gap:9px; flex-wrap:wrap;
  margin:0 0 18px; padding:10px 12px;
  background:var(--champagne-wash); border:1px solid rgba(124,103,66,.28); border-radius:10px;
  font-size:14px;
}
.qchip[hidden]{ display:none; }
.qchip__label{
  font-size:11px; font-weight:700; letter-spacing:.11em; text-transform:uppercase; color:var(--bronze);
}
.qchip__name{ font-weight:650; color:var(--ink); }
.qchip__clear{
  margin-left:auto; background:none; border:0; cursor:pointer; padding:2px 4px;
  font-size:13px; color:var(--muted); text-decoration:underline; text-underline-offset:2px;
}
.qchip__clear:hover{ color:var(--ink); }

.qform__row{ display:grid; gap:14px; grid-template-columns:1fr 1fr; margin-bottom:14px; }
.qform__row:has(.f--sm){ grid-template-columns:1fr 1fr .7fr; }
.f{ display:flex; flex-direction:column; gap:6px; margin-bottom:14px; min-width:0; }
.qform__row .f{ margin-bottom:0; }
.f > span{ font-size:12.5px; font-weight:700; letter-spacing:.06em; text-transform:uppercase; color:var(--faint); }
.f input,.f textarea{
  border:1px solid var(--line); border-radius:9px; padding:12px 13px; background:#fff;
  font-size:16px; transition:border-color .15s, box-shadow .15s; width:100%;
}
.f input:focus,.f textarea:focus{ outline:0; border-color:var(--bronze); box-shadow:0 0 0 3px rgba(124,103,66,.14); }
.f input:user-invalid{ border-color:#C2453A; }
.f textarea{ resize:vertical; }
.check{ display:flex; gap:11px; align-items:flex-start; font-size:15px; color:var(--muted); margin:4px 0 20px; cursor:pointer; }
.check input{ margin-top:3px; width:17px; height:17px; accent-color:var(--bronze); flex:none; }
.qform__foot{ font-size:13px; color:var(--faint); margin:14px 0 0; text-align:center; }
.qform__status{ margin:12px 0 0; font-size:15px; text-align:center; min-height:0; }
.qform__status.ok{ color:#3A6B48; font-weight:600; }
.qform__status.err{ color:#C2453A; font-weight:600; }

/* ---------- Footer ---------- */
.foot{ background:var(--green); color:rgba(255,255,255,.7); padding:clamp(48px,6vw,72px) 0 92px; font-size:15px; }
.foot__in{ display:grid; gap:36px; grid-template-columns:1.6fr repeat(3,1fr); }
.foot .brand__name{ color:#fff; }
.foot__tag{ margin:12px 0 0; max-width:34ch; color:rgba(255,255,255,.6); }
.foot__col h3{ font-size:12px; font-weight:700; letter-spacing:.14em; text-transform:uppercase; color:var(--champagne); margin:0 0 14px; }
.foot__col ul{ list-style:none; margin:0; padding:0; display:grid; gap:9px; }
.foot__col a{ text-decoration:none; }
.foot__col a:hover{ color:#fff; }
.foot__bar{
  margin-top:44px; padding-top:22px; border-top:1px solid var(--line-dk);
  display:flex; flex-wrap:wrap; gap:14px 28px; align-items:center; justify-content:space-between;
  font-size:13px; color:rgba(255,255,255,.5);
}
.foot__badges{ display:flex; flex-wrap:wrap; gap:10px; }
.foot__badges span{ border:1px solid var(--line-dk); border-radius:999px; padding:4px 12px; }
.foot__legal{ display:flex; flex-wrap:wrap; gap:18px; align-items:center; }
.foot__legal a{ text-decoration:none; }
.foot__legal a:hover{ color:#fff; }

/* ---------- Journeys page ---------- */
.jhero{
  background:var(--green); color:#fff; position:relative; overflow:hidden;
  padding:clamp(64px,9vw,110px) 0 clamp(48px,6vw,72px);
}
/* Sits below the graticule (.grat::before, z-index 0) but above the section's
   own background. The `.grat > *` rule would otherwise lift it to z-index 1
   and cover the pattern, so this selector is deliberately more specific. */
.jhero .jhero__art{ position:absolute; inset:0; z-index:-1; }
.jhero__slot{ position:absolute; inset:0; }
.jhero__slot::before{
  content:""; position:absolute; inset:0; z-index:1;
  background:linear-gradient(160deg, var(--green) 0%, #17251E 60%, var(--green-deep) 100%);
}
.jhero__img{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
  object-position:50% 45%; opacity:0; transition:opacity .7s ease;
}
.jhero__slot.is-loaded .jhero__img{ opacity:1; }
/* Once the photograph is in, the gradient becomes the scrim that keeps the
   headline readable at any crop. */
.jhero__slot.is-loaded::before{
  background:
    linear-gradient(100deg, rgba(14,24,18,.88) 0%, rgba(14,24,18,.48) 46%, rgba(14,24,18,.10) 100%),
    linear-gradient(to bottom, rgba(14,24,18,.4) 0%, transparent 42%);
  z-index:2;
}
.jhero__h1{
  font-family:var(--serif); font-weight:600; letter-spacing:-.022em;
  font-size:clamp(34px,5.2vw,56px); line-height:1.08; margin:.15em 0 20px; max-width:17ch;
}
.jhero__note{
  font-size:15px; color:rgba(255,255,255,.6); max-width:62ch; margin:20px 0 0;
  padding-left:16px; border-left:2px solid rgba(217,199,163,.6);
}
.jhero a{ color:#fff; }

.jnav{
  display:flex; flex-wrap:wrap; align-items:center; gap:10px 14px;
  padding-top:26px; padding-bottom:6px;
}
.jnav > span{ font-size:12px; font-weight:700; letter-spacing:.14em; text-transform:uppercase; color:var(--faint); }
.jnav nav{ display:flex; flex-wrap:wrap; gap:8px; }
.jnav a{
  text-decoration:none; font-size:14.5px; font-weight:550; color:var(--green);
  border:1px solid var(--line); background:var(--card); border-radius:999px; padding:7px 15px;
  transition:border-color .16s, color .16s;
}
.jnav a:hover{ border-color:var(--bronze); color:var(--bronze); }

.jsec{ padding:clamp(40px,5vw,64px) 0 0; scroll-margin-top:92px; }
.jsec__head{
  display:flex; align-items:baseline; gap:16px;
  border-bottom:1px solid var(--line); padding-bottom:12px; margin-bottom:26px;
}
.jsec__title{ font-family:var(--serif); font-size:clamp(24px,3vw,32px); font-weight:600; margin:0; letter-spacing:-.015em; }
.jsec__count{ font-size:13px; color:var(--faint); margin-left:auto; white-space:nowrap; }

.jgrid{ display:grid; gap:22px; grid-template-columns:repeat(auto-fill,minmax(290px,1fr)); }
.jcard{
  background:var(--card); border:1px solid var(--line); border-radius:var(--r-lg);
  overflow:hidden; display:flex; flex-direction:column;
  transition:transform .22s cubic-bezier(.2,.7,.3,1), box-shadow .22s ease, border-color .22s ease;
}
.jcard:hover{ transform:translateY(-3px); box-shadow:var(--shadow-lg); border-color:rgba(124,103,66,.4); }
.jcard__art{ aspect-ratio:4/3; overflow:hidden; background:var(--green-deep); }
.jcard__img{ width:100%; height:100%; object-fit:cover; display:block; transition:transform .6s cubic-bezier(.2,.7,.3,1); }
.jcard:hover .jcard__img{ transform:scale(1.05); }
.jcard__body{ padding:20px 22px 22px; display:flex; flex-direction:column; flex:1; }
.jcard__country{ font-size:11.5px; font-weight:700; letter-spacing:.13em; text-transform:uppercase; color:var(--bronze); margin:0; }
.jcard__city{ font-family:var(--serif); font-size:25px; font-weight:600; margin:4px 0 10px; letter-spacing:-.015em; }
.jcard__line{ margin:0 0 16px; color:var(--muted); font-size:15px; }
.jcard__when{
  margin:0 0 20px; font-size:14px; color:var(--ink);
  background:var(--champagne-wash); border-radius:9px; padding:11px 13px;
}
.jcard__when b{
  display:block; font-size:11px; font-weight:700; letter-spacing:.11em;
  text-transform:uppercase; color:var(--bronze); margin-bottom:3px;
}
.jcard__cta{
  margin-top:auto; align-self:flex-start; text-decoration:none;
  font-size:14.5px; font-weight:600; color:var(--green);
  border-bottom:1.5px solid rgba(124,103,66,.5); padding-bottom:2px;
}
.jcard__cta::after{ content:" \2192"; }
.jcard__cta:hover{ border-color:var(--bronze); }

.finalcta__in--single{ grid-template-columns:1fr; max-width:760px; }
.finalcta__actions{ display:flex; flex-wrap:wrap; align-items:center; gap:20px; margin:28px 0 0; }
.link-arrow--light{ color:#fff; border-color:rgba(255,255,255,.35); }
.link-arrow--light:hover{ border-color:#fff; }

/* ---------- Scroll flight path ----------
   A hairline rail on the right with a plane that descends as you scroll. The
   native scrollbar is slimmed rather than hidden — hiding it would break drag
   scrolling and the visual cue that there's more page. --p is set by main.js. */
.flight{
  position:fixed; right:20px; top:104px; bottom:112px; width:2px; z-index:90;
  background:rgba(28,43,35,.09); border-radius:2px; pointer-events:none;
  --p:0;
}
/* Over a dark green section the rail and the plane's disc have to flip. */
.flight.is-dark{ background:rgba(255,255,255,.16); }
.flight.is-dark .flight__plane{ background:var(--green); box-shadow:0 1px 4px rgba(0,0,0,.3); }
.flight.is-dark .flight__plane svg{ fill:var(--champagne); }
.flight__trail{
  position:absolute; left:0; top:0; width:100%; border-radius:2px;
  height:calc(var(--p) * 100%);
  background:linear-gradient(to bottom, rgba(124,103,66,0) 0%, var(--bronze) 65%, var(--champagne) 100%);
}
.flight__plane{
  position:absolute; left:50%; top:calc(var(--p) * 100%);
  transform:translate(-50%,-50%);
  width:26px; height:26px; display:grid; place-items:center;
  background:var(--bg); border-radius:50%;
  box-shadow:0 1px 4px rgba(28,43,35,.16);
}
/* The plane faces the direction of travel: nose down while you scroll down,
   nose up when you scroll back. main.js toggles .is-up. */
.flight__plane svg{
  width:17px; height:17px; fill:var(--bronze); display:block;
  transform:rotate(180deg); transition:transform .45s cubic-bezier(.65,0,.35,1);
}
.flight.is-up .flight__plane svg{ transform:rotate(0deg); }
@media (prefers-reduced-motion:reduce){ .flight__plane svg{ transition:none; } }

/* Slim, on-brand native scrollbar so the two don't compete. */
html{ scrollbar-width:thin; scrollbar-color:rgba(28,43,35,.22) transparent; }
::-webkit-scrollbar{ width:9px; }
::-webkit-scrollbar-track{ background:transparent; }
::-webkit-scrollbar-thumb{
  background:rgba(28,43,35,.22); border-radius:9px;
  border:3px solid transparent; background-clip:content-box;
}
::-webkit-scrollbar-thumb:hover{ background:rgba(28,43,35,.36); background-clip:content-box; }

/* ---------- WhatsApp widget ---------- */
.wa{
  position:fixed; right:18px; bottom:18px; z-index:120;
  display:inline-flex; align-items:center; gap:9px;
  background:var(--green); color:var(--champagne); text-decoration:none;
  font-weight:600; font-size:15px;
  padding:12px 18px 12px 14px; border-radius:999px;
  border:1px solid rgba(217,199,163,.22);
  box-shadow:0 6px 22px rgba(20,31,25,.3);
  transition:transform .16s ease, box-shadow .16s ease, background .16s ease;
}
.wa:hover{ background:var(--green-soft); transform:translateY(-2px); box-shadow:0 10px 28px rgba(20,31,25,.38); }
.wa svg{ width:22px; height:22px; fill:var(--champagne); flex:none; }

/* ---------- Reveal on scroll (CSS-only transition, JS just adds a class) ---- */
[data-reveal]{ opacity:0; transform:translateY(14px); transition:opacity .5s ease, transform .5s ease; }
[data-reveal].in{ opacity:1; transform:none; }

/* ============================ Responsive ============================ */
@media (max-width:960px){
  .presence,.faqwrap,.founder,.finalcta__in{ grid-template-columns:1fr; }
  .presence__copy,.faqwrap__head{ position:static; }
  .founder__photo{ max-width:300px; margin-inline:auto; }
  .foot__in{ grid-template-columns:1fr 1fr; }
  .foot__brand{ grid-column:1/-1; }
}
@media (max-width:900px){ .nav__links{ display:none; } }
@media (max-width:860px){ .flight{ display:none; } }
@media (max-width:760px){
  .nav__in{ gap:12px; }
  .brand__name{ font-size:17px; }
  .seek{ flex-direction:column; padding:12px; }
  .seek__field{ padding:2px 4px 8px; }
  .seek__btn{ width:100%; }
  .trustbar__in{ gap:14px 26px; justify-content:flex-start; }
  .badge{ flex:1 1 44%; }
  .stats__grid{ grid-template-columns:1fr 1fr; }
  .qform__row,.qform__row:has(.f--sm){ grid-template-columns:1fr; }
  .wa__label{ display:none; }
  .wa{ padding:14px; right:14px; bottom:14px; }
}
@media (max-width:420px){
  body{ font-size:16px; }
  .stats__grid{ grid-template-columns:1fr; }
  .foot__in{ grid-template-columns:1fr; }
}

@media print{ .nav,.wa,.flight,.finalcta,.hero__art{ display:none } body{ background:#fff } }
