/* ── Travel Hack 2.0 — day/night theme system ────── */
@font-face { font-family: 'Space Grotesk'; src: url('../assets/fonts/space-grotesk-var.woff2') format('woff2'); font-weight: 300 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'Instrument Serif'; src: url('../assets/fonts/instrument-serif.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Instrument Serif'; src: url('../assets/fonts/instrument-serif-italic.woff2') format('woff2'); font-weight: 400; font-style: italic; font-display: swap; }

/* Day (default): trust-first — warm light surfaces, navy text, amber only on CTAs */
:root,
:root[data-theme="day"] {
  --bg: #F7F4EC;
  --bg-2: #FFFFFF;
  --text: #13233D;
  --text-dim: rgba(19, 35, 61, 0.66);
  --line: rgba(19, 35, 61, 0.14);
  --teal: #1F6480;
  --amber: #FDAC47;        /* CTA surfaces */
  --amber-text: #A35706;   /* amber as text on light bg — passes AA 4.5:1 on #F7F4EC */
  --card: #FFFFFF;
  --card-hover: #FFFFFF;
  --card-shadow: 0 10px 34px rgba(19, 35, 61, 0.09);
  --cta-hover: #13233D;
  --cta-hover-text: #F7F4EC;
  --featured-tint: linear-gradient(160deg, rgba(253, 172, 71, 0.16), rgba(253, 172, 71, 0.04));
  --nav-scrolled: rgba(247, 244, 236, 0.82);
  --hero-em: #A8D8EA;
  --focus-ring: rgba(31, 100, 128, 0.28);
}

:root[data-theme="night"] {
  --bg: #0A0F1E;
  --bg-2: #101830;
  --text: #F4F1EA;
  --text-dim: rgba(244, 241, 234, 0.62);
  --line: rgba(244, 241, 234, 0.14);
  --teal: #4E91AD;
  --amber: #FDAC47;
  --amber-text: #FDAC47;
  --card: #0A0F1E;
  --card-hover: #15203d;
  --card-shadow: none;
  --cta-hover: #F4F1EA;
  --cta-hover-text: #0A0F1E;
  --featured-tint: linear-gradient(160deg, rgba(253, 172, 71, 0.1), rgba(253, 172, 71, 0.02));
  --nav-scrolled: rgba(10, 15, 30, 0.78);
  --hero-em: #4E91AD;
  --focus-ring: rgba(78, 145, 173, 0.35);
}

:root {
  --font-sans: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  --font-serif: 'Instrument Serif', Georgia, serif;
  --nav-h: 76px;
  --gutter: clamp(20px, 5vw, 72px);
  /* hero sits over a photo (day) or dark canvas (night): always light text */
  --hero-text: #F7F4EC;
  --hero-dim: rgba(247, 244, 236, 0.78);
  --hero-line: rgba(247, 244, 236, 0.28);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html.has-smoother { scroll-behavior: auto; }

/* ── Global focus-visible ring ───────────────────── */
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  transition: background 0.45s ease, color 0.45s ease;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
em { font-family: var(--font-serif); font-style: italic; font-weight: 400; }

::selection { background: var(--amber); color: #13233D; }

/* ── Preloader ───────────────────────────────────── */
.preloader {
  position: fixed; inset: 0; z-index: 100;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
}
.preloader-inner { text-align: center; }
.preloader-brand { display: block; font-size: clamp(13px, 2vw, 16px); letter-spacing: 0.35em; color: var(--text-dim); }
.preloader-brand sup { font-size: 0.5em; }
.preloader-count {
  display: block; font-family: var(--font-serif); font-style: italic;
  font-size: clamp(72px, 16vw, 160px); line-height: 1.1; color: var(--text);
}
.preloader-tag { font-size: 12px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--teal); }

/* ── Nav ─────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  height: var(--nav-h);
  display: flex; align-items: center; gap: clamp(16px, 2.4vw, 32px);
  padding: 0 var(--gutter);
  color: var(--hero-text); /* sits over the hero photo/canvas at top */
  background: linear-gradient(rgba(10, 15, 30, 0.55), rgba(10, 15, 30, 0));
  transition: background 0.4s ease, color 0.4s ease, backdrop-filter 0.4s ease;
}
.nav.is-scrolled {
  color: var(--text);
  background: var(--nav-scrolled);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-brand { font-weight: 600; letter-spacing: 0.22em; font-size: 14px; white-space: nowrap; }
.nav-brand sup { font-size: 0.55em; }
.nav-brand-v {
  margin-left: 8px; padding: 2px 7px; border-radius: 99px;
  font-size: 10px; letter-spacing: 0.1em;
  background: var(--amber); color: #13233D; font-weight: 700;
}
.nav-links { display: flex; gap: 28px; margin-left: auto; }
.nav-links a {
  font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase;
  opacity: 0.75; transition: opacity 0.25s ease;
}
.nav-links a:hover { opacity: 1; }
.nav-cta {
  padding: 11px 22px; border-radius: 99px;
  border: 1px solid currentColor;
  font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase;
  transition: background 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--cta-hover); color: var(--cta-hover-text); border-color: var(--cta-hover); }

/* Theme toggle */
.theme-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: none; border: 1px solid currentColor; color: inherit;
  cursor: pointer; flex: none;
  transition: transform 0.4s ease, background 0.3s ease;
}
.theme-toggle:hover { transform: rotate(25deg); }
.theme-toggle svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; }
.icon-sun { display: none; }
.icon-moon { display: block; }
:root[data-theme="night"] .icon-sun { display: block; }
:root[data-theme="night"] .icon-moon { display: none; }

/* Language toggle */
.lang-toggle { display: inline-flex; gap: 6px; align-items: center; font-size: 12px; letter-spacing: .14em; flex: none; }
.lang-current { font-weight: 700; }
.lang-sep { opacity: .5; }
.lang-link { opacity: .65; transition: opacity .25s; }
.lang-link:hover { opacity: 1; text-decoration: underline; }

.nav-burger { display: none; }

/* ── Mobile menu ─────────────────────────────────── */
.mobile-menu {
  position: fixed; inset: 0; z-index: 49;
  background: var(--bg-2);
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--gutter);
  transform: translateY(-100%);
  visibility: hidden;
  transition: transform 0.55s cubic-bezier(0.76, 0, 0.24, 1), visibility 0s 0.55s;
}
.mobile-menu.is-open { transform: translateY(0); visibility: visible; transition-delay: 0s; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 8px; }
.mobile-menu nav a {
  font-family: var(--font-serif); font-size: clamp(40px, 10vw, 64px);
  line-height: 1.15; border-bottom: 1px solid var(--line); padding: 10px 0;
}
.mobile-menu-cta { color: var(--amber-text); }
.mobile-menu-foot { margin-top: 40px; color: var(--text-dim); font-size: 13px; letter-spacing: 0.1em; }

/* ── Buttons ─────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 32px; border-radius: 99px;
  font-size: 14px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.btn-primary {
  background: var(--amber); color: #13233D;
  box-shadow: 0 8px 26px rgba(253, 172, 71, 0.35);
}
.btn-primary:hover { background: var(--cta-hover); color: var(--cta-hover-text); }
.btn-ghost { border: 1px solid currentColor; }
.btn-arrow { transition: transform 0.3s ease; }
.btn:hover .btn-arrow { transform: translateX(6px); }
.btn-xl { padding: 22px 48px; font-size: 16px; }

/* ── Hero (light text over photo/canvas in both themes) ── */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: calc(var(--nav-h) + 24px) var(--gutter) 48px;
  overflow: hidden;
  color: var(--hero-text);
  background: #0F1B33; /* behind photo/canvas while loading */
}
.hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-photo { position: absolute; inset: 0; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 0% 30%; }
:root[data-theme="day"] .hero-canvas { display: none; }
:root[data-theme="night"] .hero-photo { display: none; }

.hero-vignette { position: absolute; inset: 0; pointer-events: none; }
:root[data-theme="night"] .hero-vignette {
  background:
    radial-gradient(ellipse 90% 70% at 70% 40%, rgba(10, 15, 30, 0) 35%, rgba(10, 15, 30, 0.85) 100%),
    linear-gradient(rgba(10, 15, 30, 0.35), rgba(10, 15, 30, 0.1) 40%, rgba(10, 15, 30, 0.9));
}
:root[data-theme="day"] .hero-vignette {
  background:
    linear-gradient(98deg, rgba(12, 22, 42, 0.85) 8%, rgba(12, 22, 42, 0.52) 46%, rgba(12, 22, 42, 0.06) 80%),
    linear-gradient(rgba(12, 22, 42, 0.32), rgba(12, 22, 42, 0) 32%, rgba(12, 22, 42, 0.66) 96%);
}

.hero-content { position: relative; z-index: 2; max-width: 980px; }
.hero-eyebrow {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; letter-spacing: 0.28em; text-transform: uppercase; color: #9FD0E4;
  margin-bottom: 28px;
}
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--amber);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(253, 172, 71, 0.55); } 50% { box-shadow: 0 0 0 9px rgba(253, 172, 71, 0); } }

.hero-title {
  font-weight: 500;
  font-size: clamp(44px, 8.4vw, 118px);
  line-height: 1.02;
  letter-spacing: -0.02em;
}
.hero-line { display: block; overflow: hidden; padding-bottom: 0.14em; margin-bottom: -0.14em; }
.hero-line > .line-inner { display: block; }
.hero-line em { color: var(--hero-em); }
.hero-line-accent em, .hero-line-accent { color: var(--amber); font-family: var(--font-serif); font-style: italic; font-weight: 400; }
.hero-sub { max-width: 520px; margin-top: 28px; color: var(--hero-dim); font-size: clamp(15px, 1.4vw, 18px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 40px; }
.hero-risk {
  margin-top: 22px; font-size: 13.5px; letter-spacing: 0.04em; color: var(--hero-dim);
}
.hero-risk strong { color: var(--hero-text); font-weight: 500; }
.hero-urgency {
  margin-top: 8px; font-size: 13.5px; letter-spacing: 0.04em; color: var(--hero-dim);
}

.hero-stats {
  position: relative; z-index: 2;
  display: flex; gap: clamp(24px, 6vw, 80px);
  margin-top: clamp(40px, 7vh, 80px);
  padding-top: 28px;
  border-top: 1px solid var(--hero-line);
}
.hero-stat { display: flex; flex-direction: row; align-items: baseline; flex-wrap: wrap; column-gap: 2px; }
.hero-stat-num, .hero-stat-unit { font-family: var(--font-serif); font-size: clamp(30px, 4vw, 52px); line-height: 1.1; }
.hero-stat-num { color: var(--hero-text); }
.hero-stat-unit { color: var(--amber); }
.hero-stat-label { width: 100%; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--hero-dim); margin-top: 6px; }

.hero-scroll-cue {
  position: absolute; bottom: 22px; right: var(--gutter); z-index: 2;
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--hero-dim);
}
.hero-scroll-cue span {
  width: 44px; height: 1px; background: var(--hero-dim);
  transform-origin: left; animation: cue 2s ease-in-out infinite;
}
@keyframes cue { 0% { transform: scaleX(0); } 50% { transform: scaleX(1); } 100% { transform: scaleX(0); transform-origin: right; } }

/* ── Marquee ─────────────────────────────────────── */
.marquee {
  overflow: hidden; white-space: nowrap;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 18px 0;
  background: var(--bg-2);
}
.marquee-track { display: inline-flex; will-change: transform; }
.marquee-track span {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(22px, 3.4vw, 40px); color: var(--text-dim);
}

/* ── Sections shared ─────────────────────────────── */
section { padding: clamp(90px, 14vh, 160px) var(--gutter); }
.section-head { margin-bottom: clamp(48px, 8vh, 88px); }
.section-eyebrow {
  font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 18px;
}
.section-title {
  font-weight: 500; font-size: clamp(36px, 6vw, 84px);
  line-height: 1.04; letter-spacing: -0.02em;
}
.section-title em { color: var(--amber-text); }
.section-sub { margin-top: 20px; color: var(--text-dim); max-width: 480px; }

/* ── Manifesto ───────────────────────────────────── */
.manifesto { padding-top: clamp(110px, 18vh, 200px); padding-bottom: clamp(110px, 18vh, 200px); }
.manifesto-text {
  max-width: 1100px; margin: 0 auto;
  font-size: clamp(28px, 4.6vw, 64px); font-weight: 400;
  line-height: 1.22; letter-spacing: -0.01em;
}
.manifesto-text em { color: var(--amber-text); }
.manifesto-text .word { display: inline-block; opacity: 0.12; }
.manifesto-proof {
  font-size: 14px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-dim); margin-top: 28px;
  max-width: 1100px; margin-left: auto; margin-right: auto;
  text-align: center;
}

/* ── How it works ────────────────────────────────── */
.how { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.how-steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--line);
  border: 1px solid var(--line);
}
.how-step {
  background: var(--bg-2);
  padding: clamp(28px, 3.4vw, 48px);
  transition: background 0.4s ease;
}
:root[data-theme="night"] .how-step:hover { background: var(--card-hover); }
:root[data-theme="day"] .how-step:hover { background: var(--bg); }
.how-step-num {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(36px, 4vw, 56px); color: var(--teal);
  display: block; margin-bottom: 18px;
}
.how-step h3 { font-size: clamp(18px, 1.8vw, 23px); font-weight: 500; margin-bottom: 10px; }
.how-step p { color: var(--text-dim); font-size: 15px; }

/* ── Sample plan preview ─────────────────────────── */
.sample-cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.4vw, 28px);
}
.sample-card {
  border: 1px solid var(--line); border-radius: 20px;
  padding: clamp(24px, 2.6vw, 36px);
  background: var(--card);
  box-shadow: var(--card-shadow);
  display: flex; flex-direction: column; gap: 20px;
}
.sample-card-tag {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--teal);
}
.sample-snippet {
  display: flex; flex-direction: column; gap: 0;
  border: 1px solid var(--line); border-radius: 12px;
  overflow: hidden; background: var(--bg);
}
.sample-row {
  display: flex; justify-content: space-between; align-items: baseline; gap: 16px;
  padding: 12px 16px; font-size: 14px; color: var(--text-dim);
  border-bottom: 1px solid var(--line);
}
.sample-row:last-child { border-bottom: none; }
.sample-row strong {
  color: var(--text); font-weight: 600;
  font-family: var(--font-serif); font-style: italic; font-size: 17px;
}
.sample-row-saved { background: var(--amber); color: #13233D; }
.sample-row-saved span { color: #13233D; font-weight: 600; }
.sample-row-saved strong { color: #13233D; }
.sample-bullets { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.sample-bullets li {
  position: relative; padding-left: 22px;
  font-size: 14.5px; color: var(--text-dim); line-height: 1.5;
}
.sample-bullets li::before {
  content: '✦'; position: absolute; left: 0; top: 2px;
  color: var(--teal); font-size: 11px;
}
.sample-cta { margin-top: clamp(36px, 5vh, 56px); }

/* ── Destinations ────────────────────────────────── */
.dest { padding-left: 0; padding-right: 0; overflow: clip; }
.dest-pin { padding: 0 var(--gutter); }
.dest-head { margin-bottom: clamp(40px, 6vh, 72px); }
.dest-track { display: flex; gap: clamp(16px, 2.4vw, 32px); width: max-content; }
.dest-card {
  position: relative; flex: none;
  width: clamp(290px, 38vw, 560px);
  border-radius: 20px; overflow: hidden;
  box-shadow: var(--card-shadow);
}
.dest-card img {
  width: 100%; aspect-ratio: 4 / 2.9; object-fit: cover;
  transform: scale(1.08);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.dest-card:hover img { transform: scale(1.0); }
.dest-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(rgba(10, 15, 30, 0) 45%, rgba(10, 15, 30, 0.85));
  pointer-events: none;
}
.dest-card figcaption {
  position: absolute; left: 24px; right: 24px; bottom: 20px; z-index: 2;
  display: flex; flex-direction: column;
  color: #F7F4EC; /* always over the photo gradient */
}
.dest-name { font-family: var(--font-serif); font-size: clamp(28px, 3vw, 44px); line-height: 1.1; }
.dest-meta { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(247, 244, 236, 0.75); margin-top: 6px; }

/* ── Advisors ────────────────────────────────────── */
.advisors-grid {
  display: grid; grid-template-columns: 1fr 1.1fr 1fr;
  gap: clamp(20px, 3vw, 44px); align-items: center;
}
.advisor-card { position: relative; border-radius: 20px; overflow: hidden; box-shadow: var(--card-shadow); }
.advisor-card img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.advisor-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(rgba(10, 15, 30, 0) 55%, rgba(10, 15, 30, 0.88));
}
.advisor-meta { position: absolute; left: 22px; bottom: 18px; z-index: 2; color: #F7F4EC; }
.advisor-meta h3 { font-family: var(--font-serif); font-weight: 400; font-size: clamp(22px, 2.2vw, 30px); }
.advisor-meta p { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(247, 244, 236, 0.75); margin-top: 4px; }
.advisors-copy { display: flex; flex-direction: column; gap: 20px; padding: 0 clamp(0px, 1.6vw, 24px); }
.advisors-copy p { color: var(--text-dim); font-size: clamp(15px, 1.4vw, 18px); }
.advisors-copy .btn { align-self: flex-start; margin-top: 8px; }

/* ── Testimonials ────────────────────────────────── */
.voices { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
:root[data-theme="day"] .voices { background: var(--bg); }
.voices-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(18px, 2.4vw, 32px); }
.voice-card {
  border: 1px solid var(--line); border-radius: 20px;
  padding: clamp(26px, 2.8vw, 40px);
  display: flex; flex-direction: column; gap: 26px;
  background: var(--card);
  box-shadow: var(--card-shadow);
}
.voice-card blockquote {
  font-family: var(--font-serif); font-size: clamp(19px, 1.8vw, 24px);
  line-height: 1.4; flex: 1;
}
.voice-card figcaption { display: flex; gap: 14px; align-items: center; }
.voice-card figcaption img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.voice-card figcaption span { display: flex; flex-direction: column; font-size: 14px; }
.voice-card figcaption em { font-style: normal; font-family: var(--font-sans); color: var(--text-dim); font-size: 12px; letter-spacing: 0.06em; }

/* ── Pricing ─────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px, 1.8vw, 24px); }
.price-card {
  border: 1px solid var(--line); border-radius: 20px;
  padding: clamp(24px, 2.4vw, 36px);
  display: flex; flex-direction: column;
  background: var(--card);
  box-shadow: var(--card-shadow);
  transition: transform 0.4s ease, border-color 0.4s ease;
}
.price-card:hover { transform: translateY(-6px); border-color: var(--teal); }
.price-card-featured { border-color: var(--amber); background: var(--featured-tint), var(--card); }
.price-card header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 26px; }
.price-tier { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-dim); padding-top: 8px; }
.price-tier-badge { color: #13233D; background: var(--amber); padding: 5px 10px; border-radius: 99px; font-weight: 700; }
.price-tier-amber { color: var(--amber-text); }
.price-amount { font-family: var(--font-serif); font-size: clamp(34px, 3.2vw, 48px); line-height: 1; }
.price-amount small { font-size: 0.36em; font-family: var(--font-sans); color: var(--text-dim); letter-spacing: 0.08em; }
.price-card h3 { font-size: 19px; font-weight: 500; }
.price-for { font-size: 13px; color: var(--text-dim); margin: 6px 0 20px; }
.price-card ul { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: auto; }
.price-card li { font-size: 14px; color: var(--text-dim); padding-left: 20px; position: relative; }
.price-card li::before { content: '✦'; position: absolute; left: 0; color: var(--teal); font-size: 10px; top: 4px; }
.pricing-promise {
  margin-top: clamp(40px, 6vh, 64px); text-align: center;
  font-size: clamp(20px, 2.4vw, 30px);
}
.pricing-promise em { color: var(--amber-text); }
.price-cta {
  margin-top: 22px; justify-content: center;
  padding: 13px 20px; font-size: 12.5px;
}

/* ── Add-ons strip ───────────────────────────────── */
.addons-row {
  display: flex; flex-wrap: wrap; gap: 10px 22px;
  font-size: 13.5px; color: var(--text-dim);
  margin-top: clamp(28px, 4vh, 48px);
}
.addons-row strong { color: var(--text); }
.addons-title {
  text-transform: uppercase; letter-spacing: 0.2em;
  font-size: 11px; color: var(--teal); width: 100%;
}
.addons-note {
  font-size: 13.5px; color: var(--text-dim);
  margin-top: 10px; max-width: 640px;
}

/* ── FAQ ─────────────────────────────────────────── */
.faq { border-top: 1px solid var(--line); }
.faq-list { max-width: 860px; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0; font-size: clamp(17px, 1.6vw, 21px); font-weight: 500;
  list-style: none; gap: 20px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; }
.faq-a p {
  color: var(--text-dim); padding: 0 0 22px; max-width: 720px;
}
.faq-a a { color: var(--teal); text-decoration: underline; }
.faq-chevron {
  flex: none; color: var(--teal); font-size: 22px;
  transition: transform 0.3s ease; line-height: 1;
}
details[open] .faq-chevron { transform: rotate(45deg); }

/* ── CTA ─────────────────────────────────────────── */
.cta {
  min-height: 88svh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 40px;
}
.cta-title { font-weight: 500; font-size: clamp(56px, 12vw, 180px); line-height: 0.98; letter-spacing: -0.03em; }
.cta-line { display: block; overflow: hidden; padding-bottom: 0.14em; margin-bottom: -0.14em; }
.cta-line em { color: var(--amber-text); }
.cta-sub { color: var(--text-dim); font-size: 14px; letter-spacing: 0.1em; }

/* ── Footer ──────────────────────────────────────── */
.footer { padding: 48px var(--gutter); border-top: 1px solid var(--line); }
.footer-top { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.footer-brand { font-weight: 600; letter-spacing: 0.22em; font-size: 14px; }
.footer-brand sup { font-size: 0.55em; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { font-size: 13px; color: var(--text-dim); letter-spacing: 0.08em; transition: color 0.25s; }
.footer-links a:hover { color: var(--text); }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--line);
  color: var(--text-dim); font-size: 12.5px;
}
.footer-bottom a { text-decoration: underline; }
.footer-legal { margin-top: 14px; font-size: 11.5px; color: var(--text-dim); max-width: 720px; }
.footer-legal a { text-decoration: underline; }

/* ── Sticky mobile CTA ───────────────────────────── */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 48;
  display: none; align-items: center; justify-content: space-between; gap: 12px;
  padding: 10px var(--gutter) calc(10px + env(safe-area-inset-bottom));
  background: var(--nav-scrolled); backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  transform: translateY(110%); transition: transform .45s cubic-bezier(.22,1,.36,1);
}
.sticky-cta.is-visible { transform: none; }
.sticky-cta-note { font-size: 12px; letter-spacing: .08em; color: var(--text-dim); }
.sticky-cta .btn { padding: 12px 22px; font-size: 12.5px; }
@media (max-width: 680px) { .sticky-cta { display: flex; } }

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 960px) {
  .how-steps { grid-template-columns: repeat(2, 1fr); }
  .sample-cards { grid-template-columns: 1fr; }
  .voices-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .advisors-grid { grid-template-columns: 1fr 1fr; }
  .advisors-copy { grid-column: 1 / -1; order: 3; }
}

/* ── Destinations: dest-link + dest-go ───────────── */
.dest-link { display: block; }
.dest-go {
  font-size: 12px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--amber); margin-top: 10px;
  opacity: 0; transform: translateY(6px);
  transition: all .35s ease;
}
.dest-card:hover .dest-go { opacity: 1; transform: none; }
.dest-go-static { opacity: 1; transform: none; }
@media (hover: none) { .dest-go { opacity: 1; transform: none; } }

/* ── Marquee links ───────────────────────────────── */
.marquee-track a { color: inherit; }
.marquee-track a:hover { color: var(--amber-text); }

/* ── Advisors Fora link ──────────────────────────── */
.advisors-fora { font-size: 14px; }
.advisors-fora a { color: var(--teal); text-decoration: underline; }

/* ── Testimonials: verified card + extras ────────── */
.voice-card-verified { border-color: var(--teal); }
.voice-verified-badge {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--teal); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex: none;
}
.voice-card figcaption em a { color: var(--teal); text-decoration: underline; }
.voices-more {
  font-size: 14px; color: var(--text-dim);
  margin-top: 28px;
}
.voices-more a { color: var(--teal); text-decoration: underline; }
.voices-disclaimer {
  font-size: 12px; color: var(--text-dim);
  opacity: .8; margin-top: 12px;
}

@media (max-width: 680px) {
  .nav-links, .nav-cta { display: none; }
  .theme-toggle { margin-left: auto; }
  .mobile-menu .lang-toggle { margin-top: 28px; font-size: 16px; }
  .nav-burger {
    display: flex; flex-direction: column; gap: 7px;
    background: none; border: 0; padding: 10px; cursor: pointer; color: inherit;
  }
  .nav-burger span { width: 28px; height: 2px; background: currentColor; transition: transform 0.35s ease, opacity 0.35s ease; }
  .nav-burger[aria-expanded="true"] span:first-child { transform: translateY(4.5px) rotate(45deg); }
  .nav-burger[aria-expanded="true"] span:last-child { transform: translateY(-4.5px) rotate(-45deg); }

  .hero { padding-bottom: 72px; }
  .hero-photo img { object-position: 22% 30%; }
  :root[data-theme="day"] .hero-vignette {
    background:
      linear-gradient(rgba(12, 22, 42, 0.72), rgba(12, 22, 42, 0.42) 45%, rgba(12, 22, 42, 0.7) 96%);
  }
  .hero-stats { flex-wrap: wrap; gap: 20px 28px; }
  .hero-scroll-cue { display: none; }
  .how-steps { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .advisors-grid { grid-template-columns: 1fr; }
  .dest-track { width: auto; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 12px; -webkit-overflow-scrolling: touch; }
  .dest-card { scroll-snap-align: start; width: 82vw; }
}

/* ── Reduced motion ──────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .preloader { display: none; }
  .manifesto-text .word { opacity: 1; }
}

