/* ==========================================================================
   GO NEXT GLOBAL — design system
   One stylesheet for the whole site. Load order: tokens, base, layout,
   components, page blocks, utilities, responsive, motion preferences.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TOKENS
   -------------------------------------------------------------------------- */
:root{
  /* Surface — the brand cream from the identity package. */
  --paper:        #f6f4ef;
  --paper-sunk:   #edeae3;
  --paper-raised: #fffefc;

  /* Ink — near-black carrying the navy cast rather than a green one. */
  --ink:          #111b28;
  --ink-2:        #3a4655;
  --ink-3:        #6d798a;
  --ink-4:        #98a2b0;

  /* Deep — brand navy (#0E1F33). Full-bleed inverted bands. */
  --deep:         #0e1f33;
  --deep-2:       #081524;
  --deep-ink:     #f6f4ef;   /* cream on navy */
  --deep-ink-2:   rgba(246,244,239,.70);

  /* Accent — brand orange. The pure #FF5A36 is used in the logo; text and
     rules run a shade deeper so headline italics clear 3:1 on cream. */
  --rust:         #f0501f;
  --rust-d:       #c43f1b;   /* small text + hover — clears 4.5:1 */
  --rust-l:       #ff8563;
  --ochre:        #ff7a55;   /* the on-navy accent */

  /* Hairlines. The whole layout is built from these. */
  --line:         rgba(17,27,40,.14);
  --line-soft:    rgba(17,27,40,.07);
  --line-deep:    rgba(246,244,239,.18);

  /* Type */
  --display: 'Instrument Serif', Georgia, 'Times New Roman', serif;
  --sans:    'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Fluid type scale */
  --t-display: clamp(46px, 7.4vw, 108px);
  --t-h1:      clamp(36px, 5.4vw, 74px);
  --t-h2:      clamp(29px, 3.7vw, 52px);
  --t-h3:      clamp(22px, 2.1vw, 30px);
  --t-h4:      19px;
  --t-lede:    clamp(17.5px, 1.45vw, 21px);
  --t-body:    16px;
  --t-small:   14px;
  --t-label:   11px;

  /* Space */
  --s-1: 4px;  --s-2: 8px;  --s-3: 12px; --s-4: 16px;
  --s-5: 24px; --s-6: 32px; --s-7: 48px; --s-8: 64px;
  --s-9: 96px; --s-10: 140px;

  /* Structure */
  --wrap:        1320px;
  --wrap-mid:    1040px;
  --wrap-narrow: 760px;
  --gutter:      clamp(20px, 4vw, 56px);
  --section-y:   clamp(72px, 9vw, 140px);
  --header-h:    72px;

  /* Motion */
  --ease: cubic-bezier(.22,.68,.24,1);
  --dur:  .55s;
}

/* --------------------------------------------------------------------------
   2. BASE
   -------------------------------------------------------------------------- */
*,*::before,*::after{ box-sizing:border-box; }
* { margin:0; padding:0; }

html{
  scroll-behavior:smooth;
  scroll-padding-top:calc(var(--header-h) + 24px);
  -webkit-text-size-adjust:100%;
}

body{
  font-family:var(--sans);
  font-size:var(--t-body);
  line-height:1.65;
  font-weight:400;
  color:var(--ink);
  background:var(--paper);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  overflow-x:hidden;
  font-feature-settings:'kern' 1;
}

img,svg,video{ display:block; max-width:100%; }
img{ height:auto; background:var(--paper-sunk); }

a{ color:inherit; text-decoration:none; }
button,input,select,textarea{ font:inherit; color:inherit; }
button{ background:none; border:none; cursor:pointer; }
ul,ol{ list-style:none; }
table{ border-collapse:collapse; width:100%; }

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

::selection{ background:var(--deep); color:var(--deep-ink); }

.skip-link{
  position:absolute; left:-9999px; top:0; z-index:200;
  background:var(--ink); color:var(--paper);
  padding:12px 20px; font-size:var(--t-small); font-weight:500;
}
.skip-link:focus{ left:12px; top:12px; }

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

/* --------------------------------------------------------------------------
   3. TYPE PRIMITIVES
   -------------------------------------------------------------------------- */
/* Instrument Serif is narrow, high-contrast and ships in one weight only.
   It sets tighter than Fraunces did, so the negative tracking is eased back
   and the leading opened slightly to clear its tall ascenders. */
.display,.h1,.h2,.h3,h1,h2,h3,h4{
  font-family:var(--display);
  font-weight:400;
  line-height:1.08;
  letter-spacing:-.012em;
  text-wrap:balance;
}
.display{ font-size:var(--t-display); line-height:1.0; letter-spacing:-.01em; }
.h1,h1{ font-size:var(--t-h1); letter-spacing:-.008em; }
.h2,h2{ font-size:var(--t-h2); }
.h3,h3{ font-size:var(--t-h3); line-height:1.16; letter-spacing:-.008em; }
h4{ font-size:var(--t-h4); line-height:1.28; letter-spacing:0; }

/* The one flourish: an italic clause inside a headline, in rust. */
.display em,.h1 em,.h2 em,.h3 em,h1 em,h2 em,h3 em{
  font-style:italic;
  color:var(--rust);
}
.on-deep .display em,.on-deep .h1 em,.on-deep .h2 em,
.on-deep h1 em,.on-deep h2 em,.on-deep h3 em{ color:var(--ochre); }

.label{
  font-family:var(--sans);
  font-size:var(--t-label);
  font-weight:500;
  letter-spacing:.19em;
  text-transform:uppercase;
  color:var(--ink-3);
  display:flex; align-items:center; gap:12px;
}
.label::before{
  content:''; width:26px; height:1px; flex:none;
  background:var(--rust); opacity:.85;
}
.label--bare::before{ display:none; }
.on-deep .label{ color:var(--deep-ink-2); }
.on-deep .label::before{ background:var(--ochre); }

.lede{
  font-size:var(--t-lede);
  line-height:1.58;
  color:var(--ink-2);
  max-width:56ch;
  text-wrap:pretty;
}
.on-deep .lede{ color:var(--deep-ink-2); }

.prose p{ margin-bottom:var(--s-5); color:var(--ink-2); text-wrap:pretty; }
.prose p:last-child{ margin-bottom:0; }
.prose strong{ font-weight:600; color:var(--ink); }
.prose em{ font-style:italic; }
.prose a{ color:var(--rust-d); text-decoration:underline; text-underline-offset:3px; text-decoration-thickness:1px; }
.prose a:hover{ color:var(--ink); }

.idx{
  font-family:var(--sans);
  font-size:var(--t-label);
  font-weight:500;
  letter-spacing:.14em;
  color:var(--ink-4);
  font-variant-numeric:tabular-nums;
}

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

.section{ padding-block:var(--section-y); }
.section--tight{ padding-block:clamp(48px,6vw,88px); }
.section--sunk{ background:var(--paper-sunk); }
.section--deep{ background:var(--deep); color:var(--deep-ink); }
.section--ruled{ border-top:1px solid var(--line); }

/* The signature structure: a label rail on the left, content on the right. */
.rail{
  display:grid;
  grid-template-columns:minmax(0,200px) minmax(0,1fr);
  gap:clamp(24px,5vw,72px);
  align-items:start;
}
.rail--wide{ grid-template-columns:minmax(0,280px) minmax(0,1fr); }

.section-head{
  display:flex; justify-content:space-between; align-items:flex-end;
  gap:var(--s-6); flex-wrap:wrap;
  padding-bottom:var(--s-6);
  margin-bottom:var(--s-8);
  border-bottom:1px solid var(--line);
}
.section-head__title{ max-width:20ch; margin-top:var(--s-4); }
.on-deep .section-head{ border-bottom-color:var(--line-deep); }

.grid{ display:grid; gap:clamp(20px,2.6vw,36px); }
.grid--2{ grid-template-columns:repeat(2,minmax(0,1fr)); }
.grid--3{ grid-template-columns:repeat(3,minmax(0,1fr)); }
.grid--4{ grid-template-columns:repeat(4,minmax(0,1fr)); }

/* --------------------------------------------------------------------------
   5. HEADER / NAV
   -------------------------------------------------------------------------- */
.site-header{
  position:sticky; top:0; z-index:90;
  background:rgba(246,244,239,.86);
  -webkit-backdrop-filter:saturate(180%) blur(14px);
  backdrop-filter:saturate(180%) blur(14px);
  border-bottom:1px solid var(--line);
}
.site-header__bar{
  display:flex; align-items:center; gap:var(--s-6);
  height:var(--header-h);
}

/* The source lockup is mark-dominant — the ring is roughly 2.7x the wordmark's
   font size. A 72px header cannot take that literally, so 42px is as close as
   it gets while keeping air above and below. */
.brand{ display:inline-flex; align-items:center; gap:12px; flex:none; }
.brand__mark{ width:42px; height:42px; flex:none; }
/* The wordmark, rebuilt to the identity package's own proportions.
   In the source lockup "gonext" is Work Sans 700 at 128px and GLOBAL sits
   beneath at 40px — 0.31x the size — on 0.675em tracking. Those ratios are
   kept here so the header reads as the logo, not an approximation of it. */
.brand__word{
  display:flex; flex-direction:column; justify-content:center;
  font-family:'Work Sans',var(--sans);
  font-size:23px; font-weight:700; letter-spacing:-.02em;
  line-height:1; white-space:nowrap; color:var(--ink);
}
.brand__word-sub{
  margin-top:.28em;
  font-size:.31em;           /* relative to "gonext", exactly as in the logo */
  font-weight:600;
  letter-spacing:.675em;
  margin-right:-.675em;      /* discard the trailing letter-space so the two
                                lines align on both edges */
  text-transform:uppercase;
  color:var(--rust);
}

.nav{ display:flex; align-items:center; gap:var(--s-6); margin-left:auto; }
.nav__link{
  position:relative;
  font-size:13px; font-weight:500; letter-spacing:.005em;
  color:var(--ink-2);
  padding-block:6px;
  transition:color .18s var(--ease);
}
.nav__link::after{
  content:''; position:absolute; left:0; right:0; bottom:0; height:1px;
  background:var(--rust); transform:scaleX(0); transform-origin:right;
  transition:transform .4s var(--ease);
}
.nav__link:hover{ color:var(--ink); }
.nav__link:hover::after{ transform:scaleX(1); transform-origin:left; }
.nav__link[aria-current="page"]{ color:var(--ink); }
.nav__link[aria-current="page"]::after{ transform:scaleX(1); }

.nav__sep{ width:1px; height:20px; background:var(--line); flex:none; }

.burger{
  display:none; margin-left:auto;
  width:40px; height:40px; align-items:center; justify-content:center;
  border:1px solid var(--line); border-radius:2px;
}
.burger svg{ width:18px; height:18px; }

/* Full-screen mobile menu, presented as a numbered index. */
.menu{
  position:fixed; inset:0; z-index:120;
  background:var(--paper);
  display:flex; flex-direction:column;
  padding:var(--s-5) var(--gutter) var(--s-7);
  transform:translateY(-100%);
  transition:transform .48s var(--ease);
  overflow-y:auto;
  visibility:hidden;
}
.menu.is-open{ transform:translateY(0); visibility:visible; }
.menu__top{ display:flex; align-items:center; height:calc(var(--header-h) - var(--s-5)); margin-bottom:var(--s-6); }
.menu__close{ margin-left:auto; width:40px; height:40px; display:flex; align-items:center; justify-content:center; border:1px solid var(--line); border-radius:2px; }
.menu__list{ border-top:1px solid var(--line); }
.menu__item{
  display:flex; align-items:baseline; gap:var(--s-4);
  padding:var(--s-4) 0;
  border-bottom:1px solid var(--line);
  font-family:var(--display);
  font-size:clamp(26px,7vw,34px); letter-spacing:-.012em; line-height:1.1;
}
.menu__item .idx{ flex:none; }
.menu__foot{ margin-top:auto; padding-top:var(--s-7); }

/* --------------------------------------------------------------------------
   6. BUTTONS & LINKS
   -------------------------------------------------------------------------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:14px 26px;
  font-size:13px; font-weight:500; letter-spacing:.01em;
  border:1px solid var(--ink); border-radius:2px;
  background:var(--ink); color:var(--paper);
  transition:background .2s var(--ease), color .2s var(--ease),
             border-color .2s var(--ease), transform .2s var(--ease);
  text-align:center;
}
.btn:hover{ background:var(--rust-d); border-color:var(--rust-d); color:#fff; }
.btn:active{ transform:translateY(1px); }
.btn svg{ width:14px; height:14px; transition:transform .25s var(--ease); }
.btn:hover svg{ transform:translateX(3px); }

.btn--ghost{ background:transparent; color:var(--ink); border-color:var(--line); }
.btn--ghost:hover{ background:var(--ink); border-color:var(--ink); color:var(--paper); }

.btn--light{ background:var(--paper); border-color:var(--paper); color:var(--ink); }
.btn--light:hover{ background:var(--ochre); border-color:var(--ochre); color:var(--deep-2); }

.btn--outline-light{ background:transparent; border-color:rgba(255,255,255,.42); color:#fff; }
.btn--outline-light:hover{ background:#fff; border-color:#fff; color:var(--ink); }

.btn--block{ width:100%; }

.btn-row{ display:flex; flex-wrap:wrap; gap:var(--s-3); }

/* Understated text link with an underline that grows. */
.arrow-link{
  display:inline-flex; align-items:center; gap:9px;
  font-size:13px; font-weight:500;
  padding-bottom:5px;
  border-bottom:1px solid var(--ink);
  transition:gap .25s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
  flex:none;
}
.arrow-link:hover{ gap:15px; color:var(--rust-d); border-bottom-color:var(--rust-d); }
.arrow-link svg{ width:13px; height:13px; }
.on-deep .arrow-link{ border-bottom-color:var(--deep-ink); color:var(--deep-ink); }
.on-deep .arrow-link:hover{ color:var(--ochre); border-bottom-color:var(--ochre); }

/* --------------------------------------------------------------------------
   7. PLATE — the standard image treatment
   -------------------------------------------------------------------------- */
.plate{ position:relative; overflow:hidden; background:var(--paper-sunk); border-radius:2px; }
.plate img{ width:100%; height:100%; object-fit:cover; transition:transform 1.2s var(--ease); }
.plate--4x5{ aspect-ratio:4/5; }
.plate--3x2{ aspect-ratio:3/2; }
.plate--1x1{ aspect-ratio:1/1; }
.plate--16x9{ aspect-ratio:16/9; }
.plate__cap{
  margin-top:10px;
  font-size:12px; letter-spacing:.08em; text-transform:uppercase;
  color:var(--ink-3);
}
a:hover > .plate img, .card:hover .plate img{ transform:scale(1.045); }

.tag{
  position:absolute; top:12px; left:12px; z-index:2;
  font-size:10.5px; font-weight:500; letter-spacing:.14em; text-transform:uppercase;
  padding:6px 10px; border-radius:2px;
  background:rgba(246,244,239,.94); color:var(--ink);
  -webkit-backdrop-filter:blur(6px); backdrop-filter:blur(6px);
}
.tag--rust{ background:var(--rust); color:#fff; }
.tag--deep{ background:rgba(23,55,47,.86); color:var(--deep-ink); }

/* --------------------------------------------------------------------------
   8. CARDS
   -------------------------------------------------------------------------- */
.card{ display:block; }
.card__meta{
  font-size:var(--t-label); font-weight:500; letter-spacing:.16em;
  text-transform:uppercase; color:var(--ink-3);
  margin:var(--s-4) 0 10px;
}
.card__title{ margin-bottom:10px; }
.card__blurb{ font-size:var(--t-small); color:var(--ink-2); line-height:1.6; text-wrap:pretty; }
.card__foot{
  display:flex; align-items:baseline; gap:var(--s-4);
  margin-top:var(--s-4); padding-top:var(--s-3);
  border-top:1px solid var(--line);
  font-size:var(--t-small); color:var(--ink-2);
}
.card__price{
  margin-left:auto; font-family:var(--display);
  font-size:17px; color:var(--ink);
}
.card__price em{ font-style:italic; color:var(--rust-d); }

/* Boxed card with hairline border, used for panels and forms. */
.panel{
  background:var(--paper-raised);
  border:1px solid var(--line);
  border-radius:3px;
  padding:clamp(24px,3.4vw,44px);
}
.panel--sunk{ background:var(--paper-sunk); border-color:var(--line-soft); }

/* --------------------------------------------------------------------------
   9. INDEX LIST — numbered rows, the site's navigational signature
   -------------------------------------------------------------------------- */
.index-list{ border-top:1px solid var(--line); }
.index-row{
  display:grid;
  grid-template-columns:64px minmax(0,1fr) minmax(0,1.15fr) 32px;
  align-items:center; gap:var(--s-5);
  padding:clamp(18px,2.2vw,26px) 0;
  border-bottom:1px solid var(--line);
  transition:padding-left .4s var(--ease), background .3s var(--ease);
}
a.index-row:hover{ padding-left:16px; background:var(--paper-raised); }
.index-row__name{
  font-family:var(--display);
  font-size:clamp(22px,2.5vw,32px); letter-spacing:-.01em; line-height:1.1;
}
.index-row__name em{ font-style:italic; color:var(--rust); }
.index-row__desc{ font-size:var(--t-small); color:var(--ink-3); line-height:1.55; }
.index-row__go{ justify-self:end; color:var(--ink-4); transition:transform .3s var(--ease), color .2s; }
a.index-row:hover .index-row__go{ transform:translateX(4px); color:var(--rust); }
.on-deep .index-list, .on-deep .index-row{ border-color:var(--line-deep); }
.on-deep .index-row__desc{ color:var(--deep-ink-2); }

/* --------------------------------------------------------------------------
   10. SPEC LEDGER — label/value pairs on hairlines
   -------------------------------------------------------------------------- */
.spec{
  display:grid; grid-template-columns:repeat(4,minmax(0,1fr));
  gap:var(--s-5);
  border-top:1px solid var(--line); border-bottom:1px solid var(--line);
  padding-block:clamp(24px,3vw,40px);
}
.spec__l{
  font-size:var(--t-label); font-weight:500; letter-spacing:.16em;
  text-transform:uppercase; color:var(--ink-3); margin-bottom:9px;
}
.spec__v{
  font-family:var(--display);
  font-size:20px; line-height:1.3; letter-spacing:-.01em;
}
.spec__v em{ font-style:italic; color:var(--rust-d); }
.on-deep .spec{ border-color:var(--line-deep); }
.on-deep .spec__l{ color:var(--deep-ink-2); }
.on-deep .spec__v em{ color:var(--ochre); }

/* Big numeric stats */
.stat__n{
  font-family:var(--display);
  font-size:clamp(48px,6vw,80px); line-height:1; letter-spacing:-.018em;
  color:var(--rust); display:block; margin-bottom:var(--s-3);
}
.stat__l{
  font-size:var(--t-label); font-weight:500; letter-spacing:.16em;
  text-transform:uppercase; color:var(--ink-3);
}

/* --------------------------------------------------------------------------
   11. QUOTES
   -------------------------------------------------------------------------- */
.quote{
  font-family:var(--display);
  font-style:italic; font-weight:400;
  font-size:clamp(24px,3.1vw,42px); line-height:1.26; letter-spacing:-.01em;
  text-wrap:balance;
}
.quote__meta{
  margin-top:var(--s-5);
  font-family:var(--sans); font-style:normal;
  font-size:var(--t-label); font-weight:500; letter-spacing:.18em;
  text-transform:uppercase; color:var(--ink-3);
}
.on-deep .quote__meta{ color:var(--deep-ink-2); }

.pullquote{
  margin:var(--s-8) 0;
  padding-left:clamp(20px,3vw,36px);
  border-left:2px solid var(--rust);
  font-family:var(--display);
  font-style:italic;
  font-size:clamp(21px,2.4vw,29px); line-height:1.32; letter-spacing:-.008em;
  color:var(--ink);
}

/* --------------------------------------------------------------------------
   12. FORMS
   -------------------------------------------------------------------------- */
.form{ display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:var(--s-5) var(--s-5); }
.field{ display:flex; flex-direction:column; gap:8px; }
.field--full{ grid-column:1 / -1; }
.field label{
  font-size:var(--t-label); font-weight:500; letter-spacing:.15em;
  text-transform:uppercase; color:var(--ink-3);
}
.field label .opt{ text-transform:none; letter-spacing:0; color:var(--ink-4); font-weight:400; }
.field input,.field select,.field textarea{
  width:100%;
  background:var(--paper-raised);
  border:1px solid var(--line);
  border-radius:2px;
  padding:12px 14px;
  font-size:15px;
  transition:border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea{ resize:vertical; min-height:104px; line-height:1.55; }
.field input:hover,.field select:hover,.field textarea:hover{ border-color:var(--ink-4); }
.field input:focus,.field select:focus,.field textarea:focus{
  outline:none;
  border-color:var(--rust);
  box-shadow:0 0 0 3px rgba(192,85,43,.14);
}
.field input::placeholder,.field textarea::placeholder{ color:var(--ink-4); }
.field select{
  appearance:none; -webkit-appearance:none; cursor:pointer; padding-right:38px;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path d='M1 1l4 4 4-4' stroke='%236f797c' stroke-width='1.3' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat:no-repeat; background-position:right 14px center;
}
.form__submit{
  grid-column:1 / -1;
  display:flex; justify-content:space-between; align-items:center;
  gap:var(--s-5); flex-wrap:wrap;
  border-top:1px solid var(--line);
  padding-top:var(--s-5);
}
.form__fine{ font-size:13px; color:var(--ink-3); max-width:46ch; line-height:1.5; }
.form__error{
  grid-column:1 / -1;
  display:none;
  border-left:2px solid var(--rust);
  padding:12px 16px;
  background:rgba(192,85,43,.06);
  font-size:14px; color:var(--rust-d);
}
.form__error.is-shown{ display:block; }

.form-success{ display:none; text-align:center; padding:var(--s-6) 0; }
.form-success.is-shown{ display:block; }
.form-success__mark{
  width:52px; height:52px; border-radius:50%;
  border:1px solid var(--rust); color:var(--rust);
  display:flex; align-items:center; justify-content:center;
  margin:0 auto var(--s-5);
}
.form-success h3{ margin-bottom:var(--s-3); }
.form-success p{ color:var(--ink-2); max-width:44ch; margin-inline:auto; }

.newsletter{ display:flex; border:1px solid var(--line-deep); border-radius:2px; max-width:390px; overflow:hidden; }
.newsletter input{
  flex:1; min-width:0; background:transparent; border:none; outline:none;
  color:var(--deep-ink); padding:12px 14px; font-size:14px;
}
.newsletter input::placeholder{ color:rgba(246,244,239,.42); }
.newsletter input:focus{ background:rgba(255,255,255,.05); }
.newsletter button{
  background:var(--deep-ink); color:var(--deep-2);
  padding:12px 20px; font-size:12px; font-weight:600; letter-spacing:.08em;
  transition:background .2s var(--ease), color .2s var(--ease);
  white-space:nowrap;
}
.newsletter button:hover{ background:var(--ochre); }
.newsletter button[disabled]{ opacity:.6; cursor:default; }

/* --------------------------------------------------------------------------
   13. HERO VARIANTS
   -------------------------------------------------------------------------- */
/* Full-bleed image hero used on the homepage and destination pages. */
.hero{
  position:relative;
  min-height:min(88vh, 820px);
  display:flex; align-items:flex-end;
  background:var(--deep-2); color:#fff;
  overflow:hidden;
}
.hero__media{ position:absolute; inset:0; z-index:0; }
.hero__media img{ width:100%; height:100%; object-fit:cover; }
.hero__media::after{
  content:''; position:absolute; inset:0;
  background:linear-gradient(178deg,
    rgba(10,20,17,.52) 0%,
    rgba(10,20,17,.14) 32%,
    rgba(10,20,17,.26) 62%,
    rgba(10,20,17,.86) 100%);
}
.hero__inner{ position:relative; z-index:2; width:100%; padding-block:clamp(64px,10vw,112px); }
.hero__title{ max-width:15ch; margin-block:var(--s-5) var(--s-5); color:#fff; }
.hero__title em{ color:var(--ochre); }
.hero__lede{ color:rgba(255,255,255,.86); max-width:52ch; margin-bottom:var(--s-6); }
.hero .label{ color:rgba(255,255,255,.8); }
.hero .label::before{ background:var(--ochre); }

/* Slideshow controls */
.hero__slides > .hero__slide{ position:absolute; inset:0; opacity:0; transition:opacity 1.4s var(--ease); }
.hero__slides > .hero__slide.is-active{ opacity:1; }
.hero__slides img{ width:100%; height:100%; object-fit:cover; }
.hero__ticker{
  position:absolute; left:0; right:0; bottom:22px; z-index:3;
  display:flex; align-items:center; gap:var(--s-5);
  font-size:12px; color:rgba(255,255,255,.82);
}
.hero__count{ font-variant-numeric:tabular-nums; letter-spacing:.1em; flex:none; }
.hero__dots{ display:flex; gap:10px; }
.hero__dot{ width:30px; height:2px; background:rgba(255,255,255,.34); border-radius:1px; position:relative; }
.hero__dot::before{ content:''; position:absolute; inset:-10px 0; }
.hero__dot.is-active{ background:#fff; }
.hero__place{ margin-left:auto; letter-spacing:.14em; text-transform:uppercase; font-size:11px; }

/* Flat text hero for interior pages. */
.page-hero{
  padding-block:clamp(56px,8vw,104px) clamp(40px,5vw,64px);
  border-bottom:1px solid var(--line);
}
.page-hero__title{ max-width:17ch; margin-block:var(--s-5) var(--s-5); }
.page-hero__lede{ max-width:60ch; }

/* Split hero: copy beside a plate. */
.split-hero{
  display:grid; grid-template-columns:minmax(0,1fr) minmax(0,.85fr);
  gap:clamp(28px,5vw,72px); align-items:center;
  padding-block:clamp(48px,7vw,96px);
}

/* --------------------------------------------------------------------------
   14. MOSAIC — destination grid
   -------------------------------------------------------------------------- */
.mosaic{ display:grid; grid-template-columns:repeat(12,1fr); gap:clamp(12px,1.6vw,22px); }
.mosaic__item{ position:relative; overflow:hidden; border-radius:2px; background:var(--deep-2); }
.mosaic__item img{ width:100%; height:100%; object-fit:cover; transition:transform 1.3s var(--ease), filter .5s; filter:saturate(.94); }
.mosaic__item:hover img{ transform:scale(1.05); filter:saturate(1.04); }
.mosaic__item::after{
  content:''; position:absolute; inset:0; pointer-events:none;
  background:linear-gradient(180deg, rgba(8,16,14,0) 42%, rgba(8,16,14,.78) 100%);
}
.mosaic__label{ position:absolute; left:20px; right:20px; bottom:18px; z-index:2; color:#fff; }
.mosaic__idx{ font-size:11px; letter-spacing:.16em; color:rgba(255,255,255,.72); margin-bottom:6px; font-variant-numeric:tabular-nums; }
.mosaic__name{
  font-family:var(--display);
  font-size:clamp(24px,2.4vw,32px); line-height:1; letter-spacing:-.012em;
}
.mosaic__sub{ font-size:11.5px; letter-spacing:.12em; text-transform:uppercase; color:rgba(255,255,255,.82); margin-top:7px; }
/* Spans are chosen so each row sums to 12: 5+7 / 4+4+4 / 5+7 / 12 */
.mosaic__item--tall{ grid-column:span 5;  aspect-ratio:4/5; }
.mosaic__item--wide{ grid-column:span 7;  aspect-ratio:7/5; }
.mosaic__item--sq  { grid-column:span 4;  aspect-ratio:1/1; }
.mosaic__item--full{ grid-column:span 12; aspect-ratio:24/9; }

/* --------------------------------------------------------------------------
   15. EDITORIAL BLOCKS
   -------------------------------------------------------------------------- */
/* Alternating image/text rows used on journeys + about. */
.feature{
  display:grid; grid-template-columns:minmax(0,.9fr) minmax(0,1fr);
  gap:clamp(28px,5vw,80px); align-items:center;
  padding-block:clamp(48px,6.5vw,96px);
  border-top:1px solid var(--line);
}
.feature--flip > .feature__media{ order:2; }
.feature__body > * + *{ margin-top:var(--s-4); }
.feature__body .btn-row,.feature__body .arrow-link{ margin-top:var(--s-6); }

/* Numbered steps / values */
.steps{ counter-reset:step; border-top:1px solid var(--line); }
.step{
  display:grid; grid-template-columns:88px minmax(0,1fr);
  gap:var(--s-5);
  padding-block:clamp(24px,3vw,40px);
  border-bottom:1px solid var(--line);
}
.step__n{
  font-family:var(--display);
  font-style:italic; font-size:30px; line-height:1; color:var(--rust);
}
.step h3{ margin-bottom:10px; }
.step p{ color:var(--ink-2); max-width:60ch; }
.on-deep .steps,.on-deep .step{ border-color:var(--line-deep); }
.on-deep .step__n{ color:var(--ochre); }
.on-deep .step p{ color:var(--deep-ink-2); }

/* Pillars — small 2x2 grid on the deep band */
/* --------------------------------------------------------------------------
   THESIS — the opening statement. A ruled slab: statement left, proof right.
   -------------------------------------------------------------------------- */
.thesis{ border-top:1px solid var(--ink); border-bottom:1px solid var(--line); }
.thesis__head{
  display:flex; align-items:center; justify-content:space-between;
  gap:var(--s-5); flex-wrap:wrap;
  padding-block:var(--s-4);
  border-bottom:1px solid var(--line);
}
.thesis__say{ padding-block:clamp(32px,4vw,56px); }
.thesis__statement{
  font-family:var(--display);
  font-weight:400;
  font-size:clamp(30px,4.4vw,64px);
  line-height:1.1;
  letter-spacing:-.015em;
  max-width:26ch;
  text-wrap:balance;
}
.thesis__statement em{
  font-style:italic;
  color:var(--rust);
}
.thesis__foot{
  display:flex; align-items:center; justify-content:space-between;
  gap:var(--s-5); flex-wrap:wrap;
  margin-top:clamp(28px,3.4vw,44px);
}
.thesis__sig{
  font-size:12px; font-weight:500; letter-spacing:.14em;
  text-transform:uppercase; color:var(--ink-3);
}

/* --------------------------------------------------------------------------
   PROMISE — the deep band. Statement, then a full-width strip, then pillars.
   -------------------------------------------------------------------------- */
.promise__head{
  display:grid; grid-template-columns:minmax(0,1.1fr) minmax(0,1fr);
  gap:clamp(24px,4vw,72px); align-items:end;
  padding-bottom:clamp(28px,3.4vw,48px);
}
.promise__title{ margin-top:var(--s-4); max-width:14ch; }
.promise__lede{ padding-bottom:6px; }
.promise__strip{
  position:relative;
  aspect-ratio:21/7; overflow:hidden; border-radius:2px;
  background:var(--deep-2);
}
.promise__strip img{
  width:100%; height:100%; object-fit:cover;
  transition:transform 1.4s var(--ease);
}
/* Just enough green in the shadows to tie the photo to the band. */
.promise__strip::after{
  content:''; position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(15,39,33,0) 45%, rgba(15,39,33,.42) 100%);
}
.promise:hover .promise__strip img{ transform:scale(1.03); }
.promise__pillars{
  display:grid; grid-template-columns:repeat(4,minmax(0,1fr));
  list-style:none;
  margin-top:clamp(32px,3.6vw,56px);
  border-top:1px solid var(--line-deep);
}
.promise__pillar{
  padding:clamp(22px,2.4vw,32px) clamp(16px,2vw,28px) 0;
  border-right:1px solid var(--line-deep);
}
.promise__pillar:first-child{ padding-left:0; }
.promise__pillar:last-child{ border-right:0; padding-right:0; }
.promise__n{
  display:block;
  font-family:var(--display);
  font-style:italic; font-size:28px; line-height:1;
  color:var(--ochre); margin-bottom:var(--s-4);
}
.promise__t{ font-family:var(--sans); font-size:14px; font-weight:600; letter-spacing:0; line-height:1.4; color:#fff; margin-bottom:7px; }
.promise__d{ font-size:13.5px; line-height:1.6; color:var(--deep-ink-2); }

/* --------------------------------------------------------------------------
   JOURNEY CARDS — the six trip types. Whole card is one link.
   -------------------------------------------------------------------------- */
.jgrid{ display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:clamp(20px,2.6vw,36px); }
.jcard{
  display:flex; flex-direction:column;
  background:var(--paper-raised);
  border:1px solid var(--line);
  border-radius:2px;
  overflow:hidden;
  transition:transform .45s var(--ease), border-color .3s var(--ease), box-shadow .45s var(--ease);
}
.jcard:hover{
  transform:translateY(-4px);
  border-color:rgba(17,27,40,.28);
  box-shadow:0 18px 40px -28px rgba(17,27,40,.55);
}
.jcard__plate{ position:relative; aspect-ratio:16/10; overflow:hidden; background:var(--paper-sunk); }
.jcard__plate img{
  width:100%; height:100%; object-fit:cover;
  filter:saturate(.82) contrast(1.02);
  transition:transform 1.2s var(--ease), filter .5s var(--ease);
}
.jcard:hover .jcard__plate img{ transform:scale(1.05); filter:saturate(1) contrast(1.02); }
.jcard__icon{
  position:absolute; left:16px; bottom:16px;
  width:44px; height:44px; padding:9px;
  display:grid; place-items:center;
  color:var(--rust);
  background:var(--paper);
  border-radius:50%;
}
.jcard__icon svg{ width:100%; height:100%; }
.jcard__body{
  display:flex; flex-direction:column; flex:1;
  padding:clamp(22px,2.4vw,30px);
}
.jcard__idx{ margin-bottom:var(--s-3); }
.jcard__title{ font-size:clamp(21px,1.7vw,26px); line-height:1.12; letter-spacing:-.01em; margin-bottom:10px; }
.jcard__lede{ font-size:var(--t-small); line-height:1.62; color:var(--ink-2); }
.jcard__go{
  display:inline-flex; align-items:center; gap:9px; align-self:flex-start;
  margin-top:var(--s-5); padding-bottom:5px;
  font-size:13px; font-weight:500;
  border-bottom:1px solid var(--ink);
  transition:gap .25s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.jcard__go svg{ width:13px; height:13px; }
.jcard:hover .jcard__go{ gap:15px; color:var(--rust-d); border-bottom-color:var(--rust-d); }

/* --------------------------------------------------------------------------
   TESTIMONIAL — the featured traveller story, set beside where it happened.
   -------------------------------------------------------------------------- */
.testimonial{
  display:grid; grid-template-columns:minmax(0,.62fr) minmax(0,1fr);
  gap:clamp(28px,5vw,80px); align-items:center;
}
.testimonial__place{
  margin-top:12px;
  font-size:var(--t-label); font-weight:500; letter-spacing:.18em;
  text-transform:uppercase; color:var(--ink-3);
}
.testimonial__quote{
  position:relative;
  margin-top:var(--s-5);
  font-family:var(--display);
  font-weight:400;
  font-size:clamp(21px,2.15vw,31px); line-height:1.34; letter-spacing:-.01em;
  text-wrap:pretty;
}
.testimonial__quote::before{
  content:'“';
  position:absolute; left:-.52em; top:-.22em;
  font-size:2.6em; line-height:1; color:var(--rust); opacity:.32;
  pointer-events:none;
}
.testimonial__foot{
  display:flex; align-items:center; justify-content:space-between;
  gap:var(--s-5); flex-wrap:wrap;
  margin-top:clamp(24px,2.8vw,36px);
  padding-top:var(--s-5);
  border-top:1px solid var(--line);
}
.testimonial__who{ display:flex; align-items:center; gap:14px; font-size:14px; line-height:1.3; }
.testimonial__who strong{ display:block; font-weight:600; }
.testimonial__trip{ font-size:12.5px; color:var(--ink-3); }
.testimonial__avatar{
  flex:none; width:42px; height:42px; border-radius:50%;
  display:grid; place-items:center;
  background:var(--deep); color:var(--deep-ink);
  font-size:12px; font-weight:600; letter-spacing:.06em;
}

/* Team cards */
.person__photo{ aspect-ratio:4/5; overflow:hidden; border-radius:2px; background:var(--paper-sunk); margin-bottom:var(--s-4); }
.person__photo img{ width:100%; height:100%; object-fit:cover; filter:grayscale(1) contrast(1.02); transition:filter .5s var(--ease), transform 1.1s var(--ease); }
.person:hover .person__photo img{ filter:grayscale(0); transform:scale(1.03); }
.person__name{ font-family:var(--display);font-size:21px; letter-spacing:-.008em; line-height:1.15; }
.person__name em{ font-style:italic; color:var(--rust); }
.person__role{ font-size:12px; font-weight:500; letter-spacing:.13em; text-transform:uppercase; color:var(--ink-3); margin-top:7px; }
.person__loc{ font-size:12.5px; color:var(--ink-4); margin-top:3px; }
.person__bio{ font-size:13.5px; line-height:1.6; color:var(--ink-2); margin-top:var(--s-3); }

/* Accordion (FAQ) */
.accordion{ border-top:1px solid var(--line); }
.accordion__item{ border-bottom:1px solid var(--line); }
.accordion__item summary{
  display:flex; align-items:flex-start; justify-content:space-between; gap:var(--s-5);
  padding:clamp(18px,2.2vw,26px) 0;
  cursor:pointer; list-style:none;
  font-family:var(--display);
  font-size:clamp(19px,1.9vw,24px); letter-spacing:-.008em; line-height:1.2;
  transition:color .2s var(--ease);
}
.accordion__item summary::-webkit-details-marker{ display:none; }
.accordion__item summary:hover{ color:var(--rust-d); }
.accordion__item summary em{ font-style:italic; color:var(--rust); }
.accordion__icon{ flex:none; width:22px; height:22px; margin-top:4px; color:var(--ink-3); transition:transform .35s var(--ease); }
.accordion__item[open] .accordion__icon{ transform:rotate(45deg); color:var(--rust); }
.accordion__body{ padding-bottom:var(--s-6); max-width:70ch; }
.accordion__body p{ color:var(--ink-2); }
.accordion__body p + p{ margin-top:var(--s-4); }
.accordion__cat{
  font-size:var(--t-label); font-weight:500; letter-spacing:.19em; text-transform:uppercase;
  color:var(--rust-d); padding-top:var(--s-7); padding-bottom:var(--s-3);
}

/* --------------------------------------------------------------------------
   16. ARTICLE (journal + legal)
   -------------------------------------------------------------------------- */
.article{ max-width:var(--wrap-narrow); margin-inline:auto; padding-block:clamp(48px,6vw,88px); }
.article > p{ font-size:17px; line-height:1.75; color:var(--ink-2); margin-bottom:var(--s-5); text-wrap:pretty; }
.article > p.lede{
  font-family:var(--display);
  font-size:clamp(20px,2.1vw,26px); line-height:1.42; letter-spacing:-.012em;
  color:var(--ink); margin-bottom:var(--s-7); max-width:none;
}
.article h2{
  font-size:clamp(23px,2.5vw,32px);
  margin-top:var(--s-8); margin-bottom:var(--s-4);
  padding-top:var(--s-5); border-top:1px solid var(--line);
}
.article h2 .rule-n{
  display:block;
  font-family:var(--sans); font-size:var(--t-label); font-weight:500;
  letter-spacing:.2em; text-transform:uppercase; color:var(--rust);
  margin-bottom:11px;
}
.article h3{ margin-top:var(--s-6); margin-bottom:var(--s-3); font-size:20px; }
.article strong{ font-weight:600; color:var(--ink); }
.article em{ font-style:italic; }
.article a{ color:var(--rust-d); text-decoration:underline; text-underline-offset:3px; }
.article ul{ margin-bottom:var(--s-5); padding-left:0; }
.article li{
  position:relative; padding-left:22px; margin-bottom:10px;
  font-size:16px; line-height:1.7; color:var(--ink-2);
}
.article li::before{ content:''; position:absolute; left:2px; top:11px; width:7px; height:1px; background:var(--rust); }
.article table{ margin-bottom:var(--s-6); font-size:14.5px; }
.article th,.article td{ text-align:left; padding:13px 14px; border-bottom:1px solid var(--line); vertical-align:top; }
.article th{
  font-family:var(--sans); font-size:var(--t-label); font-weight:600;
  letter-spacing:.15em; text-transform:uppercase; color:var(--ink-3);
  border-bottom-color:var(--ink-4);
}
.article td{ color:var(--ink-2); }

.byline{
  display:flex; align-items:center; gap:var(--s-4);
  margin-top:var(--s-8); padding-top:var(--s-5);
  border-top:1px solid var(--line);
}
.byline__avatar{
  width:52px; height:52px; border-radius:50%; flex:none;
  background:var(--deep); color:var(--ochre);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--display); font-size:19px; font-style:italic;
}
.byline__name{ font-weight:600; font-size:15px; }
.byline__bio{ font-size:13.5px; color:var(--ink-3); line-height:1.55; margin-top:2px; }

.doc-meta{ font-size:13px; color:var(--ink-3); margin-top:var(--s-4); }

/* Sticky sidebar (itinerary pages) */
.with-aside{ display:grid; grid-template-columns:minmax(0,1fr) minmax(0,340px); gap:clamp(32px,5vw,72px); align-items:start; }
.aside-card{ position:sticky; top:calc(var(--header-h) + 24px); }
.aside-card__price{
  font-family:var(--display);
  font-size:40px; line-height:1; letter-spacing:-.016em;
}
.aside-card__price em{ font-style:italic; color:var(--rust); }
.aside-card__sub{ font-size:12.5px; color:var(--ink-3); margin-top:8px; padding-bottom:var(--s-5); border-bottom:1px solid var(--line); }
.aside-card__h{ font-size:var(--t-label); font-weight:600; letter-spacing:.18em; text-transform:uppercase; color:var(--ink-3); margin:var(--s-5) 0 var(--s-3); }
.aside-list li{ position:relative; padding-left:20px; font-size:13.5px; line-height:1.55; color:var(--ink-2); margin-bottom:10px; }
.aside-list li::before{ content:''; position:absolute; left:0; top:9px; width:8px; height:1px; background:var(--rust); }
.aside-card__note{ font-size:12.5px; color:var(--ink-3); line-height:1.55; margin-top:var(--s-4); }

/* Day-by-day list */
.days{ border-top:1px solid var(--line); }
.day{
  display:grid; grid-template-columns:130px minmax(0,1fr);
  gap:var(--s-5);
  padding-block:clamp(22px,2.6vw,32px);
  border-bottom:1px solid var(--line);
}
.day__l{ font-size:var(--t-label); font-weight:600; letter-spacing:.15em; text-transform:uppercase; color:var(--rust-d); padding-top:5px; }
.day__n{ font-family:var(--display);font-size:23px; letter-spacing:-.01em; margin-bottom:9px; line-height:1.15; }
.day__d{ font-size:15px; color:var(--ink-2); line-height:1.65; max-width:62ch; }

/* --------------------------------------------------------------------------
   17. CTA BAND + FOOTER
   -------------------------------------------------------------------------- */
.cta-band{ position:relative; overflow:hidden; color:#fff; padding-block:clamp(80px,10vw,150px); background:var(--deep-2); }
.cta-band__bg{ position:absolute; inset:0; z-index:0; }
.cta-band__bg img{ width:100%; height:100%; object-fit:cover; opacity:.55; }
.cta-band__bg::after{ content:''; position:absolute; inset:0; background:linear-gradient(180deg, rgba(10,20,17,.62), rgba(10,20,17,.84)); }
.cta-band__inner{ position:relative; z-index:2; text-align:center; max-width:820px; margin-inline:auto; }
.cta-band .label{ justify-content:center; color:rgba(255,255,255,.82); }
.cta-band .label::before{ background:var(--ochre); }
.cta-band h2{ margin-block:var(--s-5); color:#fff; }
.cta-band h2 em{ color:var(--ochre); }
.cta-band p{ color:rgba(255,255,255,.84); max-width:52ch; margin:0 auto var(--s-6); font-size:var(--t-lede); }
.cta-band .btn-row{ justify-content:center; }

.site-footer{ background:var(--deep); color:var(--deep-ink); padding-block:clamp(56px,7vw,88px) var(--s-6); }
.site-footer__top{
  display:grid; grid-template-columns:minmax(0,1.7fr) repeat(3,minmax(0,1fr));
  gap:clamp(28px,4vw,56px);
  padding-bottom:var(--s-8); border-bottom:1px solid var(--line-deep);
}
.site-footer .brand__word{ color:#fff; }
.site-footer__tag{ font-size:14.5px; line-height:1.65; color:var(--deep-ink-2); max-width:34ch; margin-block:var(--s-4) var(--s-5); }
.site-footer__col h4{
  font-family:var(--sans); font-size:var(--t-label); font-weight:600;
  letter-spacing:.19em; text-transform:uppercase; color:#fff; margin-bottom:var(--s-4);
}
.site-footer__col li + li{ margin-top:11px; }
.site-footer__col a{ font-size:14px; color:var(--deep-ink-2); transition:color .18s var(--ease); }
.site-footer__col a:hover{ color:#fff; }
.site-footer__bot{
  display:flex; justify-content:space-between; align-items:flex-start; gap:var(--s-5);
  flex-wrap:wrap; padding-top:var(--s-5);
  font-size:12.5px; line-height:1.6; color:rgba(246,244,239,.5);
}
.site-footer__bot strong{ color:var(--deep-ink-2); font-weight:500; }
.site-footer__bot a:hover{ color:#fff; }

/* --------------------------------------------------------------------------
   18. TOASTS
   -------------------------------------------------------------------------- */
.toasts{ position:fixed; right:20px; bottom:20px; z-index:300; display:flex; flex-direction:column; gap:10px; pointer-events:none; }
.toast{
  background:var(--ink); color:var(--paper);
  padding:13px 17px; border-radius:3px; font-size:14px; line-height:1.45;
  max-width:340px; box-shadow:0 14px 40px rgba(10,16,14,.28);
  opacity:0; transform:translateY(8px);
  transition:opacity .25s var(--ease), transform .25s var(--ease);
  pointer-events:auto;
}
.toast.is-shown{ opacity:1; transform:translateY(0); }

/* --------------------------------------------------------------------------
   19. UTILITIES
   -------------------------------------------------------------------------- */
.mt-2{ margin-top:var(--s-2);} .mt-3{ margin-top:var(--s-3);} .mt-4{ margin-top:var(--s-4);}
.mt-5{ margin-top:var(--s-5);} .mt-6{ margin-top:var(--s-6);} .mt-7{ margin-top:var(--s-7);} .mt-8{ margin-top:var(--s-8);}
.mb-4{ margin-bottom:var(--s-4);} .mb-5{ margin-bottom:var(--s-5);} .mb-6{ margin-bottom:var(--s-6);}
.center{ text-align:center; }
.measure{ max-width:62ch; }
.muted{ color:var(--ink-3); }
.rule{ height:1px; background:var(--line); border:0; }

/* Scroll-in reveal.
   Scoped to .js (set by an inline script in <head>) so that if scripting is
   blocked or fails to load, nothing is ever left at opacity:0. */
.js .rise{ opacity:0; transform:translateY(22px); transition:opacity .8s var(--ease), transform .8s var(--ease); }
.js .rise.is-in{ opacity:1; transform:none; }
.js .rise-2{ transition-delay:.09s; } .js .rise-3{ transition-delay:.18s; } .js .rise-4{ transition-delay:.27s; }

/* --------------------------------------------------------------------------
   20. RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width:1080px){
  .grid--4{ grid-template-columns:repeat(2,minmax(0,1fr)); }
  .jgrid{ grid-template-columns:repeat(2,minmax(0,1fr)); }
  .promise__pillars{ grid-template-columns:repeat(2,minmax(0,1fr)); }
  .promise__pillar{ padding-inline:clamp(16px,2vw,28px); border-bottom:1px solid var(--line-deep); padding-bottom:clamp(22px,2.4vw,32px); }
  .promise__pillar:nth-child(odd){ padding-left:0; }
  .promise__pillar:nth-child(2n){ border-right:0; padding-right:0; }
  .promise__pillar:nth-last-child(-n+2){ border-bottom:0; padding-bottom:0; }
  .with-aside{ grid-template-columns:1fr; }
  .aside-card{ position:static; }
  .mosaic__item--tall,.mosaic__item--wide,.mosaic__item--sq{ grid-column:span 6; aspect-ratio:1/1; }
  .mosaic__item--full{ grid-column:span 12; aspect-ratio:2/1; }
}

@media (max-width:900px){
  :root{ --header-h:64px; }
  .nav{ display:none; }
  .burger{ display:flex; }
  .rail,.rail--wide{ grid-template-columns:1fr; gap:var(--s-4); }
  .grid--3{ grid-template-columns:repeat(2,minmax(0,1fr)); }
  .split-hero{ grid-template-columns:1fr; }
  .thesis__statement{ max-width:24ch; }
  .promise__head{ grid-template-columns:1fr; align-items:start; }
  .promise__strip{ aspect-ratio:16/7; }
  .testimonial{ grid-template-columns:1fr; }
  .testimonial__media{ max-width:360px; }
  .feature{ grid-template-columns:1fr; }
  .feature--flip > .feature__media{ order:0; }
  .spec{ grid-template-columns:repeat(2,minmax(0,1fr)); }
  .index-row{ grid-template-columns:44px minmax(0,1fr) 24px; }
  .index-row__desc{ grid-column:2 / 3; }
  .section-head{ align-items:flex-start; }
}

@media (max-width:640px){
  .grid--2,.grid--3,.grid--4{ grid-template-columns:1fr; }
  .jgrid{ grid-template-columns:1fr; }
  .promise__pillars{ grid-template-columns:1fr; }
  .promise__pillar{ padding-inline:0; border-right:0; }
  .promise__pillar:nth-last-child(-n+2){ border-bottom:1px solid var(--line-deep); padding-bottom:clamp(22px,2.4vw,32px); }
  .promise__pillar:last-child{ border-bottom:0; padding-bottom:0; }
  .testimonial__quote::before{ display:none; }
  .form{ grid-template-columns:1fr; }
  .form__submit{ flex-direction:column; align-items:stretch; }
  .form__submit .btn{ width:100%; }
  .spec{ grid-template-columns:1fr; gap:var(--s-4); }
  .day{ grid-template-columns:1fr; gap:var(--s-2); }
  .step{ grid-template-columns:1fr; gap:var(--s-2); }
  .mosaic__item--tall,.mosaic__item--wide,.mosaic__item--sq,.mosaic__item--full{ grid-column:span 12; aspect-ratio:5/4; }
  .site-footer__top{ grid-template-columns:1fr 1fr; }
  .site-footer__brand-col{ grid-column:1 / -1; }
  .toasts{ left:12px; right:12px; bottom:12px; }
  .toast{ max-width:none; }
  /* The ticker goes position:static here, which puts it back in the flex row
     next to .hero__inner and crushes the headline. Stack them instead. */
  .hero{ min-height:auto; padding-top:var(--s-8); flex-direction:column; align-items:stretch; }
  .hero__ticker{ position:static; margin-top:var(--s-6); padding-inline:var(--gutter); }
}

@media (max-width:420px){
  .site-footer__top{ grid-template-columns:1fr; }
}

/* --------------------------------------------------------------------------
   21. MOTION / PRINT
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion:reduce){
  html{ scroll-behavior:auto; }
  *,*::before,*::after{
    animation-duration:.01ms !important;
    animation-iteration-count:1 !important;
    transition-duration:.01ms !important;
  }
  .js .rise{ opacity:1; transform:none; }
}

@media print{
  .site-header,.site-footer,.cta-band,.menu,.toasts,.burger{ display:none !important; }
  body{ background:#fff; color:#000; }
  .hero{ min-height:auto; color:#000; }
  .hero__media{ display:none; }
  a[href^="http"]::after{ content:' (' attr(href) ')'; font-size:11px; color:#555; }
}
