/* ==========================================================================
   Nexxt Chapter — Design System
   Palette sampled from the Nexxt Chapter logo (deep purple/black, lavender)
   ========================================================================== */

:root {
  /* Palette */
  --black: #050505;
  --near-black: #0A0710;
  --bg-deep: #08060D;
  --bg-deep-2: #10091A;
  --purple-royal-1: #1C1030;
  --purple-royal-2: #291545;
  --purple-primary: #6E3C94;
  --purple-primary-light: #8650B1;
  --lavender: #B78BD6;
  --lavender-light: #D7B8EA;
  --soft-white: #F8F5FA;
  --white: #FFFFFF;

  /* Semantic */
  --surface-dark: var(--bg-deep);
  --surface-dark-2: var(--bg-deep-2);
  --surface-light: var(--soft-white);
  --text-on-dark: var(--soft-white);
  --text-on-dark-muted: rgba(248, 245, 250, 0.72);
  --text-on-light: #241733;
  --text-on-light-muted: #5B4C6B;
  --accent: var(--lavender);
  --accent-strong: var(--purple-primary-light);
  --border-on-dark: rgba(215, 184, 234, 0.22);
  --border-on-light: rgba(110, 60, 148, 0.18);

  /* Typography */
  --font-serif: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --font-sans: "Inter", "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-script: "Beau Rivage", "Mrs Saint Delafield", cursive;

  /* Layout */
  --container-max: 1280px;
  --header-height: 92px;
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 28px;
  --shadow-glow: 0 0 80px rgba(183, 139, 214, 0.18);
  --shadow-card: 0 24px 60px rgba(5, 3, 10, 0.45);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ==========================================================================
   Reset
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body, h1, h2, h3, h4, p, figure, blockquote { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }
svg { display: block; }

html, body { overflow-x: hidden; }

body {
  font-family: var(--font-sans);
  background: var(--bg-deep);
  color: var(--text-on-dark);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

:focus-visible {
  outline: 2px solid var(--lavender-light);
  outline-offset: 3px;
}

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

.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 32px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  background: var(--purple-primary-light);
  color: var(--white);
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  z-index: 1000;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 16px; }

/* ==========================================================================
   Typography helpers
   ========================================================================== */

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}

.script {
  font-family: var(--font-script);
  font-weight: 400;
  line-height: 1.2;
}

.section-heading {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.rule-flanked {
  display: flex;
  align-items: center;
  gap: 18px;
}
.rule-flanked::before,
.rule-flanked::after {
  content: "";
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, var(--border-on-dark), transparent);
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 15px; height: 15px; flex-shrink: 0; }

.btn-primary {
  background: linear-gradient(135deg, var(--purple-primary-light), var(--purple-primary));
  color: var(--white);
  box-shadow: 0 10px 30px rgba(110, 60, 148, 0.45);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(134, 80, 177, 0.55);
}

.btn-outline {
  border: 1px solid var(--border-on-dark);
  color: var(--text-on-dark);
  background: rgba(255, 255, 255, 0.03);
}
.btn-outline:hover {
  background: rgba(215, 184, 234, 0.1);
  border-color: var(--lavender);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--near-black);
  color: var(--soft-white);
}
.btn-dark:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,0,0,0.4); }

.btn-block { width: 100%; justify-content: center; }

.btn[disabled] { opacity: 0.55; cursor: not-allowed; transform: none !important; }

/* ==========================================================================
   Reveal-on-scroll utility
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

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

/* ==========================================================================
   Header / Navigation
   ========================================================================== */

.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  padding: 22px 0;
  background: linear-gradient(180deg, rgba(8, 6, 13, 0.85), rgba(8, 6, 13, 0));
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  padding: 14px 0;
  background: rgba(8, 6, 13, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--border-on-dark);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-logo img { width: 52px; height: 52px; border-radius: 12px; }
.nav-logo-word {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  color: var(--soft-white);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--lavender);
  transition: right 0.35s var(--ease);
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--soft-white); }
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { right: 0; }

.nav-actions { display: flex; align-items: center; gap: 18px; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-on-dark);
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-toggle-bars { position: relative; width: 18px; height: 12px; }
.nav-toggle-bars span {
  position: absolute; left: 0; width: 100%; height: 1.5px;
  background: var(--soft-white);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease), top 0.3s var(--ease);
}
.nav-toggle-bars span:nth-child(1) { top: 0; }
.nav-toggle-bars span:nth-child(2) { top: 5px; }
.nav-toggle-bars span:nth-child(3) { top: 10px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(1) { top: 5px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(3) { top: 5px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(8, 6, 13, 0.98);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 34px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), visibility 0.35s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; transform: none; }
.mobile-menu a {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--soft-white);
}
.mobile-menu .btn { margin-top: 10px; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-actions .btn-primary.desktop-only { display: none; }
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-height) + 30px);
  padding-bottom: 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 55% at 82% 30%, rgba(183, 139, 214, 0.16), transparent 60%),
    radial-gradient(ellipse 70% 60% at 15% 85%, rgba(110, 60, 148, 0.22), transparent 65%),
    linear-gradient(160deg, var(--bg-deep-2) 0%, var(--purple-royal-1) 45%, var(--bg-deep) 100%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr);
  align-items: end;
  gap: 30px;
}

.hero-copy-col { max-width: 620px; padding-bottom: 96px; }

.hero-eyebrow-script {
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  color: var(--lavender-light);
  margin-bottom: 2px;
}

.hero-title {
  font-size: clamp(3.4rem, 8.2vw, 7rem);
  line-height: 0.98;
  text-transform: uppercase;
  color: var(--soft-white);
  letter-spacing: 0.01em;
}
.hero-title .accent { color: var(--lavender-light); display: block; }

.hero-subtitle {
  margin-top: 26px;
  margin-bottom: 24px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.2rem, 1.7vw, 1.5rem);
  color: var(--lavender-light);
}

.hero-desc {
  color: var(--text-on-dark-muted);
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  max-width: 480px;
  margin-bottom: 36px;
}
.hero-desc strong { color: var(--soft-white); font-weight: 600; }

.hero-portrait-col {
  position: relative;
  align-self: end;
}

.hero-portrait {
  display: block;
  position: relative;
  z-index: 2;
}
.hero-portrait img {
  width: 100%;
  height: auto;
  max-height: calc(100vh - var(--header-height) - 40px);
  object-fit: contain;
  object-position: bottom center;
  margin-inline: auto;
  /* Soft dissolve where the portrait meets the section edge */
  -webkit-mask-image: linear-gradient(180deg, #000 62%, rgba(0, 0, 0, 0.72) 80%, rgba(0, 0, 0, 0.28) 92%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 62%, rgba(0, 0, 0, 0.72) 80%, rgba(0, 0, 0, 0.28) 92%, transparent 100%);
}

.hero-portrait-glow {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 108%;
  height: 88%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse 52% 58% at 50% 55%, rgba(183, 139, 214, 0.34), rgba(110, 60, 148, 0.18) 45%, transparent 72%);
  filter: blur(34px);
  z-index: 1;
  pointer-events: none;
}

.hero-signature-block {
  position: absolute;
  left: 6%;
  bottom: 120px;
  z-index: 3;
  width: max-content;
  max-width: 88%;
  text-shadow: 0 2px 14px rgba(5, 3, 10, 0.95), 0 0 34px rgba(5, 3, 10, 0.75);
}
/* Scrim keeps the signature legible over the jacket's bright highlights */
.hero-signature-block::before {
  content: "";
  position: absolute;
  inset: -26px -46px -22px -40px;
  background: radial-gradient(ellipse 60% 60% at 40% 50%, rgba(5, 3, 10, 0.72), rgba(5, 3, 10, 0.4) 55%, transparent 78%);
  filter: blur(6px);
  z-index: -1;
  pointer-events: none;
}
.hero-signature {
  font-size: clamp(2.2rem, 3.6vw, 3.1rem);
  color: var(--soft-white);
}
.hero-role {
  margin-top: 4px;
  font-size: clamp(0.66rem, 0.8vw, 0.78rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
}

@media (max-width: 1024px) {
  .hero { min-height: 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 0; }
  .hero-copy-col { max-width: 100%; text-align: center; margin-inline: auto; padding-bottom: 0; }
  .hero-desc { margin-inline: auto; }
  .rule-flanked-center { justify-content: center; }
  .hero-portrait-col { order: -1; }
  .hero-portrait img { max-height: 56vh; }
  .hero-signature-block { left: 50%; transform: translateX(-50%); text-align: center; bottom: 26px; }
}

@media (max-width: 480px) {
  .hero { padding-top: calc(var(--header-height) + 10px); }
  .hero-title { font-size: 3rem; }
  .hero-portrait img { max-height: 46vh; }
  .hero-signature-block { bottom: 16px; }
}

/* ==========================================================================
   Movement + Quote split section
   ========================================================================== */

.movement-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.movement-panel {
  background: var(--surface-light);
  color: var(--text-on-light);
  padding: 100px 6vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.movement-heading {
  font-size: clamp(2.1rem, 3.4vw, 2.9rem);
  color: var(--text-on-light);
}
.movement-heading .script { color: var(--purple-primary); font-size: 1.15em; margin-left: 8px; }

.movement-copy {
  margin-top: 22px;
  max-width: 440px;
  color: var(--text-on-light-muted);
  font-size: 1.02rem;
}

.movement-icons {
  display: flex;
  gap: 44px;
  margin-top: 44px;
  flex-wrap: wrap;
}
.movement-icon-item { text-align: center; }
.movement-icon-item .icon-ring {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid var(--border-on-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: var(--purple-primary);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.movement-icon-item:hover .icon-ring {
  transform: translateY(-4px);
  border-color: var(--purple-primary);
  box-shadow: 0 12px 28px rgba(110, 60, 148, 0.18);
}
.movement-icon-item .icon-ring svg { width: 26px; height: 26px; }
.movement-icon-item span {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-on-light);
}

.quote-panel {
  background:
    radial-gradient(ellipse 70% 70% at 80% 20%, rgba(183, 139, 214, 0.16), transparent 60%),
    linear-gradient(160deg, var(--purple-royal-2), var(--bg-deep-2));
  color: var(--soft-white);
  padding: 100px 6vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.quote-mark {
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: 1;
  color: var(--lavender);
  opacity: 0.8;
  margin-bottom: 10px;
}
.quote-text {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.35;
  max-width: 480px;
  color: var(--soft-white);
}
.quote-attribution {
  margin-top: 26px;
  font-size: 1.3rem;
  color: var(--lavender-light);
}
.quote-note {
  margin-top: 18px;
  font-size: 0.78rem;
  color: var(--text-on-dark-muted);
  max-width: 420px;
}

@media (max-width: 900px) {
  .movement-split { grid-template-columns: 1fr; }
  .movement-panel, .quote-panel { padding: 72px 7vw; }
  .movement-icons { justify-content: center; }
}

/* ==========================================================================
   Coming Soon (Podcast + Workbook)
   ========================================================================== */

.coming-soon {
  background: var(--bg-deep);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.coming-soon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 45% at 50% 0%, rgba(110, 60, 148, 0.18), transparent 65%);
  pointer-events: none;
}

.coming-soon-label { text-align: center; margin-bottom: 18px; }
.coming-soon-title {
  text-align: center;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  color: var(--soft-white);
  margin-bottom: 70px;
}

.coming-soon-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 64px;
  align-items: center;
}

.feature-block h3 {
  font-size: clamp(1.5rem, 2.2vw, 1.9rem);
  color: var(--soft-white);
  margin-top: 20px;
  margin-bottom: 4px;
}
.feature-block h3 .script { display: block; font-size: 1.5em; color: var(--lavender-light); margin-top: 2px; }
.feature-block p {
  color: var(--text-on-dark-muted);
  margin-bottom: 26px;
  max-width: 380px;
}
.feature-block.align-right { text-align: right; margin-left: auto; }
.feature-block.align-right p { margin-left: auto; }

.mic-icon {
  width: 78px; height: 78px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border-on-dark);
  color: var(--lavender-light);
  filter: drop-shadow(0 0 18px rgba(183, 139, 214, 0.45));
}
.mic-icon svg { width: 34px; height: 34px; }

.book-visual { display: flex; justify-content: center; }
.book-mockup {
  width: 230px;
  height: 330px;
  border-radius: 4px 12px 12px 4px;
  background: linear-gradient(150deg, var(--purple-primary-light) 0%, var(--purple-royal-2) 60%, var(--purple-royal-1) 100%);
  box-shadow:
    inset 6px 0 0 rgba(0,0,0,0.25),
    inset -2px 0 0 rgba(255,255,255,0.06),
    12px 18px 0 -6px rgba(0,0,0,0.35),
    0 40px 70px rgba(5,3,10,0.55);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 34px 26px;
  color: var(--soft-white);
}
.book-mockup::after {
  content: "";
  position: absolute;
  right: -6px; top: 6px; bottom: 6px;
  width: 6px;
  background: repeating-linear-gradient(180deg, rgba(255,255,255,0.5) 0 1px, transparent 1px 3px);
  border-radius: 0 3px 3px 0;
  opacity: 0.5;
}
.book-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  line-height: 1.15;
}
.book-title .script { display: block; font-size: 1.2em; color: var(--lavender-light); margin: 4px 0; }
.book-kicker {
  margin-top: 14px;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
}
.book-monogram {
  width: 40px; height: 40px;
  margin-top: 20px;
  border-radius: 50%;
  border: 1px solid var(--border-on-dark);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--lavender-light);
}

@media (max-width: 900px) {
  .coming-soon-grid { grid-template-columns: 1fr; text-align: center; gap: 56px; }
  .feature-block, .feature-block.align-right { text-align: center; margin-inline: auto; }
  .feature-block p, .feature-block.align-right p { margin-inline: auto; }
  .mic-icon { margin-inline: auto; }
  .book-visual { order: -1; }
}

/* ==========================================================================
   Newsletter strip
   ========================================================================== */

.newsletter {
  background: linear-gradient(120deg, var(--purple-primary-light), var(--purple-primary));
  padding: 56px 0;
}
.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.newsletter-copy { max-width: 460px; }
.newsletter-copy h2 {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  color: var(--white);
  margin-bottom: 8px;
}
.newsletter-copy p { color: rgba(255,255,255,0.88); font-size: 0.95rem; }

.newsletter-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex: 1;
  justify-content: flex-end;
  min-width: 300px;
}
.newsletter-form input {
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 999px;
  padding: 14px 20px;
  color: var(--white);
  min-width: 180px;
  flex: 1;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.75); }
.newsletter-form input:focus { outline: 2px solid var(--white); outline-offset: 2px; }

.form-note {
  width: 100%;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.75);
  margin-top: 4px;
}
.form-success {
  display: none;
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
}
.form-success.is-visible { display: block; }

@media (max-width: 760px) {
  .newsletter-inner { flex-direction: column; align-items: stretch; text-align: center; }
  .newsletter-copy { max-width: 100%; }
  .newsletter-form { justify-content: center; }
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--near-black);
  padding: 80px 0 30px;
  border-top: 1px solid var(--border-on-dark);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 50px;
}
.footer-brand { display: flex; flex-direction: column; gap: 18px; max-width: 320px; }
.footer-brand img { width: 56px; height: 56px; border-radius: 12px; }
.footer-brand p { color: var(--text-on-dark-muted); font-size: 0.92rem; }

.footer-col h4 {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lavender-light);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a, .footer-col li {
  color: var(--text-on-dark-muted);
  font-size: 0.92rem;
  transition: color 0.3s var(--ease);
}
.footer-col a:hover { color: var(--soft-white); }

.footer-social { display: flex; gap: 12px; margin-top: 4px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border-on-dark);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.footer-social a:hover { border-color: var(--lavender); transform: translateY(-2px); }
.footer-social svg { width: 16px; height: 16px; }

.footer-bottom {
  border-top: 1px solid var(--border-on-dark);
  padding-top: 26px;
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-on-dark-muted);
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; max-width: 100%; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-brand { align-items: center; }
  .footer-social { justify-content: center; }
}

/* ==========================================================================
   Inner-page hero banner
   ========================================================================== */

.page-hero {
  position: relative;
  padding-top: calc(var(--header-height) + 80px);
  padding-bottom: 90px;
  text-align: center;
  background:
    radial-gradient(ellipse 60% 60% at 50% 0%, rgba(183, 139, 214, 0.18), transparent 65%),
    linear-gradient(170deg, var(--bg-deep-2), var(--purple-royal-1) 55%, var(--bg-deep));
  overflow: hidden;
}
.page-hero-eyebrow { display: flex; justify-content: center; margin-bottom: 18px; }
.page-hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  color: var(--soft-white);
}
.page-hero .lede {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--lavender-light);
  font-size: 1.2rem;
  margin-top: 18px;
  max-width: 560px;
  margin-inline: auto;
}
.page-hero .lede + .lede { margin-top: 4px; }

/* ==========================================================================
   Generic content sections (About / Podcast / Workbook / Contact)
   ========================================================================== */

.section { padding: 110px 0; }
.section-tight { padding: 80px 0; }
.section-light { background: var(--surface-light); color: var(--text-on-light); }
.section-dark { background: var(--bg-deep); }
.section-royal { background: linear-gradient(160deg, var(--purple-royal-2), var(--bg-deep-2)); }

.split-media {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.split-media.reverse { grid-template-columns: 1.1fr 0.9fr; }
.split-media.reverse .split-media-media { order: 2; }

.split-media-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}
.media-frame { position: relative; }
.media-frame::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(183, 139, 214, 0.35);
  border-radius: var(--radius-lg);
  pointer-events: none;
  z-index: 1;
}

.split-media-copy .eyebrow { margin-bottom: 16px; }
.split-media-copy h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  margin-bottom: 20px;
}
.section-light .split-media-copy h2 { color: var(--text-on-light); }
.section-dark .split-media-copy h2,
.section-royal .split-media-copy h2 { color: var(--soft-white); }

.split-media-copy p { margin-bottom: 16px; }
.section-light .split-media-copy p { color: var(--text-on-light-muted); }
.section-dark .split-media-copy p,
.section-royal .split-media-copy p { color: var(--text-on-dark-muted); }

@media (max-width: 900px) {
  .split-media, .split-media.reverse { grid-template-columns: 1fr; gap: 40px; }
  .split-media.reverse .split-media-media { order: -1; }
}

.centered-block {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}
.centered-block h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  color: var(--soft-white);
  margin-bottom: 22px;
}
.centered-block p { color: var(--text-on-dark-muted); font-size: 1.05rem; }
.section-light .centered-block h2 { color: var(--text-on-light); }
.section-light .centered-block p { color: var(--text-on-light-muted); }

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 60px;
}
.card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }

.info-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-on-dark);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.info-card:hover {
  transform: translateY(-6px);
  border-color: var(--lavender);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.info-card .icon-ring {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid var(--border-on-dark);
  display: flex; align-items: center; justify-content: center;
  color: var(--lavender-light);
  margin-bottom: 18px;
}
.info-card .icon-ring svg { width: 24px; height: 24px; }
.info-card h3 { font-family: var(--font-serif); font-size: 1.2rem; color: var(--soft-white); margin-bottom: 10px; }
.info-card p { color: var(--text-on-dark-muted); font-size: 0.92rem; }

.section-light .info-card {
  background: var(--white);
  border-color: var(--border-on-light);
}
.section-light .info-card h3 { color: var(--text-on-light); }
.section-light .info-card p { color: var(--text-on-light-muted); }
.section-light .info-card .icon-ring { color: var(--purple-primary); border-color: var(--border-on-light); }

@media (max-width: 1024px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .card-grid, .card-grid.cols-3 { grid-template-columns: 1fr; } }

.pill-list { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 34px; }
.pill {
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--border-on-dark);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--text-on-dark-muted);
}

.cta-banner {
  text-align: center;
  padding: 90px 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 100%, rgba(183, 139, 214, 0.2), transparent 65%),
    linear-gradient(180deg, var(--bg-deep-2), var(--bg-deep));
}
.cta-banner h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--soft-white);
  max-width: 640px;
  margin: 20px auto 34px;
}

/* Coming soon ribbon (Podcast / Workbook pages) */
.ribbon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid var(--lavender);
  color: var(--lavender-light);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 26px;
}
.ribbon .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--lavender-light);
  box-shadow: 0 0 10px var(--lavender-light);
}

/* ==========================================================================
   Workbook page specifics
   ========================================================================== */

.workbook-hero-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: center;
}
.workbook-hero-grid .book-mockup { width: 100%; max-width: 320px; height: 440px; margin-inline: auto; }
.workbook-hero-grid .book-title { font-size: 1.9rem; }

@media (max-width: 900px) {
  .workbook-hero-grid { grid-template-columns: 1fr; text-align: center; }
}

.checklist { margin-top: 20px; display: flex; flex-direction: column; gap: 14px; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-on-dark-muted);
}
.section-light .checklist li { color: var(--text-on-light-muted); }
.checklist svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 3px; color: var(--lavender-light); }
.section-light .checklist svg { color: var(--purple-primary); }

/* ==========================================================================
   Forms (Contact page, Notify Me)
   ========================================================================== */

.form-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-on-dark);
  border-radius: var(--radius-lg);
  padding: 46px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { margin-bottom: 22px; }
.field label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
  margin-bottom: 10px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-on-dark);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--soft-white);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%23D7B8EA' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--lavender);
  background: rgba(255,255,255,0.08);
  outline: none;
}
.field-required { color: var(--lavender-light); }

@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }

.contact-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; }
.contact-sidebar { display: flex; flex-direction: column; gap: 26px; }
.contact-sidebar-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-sidebar-item .icon-ring {
  width: 46px; height: 46px; flex-shrink: 0;
  border-radius: 50%; border: 1px solid var(--border-on-dark);
  display: flex; align-items: center; justify-content: center;
  color: var(--lavender-light);
}
.contact-sidebar-item .icon-ring svg { width: 20px; height: 20px; }
.contact-sidebar-item h4 { font-size: 0.95rem; color: var(--soft-white); margin-bottom: 4px; }
.contact-sidebar-item p { color: var(--text-on-dark-muted); font-size: 0.92rem; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-card { padding: 30px 24px; }
}
