/**
 * The Higher Mind Workshop — landing page styles
 * Tone: bright cream + selective dark drama, gold accents, elegant for women.
 * Dark hero / venue / sticky; light editorial sections in between.
 */

:root {
  --bg: #f9f7f2;
  --bg-raised: #ffffff;
  --bg-soft: #f1ebe0;
  --bg-ink: #000000;
  --bg-ink-soft: #121110;
  --text: #14110e;
  --text-muted: rgba(20, 17, 14, 0.72);
  --text-subtle: rgba(20, 17, 14, 0.52);
  --border: rgba(20, 17, 14, 0.1);
  --gold: #c79d32;
  --gold-light: #d4b45a;
  --gold-mid: #b89028;
  --accent: #c79d32;
  --accent-hover: #b89028;
  --accent-contrast: #f9f7f2;
  --cta: #c79d32;
  --cta-hover: #b89028;
  --cta-text: #0a0a0a;
  --cta-soft: rgba(199, 157, 50, 0.16);
  --strike: rgba(20, 17, 14, 0.38);
  --vip-badge: #0a0a0a;
  --shadow: 0 1px 2px rgba(20, 17, 14, 0.04), 0 18px 48px rgba(20, 17, 14, 0.08);
  --font-serif: "Cormorant Garamond", "Iowan Old Style", Palatino, Georgia, serif;
  --font-sans: "Montserrat", "Segoe UI", system-ui, -apple-system, sans-serif;
  /* Body copy — clean geometric sans (matches landing body reference) */
  --font-body: var(--font-sans);
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4.5rem;
  --space-9: 6.5rem;
  --width: 68rem;
  --width-narrow: 38rem;
  --width-prose: 42rem;
  --radius: 4px;
  --radius-btn: 20px;
  --radius-card: 16px;
  --header-h: 4rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

body:has(.sticky-cta:not([hidden])) {
  padding-bottom: 5.5rem;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold-mid);
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--cta);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--bg-ink);
  color: var(--accent-contrast);
  padding: var(--space-2) var(--space-4);
  z-index: 100;
}

.skip-link:focus {
  left: var(--space-4);
  top: var(--space-4);
}

.container {
  width: min(100% - 2rem, var(--width));
  margin-inline: auto;
}

.container--narrow {
  width: min(100% - 2rem, var(--width-narrow));
}

.container--prose {
  width: min(100% - 2rem, var(--width-prose));
}

/* ——— Site header (MMI-style white bar) ——— */
.site-top {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.site-top__inner {
  min-height: 4rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: var(--space-4);
}

.site-top__brand {
  font-family: var(--font-sans);
  font-size: clamp(0.72rem, 1.6vw, 0.88rem);
  font-weight: 800;
  color: #0a0a0a;
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  justify-self: start;
  line-height: 1.25;
  max-width: 14rem;
}

.site-top__brand:hover {
  color: var(--gold);
}

.site-top__meta {
  margin: 0;
  justify-self: center;
  text-align: center;
  font-size: clamp(0.68rem, 1.5vw, 0.78rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0a0a0a;
  white-space: nowrap;
}

.site-top__cta {
  justify-self: end;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: #0a0a0a;
  background: var(--gold);
  padding: 0.7rem 1.15rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-family: var(--font-sans);
  box-shadow: none;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}

.site-top__cta:hover {
  background: var(--gold-mid);
  color: #0a0a0a;
  transform: translateY(-1px);
  box-shadow: none;
}

@media (max-width: 820px) {
  .site-top__inner {
    grid-template-columns: 1fr auto;
    row-gap: 0.35rem;
    padding-block: 0.55rem;
  }

  .site-top__meta {
    grid-column: 1 / -1;
    order: 3;
    justify-self: center;
    white-space: normal;
  }

  .site-top__brand {
    max-width: none;
  }
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 1.1rem 1.85rem;
  border: 2px solid transparent;
  border-radius: var(--radius-btn);
  font-family: var(--font-sans);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  transition: background 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}

.btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.5);
}

.btn--primary {
  background: var(--cta);
  color: var(--cta-text);
  border-color: rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 28px rgba(199, 157, 50, 0.28);
}

.btn--primary:hover {
  background: var(--cta-hover);
  color: var(--cta-text);
  box-shadow: 0 16px 36px rgba(199, 157, 50, 0.36);
}

.btn--block {
  width: 100%;
}

.btn--vip {
  background: var(--cta);
  color: var(--cta-text);
  border-color: var(--gold);
  box-shadow: 0 10px 28px rgba(255, 246, 106, 0.4);
}

.btn--vip:hover {
  background: var(--cta-hover);
  color: var(--cta-text);
  box-shadow: 0 16px 36px rgba(255, 246, 106, 0.5);
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h, 4rem));
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: #000;
  padding: 0;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #000;
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.05) 0%,
      rgba(0, 0, 0, 0.12) 36%,
      rgba(0, 0, 0, 0.55) 54%,
      rgba(0, 0, 0, 0.9) 70%,
      #000 84%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.22) 0%, transparent 20%, transparent 72%, rgba(0, 0, 0, 0.4) 100%);
  pointer-events: none;
}

.hero__media img,
.hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Keep her face in the open left half, clear of the copy */
  object-position: 22% center;
}

.hero__shell {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  margin: 0;
  /* Start copy further right so her face stays clear */
  padding:
    clamp(2.5rem, 7vh, 5rem)
    clamp(1.25rem, 4.5vw, 3.75rem)
    clamp(1.75rem, 4vh, 3rem)
    clamp(50%, 54vw, 60%);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex: 1;
}

.hero__content {
  width: 100%;
  max-width: 32rem;
  margin: 0;
  padding: 0;
  animation: rise-in 0.9s var(--ease) both;
}

.hero__kicker {
  margin: 0 0 0.55rem;
  font-family: var(--font-sans);
  font-size: clamp(0.72rem, 1.05vw, 0.82rem);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.35;
}

.hero h1 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(2.55rem, 5.6vw, 4.15rem);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  color: #fff;
}

.hero__em {
  color: var(--gold);
  font-style: normal;
  font-weight: 700;
}

.hero__lead {
  margin: 1.25rem 0 0;
  max-width: 28rem;
  font-family: var(--font-sans);
  font-size: clamp(1rem, 1.45vw, 1.12rem);
  font-weight: 500;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
}

.hero__sub,
.hero__trust {
  display: none;
}

.hero__actions {
  margin-top: 1.85rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
}

.btn--hero {
  border-radius: 6px;
  padding: 1.05rem 1.7rem;
  font-size: clamp(0.8rem, 1.05vw, 0.92rem);
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  box-shadow: none;
}

.btn--hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(199, 157, 50, 0.28);
}

.hero__micro {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
}

.hero__press {
  margin-top: 2.5rem;
  width: 100%;
  background: transparent;
  border: 0;
  padding: 0;
}

.hero__press-inner {
  display: none;
}

.hero__press-label {
  display: none;
}

.hero__press-logos {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.55rem 0.75rem;
}

.hero__press-logos li {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 1 auto;
  min-width: 0;
}

.hero__press-logos img {
  display: block;
  height: 1.35rem;
  width: auto;
  max-width: 3.75rem;
  object-fit: contain;
  opacity: 0.95;
}

/* Circular badge (Itsy Bitsy) needs a touch more size to stay readable */
.hero__press-logos img[alt="Itsy Bitsy FM"] {
  height: 1.7rem;
  max-width: 1.7rem;
}

@media (min-width: 900px) {
  .hero__press-logos {
    gap: 0.65rem 0.9rem;
  }

  .hero__press-logos img {
    height: 1.55rem;
    max-width: 4.25rem;
  }

  .hero__press-logos img[alt="Itsy Bitsy FM"] {
    height: 1.9rem;
    max-width: 1.9rem;
  }

  .hero__content {
    max-width: 33rem;
  }
}

@media (min-width: 1200px) {
  .hero__shell {
    padding-left: clamp(52%, 56vw, 60%);
    padding-right: clamp(1.75rem, 5vw, 4rem);
  }

  .hero h1 {
    font-size: clamp(3.1rem, 4.6vw, 4.35rem);
  }
}

.hero__date,
.hero__brand {
  display: none;
}

.eyebrow {
  margin: 0 0 var(--space-4);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1.5;
}

@media (max-width: 820px) {
  .hero {
    min-height: auto;
    flex-direction: column;
  }

  .hero__media {
    position: relative;
    inset: auto;
    height: min(58vw, 22rem);
    flex-shrink: 0;
  }

  .hero__media img {
    object-position: 42% 22%;
  }

  .hero__media::after {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.2) 45%, rgba(0, 0, 0, 0.85) 82%, #000 100%);
  }

  .hero__shell {
    max-width: none;
    padding: 1.35rem 1.15rem 2rem;
    justify-content: flex-start;
    align-items: flex-start;
    background: #000;
  }

  .hero__content {
    width: 100%;
    max-width: none;
  }

  .hero h1 {
    font-size: clamp(2.15rem, 9.2vw, 2.85rem);
  }

  .hero__lead {
    max-width: none;
  }

  .hero__press {
    margin-top: 1.75rem;
  }

  .hero__press-logos {
    gap: 0.4rem 0.5rem;
  }

  .hero__press-logos img {
    height: 1.15rem;
    max-width: 3.1rem;
  }

  .hero__press-logos img[alt="Itsy Bitsy FM"] {
    height: 1.45rem;
    max-width: 1.45rem;
  }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ——— Workshop banner (after hero) ——— */
.workshop-banner {
  background: var(--bg-ink);
  padding: clamp(3.5rem, 8vw, 5.5rem) clamp(1rem, 4vw, 2.5rem) clamp(1.5rem, 3.5vw, 2.5rem);
  text-align: center;
  border-block: 1px solid rgba(255, 255, 255, 0.06);
}

.workshop-banner__intro {
  max-width: 40rem;
  margin: 0 auto clamp(1.75rem, 4vw, 2.75rem);
}

.workshop-banner .eyebrow {
  text-align: center;
  color: var(--gold);
}

.workshop-banner .section-heading {
  margin: 0;
  color: #f6f2ea;
}

.workshop-banner__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.workshop-banner img {
  display: block;
  width: 100%;
  height: auto;
}

/* ——— Urgency strip / marquee ——— */
.urgency-strip {
  background: var(--cta);
  color: var(--cta-text);
  overflow: hidden;
  border-block: 1px solid rgba(0, 0, 0, 0.12);
}

.urgency-strip__track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
  padding: 0.65rem 0;
}

.urgency-strip__item {
  flex-shrink: 0;
  padding: 0 2rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

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

@media (prefers-reduced-motion: reduce) {
  .urgency-strip__track {
    animation: none;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .urgency-strip__item:nth-child(n + 3) {
    display: none;
  }
}

/* ——— Credibility bar ——— */
.credibility {
  padding: clamp(2.75rem, 6vw, 4rem) 0;
  background: var(--bg-ink);
  border-block: 1px solid var(--border);
}

.credibility__grid {
  display: grid;
  gap: var(--space-6);
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 720px) {
  .credibility__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-5);
  }
}

.credibility__item {
  text-align: center;
  padding: var(--space-2) var(--space-3);
  border: none;
  background: none;
}

.credibility__stat {
  display: block;
  font-family: var(--font-sans);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--cta);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-3);
}

.credibility__label {
  margin: 0 auto;
  max-width: 14rem;
  font-size: 0.92rem;
  font-weight: 400;
  color: rgba(246, 242, 234, 0.72);
  line-height: 1.45;
}

/* ——— Press / as featured in ——— */
.press {
  padding: clamp(2rem, 5vw, 3rem) 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.press__inner {
  max-width: 56rem;
}

.press__logos {
  width: 100%;
  height: auto;
  margin-inline: auto;
  display: block;
}

/* ——— Problem (bright editorial “truth” band) ——— */
.problem {
  padding: clamp(4rem, 10vw, 6.5rem) 0;
  background: var(--bg);
  text-align: center;
}

.problem__inner {
  max-width: min(100% - 2rem, 58rem);
}

.problem__label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 0 0 var(--space-5);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.problem__label::before,
.problem__label::after {
  content: "";
  width: min(4.5rem, 18vw);
  height: 1px;
  background: rgba(20, 17, 14, 0.22);
}

.problem__title {
  margin: 0 auto;
  max-width: 30rem;
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 4.8vw, 3rem);
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: -0.01em;
  color: #0a0a0a;
  text-wrap: balance;
}

.problem__title-em {
  color: var(--gold);
  font-style: italic;
}

.problem__body {
  margin-top: var(--space-5);
}

.problem__achievements,
.problem__bridge,
.problem__pivot,
.problem__close {
  margin: 0 auto;
  max-width: 34rem;
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-muted);
}

.problem__achievements {
  margin-top: 0;
}

.problem__bridge {
  margin-top: var(--space-5);
}

.problem__search-grid {
  list-style: none;
  margin: var(--space-5) auto 0;
  padding: 0;
  display: grid;
  gap: var(--space-4);
  max-width: 54rem;
}

@media (min-width: 700px) {
  .problem__search-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4) var(--space-5);
  }
}

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

.problem__search-grid li {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(20, 17, 14, 0.1);
  box-shadow: 0 10px 28px rgba(20, 17, 14, 0.08);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.problem__search-grid li.is-visible,
.problem__search-grid li.reveal.is-visible {
  transform: translateY(0);
}

.problem__search-grid img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 7;
  object-fit: contain;
  object-position: center;
  background: #fff;
  padding: 0.35rem 0.5rem;
}

.problem__pivot {
  margin-top: var(--space-6);
}

.problem__close {
  margin-top: var(--space-4);
  /* Same font family/size as the line above; keep gold italic emphasis */
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-muted);
}

.thinking-flow {
  margin: clamp(2.75rem, 6.5vw, 4.25rem) auto;
  max-width: 36rem;
  display: grid;
  gap: 0.85rem;
  text-align: center;
}

.thinking-flow__row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.65rem;
}

.thinking-flow__node {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  border: 1.5px solid rgba(199, 157, 50, 0.45);
  background: #fff;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: clamp(0.78rem, 2.1vw, 0.95rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.25;
}

.thinking-flow__arrow {
  color: var(--gold);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
}

.thinking-flow__row--dim .thinking-flow__node {
  color: rgba(20, 17, 14, 0.48);
  border-color: rgba(20, 17, 14, 0.14);
  background: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

.thinking-flow__row--dim .thinking-flow__arrow {
  color: rgba(199, 157, 50, 0.45);
}

.thinking-flow__row--alert .thinking-flow__node {
  color: #b42318;
  border-color: rgba(180, 35, 24, 0.55);
  background: rgba(180, 35, 24, 0.06);
  font-weight: 700;
}

.thinking-flow__row--alert .thinking-flow__arrow {
  color: #b42318;
}

.thinking-flow__row--strong .thinking-flow__node {
  border-color: rgba(199, 157, 50, 0.75);
  box-shadow: 0 0 0 1px rgba(199, 157, 50, 0.12);
}

.thinking-flow__row--win .thinking-flow__node {
  color: #0a0a0a;
  border-color: var(--gold);
  background: var(--gold);
  box-shadow: 0 8px 22px rgba(199, 157, 50, 0.28);
  font-weight: 800;
}

.thinking-flow__row--win .thinking-flow__arrow {
  color: var(--gold-mid);
  font-size: 1.5rem;
}

@media (max-width: 520px) {
  .thinking-flow__row {
    gap: 0.4rem;
  }

  .thinking-flow__node {
    min-height: 2.55rem;
    padding: 0.55rem 0.65rem;
  }

  .thinking-flow__arrow {
    font-size: 1.1rem;
  }
}

.problem__payoff {
  margin: clamp(0.5rem, 1.5vw, 1rem) auto 0;
  max-width: 34rem;
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: normal;
  color: var(--text-muted);
  text-wrap: balance;
}

.problem__payoff-block {
  margin-top: var(--space-6);
}

.problem__payoff-lead,
.problem__payoff-close {
  margin: var(--space-4) auto 0;
  max-width: 34rem;
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-muted);
}

.problem__payoff-root {
  margin: var(--space-3) auto 0;
  max-width: 34rem;
  font-family: var(--font-body);
  font-size: clamp(1.15rem, 2.6vw, 1.4rem);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--text);
  text-wrap: balance;
}

.problem__payoff-root strong {
  font-weight: 800;
  color: var(--text);
}

.problem__cta {
  margin-top: var(--space-6);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
}

/* ——— Identity Blueprint (two-column + white card) ——— */
.blueprint {
  padding: clamp(4rem, 10vw, 6.5rem) 0;
  background: var(--bg);
  text-align: left;
}

.blueprint__inner {
  max-width: min(100% - 2rem, 68rem);
}

.blueprint__grid {
  display: grid;
  gap: clamp(2rem, 5vw, 3.25rem);
  align-items: center;
}

@media (min-width: 900px) {
  .blueprint__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(2.25rem, 4.5vw, 3.75rem);
  }
}

.blueprint__copy {
  min-width: 0;
}

.blueprint__eyebrow {
  margin: 0 0 var(--space-3);
  font-family: var(--font-sans);
  font-size: clamp(0.78rem, 1.7vw, 0.92rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.45;
  color: #0a0a0a;
}

.blueprint__title {
  margin: 0;
  max-width: 22rem;
  font-family: var(--font-sans);
  font-size: clamp(1.65rem, 3.6vw, 2.35rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.15;
  color: #0a0a0a;
}

.blueprint__title-em {
  color: var(--gold);
}

.blueprint__body {
  margin-top: var(--space-5);
  max-width: 32rem;
}

.blueprint__body p {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1.02rem, 1.8vw, 1.12rem);
  font-weight: 400;
  line-height: 1.7;
  color: var(--text);
}

.blueprint__body p + p {
  margin-top: var(--space-4);
}

.blueprint__quote {
  margin: var(--space-6) 0 0;
  padding: 0.15rem 0 0.15rem 1.15rem;
  border-left: 2px solid var(--gold);
  max-width: 28rem;
}

.blueprint__quote p {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.55;
  color: #0a0a0a;
}

.blueprint__quote-em,
.blueprint__gold {
  color: var(--gold);
}

.blueprint__card {
  margin: 0;
  padding: clamp(1.75rem, 3.5vw, 2.35rem);
  background: var(--bg-raised);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  border: 1px solid rgba(20, 17, 14, 0.06);
}

.blueprint__card-eyebrow {
  margin: 0 0 var(--space-3);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.45;
  color: var(--gold);
}

.blueprint__card-title {
  margin: 0 0 var(--space-5);
  font-family: var(--font-serif);
  font-size: clamp(1.55rem, 3vw, 2rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #0a0a0a;
  text-wrap: balance;
}

.blueprint__outcomes {
  list-style: none;
  margin: 0;
  padding: 0;
}

.blueprint__outcome {
  display: grid;
  grid-template-columns: 2.25rem 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 1.15rem 0;
  border-top: 1px solid rgba(20, 17, 14, 0.1);
}

.blueprint__outcome:last-child {
  padding-bottom: 0;
}

.blueprint__num {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.55;
  color: #0a0a0a;
}

.blueprint__outcome p {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.6vw, 1.02rem);
  font-weight: 400;
  line-height: 1.55;
  color: var(--text);
}

/* ——— So what is this, exactly? ——— */
.what-is-this {
  padding: clamp(4rem, 10vw, 6.5rem) 0;
  background: var(--bg-soft);
  text-align: center;
  border-block: 1px solid var(--border);
}

.what-is-this__inner {
  max-width: min(100% - 2rem, 42rem);
}

.what-is-this__header {
  margin: 0 auto var(--space-7);
  max-width: 28rem;
}

.what-is-this__eyebrow {
  margin: 0 0 var(--space-3);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.5;
  color: var(--gold);
}

.what-is-this__title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 2.85rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: #0a0a0a;
  text-wrap: balance;
}

/* ——— Visible problems ← Inner symptoms ← Root cause (arrows up) ——— */
.root-cause-graph {
  margin: 0 auto;
  max-width: 36rem;
  padding: 0;
  text-align: center;
  display: grid;
  gap: 0.35rem;
  justify-items: center;
}

.root-cause-graph__layer {
  width: 100%;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
  transition-delay: calc(0.1s + (var(--layer, 0) * 0.18s));
}

.root-cause-graph__label {
  margin: 0 0 var(--space-3);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-mid);
}

.root-cause-graph__label--root {
  color: #c0392b;
  margin-bottom: 0.15rem;
}

.root-cause-graph__layer--root .root-cause-graph__arrow--down {
  margin: 0.1rem 0 0.55rem;
}

.root-cause-graph__chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.root-cause-graph__chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.35rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1.5px solid rgba(199, 157, 50, 0.42);
  background: #fff;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: clamp(0.76rem, 2vw, 0.9rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.25;
  opacity: 0;
  transform: translateY(10px) scale(0.96);
  transition:
    opacity 0.45s var(--ease),
    transform 0.45s var(--ease),
    box-shadow 0.4s var(--ease);
  transition-delay: calc(0.18s + (var(--layer, 0) * 0.18s) + (var(--i, 0) * 0.07s));
}

.root-cause-graph__layer--inner .root-cause-graph__chip {
  border-color: rgba(199, 157, 50, 0.7);
  background:
    linear-gradient(180deg, rgba(199, 157, 50, 0.12), rgba(199, 157, 50, 0.04)),
    #fff;
}

.root-cause-graph__arrow {
  margin: 0.15rem 0 0.35rem;
  color: var(--gold);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
  transition-delay: calc(0.1s + (var(--layer, 0) * 0.18s));
  animation: none;
}

.root-cause-graph.is-visible .root-cause-graph__arrow {
  animation: root-cause-bob 1.8s ease-in-out infinite;
  animation-delay: calc(0.8s + (var(--layer, 0) * 0.1s));
}

.root-cause-graph__root {
  margin: 0 auto;
  max-width: 28rem;
  padding: 1rem 1.2rem;
  border-radius: var(--radius-card);
  border: 1.5px solid rgba(199, 157, 50, 0.55);
  background:
    linear-gradient(180deg, rgba(199, 157, 50, 0.16), rgba(199, 157, 50, 0.06)),
    #fff;
  box-shadow: 0 10px 28px rgba(199, 157, 50, 0.16);
  display: grid;
  gap: 0.35rem;
  text-wrap: balance;
}

.root-cause-graph__root strong {
  display: block;
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--text);
}

.root-cause-graph__root span {
  display: block;
  font-family: var(--font-body);
  font-size: clamp(0.92rem, 2vw, 1.02rem);
  font-weight: 500;
  line-height: 1.45;
  color: var(--text-muted);
}

.root-cause-graph.is-visible .root-cause-graph__layer,
.root-cause-graph.is-visible .root-cause-graph__arrow,
.root-cause-graph.is-visible .root-cause-graph__chip {
  opacity: 1;
  transform: none;
}

.root-cause-graph.is-visible .root-cause-graph__chip {
  box-shadow: 0 4px 14px rgba(20, 17, 14, 0.05);
}

@keyframes root-cause-bob {
  0%, 100% { transform: translateY(0); opacity: 0.85; }
  50% { transform: translateY(-3px); opacity: 1; }
}

@media (max-width: 520px) {
  .root-cause-graph__chips {
    gap: 0.4rem;
  }

  .root-cause-graph__chip {
    min-height: 2.15rem;
    padding: 0.4rem 0.7rem;
    font-size: 0.74rem;
  }

  .root-cause-graph__root {
    padding: 0.9rem 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .root-cause-graph__layer,
  .root-cause-graph__arrow,
  .root-cause-graph__chip {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }
}

/* ——— Turning point + higher way (two columns) ——— */
.turning {
  padding: clamp(4.5rem, 11vw, 7rem) 1.25rem;
  background: var(--bg);
  text-align: left;
  border-block: 1px solid var(--border);
}

.turning__shell {
  max-width: min(100%, 68rem);
}

.turning__header {
  margin: 0 auto clamp(2rem, 5vw, 3rem);
  max-width: 36rem;
  text-align: center;
}

.turning__eyebrow {
  margin: 0 0 var(--space-3);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.5;
  color: var(--gold);
}

.turning__heading {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 2.85rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: #0a0a0a;
  text-wrap: balance;
}

.turning__grid {
  display: grid;
  gap: clamp(1.75rem, 4vw, 2.5rem);
  align-items: stretch;
}

@media (min-width: 900px) {
  .turning__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(1.75rem, 3.5vw, 2.75rem);
  }
}

.turning__col {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.turning__col--problem {
  padding: clamp(0.25rem, 1vw, 0.5rem) 0;
  justify-content: center;
}

.turning__col--solution {
  position: relative;
  overflow: hidden;
  padding: clamp(1.65rem, 3.5vw, 2.35rem);
  background:
    radial-gradient(ellipse 80% 55% at 50% -10%, rgba(199, 157, 50, 0.22) 0%, transparent 55%),
    var(--bg-ink);
  color: rgba(246, 242, 234, 0.84);
  border-radius: var(--radius-card, 12px);
  border: 1px solid rgba(199, 157, 50, 0.28);
  gap: clamp(1.5rem, 3vw, 2.25rem);
  justify-content: space-between;
}

.turning__solution-top {
  position: relative;
  z-index: 1;
}

.turning__col--solution .eyebrow {
  margin-bottom: var(--space-3);
  text-align: left;
  color: var(--gold);
}

.turning__title {
  margin: 0;
  max-width: 22rem;
  font-family: var(--font-sans);
  font-size: clamp(1.35rem, 2.6vw, 1.8rem);
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: -0.015em;
  color: var(--text);
  text-wrap: balance;
}

.turning__title--solution {
  max-width: 18rem;
  color: #f6f2ea;
}

.turning__body {
  margin-top: var(--space-5);
  font-family: var(--font-body);
  font-size: clamp(1.02rem, 1.7vw, 1.1rem);
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-muted);
}

.turning__body p {
  margin: 0;
}

.turning__body p + p {
  margin-top: var(--space-3);
}

.turning__body .turning__beat {
  margin-top: var(--space-5);
}

.turning__body strong {
  color: var(--text);
  font-weight: 700;
}

.turning__body--solution {
  color: rgba(246, 242, 234, 0.78);
}

.turning__pivot {
  margin-top: var(--space-5) !important;
  color: var(--text);
  font-weight: 700;
}

.turning__pivot strong {
  display: inline-block;
  margin-bottom: 0.35em;
}

.turning__brand {
  color: var(--gold);
  font-weight: 700;
  font-style: italic;
}

.turning__mark {
  position: relative;
  font-style: normal;
  font-weight: 700;
  color: var(--text);
  display: inline-block;
}

.turning__mark::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.08em;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.7s var(--ease) 0.35s;
}

.turning.is-visible .turning__mark::after,
.turning.reveal.is-visible .turning__mark::after {
  transform: scaleX(1);
}

.turning__einstein {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: clamp(1.25rem, 2.5vw, 1.6rem) 0 0;
  border-top: 1px solid rgba(199, 157, 50, 0.28);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.15rem;
  align-items: center;
  text-align: left;
}

.turning__einstein img {
  width: 4.25rem;
  height: 4.25rem;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  border: 1.5px solid rgba(199, 157, 50, 0.55);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
  background: #1a1814;
}

.turning__quote {
  margin: 0;
  max-width: none;
}

.turning__quote p {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  font-weight: 600;
  font-style: normal;
  line-height: 1.4;
  color: #f6f2ea;
  text-wrap: balance;
}

.turning__quote cite {
  display: block;
  margin-top: 0.65rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

@media (max-width: 520px) {
  .turning__einstein {
    grid-template-columns: 1fr;
    justify-items: start;
  }
}

/* ——— Manifesto ——— */
.manifesto {
  background: var(--bg-ink);
  padding: clamp(4.75rem, 12vw, 8.5rem) 1.25rem;
  text-align: center;
  color: #f6f2ea;
}

.manifesto__inner {
  width: min(100%, 38rem);
  margin-inline: auto;
}

.manifesto__quote {
  position: relative;
  margin: 0;
  padding: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.45rem, 3.4vw, 2rem);
  font-weight: 500;
  font-style: normal;
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: #f6f2ea;
  text-wrap: balance;
}

.manifesto__mark {
  display: block;
  margin: 0 auto 0.15em;
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 9vw, 5.25rem);
  font-weight: 500;
  line-height: 0.7;
  color: var(--gold);
  opacity: 0.9;
}

.manifesto__quote p {
  margin: 0;
}

.manifesto__quote p + p {
  margin-top: 0.55em;
}

.manifesto__resolve {
  margin-top: clamp(2.25rem, 5vw, 3.25rem);
  padding-top: clamp(1.75rem, 4vw, 2.5rem);
  border-top: 1px solid rgba(199, 157, 50, 0.45);
}

.manifesto__lead {
  margin: 0 auto;
  max-width: 34rem;
  font-size: clamp(1rem, 2.1vw, 1.1rem);
  line-height: 1.55;
  color: rgba(246, 242, 234, 0.68);
}

.manifesto__pivot {
  margin: var(--space-5) auto 0;
  max-width: 34rem;
  font-family: var(--font-sans);
  font-size: clamp(1.2rem, 2.7vw, 1.5rem);
  font-weight: 700;
  line-height: 1.4;
  color: #f6f2ea;
  text-wrap: balance;
}

.manifesto__how {
  position: relative;
  font-style: normal;
  font-weight: 700;
  color: var(--gold-light);
  display: inline-block;
}

.manifesto__how::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.08em;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.7s var(--ease) 0.35s;
}

.manifesto__pivot.is-visible .manifesto__how::after,
.manifesto__pivot.reveal.is-visible .manifesto__how::after {
  transform: scaleX(1);
}

.manifesto__body {
  margin: var(--space-6) auto 0;
  max-width: 34rem;
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-muted);
}

.manifesto__body p {
  margin: 0;
}

.manifesto__body p + p {
  margin-top: var(--space-4);
}

.manifesto__body strong {
  color: var(--text);
  font-weight: 700;
}

.manifesto__gold {
  color: var(--gold);
}

.manifesto__idea {
  margin: var(--space-7) auto 0;
  max-width: 34rem;
  font-size: clamp(1.05rem, 2.2vw, 1.15rem);
  font-weight: 600;
  line-height: 1.5;
  color: var(--text);
}

.manifesto__quote--second {
  margin-top: var(--space-5);
}

.manifesto__quote strong {
  font-weight: 800;
}

.manifesto__close {
  margin: var(--space-7) auto 0;
  font-family: var(--font-sans);
  font-size: clamp(1.2rem, 2.6vw, 1.45rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}

.manifesto__after {
  margin: var(--space-5) auto 0;
  max-width: 34rem;
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.manifesto__after p {
  margin: 0;
}

.manifesto__after p + p {
  margin-top: var(--space-4);
}

/* ——— Benefits ——— */
.section-heading {
  margin: 0 0 var(--space-6);
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 4vw, 2.55rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.15;
  color: var(--text);
}

/* ——— Testimonials (editorial voices — no equal-height cards) ——— */
.testimonials {
  padding: clamp(4rem, 9vw, 6.5rem) 0;
  background:
    radial-gradient(ellipse 70% 40% at 50% 0%, rgba(199, 157, 50, 0.1), transparent 65%),
    var(--bg);
}

.testimonials__shell {
  max-width: min(100% - 2rem, 58rem);
}

.testimonials__header {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.testimonials .eyebrow {
  text-align: center;
}

.testimonials .section-heading {
  margin-bottom: 0;
}

.voices {
  display: grid;
  gap: clamp(1.75rem, 4vw, 2.5rem);
}

.voice {
  margin: 0;
}

.voice--feature {
  position: relative;
  text-align: center;
  padding: clamp(1.5rem, 4vw, 2.5rem) clamp(1rem, 3vw, 2rem);
  border-block: 1px solid rgba(199, 157, 50, 0.35);
}

.voice__mark {
  display: block;
  margin: 0 auto 0.35rem;
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 8vw, 5rem);
  font-weight: 600;
  line-height: 0.7;
  color: var(--gold);
}

.voice--feature .voice__quote {
  margin: 0 auto;
  max-width: 36rem;
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 600;
  font-style: normal;
  line-height: 1.4;
  color: #0a0a0a;
  text-wrap: balance;
}

.voice--feature .voice__meta {
  margin-top: var(--space-5);
  justify-content: center;
}

.voices__support {
  display: grid;
  gap: 1.25rem;
  align-items: start;
}

@media (min-width: 800px) {
  .voices__support {
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem;
  }
}

.voice--support {
  padding: 0 0 0 1.15rem;
  border-left: 2px solid var(--gold);
}

.voice--support .voice__quote {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.02rem, 1.8vw, 1.12rem);
  font-weight: 500;
  font-style: normal;
  line-height: 1.55;
  color: var(--text);
}

.voice__meta {
  margin-top: var(--space-4);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.voice__initials {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  background: var(--bg-ink);
  color: var(--gold-light);
  border: 1px solid rgba(199, 157, 50, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.voice__name {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
}

.voice__role {
  margin: 0.15rem 0 0;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--text-subtle);
}

/* ——— About (premium dark profile + media bar) ——— */
.about {
  padding: var(--space-8) 0 var(--space-7);
  background: var(--bg-ink);
  color: #fff;
}

.about__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
  max-width: 58rem;
}

.about__header {
  text-align: center;
  max-width: 40rem;
}

.about__title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.15rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
}

.about__title span {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-mid));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about__kicker {
  margin: var(--space-3) 0 0;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.about__card {
  width: 100%;
  display: grid;
  gap: var(--space-5);
  padding: var(--space-5);
  background: var(--bg-ink-soft);
  border: 1px solid rgba(199, 157, 50, 0.55);
  border-radius: 1.25rem;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
}

@media (min-width: 800px) {
  .about__card {
    grid-template-columns: minmax(200px, 240px) minmax(0, 1fr);
    column-gap: var(--space-8);
    row-gap: var(--space-6);
    padding: var(--space-6);
    align-items: start;
  }

  .about__body {
    padding-left: var(--space-5);
  }

  .about__book-row {
    margin-left: 0;
    padding-left: var(--space-2);
  }
}

.about__photo {
  margin: 0;
  overflow: hidden;
  border-radius: 1rem;
  background: #1a1816;
  aspect-ratio: 3 / 4;
  max-height: 28rem;
}

.about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}

.about__body {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.about__role {
  margin: 0 0 var(--space-2);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.about__name {
  margin: 0 0 var(--space-3);
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 3.2vw, 2.55rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
}

.about__name span {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-mid));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about__tagline {
  margin: 0 0 var(--space-4) !important;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88) !important;
}

.about__body > p {
  margin: 0 0 var(--space-3);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.98rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
}

.about__gold {
  color: var(--gold);
}

.about__book-row {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-top: auto;
  padding-top: var(--space-4);
}

.about__book {
  width: 5.5rem;
  height: auto;
  flex-shrink: 0;
  /* Soft gold halo so the dark green cover stays readable on black */
  filter:
    drop-shadow(0 0 10px rgba(201, 162, 74, 0.32))
    drop-shadow(0 0 22px rgba(201, 162, 74, 0.16))
    drop-shadow(0 12px 24px rgba(0, 0, 0, 0.55));
}

.about__book-caption {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin: 0 !important;
  color: rgba(255, 255, 255, 0.78) !important;
}

.about__book-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.about__book-sub {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.62);
}

.about__gold-bar {
  width: 100%;
  margin: 0;
  padding: 0.95rem 1.35rem;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.45;
  color: #0a0a0a;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-mid));
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(199, 157, 50, 0.28);
}

.about__media {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  padding-top: var(--space-2);
}

.about__media-label {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.about__media-logos {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 0.55rem 0.85rem;
}

.about__media-logos li {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 1 auto;
  min-width: 0;
}

.about__media-logos img {
  display: block;
  height: 1.4rem;
  width: auto;
  max-width: 4rem;
  object-fit: contain;
  opacity: 0.95;
}

/* Circular badge (Itsy Bitsy) needs a touch more size to stay readable */
.about__media-logos img[alt="Itsy Bitsy FM"] {
  height: 1.75rem;
  max-width: 1.75rem;
}

@media (min-width: 900px) {
  .about__media-logos {
    gap: 0.7rem 1.1rem;
  }

  .about__media-logos img {
    height: 1.6rem;
    max-width: 4.5rem;
  }

  .about__media-logos img[alt="Itsy Bitsy FM"] {
    height: 2rem;
    max-width: 2rem;
  }
}

@media (max-width: 560px) {
  .about__gold-bar {
    border-radius: 1rem;
    padding: 0.9rem 1.1rem;
  }

  .about__book {
    width: 4.75rem;
  }

  .about__media-logos {
    gap: 0.35rem 0.45rem;
  }

  .about__media-logos img {
    height: 1.1rem;
    max-width: 3rem;
  }

  .about__media-logos img[alt="Itsy Bitsy FM"] {
    height: 1.35rem;
    max-width: 1.35rem;
  }
}

/* ——— Books ——— */
.books {
  padding: var(--space-8) 0;
  background: var(--bg);
}

.books .eyebrow {
  text-align: center;
}

.books__intro {
  margin: calc(var(--space-3) * -1) auto var(--space-6);
  max-width: 28rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.books__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-6);
}

@media (min-width: 700px) {
  .books__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-5);
    align-items: start;
  }
}

.book {
  margin: 0;
  text-align: center;
}

.book__cover {
  margin: 0 auto var(--space-4);
  width: min(100%, 14rem);
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: #0a0a0a;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.book__cover img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  background: transparent;
  filter:
    drop-shadow(0 0 14px rgba(201, 162, 74, 0.22))
    drop-shadow(0 10px 20px rgba(0, 0, 0, 0.45));
}

/* Wide mockup (cover + spine) — zoom to fill the portrait frame like the other books */
.book__cover--landscape img {
  object-fit: cover;
  object-position: 42% center;
  transform: scale(1.08);
  transform-origin: center center;
}

.book__cover--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-soft);
  border: 1px dashed rgba(20, 17, 14, 0.22);
  box-shadow: none;
}

.book__cover--empty span {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-subtle);
  padding: var(--space-4);
}

.book__title {
  margin: 0 0 var(--space-2);
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.25;
}

.book__subtitle {
  margin: 0 auto;
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--text-muted);
  max-width: 16rem;
}

.book--placeholder .book__title,
.book--placeholder .book__subtitle {
  color: var(--text-subtle);
}

/* ——— Reserve / tickets ——— */
.reserve {
  padding: var(--space-8) 0 var(--space-7);
}

.reserve__intro {
  max-width: 36rem;
  margin: 0 auto var(--space-6);
  text-align: center;
}

.reserve__intro .eyebrow {
  text-align: center;
}

.reserve__intro .section-heading {
  text-align: center;
}

.reserve__intro p {
  margin: var(--space-4) 0 0;
  color: var(--text-muted);
}

.ticket-grid {
  display: grid;
  gap: var(--space-5);
}

@media (min-width: 800px) {
  .ticket-grid {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
}

.ticket {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--bg-raised);
  border: 2px solid var(--border);
  border-radius: var(--radius-card);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: var(--shadow);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.ticket:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(20, 17, 14, 0.12);
  border-color: rgba(199, 157, 50, 0.55);
}

.ticket--vip {
  border-color: rgba(199, 157, 50, 0.55);
  background: #0a0a0a;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  color: rgba(246, 242, 234, 0.88);
}

.ticket--vip:hover {
  border-color: var(--gold);
  box-shadow: 0 20px 48px rgba(199, 157, 50, 0.2);
}

.ticket--vip .ticket__name {
  color: #fff;
}

.ticket--vip .ticket__now {
  color: var(--gold-light);
}

.ticket--vip .ticket__was {
  color: rgba(246, 242, 234, 0.42);
}

.ticket--vip .ticket__save {
  color: var(--gold);
}

.ticket--vip .ticket__rise {
  color: rgba(246, 242, 234, 0.55);
}

.ticket--vip .ticket__perks li {
  color: rgba(246, 242, 234, 0.78);
}

.ticket--vip .ticket__perks li::before {
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(199, 157, 50, 0.2);
}

.ticket__badge {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cta-text);
  background: var(--cta);
  padding: 0.4rem 0.65rem;
  border-radius: 6px;
}

.ticket__tier {
  margin: 0 0 var(--space-2);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.ticket__name {
  margin: 0 0 var(--space-4);
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.5vw, 1.7rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--text);
  text-transform: none;
}

.ticket__price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.65rem;
  margin-bottom: var(--space-2);
}

.ticket__was {
  font-size: 1.05rem;
  color: var(--strike);
  text-decoration: line-through;
}

.ticket__now {
  font-family: var(--font-sans);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}

.ticket__now span {
  font-size: 1rem;
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--gold);
  background: var(--cta-soft);
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ticket__rise {
  margin: 0 0 var(--space-5);
  font-size: 0.875rem;
  color: var(--text-subtle);
}

.ticket__perks {
  list-style: none;
  margin: 0 0 var(--space-6);
  padding: 0;
  flex: 1;
  display: grid;
  gap: var(--space-3);
}

.ticket__perks li {
  position: relative;
  padding-left: 1.15rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.ticket__perks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--cta);
  box-shadow: 0 0 0 3px var(--cta-soft);
}

.reserve__reassure {
  margin: var(--space-5) 0 0;
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-subtle);
}

/* ——— FAQ ——— */
.faq {
  padding: 0 0 var(--space-8);
}

.faq .eyebrow {
  text-align: center;
}

.faq .section-heading {
  text-align: center;
}

.faq__list {
  max-width: 40rem;
  margin: 0 auto;
  border-top: 1px solid var(--border);
  text-align: left;
}

.faq__item {
  border-bottom: 1px solid var(--border);
}

.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: var(--space-4) 1.75rem var(--space-4) 0;
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  position: relative;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-sans);
  font-size: 1.25rem;
  color: var(--gold);
}

.faq__item[open] summary::after {
  content: "–";
}

.faq__item p {
  margin: 0 0 var(--space-4);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-muted);
  padding-right: 1.5rem;
}

/* ——— Footer ——— */
.page-footer {
  background: var(--bg-ink);
  color: rgba(246, 242, 234, 0.62);
  padding: var(--space-7) 0 var(--space-6);
  border-top: 1px solid rgba(246, 242, 234, 0.1);
}

.page-footer a {
  color: rgba(246, 242, 234, 0.88);
}

.page-footer__disclaimer {
  margin: 0 0 var(--space-5);
  max-width: 44rem;
  font-size: 0.85rem;
  line-height: 1.55;
}

.page-footer__disclaimer-title {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(246, 242, 234, 0.78);
}

.page-footer__disclaimer p {
  margin: 0 0 0.75rem;
}

.page-footer__disclaimer p:last-child {
  margin-bottom: 0;
}

.page-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3) var(--space-5);
  margin-bottom: var(--space-5);
  font-size: 0.9rem;
}

.page-footer__nav a {
  text-decoration: none;
}

.page-footer__nav a:hover {
  color: var(--gold-light);
  text-decoration: underline;
}

.page-footer__copy {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-subtle);
}

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

  .hero__content,
  .btn,
  .ticket,
  .reveal {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }

  .manifesto__how::after {
    transform: scaleX(1) !important;
    transition: none !important;
  }

  .turning__mark::after {
    transform: scaleX(1) !important;
    transition: none !important;
  }
}

/* ——— Scroll reveals (MMI-inspired energy, one-shot) ——— */
.reveal {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.section-heading--center {
  text-align: center;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.accent-line {
  color: var(--gold);
}

/* ——— Attend this workshop if ——— */
.attend-if {
  padding: clamp(4.5rem, 11vw, 7.5rem) 0;
  background:
    radial-gradient(ellipse 70% 45% at 50% 0%, rgba(199, 157, 50, 0.14), transparent 70%),
    var(--bg);
  border-block: 1px solid var(--border);
}

.attend-if__shell {
  max-width: min(100% - 2rem, 44rem);
}

.attend-if__header {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.attend-if__title {
  margin: 0 0 var(--space-3);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.attend-if__subtitle {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 2.85rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #0a0a0a;
}

.attend-if__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.15rem;
}

.attend-if__gate {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.25rem;
  align-items: start;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  background: #fff;
  border: 1px solid rgba(20, 17, 14, 0.08);
  border-radius: 1rem;
  box-shadow: 0 14px 40px rgba(20, 17, 14, 0.06);
  position: relative;
  overflow: hidden;
}

.attend-if__gate::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, var(--gold-light), var(--gold-mid));
}

.attend-if__mark {
  display: grid;
  grid-template-rows: auto auto;
  justify-items: center;
  gap: 0.35rem;
  width: 3.35rem;
  flex-shrink: 0;
  color: var(--gold-mid);
}

.attend-if__icon {
  display: grid;
  place-items: center;
  width: 3.1rem;
  height: 3.1rem;
  padding: 0.35rem;
  border-radius: 50%;
  border: 1.5px solid rgba(199, 157, 50, 0.55);
  background: rgba(199, 157, 50, 0.1);
  box-sizing: border-box;
}

.attend-if__roman {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--gold-mid);
  opacity: 0.85;
}

.attend-if__copy {
  min-width: 0;
  text-align: left;
}

.attend-if__copy p {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(0.98rem, 2vw, 1.08rem);
  font-weight: 400;
  line-height: 1.65;
  color: var(--text-muted);
}

.attend-if__copy p + p {
  margin-top: 0.7rem;
}

.attend-if__lead {
  font-family: var(--font-sans);
  font-size: clamp(1.05rem, 2.3vw, 1.18rem) !important;
  font-weight: 700 !important;
  color: var(--text) !important;
  line-height: 1.45 !important;
}

.attend-if__copy em {
  font-style: italic;
  color: var(--gold-mid);
  font-weight: 600;
}

.attend-if__close {
  color: var(--text) !important;
  font-weight: 600 !important;
}

.attend-if__promise {
  margin: clamp(1.75rem, 4vw, 2.5rem) auto 0;
  max-width: 34rem;
  padding: 1.25rem 1.5rem;
  text-align: center;
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.8vw, 1.55rem);
  font-weight: 600;
  line-height: 1.4;
  color: #0a0a0a;
  background: rgba(199, 157, 50, 0.1);
  border: 1px solid rgba(199, 157, 50, 0.35);
  border-radius: 0.85rem;
  text-wrap: balance;
}

.attend-if__promise span {
  color: var(--gold-mid);
  font-style: italic;
}

@media (max-width: 560px) {
  .attend-if__gate {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    padding-left: 1.15rem;
  }

  .attend-if__mark {
    width: auto;
    grid-template-columns: auto auto;
    grid-template-rows: none;
    align-items: center;
    gap: 0.55rem;
  }

  .attend-if__icon {
    width: 2.6rem;
    height: 2.6rem;
    padding: 0.3rem;
  }

  .attend-if__roman {
    font-size: 0.95rem;
  }
}

/* ——— Who this workshop is for (cream vs black panels) ——— */
.fit {
  padding: clamp(3.5rem, 9vw, 6rem) 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(199, 157, 50, 0.08), transparent 55%),
    var(--bg);
  border-block: 1px solid var(--border);
}

.fit__shell {
  width: min(100% - 1.5rem, 72rem);
}

.fit__header {
  margin: 0 auto clamp(1.75rem, 4vw, 2.5rem);
  max-width: 36rem;
  text-align: center;
}

.fit__header-eyebrow {
  margin: 0 0 var(--space-3);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.5;
  color: var(--gold);
}

.fit__heading {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 2.85rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: #0a0a0a;
  text-wrap: balance;
}

.fit__grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 860px) {
  .fit__grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 1.35rem;
    align-items: stretch;
  }
}

.fit__col {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-radius: 2px;
  min-height: 100%;
}

.fit__col-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.fit__col-inner {
  position: relative;
  z-index: 1;
  padding: clamp(1.75rem, 4vw, 2.75rem) clamp(1.35rem, 3.5vw, 2.5rem);
  height: 100%;
}

/* Cream “for you” panel */
.fit__col--yes {
  background: linear-gradient(165deg, #fbf8f1 0%, #f1ebe0 55%, #e8dfd0 100%);
  color: var(--text);
  box-shadow: 0 18px 48px rgba(20, 17, 14, 0.08);
}

.fit__col--yes .fit__col-bg {
  background:
    radial-gradient(circle at 88% 12%, rgba(199, 157, 50, 0.22), transparent 42%),
    radial-gradient(circle at 8% 92%, rgba(199, 157, 50, 0.12), transparent 38%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg fill='none' stroke='%23c79d32' stroke-opacity='0.14' stroke-width='1'%3E%3Ccircle cx='60' cy='60' r='28'/%3E%3Ccircle cx='60' cy='60' r='48'/%3E%3Cpath d='M60 8v16M60 96v16M8 60h16M96 60h16'/%3E%3C/g%3E%3C/svg%3E");
  background-size: auto, auto, 140px 140px;
  opacity: 0.95;
}

.fit__col--yes .fit__symbol {
  color: var(--gold-mid);
}

.fit__col--yes .fit__eyebrow {
  color: var(--gold-mid);
}

.fit__col--yes .fit__title {
  color: #0a0a0a;
}

.fit__col--yes .fit__list li {
  color: rgba(20, 17, 14, 0.78);
}

.fit__col--yes .fit__list li::before {
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(199, 157, 50, 0.18);
}

/* Black “not for you” panel */
.fit__col--no {
  background: linear-gradient(165deg, #161412 0%, #0a0a0a 55%, #000 100%);
  color: var(--accent-contrast);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.fit__col--no .fit__col-bg {
  background:
    radial-gradient(circle at 12% 18%, rgba(199, 157, 50, 0.16), transparent 40%),
    radial-gradient(circle at 90% 88%, rgba(249, 247, 242, 0.06), transparent 42%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill='none' stroke='%23f9f7f2' stroke-opacity='0.08' stroke-width='1'%3E%3Cpath d='M0 50h100M50 0v100'/%3E%3Ccircle cx='50' cy='50' r='22'/%3E%3C/g%3E%3C/svg%3E");
  background-size: auto, auto, 110px 110px;
}

.fit__col--no .fit__symbol {
  color: rgba(249, 247, 242, 0.55);
}

.fit__col--no .fit__eyebrow {
  color: rgba(199, 157, 50, 0.85);
}

.fit__col--no .fit__title {
  color: #f9f7f2;
}

.fit__col--no .fit__list li {
  color: rgba(249, 247, 242, 0.68);
}

.fit__col--no .fit__list li::before {
  background: transparent;
  border: 1.5px solid rgba(249, 247, 242, 0.4);
  box-sizing: border-box;
}

.fit__symbol {
  display: inline-flex;
  margin-bottom: 0.85rem;
  transform: translateY(6px) scale(0.92);
  opacity: 0;
  transition: transform 0.7s var(--ease), opacity 0.7s var(--ease);
}

.fit__col.is-visible .fit__symbol {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.fit__symbol svg {
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  .fit__symbol {
    transform: none;
    opacity: 1;
    transition: none;
  }
}

.fit__eyebrow {
  margin: 0 0 0.45rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.fit__title {
  margin: 0 0 1.45rem;
  font-family: var(--font-serif);
  font-size: clamp(1.55rem, 3.2vw, 1.95rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

.fit__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.95rem;
}

.fit__list li {
  position: relative;
  padding-left: 1.35rem;
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.9vw, 1.05rem);
  font-weight: 400;
  line-height: 1.6;
}

.fit__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
}

.fit__close {
  margin: clamp(2.25rem, 5vw, 3.25rem) auto 0;
  max-width: 34rem;
  text-align: center;
  padding: 1.5rem 1.25rem 0;
  border-top: 1px solid var(--border);
}

.fit__close p {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.6vw, 1.45rem);
  font-weight: 500;
  line-height: 1.45;
  color: var(--text-muted);
  text-wrap: balance;
}

.fit__close-strong {
  margin-top: 0.55rem !important;
  font-weight: 600 !important;
  font-style: normal;
  color: var(--gold) !important;
}

/* ——— Mid-page CTA bands ——— */
.cta-band {
  padding: var(--space-7) 0;
  background: var(--bg-soft);
  border-block: 1px solid var(--border);
  text-align: center;
}

.cta-band--ink {
  background: var(--bg-ink);
  border-color: rgba(255, 255, 255, 0.08);
}

.cta-band--ink .cta-band__text {
  color: #f6f2ea;
}

.cta-band--ink .cta-band__micro {
  color: rgba(246, 242, 234, 0.55);
}

.cta-band__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
}

.cta-band__text {
  margin: 0;
  max-width: 32rem;
  font-family: var(--font-sans);
  font-size: clamp(1.15rem, 2.5vw, 1.4rem);
  font-weight: 700;
  line-height: 1.4;
  color: var(--text);
}

.cta-band__micro {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-subtle);
}

/* ——— CTA panel (gold-bordered statement on ink) ——— */
.cta-panel {
  padding: clamp(3rem, 8vw, 5rem) 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% 0%, rgba(201, 160, 40, 0.22) 0%, transparent 55%),
    linear-gradient(180deg, #0a0a0a 0%, #121008 50%, #0a0a0a 100%);
  text-align: center;
  border-block: 1px solid var(--border);
}

.cta-panel__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  width: min(100% - 2rem, var(--width));
  margin-inline: auto;
}

.cta-panel__card {
  width: 100%;
  padding: clamp(1.75rem, 4.5vw, 2.75rem) clamp(1.75rem, 4vw, 3.5rem);
  background: transparent;
  border: 1px solid rgba(201, 160, 40, 0.55);
  border-radius: 0.5rem;
  box-shadow: none;
}

.cta-panel__text {
  margin: 0;
  max-width: none;
  font-family: var(--font-serif);
  font-size: clamp(0.95rem, 2.2vw, 1.2rem);
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(246, 242, 234, 0.95);
}

.cta-panel__accent {
  color: var(--gold);
}

.cta-panel__btn {
  width: min(100%, 22rem);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-btn);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.88rem;
  box-shadow: none;
}

.cta-panel__btn:hover {
  transform: none;
  box-shadow: none;
}

/* ——— Outcomes trio ——— */
.outcomes {
  padding: var(--space-8) 0;
  background: var(--bg);
}

.outcomes--walkaway {
  background: var(--bg-soft);
  border-block: 1px solid var(--border);
}

/* ——— Walkaway pillars (horizontal journey, distinct from attend-if cards) ——— */
.walkaway {
  padding: clamp(4.5rem, 11vw, 7.5rem) 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(199, 157, 50, 0.12), transparent 60%),
    linear-gradient(180deg, #0a0a0a 0%, #121110 55%, #0a0a0a 100%);
  color: rgba(246, 242, 234, 0.82);
  border-block: 1px solid rgba(255, 255, 255, 0.06);
}

.walkaway__shell {
  max-width: min(100% - 1.5rem, 70rem);
}

.walkaway__header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 6vw, 3.75rem);
}

.walkaway .eyebrow {
  color: var(--gold);
}

.walkaway .section-heading {
  color: #f6f2ea;
}

.walkaway__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: clamp(2rem, 5vw, 2.75rem);
  position: relative;
}

@media (min-width: 900px) {
  .walkaway__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    align-items: start;
  }

  .walkaway__list::before {
    content: "";
    position: absolute;
    top: 2.65rem;
    left: 12%;
    right: 12%;
    height: 1px;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(199, 157, 50, 0.55) 15%,
      rgba(199, 157, 50, 0.55) 85%,
      transparent
    );
    pointer-events: none;
    z-index: 0;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 1.1s var(--ease) 0.2s;
  }

  .walkaway.reveal.is-visible .walkaway__list::before {
    transform: scaleX(1);
  }
}

.walkaway__pillar {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.85rem;
  padding: 0;
  background: none;
  border: none;
}

.walkaway__symbol {
  display: grid;
  place-items: center;
  width: 5.25rem;
  height: 5.25rem;
  border-radius: 50%;
  color: var(--gold);
  background:
    radial-gradient(circle at 50% 40%, rgba(199, 157, 50, 0.18), transparent 70%),
    #121110;
  border: 1px solid rgba(199, 157, 50, 0.45);
  box-shadow: 0 0 0 8px rgba(10, 10, 10, 0.92);
}

.walkaway__symbol svg {
  display: block;
}

.walkaway__pillar.reveal.is-visible .walkaway__symbol {
  animation: walkaway-symbol-float 4.2s ease-in-out infinite;
}

.walkaway__pillar.reveal-delay-2.is-visible .walkaway__symbol {
  animation-delay: 0.35s;
}

.walkaway__pillar.reveal-delay-3.is-visible .walkaway__symbol {
  animation-delay: 0.7s;
}

.walkaway__pillar.reveal.is-visible .walkaway__symbol svg {
  animation: walkaway-symbol-glow 4.2s ease-in-out infinite;
}

.walkaway__pillar.reveal-delay-2.is-visible .walkaway__symbol svg {
  animation-delay: 0.35s;
}

.walkaway__pillar.reveal-delay-3.is-visible .walkaway__symbol svg {
  animation-delay: 0.7s;
}

@keyframes walkaway-symbol-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
    box-shadow:
      0 0 0 8px rgba(10, 10, 10, 0.92),
      0 0 0 0 rgba(199, 157, 50, 0);
  }
  50% {
    transform: translate3d(0, -6px, 0);
    box-shadow:
      0 0 0 8px rgba(10, 10, 10, 0.92),
      0 0 22px 2px rgba(199, 157, 50, 0.28);
  }
}

@keyframes walkaway-symbol-glow {
  0%,
  100% {
    opacity: 0.88;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.04);
  }
}

.walkaway__num {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1;
  color: var(--gold);
  text-transform: uppercase;
}

.walkaway__title {
  margin: 0;
  max-width: 18rem;
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.4vw, 1.5rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--gold);
  text-wrap: balance;
}

.walkaway__body {
  min-width: 0;
  max-width: 22rem;
  text-align: center;
}

.walkaway__body p {
  margin: 0;
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  line-height: 1.65;
  color: rgba(246, 242, 234, 0.7);
}

.walkaway__body p + p {
  margin-top: 0.7rem;
}

.walkaway__beat {
  color: rgba(246, 242, 234, 0.92) !important;
  font-weight: 600;
}

.walkaway__gold {
  color: var(--gold);
  font-style: italic;
  font-weight: 700;
}

@media (max-width: 899px) {
  .walkaway__list {
    max-width: 26rem;
    margin-inline: auto;
  }

  .walkaway__pillar {
    padding-bottom: 0.5rem;
  }

  .walkaway__pillar:not(:last-child)::after {
    content: "";
    display: block;
    width: 1px;
    height: 1.75rem;
    margin: 0.75rem auto 0;
    background: linear-gradient(180deg, rgba(199, 157, 50, 0.55), transparent);
    transform: scaleY(0);
    transform-origin: top center;
    transition: transform 0.7s var(--ease) 0.15s;
  }

  .walkaway__pillar.reveal.is-visible:not(:last-child)::after {
    transform: scaleY(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .walkaway__list::before,
  .walkaway__pillar:not(:last-child)::after {
    transform: none !important;
    transition: none !important;
  }

  .walkaway__pillar.reveal.is-visible .walkaway__symbol,
  .walkaway__pillar.reveal.is-visible .walkaway__symbol svg {
    animation: none !important;
  }
}

.outcomes .eyebrow {
  text-align: center;
}

.outcomes__grid {
  list-style: none;
  margin: var(--space-6) 0 0;
  padding: 0;
  display: grid;
  gap: var(--space-5);
}

@media (min-width: 800px) {
  .outcomes--investigation .outcomes__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
  }
}

.outcomes__item {
  padding: var(--space-5);
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
}

.outcomes__num {
  display: block;
  font-family: var(--font-sans);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--cta);
  margin-bottom: var(--space-3);
  letter-spacing: -0.02em;
}

.outcomes__item h3 {
  margin: 0 0 var(--space-3);
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
}

.outcomes__item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.98rem;
}

/* ——— Process steps ——— */
.process {
  padding: var(--space-8) 0;
  background: var(--bg-soft);
  border-block: 1px solid var(--border);
}

.process .eyebrow {
  text-align: center;
}

.process__grid {
  display: grid;
  gap: var(--space-5);
  margin-top: var(--space-6);
}

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

.process__step {
  padding: var(--space-5) var(--space-4);
  text-align: center;
}

.process__num {
  display: block;
  font-family: var(--font-sans);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--cta);
  line-height: 1;
  margin-bottom: var(--space-4);
}

.process__step h3 {
  margin: 0 0 var(--space-3);
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
}

.process__step p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.98rem;
}

/* ——— Audience ——— */
.audience {
  padding: var(--space-8) 0;
  background:
    radial-gradient(ellipse 70% 45% at 50% 0%, rgba(199, 157, 50, 0.1), transparent 60%),
    var(--bg);
}

.audience__header {
  max-width: 40rem;
  margin: 0 auto;
  text-align: center;
}

.audience .eyebrow {
  text-align: center;
}

.audience__lead {
  margin: calc(var(--space-3) * -0.5) auto 0;
  max-width: 28rem;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-muted);
}

.audience__grid {
  list-style: none;
  margin: var(--space-7) 0 0;
  padding: 0;
  display: grid;
  gap: var(--space-5);
}

@media (min-width: 640px) {
  .audience__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .audience__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-5) var(--space-4);
  }
}

.audience__item {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius-card) + 4px);
  background: var(--bg-raised);
  box-shadow: var(--shadow);
  text-align: left;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s var(--ease);
}

.audience__item:hover {
  transform: translateY(-4px);
  border-color: rgba(199, 157, 50, 0.45);
  box-shadow: 0 16px 40px rgba(20, 17, 14, 0.12);
}

.audience__visual {
  margin: 0;
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--bg-soft);
}

.audience__visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(to top, rgba(20, 17, 14, 0.35), transparent);
  pointer-events: none;
}

.audience__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  transition: transform 0.7s var(--ease);
}

.audience__item:hover .audience__visual img {
  transform: scale(1.04);
}

.audience__copy {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-4) var(--space-5);
}

.audience__item strong {
  font-family: var(--font-serif);
  font-size: 1.28rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
}

.audience__item span {
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text-muted);
}

@media (prefers-reduced-motion: reduce) {
  .audience__item,
  .audience__visual img {
    transition: none;
  }

  .audience__item:hover {
    transform: none;
  }

  .audience__item:hover .audience__visual img {
    transform: none;
  }
}

/* ——— Venue ——— */
.venue {
  padding: var(--space-8) 0;
  background: var(--bg-ink);
  color: rgba(246, 242, 234, 0.78);
  text-align: center;
  border-block: none;
}

.venue .eyebrow {
  color: var(--gold);
}

.venue .section-heading {
  color: #f6f2ea;
}

.venue__city {
  margin: var(--space-5) 0 0;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: -0.02em;
}

.venue__detail {
  margin: var(--space-3) 0 0;
  font-size: 1.05rem;
  color: rgba(246, 242, 234, 0.72);
}

.venue__note {
  margin: var(--space-5) auto 0;
  max-width: 32rem;
  font-size: 0.92rem;
  color: rgba(246, 242, 234, 0.5);
}

/* ——— Closing ——— */
.closing {
  padding: var(--space-8) 0;
  text-align: center;
}

.closing .eyebrow {
  text-align: center;
}

.closing__text {
  margin: var(--space-4) auto 0;
  color: var(--text-muted);
  font-size: 1.08rem;
  max-width: 36rem;
  line-height: 1.65;
}

.closing .section-heading + .closing__text {
  margin-top: var(--space-5);
}

.closing__actions {
  margin-top: var(--space-6);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
}

/* ——— Closing film ——— */
.film {
  padding: var(--space-8) 0;
  background: #000;
  color: rgba(246, 242, 234, 0.88);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.film .eyebrow {
  text-align: center;
  color: var(--gold);
}

.film .section-heading {
  color: #fff;
  margin-bottom: var(--space-5);
}

.film__atmosphere {
  max-width: 36rem;
  margin: 0 auto var(--space-6);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.film__atmosphere p {
  margin: 0;
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  line-height: 1.55;
  color: rgba(246, 242, 234, 0.82);
  font-family: var(--font-serif);
  font-weight: 400;
}

.film__atmosphere-close {
  color: rgba(246, 242, 234, 0.95);
  font-style: italic;
}

.film__frame {
  max-width: 52rem;
  margin: 0 auto;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
  background: #0a0a0a;
}

.film__still {
  margin: 0;
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #0a0a0a;
}

.film__still::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, transparent 28%, transparent 72%, rgba(0, 0, 0, 0.28) 100%),
    radial-gradient(ellipse at center, transparent 45%, rgba(0, 0, 0, 0.35) 100%);
}

.film__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  transform: scale(1.04);
  transform-origin: center center;
  will-change: transform;
  animation: film-kenburns 28s ease-in-out infinite alternate;
}

@keyframes film-kenburns {
  from {
    transform: scale(1.06) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.14) translate3d(-1.5%, -1%, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .film__image {
    animation: none;
    transform: scale(1.04);
  }
}

.ticket__save {
  margin: 0 0 var(--space-2);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gold);
}

.faq__cta {
  display: inline;
  margin-left: 0.25rem;
  padding: 0;
  border: none;
  background: none;
  color: var(--gold-light);
  font: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.12em;
  cursor: pointer;
}

/* ——— Sticky CTA ——— */
.sticky-cta[hidden] {
  display: none !important;
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  background: rgba(0, 0, 0, 0.94);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(201, 160, 40, 0.35);
  padding: 0.75rem 1rem;
  padding-bottom: max(0.75rem, env(safe-area-inset-bottom));
}

.sticky-cta__inner {
  width: min(100%, var(--width));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.sticky-cta__copy {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.sticky-cta__copy strong {
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sticky-cta__copy span {
  color: var(--text-subtle);
  font-size: 0.78rem;
}

.sticky-cta__btn {
  flex-shrink: 0;
  padding: 0.75rem 1.1rem;
  font-size: 0.88rem;
}

@media (max-width: 560px) {
  .sticky-cta__copy span {
    display: none;
  }
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

/* ——— Registration modal ——— */
body.reg-modal-open {
  overflow: hidden;
}

body.reg-modal-open .sticky-cta {
  visibility: hidden;
}

.reg-modal[hidden] {
  display: none !important;
}

.reg-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.reg-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(4px);
  border: none;
  cursor: pointer;
}

.reg-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 28.5rem);
  max-height: min(92vh, 44rem);
  overflow: auto;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.65);
  padding: 1.75rem 1.5rem 1.5rem;
  outline: none;
  animation: modal-in 0.35s var(--ease) both;
}

@keyframes modal-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.reg-modal__close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--bg-soft);
  color: var(--text);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 0;
}

.reg-modal__close:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.reg-modal__title {
  margin: 0 1.75rem 1.35rem 0;
  font-family: var(--font-sans);
  font-size: clamp(1.05rem, 2.8vw, 1.2rem);
  font-weight: 700;
  line-height: 1.35;
  color: var(--text);
  letter-spacing: -0.01em;
}

.reg-form__row {
  margin-bottom: 0.95rem;
}

.reg-form__row label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}

.reg-form__row label span {
  color: var(--gold);
}

.reg-form input[type="text"],
.reg-form input[type="email"],
.reg-form input[type="tel"],
.reg-form select {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border: 1px solid rgba(246, 242, 234, 0.18);
  border-radius: 8px;
  background: #fff;
  color: #111;
  font-family: var(--font-sans);
  font-size: 0.98rem;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.reg-form input:focus,
.reg-form select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--cta-soft);
}

.reg-form__input-icon {
  position: relative;
}

.reg-form__input-icon input {
  padding-left: 2.35rem;
}

.reg-form__icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-subtle);
  font-size: 0.95rem;
  pointer-events: none;
}

.reg-form__phone {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 0.5rem;
}

.reg-form__phone select {
  padding-left: 0.5rem;
  padding-right: 0.35rem;
  font-size: 0.9rem;
}

.reg-form__terms {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin: 1rem 0 0.85rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  cursor: pointer;
}

.reg-form__terms input {
  margin-top: 0.2rem;
  flex-shrink: 0;
  accent-color: var(--gold);
}

.reg-form__terms a {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.reg-form__error {
  margin: 0 0 0.75rem;
  padding: 0.65rem 0.75rem;
  border-radius: 8px;
  background: rgba(180, 60, 40, 0.15);
  color: #e88a7a;
  font-size: 0.88rem;
}

.reg-form__submit {
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

@media (prefers-reduced-motion: reduce) {
  .reg-modal__dialog {
    animation: none;
  }
}

/* ——— Exit-intent offer modal ——— */
body.exit-modal-open {
  overflow: hidden;
}

body.exit-modal-open .sticky-cta {
  visibility: hidden;
}

.exit-modal[hidden] {
  display: none !important;
}

.exit-modal {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.exit-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(5px);
  border: none;
  cursor: pointer;
}

.exit-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 52rem);
  max-height: min(94vh, 46rem);
  overflow: auto;
  background: #0a0a0a;
  color: #f6f2ea;
  border: 1px solid rgba(201, 160, 40, 0.35);
  border-radius: 1.1rem;
  padding: clamp(1.5rem, 3vw, 2.25rem) clamp(1.1rem, 3vw, 2rem) clamp(1.4rem, 3vw, 2rem);
  outline: none;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.75);
  animation: modal-in 0.35s var(--ease) both;
}

.exit-modal__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 2.15rem;
  height: 2.15rem;
  border: 1.5px solid rgba(246, 242, 234, 0.35);
  border-radius: 50%;
  background: transparent;
  color: #f6f2ea;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 2;
}

.exit-modal__close:hover {
  border-color: var(--cta);
  color: var(--cta);
}

.exit-modal__header {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-inline: 1.5rem;
}

.exit-modal__eyebrow {
  margin: 0 0 0.55rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.exit-modal__title {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(1.35rem, 3.5vw, 1.85rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.15;
  color: #f6f2ea;
}

.exit-modal__meta {
  margin: 0.65rem 0 0;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(246, 242, 234, 0.72);
}

.exit-modal__grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 760px) {
  .exit-modal__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.15rem;
    align-items: stretch;
  }
}

.exit-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.35rem 1.15rem 1.15rem;
  background: #0d0d0d;
  border: 1px solid var(--border);
  border-radius: 0.9rem;
  text-align: center;
}

.exit-card--popular {
  border-color: rgba(201, 160, 40, 0.7);
  box-shadow:
    0 0 0 1px rgba(201, 160, 40, 0.28),
    0 18px 40px rgba(0, 0, 0, 0.35);
  background: #12100c;
}

.exit-card--vip .exit-card__price {
  color: var(--gold-light);
}

.exit-card--vip .exit-card__btn {
  background: var(--gold);
  color: var(--vip-badge);
}

.exit-card--vip .exit-card__btn:hover {
  background: var(--gold-light);
  color: var(--vip-badge);
}

.exit-card__badge {
  display: inline-flex;
  align-self: center;
  margin-bottom: 0.85rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: var(--cta);
  color: var(--cta-text);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.exit-card__badge--alt {
  background: var(--bg-soft);
  color: var(--gold);
  border: 1px solid rgba(201, 160, 40, 0.35);
}

.exit-card__tier {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.exit-card__name {
  margin: 0.35rem 0 0;
  font-family: var(--font-sans);
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.2;
  color: #f6f2ea;
}

.exit-card__price {
  margin: 0.85rem 0 0;
  font-family: var(--font-sans);
  font-size: clamp(2.4rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--cta);
}

.exit-card__save {
  margin: 0.55rem 0 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.exit-card__perks {
  list-style: none;
  margin: 1.1rem 0 1.25rem;
  padding: 0;
  text-align: left;
  flex: 1;
}

.exit-card__perks li {
  position: relative;
  margin: 0;
  padding: 0.7rem 0 0.7rem 1.55rem;
  border-top: 1px solid rgba(246, 242, 234, 0.1);
  font-size: 0.88rem;
  line-height: 1.35;
  color: rgba(246, 242, 234, 0.78);
}

.exit-card__perks li:last-child {
  border-bottom: 1px solid rgba(246, 242, 234, 0.1);
}

.exit-card__perks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.7rem;
  color: var(--gold-light);
  font-weight: 700;
}

.exit-card__perk--bonus {
  font-weight: 700;
  color: #f6f2ea;
}

.exit-card__perk--bonus::before {
  content: "★";
  color: var(--cta);
}

.exit-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: auto;
  padding: 0.95rem 1rem;
  border-radius: var(--radius-btn);
  background: var(--cta);
  color: var(--cta-text);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s var(--ease);
}

.exit-card__btn:hover {
  background: var(--cta-hover);
  color: var(--cta-text);
}

@media (prefers-reduced-motion: reduce) {
  .exit-modal__dialog {
    animation: none;
  }
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
