/* =========================================================================
   Heartbeat Studio — landing page styles (light theme)
   Brand palette from heartbeat_moodboard_v2, adapted to a white page per
   Gonzalo's direction (2026-07-25). Accent colors used AS TEXT are the
   "-deep" variants below — the original brights fail WCAG contrast on
   white and are kept only for borders, fills, and decorative touches.
   Edit a token once under :root and the whole page updates.
   ========================================================================= */

:root {
  /* Brand palette (moodboard originals) */
  --midnight-ink:  #0a0a0f;
  --healing-teal:  #2ec4b6;
  --sacred-gold:   #d4a843;
  --gold-soft:     #e8c97a;
  --heartbeat-rose:#c2476a;
  --sorcerer-plum: #7b3f8c;   /* 7.2:1 on white — usable as text as-is */
  --pima-cream:    #f5f0e8;

  /* Text-safe accent variants for white AND cream backgrounds (≥ 4.5:1) */
  --gold-deep:     #7f611c;
  --teal-deep:     #17766d;
  --rose-deep:     #a83b5b;

  /* Neutrals */
  --bg:            #ffffff;
  --text:          #2e2a24;   /* warm near-black */
  --text-dim:      #5f594e;   /* 6.9:1 on white */
  --border-gold:   rgba(212, 168, 67, 0.45);
  --border-soft:   rgba(46, 42, 36, 0.12);
  --shadow-soft:   0 10px 34px rgba(46, 42, 36, 0.08);

  /* Typography */
  --f-head: "Cormorant Garamond", Georgia, serif;
  --f-body: "Josefin Sans", "Segoe UI", system-ui, sans-serif;

  /* Shape */
  --radius: 10px;
  --wrap: 1060px;
  --wrap-narrow: 680px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--f-body);
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.75;
  overflow-x: hidden;
}

/* Soft ambient color washes — a light echo of the cosmic moodboard.
   position: absolute (NOT fixed) — fixed backgrounds repaint on every
   scroll frame on phones and cause the janky-scroll effect. */
body { position: relative; }
body::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 18% 12%, rgba(46,196,182,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 50% 55% at 85% 75%, rgba(123,63,140,0.05) 0%, transparent 70%),
    radial-gradient(ellipse 45% 32% at 62% 6%,  rgba(212,168,67,0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

main, .hero, .site-footer { position: relative; z-index: 1; }

/* ── Type ──────────────────────────────────────────────────────────── */
h1, h2, h3 {
  font-family: var(--f-head);
  font-weight: 500;
  line-height: 1.15;
  color: var(--midnight-ink);
}

h1 {
  font-size: clamp(2.9rem, 8vw, 5.2rem);
  font-weight: 400;
  letter-spacing: 0.04em;
}
h1 em {
  font-style: italic;
  color: var(--gold-deep);
}

h2 {
  /* ~10pt smaller than the original 3rem cap, per Brittani (2026-08-28) */
  font-size: clamp(1.6rem, 3.8vw, 2.15rem);
  margin-bottom: 1.4rem;
  letter-spacing: 0.02em;
  text-align: center;   /* all section headings center; body copy stays left */
}
.h2-sub {
  display: block;
  font-family: var(--f-body);
  font-weight: 400;
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin-top: 0.7rem;
}

p + p { margin-top: 1.1em; }

a { color: var(--gold-deep); }
a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--sorcerer-plum);
  outline-offset: 3px;
}

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

.skip-link {
  position: absolute;
  top: -70px; left: 12px;   /* fully off-screen until focused (was peeking 1-2px) */
  background: var(--midnight-ink);
  color: #ffffff;
  padding: 10px 18px;
  border-radius: var(--radius);
  z-index: 50;
  font-weight: 500;
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 12px; }

/* ── Layout helpers ────────────────────────────────────────────────── */
.wrap        { max-width: var(--wrap);        margin: 0 auto; padding: 0 22px; }
.wrap-narrow { max-width: var(--wrap-narrow); margin: 0 auto; }

.section { padding: 90px 0; }
.section-tint { background: var(--pima-cream); }

/* Gold section label, centered with a short rule on each side */
.section-label {
  font-weight: 400;
  letter-spacing: 0.35em;
  font-size: 0.68rem;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.section-label::before,
.section-label::after {
  content: "";
  display: block;
  flex: 0 0 70px;
  height: 1px;
}
.section-label::before {
  background: linear-gradient(90deg, transparent, var(--border-gold));
}
.section-label::after {
  background: linear-gradient(90deg, var(--border-gold), transparent);
}

/* ── Buttons ───────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--f-body);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.92rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  padding: 18px 44px;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}
/* CTA in brand Rose (per Brittani). White text on these rose tones
   stays ≥ 4.5:1 — don't lighten the gradient or swap to dark text. */
.btn-primary {
  background: linear-gradient(135deg, #b8425f, var(--heartbeat-rose));
  color: #ffffff;
  box-shadow: 0 8px 26px rgba(194, 71, 106, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 34px rgba(194, 71, 106, 0.5);
}
.btn-wide { width: 100%; }

/* Secondary/outline button — the waitlist + sold-out links */
.btn-outline {
  background: transparent;
  color: var(--rose-deep);
  border: 2px solid var(--heartbeat-rose);
  padding: 16px 34px;
}
.btn-outline:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(194, 71, 106, 0.2);
}

.cta-note {
  margin-top: 16px;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--text-dim);
}

/* ── Hero ──────────────────────────────────────────────────────────── */
.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 70px 22px 90px;
  background:
    radial-gradient(ellipse 70% 55% at 50% 0%, rgba(212,168,67,0.08) 0%, transparent 70%),
    var(--bg);
}
.hero-inner { max-width: 860px; }

.hero-logo {
  width: clamp(85px, 15vw, 125px);
  height: auto;
  margin-bottom: 18px;
}

/* Logo lockup: studio name + slogan directly under the mark */
.brand-lockup { margin-bottom: 34px; }
.brand-name {
  display: block;
  font-family: var(--f-head);
  font-weight: 500;
  font-size: clamp(2rem, 5.5vw, 3.1rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--midnight-ink);
}
.brand-slogan {
  display: block;
  font-family: var(--f-head);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.05rem, 2.6vw, 1.45rem);
  letter-spacing: 0.06em;
  color: var(--gold-deep);
  margin-top: 8px;
}

.hero-photo {
  width: 100%;
  max-width: 780px;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(46, 42, 36, 0.18);
  margin-bottom: 34px;
}

.eyebrow {
  font-weight: 400;
  letter-spacing: 0.4em;
  font-size: 0.72rem;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin-bottom: 22px;
}

.hero-sub {
  margin-top: 26px;
  font-size: clamp(1.02rem, 2.4vw, 1.2rem);
  color: var(--text-dim);
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.hero-sub-strong {
  margin-top: 18px;
  margin-bottom: 36px;
  color: var(--text);
  font-weight: 400;
}

/* ── Statement band (hero → story bridge) ──────────────────────────── */
.statement {
  background: var(--pima-cream);
  text-align: center;
  padding: 64px 22px;
}
.statement-line {
  font-family: var(--f-head);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.7rem, 4.5vw, 2.7rem);
  line-height: 1.3;
  color: var(--midnight-ink);
}
.statement-sub {
  max-width: 560px;
  margin: 16px auto 0;
  color: var(--text-dim);
  font-size: 1.02rem;
}

/* ── Split layout (Corrective Exercise / Reiki): art | text ─────────── */
.split {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 44px;
  align-items: center;
  max-width: 900px;
  margin: 10px auto 0;
}
.split-art { display: flex; justify-content: center; }
.split-art img { width: min(240px, 55vw); height: auto; }
/* Mirrored variant: the ART column narrows, never the text — keeps
   both sections' text the same width (fixed 2026-08-28). */
.split-reverse { grid-template-columns: 1fr 280px; }
.split-reverse .split-art { order: 2; }
.split-text p { font-size: 1.05rem; }

/* ── Story ─────────────────────────────────────────────────────────── */
.story p { font-size: 1.08rem; }

/* Snapshot stat bar under the story */
.stat-bar {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 0;
  margin: 40px 0 34px;
  padding: 18px 0;
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
}
.stat-bar li {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  padding: 0 18px;
}
.stat-bar li + li { border-left: 1px solid var(--border-gold); }

.pull-quote {
  font-family: var(--f-head);
  font-style: italic;
  font-size: clamp(1.7rem, 4vw, 2.3rem);
  line-height: 1.3;
  color: var(--gold-deep);
  text-align: center;
  padding: 30px 0;
}

.signature {
  font-family: var(--f-head);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--rose-deep);
  margin-top: 1.4em;
}

/* ── Offer / value stack ───────────────────────────────────────────── */
.offer-intro {
  text-align: center;
  margin-bottom: 44px;
  color: var(--text-dim);
}

.value-table {
  max-width: 640px;
  margin: 0 auto;
  background: var(--bg);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.vt-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 18px;
  padding: 13px 24px;
  border-bottom: 1px solid var(--border-soft);
  font-size: 0.98rem;
}
.vt-row span:last-child {
  font-weight: 500;
  color: var(--gold-deep);
  white-space: nowrap;
}
.vt-head {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-dim);
  background: var(--pima-cream);
}
.vt-head span:last-child { color: var(--text-dim); }
.vt-total span, .vt-total s { color: var(--text-dim); }
.vt-price {
  background: linear-gradient(135deg, rgba(212,168,67,0.18), rgba(212,168,67,0.06));
  border-bottom: none;
  padding-top: 18px;
  padding-bottom: 18px;
}
.vt-price span:first-child {
  font-family: var(--f-head);
  font-size: 1.25rem;
  color: var(--midnight-ink);
}
.vt-price span:last-child {
  font-family: var(--f-head);
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--gold-deep);
}

.offer-points {
  max-width: 640px;
  margin: 34px auto 0;
  list-style: none;
}
.offer-points li {
  padding: 8px 0 8px 30px;
  position: relative;
}
.offer-points li::before {
  content: "♥";
  position: absolute;
  left: 4px;
  color: var(--heartbeat-rose);
  font-size: 0.85rem;
}

.cta-block { text-align: center; margin-top: 44px; }

/* ── Guarantee callout (inside the Find Your Beat section) ─────────── */
.guarantee-callout {
  background: var(--pima-cream);
  border-left: 3px solid var(--sacred-gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 28px 30px;
  margin-top: 44px;
}
.guarantee-callout h3 {
  font-size: 1.45rem;
  margin-bottom: 12px;
}
.fine-print {
  margin-top: 18px;
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--text-dim);
  border-top: 1px solid var(--border-soft);
  padding-top: 14px;
}

/* ── Reserve: deposit primary + waitlist secondary ─────────────────── */
.reserve { margin-top: 44px; }

.reserve-primary,
.reserve-soldout {
  background: var(--bg);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow-soft);
  text-align: center;
}
.reserve-primary h3,
.reserve-soldout h3,
.reserve-waitlist h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}
.reserve-primary .btn { margin-top: 20px; }
.reserve-primary .form-preview-note { text-align: left; margin-top: 18px; }

.soldout-links {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.reserve-waitlist {
  margin-top: 26px;
  text-align: center;
}
.reserve-waitlist > p { color: var(--text-dim); margin-bottom: 20px; }
.reserve-waitlist .reserve-form { text-align: left; }

/* ── FAQ ───────────────────────────────────────────────────────────── */
details {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  background: var(--bg);
  margin-bottom: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
details summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 52px 18px 22px;
  font-weight: 400;
  color: var(--text);
  position: relative;
}
details summary::-webkit-details-marker { display: none; }
details summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-deep);
  font-size: 1.3rem;
  font-weight: 300;
  transition: transform 0.2s ease;
}
details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
details[open] summary { color: var(--gold-deep); }
details p {
  padding: 0 22px 20px;
  color: var(--text-dim);
  font-size: 0.98rem;
}

/* ── Membership tiers ──────────────────────────────────────────────── */
.tiers-intro { color: var(--text-dim); margin-bottom: 30px; text-align: center; }
.tiers-footnote {
  text-align: center;
  margin-top: 26px;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--text-dim);
}

.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.tier {
  background: var(--bg);
  border: 1px solid var(--border-soft);
  border-top: 4px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 26px 24px 30px;
  box-shadow: var(--shadow-soft);
}
.tier-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 16px;
}
.tier h3 { font-size: 1.7rem; margin-bottom: 2px; }
.tier-desc {
  font-family: var(--f-head);
  font-style: italic;
  color: var(--text-dim);
  margin-bottom: 18px;
}
.tier-price {
  font-family: var(--f-head);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--midnight-ink);
  line-height: 1;
}
.tier-per {
  font-family: var(--f-body);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-dim);
}
.tier-billing {
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-top: 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-soft);
  margin-bottom: 16px;
}
.tier-features { list-style: none; }
.tier-features li {
  font-size: 0.94rem;
  padding: 6px 0 6px 26px;
  position: relative;
}
.tier-features li::before {
  content: "✓";
  position: absolute;
  left: 2px;
  font-weight: 600;
}
.tier-features li em { color: var(--text-dim); font-style: italic; }
.tier-features .not-included { color: var(--text-dim); }
.tier-features .not-included::before { content: "—"; font-weight: 300; }

/* Per-tier brand accents: Move = teal, Move & Heal = gold (popular),
   Transform = plum. Badge text uses the text-safe -deep variants. */
.tier-move { border-top-color: var(--healing-teal); }
.tier-move .tier-badge { background: rgba(46, 196, 182, 0.14); color: var(--teal-deep); }
.tier-move .tier-features li::before { color: var(--teal-deep); }

.tier-heal { border-top-color: var(--sacred-gold); }
.tier-heal .tier-badge { background: rgba(212, 168, 67, 0.18); color: var(--gold-deep); }
.tier-heal .tier-features li::before { color: var(--gold-deep); }
.tier-popular {
  border-color: var(--border-gold);
  border-top-color: var(--sacred-gold);
  box-shadow: 0 14px 44px rgba(212, 168, 67, 0.18);
}

.tier-transform { border-top-color: var(--sorcerer-plum); }
.tier-transform .tier-badge { background: rgba(123, 63, 140, 0.12); color: var(--sorcerer-plum); }
.tier-transform .tier-features li::before { color: var(--sorcerer-plum); }

/* ── Meet Your Guide ───────────────────────────────────────────────── */
.guide-photo {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(46, 42, 36, 0.18);
  margin-bottom: 30px;
}
.bio-role {
  font-weight: 500;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-bottom: 18px;
}
.bio-line {
  font-family: var(--f-head);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--gold-deep);
  text-align: center;
  padding: 10px 0;
}

/* ── Student reviews: chips → cards → full-width feature ───────────── */
.reviews-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 22px;
}
.review-chip {
  background: var(--bg);
  border: 1px solid var(--border-soft);
  border-left: 3px solid var(--heartbeat-rose);
  border-radius: 0 18px 18px 0;
  padding: 14px 22px;
  max-width: 340px;
  font-family: var(--f-head);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.45;
  color: var(--text);
  box-shadow: var(--shadow-soft);
}
.review-attr {
  display: block;
  margin-top: 8px;
  font-family: var(--f-body);
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose-deep);
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.review-card {
  background: var(--bg);
  border: 1px solid var(--border-soft);
  border-left: 3px solid var(--heartbeat-rose);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 26px 28px;
  box-shadow: var(--shadow-soft);
}
.review-card blockquote p {
  font-family: var(--f-head);
  font-style: italic;
  font-size: 1.18rem;
  line-height: 1.55;
  color: var(--text);
}
.review-card figcaption {
  margin-top: 14px;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose-deep);
}
.review-feature {
  margin-top: 18px;
  border: 1px solid var(--border-gold);
  border-left: 3px solid var(--sacred-gold);
  background: linear-gradient(135deg, rgba(212,168,67,0.08), rgba(194,71,106,0.05));
  box-shadow: 0 14px 44px rgba(212, 168, 67, 0.16);
  padding: 34px 38px;
}
.review-feature blockquote p { font-size: 1.3rem; }
.review-feature figcaption { color: var(--gold-deep); }

/* ── Growing With Heartbeat ────────────────────────────────────────── */
.growing-subhead {
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--teal-deep);
  text-align: center;
  margin: 34px 0 16px;
}
.growing-list { list-style: none; }
.growing-list li {
  padding: 10px 0 10px 34px;
  position: relative;
}
.growing-list li::before {
  content: "✦";
  position: absolute;
  left: 6px;
  color: var(--gold-deep);
}
.growing-close {
  font-family: var(--f-head);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--teal-deep);
  text-align: center;
  margin-top: 30px;
}

/* ── Final close + form ────────────────────────────────────────────── */
.section-close { padding-bottom: 110px; }

.spots-counter {
  margin: 26px auto 36px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--gold-deep);
  border: 1px solid var(--border-gold);
  border-radius: 999px;
  display: block;
  width: fit-content;
  padding: 10px 26px;
  font-size: 0.92rem;
}

.reserve-form {
  background: var(--bg);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow-soft);
}

.form-preview-note {
  font-size: 0.8rem;
  color: var(--teal-deep);
  border: 1px solid rgba(23, 118, 109, 0.35);
  background: rgba(46, 196, 182, 0.07);
  border-radius: var(--radius);
  padding: 10px 14px;
  margin-bottom: 24px;
}

.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 8px;
}
.field input {
  width: 100%;
  background: var(--bg);
  border: 1px solid rgba(46, 42, 36, 0.25);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--f-body);
  font-size: 1rem;
  padding: 13px 15px;
  transition: border-color 0.2s ease;
}
.field input:focus { border-color: var(--gold-deep); outline: none; }
.field input.invalid { border-color: var(--rose-deep); }

.reserve-confirm {
  text-align: center;
  background: var(--bg);
  border: 1px solid rgba(23, 118, 109, 0.4);
  border-radius: var(--radius);
  padding: 48px 30px;
  box-shadow: var(--shadow-soft);
}
.reserve-confirm h3 {
  font-size: 2rem;
  color: var(--teal-deep);
  margin-bottom: 12px;
}

/* ── Footer (white band, secondary EKG-dancer logo) ────────────────── */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border-soft);
  color: var(--text);
  text-align: center;
  padding: 56px 0 44px;
}
.footer-logo {
  width: min(380px, 78vw);
  height: auto;
}
.footer-wordmark {
  font-family: var(--f-head);
  font-weight: 500;
  font-size: 1.35rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--midnight-ink);
  margin-top: 10px;
}
.footer-tag {
  font-family: var(--f-head);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--text-dim);
  margin-top: 4px;
}
.footer-legal {
  margin-top: 16px;
  font-size: 0.82rem;
}
.footer-legal a { color: var(--text-dim); }
.footer-meta {
  margin-top: 14px;
  font-size: 0.9rem;
  color: var(--text-dim);
}
.footer-meta a { color: var(--sorcerer-plum); }
.footer-fine {
  margin-top: 20px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--text-dim);
}

/* ── Responsive ────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .tier-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

/* ── Legal pages (terms / refund policy / privacy) ─────────────────── */
.legal-page { padding: 60px 0 90px; }
.legal-page .wrap-narrow { max-width: 720px; }
.legal-home {
  display: inline-block;
  margin-bottom: 30px;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-decoration: none;
}
.legal-page h1 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-bottom: 6px;
}
.legal-effective {
  color: var(--text-dim);
  font-size: 0.88rem;
  margin-bottom: 34px;
}
.legal-page h2 {
  font-size: 1.25rem;
  text-align: left;          /* legal docs read left-aligned */
  margin: 34px 0 10px;
}
.legal-page ul { padding-left: 24px; margin: 10px 0; }
.legal-page li { margin: 6px 0; }

@media (max-width: 760px) {
  .section { padding: 64px 0; }
  .vt-row { font-size: 0.92rem; padding: 12px 16px; }
  .reserve-form { padding: 26px 18px; }
  /* Splits stack with the art on top, both directions */
  .split, .split-reverse { grid-template-columns: 1fr; gap: 22px; }
  .split-reverse .split-art { order: 0; }
  .reviews-grid { grid-template-columns: 1fr; }
  .review-feature { padding: 26px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
