

/*
   TOKENS / RESET / TYPE / UTILITIES / NAV / FOOTER (from shared.css)
*/
/*
   E4B Design System - shared across all pages.
   Palette, type, nav, footer, base utilities.
*/

:root {
  /* Brand - Parchment family */
  --parchment: #EDE8E0;
  --parchment-warm: #F5F1E8;
  --parchment-soft: #F9F5EC;

  /* Ink */
  --indigo: #0F172A;
  --indigo-soft: #1E293B;
  --indigo-muted: rgba(15, 23, 42, 0.62);
  --indigo-faint: rgba(15, 23, 42, 0.28);

  /* Accents */
  --moss: #4A5D45;
  --moss-soft: #6a7c63;
  --teal: #3D8B84;
  --teal-deep: #347a73;
  --gold: #D4AF37;
  --gold-deep: #BF9A2E;
  --gold-rich: #C9A430;
  --gold-soft: rgba(212, 175, 55, 0.38);
  --burgundy: #8B3A4A;
  --bronze: #8B6B3D;
  --bronze-deep: #8B7028;
  --music-charcoal: #1a1a1a;
  --music-slate: #33363D;
  --music-ink-warm: #4A453D;
  --cream-bright: #FFFDF5;
  --surface-card: #FAF8F5;

  /* Rule / hairline */
  --rule: rgba(74, 93, 69, 0.18);
  --rule-strong: rgba(74, 93, 69, 0.32);

  /* Type */
  --serif: "Cormorant Garamond", "Cormorant", "EB Garamond", Georgia, serif;
  --sans: "DM Sans", "Inter", ui-sans-serif, system-ui, sans-serif;
  --script: "Tangerine", "Alex Brush", "Allura", cursive;

  /* Type scale */
  --text-body: 1.125rem;
  --text-sm: 1rem;
  --text-lg: 1.25rem;
  --text-xl: 1.5rem;
  --text-2xl: 2rem;
  --text-3xl: 2.5rem;
  --text-4xl: 3rem;

  /* Dawn warmth */
  --dawn-1: #F8EFE0;
  --dawn-2: #F1E3CC;
  --dawn-3: #EAD3B4;
  --dawn-glow: rgba(212, 175, 55, 0.18);

  /* Shadows */
  --shadow-soft: 0 1px 0 rgba(255,255,255,0.6) inset, 0 20px 60px -28px rgba(15,23,42,0.18);
  --shadow-rise: 0 1px 0 rgba(255,255,255,0.65) inset, 0 30px 80px -32px rgba(15,23,42,0.24);

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);

  /* Layout */
  --container: 1180px;

  /* Spacing rhythm */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-7: 32px;
  --space-8: 40px;
  --space-9: 48px;
  --space-10: 56px;
  --space-section: clamp(40px, 5vw, 72px);
  --space-section-compact: clamp(28px, 4vw, 48px);
  --space-section-hero: clamp(56px, 7vw, 96px);
  --layout-gap-copy: clamp(20px, 3vw, 32px);
  --layout-gap-block: clamp(28px, 4vw, 44px);
  --layout-gap-panel: clamp(24px, 3vw, 36px);
  --space-player-clearance: 8rem;
  --gutter-page: 28px;
  --gutter-page-wide: 40px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--parchment);
  color: var(--indigo);
  font-family: var(--sans);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  min-height: 100vh;
  font-size: var(--text-body);
  background:
    linear-gradient(180deg,
      color-mix(in oklab, var(--parchment) 55%, transparent) 0%,
      color-mix(in oklab, var(--parchment) 65%, transparent) 40%,
      color-mix(in oklab, var(--parchment) 80%, transparent) 100%),
    radial-gradient(ellipse 900px 500px at 50% -10%, var(--dawn-glow), transparent 60%),
    radial-gradient(ellipse 700px 380px at 90% 100%, rgba(61, 139, 132, 0.06), transparent 55%),
    url('/assets/background.webp') center top / cover no-repeat,
    linear-gradient(180deg, var(--dawn-1) 0%, var(--parchment) 30%, var(--parchment) 100%);
}

/* Type primitives */
.serif { font-family: var(--serif); font-weight: 400; letter-spacing: 0; }
.sans  { font-family: var(--sans); }
.script { font-family: var(--script); font-weight: 400; }

.eyebrow {
  font-family: var(--sans);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--moss);
}

p { text-wrap: pretty; hyphens: none; }

h1, h2, h3 {
  font-family: var(--serif);
  color: var(--moss);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.42;
  margin: 0;
}

h1 { font-size: var(--text-4xl); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-2xl); }

@media (max-width: 640px) {
  h1 { font-size: var(--text-3xl); }
  h2 { font-size: var(--text-2xl); }
  h3 { font-size: var(--text-xl); }
}

a { color: var(--teal); text-decoration: none; }
a:hover { opacity: 0.85; }

button, input, select, textarea { font: inherit; }

/* Utilities */
.hidden { display: none; }
.muted { color: var(--indigo-muted); }

/* Glass card (backward compat) */
.glass-card {
  background: rgba(250, 248, 245, 0.90);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(245, 241, 235, 0.7);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

/* Fade-up animation */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Navigation */
.nav-bar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  background: color-mix(in oklab, var(--parchment) 82%, transparent);
  border-bottom: 1px solid var(--rule);
  transition: background 0.3s ease;
}

.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-wordmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--moss);
}

.brand-logo {
  width: auto;
  display: block;
  mix-blend-mode: multiply;
}

.nav-logo { height: 44px; }
.footer-logo { height: 56px; }

.is-hidden {
  display: none;
}

.nav-wordmark-text {
  font-family: var(--serif);
  font-style: italic;
  letter-spacing: 0.01em;
  line-height: 1;
}

.nav-wordmark-text small {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--indigo-faint);
  margin-top: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  font-family: var(--sans);
  letter-spacing: 0.06em;
  color: var(--indigo-muted);
  padding: 8px 14px;
  border: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 999px;
  text-decoration: none;
  transition: color 200ms var(--ease), background 200ms var(--ease);
}

.nav-link:hover,
.nav-link.active {
  color: var(--moss);
  background: color-mix(in oklab, var(--moss) 8%, transparent);
}

.nav-cta {
  font-family: var(--sans);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--parchment);
  background: var(--moss);
  border: 1px solid var(--moss);
  padding: 11px 18px;
  cursor: pointer;
  text-decoration: none;
  transition: background 200ms var(--ease), color 200ms var(--ease);
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--indigo);
  border-color: var(--indigo);
  color: var(--parchment);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--moss);
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: color-mix(in oklab, var(--parchment) 95%, transparent);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.5rem 1.5rem 1rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-link {
    padding: 0.75rem 0;
    border-radius: 0;
    width: 100%;
  }
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--rule);
  padding: 64px 28px 80px;
  background: color-mix(in oklab, var(--parchment-warm) 92%, transparent);
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}

@media (min-width: 760px) {
  .footer-inner { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
}

.footer-col-heading {
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--moss);
  margin: 0 0 16px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li { padding: 4px 0; }

.footer-col a {
  color: var(--indigo-muted);
  text-decoration: none;
  border-bottom: 0;
}

.footer-col a:hover { color: var(--moss); }

.footer-brand-text {
  color: var(--indigo-muted);
  max-width: 32ch;
  margin-top: 16px;
  line-height: 1.55;
}

.footer-bottom {
  max-width: var(--container);
  margin: 48px auto 0;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--indigo-faint);
}

.footer-tagline {
  font-style: italic;
  font-family: var(--serif);
}

/* Section divider (backward compat) */
.section-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  border-radius: 2px;
  margin: 0 auto;
}

.story-section > .section-divider,
.container-narrow > .section-divider {
  margin-bottom: var(--layout-gap-copy);
}

/* Utility */
.faint { color: var(--indigo-faint); }
.center { text-align: center; }


/*
   SHARED PUBLIC LAYOUT / HERO / BUTTONS / CARDS / FORMS / HOME MODULES
*/
/*
   E4B Homepage - section styles.
   Ownership note: shared primitives live first. Home-specific launch modules
   are centralized here so spacing and brand rules stay auditable; promote a
   launch module into a shared component family before reuse.
   Layered on top of shared.css. Hero, diagnosis,
   method, CARE wheel, album, pricing, CTA.
*/

/* Sections (vertical rhythm only; width belongs to .container*)
   2026-05-21 container-consistency refactor.
   .section provides vertical rhythm + full-width frame for backgrounds.
   The inner .container / .container-narrow / .container-prose / .container-feed
   handles horizontal centering, max-width, and side padding.
*/
.section {
  position: relative;
  padding-top: var(--space-section);
  padding-bottom: var(--space-section);
  padding-left: 0;
  padding-right: 0;
  width: 100%;
}
.section-compact {
  padding-top: var(--space-section-compact);
  padding-bottom: var(--space-section-compact);
}
.section-hero {
  padding-top: var(--space-section-hero);
  padding-bottom: var(--space-section-hero);
}

.section-header {
  padding-bottom: 0;
}

.section-continuation {
  padding-top: 0;
}

.section-narrow {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter-page);
  padding-right: var(--gutter-page);
}

.section-eyebrow + .display,
.section-eyebrow + h1,
.section-eyebrow + h2 {
  margin-top: var(--space-5);
}

.display + .prose,
.display + .section-intro,
.section-eyebrow + .kicker {
  margin-top: var(--layout-gap-copy);
}

.prose + .prose,
.section-intro + .prose {
  margin-top: var(--space-4);
}

.section-intro {
  font-family: var(--sans);
  color: var(--indigo);
  line-height: 1.65;
  max-width: 44rem;
}

.section-intro.muted {
  color: var(--indigo-muted);
}

.section-note {
  margin-top: var(--layout-gap-copy);
  max-width: 640px;
}

.section-note--wide {
  max-width: 44ch;
}

.section-caption {
  margin-top: var(--space-5);
}

.hero-title {
  font-style: italic;
  line-height: 1.28;
}

.hero-title--legal {
  font-style: italic;
}

.section-title {
  font-style: italic;
}

.section-title--narrow {
  font-style: italic;
  max-width: 22ch;
}

.method-title,
.workshop-form-title {
  font-style: italic;
}

.content-center {
  text-align: center;
}

.content-left {
  text-align: left;
}

.content-narrow {
  max-width: 38em;
}

.content-large {
  font-size: 1.25rem;
}

.content-small {
  font-size: 0.875rem;
}

.serif-italic {
  font-family: var(--serif);
  font-style: italic;
}

.text-accent-teal { color: var(--teal); }
.text-accent-moss { color: var(--moss); }
.text-accent-gold { color: var(--gold); }
.text-accent-bronze { color: var(--bronze); }

.eyebrow-center {
  justify-content: center;
}

.eyebrow-secondary {
  margin-top: 6px;
}

.tool-lines {
  max-width: 640px;
  margin: var(--layout-gap-copy) auto 0;
  text-align: left;
}

.action-row {
  margin-top: var(--space-7);
}

.action-row--compact {
  margin-top: var(--space-5);
}

.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.inline-actions--tight {
  gap: 12px;
}

.inline-actions--loose {
  gap: 16px;
}

.inline-actions--center {
  justify-content: center;
}

.stack {
  display: flex;
  flex-direction: column;
}

.stack--xs { gap: var(--space-2); }
.stack--sm { gap: 14px; }
.stack--md { gap: var(--space-5); }

.rule-panel {
  padding-top: var(--space-7);
  border-top: 1px solid var(--gold-soft);
}

.rule-panel--muted {
  border-top-color: rgba(139,107,61,0.15);
}

.price-emphasis {
  font-family: var(--serif);
  color: var(--indigo);
  font-weight: 700;
}

.audio-wave--fill {
  flex: 1;
}

.preview-depth--medium {
  opacity: 0.7;
}

.preview-depth--low {
  opacity: 0.4;
}

.care-section {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.form-stack {
  margin-bottom: var(--space-5);
}

.form-stack--large {
  margin-bottom: var(--space-6);
}

.offering-icon--gold {
  background: color-mix(in oklab, var(--gold) 10%, transparent);
}

.offering-icon--bronze {
  background: rgba(139, 107, 61, 0.1);
}

.strong-moss {
  color: var(--moss);
  font-weight: 500;
}

.inline-meta-group {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.inline-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.dot-small {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  display: inline-block;
}
.dot-small.gold { background: var(--gold); }
.dot-small.teal { background: var(--teal); }
.dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  display: inline-block;
}
.dot-gold { background: var(--gold); }
.dot-teal { background: var(--teal); }

.micro-copy {
  margin-top: 6px;
}

.track-duration {
  color: var(--indigo-faint);
  font-size: 0.6875rem;
}

.gold-separator {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
}

.teal-note {
  font-style: italic;
  color: var(--teal);
  font-family: var(--serif);
}

.loading-post {
  text-align: center;
  padding: 4rem 1rem;
}

.loading-post-copy {
  color: var(--indigo-muted);
}

/* Container contract */
.container,
.container-narrow,
.container-prose,
.container-feed,
.container-music-tracks,
.container-music-player {
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter-page);
  padding-right: var(--gutter-page);
  width: 100%;
}
@media (min-width: 760px) {
  .container,
  .container-narrow,
  .container-prose,
  .container-feed,
  .container-music-tracks,
  .container-music-player {
    padding-left: var(--gutter-page-wide);
    padding-right: var(--gutter-page-wide);
  }
}
.container             { max-width: 1180px; }
.container-narrow      { max-width: 780px;  }
.container-prose       { max-width: 780px;  }
.container-feed        { max-width: 520px;  }
.container-music-tracks { max-width: 800px;  }
.container-music-player { max-width: 1000px; }

.section-eyebrow {
  font-family: var(--sans);
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--moss);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.section-eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.display {
  font-family: var(--serif);
  color: var(--moss);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.42;
  margin: 0;
}

.prose {
  max-width: 54ch;            /* match hero-sub */
  font-family: var(--sans);
  font-size: var(--text-body);/* explicit, no inheritance surprises */
  line-height: 1.68;
  color: var(--indigo);
}
.prose em {
  font-family: var(--serif);
  font-style: italic;
}

/* Hero (only used on home .hero variant - HbD .hero is overridden in
   e4b-player.css). Vertical rhythm comes from .section-hero; content centering
   comes from .container inside.
   2026-05-21: removed inline max-width so .hero behaves like .section. */
.hero {
  position: relative;
  padding-left: 0;
  padding-right: 0;
  width: 100%;
  overflow: hidden;
}

.hero h1 {
  font-family: var(--serif);
  color: var(--moss);
  font-weight: 500;
  font-style: italic;
  line-height: 1.5;
  letter-spacing: 0;
  text-wrap: balance;
  max-width: 30ch;
  text-shadow:
    0 0 1px var(--parchment),
    0 0 4px var(--parchment),
    0 0 14px var(--parchment),
    0 0 28px color-mix(in oklab, var(--parchment) 70%, transparent);
}

.hero-sub {
  font-family: var(--sans);
  color: var(--indigo);
  line-height: 1.55;
  max-width: 54ch;
  margin-top: var(--layout-gap-copy);
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: var(--space-7);
  align-items: center;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 36px;
  color: var(--indigo-muted);
  letter-spacing: 0.04em;
  flex-wrap: wrap;
}

/* CTA Buttons */
.cta-primary {
  appearance: none;
  border: 0;
  background: var(--moss);
  color: var(--parchment);
  font-family: var(--sans);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 18px 28px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: background 220ms var(--ease), transform 220ms var(--ease);
  white-space: nowrap;
  text-decoration: none;
}
.cta-primary:hover { background: var(--indigo); transform: translateY(-1px); color: var(--parchment); }
.cta-primary .price {
  color: var(--parchment);
  opacity: 0.85;
  font-style: italic;
  font-family: var(--serif);
  text-transform: none;
  letter-spacing: 0;
}

.cta-secondary {
  appearance: none;
  background: transparent;
  border: 1px solid var(--moss);
  color: var(--moss);
  font-family: var(--sans);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 17px 26px;
  cursor: pointer;
  transition: background 220ms var(--ease), color 220ms var(--ease);
  white-space: nowrap;
  text-decoration: none;
}
.cta-secondary:hover { background: var(--moss); color: var(--parchment); }

@media (max-width: 640px) {
  .cta-primary,
  .cta-secondary {
    max-width: 100%;
    justify-content: center;
    text-align: center;
    white-space: normal;
    line-height: 1.3;
  }

  .cta-primary {
    flex-wrap: wrap;
  }

  .cta-primary .price {
    flex-basis: 100%;
    text-align: center;
    white-space: nowrap;
  }
}

.cta-ghost {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--moss);
  font-family: var(--sans);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid transparent;
  text-decoration: none;
}
.cta-ghost:hover { border-bottom-color: var(--gold); }
.ghost-inline {
  padding: 0;
  margin-top: 8px;
}

/* Diagnosis */
/* Home launch modules: diagnostic cards, sample proof, daily previews,
   method timeline, C.A.R.E. wheel, and album card. Keep centralized here;
   if reused on another route, rename/promote into a shared component family. */
.diag-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: var(--layout-gap-block);
}
@media (min-width: 760px) {
  .diag-grid { gap: 24px; }
}
.diag-card {
  background: color-mix(in oklab, var(--parchment-warm) 92%, transparent);
  border: 1px solid var(--rule);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.diag-card-line {
  font-family: var(--serif);
  font-style: italic;
  line-height: 1.42;
  color: var(--moss);
  text-wrap: balance;
}
.diag-card-tag {
  font-family: var(--sans);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--indigo-faint);
}

/* Two-column lockup */
.lockup-grid {
  display: grid;
  gap: var(--layout-gap-panel);
  grid-template-columns: 1fr;
}
@media (min-width: 760px) {
  .lockup-grid.two {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--layout-gap-block);
  }
}

/* Check list */
.check-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}
.check-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  padding: 8px 0;
  line-height: 1.55;
}
.check-list li::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  margin-top: 4px;
  background: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' stroke='%233D8B84' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='2 7 6 11 12 3'/%3E%3C/svg%3E") no-repeat center;
  background-size: 16px 16px;
}

/* Sample player (felt proof) */
.sample-player {
  background: color-mix(in oklab, var(--parchment-warm) 96%, transparent);
  border: 1px solid var(--rule);
  border-radius: 4px;
  box-shadow: var(--shadow-soft);
  padding: var(--layout-gap-panel);
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: var(--layout-gap-block);
}
@media (min-width: 760px) {
  .sample-player { grid-template-columns: 1.3fr 1fr; gap: 32px; }
}
.sample-controls {
  background: var(--parchment-soft);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  border: 1px solid var(--rule);
  border-radius: 2px;
}
.sample-day {
  font-family: var(--sans);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}
.sample-quote {
  font-family: var(--serif);
  font-style: italic;
  line-height: 1.5;
  color: var(--moss);
  text-wrap: balance;
}
.sample-credit {
  color: var(--indigo-muted);
  font-style: italic;
  font-family: var(--serif);
}
.upper-center-caption {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--indigo-muted);
  text-align: center;
}
.audio-row,
.audio-row-bordered {
  display: flex;
  align-items: center;
  gap: 14px;
}
.audio-row-bordered {
  margin-top: 6px;
  padding-top: 14px;
  border-top: 1px solid var(--rule);
}
.audio-play-button {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid var(--moss);
  background: transparent;
  color: var(--moss);
  cursor: pointer;
  padding: 0;
  display: grid;
  place-items: center;
}
.audio-play-button.large {
  width: 50px;
  height: 50px;
}

/* Daily post preview card */
.daily-preview {
  background: color-mix(in oklab, var(--parchment-warm) 96%, transparent);
  border: 1px solid var(--rule);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow-soft);
}
.daily-preview-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.daily-preview-day {
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.daily-preview-title {
  font-family: var(--serif);
  font-style: italic;
  color: var(--moss);
  line-height: 1.25;
  text-wrap: balance;
}

/* Kicker / pullquote */
.kicker {
  font-family: var(--serif);
  font-style: italic;
  color: var(--moss);
  line-height: 1.5;
  text-wrap: balance;
}

.subtle-divider {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--gold);
  margin: var(--space-6) 0;
}
.subtle-divider::before,
.subtle-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--gold-soft);
}

/* Method timeline */
.method {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: var(--layout-gap-block);
}
@media (min-width: 760px) {
  .method { gap: 14px; }
}
.method-step {
  background: color-mix(in oklab, var(--parchment-warm) 96%, transparent);
  border: 1px solid var(--rule);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}
.method-step--full {
  grid-column: 1 / -1;
}
.method-step-num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.04em;
}
.method-step-name {
  font-family: var(--serif);
  color: var(--moss);
  line-height: 1.42;
  font-style: italic;
}
.method-step-meta {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--indigo-faint);
}
.method-step p {
  color: var(--indigo);
  line-height: 1.55;
  margin: 0;
}
.method-arrow {
  display: none;
  position: absolute;
  right: -7px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  z-index: 1;
}
@media (min-width: 760px) {
  .method-arrow { display: block; }
}

/* C.A.R.E. wheel */
.care-wheel {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 560px;
  margin: 0 auto;
}
.care-center {
  position: absolute;
  inset: 28%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 30%, color-mix(in oklab, var(--gold) 25%, transparent), transparent 70%),
    var(--parchment-warm);
  border: 1px solid var(--gold-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 14px;
}
.care-logo-img {
  width: 120%;
  height: 100%;
  object-fit: cover;
  object-position: 0% center;
  mix-blend-mode: multiply;
}
.svg-absolute {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.care-node {
  position: absolute;
  width: 30%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--parchment-warm);
  border: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px;
  cursor: pointer;
  transition:
    border-color 320ms var(--ease),
    box-shadow 320ms var(--ease),
    transform 320ms var(--ease);
  text-align: center;
}
.care-node:hover,
.care-node.active {
  border-color: var(--moss);
  box-shadow: var(--shadow-rise);
  transform: scale(1.04);
}
.care-node-letter {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  line-height: 1;
}
.care-node-name {
  font-family: var(--serif);
  color: var(--moss);
  line-height: 1.15;
  margin-top: 4px;
  font-style: italic;
}

.care-node.c { top: 0%; left: 35%; }
.care-node.a { top: 35%; right: 0%; }
.care-node.r { bottom: 0%; left: 35%; }
.care-node.e { top: 35%; left: 0%; }

.care-detail {
  margin-top: 40px;
  padding: 32px 28px;
  background: var(--parchment-warm);
  border: 1px solid var(--rule);
  border-radius: 4px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 760px) {
  .care-detail { grid-template-columns: 1fr 1.2fr; gap: 32px; padding: 40px 36px; }
}
.care-detail-badge {
  font-family: var(--sans);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--moss);
}
.care-detail-headline {
  font-family: var(--serif);
  font-style: italic;
  color: var(--moss);
  line-height: 1.32;
  margin-top: 14px;
  text-wrap: balance;
}
.care-detail-product {
  font-family: var(--serif);
  font-style: italic;
  color: var(--indigo-muted);
  margin-top: 8px;
}
.care-detail-body {
  font-family: var(--sans);
  color: var(--indigo);
  line-height: 1.6;
  margin: 0;
}

/* Album card */
.album-card {
  background:
    linear-gradient(135deg, color-mix(in oklab, var(--moss) 10%, transparent), transparent 70%),
    var(--parchment-warm);
  border: 1px solid var(--rule);
  padding: var(--layout-gap-panel);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--layout-gap-panel);
  align-items: center;
}
.album-card > * { min-width: 0; }
.album-card .section-eyebrow { flex-wrap: wrap; row-gap: 4px; }
.album-card .cta-primary { white-space: normal; line-height: 1.3; text-align: center; max-width: 100%; }
@media (min-width: 760px) {
  .album-card { grid-template-columns: 1fr 1.4fr; gap: var(--layout-gap-block); }
}
.album-logo {
  width: min(520px, 70vw);
  margin-bottom: 2.25rem;
}

.album-cover {
  aspect-ratio: 1;
  background:
    radial-gradient(circle at 30% 30%, color-mix(in oklab, var(--gold) 40%, transparent), transparent 70%),
    linear-gradient(160deg, var(--moss), var(--indigo) 80%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--parchment);
  overflow: hidden;
  border-radius: 2px;
  box-shadow: var(--shadow-rise);
}
.player-art-default {
  background: var(--gold);
}
.album-cover-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 80%, rgba(212,175,55,0.4), transparent 60%);
}
.album-cover-title {
  text-align: center;
  padding: 24px;
  z-index: 1;
}
.album-cover-title .album-cover-heading {
  font-family: var(--serif);
  color: var(--parchment);
  font-style: italic;
  line-height: 1.32;
  margin: 0 0 12px;
}
.album-cover-title p {
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(237, 232, 224, 0.7);
  margin: 0;
}
.trust-badge {
  margin: 0 auto 24px;
  display: block;
  opacity: 0.7;
}

/* Form card */
.form-card {
  background: rgba(250, 248, 245, 0.90);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(245, 241, 235, 0.7);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  border-radius: 24px;
  padding: 40px;
}

.form-input {
  width: 100%;
  border-radius: 12px;
  padding: 14px 18px;
  outline: none;
  transition:
    border-color 200ms var(--ease),
    box-shadow 200ms var(--ease),
    background-color 200ms var(--ease);
  background: rgba(250, 248, 245, 0.75);
  border: 1px solid rgba(61, 139, 132, 0.25);
  color: var(--indigo);
  font-family: var(--sans);
}
.form-input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(61, 139, 132, 0.1);
}

.form-input.is-valid {
  border-color: rgba(61, 139, 132, 0.25);
}

.form-submit {
  width: 100%;
  font-family: var(--sans);
  font-weight: 600;
  padding: 16px;
  border-radius: 12px;
  border: 0;
  cursor: pointer;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--indigo);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.25);
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease);
}
.form-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(212, 175, 55, 0.35);
}

.form-submit-content {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
}

.form-submit-spinner {
  animation: spin 1s linear infinite;
}

/* Audio wave animation */
.audio-wave {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 28px;
}
.audio-wave span {
  display: block;
  width: 2px;
  background: var(--moss);
  border-radius: 1px;
  animation: wave 1.2s ease-in-out infinite;
}
@keyframes wave {
  0%, 100% { height: 6px; opacity: 0.4; }
  50% { height: 22px; opacity: 1; }
}
.audio-wave span:nth-child(1) { animation-delay: 0s; }
.audio-wave span:nth-child(2) { animation-delay: 0.1s; }
.audio-wave span:nth-child(3) { animation-delay: 0.2s; }
.audio-wave span:nth-child(4) { animation-delay: 0.3s; }
.audio-wave span:nth-child(5) { animation-delay: 0.4s; }
.audio-wave span:nth-child(6) { animation-delay: 0.5s; }
.audio-wave span:nth-child(7) { animation-delay: 0.6s; }
.audio-wave span:nth-child(8) { animation-delay: 0.2s; }
.audio-wave span:nth-child(9) { animation-delay: 0.1s; }
.audio-wave span:nth-child(10) { animation-delay: 0.3s; }

/* Scroll */
html { scroll-behavior: smooth; }


/*
   STORY / BIOGRAPHY COMPONENTS
*/
/*
   Reusable long-form story, profile, and supporting action components.
*/

/* Split hero layout */
.split-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 760px) {
  .split-hero-grid { grid-template-columns: 1fr 1fr; gap: 56px; }
}

/* Photo treatment */
.about-photo-wrapper {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 6px solid var(--parchment);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.about-photo-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.story-section p {
  font-family: var(--sans);
  line-height: 1.75;
  color: var(--indigo);
  margin-bottom: 1.5rem;
}

.story-section p:last-child {
  margin-bottom: 0;
}

.story-section em {
  font-family: var(--serif);
  color: var(--teal);
}

.story-section strong {
  color: var(--indigo);
  font-weight: 600;
}

/* Tool lines */
.tool-line {
  font-family: var(--sans);
  padding: 1rem 0;
  border-bottom: 1px solid var(--rule);
  line-height: 1.6;
  color: var(--indigo);
}

.tool-line:last-child {
  border-bottom: none;
}

.tool-line em {
  font-family: var(--serif);
  color: var(--teal);
}

/* CTA cards */
.cta-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: rgba(250, 248, 245, 0.75);
  border: 1px solid var(--rule);
  border-radius: 16px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  text-decoration: none;
  color: inherit;
}

.cta-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-rise);
  opacity: 1;
}

.cta-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in oklab, var(--teal) 10%, transparent);
  border-radius: 12px;
}

.cta-card h3,
.cta-card h4 {
  font-family: var(--sans);
  font-weight: 600;
  color: var(--indigo);
  margin: 0 0 4px;
}

.cta-card p {
  font-family: var(--sans);
  line-height: 1.55;
  color: var(--indigo);
  margin: 0;
}

/* CTA grid */
.cta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 760px) {
  .cta-grid { grid-template-columns: repeat(3, 1fr); }
}


/*
   FORM / EXPERIENCE COMPONENTS
*/
/*
   Reusable registration, trust, and experience-card components.
*/

body.page-bg--workshop {
  background:
    linear-gradient(180deg,
      color-mix(in oklab, var(--parchment) 55%, transparent) 0%,
      color-mix(in oklab, var(--parchment) 65%, transparent) 40%,
      color-mix(in oklab, var(--parchment) 80%, transparent) 100%),
    url('/assets/workshop_conductor.webp') center top / cover no-repeat,
    linear-gradient(180deg, var(--dawn-1) 0%, var(--parchment) 30%, var(--parchment) 100%);
}

/* Experience grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-top: var(--layout-gap-block);
}
@media (min-width: 760px) {
  .feature-grid { gap: 22px; }
}

.feature-card {
  background: color-mix(in oklab, var(--parchment-warm) 96%, transparent);
  border: 1px solid var(--rule);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.feature-card-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in oklab, var(--teal) 10%, transparent);
  border-radius: 10px;
}

.feature-card h3,
.feature-card h4 {
  font-family: var(--sans);
  font-weight: 600;
  color: var(--indigo);
  margin: 0 0 4px;
}

.feature-card p {
  font-family: var(--sans);
  line-height: 1.55;
  color: var(--indigo);
  margin: 0;
}

/* Trust section */
.trust-section {
  background-color: color-mix(in oklab, var(--parchment-warm) 85%, transparent);
}

/* Form error state */
.form-input.error {
  border-color: var(--burgundy);
  box-shadow: 0 0 0 3px rgba(139, 58, 74, 0.15);
}

.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Success state */
.success-state {
  text-align: center;
  padding: 32px 0;
}

.success-check {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  background: color-mix(in oklab, var(--moss) 10%, transparent);
  border: 2px solid var(--moss);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--moss);
  animation: scaleIn 0.4s ease;
}

@keyframes scaleIn {
  from { transform: scale(0.5); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}

/* Checkout welcome */
.welcome-shell {
  width: min(720px, calc(100% - 2rem));
  margin: 0 auto;
  padding: var(--space-8) 0;
}

.welcome-panel {
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  padding: var(--space-6);
}

.welcome-panel h1 {
  margin: 0 0 var(--space-3);
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  line-height: 1.05;
}

.welcome-panel p {
  max-width: 58ch;
  margin: 0 0 var(--space-4);
  line-height: 1.65;
}

.welcome-form {
  display: grid;
  gap: var(--space-3);
  margin-top: var(--space-5);
}

.welcome-form label {
  display: grid;
  gap: var(--space-2);
  font-weight: 700;
}

.welcome-form input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--color-border);
  background: var(--color-surface-page);
  color: var(--color-text);
  padding: 0.75rem 0.9rem;
  font: inherit;
}

.welcome-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  align-items: center;
}

.welcome-status {
  min-height: 1.5rem;
  color: var(--color-text-muted);
}

@media (max-width: 640px) {
  .welcome-panel h1 {
    font-size: var(--text-4xl);
  }
}

/* Event meta icons */
.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}

.event-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--sans);
  color: var(--indigo-faint);
}

/* Form labels */
.form-label {
  display: block;
  font-family: var(--sans);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--indigo-faint);
  margin-bottom: 8px;
}

.form-error {
  font-family: var(--sans);
  color: var(--burgundy);
  margin-top: 12px;
  text-align: center;
}

.form-fine-print {
  font-family: var(--sans);
  color: var(--indigo-faint);
  text-align: center;
  margin-top: 16px;
}


/*
   OFFERING / PROGRAMME COMPONENTS
*/
/*
   Reusable offering cards, programme phases, and pathway teasers.
*/

/* Offering cards */
.offering-card {
  background: rgba(250, 248, 245, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(245, 241, 235, 0.6);
  border-radius: 1.5rem;
  padding: var(--layout-gap-panel);
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  /* width is now governed by parent .container-narrow */
}

/* Mobile CTA fit: long CTA labels (e.g. "Apply for a Consultation") exceed
   the card's content width at 390. Same pattern already applied to
   .album-card. Wraps to two lines instead of forcing a horizontal scroll. */
.offering-card .cta-primary,
.offering-card .cta-secondary {
  white-space: normal;
  line-height: 1.3;
  text-align: center;
  max-width: 100%;
}

.offering-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-rise);
}

.offering-eyebrow {
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}

.offering-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  margin-bottom: 20px;
  background: color-mix(in oklab, var(--teal) 10%, transparent);
}

.offering-title {
  font-family: var(--serif);
  color: var(--indigo);
  margin-bottom: 16px;
  line-height: 1.25;
  font-weight: 500;
}

.offering-body {
  font-family: var(--sans);
  line-height: 1.75;
  color: var(--indigo);
  flex: 1;
}

.offering-body p {
  margin-bottom: 1rem;
}

.offering-body p:last-child {
  margin-bottom: 0;
}

.offering-body em {
  font-family: var(--serif);
  color: var(--teal);
}

.offering-detail {
  font-family: var(--sans);
  color: var(--indigo-faint);
  margin-top: 16px;
}

/* Pricing */
.founding-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-rich));
  color: var(--indigo);
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
}

.price-current {
  font-family: var(--serif);
  color: var(--indigo);
  font-weight: 700;
  line-height: 1;
}

.price-future {
  font-family: var(--sans);
  color: var(--indigo-faint);
  text-decoration: line-through;
}

.payment-action {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.payment-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Phase cards */
.phase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: var(--layout-gap-copy);
}
@media (min-width: 760px) {
  .phase-grid { gap: 24px; }
}

.phase-card {
  background: rgba(250, 248, 245, 0.7);
  border: 1px solid var(--rule);
  border-radius: 16px;
  padding: 24px;
  text-align: left;
}

.phase-number {
  font-family: var(--serif);
  font-weight: 700;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.phase-name {
  font-family: var(--sans);
  font-weight: 700;
  color: var(--indigo);
  margin-bottom: 8px;
}

.phase-desc {
  font-family: var(--sans);
  color: var(--indigo);
  line-height: 1.6;
}

/* Echoes teaser */
.echoes-teaser {
  margin-top: 32px;
  padding: 20px;
  border-radius: 12px;
  background: color-mix(in oklab, var(--teal) 6%, transparent);
  border: 1px solid color-mix(in oklab, var(--teal) 10%, transparent);
}

.echoes-teaser p {
  font-family: var(--serif);
  font-style: italic;
  color: var(--teal);
  margin: 0;
}


/*
   LEGAL / POLICY COMPONENTS
*/
/*
   Shared styles for terms, privacy, refund, and policy content.
*/

.legal-container {
  max-width: 48rem;
  margin: 0 auto;
  padding-left: var(--gutter-page);
  padding-right: var(--gutter-page);
}

.legal-container h2 {
  font-family: var(--serif);
  color: var(--indigo);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.legal-container h3 {
  font-family: var(--sans);
  font-weight: 600;
  color: var(--indigo);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.legal-container p,
.legal-container li {
  font-family: var(--sans);
  line-height: 1.75;
  color: var(--indigo);
  margin-bottom: 1rem;
  overflow-wrap: anywhere;
}

.legal-container ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-container li {
  margin-bottom: 0.5rem;
}

.legal-container a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-container a:hover {
  opacity: 0.85;
}

.legal-meta {
  font-family: var(--sans);
  color: var(--indigo-faint);
  margin-bottom: 32px;
}

body.page-bg--legal .section-header {
  background:
    linear-gradient(180deg,
      color-mix(in oklab, var(--parchment-soft) 82%, transparent) 0%,
      color-mix(in oklab, var(--parchment) 90%, transparent) 100%);
}

body.page-bg--legal .section-continuation {
  background: color-mix(in oklab, var(--parchment) 92%, white 8%);
}

@media (max-width: 640px) {
  .legal-container {
    padding-left: 22px;
    padding-right: 22px;
  }

  .legal-container h2 {
    margin-top: 2.25rem;
    margin-bottom: 0.875rem;
    line-height: 1.28;
  }

  .legal-container h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.625rem;
    line-height: 1.35;
  }

  .legal-container p,
  .legal-container li {
    font-size: 1rem;
    line-height: 1.72;
  }

  .legal-container ul {
    padding-left: 1.25rem;
    margin-top: 0.5rem;
    margin-bottom: 1.25rem;
  }

  .legal-container li {
    margin-bottom: 0.625rem;
  }

  .legal-meta {
    margin-bottom: var(--space-5);
  }
}

/* Policy card (refund page) */
.policy-card {
  background: rgba(250, 248, 245, 0.90);
  backdrop-filter: blur(16px);
  border: 1px solid var(--rule);
  border-radius: 16px;
  padding: 24px 32px;
  margin: 24px 0;
}

.policy-card h3 {
  margin-top: 0;
}


/*
   PAGE BACKGROUNDS
*/
body.page-bg--music,
body.e4b-music {
  background:
    linear-gradient(180deg,
      color-mix(in oklab, var(--parchment) 55%, transparent) 0%,
      color-mix(in oklab, var(--parchment) 65%, transparent) 40%,
      color-mix(in oklab, var(--parchment) 80%, transparent) 100%),
    radial-gradient(ellipse 800px 420px at 78% 12%, rgba(61,139,132,0.08), transparent 60%),
    radial-gradient(ellipse 700px 360px at 12% 88%, rgba(212,175,55,0.08), transparent 55%),
    url('/assets/background.webp') center top / cover no-repeat,
    linear-gradient(180deg, var(--dawn-1) 0%, var(--parchment) 30%, var(--parchment) 100%);
}

/* Route identity lives on each body class for audits, analytics, and future
   route-scoped behavior. Add visual rules here only when a route needs them. */
body.e4b-privacy,
body.e4b-refund,
body.e4b-terms {
  --route-family: legal;
}
