/* ============================================================
   WYLDE SCOTT — Design Tokens
   ============================================================ */
:root,
[data-theme='light'] {
  /* Type scale */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.25rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 4.5rem);
  --text-hero: clamp(2.75rem, 1rem + 5.5vw, 5.5rem);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Surfaces */
  --color-bg: #ffffff;
  --color-surface: #f8f6f1;
  --color-surface-2: #f1eee5;
  --color-surface-offset: #ece8dc;
  --color-divider: #e4dfd2;
  --color-border: #ded8c8;

  /* Text */
  --color-text: #171b34;
  --color-text-muted: #565c72;
  --color-text-faint: #9296a8;
  --color-text-inverse: #f8f6f1;

  /* Primary — Wylde Navy */
  --color-navy: #16234f;
  --color-navy-2: #1f2f66;
  --color-navy-hover: #0f1836;
  --color-navy-highlight: #d7dcec;

  /* Accent — Wonder Gold */
  --color-gold: #c88a12;
  --color-gold-hover: #a97207;
  --color-gold-light: #f0d99b;
  --color-gold-highlight: #f6ecd3;

  /* Secondary — Storybook Pink (used sparingly, badges only) */
  --color-pink: #d1477e;
  --color-pink-highlight: #f6dde8;

  --radius-sm: 0.375rem;
  --radius-md: 0.625rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;

  --transition-interactive: 200ms cubic-bezier(0.16, 1, 0.3, 1);

  --shadow-sm: 0 1px 2px rgba(22, 35, 79, 0.06);
  --shadow-md: 0 6px 20px rgba(22, 35, 79, 0.1);
  --shadow-lg: 0 20px 48px rgba(22, 35, 79, 0.16);

  --content-narrow: 640px;
  --content-default: 1000px;
  --content-wide: 1280px;
  --content-full: 100%;

  --font-display: 'Fraunces', 'Iowan Old Style', Georgia, serif;
  --font-body: 'General Sans', 'Inter', -apple-system, sans-serif;
}

[data-theme='dark'] {
  --color-bg: #0c1226;
  --color-surface: #101830;
  --color-surface-2: #141d38;
  --color-surface-offset: #182142;
  --color-divider: #24305a;
  --color-border: #2a3661;
  --color-text: #e7e5da;
  --color-text-muted: #a1a6bd;
  --color-text-faint: #6c7291;
  --color-text-inverse: #0c1226;
  --color-navy: #4c63ab;
  --color-navy-2: #6579c2;
  --color-navy-hover: #7a8dd4;
  --color-navy-highlight: #232d54;
  --color-gold: #e8b64a;
  --color-gold-hover: #f4cc73;
  --color-gold-light: #6b551f;
  --color-gold-highlight: #2c2413;
  --color-pink: #e17ba6;
  --color-pink-highlight: #3a2431;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 6px 20px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 48px rgba(0, 0, 0, 0.55);
}

/* ============================================================
   Base
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  min-height: 100dvh;
  line-height: 1.6;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;
  transition: background-color var(--transition-interactive), color var(--transition-interactive);
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
ul[role='list'], ol[role='list'] { list-style: none; }
input, button, textarea, select { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
  line-height: 1.12;
  font-family: var(--font-display);
  color: var(--color-navy);
}
[data-theme='dark'] h1, [data-theme='dark'] h2, [data-theme='dark'] h3 { color: #f2efe4; }

p, li, figcaption { text-wrap: pretty; }

::selection { background: var(--color-gold-light); color: var(--color-navy); }

:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

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

button { cursor: pointer; background: none; border: none; }

a, button, [role='button'], input, select {
  transition: color var(--transition-interactive), background var(--transition-interactive),
    border-color var(--transition-interactive), box-shadow var(--transition-interactive),
    transform var(--transition-interactive);
}

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

.wrap {
  width: 100%;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

section { position: relative; }

.section-pad {
  padding-block: clamp(var(--space-16), 7vw, var(--space-24));
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
  line-height: 1;
}
.btn-primary {
  background: var(--color-navy);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--color-navy-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}
.btn-gold {
  background: var(--color-gold);
  color: #221802;
}
.btn-gold:hover {
  background: var(--color-gold-hover);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  border: 1.5px solid var(--color-border);
  color: var(--color-navy);
}
[data-theme='dark'] .btn-ghost { color: var(--color-text); }
.btn-ghost:hover { border-color: var(--color-navy); background: var(--color-navy-highlight); }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--color-bg) 92%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-divider);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.site-header--hidden { transform: translateY(-100%); }
.site-header--scrolled { box-shadow: var(--shadow-sm); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}
.brand img { height: 44px; width: auto; border-radius: var(--radius-md); }

.main-nav { display: none; }
.main-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(var(--space-4), 2vw, var(--space-8));
}
.main-nav a {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.01em;
  position: relative;
  padding-block: var(--space-2);
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--color-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-interactive);
}
.main-nav a:hover { color: var(--color-navy); }
[data-theme='dark'] .main-nav a:hover { color: var(--color-gold); }
.main-nav a:hover::after { transform: scaleX(1); }

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

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  color: var(--color-navy);
  flex-shrink: 0;
}
[data-theme='dark'] .theme-toggle { color: var(--color-gold); }
.theme-toggle:hover { background: var(--color-surface-2); }
.theme-toggle svg { width: 18px; height: 18px; }

.menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  color: var(--color-navy);
}
[data-theme='dark'] .menu-btn { color: var(--color-text); }
.menu-btn svg { width: 24px; height: 24px; }

@media (min-width: 900px) {
  .main-nav { display: block; }
  .menu-btn { display: none; }
}

.mobile-panel {
  position: fixed;
  inset: 76px 0 0 0;
  background: var(--color-bg);
  z-index: 99;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-interactive), transform var(--transition-interactive);
  overflow-y: auto;
}
.mobile-panel.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
.mobile-panel ul { display: flex; flex-direction: column; padding: var(--space-6) clamp(1.25rem, 4vw, 2.5rem); }
.mobile-panel a {
  display: block;
  padding: var(--space-4) 0;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-navy);
  border-bottom: 1px solid var(--color-divider);
}
[data-theme='dark'] .mobile-panel a { color: var(--color-text); }

/* ============================================================
   Hero — full illustration up top (never cropped), headline below
   ============================================================ */
.hero {
  position: relative;
  background: var(--color-navy);
  overflow: hidden;
}
.hero-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1672 / 941;
  max-height: 82vh;
  overflow: hidden;
  background: var(--color-navy);
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-visual::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 22%;
  background: linear-gradient(to top, var(--color-navy), transparent);
  pointer-events: none;
}
.hero-star {
  position: absolute;
  color: var(--color-gold-light);
  opacity: 0.85;
  font-size: 14px;
  pointer-events: none;
  animation: hero-twinkle 2.6s ease-in-out infinite;
}
.hero-star-1 { top: 8%; left: 6%; font-size: 12px; animation-delay: 0s; }
.hero-star-2 { top: 14%; left: 46%; font-size: 16px; animation-delay: 0.8s; }
.hero-star-3 { top: 6%; left: 78%; font-size: 10px; animation-delay: 1.5s; }
@keyframes hero-twinkle {
  0%, 100% { opacity: 0.35; transform: scale(0.85); }
  50% { opacity: 1; transform: scale(1.15); }
}
.hero-text-panel {
  position: relative;
  background: radial-gradient(ellipse at 50% -20%, rgba(200, 138, 18, 0.16), transparent 60%), linear-gradient(155deg, var(--color-navy) 0%, #0e1836 100%);
  padding-block: clamp(2.75rem, 6vw, 4.5rem);
  text-align: center;
}
.hero-inner { display: flex; flex-direction: column; align-items: center; }
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: var(--space-4);
}
.hero-kicker svg { width: 14px; height: 14px; }
.hero h1 {
  font-size: var(--text-3xl);
  color: #fff;
  font-weight: 600;
  letter-spacing: -0.01em;
  max-width: 20ch;
}
.hero h1 em {
  font-style: italic;
  color: var(--color-gold-light);
}
.hero p {
  margin-top: var(--space-5);
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.88);
  max-width: 46ch;
  line-height: 1.55;
}
.hero-actions { margin-top: var(--space-8); display: flex; flex-wrap: wrap; justify-content: center; gap: var(--space-4); }
.hero-actions .btn-gold { font-size: var(--text-base); padding: 1rem 2.25rem; box-shadow: var(--shadow-lg); }
.btn-ghost-invert {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  font-size: var(--text-base);
  padding: 1rem 2.25rem;
}
.btn-ghost-invert:hover { border-color: var(--color-gold-light); background: rgba(255, 255, 255, 0.08); }

/* ============================================================
   Section headers
   ============================================================ */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold-hover);
  margin-bottom: var(--space-3);
}
[data-theme='dark'] .section-eyebrow { color: var(--color-gold); }
.section-title { font-size: var(--text-xl); font-weight: 600; }
.section-sub {
  margin-top: var(--space-2);
  color: var(--color-text-muted);
  font-size: var(--text-base);
  max-width: 60ch;
}
.section-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-bottom: var(--space-8);
}
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-navy);
  white-space: nowrap;
}
[data-theme='dark'] .link-arrow { color: var(--color-gold); }
.link-arrow svg { width: 15px; height: 15px; transition: transform var(--transition-interactive); }
.link-arrow:hover svg { transform: translateX(3px); }

/* ============================================================
   Content Grid (Meet-the-Cast / Mission row + Books / P&E row)
   ============================================================ */
.content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.25rem, 3vw, 1.75rem);
}
@media (min-width: 980px) {
  .content-grid { grid-template-columns: 1.65fr 1fr; align-items: start; }
}

.panel {
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 3vw, 2.25rem);
}
.panel-light {
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
}
.panel-navy {
  background: linear-gradient(155deg, var(--color-navy) 0%, #0e1836 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.panel-navy h2, .panel-navy h3 { color: #fff; }
.panel-navy p { color: rgba(255, 255, 255, 0.78); }

/* ============================================================
   About — Legend two-column (photo + story)
   ============================================================ */
.legend-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: center;
}
@media (min-width: 900px) {
  .legend-grid { grid-template-columns: 0.72fr 1fr; }
}
.legend-photo {
  margin: 0;
  border-radius: var(--radius-lg, 20px);
  overflow: hidden;
  box-shadow: 0 24px 60px -34px rgba(0,0,0,0.55);
  max-width: 340px;
  width: 100%;
  justify-self: center;
}
@media (min-width: 900px) { .legend-photo { justify-self: start; } }
.legend-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
}
.legend-photo figcaption {
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.6);
  text-align: center;
  font-style: italic;
}
.legend-copy { text-align: left; }
.legend-copy .story-line {
  color: rgba(255,255,255,0.9);
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-lg);
  line-height: 1.7;
  margin-top: var(--space-4);
}
.legend-copy .story-line:first-of-type { margin-top: var(--space-5); }

/* About — Pro-Human highlight band */
.prohuman-band {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  align-items: center;
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-divider);
  background: var(--color-surface);
  padding: clamp(1.75rem, 4vw, 3rem);
}
@media (min-width: 820px) {
  .prohuman-band { grid-template-columns: auto 1fr; gap: var(--space-8); }
}
.prohuman-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  background: rgba(199,155,60,0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  justify-self: center;
}
@media (min-width: 820px) { .prohuman-icon { justify-self: start; } }
.prohuman-icon svg { width: 30px !important; height: 30px !important; color: var(--color-gold); }
.prohuman-band h2 { font-size: var(--text-xl); color: var(--color-navy); }
[data-theme='dark'] .prohuman-band h2 { color: #fff; }
.prohuman-band p {
  margin-top: var(--space-3);
  color: var(--color-text-muted);
  max-width: 68ch;
  line-height: 1.7;
}

/* ============================================================
   Video Grid (Children + Parents/Educators)
   ============================================================ */
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
}
@media (min-width: 620px) and (max-width: 979px) {
  #children .video-grid { grid-template-columns: repeat(4, 1fr); }
  #parents-educators .video-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 980px) {
  #children .video-grid { grid-template-columns: repeat(4, 1fr); }
  #parents-educators .video-grid { grid-template-columns: repeat(4, 1fr); }
}

.video-card { display: block; group: video; }
.video-thumb {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--color-surface-offset);
  box-shadow: var(--shadow-sm);
}
.video-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.video-card:hover .video-thumb img { transform: scale(1.06); }
.play-badge {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.play-badge span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(22, 35, 79, 0.82);
  backdrop-filter: blur(2px);
  transition: transform var(--transition-interactive), background var(--transition-interactive);
}
.video-card:hover .play-badge span { background: var(--color-gold); transform: scale(1.08); }
.play-badge svg { width: 16px; height: 16px; color: #fff; margin-left: 2px; }
.video-card:hover .play-badge svg { color: #221802; }
.video-meta { margin-top: var(--space-3); }
.video-meta .v-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--color-text);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.video-card:hover .v-title { color: var(--color-navy); }
[data-theme='dark'] .video-card:hover .v-title { color: var(--color-gold); }
.v-views {
  margin-top: var(--space-1);
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}
.v-badge {
  display: inline-block;
  margin-top: var(--space-1);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-gold-hover);
}

/* ============================================================
   Podcast Cards
   ============================================================ */
.podcast-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}
@media (min-width: 720px) {
  .podcast-grid { grid-template-columns: repeat(2, 1fr); }
}
.podcast-card {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.podcast-thumb-link { display: block; }
.podcast-thumb {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--color-navy);
}
.podcast-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1); }
.podcast-thumb-link:hover .podcast-thumb img { transform: scale(1.05); }
.podcast-thumb .play-badge span {
  width: 52px; height: 52px;
  background: rgba(22, 35, 79, 0.82);
}
.podcast-thumb-link:hover .play-badge span { background: var(--color-gold); }
.podcast-thumb-link:hover .play-badge svg { color: #221802; }
.podcast-show {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-gold-hover);
}
.podcast-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  line-height: 1.3;
  margin-top: var(--space-1);
}
.podcast-card p.podcast-desc {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: 1.55;
}
.podcast-links { display: flex; gap: var(--space-3); flex-wrap: wrap; margin-top: auto; }
.podcast-link-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  border: 1.5px solid var(--color-border);
  color: var(--color-text);
  transition: border-color var(--transition-interactive), background var(--transition-interactive), color var(--transition-interactive);
}
.podcast-link-btn:hover { border-color: var(--color-navy); background: var(--color-navy); color: #fff; }
[data-theme='dark'] .podcast-link-btn:hover { border-color: var(--color-gold); background: var(--color-gold); color: #221802; }
.podcast-link-btn svg { width: 15px; height: 15px; flex-shrink: 0; }
.podcast-coming-soon {
  border: 1.5px dashed var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  text-align: center;
  color: var(--color-text-muted);
}
.podcast-thumb-icon {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-2) 100%);
}
.podcast-thumb-icon svg { width: 56px; height: 56px; color: var(--color-gold-light); opacity: 0.9; }
.coming-soon-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
  margin-top: var(--space-4);
}
.coming-soon-chip {
  font-size: var(--text-sm);
  font-weight: 600;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  border: 1.5px solid var(--color-border);
  color: var(--color-text);
  background: var(--color-surface-2);
}
.press-strip {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  flex-wrap: wrap;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
}
.press-strip .press-badge {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-lg);
  color: var(--color-text);
  flex-shrink: 0;
  letter-spacing: -0.01em;
}
.press-strip .press-body { flex: 1; min-width: 220px; }
.press-strip .press-body p { color: var(--color-text-muted); font-size: var(--text-sm); line-height: 1.55; }
.press-strip .press-body strong { color: var(--color-text); }

/* ============================================================
   Book sales banner (Raising Dreamers CTA)
   ============================================================ */
.book-sell {
  margin-top: clamp(2rem, 5vw, 3.5rem);
  display: grid;
  grid-template-columns: minmax(260px, 380px) 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  background:
    radial-gradient(120% 140% at 12% 0%, #1d2c62 0%, var(--color-navy) 45%, #0e1836 100%);
  border: 1px solid rgba(199,155,60,0.35);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 5vw, 4rem);
  overflow: hidden;
  position: relative;
}
.book-sell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 80% at 85% 20%, rgba(199,155,60,0.14), transparent 70%);
  pointer-events: none;
}
.book-sell-cover {
  position: relative;
  perspective: 1400px;
  z-index: 1;
}
.book-sell-cover img {
  width: 100%;
  max-width: 340px;
  display: block;
  margin: 0 auto;
  border-radius: 6px;
  transform: rotateY(-14deg) rotateX(3deg);
  box-shadow:
    0 30px 60px -20px rgba(0,0,0,0.7),
    0 8px 20px -8px rgba(0,0,0,0.5);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.book-sell-cover img:hover {
  transform: rotateY(-6deg) rotateX(1deg) translateY(-6px);
  box-shadow:
    0 40px 80px -24px rgba(0,0,0,0.75),
    0 0 40px -6px rgba(199,155,60,0.35);
}
.book-sell-body { position: relative; z-index: 1; color: #fff; }
.book-sell-badge {
  display: inline-block;
  padding: 0.4rem 0.95rem;
  border-radius: var(--radius-full);
  background: var(--color-gold);
  color: #fff;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  box-shadow: 0 8px 22px -12px rgba(199,155,60,0.9);
}
.book-sell-title {
  font-family: var(--font-display);
  font-size: var(--text-4xl, clamp(2rem, 4.5vw, 3rem));
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-top: var(--space-4);
  color: #fff;
}
.book-sell-tagline {
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-gold-light);
  margin-top: var(--space-3);
  line-height: 1.3;
}
.book-sell-desc {
  font-size: var(--text-base);
  line-height: 1.65;
  color: rgba(255,255,255,0.82);
  margin-top: var(--space-4);
  max-width: 52ch;
}
.book-sell-points {
  list-style: none;
  padding: 0;
  margin: var(--space-5) 0 0;
  display: grid;
  gap: 0.6rem;
}
.book-sell-points li {
  position: relative;
  padding-left: 1.9rem;
  font-size: var(--text-sm);
  line-height: 1.5;
  color: rgba(255,255,255,0.9);
}
.book-sell-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15em;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  background: var(--color-gold);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 0.8rem no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 0.8rem no-repeat;
}
.book-sell-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-4);
  margin-top: var(--space-6);
}
.book-sell-buy {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.95rem 1.75rem;
  border-radius: var(--radius-full);
  background: var(--color-gold);
  color: var(--color-navy);
  font-weight: 700;
  font-size: var(--text-base);
  text-decoration: none;
  box-shadow: 0 14px 30px -12px rgba(199,155,60,0.8);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.book-sell-buy:hover {
  transform: translateY(-2px);
  background: var(--color-gold-light);
  box-shadow: 0 18px 38px -12px rgba(199,155,60,0.9);
}
.book-sell-buy svg { transition: transform 0.2s ease; }
.book-sell-buy:hover svg { transform: translateX(3px); }
.book-sell-alt {
  color: #fff;
  font-weight: 600;
  font-size: var(--text-sm);
  text-decoration: none;
  border-bottom: 1.5px solid rgba(255,255,255,0.4);
  padding-bottom: 2px;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.book-sell-alt:hover { color: var(--color-gold-light); border-color: var(--color-gold-light); }
.book-sell-formats {
  margin-top: var(--space-5);
  font-size: var(--text-xs);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.book-sell-quote {
  margin: var(--space-6) 0 0;
  padding: var(--space-4) var(--space-5);
  border-left: 3px solid var(--color-gold);
  background: rgba(255,255,255,0.05);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  font-size: var(--text-base);
  color: rgba(255,255,255,0.9);
}
.book-sell-quote cite {
  display: block;
  margin-top: var(--space-2);
  font-style: normal;
  font-size: var(--text-sm);
  color: var(--color-gold-light);
}
@media (max-width: 768px) {
  .book-sell {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-6);
  }
  .book-sell-cover img { transform: none; max-width: 240px; }
  .book-sell-desc { margin-inline: auto; }
  .book-sell-points { text-align: left; max-width: 30ch; margin-inline: auto; }
  .book-sell-actions { justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
  .book-sell-cover img, .book-sell-buy, .book-sell-buy svg { transition: none; }
}

/* ============================================================
   Mission panel (full-width banner)
   ============================================================ */
.mission-banner {
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
}
.mission-banner-media {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.mission-banner-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mission-banner-body {
  padding: clamp(1.75rem, 4vw, 3rem);
}
@media (min-width: 760px) {
  .mission-banner {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
  .mission-banner-media { aspect-ratio: auto; }
  .mission-banner-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

/* ============================================================
   Books shelf
   ============================================================ */
.shelf-panel { background: linear-gradient(155deg, var(--color-navy) 0%, #0e1836 100%); color: #fff; }
.shelf-panel h2 { color: #fff; }
.books-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.85rem, 2vw, 1.5rem);
  margin-top: var(--space-8);
}
@media (max-width: 640px) {
  .books-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .hero-visual { max-height: 46vh; }
}
.book-card { display: block; text-align: left; }
.book-cover-wrap {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
  aspect-ratio: 2/3;
  background: #0a1024;
  transition: transform var(--transition-interactive);
}
.book-card:hover .book-cover-wrap { transform: translateY(-6px); }
.book-cover-wrap img { width: 100%; height: 100%; object-fit: cover; }
.book-card.is-coming .book-cover-wrap img { filter: saturate(0.35) brightness(0.55); }
.coming-soon-tag {
  position: absolute;
  top: var(--space-2); left: var(--space-2);
  background: var(--color-gold);
  color: #221802;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-full);
}
.book-name {
  margin-top: var(--space-3);
  font-family: var(--font-display);
  font-size: var(--text-base);
  color: #fff;
}
.book-card:hover .book-name { color: var(--color-gold-light); }

.shelf-ledge {
  height: 14px;
  margin-top: var(--space-4);
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, #3a2c15, #1c1508);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--color-navy);
  color: rgba(255, 255, 255, 0.75);
  padding-block: var(--space-16) var(--space-10);
}
[data-theme='dark'] .site-footer { background: #060a16; }
.footer-grid {
  display: grid;
  gap: var(--space-10);
  grid-template-columns: 1fr;
}
@media (min-width: 760px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}
.footer-brand { display: flex; align-items: center; gap: var(--space-3); margin-bottom: var(--space-4); }
.footer-brand img { height: 40px; border-radius: var(--radius-md); }
.footer-brand span { font-family: var(--font-display); color: #fff; font-size: var(--text-lg); }
.footer-col h4 {
  color: #fff;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-4);
}
.footer-col ul { display: flex; flex-direction: column; gap: var(--space-3); }
.footer-col a { font-size: var(--text-sm); color: rgba(255, 255, 255, 0.72); }
.footer-col a:hover { color: var(--color-gold); }
.footer-social {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-top: var(--space-5);
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  overflow: hidden;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.footer-social a:hover {
  color: var(--color-navy);
  background: var(--color-gold);
  border-color: var(--color-gold);
}
.footer-social svg { width: 19px !important; height: 19px !important; flex-shrink: 0; }
.footer-bottom {
  margin-top: var(--space-12);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: space-between;
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================================
   Reveal-on-scroll (subtle)
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   Inner Page Header (About / Imagination Project / Speaking)
   ============================================================ */
.page-header {
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 0;
}
.page-header-media {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--color-navy);
}
.page-header-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; display: block; }
.page-header-body {
  background: linear-gradient(155deg, var(--color-navy) 0%, #0e1836 100%);
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.25rem, 4vw, 2.5rem);
  color: #fff;
}
.page-header-body .wrap { padding-inline: 0; max-width: var(--content-default); }
.page-header-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: var(--space-4);
}
.page-header h1 {
  font-size: var(--text-3xl);
  color: #fff;
  font-weight: 600;
  letter-spacing: -0.01em;
  max-width: 18ch;
}
.page-header-sub {
  margin-top: var(--space-5);
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.85);
  max-width: 52ch;
  line-height: 1.55;
}
@media (min-width: 860px) {
  .page-header:not(.page-header--text-only) { grid-template-columns: 1fr 1fr; align-items: stretch; }
  .page-header:not(.page-header--text-only) .page-header-media { aspect-ratio: auto; }
  .page-header:not(.page-header--text-only) .page-header-body { display: flex; flex-direction: column; justify-content: center; }
}

/* Text-only hero (no image) */
.page-header--text-only .page-header-body {
  text-align: center;
  padding-block: clamp(3.5rem, 8vw, 6rem);
}
.page-header--text-only .page-header-body .wrap { margin-inline: auto; }
.page-header--text-only .page-header h1 { max-width: 22ch; margin-inline: auto; }
.page-header--text-only .page-header-sub { max-width: 60ch; margin-inline: auto; }

/* Compact hero variant: smaller, framed image + more room for copy */
.page-header--compact .page-header-media {
  background: linear-gradient(155deg, var(--color-navy) 0%, #0e1836 100%);
}
.page-header--compact .page-header-media img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
@media (min-width: 860px) {
  .page-header--compact { grid-template-columns: 0.85fr 1.15fr; background: linear-gradient(155deg, var(--color-navy) 0%, #0e1836 100%); }
  .page-header--compact .page-header-media {
    aspect-ratio: 4/5;
    align-self: center;
    padding: var(--space-8) var(--space-6);
    background: transparent;
  }
  .page-header--compact .page-header-media img { object-fit: cover; }
}
@media (max-width: 859px) {
  .page-header--compact .page-header-media { padding: var(--space-5); aspect-ratio: 4/3; }
}

/* Imagination Project hero: showcase the full illustration */
@media (min-width: 860px) {
  .ip-hero { grid-template-columns: 1.05fr 0.95fr; }
  .ip-hero .page-header-media { min-height: 560px; }
}
@media (max-width: 859px) {
  .ip-hero .page-header-media { aspect-ratio: 4/3; }
}

/* ============================================================
   Quote block
   ============================================================ */
.quote-block {
  border-left: 4px solid var(--color-gold);
  padding-left: clamp(1.25rem, 3vw, 2rem);
  margin-block: var(--space-4);
}
.quote-block p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-xl);
  color: var(--color-navy);
  line-height: 1.35;
}
[data-theme='dark'] .quote-block p { color: #f2efe4; }
.quote-block cite {
  display: block;
  margin-top: var(--space-4);
  font-style: normal;
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  letter-spacing: 0.02em;
}
.panel-navy .quote-block { border-left-color: var(--color-gold-light); }
.panel-navy .quote-block p { color: #fff; }
.panel-navy .quote-block cite { color: rgba(255, 255, 255, 0.65); }

/* ============================================================
   Speaking — stage photo frame
   ============================================================ */
.speaking-photo-frame {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--color-surface);
}
.speaking-photo-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
.speaking-photo-frame figcaption {
  padding: var(--space-4) var(--space-5);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* ============================================================
   Speaking — upcoming events
   ============================================================ */
.events-head { text-align: center; max-width: 640px; margin: 0 auto; }
.events-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.95rem;
  border-radius: var(--radius-full);
  background: var(--color-gold);
  color: #fff;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  box-shadow: 0 8px 22px -12px rgba(199,155,60,0.9);
}
.events-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 0 rgba(255,255,255,0.7);
  animation: eventsPulse 1.8s infinite;
}
@keyframes eventsPulse {
  0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.65); }
  70% { box-shadow: 0 0 0 7px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}
@media (prefers-reduced-motion: reduce) { .events-live-dot { animation: none; } }
.events-title {
  font-family: var(--font-display);
  font-size: var(--text-4xl, clamp(2.25rem, 5vw, 3.25rem));
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-top: var(--space-4);
}
[data-theme='dark'] .events-title { color: #fff; }
.events-subline {
  margin-top: var(--space-3);
  color: var(--color-text-muted);
  font-size: var(--text-lg);
  line-height: 1.6;
}
.event-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.25rem, 3vw, 1.75rem);
  margin-top: var(--space-8);
}
@media (min-width: 700px) {
  .event-grid { grid-template-columns: repeat(2, 1fr); }
}
.event-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  height: 100%;
  border: 2px solid var(--color-navy);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -20px rgba(22,35,79,0.55);
}
[data-theme='dark'] .event-card { border-color: var(--color-gold-light); }
.event-date-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--color-gold-light);
  color: var(--color-navy);
  font-weight: 600;
  font-size: var(--text-sm);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  align-self: flex-start;
}
.event-card h3 { font-size: var(--text-lg); margin-top: var(--space-2); }
.event-card .event-venue { color: var(--color-text-muted); font-size: var(--text-sm); line-height: 1.5; }
.event-card .btn { margin-top: var(--space-3); align-self: flex-start; }
.event-audience {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  align-self: flex-start;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-navy);
  background: transparent;
  padding: 0.3rem 0.75rem;
  border: 1.5px solid var(--color-navy);
  border-radius: var(--radius-full);
}
[data-theme='dark'] .event-audience { color: var(--color-gold-light); border-color: var(--color-gold-light); }

/* ============================================================
   Pillar / Framework cards
   ============================================================ */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.25rem, 3vw, 1.75rem);
  margin-top: var(--space-8);
}
@media (min-width: 640px) {
  .card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
  .card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
}
.info-card {
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  height: 100%;
}
.info-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  background: var(--color-gold-highlight);
  color: var(--color-gold-hover);
  margin-bottom: var(--space-4);
}
[data-theme='dark'] .info-card-icon { color: var(--color-gold); }
.info-card-icon svg { width: 22px; height: 22px; }
.info-card h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-base);
  color: var(--color-text);
}
.info-card p {
  margin-top: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.55;
}

/* Audience tag list (compact, for Speaking page) */
.tag-list { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-top: var(--space-6); }
.tag-pill {
  display: inline-flex;
  align-items: center;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-navy);
  background: var(--color-gold-highlight);
  border-radius: var(--radius-full);
  padding: 0.5rem 1.1rem;
}
[data-theme='dark'] .tag-pill { color: var(--color-gold); background: var(--color-gold-highlight); }

/* ============================================================
   Booking CTA panel
   ============================================================ */
.booking-panel { text-align: center; }
.booking-panel .section-title { color: #fff; }
.booking-contacts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4);
  margin-top: var(--space-8);
}
.booking-contacts .btn { font-size: var(--text-base); padding: 1rem 2rem; }

/* ---- Booking form (Formspree) ---- */
.booking-form {
  margin-top: var(--space-8);
  max-width: 640px;
  margin-inline: auto;
  text-align: left;
}
.booking-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}
@media (min-width: 620px) {
  .booking-form-grid { grid-template-columns: 1fr 1fr; }
  .booking-form-grid .field--full { grid-column: 1 / -1; }
}
.booking-form .field { display: flex; flex-direction: column; gap: var(--space-2); }
.booking-form label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}
.booking-form label .req { color: var(--color-gold-light); }
.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: var(--text-base);
  transition: border-color var(--transition-interactive), background var(--transition-interactive);
}
.booking-form textarea { min-height: 130px; resize: vertical; }
.booking-form input::placeholder,
.booking-form textarea::placeholder { color: rgba(255, 255, 255, 0.5); }
.booking-form select { appearance: none; -webkit-appearance: none; cursor: pointer; }
.booking-form select option { color: #16234f; }
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  background: rgba(255, 255, 255, 0.1);
}
.booking-form .form-submit-row {
  margin-top: var(--space-6);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
}
.booking-form button[type='submit'] { font-size: var(--text-base); padding: 1rem 2.5rem; border: none; cursor: pointer; }
.booking-form .form-note {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
}
.booking-form .form-note a { color: var(--color-gold-light); font-weight: 600; }
.form-status { text-align: center; font-size: var(--text-sm); margin-top: var(--space-3); min-height: 1.2em; }
.form-status.is-error { color: #ffb4a8; }
.form-status.is-success { color: var(--color-gold-light); font-weight: 600; }
.booking-contact-line {
  margin-top: var(--space-6);
  text-align: center;
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}
.booking-contact-line strong { color: #fff; font-weight: 700; }
.booking-contact-line a { color: var(--color-gold-light); font-weight: 600; }

/* ============================================================
   Contact page — clean light form
   ============================================================ */
.contact-section {
  background: linear-gradient(180deg, rgba(199,155,60,0.06) 0%, rgba(22,35,79,0.04) 100%);
  padding: clamp(3.5rem, 8vw, 6rem) 0 clamp(4rem, 9vw, 7rem);
}
[data-theme='dark'] .contact-section {
  background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(0,0,0,0.12) 100%);
}
.contact-wrap { max-width: 900px; margin-inline: auto; }

.contact-intro { text-align: center; margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.contact-eyebrow {
  display: block;
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  color: var(--color-gold);
}
.contact-intro h1 {
  font-family: var(--font-display);
  font-size: var(--text-hero, clamp(2.75rem, 6vw, 4.25rem));
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-top: var(--space-3);
}
[data-theme='dark'] .contact-intro h1 { color: #fff; }
.contact-lede {
  margin-top: var(--space-4);
  color: var(--color-text-muted);
  font-size: var(--text-lg);
  line-height: 1.6;
}

.contact-form-wrap { max-width: 820px; margin-inline: auto; }

.contact-form .form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}
@media (min-width: 620px) {
  .contact-form .form-grid { grid-template-columns: 1fr 1fr; }
  .contact-form .form-grid .field--full { grid-column: 1 / -1; }
}
.contact-form .field { display: flex; flex-direction: column; gap: var(--space-2); }
.contact-form label {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-navy);
}
[data-theme='dark'] .contact-form label { color: #fff; }
.contact-form label .req { color: var(--color-gold); }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-lg, 16px);
  border: 1.5px solid rgba(22,35,79,0.14);
  background: #fff;
  color: var(--color-navy);
  font-family: var(--font-body);
  font-size: var(--text-base);
  box-shadow: 0 1px 2px rgba(22,35,79,0.04);
  transition: border-color var(--transition-interactive), box-shadow var(--transition-interactive);
}
[data-theme='dark'] .contact-form input,
[data-theme='dark'] .contact-form select,
[data-theme='dark'] .contact-form textarea {
  background: rgba(255,255,255,0.06);
  color: #fff;
  border-color: rgba(255,255,255,0.18);
  box-shadow: none;
}
.contact-form textarea { min-height: 170px; resize: vertical; }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(22,35,79,0.38); }
[data-theme='dark'] .contact-form input::placeholder,
[data-theme='dark'] .contact-form textarea::placeholder { color: rgba(255,255,255,0.4); }
.contact-form select { appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2316234f' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1.1rem center; padding-right: 2.6rem;
}
[data-theme='dark'] .contact-form select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(199,155,60,0.18);
}
.contact-submit {
  margin-top: var(--space-7);
  width: 100%;
  justify-content: center;
  border: none;
  cursor: pointer;
  padding-top: 1.05rem;
  padding-bottom: 1.05rem;
  font-size: var(--text-base);
}
.contact-form .form-status { text-align: center; }

.contact-email-line {
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(22,35,79,0.12);
  text-align: center;
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.8;
}
[data-theme='dark'] .contact-email-line { border-top-color: rgba(255,255,255,0.12); }
.contact-email-line strong { color: var(--color-navy); font-weight: 700; }
[data-theme='dark'] .contact-email-line strong { color: #fff; }
.contact-email-line a {
  color: var(--color-navy);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--color-gold);
  text-underline-offset: 3px;
}
[data-theme='dark'] .contact-email-line a { color: var(--color-gold-light); }

/* ============================================================
   Prose Banners (Raising Dreamers, Podcast Guest, Imagination Project)
   ============================================================ */
.prose-banner .section-eyebrow { margin-bottom: var(--space-2); }
.prose-banner-sub {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-base);
  color: var(--color-gold-hover);
  margin-top: var(--space-2);
}
.prose-banner-invert .prose-banner-sub { color: var(--color-gold-light); }
.prose-banner-body { margin-top: var(--space-5); }
.prose-banner-body p { margin-top: var(--space-4); max-width: 70ch; }
.prose-banner-body p:first-child { margin-top: 0; }
.prose-banner-invert .prose-banner-body p { color: rgba(255, 255, 255, 0.82); }

/* Centered variant of a prose banner:
   short elements (eyebrow, headline, sub-heads, buttons) are centered;
   body copy + list stay left-aligned inside a centered reading column */
.prose-banner-center { text-align: center; }
/* Centered reading column that holds the left-aligned body copy */
.prose-banner-center .prose-banner-body {
  max-width: 64ch;
  margin-inline: auto;
  text-align: left;
}
.prose-banner-center .prose-banner-body p { max-width: none; }
.prose-banner-center .topic-list {
  max-width: 64ch;
  margin-inline: auto;
  justify-items: start;
  text-align: left;
}
/* The trailing single paragraph (direct child) sits in the same column */
.prose-banner-center > p {
  max-width: 64ch;
  margin-inline: auto;
  text-align: left;
}
.prose-banner-center .banner-actions { justify-content: center; }

/* Children section intro copy */
.children-intro {
  position: relative;
  overflow: hidden;
  margin-top: var(--space-6);
  margin-bottom: var(--space-8);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 5vw, 3.5rem);
  background: linear-gradient(155deg, var(--color-navy) 0%, #0e1836 100%);
  color: #fff;
  text-align: center;
}
.children-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(199,155,60,0.14), transparent 42%),
    radial-gradient(circle at 85% 85%, rgba(199,155,60,0.10), transparent 45%);
  pointer-events: none;
}
.children-intro > * { position: relative; z-index: 1; }
.children-intro p {
  margin: var(--space-4) auto 0;
  max-width: 68ch;
  color: rgba(255,255,255,0.82);
  font-size: var(--text-base);
  line-height: 1.75;
}
.children-intro-lead {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-3xl);
  color: #fff !important;
  letter-spacing: -0.01em;
  margin-top: 0 !important;
}
.children-intro-lead::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  margin: var(--space-4) auto 0;
  border-radius: var(--radius-full);
  background: var(--color-gold);
}
.children-intro-close {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: var(--text-lg);
  color: var(--color-gold-light) !important;
  margin-top: var(--space-6) !important;
}

.topic-list {
  list-style: none;
  margin-top: var(--space-6);
  margin-bottom: var(--space-6);
  display: grid;
  gap: var(--space-3);
  max-width: 62ch;
}
.topic-list li {
  position: relative;
  padding-left: 1.75rem;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}
.topic-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-gold);
}

.banner-actions {
  margin-top: var(--space-8);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.video-grid-3 { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 760px) {
  #parents-educators .video-grid-3 { grid-template-columns: repeat(3, 1fr); }
}
