/* ═══════════════════════════════════════════════════════════════════════════
   IMPOSSIBLE MEANS GO — VERSION B
   Layout language borrowed from winningwithaievent.com:
     · star-badge hero with floating booking card
     · pill buttons, rounded cards with icon chips
     · full-bleed mid-page CTA band over photography
     · photo-topped for/not-for cards, rounded FAQ accordion rows
   Brand unchanged: obsidian base, gold accents, Inter + Cormorant Garamond.
═══════════════════════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-base:        #0A0A0F;
  --bg-dark:        #0E0E16;
  --bg-darker:      #070709;
  --bg-card:        #141422;
  --bg-card-hover:  #1A1A2E;
  --border:         rgba(255,255,255,0.07);
  --border-gold:    rgba(196,158,69,0.3);
  --gold:           #C49E45;
  --gold-light:     #E0BA6A;
  --gold-dim:       rgba(196,158,69,0.55);
  --text:           #F0EDE6;
  --text-muted:     #9B9B9B;
  --text-faint:     #5A5A6A;
  --green:          #4ADE80;
  --green-dim:      rgba(74,222,128,0.12);
  --red:            #F87171;
  --red-dim:        rgba(248,113,113,0.10);
  --radius:         16px;
  --radius-lg:      24px;
  --pill:           999px;
  --transition:     0.3s ease;
  --shadow-card:    0 4px 40px rgba(0,0,0,0.6);
  --shadow-gold:    0 0 40px rgba(196,158,69,0.12);
  --glow-gold:      0 8px 44px rgba(196,158,69,0.35);
  --max-w:          1160px;
  --nav-h:          72px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg-base);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* ─── CONTAINER ─────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── TYPOGRAPHY HELPERS ─────────────────────────────────────────────────── */
.gold-italic {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1.2;
}

.gold-text { color: var(--gold); }

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.section-label--bare { margin-bottom: 14px; }

.section-headline {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 36px;
}

.section-intro {
  max-width: 680px;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 56px;
}

.center-head { text-align: center; }
.center-head .section-intro { margin-left: auto; margin-right: auto; }

/* ─── STARS ─────────────────────────────────────────────────────────────── */
.stars {
  display: inline-flex;
  gap: 3px;
  color: var(--gold-light);
  font-size: 0.72rem;
  letter-spacing: 0;
}

/* ─── BUTTONS ─────────────────────────────────────────────────────────── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  color: #0A0A0F;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 16px 34px;
  border-radius: var(--pill);
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
  box-shadow: var(--glow-gold);
}

.btn-gold:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow: 0 12px 54px rgba(196,158,69,0.5);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(255,255,255,0.02);
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 16px 34px;
  border-radius: var(--pill);
  border: 1px solid rgba(255,255,255,0.22);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}

.btn-ghost:hover {
  border-color: var(--gold);
  background: rgba(196,158,69,0.08);
  transform: translateY(-2px);
}

.btn-lg { padding: 19px 46px; font-size: 1.05rem; }
.btn-sm { padding: 11px 24px; font-size: 0.85rem; }

/* ─── NAVIGATION ────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(10,10,15,0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition);
}

.nav.scrolled {
  background: rgba(10,10,15,0.92);
  border-bottom-color: var(--border);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1.5px solid var(--gold);
  border-radius: 12px;
  color: var(--gold);
  font-weight: 900;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
}

.nav-logo-text {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  line-height: 1.35;
  color: var(--text);
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}

.nav-links a:hover { color: var(--gold-light); }

.nav-cta { padding: 11px 26px; font-size: 0.85rem; box-shadow: none; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform var(--transition), opacity var(--transition);
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── ANNOUNCE BAR (static strip under the fixed nav) ───────────────────── */
.announce-bar {
  margin-top: var(--nav-h);
  background: rgba(20,20,34,0.96);
  border-bottom: 1px solid var(--border-gold);
  color: var(--text-muted);
  font-size: 0.8rem;
  text-align: center;
  padding: 10px 20px;
}

/* ─── HERO ──────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h) - 42px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 76px 0 90px;
  overflow: hidden;
}

.hero-photo {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(10,10,15,0.97) 30%, rgba(10,10,15,0.82) 60%, rgba(10,10,15,0.66) 100%),
    url('https://images.unsplash.com/photo-1540575467063-178a50c2df87?auto=format&fit=crop&w=2000&q=80') center 30% / cover no-repeat;
}

.hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,15,0.35) 0%, rgba(10,10,15,0) 40%, rgba(10,10,15,0.98) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.75fr);
  gap: 56px;
  align-items: center;
}

.star-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(20,20,34,0.85);
  border: 1px solid var(--border);
  border-radius: var(--pill);
  padding: 9px 20px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 30px;
}

.hero-headline {
  font-size: clamp(2.6rem, 5.4vw, 4.6rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 26px;
}

.hero-headline .gold-italic { font-size: 0.94em; }

.hero-sub {
  max-width: 560px;
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 22px;
}

.hero-trust {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-faint);
  letter-spacing: 0.02em;
}

/* Hero booking card */
.hero-card {
  background: rgba(14,14,22,0.93);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  box-shadow: var(--shadow-card), var(--shadow-gold);
}

.hero-card-head {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 16px;
  margin-bottom: 6px;
  border-bottom: 1px solid var(--border);
}

.hero-card-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
}

.hero-card-list li:last-child { border-bottom: none; }

.hero-card-list span {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-faint);
  flex-shrink: 0;
}

.hero-card-list strong {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text);
  text-align: right;
}

.hero-card-btn {
  width: 100%;
  margin-top: 18px;
  padding: 14px 20px;
  font-size: 0.9rem;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 24px;
  height: 40px;
  border: 1.5px solid var(--text-faint);
  border-radius: 14px;
}

.hero-scroll-hint span {
  position: absolute;
  top: 7px;
  left: 50%;
  width: 3px;
  height: 8px;
  margin-left: -1.5px;
  border-radius: 2px;
  background: var(--gold);
  animation: scrollHint 1.8s ease-in-out infinite;
}

@keyframes scrollHint {
  0%   { transform: translateY(0);   opacity: 1; }
  70%  { transform: translateY(12px); opacity: 0; }
  100% { transform: translateY(0);   opacity: 0; }
}

/* ─── PROOF STRIP ───────────────────────────────────────────────────────── */
.proof-strip {
  background: var(--bg-darker);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}

.proof-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 22px;
}

.proof-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

.proof-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-dim);
}

/* ─── SECTIONS ──────────────────────────────────────────────────────────── */
.section-dark   { background: var(--bg-dark);   padding: 110px 0; }
.section-darker { background: var(--bg-base);   padding: 110px 0; }

/* ─── SPLIT (photo + copy) ──────────────────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: start;
}

.split-media,
.feb-photo,
.details-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.split-media img,
.feb-photo img,
.details-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-media { position: sticky; top: calc(var(--nav-h) + 24px); }
.split-media img { aspect-ratio: 4 / 5; }

.media-chip {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: rgba(10,10,15,0.9);
  border: 1px solid var(--border-gold);
  border-radius: var(--pill);
  color: var(--gold-light);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 18px;
}

.prose p { color: var(--text-muted); margin-bottom: 20px; }
.prose p:last-child { margin-bottom: 0; }

.pull-quote {
  position: relative;
  max-width: 820px;
  margin: 72px auto 0;
  padding: 40px 48px;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  text-align: center;
}

.pull-quote-mark {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Playfair Display', serif;
  font-size: 4.5rem;
  line-height: 1;
  color: var(--gold);
}

.pull-quote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1.55;
  color: var(--text);
}

/* ─── ICON CHIP ─────────────────────────────────────────────────────────── */
.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(196,158,69,0.12);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  font-size: 1.15rem;
  margin-bottom: 22px;
}

/* ─── OUTCOME CARDS ─────────────────────────────────────────────────────── */
.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 26px;
}

.outcome-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.outcome-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold);
  background: var(--bg-card-hover);
}

.outcome-card strong {
  display: block;
  font-size: 1.06rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.outcome-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.outcome-card--gold {
  background: linear-gradient(160deg, rgba(196,158,69,0.16), rgba(196,158,69,0.05));
  border-color: var(--border-gold);
}

.outcome-card--gold .chip { background: var(--gold); color: #0A0A0F; border-color: var(--gold); }

/* ─── FEBRUARY ──────────────────────────────────────────────────────────── */
.feb-photo { margin-bottom: 28px; }
.feb-photo img { aspect-ratio: 21 / 9; }

.february-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.february-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  transition: transform var(--transition), border-color var(--transition);
}

.february-card:hover { transform: translateY(-4px); border-color: var(--border-gold); }

.february-card strong {
  display: block;
  font-size: 1.06rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.february-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.story-callout {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.story-callout-line {
  width: 72px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  margin: 0 auto 36px;
}

.story-callout p + .story-callout-line { margin-top: 36px; margin-bottom: 0; }

.story-callout p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.32rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 22px;
}

.story-callout p strong { color: var(--gold-light); font-weight: 600; }

/* ─── VIDEOS ────────────────────────────────────────────────────────────── */
.video-featured {
  max-width: 860px;
  margin: 26px auto 40px;
}

.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.video-featured .video-wrapper { border-color: var(--border-gold); box-shadow: var(--shadow-card), var(--shadow-gold); }

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-featured-caption {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  margin-top: 22px;
}

.video-featured-caption .stars { font-size: 0.8rem; }

.video-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.video-featured-caption p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--text);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* ─── HERO PROOF QUOTE ──────────────────────────────────────────────────── */
.hero-proof {
  max-width: 560px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.18rem;
  line-height: 1.5;
  color: var(--text);
  border-left: 2px solid var(--gold);
  padding-left: 18px;
  margin-bottom: 34px;
}

.hero-proof-attr {
  display: block;
  margin-top: 8px;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* ─── NAMED VIDEO CAPTIONS ──────────────────────────────────────────────── */
.video-attr { display: block; font-size: 0.85rem; color: var(--text-muted); }
.video-attr strong { color: var(--gold); font-weight: 700; }

.video-featured-caption .video-attr { margin-top: 2px; }

.video-grid-named { margin-bottom: 26px; }
.video-grid-named { grid-template-columns: repeat(2, 1fr); }
.video-grid-named .video-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition);
}
.video-grid-named .video-card:hover { border-color: var(--border-gold); }
.video-grid-named .video-wrapper { border: none; border-radius: 0; box-shadow: none; }

.video-card-caption { padding: 20px 24px 22px; }
.video-card-caption p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 8px;
}

.more-voices-label { margin-top: 60px; }

/* ─── WRITTEN TESTIMONIALS ──────────────────────────────────────────────── */
.written-featured {
  position: relative;
  max-width: 780px;
  margin: 26px auto 48px;
  padding: 52px 56px 44px;
  background: linear-gradient(160deg, rgba(196,158,69,0.1), var(--bg-card) 55%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-gold);
}

.written-mark {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Playfair Display', serif;
  font-size: 4.5rem;
  line-height: 1;
  color: var(--gold);
}

.written-lead {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 2rem;
  line-height: 1.2;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.written-body {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.written-attr {
  border-top: 1px solid var(--border);
  padding-top: 18px;
}

.written-name {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--gold);
}

.written-role {
  display: block;
  margin-top: 4px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* The host's verdict — sits after the roll, so it reads as a closing word
   rather than a second opening one. Muted border instead of gold, because the
   attendee quote above it should stay the loudest thing in the section. */
.written-host {
  margin-top: 48px;
  margin-bottom: 0;
  background: linear-gradient(160deg, rgba(196,158,69,0.05), var(--bg-card) 55%);
  border-color: var(--border);
  box-shadow: none;
}

/* A public, checkable source is the whole reason this quote is worth more than
   a testimonial we collected — so it is a link, not a footnote. */
.written-source {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.written-source:hover,
.written-source:focus-visible {
  color: var(--gold-light);
  border-bottom-color: var(--gold-light);
}

/* ─── QUOTE ROLL (auto-scrolling marquee) ───────────────────────────────── */
.roll {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.roll-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: roll-scroll 64s linear infinite;
}

.roll:hover .roll-track { animation-play-state: paused; }

.roll-item {
  flex: 0 0 340px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 26px 22px;
}

.roll-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.12rem;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 18px;
}

.roll-quote em { color: var(--gold-light); font-style: italic; }

.roll-attr { border-top: 1px solid var(--border); padding-top: 12px; }
.roll-name { display: block; font-weight: 700; font-size: 0.9rem; color: var(--gold); }
.roll-role { display: block; margin-top: 3px; font-size: 0.78rem; color: var(--text-muted); }

@keyframes roll-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

@media (max-width: 760px) { .roll-item { flex-basis: 280px; } }
@media (prefers-reduced-motion: reduce) { .roll-track { animation: none; } .roll { overflow-x: auto; mask-image: none; -webkit-mask-image: none; } }

/* ─── LETTER FROM ATIBA ─────────────────────────────────────────────────── */
.letter {
  max-width: 760px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 52px 56px;
}

.letter p { font-size: 1.08rem; line-height: 1.8; color: var(--text-muted); margin-bottom: 22px; }
.letter > p:first-child { color: var(--text); font-weight: 600; font-size: 1.18rem; }
.letter strong { color: var(--text); font-weight: 700; }
.letter em { color: var(--gold-light); font-style: italic; }

.letter p.letter-callout {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 1.55rem;
  line-height: 1.3;
  color: var(--text);
  padding: 6px 0;
}

.letter .lc-gold { color: var(--gold-light); }
.letter p.letter-callout.lc-gold { color: var(--gold-light); }
.letter .pull-quote { margin: 32px 0; max-width: none; }

.letter p.letter-sig {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--gold-light);
  margin-bottom: 0;
}

/* ─── FRAMEWORK ─────────────────────────────────────────────────────────── */
.framework-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.framework-card {
  display: flex;
  gap: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 32px;
  transition: transform var(--transition), border-color var(--transition);
}

.framework-card:hover { transform: translateY(-4px); border-color: var(--border-gold); }

.framework-card:last-child { grid-column: 1 / -1; }

.framework-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(196,158,69,0.12);
  border: 1px solid var(--border-gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gold-light);
}

.framework-content h3 {
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.framework-content p {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.framework-footer {
  max-width: 760px;
  margin: 64px auto 0;
  text-align: center;
}

.framework-footer-line {
  width: 72px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  margin: 0 auto 30px;
}

.framework-footer p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.32rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ─── MID-PAGE CTA BAND ─────────────────────────────────────────────────── */
.cta-band {
  position: relative;
  padding: 130px 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-band-photo {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,15,0.94), rgba(10,10,15,0.8) 50%, rgba(10,10,15,0.94)),
    url('https://images.unsplash.com/photo-1475721027785-f74eccf877e2?auto=format&fit=crop&w=2000&q=80') center / cover no-repeat;
}

.cta-band-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-band-headline {
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 34px;
}

.cta-band .hero-ctas { justify-content: center; margin-bottom: 20px; }
.cta-band .hero-trust { color: var(--text-muted); }

/* ─── SCHEDULE ──────────────────────────────────────────────────────────── */
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.schedule-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 38px 34px;
  transition: transform var(--transition), border-color var(--transition);
}

.schedule-card:hover { transform: translateY(-4px); }

.schedule-card--featured {
  border-color: var(--border-gold);
  background: linear-gradient(160deg, rgba(196,158,69,0.1), var(--bg-card) 55%);
  box-shadow: var(--shadow-gold);
}

.schedule-day-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #0A0A0F;
  background: var(--gold);
  border-radius: var(--pill);
  padding: 5px 14px;
  margin-bottom: 14px;
}

.schedule-day-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.schedule-title {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.015em;
  margin-bottom: 18px;
}

.schedule-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.93rem;
  color: var(--text-muted);
  padding: 7px 0;
}

.schedule-list i {
  color: var(--gold);
  font-size: 0.65rem;
  margin-top: 7px;
  flex-shrink: 0;
}

.schedule-badge {
  margin-top: 20px;
  padding: 14px 18px;
  background: rgba(196,158,69,0.1);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold-light);
  line-height: 1.5;
}

/* ─── WHO IT'S FOR ──────────────────────────────────────────────────────── */
.for-not-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.for-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition);
}

.for-card:hover { transform: translateY(-4px); }
.for-card--yes:hover { border-color: rgba(74,222,128,0.35); }
.for-card--no:hover  { border-color: rgba(248,113,113,0.35); }

.for-card-media { position: relative; }

.for-card-media img {
  width: 100%;
  aspect-ratio: 16 / 8.5;
  object-fit: cover;
}

.for-card--yes .for-card-media::after,
.for-card--no  .for-card-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,20,34,0) 40%, rgba(20,20,34,0.95) 100%);
}

.for-card-body { padding: 34px 34px 40px; }

.for-label-green { color: var(--green); }
.for-label-red   { color: var(--red); }

.for-headline {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.for-headline-green { color: var(--text); }
.for-headline-red   { color: var(--text-muted); }

.for-list li,
.not-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 9px 0;
  font-size: 0.94rem;
  color: var(--text-muted);
}

.for-list i {
  color: var(--green);
  background: var(--green-dim);
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.not-list i {
  color: var(--red);
  background: var(--red-dim);
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.for-note {
  margin-top: 22px;
  padding: 16px 20px;
  background: rgba(74,222,128,0.06);
  border: 1px solid rgba(74,222,128,0.2);
  border-radius: var(--radius);
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ─── VALUE TABLE ───────────────────────────────────────────────────────── */
.value-table-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  overflow-x: auto;
  box-shadow: var(--shadow-card);
}

.value-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

.value-table th {
  text-align: left;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 20px 30px;
  border-bottom: 1px solid var(--border-gold);
}

.value-table th:last-child { text-align: right; }

.value-table td {
  padding: 18px 30px;
  font-size: 0.95rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}

.value-table td:last-child { text-align: right; white-space: nowrap; }

.value-table tbody tr:hover td { background: rgba(255,255,255,0.015); }

.value-amount { font-weight: 600; color: var(--text); }

.value-table tfoot td {
  border-bottom: none;
  padding: 22px 30px;
  background: rgba(196,158,69,0.07);
  color: var(--text);
}

.value-total {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--gold-light);
}

.value-cta-note {
  text-align: center;
  margin-top: 34px;
  font-size: 1.12rem;
  color: var(--text-muted);
}

/* ─── PRICING ───────────────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
  margin-top: 10px;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 38px 32px;
  transition: transform var(--transition), border-color var(--transition);
}

.pricing-card:hover { transform: translateY(-4px); border-color: var(--border-gold); }

.pricing-card--featured {
  border-color: var(--gold);
  background: linear-gradient(170deg, rgba(196,158,69,0.12), var(--bg-card) 50%);
  box-shadow: var(--shadow-gold);
  transform: scale(1.02);
}

.pricing-card--featured:hover { transform: scale(1.02) translateY(-4px); }

.pricing-featured-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  color: #0A0A0F;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--pill);
  padding: 7px 20px;
  white-space: nowrap;
}

.tier-label {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.tier-price {
  font-size: 2.9rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 16px;
}

.tier-dollar {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-light);
  vertical-align: super;
  margin-right: 2px;
}

.tier-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 18px;
}

.tier-seats {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-light);
  background: rgba(196,158,69,0.1);
  border: 1px solid var(--border-gold);
  border-radius: var(--pill);
  padding: 7px 16px;
  margin-bottom: 26px;
}

.tier-seats i { font-size: 0.55rem; }

.tier-seats--urgent {
  color: var(--red);
  background: var(--red-dim);
  border-color: rgba(248,113,113,0.3);
}

.tier-features {
  flex: 1;
  border-top: 1px solid var(--border);
  padding-top: 22px;
  margin-bottom: 28px;
}

.tier-features li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 7px 0;
}

.tier-features i {
  color: var(--gold);
  font-size: 0.72rem;
  margin-top: 6px;
  flex-shrink: 0;
}

.btn-tier {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px 20px;
  border-radius: var(--pill);
  border: 1px solid rgba(255,255,255,0.22);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}

.btn-tier:hover {
  border-color: var(--gold);
  background: rgba(196,158,69,0.08);
  transform: translateY(-2px);
}

.btn-tier--gold {
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  border-color: transparent;
  color: #0A0A0F;
  box-shadow: var(--glow-gold);
}

.btn-tier--gold:hover {
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  filter: brightness(1.06);
  box-shadow: 0 12px 54px rgba(196,158,69,0.5);
}

/* ─── GUARANTEE ─────────────────────────────────────────────────────────── */
.guarantee-block {
  display: flex;
  gap: 26px;
  align-items: flex-start;
  max-width: 780px;
  margin: 60px auto 0;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 34px 38px;
  box-shadow: var(--shadow-gold);
}

.guarantee-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: rgba(196,158,69,0.12);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  font-size: 1.4rem;
}

.guarantee-body strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.guarantee-body p {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ─── DETAILS ───────────────────────────────────────────────────────────── */
.details-split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: stretch;
}

.details-media img { height: 100%; aspect-ratio: auto; min-height: 320px; }

.details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.detail-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 26px;
  transition: border-color var(--transition);
}

.detail-item:hover { border-color: var(--border-gold); }

.detail-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.detail-value {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text);
}

/* ─── FAQ ───────────────────────────────────────────────────────────────── */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item:has(.faq-q[aria-expanded="true"]) { border-color: var(--border-gold); }

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 22px 28px;
  font-family: 'Inter', sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text);
  transition: color var(--transition);
}

.faq-q:hover { color: var(--gold-light); }

.faq-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(196,158,69,0.12);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  font-size: 0.72rem;
  transition: transform var(--transition), background var(--transition), color var(--transition);
}

.faq-q[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  background: var(--gold);
  color: #0A0A0F;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, padding 0.45s ease;
  padding: 0 28px;
}

.faq-a.open {
  max-height: 400px;
  padding: 0 28px 26px;
}

.faq-a p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ─── CLOSING ───────────────────────────────────────────────────────────── */
.section-closing {
  position: relative;
  padding: 140px 0 120px;
  overflow: hidden;
  border-top: 1px solid var(--border);
}

.closing-photo {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,15,0.97), rgba(10,10,15,0.88) 60%, rgba(10,10,15,0.97)),
    url('https://images.unsplash.com/photo-1581351721010-8cf859cb14a4?auto=format&fit=crop&w=2000&q=80') center / cover no-repeat;
}

.closing-inner {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.closing-pre {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.closing-headline {
  font-size: clamp(1.7rem, 3.6vw, 2.9rem);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -0.025em;
  margin-bottom: 40px;
}

.closing-body p {
  color: var(--text-muted);
  font-size: 1.04rem;
  line-height: 1.85;
  margin-bottom: 18px;
}

.closing-invite {
  font-family: 'Cormorant Garamond', serif !important;
  font-style: italic;
  font-size: 1.5rem !important;
  color: var(--gold-light) !important;
}

.closing-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  margin-top: 44px;
}

.closing-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.92rem;
  color: var(--text-faint);
}

.closing-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-light);
  font-weight: 600;
  border-bottom: 1px solid var(--border-gold);
  padding-bottom: 2px;
  transition: color var(--transition), border-color var(--transition);
}

.closing-text-link:hover { color: var(--gold); border-color: var(--gold); }

/* ─── FOOTER ────────────────────────────────────────────────────────────── */
.footer {
  background: var(--bg-darker);
  border-top: 1px solid var(--border);
  padding: 38px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.84rem;
  color: var(--text-faint);
}

.footer-meta a { color: var(--gold-light); }
.footer-sep { color: var(--text-faint); }

/* ─── STICKY BOTTOM CTA BAR ─────────────────────────────────────────────── */
.float-cta {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 950;
  background: rgba(14,14,22,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--border-gold);
  padding: 12px 0;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease;
}

.float-cta.visible {
  transform: translateY(0);
  opacity: 1;
}

.float-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.float-cta-text {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.float-cta-text strong { color: var(--gold-light); font-weight: 700; }

/* ─── REVEAL ANIMATIONS ─────────────────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .hero-scroll-hint span { animation: none; }
}

/* ─── RESPONSIVE ────────────────────────────────────────────────────────── */
@media (max-width: 1080px) {
  .hero-content { grid-template-columns: 1fr; gap: 44px; }
  .hero-card { max-width: 480px; }
  .outcome-grid { grid-template-columns: repeat(2, 1fr); }
  .video-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(10,10,15,0.98);
    border-bottom: 1px solid var(--border);
    padding: 12px 24px 20px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { display: block; padding: 13px 0; font-size: 1rem; }
  .hamburger { display: flex; }
  .nav-cta { display: none; }

  .split { grid-template-columns: 1fr; }
  .split-media { position: relative; top: 0; max-width: 560px; }
  .split-media img { aspect-ratio: 16 / 10; }
  .framework-grid { grid-template-columns: 1fr; }
  .schedule-grid { grid-template-columns: 1fr; }
  .for-not-grid { grid-template-columns: 1fr; }
  .february-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
  .pricing-card--featured { transform: none; }
  .pricing-card--featured:hover { transform: translateY(-4px); }
  .details-split { grid-template-columns: 1fr; }
  .details-media img { min-height: 240px; }
}

@media (max-width: 900px) and (min-width: 641px) {
  .video-grid-named { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .section-dark, .section-darker { padding: 80px 0; }
  .video-grid-named { grid-template-columns: 1fr; }
  .written-featured { padding: 42px 26px 36px; }
  .written-lead { font-size: 1.6rem; }
  .letter { padding: 36px 26px; }
  .letter p.letter-callout { font-size: 1.35rem; }
  .hero { padding-top: 50px; padding-bottom: 70px; min-height: auto; }
  .hero-card { padding: 24px 20px; }
  .outcome-grid { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .details-grid { grid-template-columns: 1fr; }
  .guarantee-block { flex-direction: column; padding: 28px 24px; }
  .pull-quote { padding: 34px 24px; }
  .pull-quote blockquote { font-size: 1.2rem; }
  .cta-band { padding: 90px 0; }
  .float-cta-text { display: none; }
  .float-cta-inner { justify-content: center; }
  .announce-bar { font-size: 0.72rem; }
  .btn-gold, .btn-ghost { width: 100%; }
  .hero-ctas { flex-direction: column; }
  .cta-band .hero-ctas { flex-direction: column; align-items: center; }
  .cta-band .btn-gold, .cta-band .btn-ghost { width: auto; min-width: 260px; }
}
