/* ============================================
   FUTURE LEGENDS — Design System & Styles
   Future Legends, powered by KidsRQ®
   ============================================ */

/* --- CSS Custom Properties (Design Tokens) --- */
:root {
  /* Primary Palette — warmer, more relational navy */
  --color-navy: #1E2D4D;
  --color-navy-light: #2A3F6A;
  --color-navy-dark: #141E36;

  /* Accent — warm, burnished gold with depth */
  --color-gold: #BF9B4A;
  --color-gold-light: #D4BA7E;
  --color-gold-hover: #A8863A;
  --color-gold-soft: rgba(191, 155, 74, 0.10);

  /* Neutrals — warm and inviting */
  --color-cream: #FDFAF5;
  --color-cream-mid: #F5F0E8;
  --color-cream-dark: #EDE7DC;
  --color-white: #FFFFFF;
  --color-charcoal: #2E2B27;
  --color-body: #4A463F;
  --color-gray-warm: #736D64;
  --color-gray-light: #B5AFA6;
  --color-gray-border: #E4DED5;

  /* Accent — muted sage for variety */
  --color-sage: #7A9E7E;
  --color-sage-light: #ECF2ED;

  /* Functional */
  --color-success: #4A8B5C;
  --color-error: #C0392B;

  /* Typography — refined scale */
  --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  /* Font Sizes — fluid, generous scale */
  --text-xs: clamp(0.75rem, 0.72rem + 0.15vw, 0.8125rem);
  --text-sm: clamp(0.8125rem, 0.79rem + 0.15vw, 0.875rem);
  --text-base: clamp(0.9375rem, 0.91rem + 0.18vw, 1.0625rem);
  --text-md: clamp(1.0625rem, 1rem + 0.3vw, 1.1875rem);
  --text-lg: clamp(1.1875rem, 1.1rem + 0.5vw, 1.375rem);
  --text-xl: clamp(1.3125rem, 1.15rem + 0.75vw, 1.625rem);
  --text-2xl: clamp(1.625rem, 1.35rem + 1.25vw, 2.125rem);
  --text-3xl: clamp(2rem, 1.6rem + 1.75vw, 2.75rem);
  --text-4xl: clamp(2.375rem, 1.85rem + 2.5vw, 3.5rem);
  --text-display: clamp(2.75rem, 2.1rem + 3vw, 4rem);

  /* Line Heights */
  --leading-tight: 1.15;
  --leading-snug: 1.25;
  --leading-normal: 1.55;
  --leading-relaxed: 1.7;
  --leading-loose: 1.85;

  /* Spacing — more generous rhythm */
  --space-2xs: 0.25rem;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 5.5rem;
  --space-5xl: 7.5rem;
  --space-6xl: 10rem;

  /* Layout */
  --container-max: 1120px;
  --container-narrow: 760px;
  --container-wide: 1280px;
  --container-pad: clamp(1.25rem, 1rem + 2vw, 2.5rem);

  /* Borders & Shadows — softer, warmer */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-full: 9999px;
  --shadow-xs: 0 1px 2px rgba(46, 43, 39, 0.04);
  --shadow-sm: 0 1px 4px rgba(46, 43, 39, 0.05), 0 2px 8px rgba(46, 43, 39, 0.03);
  --shadow-md: 0 4px 16px rgba(46, 43, 39, 0.07), 0 1px 4px rgba(46, 43, 39, 0.04);
  --shadow-lg: 0 8px 32px rgba(46, 43, 39, 0.08), 0 2px 8px rgba(46, 43, 39, 0.04);
  --shadow-xl: 0 16px 48px rgba(46, 43, 39, 0.10), 0 4px 12px rgba(46, 43, 39, 0.04);
  --shadow-glow: 0 0 0 4px var(--color-gold-soft);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Z-index layers */
  --z-header: 100;
  --z-dropdown: 110;
  --z-overlay: 200;
  --z-modal: 300;
}


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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: var(--font-weight-regular);
  line-height: var(--leading-relaxed);
  color: var(--color-body);
  background-color: var(--color-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--color-navy);
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* Focus Visible — warm gold glow */
:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
  border-radius: var(--radius-xs);
}

:focus:not(:focus-visible) {
  outline: none;
}


/* --- Utility Classes --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.container--wide {
  max-width: var(--container-wide);
}

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

.text-center { text-align: center; }
.text-left { text-align: left; }

.text-gold { color: var(--color-gold); }
.text-navy { color: var(--color-navy); }
.text-gray { color: var(--color-gray-warm); }

.bg-white { background-color: var(--color-white); }
.bg-cream { background-color: var(--color-cream); }
.bg-cream-dark { background-color: var(--color-cream-dark); }
.bg-navy { background-color: var(--color-navy); color: var(--color-cream); }


/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-weight: var(--font-weight-bold);
  line-height: var(--leading-tight);
  color: var(--color-navy);
  letter-spacing: -0.015em;
}

.bg-navy h1,
.bg-navy h2,
.bg-navy h3,
.bg-navy h4 {
  color: var(--color-cream);
}

h1 {
  font-size: var(--text-4xl);
  letter-spacing: -0.025em;
  line-height: 1.1;
}

h2 {
  font-size: var(--text-3xl);
  letter-spacing: -0.02em;
  line-height: var(--leading-tight);
}

h3 {
  font-size: var(--text-2xl);
  letter-spacing: -0.01em;
  line-height: var(--leading-snug);
}

h4 {
  font-size: var(--text-xl);
  line-height: var(--leading-snug);
}

h5 {
  font-size: var(--text-lg);
  line-height: var(--leading-snug);
}

p {
  margin-bottom: 0;
}

p + p {
  margin-top: var(--space-md);
}

.section-label {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-md);
  position: relative;
  padding-left: 1.75rem;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.125rem;
  height: 2px;
  background-color: var(--color-gold);
  border-radius: 1px;
}

.section-heading {
  margin-bottom: var(--space-lg);
}

.section-subheading {
  font-size: var(--text-lg);
  font-weight: var(--font-weight-regular);
  color: var(--color-gray-warm);
  max-width: 620px;
  line-height: var(--leading-relaxed);
}

.text-center .section-subheading {
  margin-left: auto;
  margin-right: auto;
}

.lead {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: var(--color-gray-warm);
}


/* --- Sections — generous vertical rhythm --- */
.section {
  padding: var(--space-4xl) 0;
}

.section--sm {
  padding: var(--space-3xl) 0;
}

.section--lg {
  padding: var(--space-5xl) 0;
}

.section-header {
  margin-bottom: var(--space-3xl);
}


/* --- Buttons — pill-shaped, warm, refined --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 0.875rem 2rem;
  font-size: var(--text-sm);
  font-weight: var(--font-weight-semibold);
  line-height: 1;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all var(--transition-base);
  white-space: nowrap;
  cursor: pointer;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
}

.btn--primary {
  background-color: var(--color-navy);
  color: var(--color-white);
  border-color: var(--color-navy);
}

.btn--primary:hover {
  background-color: var(--color-navy-light);
  border-color: var(--color-navy-light);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

.btn--secondary {
  background-color: transparent;
  color: var(--color-navy);
  border-color: var(--color-gray-border);
}

.btn--secondary:hover {
  background-color: var(--color-navy);
  color: var(--color-white);
  border-color: var(--color-navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--secondary:active {
  transform: translateY(0);
}

.btn--gold {
  background-color: var(--color-gold);
  color: var(--color-white);
  border-color: var(--color-gold);
}

.btn--gold:hover {
  background-color: var(--color-gold-hover);
  border-color: var(--color-gold-hover);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--gold:active {
  transform: translateY(0);
}

.btn--white {
  background-color: var(--color-white);
  color: var(--color-navy);
  border-color: var(--color-white);
}

.btn--white:hover {
  background-color: var(--color-cream);
  border-color: var(--color-cream);
  color: var(--color-navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--white:active {
  transform: translateY(0);
}

.btn--ghost {
  background-color: transparent;
  color: var(--color-cream);
  border-color: rgba(250, 247, 242, 0.3);
}

.btn--ghost:hover {
  background-color: rgba(250, 247, 242, 0.1);
  border-color: rgba(250, 247, 242, 0.5);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn--sm {
  padding: 0.625rem 1.375rem;
  font-size: var(--text-xs);
}

.btn--lg {
  padding: 1.0625rem 2.5rem;
  font-size: var(--text-base);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.btn-group--center {
  justify-content: center;
}

.bg-navy .btn--secondary {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.bg-navy .btn--secondary:hover {
  background-color: var(--color-gold);
  color: var(--color-navy-dark);
  border-color: var(--color-gold);
}


/* --- Header — frosted glass, refined --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(228, 222, 213, 0.6);
  transition: box-shadow var(--transition-base), border-color var(--transition-base);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
  border-bottom-color: transparent;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.header-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.header-logo:hover {
  opacity: 0.85;
}

.header-logo .logo-full {
  height: 50px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

/* Desktop Nav */
.main-nav {
  display: none;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.main-nav a {
  font-size: var(--text-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-gray-warm);
  text-decoration: none;
  padding: var(--space-xs) 0;
  position: relative;
  transition: color var(--transition-fast);
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-gold);
  border-radius: 1px;
  transition: width var(--transition-base);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.main-nav a:hover {
  color: var(--color-navy);
}

.main-nav a.active {
  color: var(--color-navy);
  font-weight: var(--font-weight-semibold);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.join-wrapper {
  position: relative;
}

.join-dropdown {
  position: absolute;
  top: calc(100% + var(--space-sm));
  right: 0;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-gray-border);
  min-width: 240px;
  padding: var(--space-sm);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition-base);
  z-index: var(--z-dropdown);
}

.join-dropdown.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.join-dropdown a {
  display: block;
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-charcoal);
  transition: background-color var(--transition-fast);
}

.join-dropdown a:hover {
  background-color: var(--color-cream);
  color: var(--color-navy);
}

.join-dropdown .dropdown-label {
  font-size: var(--text-xs);
  color: var(--color-gray-warm);
  padding: var(--space-sm) var(--space-lg) var(--space-2xs);
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: var(--z-overlay);
  border-radius: var(--radius-sm);
  transition: background-color var(--transition-fast);
}

.nav-toggle:hover {
  background-color: var(--color-cream);
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-navy);
  border-radius: 2px;
  transition: all var(--transition-base);
  transform-origin: center;
}

.nav-toggle.is-active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: 76px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-white);
  z-index: var(--z-overlay);
  padding: var(--space-xl) var(--container-pad);
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--transition-base);
}

.mobile-nav.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xs);
}

.mobile-nav a {
  display: block;
  padding: var(--space-md) var(--space-lg);
  font-size: var(--text-lg);
  font-weight: var(--font-weight-medium);
  color: var(--color-body);
  border-radius: var(--radius-md);
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

.mobile-nav a:hover,
.mobile-nav a.active {
  background-color: var(--color-cream);
  color: var(--color-navy);
}

.mobile-nav-actions {
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--color-gray-border);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.mobile-nav-actions .mobile-join-label {
  font-size: var(--text-xs);
  font-weight: var(--font-weight-semibold);
  color: var(--color-gray-warm);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: var(--space-xs) var(--space-lg);
}

.mobile-nav-actions a {
  display: block;
  padding: var(--space-md) var(--space-lg);
  font-size: var(--text-md);
  font-weight: var(--font-weight-medium);
  color: var(--color-body);
  border-radius: var(--radius-md);
}

.mobile-nav-actions a:hover {
  background-color: var(--color-cream);
}


/* --- Hero --- */
.hero {
  padding: var(--space-5xl) 0 var(--space-4xl);
  text-align: center;
}

.hero--podcast {
  background: var(--color-navy);
  color: var(--color-cream);
  position: relative;
  overflow: hidden;
}

.hero--why-it-matters {
  background: var(--color-navy);
  color: var(--color-cream);
  position: relative;
  overflow: hidden;
}

.hero--why-it-matters::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/why-it-matters-hero-bg.jpg') center center / cover no-repeat;
  opacity: 0.18;
  pointer-events: none;
}

.hero--why-it-matters .container {
  position: relative;
  z-index: 1;
}

.hero--why-it-matters h1 {
  color: var(--color-white);
}

.hero--why-it-matters .section-subheading {
  color: rgba(250, 247, 242, 0.85);
}

.hero--schools {
  background: var(--color-navy);
  color: var(--color-cream);
  position: relative;
  overflow: hidden;
}

.hero--schools::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/schools-hero-bg.jpg') center center / cover no-repeat;
  opacity: 0.18;
  pointer-events: none;
}

.hero--schools .container {
  position: relative;
  z-index: 1;
}

.hero--schools h1 {
  color: var(--color-white);
}

.hero--schools .hero-sub {
  color: rgba(250, 247, 242, 0.85);
}

.hero--schools .btn--outline {
  color: var(--color-white);
  border-color: rgba(250, 247, 242, 0.5);
}

.hero--schools .btn--outline:hover {
  background-color: rgba(250, 247, 242, 0.1);
  border-color: rgba(250, 247, 242, 0.7);
}

.hero--parents {
  background: var(--color-navy);
  color: var(--color-cream);
  position: relative;
  overflow: hidden;
}

.hero--parents::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/parents-hero-bg.jpg') center center / cover no-repeat;
  opacity: 0.18;
  pointer-events: none;
}

.hero--parents .container {
  position: relative;
  z-index: 1;
}

.hero--parents h1 {
  color: var(--color-white);
}

.hero--parents .section-label {
  color: var(--color-gold);
}

.hero--parents .section-subheading {
  color: rgba(250, 247, 242, 0.85);
}

.hero--podcast::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/podcast-hero-bg.jpg') center center / cover no-repeat;
  opacity: 0.18;
  pointer-events: none;
}

.hero--podcast h1 {
  color: var(--color-white);
  position: relative;
}

.hero--podcast .hero-subheadline {
  color: rgba(250, 247, 242, 0.85);
  position: relative;
}

.hero--podcast .hero-ctas {
  position: relative;
}

.hero--podcast .btn--secondary {
  border-color: var(--color-white);
  color: var(--color-white);
}

.hero--podcast .btn--secondary:hover {
  background-color: var(--color-white);
  color: var(--color-navy);
  border-color: var(--color-white);
}

.hero--home {
  padding: var(--space-6xl) 0 var(--space-5xl);
  background: linear-gradient(160deg, var(--color-navy-dark) 0%, var(--color-navy) 40%, var(--color-navy-light) 100%);
  color: var(--color-cream);
  position: relative;
  overflow: hidden;
}

/* Semi-transparent background image */
.hero--home::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/hero-home-bg.jpg') center center / cover no-repeat;
  opacity: 0.15;
  pointer-events: none;
}

/* Subtle warm radial glow for depth */
.hero--home::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(191, 155, 74, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero--home .container {
  position: relative;
  z-index: 1;
}

.hero--home h1,
.hero--home h2 {
  color: var(--color-white);
}

.hero--home h1 {
  font-size: var(--text-display);
  margin-bottom: var(--space-lg);
}

.hero h1 {
  margin-bottom: var(--space-lg);
}

.hero .section-subheading {
  margin-bottom: var(--space-xl);
}

.hero--home .section-subheading {
  color: rgba(250, 247, 242, 0.75);
  font-size: var(--text-xl);
}

.hero .lead {
  max-width: 620px;
  margin: 0 auto var(--space-2xl);
}

.hero--home .lead {
  color: rgba(250, 247, 242, 0.7);
}

/* Hero content spacing */
.hero-subheadline {
  font-size: var(--text-xl);
  color: var(--color-gray-warm);
  margin-bottom: var(--space-lg);
  line-height: var(--leading-relaxed);
}

.hero--home .hero-subheadline {
  color: rgba(250, 247, 242, 0.8);
  font-size: var(--text-2xl);
  font-weight: var(--font-weight-medium);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--space-xl);
}

.hero-supporting {
  font-size: var(--text-md);
  color: var(--color-gray-warm);
  max-width: 620px;
  margin: 0 auto var(--space-2xl);
  line-height: var(--leading-relaxed);
}

.hero--home .hero-supporting {
  color: rgba(250, 247, 242, 0.65);
}

.hero--home .btn--secondary {
  border-color: var(--color-white);
  color: var(--color-white);
}

.hero--home .btn--secondary:hover {
  background-color: var(--color-white);
  color: var(--color-navy);
  border-color: var(--color-white);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
  margin-top: var(--space-xl);
}

.hero .powered-by,
.hero-powered {
  margin-top: var(--space-xl);
  font-size: var(--text-sm);
  color: var(--color-gray-warm);
  font-weight: var(--font-weight-medium);
}

/* Pull quote */
.pull-quote {
  border-left: 3px solid var(--color-gold);
  padding: var(--space-lg) var(--space-2xl);
  margin: var(--space-2xl) 0;
  background: var(--color-cream);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.pull-quote p {
  font-size: var(--text-xl);
  font-weight: var(--font-weight-semibold);
  color: var(--color-navy);
  line-height: var(--leading-snug);
  font-style: italic;
  margin: 0;
}

.bg-navy .pull-quote {
  background: rgba(250, 247, 242, 0.05);
  border-left-color: var(--color-gold);
}

.bg-navy .pull-quote p {
  color: var(--color-cream);
}

/* Section content spacing — ensures gap between heading and body text */
.section-intro {
  margin-bottom: var(--space-2xl);
}

.section-intro p {
  font-size: var(--text-md);
  color: var(--color-gray-warm);
  line-height: var(--leading-relaxed);
  max-width: 720px;
}

.section-intro p + p {
  margin-top: var(--space-lg);
}

.bg-navy .section-intro p {
  color: rgba(250, 247, 242, 0.7);
}

.hero--home .powered-by,
.hero--home .hero-powered {
  color: var(--color-gold-light);
}

/* Page hero (non-home pages) */
.page-hero {
  padding: var(--space-5xl) 0 var(--space-3xl);
  text-align: center;
  background-color: var(--color-cream);
}

.page-hero h1 {
  margin-bottom: var(--space-md);
}

.page-hero-sub {
  font-size: var(--text-lg);
  color: var(--color-gray-warm);
  max-width: 600px;
  margin: 0 auto;
  line-height: var(--leading-relaxed);
}


/* Section title — alias for section-heading */
.section-title {
  margin-bottom: var(--space-lg);
}

/* Section content — narrowed prose blocks (about page pattern) */
.section-content {
  margin-top: var(--space-xl);
}

.section-content--narrow {
  max-width: var(--container-narrow);
}

.section-content--narrow h2 {
  margin-bottom: var(--space-lg);
}

.section-content--narrow p {
  font-size: var(--text-md);
  color: var(--color-gray-warm);
  line-height: var(--leading-relaxed);
}

.section-content--narrow p + p {
  margin-top: var(--space-lg);
}

.bg-navy .section-content--narrow p {
  color: rgba(250, 247, 242, 0.7);
}

/* Hero sub — alias used by schools/orgs page */
.hero-sub {
  font-size: var(--text-lg);
  color: var(--color-gray-warm);
  max-width: 640px;
  margin: 0 auto var(--space-2xl);
  line-height: var(--leading-relaxed);
}

.hero--home .hero-sub {
  color: rgba(250, 247, 242, 0.7);
}

/* Hero CTA group — alias */
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
  margin-top: var(--space-xl);
}

/* CTA group / CTA buttons / CTA actions — aliases for consistent spacing */
.cta-group,
.cta-buttons,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
  margin-top: var(--space-2xl);
}

/* Button variants used across pages */
.btn--outline {
  background-color: transparent;
  color: var(--color-navy);
  border: 2px solid var(--color-gray-border);
}

.btn--outline:hover {
  background-color: var(--color-navy);
  color: var(--color-white);
  border-color: var(--color-navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--outline-light {
  background-color: transparent;
  color: var(--color-white);
  border: 2px solid rgba(250, 247, 242, 0.5);
}

.btn--outline-light:hover {
  background-color: rgba(250, 247, 242, 0.1);
  border-color: rgba(250, 247, 242, 0.5);
  color: var(--color-white);
  transform: translateY(-2px);
}

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

/* Accordion content — alias for accordion-panel (schools/orgs page) */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
  padding: 0;
}

.accordion-content p {
  padding-bottom: var(--space-xl);
  color: var(--color-gray-warm);
  line-height: var(--leading-relaxed);
  font-size: var(--text-base);
}

/* Page hero sub — alias */
.page-hero__sub {
  font-size: var(--text-lg);
  color: var(--color-gray-warm);
  max-width: 600px;
  margin: 0 auto;
  line-height: var(--leading-relaxed);
}

/* Value list inside value cards */
.value-list {
  text-align: left;
  list-style: none;
  padding: 0;
}

.value-list li {
  padding: var(--space-sm) 0;
  font-size: var(--text-sm);
  color: var(--color-gray-warm);
  line-height: var(--leading-relaxed);
}

.value-list li + li {
  border-top: 1px solid var(--color-gray-border);
}

.value-list strong {
  color: var(--color-navy);
}


/* --- Cards — warm, elevated, breathing --- */
.card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  border: 1px solid var(--color-gray-border);
  transition: all var(--transition-base);
}

.card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-cream-dark);
  transform: translateY(-3px);
}

.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.card-grid--2 {
  grid-template-columns: 1fr;
}

.card-grid--3 {
  grid-template-columns: 1fr;
}

/* Path Cards (Choose Your Path) */
.path-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl) var(--space-2xl);
  border: 1px solid var(--color-gray-border);
  text-align: center;
  transition: all var(--transition-base);
  position: relative;
}

.path-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--color-gold);
  transform: translateY(-4px);
}

.path-card .path-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-cream-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-xl);
  font-size: var(--text-2xl);
}

.path-card .path-card-icon {
  display: block;
  font-size: 3.5rem;
  line-height: 1;
  margin-bottom: var(--space-xl);
}

.path-card h3 {
  margin-bottom: var(--space-sm);
}

.path-card p {
  color: var(--color-gray-warm);
  margin-bottom: var(--space-xl);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
}

.path-card ul {
  text-align: left;
  margin-bottom: var(--space-xl);
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

.path-card li {
  padding: var(--space-sm) 0;
  padding-left: var(--space-xl);
  position: relative;
  font-size: var(--text-sm);
  color: var(--color-body);
  line-height: var(--leading-normal);
}

.path-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.875rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-gold);
}

/* Feature Cards */
.feature-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl) var(--space-xl) var(--space-2xl);
  border: 1px solid var(--color-gray-border);
  transition: all var(--transition-base);
}

.feature-card:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--color-cream-dark);
  transform: translateY(-2px);
}

.feature-card .feature-icon {
  display: block;
  font-size: 2.25rem;
  line-height: 1;
  margin-bottom: var(--space-lg);
}

.feature-card h4 {
  margin-bottom: var(--space-lg);
  font-size: var(--text-md);
}

.feature-card p {
  color: var(--color-gray-warm);
  font-size: var(--text-sm);
  line-height: var(--leading-loose);
}

/* Value Cards */
.value-card {
  text-align: center;
  padding: var(--space-2xl) var(--space-xl);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-gray-border);
}

.value-card h4 {
  margin-bottom: var(--space-sm);
  color: var(--color-gold-hover);
}

.value-card p {
  color: var(--color-gray-warm);
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
}

/* Episode Cards */
.episode-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  border: 1px solid var(--color-gray-border);
  transition: all var(--transition-base);
}

.episode-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-cream-dark);
  transform: translateY(-3px);
}

.episode-card .episode-number {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: var(--font-weight-semibold);
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-md);
}

.episode-card h4 {
  margin-bottom: var(--space-sm);
  font-size: var(--text-md);
}

.episode-card p {
  color: var(--color-gray-warm);
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-lg);
}

.episode-card .episode-meta {
  font-size: var(--text-xs);
  color: var(--color-gray-light);
  font-weight: var(--font-weight-medium);
}


/* --- CTA Band — warm gradient backdrop --- */
.cta-band {
  padding: var(--space-5xl) 0;
  text-align: center;
}

.cta-band h2 {
  margin-bottom: var(--space-lg);
}

.cta-band .section-subheading {
  margin-bottom: var(--space-2xl);
}

.cta-band.bg-navy {
  background: linear-gradient(160deg, var(--color-navy-dark) 0%, var(--color-navy) 50%, var(--color-navy-light) 100%);
  position: relative;
}

.cta-band.bg-navy::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(191, 155, 74, 0.05) 0%, transparent 50%);
  pointer-events: none;
}


/* --- Steps --- */
.steps {
  counter-reset: step-counter;
  max-width: var(--container-narrow);
  margin: 0 auto;
}

.step {
  display: flex;
  gap: var(--space-xl);
  align-items: flex-start;
  padding: var(--space-xl) 0;
}

.step + .step {
  border-top: 1px solid var(--color-gray-border);
}

.step-number {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-lg);
  font-weight: var(--font-weight-bold);
}

.step-content h4 {
  margin-bottom: var(--space-xs);
}

.step-content p {
  color: var(--color-gray-warm);
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
}


/* --- FAQ Accordion --- */
.accordion {
  max-width: var(--container-narrow);
  margin: 0 auto;
}

.accordion-item {
  border-bottom: 1px solid var(--color-gray-border);
}

.accordion-item:first-child {
  border-top: 1px solid var(--color-gray-border);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  padding: var(--space-xl) 0;
  font-size: var(--text-md);
  font-weight: var(--font-weight-semibold);
  color: var(--color-navy);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition-fast);
  line-height: var(--leading-snug);
}

.accordion-trigger:hover {
  color: var(--color-gold-hover);
}

.accordion-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  position: relative;
  transition: transform var(--transition-base);
  border-radius: 50%;
  background: var(--color-cream);
}

.accordion-icon::before,
.accordion-icon::after {
  content: '';
  position: absolute;
  background-color: var(--color-navy);
  border-radius: 1px;
  transition: all var(--transition-base);
}

.accordion-icon::before {
  top: 50%;
  left: 7px;
  right: 7px;
  height: 2px;
  transform: translateY(-50%);
}

.accordion-icon::after {
  left: 50%;
  top: 7px;
  bottom: 7px;
  width: 2px;
  transform: translateX(-50%);
}

.accordion-item.is-open .accordion-icon {
  background: var(--color-gold-soft);
}

.accordion-item.is-open .accordion-icon::before {
  background-color: var(--color-gold-hover);
}

.accordion-item.is-open .accordion-icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
  background-color: var(--color-gold-hover);
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.accordion-panel-inner {
  padding-bottom: var(--space-xl);
  color: var(--color-gray-warm);
  line-height: var(--leading-relaxed);
  font-size: var(--text-base);
}

.accordion-panel-inner p + p {
  margin-top: var(--space-md);
}


/* --- Forms --- */
.form-group {
  margin-bottom: var(--space-xl);
}

.form-label {
  display: block;
  margin-bottom: var(--space-sm);
  font-size: var(--text-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-navy);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.875rem 1.125rem;
  font-size: var(--text-base);
  border: 1px solid var(--color-gray-border);
  border-radius: var(--radius-md);
  background-color: var(--color-white);
  color: var(--color-charcoal);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: var(--shadow-glow);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--color-gray-light);
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form {
  background: var(--color-white);
  padding: var(--space-3xl);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-gray-border);
  max-width: 560px;
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
  text-align: left;
}

.contact-form h3 {
  margin-bottom: var(--space-xl);
}

.contact-form .form-group {
  margin-bottom: var(--space-lg);
}

.contact-form label {
  display: block;
  margin-bottom: var(--space-xs);
  font-size: var(--text-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--color-navy);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: var(--text-base);
  font-family: inherit;
  border: 1px solid var(--color-gray-border);
  border-radius: var(--radius-md);
  background-color: var(--color-cream);
  color: var(--color-charcoal);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: var(--shadow-glow);
  background-color: var(--color-white);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--color-gray-light);
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}


/* --- Audience List --- */
.audience-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.audience-item {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-lg) var(--space-xl);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-gray-border);
  font-weight: var(--font-weight-medium);
  transition: all var(--transition-base);
}

.audience-item:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--color-cream-dark);
}

.audience-item .audience-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-lg);
}


/* --- Highlight / Quote Block --- */
.highlight-block {
  border-left: 3px solid var(--color-gold);
  padding: var(--space-xl) var(--space-2xl);
  background: var(--color-cream);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: var(--space-2xl) 0;
}

.highlight-block p {
  font-size: var(--text-lg);
  font-weight: var(--font-weight-medium);
  color: var(--color-navy);
  line-height: var(--leading-relaxed);
  font-style: italic;
}


/* --- Divider --- */
.divider {
  width: 48px;
  height: 3px;
  background: var(--color-gold);
  border-radius: 2px;
  margin: var(--space-lg) 0;
}

.text-center .divider {
  margin-left: auto;
  margin-right: auto;
}


/* --- Founder / Team --- */
.founder-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-xl);
  max-width: 600px;
  margin: 0 auto;
}

.founder-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--color-cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gray-light);
  font-size: var(--text-sm);
  border: 4px solid var(--color-cream-mid);
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
}

.founder-info h4 {
  margin-bottom: var(--space-xs);
}

.founder-info .founder-role {
  color: var(--color-gold);
  font-weight: var(--font-weight-medium);
  font-size: var(--text-sm);
  margin-bottom: var(--space-lg);
}

.founder-info p {
  color: var(--color-gray-warm);
  max-width: 480px;
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
}


/* --- Footer — warm, refined, spacious --- */
.site-footer {
  background-color: var(--color-navy-dark);
  color: rgba(250, 247, 242, 0.65);
  padding: var(--space-5xl) 0 var(--space-2xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-4xl);
}

.footer-logo-mark {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: var(--space-md);
}

.footer-brand .footer-logo {
  font-size: var(--text-xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.footer-brand .footer-tagline {
  font-size: var(--text-sm);
  color: var(--color-gold-light);
  margin-bottom: var(--space-lg);
  font-weight: var(--font-weight-medium);
}

.footer-brand p {
  font-size: var(--text-sm);
  max-width: 320px;
  line-height: var(--leading-relaxed);
}

.footer-nav h5 {
  font-size: var(--text-xs);
  font-weight: var(--font-weight-semibold);
  color: var(--color-white);
  margin-bottom: var(--space-lg);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-nav a {
  font-size: var(--text-sm);
  color: rgba(250, 247, 242, 0.55);
  transition: color var(--transition-fast);
}

.footer-nav a:hover {
  color: var(--color-gold-light);
}

.footer-bottom {
  border-top: 1px solid rgba(250, 247, 242, 0.08);
  padding-top: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
  text-align: center;
}

.footer-bottom p {
  font-size: var(--text-xs);
  color: rgba(250, 247, 242, 0.35);
}

.footer-legal {
  display: flex;
  gap: var(--space-xl);
}

.footer-legal a {
  font-size: var(--text-xs);
  color: rgba(250, 247, 242, 0.35);
}

.footer-legal a:hover {
  color: var(--color-gold-light);
}


/* --- Two-Column Content Layout --- */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.two-col .col h4 {
  margin-bottom: var(--space-lg);
}

.two-col .col p {
  line-height: var(--leading-loose);
}

.two-col .col p + p {
  margin-top: var(--space-lg);
}


/* --- Responsive: Tablet (640px+) --- */
@media (min-width: 640px) {
  .card-grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .card-grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .audience-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .founder-card {
    flex-direction: row;
    text-align: left;
    max-width: none;
  }

  .two-col {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* --- Responsive: Desktop (960px+) --- */
@media (min-width: 960px) {
  .nav-toggle {
    display: none;
  }

  .main-nav {
    display: flex;
  }

  .card-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .audience-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .hero {
    padding: var(--space-5xl) 0 var(--space-4xl);
  }

  .hero--home {
    padding: var(--space-6xl) 0 var(--space-5xl);
  }

  .page-hero {
    padding: var(--space-5xl) 0 var(--space-3xl);
  }
}


/* --- Responsive: Large Desktop (1200px+) --- */
@media (min-width: 1200px) {
  .hero--home h1 {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
}


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


/* --- Print Styles --- */
@media print {
  .site-header,
  .site-footer,
  .nav-toggle,
  .mobile-nav,
  .btn {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .section {
    padding: 1.5rem 0;
  }

  h1, h2, h3, h4, h5, h6 {
    color: #000;
  }
}
