/* ==========================================================================
   Voyage East — Shared site system
   Global components: nav, footer, buttons, section headers, cards, forms,
   accordion. Built on colors_and_type.css tokens. "Celadon & Ink".
   ========================================================================== */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg1);
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
:root {
  --section-y: clamp(72px, 8vw, 124px);
  --section-y-tight: clamp(44px, 5.5vw, 80px);
  --nav-y: 24px;
  --nav-y-mobile: 16px;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
::selection { background: var(--ve-celadon); color: var(--ve-teal-deep); }

/* ---------------------------------------------------------------- Layout */
.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 clamp(24px, 5vw, 72px); }
.container--narrow { width: 100%; max-width: 820px; margin: 0 auto; padding: 0 clamp(24px, 5vw, 72px); }
.container--wide { width: 100%; max-width: 1480px; margin: 0 auto; padding: 0 clamp(24px, 5vw, 72px); }

.section { padding: var(--section-y) 0; position: relative; }
.section--tight { padding: var(--section-y-tight) 0; position: relative; }
.section--after-hero-tight { padding-top: clamp(26px, 4vw, 54px); }
.section--celadon { background: var(--ve-celadon-wash); }
.section--ink { background: var(--ve-teal); color: var(--ve-paper); }

/* ---------------------------------------------------------------- Eyebrow */
.eyebrow {
  font-size: var(--fs-eyebrow); font-weight: 500;
  text-transform: uppercase; letter-spacing: var(--tracking-eyebrow);
  color: var(--fg3);
  display: inline-flex; align-items: center; gap: 12px;
}
.eyebrow::before {
  content: ''; width: 24px; height: 1px; background: var(--signature-deep);
  display: inline-block;
}
.eyebrow--plain::before { display: none; }
.eyebrow--light { color: rgba(244,239,230,0.74); }
.eyebrow--light::before { background: var(--ve-celadon); }

/* ---------------------------------------------------------------- Index numeral */
.index-num {
  font-family: var(--font-serif); font-weight: 300; font-style: italic;
  color: var(--signature); line-height: 1;
}

/* ---------------------------------------------------------------- Vertical CN label */
.v-label {
  writing-mode: vertical-rl;
  font-family: var(--font-serif-cn); font-weight: 400;
  letter-spacing: 0.35em; color: var(--fg3); user-select: none;
}

/* ---------------------------------------------------------------- Seal (cinnabar chop) */
.seal {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent); color: var(--ve-paper);
  font-family: var(--font-serif-cn); font-weight: 500;
  border-radius: 2px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.14);
  line-height: 1.05; text-align: center;
}
.seal-dot {
  width: 9px; height: 9px; border-radius: 1.5px;
  background: var(--accent); display: inline-block; flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.18);
}

/* ---------------------------------------------------------------- Dividers */
.ink-divider {
  width: 56px; height: 1px;
  background: linear-gradient(90deg, var(--signature), transparent);
}
.hr-rule { border: 0; border-top: 1px solid var(--rule); }

/* ---------------------------------------------------------------- Buttons */
.btn-primary {
  font-family: var(--font-sans); font-size: 12px; font-weight: 500;
  letter-spacing: 0.09em; text-transform: uppercase;
  background: var(--accent); color: var(--ve-paper);
  padding: 17px 34px; border-radius: var(--radius-1);
  display: inline-flex; align-items: center; gap: 11px;
  transition: background var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.btn-primary:hover { background: var(--accent-deep); }
.btn-primary:active { transform: translateY(1px); }

.btn-secondary {
  font-family: var(--font-sans); font-size: 12px; font-weight: 500;
  letter-spacing: 0.09em; text-transform: uppercase;
  background: transparent; color: var(--ve-teal);
  padding: 16px 32px; border-radius: var(--radius-1);
  border: 1px solid var(--ve-teal);
  display: inline-flex; align-items: center; gap: 11px;
  transition: background var(--dur-base) var(--ease-out), color var(--dur-base) var(--ease-out);
}
.btn-secondary:hover { background: var(--ve-teal); color: var(--ve-paper); }
.btn-secondary--light { color: var(--ve-paper); border-color: rgba(244,239,230,0.5); }
.btn-secondary--light:hover { background: var(--ve-paper); color: var(--ve-teal); border-color: var(--ve-paper); }

.btn-ghost {
  font-family: var(--font-sans); font-size: 12px; font-weight: 500;
  letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--fg1); padding: 9px 0;
  border-bottom: 1px solid currentColor;
  display: inline-flex; align-items: center; gap: 11px;
  transition: color var(--dur-fast) var(--ease-out);
}
.btn-ghost:hover { color: var(--signature-deep); }
.btn-ghost .arrow {
  font-family: var(--font-serif); font-style: italic; font-size: 17px;
  text-transform: none; letter-spacing: 0;
  transition: transform var(--dur-base) var(--ease-out);
}
.btn-ghost:hover .arrow { transform: translateX(5px); }
.btn-ghost--light { color: var(--ve-paper); }
.btn-ghost--light:hover { color: var(--ve-celadon); }

/* Inline waitlist forms */
.waitlist-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: 14px;
  align-items: end;
}
.waitlist-form .field input,
.waitlist-form .field select {
  background: rgba(255,255,255,0.68);
}
.waitlist-form .btn-primary {
  min-height: 52px;
  white-space: nowrap;
}
.waitlist-note {
  margin-top: 16px;
  font-size: var(--fs-small);
  line-height: 1.6;
  color: var(--fg3);
}
.waitlist-note.is-success {
  color: var(--signature-deep);
}

/* ================================================================ NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  min-height: 82px;
  padding: var(--nav-y) clamp(24px, 5vw, 56px);
  transition: background var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out),
              padding var(--dur-base) var(--ease-out),
              color var(--dur-base) var(--ease-out);
  border-bottom: 1px solid transparent;
}
/* Default (interior pages): solid paper nav */
.nav { background: rgba(244,239,230,0.92); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
       border-bottom-color: rgba(210,201,182,0.5); color: var(--fg1); }
/* Over-hero pages start transparent/light */
body.has-hero .nav { background: transparent; backdrop-filter: none; -webkit-backdrop-filter: none;
       border-bottom-color: transparent; color: var(--ve-paper); }
body.has-hero .nav.scrolled {
  background: rgba(244,239,230,0.92); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-bottom-color: rgba(210,201,182,0.5); color: var(--fg1);
  padding-top: 18px; padding-bottom: 18px;
}
.nav.scrolled { padding-top: 18px; padding-bottom: 18px; }

.nav-wordmark {
  font-family: var(--font-serif); font-weight: 300;
  font-size: 26px; line-height: 1; letter-spacing: -0.02em;
  color: inherit; display: inline-flex; align-items: baseline; white-space: nowrap;
}
.nav-wordmark .seal-dot { margin-left: 8px; margin-bottom: 2px; }
.nav-links { display: flex; gap: 38px; align-items: center; }
.nav-links a {
  font-size: 12px; font-weight: 500;
  text-transform: uppercase; letter-spacing: var(--tracking-eyebrow);
  color: inherit; opacity: 0.82; position: relative;
  transition: opacity var(--dur-fast) var(--ease-out);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -5px; left: 0; right: 0;
  height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: right;
  transition: transform var(--dur-base) var(--ease-out);
}
.nav-links a:hover { opacity: 1; }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-links a.is-active { opacity: 1; color: var(--accent); }
.nav-links a.is-active::after { background: var(--accent); transform: scaleX(1); }
.nav-links a.cta-link { opacity: 1; color: var(--accent); }
.nav-links a.cta-link::after { background: var(--accent); }

.nav-menu-btn { display: none; flex-direction: column; gap: 5px; padding: 8px 0; z-index: 120; }
.nav-menu-btn span { display: block; width: 26px; height: 1px; background: currentColor; transition: transform var(--dur-base) var(--ease-out), opacity var(--dur-fast); }

/* Mobile drawer */
.nav-drawer {
  position: fixed; inset: 0; z-index: 110;
  background: var(--ve-teal); color: var(--ve-paper);
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(40px, 10vw, 80px);
  transform: translateY(-100%);
  transition: transform var(--dur-slow) var(--ease-out);
  visibility: hidden;
}
.nav-drawer.open { transform: translateY(0); visibility: visible; }
.nav-drawer a {
  font-family: var(--font-serif); font-weight: 300;
  font-size: clamp(30px, 7vw, 46px); line-height: 1.5;
  color: var(--ve-paper); opacity: 0.9;
}
.nav-drawer a.cta-link { color: var(--ve-celadon); }
.nav-drawer-close {
  position: absolute; top: 26px; right: clamp(24px,5vw,56px);
  font-size: 30px; color: var(--ve-paper); line-height: 1;
}
.nav-drawer-foot {
  margin-top: clamp(32px,6vw,56px); display: flex; gap: 24px; flex-wrap: wrap;
  font-size: 11px; text-transform: uppercase; letter-spacing: var(--tracking-eyebrow);
}
.nav-drawer-foot a { font-family: var(--font-sans); font-size: 11px; opacity: 0.66; }
body.menu-open { overflow: hidden; }

/* ================================================================ PAGE HERO (editorial, lighter) */
.page-hero {
  position: relative; padding: clamp(150px, 20vh, 230px) 0 clamp(60px, 8vw, 96px);
  overflow: hidden;
}
.page-hero--paper { background: var(--bg); }
.page-hero--celadon { background: var(--ve-celadon-wash); }
.page-hero-inner { position: relative; z-index: 2; max-width: 940px; }
.page-hero .eyebrow { margin-bottom: 24px; }
.page-hero-title {
  font-family: var(--font-serif); font-weight: 300;
  font-size: clamp(40px, 5.6vw, 80px); line-height: 1.06;
  letter-spacing: -0.025em; color: var(--fg1);
  max-width: 17ch; text-wrap: balance; margin-bottom: 28px;
}
.page-hero-title em { font-style: italic; font-weight: 400; }
.page-hero-sub {
  font-size: clamp(16px, 1.4vw, 20px); line-height: 1.62;
  color: var(--fg2); max-width: 56ch; text-wrap: pretty; margin-bottom: 38px;
}
.page-hero-cta { display: flex; gap: 26px; align-items: center; flex-wrap: wrap; }
.page-hero-vlabel {
  position: absolute; z-index: 1; top: clamp(140px,16vh,200px); right: clamp(28px,4vw,64px);
  writing-mode: vertical-rl; font-family: var(--font-serif-cn); font-weight: 300;
  font-size: clamp(26px, 3vw, 44px); letter-spacing: 0.3em; color: var(--ve-celadon);
  opacity: 0.6; display: flex; align-items: center; gap: 18px;
}
.page-hero-vlabel .v-seal {
  width: clamp(30px,3vw,38px); height: clamp(30px,3vw,38px);
  font-size: clamp(15px,1.5vw,18px); letter-spacing: 0; writing-mode: horizontal-tb;
}

/* Full-bleed image hero */
.media-hero {
  position: relative; min-height: clamp(680px, 92vh, 940px);
  overflow: hidden; display: flex; align-items: flex-end; isolation: isolate;
}
.media-hero-bg { position: absolute; inset: 0; z-index: 0; }
.media-hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.84) contrast(1.03); transform: scale(1.05); will-change: transform;
}
.media-hero-scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(18,28,26,0.48) 0%, rgba(18,28,26,0.06) 28%, rgba(18,28,26,0.24) 68%, rgba(18,28,26,0.7) 100%),
    linear-gradient(86deg, rgba(18,28,26,0.58) 0%, rgba(18,28,26,0.22) 44%, rgba(18,28,26,0.08) 74%);
}
.media-hero-frame {
  position: absolute; inset: clamp(16px,1.8vw,28px); z-index: 3;
  border: 1px solid rgba(244,239,230,0.42); pointer-events: none;
}
.media-hero-vlabel {
  position: absolute; z-index: 3; top: clamp(120px,15vh,170px); right: clamp(34px,4.2vw,66px);
  writing-mode: vertical-rl; font-family: var(--font-serif-cn); font-weight: 300;
  font-size: clamp(28px,3.4vw,46px); letter-spacing: 0.32em;
  color: rgba(244,239,230,0.86); text-shadow: 0 2px 24px rgba(18,28,26,0.5);
  display: flex; align-items: center; gap: 20px;
}
.media-hero-vlabel .v-seal {
  width: clamp(30px,3vw,38px); height: clamp(30px,3vw,38px);
  font-size: clamp(15px,1.5vw,18px); letter-spacing: 0; writing-mode: horizontal-tb;
}
.media-hero-content {
  position: relative; z-index: 3; width: 100%;
  padding: 0 clamp(34px,6vw,96px) clamp(42px,6vh,76px);
  display: block;
}
.media-hero-copy { max-width: 840px; }
.media-hero-content .eyebrow { color: rgba(244,239,230,0.8); margin-bottom: 24px; }
.media-hero-content .eyebrow::before { background: rgba(244,239,230,0.6); }
.media-hero-headline {
  font-family: var(--font-serif); font-weight: 300;
  font-size: clamp(48px, 7vw, 102px); line-height: 1.02; letter-spacing: -0.028em;
  color: var(--ve-paper); text-shadow: 0 2px 40px rgba(18,28,26,0.4);
  max-width: 12ch; text-wrap: balance; margin-bottom: 30px;
}
.media-hero-headline em { font-style: italic; font-weight: 400; }
.media-hero-sub {
  font-size: clamp(16px,1.4vw,19px); line-height: 1.64;
  color: rgba(244,239,230,0.92); max-width: 560px; margin-bottom: 28px; text-wrap: pretty;
}
.media-hero-cta { display: flex; gap: 28px; align-items: center; flex-wrap: wrap; }

/* ================================================================ SECTION HEADER */
.sec-head { margin-bottom: clamp(44px, 5.5vw, 76px); max-width: 680px; }
.sec-head .eyebrow { margin-bottom: 20px; }
.sec-head-title {
  font-family: var(--font-serif); font-weight: 300;
  font-size: clamp(30px, 3.8vw, 50px); line-height: 1.1;
  letter-spacing: -0.02em; color: var(--fg1); text-wrap: balance;
}
.sec-head-title em { font-style: italic; font-weight: 400; }
.sec-head-intro {
  font-size: var(--fs-body-lg); line-height: var(--lh-loose);
  color: var(--fg2); margin-top: 22px; max-width: 60ch; text-wrap: pretty;
}
.sec-head--split {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 32px; max-width: none; padding-bottom: 24px; border-bottom: 1px solid var(--rule);
}
.sec-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head--center .eyebrow { justify-content: center; }

/* ================================================================ CATEGORY CHIPS (celadon) */
.chip {
  font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--ve-teal-deep); background: var(--ve-celadon);
  padding: 6px 13px; border-radius: var(--radius-pill); display: inline-flex; align-items: center;
}
.chip--soft { background: var(--ve-celadon-wash); color: var(--signature-deep); }
.chip--outline {
  background: transparent; color: var(--signature-deep);
  border: 1px solid var(--signature); cursor: pointer;
  transition: background var(--dur-fast) var(--ease-out), color var(--dur-fast);
}
.chip--outline:hover, .chip--outline.is-on { background: var(--ve-celadon); color: var(--ve-teal-deep); border-color: var(--ve-celadon); }
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; }

/* ================================================================ EXPERIENCE CARD */
.exp-card { display: flex; flex-direction: column; }
.exp-card-image {
  width: 100%; aspect-ratio: 4/5; overflow: hidden; position: relative;
  margin-bottom: 18px; background: var(--surface);
}
.exp-card-image img {
  width: 100%; height: 100%; object-fit: cover; filter: saturate(0.84);
  transition: transform 1s var(--ease-out);
}
.exp-card:hover .exp-card-image img { transform: scale(1.05); }
.exp-card-chip { position: absolute; top: 14px; left: 14px; z-index: 2; }
.exp-card-meta {
  display: flex; align-items: center; gap: 10px; margin-bottom: 9px;
  font-size: 11px; text-transform: uppercase; letter-spacing: var(--tracking-eyebrow);
  color: var(--signature-deep);
}
.exp-card-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--ve-flax); }
.exp-card-meta .price { color: var(--fg3); margin-left: auto; }
.exp-card-title {
  font-family: var(--font-serif); font-weight: 400; font-size: 23px;
  line-height: 1.2; color: var(--fg1); margin-bottom: 9px;
}
.exp-card-desc { font-size: var(--fs-small); line-height: 1.58; color: var(--fg2); text-wrap: pretty; }
.exp-card-foot { margin-top: 16px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.exp-card-image--placeholder {
  background:
    radial-gradient(58% 50% at 32% 38%, rgba(132,165,149,0.34), transparent 72%),
    radial-gradient(70% 60% at 80% 88%, rgba(40,72,69,0.2), transparent 65%),
    linear-gradient(150deg, var(--ve-celadon-wash) 0%, var(--ve-paper-warm) 100%);
  display: flex; align-items: flex-end; padding: 16px;
}
.placeholder-tag {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.04em;
  color: var(--signature-deep); text-transform: uppercase;
}

/* ================================================================ FOOTER (ink-teal anchor) */
.footer { background: var(--ve-teal); color: var(--ve-paper); padding: clamp(64px,7vw,104px) 0 40px; position: relative; }
.footer-top {
  display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.2fr; gap: 44px;
  padding-bottom: 52px; border-bottom: 1px solid rgba(244,239,230,0.16);
}
.footer-brand .footer-wordmark {
  font-family: var(--font-serif); font-weight: 300; font-size: 32px;
  color: var(--ve-paper); letter-spacing: -0.02em;
  display: inline-flex; align-items: baseline; margin-bottom: 20px;
}
.footer-wordmark .seal-dot { margin-left: 7px; margin-bottom: 3px; }
.footer-brand p { font-size: var(--fs-small); line-height: 1.7; color: rgba(244,239,230,0.66); max-width: 36ch; }
.footer-col h4 {
  font-size: 11px; font-weight: 500; text-transform: uppercase;
  letter-spacing: var(--tracking-eyebrow); color: var(--ve-celadon); margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a,
.footer-muted {
  font-size: var(--fs-small); color: rgba(244,239,230,0.78);
  transition: color var(--dur-fast) var(--ease-out); position: relative;
}
.footer-muted { display: inline-block; color: rgba(244,239,230,0.52); }
.footer-col a:hover { color: var(--ve-paper); }
.footer-email { word-break: break-word; }
.footer-socials { display: flex; gap: 10px; align-items: center; padding-top: 2px; }
.footer-social-icon {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(244,239,230,0.32);
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(244,239,230,0.82);
  transition: border-color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out), opacity var(--dur-fast) var(--ease-out);
}
.footer-social-icon img {
  width: 16px;
  height: 16px;
  display: block;
  object-fit: contain;
  filter: invert(96%) sepia(10%) saturate(305%) hue-rotate(345deg) brightness(98%) contrast(92%);
  opacity: 0.76;
}
.footer-social-glyph {
  width: 16px;
  height: 16px;
  display: block;
  position: relative;
  opacity: 0.76;
  transition: opacity var(--dur-fast) var(--ease-out);
}
.footer-social-glyph--instagram {
  border: 1.8px solid currentColor;
  border-radius: 5px;
}
.footer-social-glyph--instagram::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  border: 1.8px solid currentColor;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.footer-social-glyph--instagram::after {
  content: "";
  position: absolute;
  width: 2.5px;
  height: 2.5px;
  border-radius: 50%;
  background: currentColor;
  top: 3px;
  right: 3px;
}
.footer-social-icon:hover {
  border-color: var(--ve-paper);
  background: rgba(244,239,230,0.12);
  color: var(--ve-paper);
  transform: translateY(-1px);
}
.footer-social-icon:hover img,
.footer-social-icon:hover .footer-social-glyph { opacity: 1; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px; flex-wrap: wrap; gap: 12px;
}
.footer-meta {
  font-size: var(--fs-caption); color: rgba(244,239,230,0.5);
  letter-spacing: var(--tracking-wide); text-transform: uppercase;
}
.footer-meta a { color: rgba(244,239,230,0.6); }
.footer-meta a:hover { color: var(--ve-paper); }

/* ================================================================ FINAL CTA (image bookend) */
.final-cta {
  position: relative; min-height: clamp(440px, 64vh, 600px);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; text-align: center;
}
.final-cta-bg { position: absolute; inset: 0; z-index: 0; }
.final-cta-bg img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.8) contrast(1.02); }
.final-cta-scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(18,28,26,0.56), rgba(18,28,26,0.4) 50%, rgba(18,28,26,0.62));
}
.final-cta-frame {
  position: absolute; inset: clamp(16px,1.8vw,28px); z-index: 2;
  border: 1px solid rgba(244,239,230,0.38); pointer-events: none;
}
.final-cta-inner { position: relative; z-index: 3; padding: clamp(64px,9vw,120px) clamp(24px,5vw,48px); max-width: 780px; }
.final-cta-seal { width: 56px; height: 56px; margin: 0 auto 28px; font-size: 16px; writing-mode: vertical-rl; letter-spacing: 0; }
.final-cta-title {
  font-family: var(--font-serif); font-weight: 300;
  font-size: clamp(34px, 5.2vw, 72px); line-height: 1.05; letter-spacing: -0.025em;
  color: var(--ve-paper); text-shadow: 0 2px 40px rgba(18,28,26,0.4);
  margin-bottom: 22px; text-wrap: balance;
}
.final-cta-title em { font-style: italic; font-weight: 400; }
.final-cta-sub {
  font-size: clamp(16px,1.3vw,18px); line-height: 1.64;
  color: rgba(244,239,230,0.9); max-width: 500px; margin: 0 auto 38px; text-wrap: pretty;
}

/* Solid ink CTA (no image) */
.cta-band { background: var(--ve-teal); color: var(--ve-paper); text-align: center; padding: clamp(72px,9vw,128px) 0; }
.cta-band .final-cta-title { text-shadow: none; }
.cta-band .final-cta-sub { color: rgba(244,239,230,0.82); }

/* ================================================================ REVEAL
   Entrance animates TRANSFORM ONLY — never opacity. Content is always
   opacity 1, so even if the animation never advances (some embeds/captures
   freeze CSS animations) the content stays fully visible. */
.reveal { opacity: 1; }
@media (prefers-reduced-motion: no-preference) {
  .reveal { animation: ve-rise 0.85s cubic-bezier(0.22,0.61,0.36,1) both; }
  .reveal-delay-1 { animation-delay: 0.10s; }
  .reveal-delay-2 { animation-delay: 0.20s; }
  .reveal-delay-3 { animation-delay: 0.30s; }
  .reveal-delay-4 { animation-delay: 0.40s; }
}
@keyframes ve-rise {
  from { transform: translateY(24px); }
  to   { transform: translateY(0); }
}

/* ================================================================ RESPONSIVE (shared) */
@media (max-width: 940px) {
  :root { --nav-y: var(--nav-y-mobile); }
  .nav { min-height: 68px; }
  .nav-links { display: none; }
  .nav-menu-btn { display: flex; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
  .sec-head--split { flex-direction: column; align-items: flex-start; gap: 18px; }
  .media-hero {
    min-height: auto;
    padding-top: 140px;
  }
  .media-hero-content {
    padding-bottom: 34px;
  }
  .waitlist-form { grid-template-columns: 1fr 1fr; }
  .waitlist-form .btn-primary { grid-column: 1 / -1; }
  .media-hero-headline { max-width: 11ch; }
}
@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .media-hero-vlabel, .page-hero-vlabel { display: none; }
  .media-hero-cta, .page-hero-cta { flex-direction: column; align-items: flex-start; gap: 18px; }
  .waitlist-form { grid-template-columns: 1fr; }
  .media-hero { padding-top: 118px; }
  .media-hero-content { padding-left: 24px; padding-right: 24px; }
  .media-hero-headline {
    font-size: clamp(46px, 14vw, 66px);
    max-width: 10ch;
  }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  .media-hero-content { transform: none; }
}
