/* ============================================================
   DOABLE TRIPS, design system
   ============================================================ */
:root {
  /* Quiet Horizon, warm ivory base, warm near-black, lagoon teal + warm orange */
  --paper: #FAF8F5;
  --paper-2: #F2EFEA;
  --card: #FDFEFF;            /* cool, crisp near-white card fill */
  --ink: #171614;
  --ink-2: #2A2724;
  --ink-deep: #100F0E;        /* deepest band (footer) */
  --muted: #5C5A55;
  --ink-faint: #8D8A83;
  --line: #E7E3DC;            /* soft warm hairline (Meridian) */
  --line-strong: #D6D1C7;
  --accent: #008083;          /* lagoon teal */
  --accent-deep: #005F60;     /* deep teal, accent text on light (AA) */
  --accent-glow: #249EA0;     /* lifted teal, accent on dark */
  --gold: #F78104;            /* warm orange (accent 2), lines, sheens, on-dark text */
  --gold-deep: #C25E03;
  /* glass + glow + signature panel (Meridian) */
  --surface-card: rgba(255,255,255,.92);
  --glass: rgba(255,255,255,.62);
  --glass-stroke: rgba(255,255,255,.75);
  --glass-inset: rgba(255,255,255,.25);
  --shadow-ambient: 0 24px 64px -24px rgba(23,22,20,.12);
  --glow-a: rgba(0,128,131,.16);
  --glow-b: rgba(247,129,4,.20);
  --panel-bg: var(--surface-card);
  --panel-border: var(--line);
  --panel-line: rgba(23,22,20,.08);
  --panel-active: rgba(23,22,20,.045);
  --panel-track: rgba(23,22,20,.10);
  --panel-chip-bg: rgba(23,22,20,.035);
  --panel-chip-line: rgba(23,22,20,.10);
  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-body: "Figtree", system-ui, sans-serif;
  --font-serif: "Fraunces", Georgia, serif;
  --rad: 18px;
  --rad-sm: 12px;
  --shadow-card: 0 24px 64px -24px rgba(23, 22, 20, .16);
  --shadow-soft: 0 14px 40px -20px rgba(23, 22, 20, .10);
  --shadow-glow: 0 16px 36px -16px rgba(0,128,131, .38);
  --angle: 4.5vw;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 88px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 6px;
}
.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;
}
body.menu-open { overflow: hidden; }
body.menu-open .nav { background: var(--paper); box-shadow: 0 1px 0 var(--line); }

.container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

h1 { font-size: clamp(2.5rem, 5.2vw, 4.05rem); letter-spacing: -0.04em; }
h2 { font-size: clamp(2.1rem, 4.6vw, 3.9rem); }

/* Accent phrase: one font across every title (Bricolage Grotesque). The
   second line is set apart by phrasing and line-break, not a second face;
   kept monochrome so it reads on any background. */
h1 em, h2 em {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: inherit;
  letter-spacing: inherit;
  color: inherit;
}

/* Tabular numerals on figures so prices/stats align and don't jitter. */
.stat b, .cmp-total b, .cc-row b, .cc-num, .pi-price, .pc-price,
.tier-price, .quote blockquote, .cc-save { font-variant-numeric: tabular-nums; }

.eyebrow {
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 26px; height: 2px;
  background: var(--accent);
  vertical-align: middle;
  margin-right: 12px;
}
.eyebrow-light { color: var(--accent-glow); }

.lede {
  font-size: clamp(1.02rem, 1.4vw, 1.2rem);
  color: var(--muted);
  max-width: 56ch;
  margin-top: 22px;
}
.lede-light { color: rgba(240, 237, 231,.72); }

.section-head { margin-bottom: 56px; }
.section-head.split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.section-sub {
  max-width: 38ch;
  color: var(--muted);
  font-size: 1.02rem;
  padding-bottom: 8px;
}

.footnote {
  margin-top: 36px;
  font-size: .8rem;
  color: var(--muted);
  letter-spacing: .02em;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .98rem;
  letter-spacing: .01em;
  text-decoration: none;
  padding: 16px 28px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  transition: transform .25s cubic-bezier(.2,.7,.2,1), box-shadow .25s, background .25s, color .25s;
  will-change: transform;
}
.btn .arr { transition: transform .25s; }
.btn:hover .arr { transform: translateX(5px); }

/* Primary = the glossy lagoon gradient (Quiet Horizon): top light + directional
   teal fill + accent-tinted glow, with a warm orange hint that blooms on hover.
   .btn-primary and .btn-accent share it so every principal CTA reads the same. */
.btn-primary, .btn-accent {
  background-color: var(--accent-deep);
  background-image:
    linear-gradient(to bottom, rgba(255,255,255,.18), transparent 52%),
    linear-gradient(155deg, #0A9296, #005F60 84%);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.24), 0 8px 24px -8px rgba(0,128,131,.42);
}
.btn-primary:hover, .btn-accent:hover {
  transform: translateY(-3px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.24), 0 16px 38px -12px rgba(0,128,131,.48), 0 4px 16px -6px rgba(247,129,4,.30);
}

.btn-ghost {
  border: 1.5px solid var(--accent);
  color: var(--accent-deep);
  background: transparent;
}
.btn-ghost:hover { transform: translateY(-3px); border-color: var(--accent-deep); background: rgba(0,128,131,.07); }

.btn-ghost-light {
  border: 1.5px solid rgba(240,237,231,.3);
  color: var(--paper);
}
.btn-ghost-light:hover { transform: translateY(-3px); border-color: var(--paper); }

.btn-sm { padding: 11px 22px; font-size: .88rem; }
.btn-lg { padding: 19px 36px; font-size: 1.08rem; }

.cta-row { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; margin-top: 34px; }
.cta-row.center { justify-content: center; }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background .35s, box-shadow .35s, padding .35s;
  padding: 15px 0;
}
.nav.scrolled {
  background: rgba(250, 248, 245, .72);
  backdrop-filter: blur(22px) saturate(1.35);
  -webkit-backdrop-filter: blur(22px) saturate(1.35);
  box-shadow: 0 1px 0 var(--line);
  padding: 11px 0;
}
.nav-inner {
  width: min(1280px, calc(100% - 48px));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.26rem;
  letter-spacing: -0.03em;
  color: var(--ink);
  text-decoration: none;
}
.brand-dot { color: var(--accent); text-shadow: 0 0 9px rgba(0,128,131,.55); }
.nav-links { display: flex; gap: 34px; }
.nav-links a {
  font-size: .92rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  position: relative;
  transition: color .25s;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -5px;
  width: 100%; height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s cubic-bezier(.2,.7,.2,1);
}
.nav-links a:hover::after { transform: scaleX(1); }

/* Pages that open on a dark section (e.g. bespoke): keep the nav legible while the
   bar is still transparent. Reverts to dark text once it gains its solid background
   on scroll (.scrolled) or when the mobile menu opens (body.menu-open). */
body:not(.menu-open) .nav--on-dark:not(.scrolled) .brand { color: var(--paper); }
body:not(.menu-open) .nav--on-dark:not(.scrolled) .nav-links a { color: rgba(240, 237, 231,.82); }
body:not(.menu-open) .nav--on-dark:not(.scrolled) .nav-links a:hover { color: var(--paper); }
body:not(.menu-open) .nav--on-dark:not(.scrolled) .nav-toggle span { background: var(--paper); }

/* mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  margin: 0 auto;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s cubic-bezier(.2,.7,.2,1), opacity .25s;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 6px 24px 20px;
  background: var(--paper);
  border-top: 1px solid var(--line);
  box-shadow: 0 20px 34px -18px rgba(23, 22, 20,.38);
}
.mobile-menu a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
  text-decoration: none;
  padding: 14px 4px;
  border-bottom: 1px solid var(--line);
}
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu .mm-cta {
  margin-top: 14px;
  background: var(--ink);
  color: var(--paper);
  text-align: center;
  border-radius: 999px;
  border: none;
  padding: 16px;
  width: 100%;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 150px 0 110px;
  overflow: clip;
}
/* aura: the soft "light source" behind the headline (teal + orange).
   Pure soft radials, no filter:blur, so it stays cheap to composite.
   Anchored over the left copy column so the glow sits behind the text. */
.hero::before {
  content: "";
  position: absolute;
  left: 2%; top: 4%;
  width: min(680px, 56%); height: 72%;
  background:
    radial-gradient(46% 46% at 44% 42%, rgba(0,128,131,.16), transparent 70%),
    radial-gradient(40% 40% at 68% 60%, rgba(247,129,4,.13), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; }

.hero-word {
  position: absolute;
  top: 6%;
  right: 9%;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(7rem, 22vw, 21rem);
  letter-spacing: -0.05em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(23, 22, 20,.10);
  user-select: none;
  white-space: nowrap;
  transition: opacity .5s;
}
.hero-word.swap { opacity: 0; }

/* soft on-theme green glow behind the hero visual, a radial, no diagonal edge */
.hero-slab {
  position: absolute;
  top: 0; right: -8%;
  width: 60%; height: 88%;
  background: radial-gradient(58% 56% at 66% 42%, rgba(0,128,131,.10), transparent 72%);
}

.hero-grid { display: none; }  /* removed, the masked diagonal read as a stray angle */

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 44px;
  align-items: center;
}

.hook {
  position: relative;
  margin-top: 30px;
  max-width: 52ch;
  padding: 6px 0 6px 30px;
}
.hook::before {
  content: "\201C";
  position: absolute;
  left: -2px; top: 10px;
  font-family: var(--font-display);
  font-size: 2.6rem;
  line-height: .6;
  color: var(--accent);
}
.hook p {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.55vw, 1.28rem);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.01em;
}
.hook strong { color: var(--accent-deep); }
.hook cite {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-size: .82rem;
  color: var(--muted);
}

.micro-proof {
  margin-top: 26px;
  font-size: .82rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: .03em;
}
.cta-note {
  margin-top: 14px;
  font-size: .92rem;
  color: var(--muted);
}

/* preview link: a plain inline text link sitting where the eyebrow was */
.hero-try {
  display: inline-block;
  font-family: var(--font-display); font-weight: 600;
  font-size: .92rem; letter-spacing: .01em;
  color: var(--accent-deep); text-decoration: none;
  margin-bottom: 18px;
}
.hero-try .arr { display: inline-block; transition: transform .25s; }
.hero-try:hover { text-decoration: underline; text-underline-offset: 3px; }
.hero-try:hover .arr { transform: translateX(3px); }

/* --- hero visual: two tilted cards floating over a smaller trip photo --- */
.hero-visual {
  position: relative;
  min-height: 660px;
}

.hv-scene {
  position: absolute;
  top: 13%; right: 8%; bottom: 13%; left: 16%;   /* smaller than the column */
  border-radius: 22px;
  overflow: hidden;
  transform: rotate(3deg);
  box-shadow: var(--shadow-card);
  background: #08575A;
}
.hv-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.hv-gloss {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image:
    linear-gradient(118deg, transparent 34%, rgba(255,255,255,.22) 48%, rgba(255,255,255,.04) 55%, transparent 66%),
    linear-gradient(152deg, rgba(0,79,82,.60), rgba(10,110,113,.40) 55%, rgba(150,205,206,.28));
  background-size: 180% 100%, 100% 100%;
  background-position: 28% 0, 0 0;
  background-repeat: no-repeat;
}
.hv-scene-cap {
  position: absolute; z-index: 2; left: 16px; bottom: 14px;
  font: 700 .68rem/1 var(--font-body); letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.94); text-shadow: 0 1px 12px rgba(8,18,14,.55);
}

.opt-card {
  position: absolute;
  display: flex;
  flex-direction: column;
  background: var(--card);
  border-radius: var(--rad);
  box-shadow: var(--shadow-card);
  color: inherit; text-decoration: none; cursor: pointer;
  width: min(281px, 54%);
  min-height: 405px;
  padding: 22px 22px;
  will-change: transform;
  transition: transform .28s cubic-bezier(.2,.7,.2,1), box-shadow .28s;
}
.opt-card header { display: flex; justify-content: space-between; align-items: center; gap: 10px; margin-bottom: 12px; }
.opt-card h3 { font-size: 1.42rem; margin-bottom: 6px; letter-spacing: -.02em; }
.oc-tag {
  font-family: var(--font-display);
  font-size: .66rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--accent-deep); background: rgba(0,128,131,.10);
  padding: 5px 11px; border-radius: 999px;
}
.oc-tag--gold { color: #A64B00; background: rgba(247,129,4,.16); }
.oc-price { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; white-space: nowrap; }
.oc-desc { font-size: .88rem; color: var(--muted); line-height: 1.5; margin-bottom: 13px; }
.oc-list { list-style: none; display: grid; gap: 8px; margin-bottom: 15px; }
.oc-list li { position: relative; padding-left: 21px; font-size: .84rem; color: var(--ink-2); }
.oc-list li::before { content: ""; position: absolute; left: 2px; top: .5em; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.opt-b .oc-list li::before { background: var(--gold); }
.oc-cta {
  display: inline-flex; align-items: center; gap: 7px;
  margin-top: auto; align-self: flex-start;
  font-family: var(--font-display); font-weight: 600; font-size: .88rem; color: var(--accent-deep);
}
.oc-cta .arr { transition: transform .25s; }
.opt-b .oc-cta { color: #A64B00; }
.opt-a { left: 0; top: 0; --rot: -2.5deg; transform: rotate(-2.5deg); z-index: 3; }
.opt-b { right: 0; bottom: 0; --rot: 2.5deg; transform: rotate(2.5deg); z-index: 4; }
.opt-card:hover { transform: translateY(-5px) rotate(var(--rot, 0deg)); box-shadow: 0 30px 70px -26px rgba(23,22,20,.30); z-index: 6; }
.opt-card:hover .arr { transform: translateX(4px); }

/* floating motion */
@keyframes floatA { 0%,100% { translate: 0 0; } 50% { translate: 0 -14px; } }
@keyframes floatB { 0%,100% { translate: 0 0; } 50% { translate: 0 12px; } }
.float-a { animation: floatA 7s ease-in-out infinite; }
.float-b { animation: floatB 8.5s ease-in-out infinite; }

/* ============================================================
   PHOTO STRIP, our own frames, scrolling (replaces the text ticker)
   ============================================================ */
.photostrip { background: var(--paper); padding: clamp(10px,2vw,22px) 0 clamp(30px,4vw,48px); }
.ps-viewport { position: relative; overflow: hidden; }
/* edge fades as overlays, cheaper than masking an animated track */
.ps-viewport::before, .ps-viewport::after {
  content: ""; position: absolute; top: 0; bottom: 0;
  width: clamp(40px,8vw,150px); z-index: 1; pointer-events: none;
}
.ps-viewport::before { left: 0; background: linear-gradient(to right, var(--paper), transparent); }
.ps-viewport::after { right: 0; background: linear-gradient(to left, var(--paper), transparent); }
.ps-track { display: flex; width: max-content; will-change: transform; }
.ps-list { display: flex; gap: 18px; padding-right: 18px; align-items: center; list-style: none; margin: 0; }
.ps-list li {
  flex: none; width: 208px; height: 278px;
  border-radius: 18px; overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-soft);
}
.ps-list img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (prefers-reduced-motion: no-preference) {
  .ps-track { animation: photoscroll 140s linear infinite; }
  .photostrip:hover .ps-track { animation-play-state: paused; }
}
@keyframes photoscroll { to { transform: translateX(-50%); } }
/* reduced motion → a static, hand-scrollable strip instead of a loop */
@media (prefers-reduced-motion: reduce) {
  .ps-viewport { overflow-x: auto; }
  .ps-track { animation: none; }
}
@media (max-width: 640px) {
  .ps-list li { width: 168px; height: 224px; }
}

/* ============================================================
   ANGLED SECTIONS
   ============================================================ */
.angled {
  clip-path: polygon(0 var(--angle), 100% 0, 100% 100%, 0 100%);
  margin-top: calc(var(--angle) * -1 + 24px);
  padding-top: calc(var(--angle) + 90px);
}
.angled-dark {
  clip-path: polygon(0 0, 100% var(--angle), 100% 100%, 0 100%);
  margin-top: calc(var(--angle) * -1 + 24px);
  padding-top: calc(var(--angle) + 90px);
}

/* ============================================================
   COMPARE
   ============================================================ */
.compare {
  background: var(--paper-2);
  padding-bottom: 110px;
  position: relative;
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.cmp-card {
  border-radius: var(--rad);
  padding: 36px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.cmp-agency {
  background: var(--ink);
  color: rgba(240,237,231,.85);
  transform: rotate(-.6deg);
}
.cmp-us {
  background: var(--card);
  box-shadow: var(--shadow-card);
  transform: rotate(.6deg) translateY(-18px);
}

.cmp-card header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.cmp-card h3 { font-size: 1.45rem; }
.cmp-agency h3 { color: var(--paper); }
.cmp-pill {
  font-family: var(--font-display);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid currentColor;
  opacity: .65;
}
.cmp-card ul { list-style: none; display: grid; gap: 12px; flex: 1; }
.cmp-card li {
  font-size: .92rem;
  padding-left: 26px;
  position: relative;
}
.cmp-agency li::before {
  content: "✕";
  position: absolute; left: 0;
  color: var(--accent-glow);
  font-weight: 700;
  font-size: .8rem;
}
.cmp-us li::before {
  content: "✓";
  position: absolute; left: 0;
  color: var(--accent);
  font-weight: 700;
}

.cmp-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin: 26px 0 10px;
  padding-top: 20px;
  border-top: 1px solid rgba(128,128,128,.25);
}
.cmp-total span {
  font-size: .75rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  opacity: .6;
}
.cmp-total b {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
  letter-spacing: -0.03em;
}
.cmp-us .cmp-total b { color: var(--accent-deep); }

.cmp-bar { height: 10px; border-radius: 99px; background: rgba(128,128,128,.18); overflow: hidden; }
.cmp-bar i {
  display: block;
  height: 100%;
  width: var(--w, 0%);
  border-radius: 99px;
  background: currentColor;
  opacity: .55;
  transform-origin: left;
  transform: scaleX(1);
  transition: transform 1.2s cubic-bezier(.2,.7,.2,1) .3s;
}
.cmp-us .cmp-bar i { background: var(--accent); opacity: 1; }
/* JS users get the fill animation; no-JS shows the bars already filled */
.js .cmp-bar i { transform: scaleX(0); }
.js .reveal.in .cmp-bar i { transform: scaleX(1); }

.cmp-badge {
  position: absolute;
  top: -18px;
  right: 26px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .82rem;
  padding: 9px 16px;
  border-radius: 999px;
  box-shadow: 0 12px 26px -10px rgba(0,128,131,.5);
  transform: rotate(2deg);
}

/* ============================================================
   PLANS
   ============================================================ */
.plans { padding: 120px 0; }

.filter-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 42px; }
.chip {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .85rem;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: transparent;
  color: var(--ink-2);
  cursor: pointer;
  transition: all .25s;
}
.chip:hover { border-color: var(--ink); transform: translateY(-2px); }
.chip.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  /* the middle card is shifted down 34px (visual stagger) but transforms don't
     grow the grid box, reserve that space so it can't overlap the text below */
  padding-bottom: 34px;
}
.plan-grid .plan-item:nth-child(3n+2) { transform: translateY(34px); }

/* glossy plan cards: photo background + green sheen at 75%, text inside */
.plan-item {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  text-decoration: none;
  color: #fff;
  background: #17332C;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s, opacity .35s;
}
.plan-item:hover { transform: translateY(-8px) !important; box-shadow: var(--shadow-card); }
.plan-grid .plan-item:nth-child(3n+2):hover { transform: translateY(26px) !important; }
.plan-item.hide { display: none; }

.plan-empty { margin-top: 34px; text-align: center; font-size: .95rem; color: var(--muted); }
.plan-empty a { color: var(--accent-deep); font-weight: 600; }

/* photo base + green sheen overlay (75% over a photo, full where there is none) */
.pi-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.pi-gloss { position: absolute; inset: 0; z-index: 1; }
.has-photo .pi-gloss { opacity: .75; }

/* legibility scrim */
.plan-item::after {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none; border-radius: inherit;
  background:
    linear-gradient(to top, rgba(8,12,10,.74), rgba(8,12,10,.22) 46%, transparent 66%),
    linear-gradient(to bottom, rgba(8,12,10,.34), transparent 24%);
}

.pi-top, .pi-bottom { position: absolute; z-index: 3; left: 22px; right: 22px; }
.pi-top { top: 20px; display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; }
.pi-bottom { bottom: 20px; display: flex; flex-direction: column; gap: 7px; }

.pi-kicker { font: 800 1.08rem/1.05 var(--font-display); letter-spacing: .03em; text-transform: uppercase; color: rgba(255,255,255,.96); }

.pi-chip {
  display: inline-flex; align-items: center; gap: 7px; white-space: nowrap;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(12,12,11,.4); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.2);
  font: 600 .72rem/1 var(--font-body); color: rgba(255,255,255,.94);
}
.pi-chip--soon { color: rgba(255,255,255,.82); }
.pi-chip .glow-dot { width: 7px; height: 7px; border-radius: 50%; background: #2CB8BB; box-shadow: 0 0 8px 2px rgba(44,184,187,.5); flex: 0 0 auto; }

.pi-title { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.32rem, 1.7vw, 1.72rem); letter-spacing: -.02em; line-height: 1.12; color: #FDFCFA; }
.pi-sub { font-size: .88rem; line-height: 1.35; color: rgba(255,255,255,.82); }

.pi-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 10px; }
.pi-price { font-family: var(--font-display); font-weight: 800; font-size: 1.55rem; letter-spacing: -.01em; color: #fff; }
.pi-price--soon { font-size: .9rem; font-weight: 600; letter-spacing: .02em; color: rgba(255,255,255,.8); }
.pi-buy {
  font-family: var(--font-display); font-weight: 700; font-size: .82rem; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 6px;
  background-color: #C25405;
  background-image:
    linear-gradient(to bottom, rgba(255,255,255,.20), transparent 50%),
    linear-gradient(155deg, #F5820E, #C05204 86%);
  color: #fff;
  text-shadow: 0 1px 1px rgba(74,26,0,.4);
  padding: 11px 17px; border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.30), 0 10px 24px -10px rgba(194,84,5,.55);
  transition: transform .25s, gap .25s, box-shadow .25s;
}
.plan-item:hover .pi-buy { transform: translateY(-2px); gap: 9px; }

/* pricing disambiguation */
.plans-pricing {
  margin-top: 22px;
  text-align: center;
  font-size: .92rem;
  color: var(--ink-2);
}
.plans-pricing b { font-family: var(--font-display); color: var(--ink); }

/* proof: "from the trip" documentary photo strip (real owner photos, not stock) */
.trip-shots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 4px 0 64px;
}
.shot { margin: 0; }
.shot-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--rad);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(120% 80% at 28% 8%, rgba(247,129,4,.20), transparent 58%),
    linear-gradient(160deg, var(--paper-2), #E9E2D4);
}
.shot-frame img,
.shot-frame svg { width: 100%; height: 100%; object-fit: cover; display: block; }
.shot-ph {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}
.shot figcaption {
  margin-top: 12px;
  font-size: .82rem;
  color: var(--ink-2);
  line-height: 1.45;
}
.shot figcaption b { font-family: var(--font-display); color: var(--ink); }
@media (max-width: 860px) {
  .trip-shots { grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 48px; }
}

/* photos gallery page (reuses .shot / .shot-frame from the proof strip) */
.gallery-country { padding: 64px 0 30px; }
.gallery-soon { padding: 18px 0 96px; }
.gc-head {
  margin-bottom: 34px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 18px 28px;
  flex-wrap: wrap;
}
.gc-head h2 { font-size: clamp(2rem, 4vw, 2.9rem); }
.gc-meta { color: var(--muted); font-size: .95rem; margin-top: 6px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
/* coming-country rows, each with a join-the-list CTA */
.soon-list { list-style: none; display: grid; margin-top: 4px; }
.soon-item {
  display: flex;
  align-items: center;
  gap: 16px 22px;
  padding: 18px 2px;
  border-top: 1px solid var(--line);
}
.soon-item:last-child { border-bottom: 1px solid var(--line); }
.soon-name { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; min-width: 150px; }
.soon-state { flex: 1; font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.soon-cta { font-family: var(--font-display); font-weight: 600; font-size: .9rem; color: var(--accent-deep); white-space: nowrap; text-decoration: none; }
.soon-cta:hover { color: var(--accent); }
.soon-foot { margin-top: 22px; font-size: .85rem; color: var(--muted); }
@media (max-width: 860px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 560px) {
  .soon-item { flex-wrap: wrap; gap: 6px 16px; }
  .soon-name { width: 100%; min-width: 0; }
}

/* "browse all plans" CTA at the foot of the comparison */
.browse-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px 24px;
  flex-wrap: wrap;
  margin-top: 44px;
}
.browse-note { font-size: .9rem; color: var(--muted); }

/* trust strip (dark contexts) */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 24px;
  margin-top: 28px;
  font-size: .82rem;
  color: rgba(240, 237, 231,.72);
}
.trust-strip span { display: inline-flex; align-items: center; gap: 8px; }
.trust-strip span::before { content: "✓"; color: var(--accent-glow); font-weight: 700; }

.plans-incl {
  margin-top: 74px;
  text-align: center;
  font-size: .85rem;
  color: var(--muted);
  letter-spacing: .03em;
}
.peek-link {
  color: var(--accent-deep);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1.5px solid rgba(0,128,131,.4);
  padding-bottom: 1px;
}
.peek-link:hover { border-color: var(--accent); }
.plans-bespoke { margin-top: 14px; text-align: center; font-size: .92rem; color: var(--ink-2); }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how {
  background: var(--ink);
  color: var(--paper);
  padding-bottom: 130px;
}
.how h2 { color: var(--paper); }
.how .eyebrow { color: var(--accent-glow); }

.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 28px 24px 30px;
  border: 1px solid rgba(240,237,231,.12);
  border-radius: var(--rad);
  background: linear-gradient(170deg, rgba(240,237,231,.05), transparent 60%);
  transition: transform .35s cubic-bezier(.2,.7,.2,1), border-color .35s;
}
.step:hover { transform: translateY(-6px); border-color: rgba(36,158,160,.5); }
.steps .step:nth-child(2) { translate: 0 30px; }
.steps .step:nth-child(3) { translate: 0 60px; }
.steps .step:nth-child(4) { translate: 0 90px; }

.step-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.6rem;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1.3px var(--accent);
  display: block;
  margin-bottom: 18px;
}
.step h3 { font-size: 1.25rem; margin-bottom: 10px; color: var(--paper); }
.step p { font-size: .88rem; color: rgba(240,237,231,.65); }

.how-note {
  margin-top: 130px;
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: rgba(240,237,231,.75);
}
.how-note b { color: var(--accent-glow); }
.how-cta { margin-top: 16px; text-align: center; font-size: .95rem; color: rgba(240,237,231,.7); }
.how-cta a { color: var(--accent-glow); font-weight: 600; text-decoration: none; }
.how-cta a:hover { text-decoration: underline; }

/* features: CTA to the catalog */
.features-copy .feat-cta { margin-top: 34px; }

/* ============================================================
   BESPOKE
   ============================================================ */
.bespoke {
  background:
    radial-gradient(900px 500px at 85% 10%, rgba(36,158,160,.16), transparent 60%),
    linear-gradient(165deg, #1C1B18, #121311 70%);
  color: var(--paper);
  padding-bottom: 130px;
}
.bespoke h2 { color: var(--paper); }

.bespoke-inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 70px;
  align-items: center;
}

.bespoke-list {
  list-style: none;
  display: grid;
  gap: 13px;
  margin-top: 28px;
}
.bespoke-list li {
  position: relative;
  padding-left: 30px;
  font-size: .97rem;
  color: rgba(240,237,231,.8);
}
.bespoke-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.bespoke-list b { color: var(--paper); }

.bespoke-price {
  font-size: .82rem;
  color: rgba(240,237,231,.6);
  max-width: 32ch;
  line-height: 1.5;
}
.bespoke-price b { color: var(--paper); font-size: 1rem; }

.tier-stack { display: grid; gap: 18px; }
.tier {
  position: relative;
  background: rgba(240,237,231,.05);
  border: 1px solid rgba(240,237,231,.12);
  border-radius: var(--rad);
  padding: 24px 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas: "name price" "meta price";
  align-items: center;
  transform: rotate(-.5deg);
  transition: transform .35s;
}
.tier:hover { transform: rotate(0deg) translateX(6px); }
.tier h4 { grid-area: name; font-size: 1.15rem; color: var(--paper); }
.tier-price {
  grid-area: price;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--paper);
}
.tier-price.strike { text-decoration: line-through; text-decoration-color: var(--accent); opacity: .5; }
.tier-meta { grid-area: meta; font-size: .78rem; color: rgba(240,237,231,.66); }

.tier-hot {
  background: linear-gradient(155deg, #22766A, #005F60);
  border-color: transparent;
  transform: rotate(.8deg) scale(1.04);
  box-shadow: 0 24px 50px -20px rgba(0,128,131,.5);
}
.tier-hot:hover { transform: rotate(0deg) scale(1.05); }
.tier-hot .tier-meta { color: rgba(255,255,255,.8); }
.tier-flag {
  position: absolute;
  top: -12px;
  left: 22px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}
.tier-dim { opacity: .65; }

/* ---- Bespoke 3-column card grid (homepage) ---- */
.btiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
  margin-top: 52px;
}
.btier {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 34px 30px;
  transition: border-color .3s cubic-bezier(.2,.7,.2,1), transform .3s cubic-bezier(.2,.7,.2,1);
}
.btier:hover { border-color: rgba(23,22,20,.22); transform: translateY(-4px); }
.btier h3 { font-size: 1.5rem; letter-spacing: -.02em; color: var(--ink); }
.btier h3 em { font-family: var(--font-display); font-style: normal; font-weight: inherit; color: inherit; }
.btier-line { margin-top: 8px; font-size: .98rem; color: var(--muted); }
.btier-price { margin-top: 22px; display: flex; align-items: baseline; gap: 8px; }
.btier-num { font-family: var(--font-display); font-weight: 700; font-size: 2.6rem; letter-spacing: -.03em; line-height: 1; font-variant-numeric: tabular-nums; color: var(--ink); }
.btier-unit { font-size: .9rem; color: var(--muted); }
.btier-list { list-style: none; margin: 24px 0 30px; flex: 1; }
.btier-list li { padding: 12px 0; font-size: .94rem; border-top: 1px solid var(--line); color: var(--ink-2); }
.btier .btn { align-self: stretch; justify-content: center; }
.btier-featured { border: 1.5px solid rgba(0,128,131,.42); box-shadow: var(--shadow-card); z-index: 1; }
/* teal→gold gradient-border chip on an OPAQUE section-matched base so no card
   edge shows through it where it straddles the top of the card */
.btier-chip {
  position: absolute; top: -15px; left: 50%; transform: translateX(-50%); z-index: 2;
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 16px; border-radius: 999px;
  font: 700 .72rem/1 var(--font-body); letter-spacing: .08em; text-transform: uppercase; white-space: nowrap;
  border: 1px solid transparent;
  background:
    linear-gradient(90deg, rgba(0,128,131,.16), rgba(247,129,4,.18)) padding-box,
    linear-gradient(var(--paper), var(--paper)) padding-box,
    linear-gradient(90deg, var(--accent), var(--gold)) border-box;
  color: var(--accent-deep);
  box-shadow: 0 10px 24px -12px rgba(0,128,131,.4);
}
.glow-dot { display: inline-block; flex: none; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 8px 2px rgba(0,128,131,.45); }
@media (max-width: 900px) {
  .btiers { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; gap: 26px; }
  .btier-featured { order: -1; }
}

/* ============================================================
   PROOF
   ============================================================ */
.proof { padding: 130px 0 120px; }

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}
.stat {
  border-top: 3px solid var(--ink);
  padding-top: 18px;
}
.stat:nth-child(odd) { border-top-color: var(--accent); }
.stat b {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
}
.stat > span:last-child { font-size: .85rem; color: var(--muted); }

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.story {
  background: var(--card);
  border-radius: var(--rad);
  padding: 30px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s;
}
.story:hover { transform: translateY(-6px) rotate(-.4deg); box-shadow: var(--shadow-card); }
.story:nth-child(2) { transform: translateY(26px); }
.story:nth-child(2):hover { transform: translateY(20px) rotate(.4deg); }

.story-delta {
  align-self: flex-start;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .92rem;
  color: var(--accent-deep);
  background: rgba(0,128,131,.10);
  padding: 7px 14px;
  border-radius: 999px;
}
.story p { font-size: .95rem; line-height: 1.65; flex: 1; }
.story footer { font-size: .8rem; color: var(--muted); }
.story footer b { color: var(--ink); }

/* --- homepage fixed-first reorder: Proof becomes dark, Bespoke becomes light --- */
.proof.angled-dark {
  background:
    radial-gradient(900px 500px at 15% 10%, rgba(36,158,160,.15), transparent 60%),
    linear-gradient(165deg, #1C1B18, #121311 70%);
  color: var(--paper);
  padding-top: calc(var(--angle) + 90px);
}
.proof.angled-dark h2 { color: var(--paper); }
.proof.angled-dark .stat b { color: var(--paper); }
.proof.angled-dark .stat { border-top-color: rgba(240,237,231,.25); }
.proof.angled-dark .stat:nth-child(odd) { border-top-color: var(--accent); }
.proof.angled-dark .stat > span:last-child { color: rgba(240,237,231,.62); }
.proof.angled-dark figcaption { color: rgba(240,237,231,.72); }
.proof.angled-dark figcaption b { color: var(--paper); }
.proof.angled-dark .browse-note { color: rgba(240,237,231,.6); }

.bespoke.angled { background: var(--paper-2); color: var(--ink); }
.bespoke.angled h2 { color: var(--ink); }
.bespoke.angled .bespoke-list li { color: var(--ink-2); }
.bespoke.angled .bespoke-list b { color: var(--ink); }
.bespoke.angled .bespoke-price { color: var(--muted); }
.bespoke.angled .bespoke-price b { color: var(--ink); }
.bespoke.angled .tier {
  background: var(--card);
  border-color: var(--line);
  box-shadow: var(--shadow-soft);
}
.bespoke.angled .tier h4 { color: var(--ink); }
.bespoke.angled .tier-price { color: var(--ink); }
.bespoke.angled .tier-meta { color: var(--muted); }
.bespoke.angled .tier-flag { background: var(--ink); color: var(--paper); }

/* ============================================================
   FEATURES
   ============================================================ */
.features {
  background: var(--paper-2);
  padding-bottom: 130px;
}
.features-inner {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.screen-wrap { perspective: 1200px; }
.screen {
  background: var(--ink);
  border-radius: 26px;
  padding: 14px;
  box-shadow: var(--shadow-card);
  transform: rotate(-2.5deg);
}
.screen-top {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 8px 14px;
}
.screen-top i {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(240,237,231,.22);
}
.screen-top i:first-child { background: var(--accent); }
.screen-top span {
  margin-left: auto;
  font-family: var(--font-display);
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(240,237,231,.5);
}
.screen-body {
  background: var(--paper);
  border-radius: 16px;
  padding: 24px;
  display: grid;
  gap: 16px;
}
.tl-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: 12px;
  background: var(--card);
  box-shadow: 0 4px 14px -8px rgba(23,22,20,.15);
}
.tl-item.is-now { outline: 2px solid var(--accent); position: relative; }
.tl-item.is-now::after {
  content: "NOW";
  position: absolute;
  top: -9px; right: 12px;
  font-family: var(--font-display);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .14em;
  background: var(--accent);
  color: #fff;
  padding: 3px 8px;
  border-radius: 99px;
}
.tl-time {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .82rem;
  color: var(--accent-deep);
  white-space: nowrap;
  padding-top: 2px;
}
.tl-item b { font-size: .9rem; display: block; font-family: var(--font-display); letter-spacing: -.01em; }
.tl-item p { font-size: .76rem; color: var(--muted); margin-top: 2px; }

.screen-ledger {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  background: var(--ink);
  border-radius: 12px;
  color: var(--paper);
}
.screen-ledger span { font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; opacity: .65; white-space: nowrap; }
.screen-ledger b { font-family: var(--font-display); font-size: .85rem; white-space: nowrap; }
.ledger-bar {
  flex: 1;
  height: 7px;
  border-radius: 99px;
  background: rgba(240,237,231,.15);
  overflow: hidden;
}
.ledger-bar i { display: block; height: 100%; width: 76%; background: var(--accent); border-radius: 99px; }

.feat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 32px;
  margin-top: 8px;
}
.feat {
  padding: 20px 0;
  border-top: 1px solid var(--line);
}
.feat h4 { font-size: 1.02rem; margin-bottom: 6px; }
.feat h4::before {
  content: "✺ ";
  color: var(--accent);
}
.feat p { font-size: .85rem; color: var(--muted); }

/* ============================================================
   QUOTES
   ============================================================ */
.quotes { padding: 120px 0 140px; }
.quote-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.quote {
  background: var(--card);
  border-radius: var(--rad);
  padding: 34px;
  box-shadow: var(--shadow-soft);
  transition: transform .35s;
}
.quote:hover { transform: translateY(-5px); }
.quote:nth-child(odd) { transform: rotate(-.5deg); }
.quote:nth-child(even) { transform: rotate(.5deg) translateY(20px); }
.quote:nth-child(odd):hover { transform: rotate(-.5deg) translateY(-5px); }
.quote:nth-child(even):hover { transform: rotate(.5deg) translateY(15px); }

.quote blockquote {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.45;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}
.quote figcaption { font-size: .8rem; color: var(--muted); }
.q-accent { background: linear-gradient(155deg, #22766A, #005F60); color: #fff; box-shadow: 0 24px 50px -20px rgba(0,128,131,.5); }
.q-accent figcaption { color: rgba(255,255,255,.78); }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final {
  position: relative;
  background:
    radial-gradient(760px 420px at 12% 88%, rgba(36,158,160,.18), transparent 60%),
    radial-gradient(640px 380px at 88% 12%, rgba(247,129,4,.14), transparent 62%),
    linear-gradient(150deg, #1B1A17, #121311);
  color: var(--paper);
  padding: 160px 0 170px;
  overflow: clip;
  text-align: center;
}
.final h2 { color: var(--paper); font-size: clamp(2.6rem, 5.6vw, 5rem); }
.final .lede { margin-inline: auto; }
.final-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.final-bg span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 42vw;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(240,237,231,.06);
  user-select: none;
}
.final-inner { position: relative; }
.final .cta-row { margin-top: 44px; }
.final-tertiary {
  margin-top: 24px;
  font-size: .9rem;
  color: rgba(240, 237, 231,.62);
}
.final-tertiary a {
  color: var(--accent-glow);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1.5px solid rgba(36,158,160, .45);
  padding-bottom: 1px;
}
.final-tertiary a:hover { border-color: var(--accent-glow); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink-deep);
  color: rgba(240,237,231,.62);
  padding: 54px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.footer .brand { color: var(--paper); font-size: 1.15rem; }
.footer p { font-size: .82rem; }
.footer nav { margin-left: auto; display: flex; gap: 22px; flex-wrap: wrap; }
.footer nav a {
  color: rgba(240,237,231,.65);
  text-decoration: none;
  font-size: .82rem;
  transition: color .25s;
}
.footer nav a:hover { color: var(--accent); }
.footer small { width: 100%; font-size: .72rem; opacity: .6; }
.footer-affiliate { opacity: .78 !important; margin-bottom: 2px; }
.footer-social { display: flex; gap: 12px; width: 100%; margin-top: 4px; }
.footer-social .fs-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  color: rgba(240,237,231,.7);
  background: rgba(240,237,231,.07);
  transition: color .25s, background .25s, transform .25s;
}
.footer-social .fs-link:hover {
  color: var(--paper);
  background: var(--accent);
  transform: translateY(-2px);
}
.footer-social svg { width: 18px; height: 18px; display: block; }

/* ============================================================
   SUB-PAGES + FORMS (bespoke, thanks, legal)
   ============================================================ */
.page-top { padding-top: 116px; }

/* dark intro hero (Plans, Photos), mirrors the Bespoke top block */
.page-hero {
  background:
    radial-gradient(900px 500px at 85% 8%, rgba(36,158,160,.16), transparent 60%),
    linear-gradient(165deg, #1C1B18, #121311 70%);
  color: var(--paper);
  padding: 132px 0 84px;
}
.page-hero h1 { color: var(--paper); }
.page-hero .lede-light { margin-top: 18px; max-width: 46ch; }
.page-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 64px;
  align-items: center;
}
.page-hero-copy .bespoke-list { margin-top: 24px; }
.page-hero-copy .cta-row { margin-top: 30px; }
.hero-card {
  background: linear-gradient(170deg, rgba(240,237,231,.07), transparent 72%);
  border: 1px solid rgba(240,237,231,.14);
  border-radius: var(--rad);
  padding: 30px 30px 26px;
}
.hero-card h3 { color: var(--paper); font-size: 1.15rem; margin-bottom: 16px; }
.hero-card-list { list-style: none; display: grid; gap: 11px; }
.hero-card-list li { position: relative; padding-left: 26px; font-size: .92rem; color: rgba(240,237,231,.8); }
.hero-card-list li::before { content: "✓"; position: absolute; left: 0; color: var(--accent-glow); font-weight: 700; }
.hero-card-foot { margin-top: 20px; padding-top: 16px; border-top: 1px solid rgba(240,237,231,.12); font-size: .9rem; color: rgba(240,237,231,.7); }
.hero-card-foot b { color: var(--paper); font-family: var(--font-display); }
@media (max-width: 860px) {
  .page-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .page-hero { padding-top: 120px; }
}

.enquiry { padding: 90px 0 110px; }
.enquiry-inner { max-width: 720px; margin-inline: auto; }

.bform { display: grid; gap: 20px; }
.field {
  display: grid;
  grid-template-columns: 180px 1fr;
  align-items: center;
  gap: 6px 18px;
}
@media (max-width: 600px) {
  .field { grid-template-columns: 1fr; align-items: start; gap: 7px; }
}
.field label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .9rem;
  color: var(--ink);
  line-height: 1.3;
}
.field input,
.field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--card);
  border: 1.5px solid var(--line);
  border-radius: var(--rad-sm);
  padding: 13px 15px;
  width: 100%;
  transition: border-color .2s, box-shadow .2s;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--muted); }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,128,131, .18);
}
.field textarea { resize: vertical; min-height: 120px; line-height: 1.5; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field-consent {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: .9rem;
  color: var(--ink-2);
  line-height: 1.5;
}
.field-consent input {
  margin-top: 2px;
  width: 18px; height: 18px;
  accent-color: var(--accent);
  flex: 0 0 auto;
}
.field-consent a { color: var(--accent-deep); }
.bform .btn { justify-self: start; margin-top: 4px; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* select controls match the text inputs */
.field select {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--card);
  border: 1.5px solid var(--line);
  border-radius: var(--rad-sm);
  padding: 13px 15px;
  width: 100%;
  transition: border-color .2s, box-shadow .2s;
}
.field select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,128,131, .18);
}

/* --- bespoke form: section labels + optional tag --- */
.field-group-label {
  font: 600 .82rem/1.2 var(--font-body);
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 26px 0 10px;
}
.field-group-label:first-child { margin-top: 0; }
.field-opt {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--muted);
  font-size: .85em;
}
/* enquiry submit status line */
.bform-status { margin: 10px 0 0; font-size: .95rem; }
.bform-status.is-err { color: #c0392b; }

/* simple prose for legal / thanks pages */
.prose { max-width: 680px; margin-inline: auto; }
.prose h2 { font-size: 1.5rem; margin: 36px 0 12px; }
.prose h2:first-child { margin-top: 0; }
.prose p { color: var(--ink-2); margin-bottom: 14px; }
.prose ul { margin: 0 0 14px 20px; color: var(--ink-2); }
.prose li { margin-bottom: 6px; }
.prose .todo {
  display: block;
  background: var(--paper-2);
  border-radius: var(--rad-sm);
  padding: 12px 16px;
  font-size: .9rem;
  color: var(--muted);
  margin-bottom: 14px;
}
.thanks-block { max-width: 620px; margin-inline: auto; text-align: center; padding: 30px 0; }
.thanks-block .cta-row { justify-content: center; }

@media (max-width: 560px) {
  .field-row { grid-template-columns: 1fr; }
}

/* ============================================================
   DESTINATIONS, Meridian-style sheen cards
   ============================================================ */
.destinations { padding: clamp(60px,8vw,104px) 0 clamp(54px,6vw,90px); overflow: hidden; }

/* ---- rotating coverflow: 8 cards, 5 shown, centre highlighted, sides greyed ---- */
.dest-carousel { position: relative; margin-top: 46px; }
/* no-JS / pre-init fallback: a plain horizontal scroll row */
.dest-stage { display: flex; gap: 16px; overflow-x: auto; scrollbar-width: none; padding-bottom: 4px; }
.dest-stage::-webkit-scrollbar { display: none; }
.dest {
  flex: 0 0 auto; position: relative;
  width: clamp(200px, 24vw, 286px); aspect-ratio: 3 / 4.2;
  border-radius: 22px; overflow: hidden;
  border: 1px solid var(--line); text-decoration: none;
}
/* JS coverflow: absolute cards the script positions + fades in */
.js .dest-stage { display: block; overflow: visible; height: clamp(330px, 40vw, 448px); }
.js .dest-stage .dest {
  position: absolute; top: 0; left: 50%; height: 100%; aspect-ratio: auto;
  transform: translateX(-50%); opacity: 0;
  transition: transform .6s cubic-bezier(.3,.9,.3,1), opacity .55s ease, filter .55s ease;
  will-change: transform, opacity;
}
.js .dest-stage .dest.is-center { box-shadow: var(--shadow-card); border-color: rgba(23,22,20,.14); }
/* bottom scrim so the white label stays legible over the light end of the gradient */
.dest::after { content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(10,10,9,.55), rgba(10,10,9,.10) 40%, transparent 58%); }
.dest-meta { position: absolute; z-index: 2; top: 18px; left: 20px;
  font: 700 .7rem/1 var(--font-body); letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.9); }
.dest-chip { position: absolute; z-index: 2; top: 15px; right: 16px;
  display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px; border-radius: 999px;
  background: rgba(12,12,11,.4); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.18); font: 600 .72rem/1 var(--font-body); color: rgba(255,255,255,.92); }
.dest-chip--soon { color: rgba(255,255,255,.78); }
.dest-name { position: absolute; z-index: 2; left: 20px; bottom: 18px;
  font-family: var(--font-display); font-weight: 700; font-size: clamp(1.5rem,1.9vw,1.9rem);
  letter-spacing: -.02em; color: #FDFCFA; }
.dest .glow-dot { background: #2CB8BB; box-shadow: 0 0 8px 2px rgba(44,184,187,.5); }
/* metallic sheen, atmosphere gradient + a soft, static diagonal highlight band */
.sheen {
  --s-a: #0C4F52; --s-b: #A6CFD0;
  background-image:
    linear-gradient(118deg, transparent 34%, rgba(255,255,255,.24) 48%, rgba(255,255,255,.05) 55%, transparent 66%),
    linear-gradient(152deg, var(--s-a), var(--s-b));
  background-size: 180% 100%, 100% 100%;
  background-position: 28% 0, 0 0;
  background-repeat: no-repeat;
}
/* fine grain so the gradients don't band */
.sheen::before { content: ""; position: absolute; inset: 0; z-index: 1; border-radius: inherit; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 140px 140px; opacity: .04; }
.sheen-japan       { --s-a: #08575A; --s-b: #9BCFD0; }  /* teal-green */
.sheen-thailand    { --s-a: #1E5F5A; --s-b: #E3CB9C; }  /* turquoise → warm sand */
.sheen-vietnam     { --s-a: #274B57; --s-b: #A9C4CA; }  /* slate-teal → mist */
.sheen-indonesia   { --s-a: #244C34; --s-b: #C6C398; }  /* jungle green → straw */
.sheen-korea       { --s-a: #43384F; --s-b: #C7A9B4; }  /* plum → rose */
.sheen-philippines { --s-a: #1C5266; --s-b: #BFD0C4; }  /* azure → pale */
.sheen-lanka       { --s-a: #7A3B2E; --s-b: #E4C79E; }  /* terracotta → gold */
.sheen-nepal       { --s-a: #21384A; --s-b: #A6C3D6; }  /* cool blue → snow */
@media (prefers-reduced-motion: reduce) { .js .dest-stage .dest { transition: opacity .2s ease; } }

/* ============================================================
   HOW IT WORKS  +  THE INSTRUMENT (Meridian sections)
   ============================================================ */
.glass {
  background: var(--glass);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  backdrop-filter: blur(24px) saturate(1.4);
  border: 1px solid var(--glass-stroke);
  box-shadow: inset 0 1px 0 var(--glass-inset), var(--shadow-ambient);
}
.caps { font: 700 .68rem/1 var(--font-body); letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }

.how-sec { padding: clamp(64px,9vw,120px) 0 clamp(18px,3vw,34px); }
.how-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 46px; }
.how-card { border-radius: 26px; padding: clamp(26px,3vw,38px); }
.how-card h3 { font-size: 1.5rem; letter-spacing: -.02em; color: var(--ink); }
.how-card h3 em { font-family: var(--font-display); font-style: normal; font-weight: inherit; color: inherit; }
.how-card > p { margin-top: 12px; max-width: 44ch; color: var(--muted); font-size: 1rem; }
.row-list { margin-top: 26px; list-style: none; }
.row-list li { display: grid; gap: 3px; padding-block: 15px; border-top: 1px solid var(--line); }
.row-list li:last-child { padding-bottom: 0; }
.row-list strong { font-size: .98rem; color: var(--ink); font-family: var(--font-display); font-weight: 700; }
.row-list span { font-size: .95rem; color: var(--muted); }
@media (max-width: 760px) { .how-grid { grid-template-columns: 1fr; } }

.instrument { padding: clamp(56px,8vw,110px) 0 clamp(60px,8vw,110px); }
.panel {
  background: var(--panel-bg); border: 1px solid var(--panel-border);
  border-radius: 26px; overflow: hidden; color: var(--muted);
  box-shadow: var(--shadow-ambient); margin-top: 44px;
}
.panel-top { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 28px; border-bottom: 1px solid var(--panel-line); }
.panel-title { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; letter-spacing: -.01em; color: var(--ink); }
.panel-rev { color: var(--ink-faint); }
.panel-body { display: grid; grid-template-columns: minmax(240px, 330px) 1fr; }
.day-list { padding: 16px 0; border-right: 1px solid var(--panel-line); list-style: none; }
.day-list li { position: relative; display: grid; grid-template-columns: 62px 66px 1fr; align-items: baseline; gap: 12px; padding: 10px 28px; font-size: 13.5px; }
.day-no { color: var(--ink-faint); font-weight: 600; font-size: 11.5px; letter-spacing: .04em; text-transform: uppercase; font-variant-numeric: tabular-nums; }
.day-place { color: var(--ink); font-weight: 600; }
.day-note { color: var(--ink-faint); font-size: 12.5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.day-list li.is-active { background: var(--panel-active); }
.day-list li.is-active::before { content: ""; position: absolute; left: 0; top: 8px; bottom: 8px; width: 2px; background: var(--accent); }
.day-list li.is-active .day-note { color: var(--muted); }
.day-detail { padding: clamp(22px,3vw,32px); }
.day-detail h3 { color: var(--ink); font-size: 1.4rem; letter-spacing: -.02em; margin-top: 4px; }
.time-list { margin-top: 20px; list-style: none; }
.time-list li { display: flex; gap: 16px; padding-block: 12px; border-top: 1px solid var(--panel-line); font-size: 14px; color: var(--muted); }
.time-list .t { flex: none; width: 46px; color: var(--ink); font-weight: 600; font-variant-numeric: tabular-nums; }
.panel-chip { display: inline-flex; align-items: center; gap: 9px; margin-top: 22px; padding: 8px 14px; border-radius: 999px; background: var(--panel-chip-bg); border: 1px solid var(--panel-chip-line); font-size: 12.5px; font-weight: 600; color: var(--ink); }
.progress { margin-top: 26px; max-width: 380px; }
.progress-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 10px; }
.progress-val { font-size: 13px; font-weight: 700; color: var(--ink); font-variant-numeric: tabular-nums; }
.progress-bar { height: 3px; border-radius: 2px; background: var(--panel-track); }
.progress-bar span { display: block; height: 100%; border-radius: 2px; background: var(--accent); box-shadow: 0 0 8px var(--glow-a); }
@media (max-width: 720px) { .panel-body { grid-template-columns: 1fr; } .day-list { border-right: 0; border-bottom: 1px solid var(--panel-line); } }

/* ============================================================
   FLAT CANVAS, one continuous light background
   Homepage flattens everything; inner pages (plans/photos/bespoke)
   keep their dark hero top and flatten only the body below it.
   (no beige/dark bands, no angled cuts; the footer stays the one dark band)
   ============================================================ */
.flat-bg .angled,
.flat-bg .angled-dark { clip-path: none; margin-top: 0; padding-top: clamp(64px,8vw,116px); }
.flat-bg .compare { background: transparent; }
.flat-bg .bespoke.angled { background: transparent; }
.flat-bg .proof.angled-dark { background: transparent; color: var(--ink); }
.flat-bg .proof.angled-dark h2 { color: var(--ink); }
.flat-bg .proof .eyebrow-light { color: var(--accent-deep); }
.flat-bg .proof.angled-dark .stat b { color: var(--ink); }
.flat-bg .proof.angled-dark .stat { border-top-color: var(--ink); }
.flat-bg .proof.angled-dark .stat:nth-child(odd) { border-top-color: var(--accent); }
.flat-bg .proof.angled-dark .stat > span:last-child { color: var(--muted); }
.flat-bg .proof.angled-dark figcaption { color: var(--muted); }
.flat-bg .proof.angled-dark figcaption b { color: var(--ink); }
.flat-bg .proof.angled-dark .browse-note { color: var(--muted); }
.flat-bg .bespoke.angled h2 { color: var(--ink); }
.flat-bg .final.angled-dark {
  background: radial-gradient(720px 440px at 50% 110%, rgba(0,128,131,.09), transparent 70%);
  color: var(--ink);
}
.flat-bg .final h2 { color: var(--ink); }
.flat-bg .final .lede-light { color: var(--muted); }
.flat-bg .final-bg span { -webkit-text-stroke-color: rgba(23,22,20,.07); }
.flat-bg .final-tertiary { color: var(--muted); }
.flat-bg .final-tertiary a { color: var(--accent-deep); border-bottom-color: rgba(0,128,131,.4); }
.flat-bg .trust-strip { color: var(--muted); }
.flat-bg .trust-strip span::before { color: var(--accent); }
/* The final CTA band is flattened to light on flat-bg pages, so its "light"
   ghost (white outline, built for dark) would be near-invisible. Retheme
   only that one to the teal ghost. The dark .page-hero keeps its white
   ghost-light untouched, so hero outline buttons stay white on the dark. */
.flat-bg .final .btn-ghost-light { border-color: var(--accent); color: var(--accent-deep); }
.flat-bg .final .btn-ghost-light:hover { border-color: var(--accent-deep); background: rgba(0,128,131,.07); }

/* ---- inner pages only: flatten the beige "features" + dark "how" bands ----
   (these classes live only on plans.html; the homepage uses .instrument/.how-sec) */
.flat-bg .features { background: transparent; }

.flat-bg .how { background: transparent; color: var(--ink); }
.flat-bg .how h2 { color: var(--ink); }
.flat-bg .how .eyebrow { color: var(--accent-deep); }
.flat-bg .how .step {
  background: var(--card);
  border-color: var(--line);
  box-shadow: var(--shadow-card);
}
.flat-bg .how .step:hover { border-color: rgba(0,128,131,.5); }
.flat-bg .how .step h3 { color: var(--ink); }
.flat-bg .how .step p { color: var(--muted); }
.flat-bg .how-note { color: var(--ink-2); }
.flat-bg .how-note b { color: var(--accent-deep); }
.flat-bg .how-cta { color: var(--muted); }
.flat-bg .how-cta a { color: var(--accent-deep); }

/* ============================================================
   REVEAL / MOTION
   ============================================================ */
/* Content is visible by default; the hidden→in choreography is gated on the `js`
   class (set before paint) so no-JS, JS-error, and crawler/headless renders never
   ship a blank section. */
.js .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1);
}
.js .reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .42s; }
.d5 { transition-delay: .55s; }

@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .float-a, .float-b, .marquee-track { animation: none; }
  .btn, .plan-item, .step, .tier, .story, .quote { transition: none; }
  .pi-scene::after { transition: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1060px) {
  .hero-inner { grid-template-columns: 1fr; gap: 56px; }
  .hero { padding-top: 130px; }
  .hero-visual { min-height: 0; max-width: 440px; margin-inline: auto; }
  .hv-scene { position: relative; inset: auto; height: clamp(220px, 44vw, 300px); transform: rotate(0deg); border-radius: 20px; margin-bottom: 16px; }
  .opt-card { position: relative; inset: auto; width: 100%; min-height: 0; transform: rotate(0deg); margin-bottom: 14px; }
  .opt-b { margin-bottom: 0; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps .step:nth-child(2), .steps .step:nth-child(3), .steps .step:nth-child(4) { translate: 0 0; }
  .how-note { margin-top: 60px; }
  .bespoke-inner, .features-inner { grid-template-columns: 1fr; gap: 60px; }
  .plan-grid { grid-template-columns: repeat(2, 1fr); padding-bottom: 0; }
  .plan-grid .plan-item:nth-child(3n+2) { transform: none; }
  .plan-grid .plan-item:nth-child(3n+2):hover { transform: translateY(-8px) !important; }
  .stat-row { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .mobile-menu:not([hidden]) { display: flex; flex-direction: column; gap: 2px; }
  .compare-grid, .story-grid, .quote-grid, .plan-grid { grid-template-columns: 1fr; }
  .cmp-us { transform: none; }
  .story:nth-child(2), .quote:nth-child(even) { transform: none; }
  .steps { grid-template-columns: 1fr; }
  .hero-visual { padding: 4px 0 0; }
  .section-head { margin-bottom: 40px; }
  :root { --angle: 7vw; }
}
