/* ================ EO COMPANY — STYLES ================ */

:root {
  /* Brand palette */
  --purple-deep: #2D0E4A;
  --purple-royal: #4A1B6F;
  --purple-velvet: #1A0828;
  --purple-night: #0E0418;

  --gold: #C9A24B;
  --gold-bright: #E5C77F;
  --gold-warm: #D6B05A;
  --gold-soft: #8B6F33;
  --gold-deep: #8C6E2A;

  --ivory: #F5EFE3;
  --ivory-warm: #EFE6D2;
  --cream: #FBF7EE;

  --ink: #14081E;
  --ink-soft: rgba(20, 8, 30, 0.72);

  /* Type */
  --font-display: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-body: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --font-script: "Pinyon Script", "Allison", cursive;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.75rem;
  --space-lg: 3rem;
  --space-xl: 5rem;
  --space-xxl: 8rem;

  /* Layout */
  --max-content: 66rem;
  --max-narrow: 44rem;
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 24px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ivory);
  background: var(--purple-velvet);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1, "liga" 1;
  overflow-x: hidden;
}

img, video { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; padding: 0; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ================ SCROLL PROGRESS ================ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright), var(--gold));
  box-shadow: 0 0 14px rgba(229, 199, 127, 0.7);
  z-index: 100;
  transition: width 0.08s linear;
}

/* ================ SIDE NAV ================ */
.side-nav {
  position: fixed;
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%);
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.side-nav.visible { opacity: 1; pointer-events: auto; }

.side-dot {
  position: relative;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  background: transparent;
  transition: background 0.3s ease, transform 0.25s ease;
}

.side-dot:hover { transform: scale(1.2); }

.side-dot.active {
  background: var(--gold);
  box-shadow: 0 0 16px rgba(201, 162, 75, 0.6);
}

.side-dot-label {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: var(--purple-velvet);
  color: var(--gold);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  border: 1px solid rgba(201, 162, 75, 0.3);
}

.side-dot:hover .side-dot-label {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

@media (max-width: 900px) { .side-nav { display: none; } }

/* ================ HERO ================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: var(--space-md) clamp(1.5rem, 5vw, 5rem);
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(74, 27, 111, 0.55), transparent 70%),
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(201, 162, 75, 0.12), transparent 70%),
    var(--purple-velvet);
  overflow: hidden;
}

.hero-ornament {
  position: absolute;
  font-family: var(--font-script);
  font-size: clamp(28rem, 65vw, 65rem);
  color: rgba(201, 162, 75, 0.05);
  right: -8%;
  bottom: -28%;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
  letter-spacing: -0.05em;
}

.nav {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: var(--space-md);
}

.nav-mark {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.nav-logo {
  width: 56px;
  height: 56px;
  object-fit: cover;
  object-position: center;
  border-radius: 4px;
}

/* Nav logo fallback — clean script wordmark, no box */
.nav-fallback {
  display: none;
  font-family: var(--font-script);
  font-size: 3.6rem;
  line-height: 1.15;
  letter-spacing: -0.05em;
  padding: 0.1em 0.15em 0.2em;
  background: linear-gradient(135deg, #8C6A1F 0%, #C9A24B 25%, #F4D98C 50%, #C9A24B 75%, #8C6A1F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 4px rgba(140, 106, 31, 0.4));
}

.nav-fallback.visible { display: inline-block; }

.nav-cta {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  padding: 0.8rem 1.8rem;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  border-radius: 999px;
  transition: background 0.3s ease, color 0.3s ease;
  display: inline-block;
  font-weight: 600;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--purple-velvet);
}

.hero-content {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: var(--max-content);
  margin: 0 auto;
  width: 100%;
  text-align: center;
  padding: var(--space-lg) 0;
}

.hero-logo {
  width: clamp(220px, 28vw, 340px);
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  object-position: center;
  margin: 0 auto var(--space-md);
  border-radius: 6px;
  filter:
    drop-shadow(0 12px 36px rgba(201, 162, 75, 0.5))
    drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35));
  animation: floatGently 6s ease-in-out infinite;
}

@keyframes floatGently {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Hero logo fallback — clean script wordmark, NO box, larger, descender room */
.hero-logo-fallback {
  display: none;
  font-family: var(--font-script);
  font-size: clamp(12rem, 24vw, 19rem);
  line-height: 1.15;
  letter-spacing: -0.04em;
  margin: 0 auto var(--space-md);
  padding: 0.1em 0.18em 0.22em;
  text-align: center;
  background: linear-gradient(
    135deg,
    #7A5A18 0%,
    #B8902F 18%,
    #E5C77F 42%,
    #F4D98C 50%,
    #E5C77F 58%,
    #B8902F 82%,
    #7A5A18 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter:
    drop-shadow(0 6px 18px rgba(140, 106, 31, 0.45))
    drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  animation: floatGently 6s ease-in-out infinite;
}

.hero-logo-fallback.visible { display: inline-block; }

.hero-eyebrow {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.42em;
  color: var(--gold);
  margin-bottom: var(--space-md);
  font-weight: 600;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 9vw, 7rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--ivory);
  margin-bottom: var(--space-md);
  text-wrap: balance;
  padding-bottom: 0.1em;
}

.script-accent {
  font-family: var(--font-script);
  color: var(--gold);
  font-weight: 400;
  font-size: 1.22em;
  font-style: normal;
  display: inline-block;
  letter-spacing: -0.04em;
  padding: 0 0.04em 0.18em;
  line-height: 1.1;
  background: linear-gradient(
    135deg,
    #B8902F 0%,
    #E5C77F 35%,
    #F4D98C 50%,
    #E5C77F 65%,
    #C9A24B 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 6px rgba(201, 162, 75, 0.35));
}

.hero-sub {
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  color: rgba(245, 239, 227, 0.82);
  max-width: 38rem;
  margin: 0 auto var(--space-lg);
  text-wrap: pretty;
  font-weight: 400;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--gold);
  border-bottom: 1.5px solid var(--gold);
  padding: 0.5rem 0.2rem;
  align-self: center;
  transition: gap 0.3s ease, color 0.3s ease;
  font-weight: 600;
}

.hero-cta:hover { gap: 1.3rem; color: var(--gold-bright); }
.hero-cta-arrow { display: inline-block; animation: bobDown 2.5s ease-in-out infinite; }

@keyframes bobDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

.hero-footer {
  position: relative;
  z-index: 1;
  text-align: center;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: rgba(201, 162, 75, 0.65);
  padding-top: var(--space-md);
  font-weight: 600;
}

.motto-divider { margin: 0 1rem; color: var(--gold); }

/* ================ MARQUEE ================ */
.marquee {
  background: var(--purple-night);
  color: var(--gold);
  overflow: hidden;
  padding: 1.4rem 0;
  border-block: 1px solid rgba(201, 162, 75, 0.2);
  position: relative;
}

.marquee::before, .marquee::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.marquee::before { left: 0; background: linear-gradient(90deg, var(--purple-night), transparent); }
.marquee::after { right: 0; background: linear-gradient(270deg, var(--purple-night), transparent); }

.marquee-track {
  display: flex;
  gap: 2.5rem;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
  width: max-content;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  font-weight: 500;
}

.marquee:hover .marquee-track { animation-play-state: paused; }

.marquee-mark { color: var(--gold-bright); }

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ================ MANIFESTO ================ */
.manifesto {
  position: relative;
  background:
    radial-gradient(ellipse at top, rgba(74, 27, 111, 0.55), transparent 60%),
    var(--purple-velvet);
  padding: clamp(5rem, 12vw, 9rem) clamp(1.5rem, 5vw, 5rem);
  text-align: center;
  overflow: hidden;
}

.manifesto-logo {
  width: 110px;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  object-position: center;
  margin: 0 auto var(--space-lg);
  border-radius: 5px;
  position: relative;
  z-index: 1;
  filter:
    drop-shadow(0 8px 22px rgba(201, 162, 75, 0.4))
    drop-shadow(0 2px 6px rgba(0, 0, 0, 0.25));
}

.manifesto-inner {
  max-width: 56rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.manifesto-eyebrow {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.36em;
  color: var(--gold-soft);
  margin-bottom: var(--space-lg);
  font-weight: 600;
}

.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6.5vw, 4.8rem);
  line-height: 1.25;
  color: var(--ivory);
  font-weight: 500;
  margin-bottom: var(--space-md);
  text-wrap: balance;
  letter-spacing: -0.012em;
  padding-bottom: 0.1em;
}

.manifesto-quote .script-accent {
  font-size: 1.3em;
  vertical-align: -0.02em;
}

.manifesto-coda {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  color: var(--gold);
  font-style: italic;
  letter-spacing: 0.01em;
  font-weight: 500;
}

.manifesto-coda em {
  font-style: italic;
  color: var(--gold-bright);
  border-bottom: 1.5px solid rgba(229, 199, 127, 0.5);
  padding-bottom: 2px;
}

/* ================ PANELS ================ */
.panels {
  background: var(--ivory);
  color: var(--ink);
  padding: clamp(4rem, 10vw, 8rem) clamp(1.5rem, 5vw, 5rem);
}

.panel {
  max-width: var(--max-content);
  margin: 0 auto;
  border-bottom: 1px solid rgba(20, 8, 30, 0.10);
}

.panel:first-child { border-top: 1px solid rgba(20, 8, 30, 0.10); }

.panel-trigger {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(1rem, 3vw, 2.5rem);
  align-items: center;
  text-align: left;
  padding: clamp(1.6rem, 3vw, 2.4rem) 0;
  position: relative;
  transition: color 0.3s ease;
}

.panel-trigger::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(201, 162, 75, 0.08), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.panel-trigger:hover::before { opacity: 1; }

.panel-num {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 500;
  color: var(--gold-soft);
  letter-spacing: 0.04em;
  transition: color 0.35s ease;
  font-feature-settings: "lnum" 1, "tnum" 1;
}

.panel-heading {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  min-width: 0;
}

.panel-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.8vw, 2.8rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.012em;
  color: var(--ink);
  text-wrap: balance;
  transition: color 0.3s ease;
}

.panel-teaser {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  color: var(--ink-soft);
  font-weight: 500;
}

.panel-chevron {
  display: inline-flex;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1.5px solid rgba(20, 8, 30, 0.2);
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1),
              background 0.3s ease,
              color 0.3s ease,
              border-color 0.3s ease;
  flex-shrink: 0;
}

.panel:first-child .panel-trigger[aria-expanded="false"] .panel-chevron {
  animation: gentlePulse 2.5s ease-in-out infinite;
}

@keyframes gentlePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 162, 75, 0); }
  50% { box-shadow: 0 0 0 10px rgba(201, 162, 75, 0.22); }
}

.panel-trigger:hover .panel-num { color: var(--gold); }
.panel-trigger:hover .panel-chevron {
  background: var(--purple-royal);
  color: var(--gold);
  border-color: var(--purple-royal);
}

.panel-trigger[aria-expanded="true"] .panel-chevron {
  background: var(--purple-royal);
  color: var(--gold);
  border-color: var(--purple-royal);
  transform: rotate(180deg);
  animation: none;
}

.panel-trigger[aria-expanded="true"] .panel-num { color: var(--gold); }
.panel-trigger[aria-expanded="true"] .panel-title { color: var(--purple-royal); }

.panel-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.55s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.panel-trigger[aria-expanded="true"] + .panel-content {
  grid-template-rows: 1fr;
}

.panel-content > .panel-content-inner {
  overflow: hidden;
  min-height: 0;
}

.panel-content-inner {
  padding: 0 var(--space-sm) clamp(2.8rem, 5vw, 4.5rem) clamp(2.5rem, 6vw, 5rem);
  max-width: var(--max-narrow);
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.5s ease 0.1s,
              transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1) 0.1s;
}

.panel-trigger[aria-expanded="true"] + .panel-content .panel-content-inner {
  opacity: 1;
  transform: translateY(0);
}

/* ================ INNER TYPOGRAPHY ================ */
.lead {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: var(--space-md);
  text-wrap: pretty;
  font-weight: 500;
}

.lead strong { color: var(--purple-royal); font-weight: 600; }
.lead em { font-style: italic; color: var(--purple-royal); }

.panel-content-inner p {
  margin-bottom: var(--space-md);
  color: var(--ink-soft);
}

.panel-content-inner p strong {
  color: var(--purple-royal);
  font-weight: 700;
  background: linear-gradient(180deg, transparent 65%, rgba(201, 162, 75, 0.25) 65%);
}

.section-h {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--purple-royal);
  margin: var(--space-lg) 0 var(--space-sm);
  padding-bottom: 0.4rem;
  border-bottom: 1.5px solid var(--gold);
  display: inline-block;
}

.section-h:first-child { margin-top: 0; }

.pull-quote {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.4;
  color: var(--purple-royal);
  text-align: center;
  margin: var(--space-lg) 0 var(--space-sm);
  font-style: italic;
  text-wrap: balance;
  font-weight: 500;
  padding-bottom: 0.15em;
}

.pull-quote .script-accent {
  color: var(--gold);
  font-style: normal;
  font-size: 1.5em;
}

/* Value grid */
.value-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin: var(--space-lg) 0;
}

@media (min-width: 720px) { .value-grid { grid-template-columns: repeat(3, 1fr); } }

.value {
  padding: var(--space-md);
  background: var(--cream);
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(201, 162, 75, 0.32);
  transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1),
              box-shadow 0.3s ease,
              border-color 0.3s ease;
  cursor: default;
}

.value:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 50px -24px rgba(74, 27, 111, 0.45);
  border-color: var(--gold);
}

.value-mark {
  display: block;
  color: var(--gold);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  transition: transform 0.3s ease;
}

.value:hover .value-mark { transform: rotate(180deg) scale(1.2); }

.value h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  margin-bottom: 0.4rem;
  color: var(--ink);
}

.value p { font-size: 0.97rem; margin: 0; color: var(--ink-soft); }

/* Timeline */
.timeline {
  display: grid;
  gap: var(--space-md);
  margin: var(--space-lg) 0;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 14px;
  bottom: 14px;
  width: 1.5px;
  background: linear-gradient(180deg, var(--gold) 0%, rgba(201, 162, 75, 0.1) 100%);
}

.step {
  padding-left: var(--space-md);
  position: relative;
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.step.in { opacity: 1; transform: translateX(0); }

.step::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 4px var(--ivory), 0 0 0 5px var(--gold);
  transition: transform 0.3s ease;
}

.step:hover::before { transform: scale(1.35); }

.step-time {
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--gold-soft);
  margin-bottom: 0.3rem;
  font-weight: 700;
}

.step h4 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: var(--ink);
  transition: color 0.3s ease;
}

.step:hover h4 { color: var(--purple-royal); }

.step p { margin: 0; font-size: 0.98rem; }

.step p strong {
  color: var(--purple-royal);
  font-weight: 700;
  background: linear-gradient(180deg, transparent 65%, rgba(201, 162, 75, 0.28) 65%);
}

/* Stepper */
.stepper {
  display: grid;
  gap: var(--space-sm);
  margin: var(--space-md) 0 var(--space-lg);
}

.stepper li {
  padding: var(--space-md);
  background: var(--cream);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1),
              box-shadow 0.3s ease,
              border-left-width 0.3s ease;
  opacity: 0;
  transform: translateX(-12px);
}

.stepper li.in { opacity: 1; transform: translateX(0); }

.stepper li:hover {
  transform: translateX(6px);
  box-shadow: 0 18px 36px -22px rgba(74, 27, 111, 0.35);
  border-left-width: 5px;
}

.stepper-num {
  display: inline-block;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--gold-soft);
  margin-bottom: 0.3rem;
  font-weight: 700;
}

.stepper h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: var(--purple-royal);
}

.stepper p { margin: 0; font-size: 0.97rem; color: var(--ink-soft); }

/* Callout */
.callout {
  background: var(--purple-royal);
  color: var(--ivory);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  margin: var(--space-lg) 0;
  border: 1.5px solid var(--gold);
  position: relative;
  overflow: hidden;
}

.callout::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: radial-gradient(ellipse at top right, rgba(201, 162, 75, 0.2), transparent 60%);
  pointer-events: none;
}

.callout > * { position: relative; }

.callout h4 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--gold);
}

.callout p {
  margin: 0;
  color: rgba(245, 239, 227, 0.95);
  font-size: 0.99rem;
}

.callout p strong {
  color: var(--gold-bright);
  font-weight: 700;
  background: none;
}

.closing { font-style: italic; color: var(--ink-soft); }

/* ================ VERSUS + TRAIT SELF-ASSESS ================ */
.trait-intro {
  font-family: var(--font-body);
  font-size: 0.96rem !important;
  color: var(--gold-soft) !important;
  font-style: italic;
  margin-bottom: var(--space-sm) !important;
}

.trait-intro strong { color: var(--purple-royal); font-weight: 700; background: none; }

.versus {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
  margin: var(--space-md) 0 var(--space-lg);
}

@media (min-width: 720px) { .versus { grid-template-columns: 1fr 1fr; } }

.versus-col {
  padding: var(--space-md);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
}

.versus-thrive {
  background: var(--purple-royal);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}

.versus-thrive::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: radial-gradient(ellipse at top left, rgba(201, 162, 75, 0.18), transparent 65%);
  pointer-events: none;
}

.versus-thrive > * { position: relative; }

.versus-fail {
  background: var(--cream);
  color: var(--ink);
  border: 1.5px solid rgba(20, 8, 30, 0.1);
}

.versus-label {
  display: block;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: var(--space-sm);
  padding-bottom: 0.5rem;
  border-bottom: 1.5px solid currentColor;
  font-weight: 800;
}

.versus-thrive .versus-label { color: var(--gold); border-color: var(--gold); }
.versus-fail .versus-label { color: var(--purple-royal); }

.trait-list { display: grid; gap: 0.2rem; flex: 1; }

.trait {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 0.85rem;
  row-gap: 0;
  width: 100%;
  text-align: left;
  padding: 0.7rem 0.6rem;
  color: inherit;
  border-radius: 8px;
  transition: background 0.25s ease;
  position: relative;
}

.trait:hover { background: rgba(201, 162, 75, 0.1); }
.versus-fail .trait:hover { background: rgba(74, 27, 111, 0.07); }

.trait-check {
  width: 22px;
  height: 22px;
  border: 2px solid currentColor;
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 0.12em;
  transition: all 0.25s ease;
  opacity: 0.65;
}

.trait[aria-pressed="true"] .trait-check {
  opacity: 1;
  transform: scale(1.08);
}

.versus-thrive .trait[aria-pressed="true"] .trait-check {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 14px rgba(201, 162, 75, 0.5);
}

.versus-thrive .trait[aria-pressed="true"] .trait-check::after {
  content: "✓";
  color: var(--purple-royal);
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1;
}

.versus-fail .trait[aria-pressed="true"] .trait-check {
  background: var(--purple-royal);
  border-color: var(--purple-royal);
}

.versus-fail .trait[aria-pressed="true"] .trait-check::after {
  content: "✓";
  color: var(--ivory);
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1;
}

.trait-text {
  font-size: 0.99rem;
  line-height: 1.45;
  align-self: center;
  font-weight: 500;
}

.trait-detail {
  grid-column: 2;
  font-size: 0.86rem;
  font-style: italic;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.3s ease, max-height 0.4s ease, margin-top 0.3s ease;
  margin-top: 0;
}

.versus-thrive .trait-detail { color: var(--gold-bright); }
.versus-fail .trait-detail { color: var(--purple-royal); }

.trait[aria-pressed="true"] .trait-detail,
.trait:hover .trait-detail {
  opacity: 0.95;
  max-height: 3.5em;
  margin-top: 0.35rem;
}

.trait-count {
  margin-top: var(--space-md) !important;
  padding-top: var(--space-sm);
  border-top: 1px solid currentColor;
  font-size: 0.8rem !important;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  text-align: right;
  color: inherit !important;
  font-weight: 600;
}

.trait-count span {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  font-style: italic;
  margin: 0 0.2rem;
}

.versus-thrive .trait-count { color: rgba(245, 239, 227, 0.85) !important; }
.versus-thrive .trait-count span { color: var(--gold); }
.versus-fail .trait-count { color: var(--ink-soft) !important; }
.versus-fail .trait-count span { color: var(--purple-royal); }

/* ================ PROOF GRIDS ================ */
.placeholder-note {
  font-size: 0.84rem;
  color: var(--gold-soft) !important;
  font-style: italic;
  margin-bottom: var(--space-sm) !important;
}

.placeholder-note code {
  background: rgba(201, 162, 75, 0.14);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  font-size: 0.9em;
  color: var(--purple-royal);
  font-style: normal;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-weight: 600;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

@media (min-width: 720px) { .testimonial-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial {
  background: var(--cream);
  border: 1.5px solid rgba(201, 162, 75, 0.35);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 44px -22px rgba(74, 27, 111, 0.4);
}

.testimonial blockquote {
  font-family: var(--font-display);
  font-size: 1.18rem;
  line-height: 1.45;
  color: var(--ink);
  font-style: italic;
  font-weight: 500;
  flex: 1;
}

.testimonial footer {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  border-top: 1.5px solid var(--gold);
  padding-top: 0.7rem;
}

.testimonial cite { font-style: normal; font-weight: 700; color: var(--purple-royal); }
.testimonial footer span { font-size: 0.85rem; color: var(--ink-soft); }

.testimonial-photo {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 2.5px solid var(--gold);
  box-shadow: 0 8px 22px -10px rgba(74, 27, 111, 0.45);
  align-self: flex-start;
}

.testimonial-stat {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.9rem;
  padding: 0.65rem 0.85rem;
  background: linear-gradient(135deg, rgba(74, 27, 111, 0.06), rgba(201, 162, 75, 0.10));
  border-left: 3px solid var(--gold);
  border-radius: 4px;
  margin-top: -0.25rem;
}
.testimonial-stat strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--purple-royal);
  line-height: 1;
}
.testimonial-stat span {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  align-self: center;
}

.income-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.income-tile, .reel, .culture-tile { margin: 0; }

.ph-img, .ph-video {
  aspect-ratio: 4 / 3;
  background:
    repeating-linear-gradient(135deg, rgba(74, 27, 111, 0.04) 0 10px, transparent 10px 22px),
    var(--ivory-warm);
  border: 1.5px dashed rgba(74, 27, 111, 0.3);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-soft);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.ph-img:hover, .ph-video:hover {
  transform: scale(1.02);
  border-color: var(--gold);
}

.culture-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 130px;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.culture-tile {
  overflow: hidden;
  border-radius: var(--radius-sm);
  position: relative;
  cursor: pointer;
  border: 1.5px solid rgba(201, 162, 75, 0.3);
  box-shadow: 0 14px 36px -22px rgba(0, 0, 0, 0.45);
  transition: border-color 0.3s ease, box-shadow 0.35s ease, transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.culture-tile .ph-img { aspect-ratio: auto; height: 100%; }
.culture-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.4s ease;
}
.culture-tile:hover,
.culture-tile:focus-visible {
  border-color: var(--gold-bright);
  box-shadow: 0 24px 50px -22px rgba(0, 0, 0, 0.55);
  transform: translateY(-3px);
  outline: none;
}
.culture-tile:hover img,
.culture-tile:focus-visible img { transform: scale(1.04); filter: brightness(0.85); }

.culture-expand {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(14, 4, 24, 0.55);
  border: 1px solid rgba(201, 162, 75, 0.55);
  color: var(--gold);
  backdrop-filter: blur(6px);
  opacity: 0;
  transform: translateY(-4px) scale(0.92);
  transition: opacity 0.28s ease, transform 0.28s cubic-bezier(0.2, 0.7, 0.2, 1), background 0.25s ease, color 0.25s ease;
  pointer-events: none;
  z-index: 2;
}
.culture-tile:hover .culture-expand,
.culture-tile:focus-visible .culture-expand {
  opacity: 1;
  transform: translateY(0) scale(1);
  background: var(--gold);
  color: var(--purple-night);
}

/* Touch devices: keep the icon faintly visible since there's no hover */
@media (hover: none) {
  .culture-expand { opacity: 0.85; transform: none; }
}

/* Mosaic — 8-tile varied layout on 6-col grid */
.ct-1 { grid-column: span 4; grid-row: span 2; }
.ct-2 { grid-column: span 2; grid-row: span 1; }
.ct-3 { grid-column: span 2; grid-row: span 1; }
.ct-4 { grid-column: span 3; grid-row: span 1; }
.ct-5 { grid-column: span 3; grid-row: span 1; }
.ct-6 { grid-column: span 2; grid-row: span 2; }
.ct-7 { grid-column: span 4; grid-row: span 1; }
.ct-8 { grid-column: span 4; grid-row: span 1; }

@media (max-width: 880px) {
  .culture-grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 120px; }
  .ct-1 { grid-column: span 4; grid-row: span 2; }
  .ct-2, .ct-3 { grid-column: span 2; grid-row: span 1; }
  .ct-4, .ct-5 { grid-column: span 2; grid-row: span 1; }
  .ct-6 { grid-column: span 2; grid-row: span 2; }
  .ct-7 { grid-column: span 2; grid-row: span 1; }
  .ct-8 { grid-column: span 2; grid-row: span 1; }
}

@media (max-width: 520px) {
  .culture-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .ct-1, .ct-2, .ct-3, .ct-4, .ct-5, .ct-6, .ct-7, .ct-8 {
    grid-column: span 1; grid-row: span 1;
  }
  .ct-1 { grid-column: span 2; grid-row: span 2; }
}

.culture-coda {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  font-style: italic;
  line-height: 1.45;
  color: var(--ink);
  text-align: center;
  max-width: 60ch;
  margin: var(--space-md) auto var(--space-lg);
  padding: 0 var(--space-sm);
}
.culture-coda .script-accent { font-size: 1.2em; }

.reels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.reel .ph-video { aspect-ratio: 9 / 16; }
.featured-video { margin: 0 0 var(--space-lg); }
.ph-video-wide { aspect-ratio: 16 / 9; }

/* ===== Video cards (branded play tiles) ===== */
.video-card {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  font: inherit;
  color: var(--ivory);
  text-align: left;
  cursor: pointer;
  overflow: hidden;
  border: 1.5px solid rgba(201, 162, 75, 0.45);
  border-radius: var(--radius-md);
  background:
    radial-gradient(ellipse at 30% 20%, rgba(201, 162, 75, 0.18), transparent 55%),
    radial-gradient(ellipse at 80% 90%, rgba(74, 27, 111, 0.55), transparent 60%),
    linear-gradient(160deg, var(--purple-deep) 0%, var(--purple-night) 100%);
  box-shadow: 0 18px 44px -22px rgba(0, 0, 0, 0.55);
  transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.35s ease, border-color 0.3s ease;
}
.video-card:hover,
.video-card:focus-visible {
  transform: translateY(-4px);
  border-color: var(--gold-bright);
  box-shadow: 0 28px 60px -22px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(201, 162, 75, 0.45);
  outline: none;
}

.video-card-reel { aspect-ratio: 9 / 16; }
.video-card-feature {
  aspect-ratio: 16 / 9;
  background-image:
    linear-gradient(180deg, rgba(14, 4, 24, 0.25) 0%, rgba(14, 4, 24, 0.85) 100%),
    var(--poster, none),
    radial-gradient(ellipse at 30% 20%, rgba(201, 162, 75, 0.18), transparent 55%),
    linear-gradient(160deg, var(--purple-deep) 0%, var(--purple-night) 100%);
  background-size: cover, cover, auto, auto;
  background-position: center, center, center, center;
}

.video-card-platform {
  position: absolute;
  top: 14px;
  right: 14px;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ivory);
  padding: 0.35rem 0.7rem;
  background: rgba(14, 4, 24, 0.55);
  border: 1px solid rgba(201, 162, 75, 0.45);
  border-radius: 999px;
  backdrop-filter: blur(6px);
  z-index: 2;
}

.video-card-mark {
  position: absolute;
  bottom: 18px;
  left: 18px;
  font-family: var(--font-script);
  font-size: 2.4rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.55;
  z-index: 2;
  pointer-events: none;
}

.video-card-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--purple-night);
  box-shadow: 0 0 0 6px rgba(201, 162, 75, 0.18), 0 14px 30px -10px rgba(0, 0, 0, 0.55);
  transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1), background 0.3s ease, box-shadow 0.3s ease;
  z-index: 2;
}
.video-card-play svg { margin-left: 3px; }
.video-card-play-lg { width: 78px; height: 78px; }
.video-card:hover .video-card-play,
.video-card:focus-visible .video-card-play {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--gold-bright);
  box-shadow: 0 0 0 10px rgba(201, 162, 75, 0.25), 0 18px 36px -10px rgba(0, 0, 0, 0.6);
}

.video-card-label {
  position: absolute;
  bottom: 18px;
  right: 18px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--ivory);
  z-index: 2;
}

.video-card-feature .video-card-mark { font-size: 3rem; bottom: 22px; left: 24px; }
.video-card-feature .video-card-label { font-size: 0.92rem; bottom: 22px; right: 24px; }

/* ===== Lightbox modal ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 3rem);
  opacity: 0;
  transition: opacity 0.32s ease;
}
.lightbox.is-open {
  display: flex;
  opacity: 1;
}
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(14, 4, 24, 0.88);
  backdrop-filter: blur(10px);
}
.lightbox-frame {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 960px;
  max-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: lbPop 0.35s cubic-bezier(0.2, 0.7, 0.2, 1);
}
@keyframes lbPop {
  from { opacity: 0; transform: scale(0.96) translateY(8px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.lightbox-stage {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1.5px solid rgba(201, 162, 75, 0.4);
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.7);
  background: var(--purple-night);
}
.lightbox-stage iframe,
.lightbox-stage video {
  display: block;
  width: 100%;
  border: none;
  background: var(--purple-night);
}
.lightbox[data-orientation="landscape"] .lightbox-frame { max-width: 1040px; }
.lightbox[data-orientation="landscape"] .lightbox-stage iframe,
.lightbox[data-orientation="landscape"] .lightbox-stage video { aspect-ratio: 16 / 9; }
.lightbox[data-orientation="portrait"] .lightbox-frame { max-width: min(420px, 92vw); }
.lightbox[data-orientation="portrait"] .lightbox-stage { aspect-ratio: 9 / 16; max-height: 88vh; }
.lightbox[data-orientation="portrait"] .lightbox-stage iframe,
.lightbox[data-orientation="portrait"] .lightbox-stage video { height: 100%; aspect-ratio: auto; object-fit: contain; }

.lightbox[data-orientation="image"] .lightbox-frame { max-width: min(1280px, 96vw); }
.lightbox[data-orientation="image"] .lightbox-stage {
  background: transparent;
  border: none;
  box-shadow: none;
  overflow: visible;
  max-height: 92vh;
}
.lightbox[data-orientation="image"] .lightbox-stage img {
  display: block;
  max-width: 100%;
  max-height: 92vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(201, 162, 75, 0.45);
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.7);
  background: var(--purple-night);
  margin: 0 auto;
}

.lightbox-close {
  position: absolute;
  top: -52px;
  right: -4px;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--ivory);
  border: 1.5px solid rgba(245, 239, 227, 0.45);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
  z-index: 2;
}
.lightbox-close:hover,
.lightbox-close:focus-visible {
  background: var(--gold);
  color: var(--purple-night);
  border-color: var(--gold);
  transform: scale(1.05);
  outline: none;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(14, 4, 24, 0.55);
  color: var(--ivory);
  border: 1.5px solid rgba(201, 162, 75, 0.45);
  border-radius: 50%;
  cursor: pointer;
  backdrop-filter: blur(8px);
  z-index: 2;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.lightbox-prev { left: clamp(0.5rem, 3vw, 2.5rem); }
.lightbox-next { right: clamp(0.5rem, 3vw, 2.5rem); }
.lightbox-nav:hover,
.lightbox-nav:focus-visible {
  background: var(--gold);
  color: var(--purple-night);
  border-color: var(--gold);
  transform: translateY(-50%) scale(1.06);
  outline: none;
}

.lightbox[data-orientation="image"].is-open .lightbox-nav { display: inline-flex; }

.lightbox-counter {
  position: absolute;
  bottom: -38px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 239, 227, 0.7);
  pointer-events: none;
}

.lightbox-stage img.is-entering { opacity: 0; transform: scale(0.985); }
.lightbox-stage img { transition: opacity 0.28s ease, transform 0.32s cubic-bezier(0.2, 0.7, 0.2, 1); }

@media (max-width: 640px) {
  .lightbox-nav { width: 44px; height: 44px; }
  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }
}

body.lightbox-locked { overflow: hidden; }

/* ================ CTA ================ */
.cta {
  background:
    radial-gradient(ellipse at top, rgba(201, 162, 75, 0.2), transparent 60%),
    var(--purple-deep);
  color: var(--ivory);
  padding: clamp(5rem, 10vw, 8rem) clamp(1.5rem, 5vw, 5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "eo";
  position: absolute;
  font-family: var(--font-script);
  font-size: clamp(20rem, 50vw, 50rem);
  color: rgba(201, 162, 75, 0.05);
  left: -10%;
  top: -30%;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.05em;
}

.cta-inner { max-width: 42rem; margin: 0 auto; position: relative; z-index: 1; }

.cta-logo {
  width: 120px;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  object-position: center;
  margin: 0 auto var(--space-md);
  border-radius: 5px;
  filter:
    drop-shadow(0 10px 26px rgba(201, 162, 75, 0.45))
    drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
}

.cta-eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.34em;
  color: var(--gold);
  margin-bottom: var(--space-sm);
  font-weight: 700;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: var(--space-md);
  text-wrap: balance;
  padding-bottom: 0.05em;
}

.cta-sub {
  font-size: 1.12rem;
  color: rgba(245, 239, 227, 0.82);
  margin-bottom: var(--space-lg);
  text-wrap: pretty;
}

.cta-button {
  display: inline-block;
  padding: 1.15rem 2.6rem;
  background: linear-gradient(135deg, #B8902F 0%, #E5C77F 50%, #C9A24B 100%);
  color: var(--purple-velvet);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.88rem;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  will-change: transform;
  box-shadow: 0 14px 30px -14px rgba(201, 162, 75, 0.5);
}

.cta-button:hover {
  box-shadow: 0 28px 56px -22px rgba(201, 162, 75, 0.8);
}

.cta-button:active { transform: scale(0.96) !important; }

/* ================ FOOTER ================ */
.footer {
  background: var(--purple-velvet);
  color: rgba(245, 239, 227, 0.6);
  padding: var(--space-lg) clamp(1.5rem, 5vw, 5rem);
  border-top: 1px solid rgba(201, 162, 75, 0.18);
}

.footer-inner {
  max-width: var(--max-content);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
  font-size: 0.86rem;
  letter-spacing: 0.08em;
}

.footer-mark {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold);
  letter-spacing: 0.06em;
  font-weight: 600;
}

.footer-tag { font-style: italic; }

/* ================ SCROLL REVEAL ================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.in { opacity: 1; transform: translateY(0); }

/* ================ A11Y ================ */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  html { scroll-behavior: auto; }
  .marquee-track { animation: none !important; }
}
