/* ================= GLOBAL VARIABLES ================= */
:root {
  --navy: #062B6F;
  --blue: #1267B3;
  --purple: #6F259F;
  --teal: #159E9C;
  --green: #5FAF3B;
  --yellow: #F6C744;
  --orange: #F3702A;
  --red: #E64235;
  --cream: #FFF8E7;
  --soft-gray: #F5F5F5;
  --dark-text: #1E2A3A;
  --white: #FFFFFF;

  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --container-max: 1200px;
  --section-padding: 5rem 0;
  --radius: 12px;
  --radius-lg: 16px;
  --shadow: 0 4px 20px rgba(6, 43, 111, 0.08);
  --shadow-hover: 0 8px 30px rgba(6, 43, 111, 0.12);
  --transition: 0.25s ease;
}

/* ================= RESET & BASE ================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--dark-text);
  background: var(--white);
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a:not(.btn) {
  color: var(--blue);
  text-decoration: none;
  transition: color var(--transition);
}

a:not(.btn):hover {
  color: var(--teal);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 2px;
}

ul {
  list-style: none;
}

section[id] {
  scroll-margin-top: 120px;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--navy);
  line-height: 1.25;
}

h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 700; }
h3 { font-size: clamp(1.125rem, 2.5vw, 1.375rem); font-weight: 600; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ================= LAYOUT UTILITIES ================= */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: var(--section-padding);
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3rem;
}

.section-header.left {
  text-align: left;
  margin-left: 0;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}

.section-title {
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--purple);
  font-weight: 500;
}

.accent-line {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--purple), var(--yellow));
  border-radius: 2px;
  margin: 1.25rem 0;
}

.accent-line.center {
  margin-left: auto;
  margin-right: auto;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.bg-white { background: var(--white); }
.bg-cream { background: var(--cream); }
.bg-gray { background: var(--soft-gray); }
.bg-navy { background: var(--navy); color: var(--white); }
.bg-navy h2, .bg-navy h3 { color: var(--white); }
.bg-navy .section-subtitle { color: var(--yellow); }

.text-center { text-align: center; }
.text-light { color: rgba(255, 255, 255, 0.9); }

/* ================= BUTTONS ================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn-primary:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.btn-secondary {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-secondary:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.btn-white:hover {
  background: var(--cream);
  color: var(--navy);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--navy);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

/* Ensure link-styled buttons always keep button colors */
a.btn {
  text-decoration: none;
}

a.btn-primary,
a.btn-primary:hover,
a.btn-primary:focus-visible {
  color: var(--white);
}

a.btn-secondary,
a.btn-secondary:focus-visible {
  color: var(--navy);
}

a.btn-secondary:hover {
  color: var(--white);
}

a.btn-white,
a.btn-white:hover,
a.btn-white:focus-visible {
  color: var(--navy);
}

a.btn-outline-white,
a.btn-outline-white:focus-visible {
  color: var(--white);
}

a.btn-outline-white:hover {
  color: var(--navy);
}

/* ================= BADGES ================= */
.badge {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: var(--font-heading);
  border-radius: 50px;
  background: var(--soft-gray);
  color: var(--navy);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.badge-teal { background: rgba(21, 158, 156, 0.15); color: var(--teal); }
.badge-purple { background: rgba(111, 37, 159, 0.12); color: var(--purple); }
.badge-yellow { background: rgba(246, 199, 68, 0.25); color: #8a6914; }
.badge-green { background: rgba(95, 175, 59, 0.15); color: #3d7a24; }
.badge-blue { background: rgba(18, 103, 179, 0.12); color: var(--blue); }
.badge-orange { background: rgba(243, 112, 42, 0.15); color: var(--orange); }

/* ================= CARDS ================= */
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.card-body {
  padding: 1.5rem;
}

.card-accent-top {
  height: 4px;
}

.card-accent-teal { background: var(--teal); }
.card-accent-purple { background: var(--purple); }
.card-accent-yellow { background: var(--yellow); }
.card-accent-green { background: var(--green); }
.card-accent-blue { background: var(--blue); }
.card-accent-orange { background: var(--orange); }

/* ================= TRUST BAR ================= */
.trust-bar {
  background: var(--navy);
  color: var(--white);
  padding: 0.625rem 0;
  font-size: 0.875rem;
}

.trust-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.trust-bar p {
  margin: 0;
  flex: 1;
  min-width: 200px;
}

.trust-bar a {
  color: var(--cream);
  font-weight: 600;
  white-space: nowrap;
}

.trust-bar a:hover {
  color: var(--white);
}

/* ================= HEADER ================= */
.site-header {
  background: var(--white);
  border-bottom: 1px solid rgba(6, 43, 111, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(6, 43, 111, 0.05);
}

.header-top {
  padding: 1rem 0;
  border-bottom: 3px solid;
  border-image: linear-gradient(90deg, var(--teal), var(--purple), var(--yellow), var(--green)) 1;
}

.header-top .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-logo {
  height: 80px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}

.site-logo--footer {
  height: 100px;
  max-width: 220px;
  margin-bottom: 1rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 0.5rem 0.75rem;
}

/* Full logo image includes brand name and tagline */
.site-header .brand-text {
  display: none;
}

.footer-brand h3,
.footer-brand .tagline {
  display: none;
}

.brand-name {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.15rem;
}

.brand-text .tagline {
  font-size: 0.8125rem;
  color: var(--purple);
  font-weight: 500;
  font-style: italic;
}

.header-cta {
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

.header-nav {
  padding: 0.75rem 0;
  background: var(--cream);
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.25rem 1.75rem;
}

.nav-menu .mobile-cta {
  display: none;
}

.nav-menu a:not(.btn) {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy);
  padding: 0.35rem 0;
  position: relative;
}

.nav-menu a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--teal);
  transition: width var(--transition);
}

.nav-menu a:not(.btn):hover {
  color: var(--teal);
}

.nav-menu a:not(.btn):hover::after {
  width: 100%;
}

.nav-menu a.btn {
  padding: 0.875rem 1.75rem;
  border-bottom: none;
}

.nav-menu a.btn::after {
  display: none;
}

/* ================= HERO ================= */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(6, 43, 111, 0.88) 0%, rgba(111, 37, 159, 0.75) 100%),
    url('assets/images/hero-learning.jpg') center/cover no-repeat;
  background-color: var(--navy);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 5rem 0;
  max-width: 720px;
  color: var(--white);
}

.hero-content .eyebrow {
  color: var(--cream);
  font-weight: 600;
  letter-spacing: 0.1em;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
}

.hero-content p {
  font-size: 1.125rem;
  opacity: 0.95;
  margin-bottom: 1rem;
}

.hero-note {
  font-size: 0.9375rem;
  opacity: 0.9;
  font-style: italic;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin: 1rem 0 1.5rem;
  color: var(--yellow);
}

.hero .btn-secondary {
  color: var(--white);
  border-color: var(--white);
}

.hero .btn-secondary:hover {
  background: var(--white);
  color: var(--navy);
}

/* ================= PAGE HERO (INNER PAGES) ================= */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--purple) 100%);
  color: var(--white);
  padding: 4rem 0;
  min-height: auto;
  max-height: none;
}

.page-hero .eyebrow {
  color: var(--cream);
  font-weight: 600;
  letter-spacing: 0.1em;
}

.page-hero h1 {
  color: var(--white);
  max-width: 800px;
  margin-bottom: 1rem;
}

.page-hero-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.95);
  max-width: 640px;
  line-height: 1.6;
}

.page-hero--video {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 50vh;
  padding: 5rem 0;
  overflow: hidden;
}

.page-hero--video .container {
  position: relative;
  z-index: 2;
}

.page-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6, 43, 111, 0.82) 0%, rgba(111, 37, 159, 0.72) 100%);
  z-index: 1;
}

/* ================= ACTIVE NAV ================= */
.nav-menu a:not(.btn)[aria-current="page"] {
  color: var(--teal);
}

.nav-menu a:not(.btn)[aria-current="page"]::after {
  width: 100%;
}

/* ================= WELCOME ================= */
.welcome {
  text-align: center;
}

.welcome .section-subtitle {
  margin-bottom: 1.5rem;
}

.welcome-body {
  max-width: 720px;
  margin: 0 auto 1.5rem;
  font-size: 1.0625rem;
}

.welcome-emphasis {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--teal);
  font-style: italic;
}

.welcome-note {
  max-width: 720px;
  margin: 1.5rem auto 0;
  font-size: 0.9375rem;
  color: var(--purple);
}

/* ================= OUTCOMES ================= */
.outcome-card {
  text-align: center;
  padding: 2rem 1.5rem;
}

.outcome-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.75rem;
}

.outcome-icon.purple { background: rgba(111, 37, 159, 0.12); }
.outcome-icon.teal { background: rgba(21, 158, 156, 0.12); }
.outcome-icon.green { background: rgba(95, 175, 59, 0.12); }

/* ================= PATHWAY CARDS ================= */
.pathway-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.pathway-card:hover {
  color: inherit;
}

.pathway-image {
  height: 200px;
  background: linear-gradient(135deg, var(--soft-gray), var(--cream));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  text-align: center;
  position: relative;
}

.pathway-image-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--navy);
  opacity: 0.7;
  margin-bottom: 0.5rem;
}

.pathway-image-caption {
  font-size: 0.8125rem;
  color: var(--purple);
  font-style: italic;
  max-width: 90%;
}

.pathway-card .card-body h3 {
  margin-bottom: 0.75rem;
}

.pathway-card .card-body p {
  flex: 1;
  font-size: 0.9375rem;
  margin-bottom: 1.25rem;
}

.pathway-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--blue);
}

.pathway-card:hover .pathway-link {
  color: var(--teal);
}

/* ================= SPLIT SECTIONS ================= */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.split-content .eyebrow {
  text-align: left;
}

.split-media {
  position: relative;
}

/* ================= IMAGE PLACEHOLDERS ================= */
.media-placeholder,
.image-caption-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(145deg, var(--soft-gray) 0%, var(--cream) 100%);
  border: 2px dashed rgba(6, 43, 111, 0.15);
  position: relative;
}

.media-placeholder-inner,
.image-caption-card-inner {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
}

.media-placeholder-label {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  background: rgba(255, 255, 255, 0.8);
  padding: 0.35rem 0.75rem;
  border-radius: 4px;
}

.media-placeholder-caption,
.image-caption {
  font-size: 0.9375rem;
  color: var(--purple);
  font-style: italic;
  max-width: 90%;
}

.image-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
}

/* ================= QUOTE CARD ================= */
.quote-card {
  background: var(--cream);
  border-left: 4px solid var(--teal);
  padding: 1.5rem 2rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.5rem 0;
}

.quote-card blockquote {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--navy);
  font-style: italic;
  margin-bottom: 0.5rem;
}

.quote-label {
  font-size: 0.75rem;
  color: var(--purple);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ================= FEATURE GRID ================= */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.feature-card {
  padding: 1.75rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-top: 3px solid var(--teal);
}

.feature-card.purple { border-top-color: var(--purple); }
.feature-card.blue { border-top-color: var(--blue); }
.feature-card.yellow { border-top-color: var(--yellow); }
.feature-card.green { border-top-color: var(--green); }
.feature-card.orange { border-top-color: var(--orange); }
.feature-card.teal { border-top-color: var(--teal); }

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--soft-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
}

.feature-card p {
  font-size: 0.9375rem;
  margin: 0;
}

/* ================= CONSULTING VALUE BLOCKS ================= */
.value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.value-block {
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(6, 43, 111, 0.08);
  border-left: 4px solid var(--purple);
}

.value-block:nth-child(even) {
  border-left-color: var(--teal);
}

.value-block h3 {
  margin-bottom: 0.75rem;
}

.value-block p {
  font-size: 0.9375rem;
  margin: 0;
}

/* ================= VIDEO PLACEHOLDER ================= */
.video-section {
  margin: 2.5rem 0;
}

.video-wrapper {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: start;
}

.video-placeholder {
  position: relative;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--navy) 0%, var(--purple) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: default;
  overflow: hidden;
}

.video-placeholder-text {
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  padding: 0 1rem;
  margin-top: 1rem;
  opacity: 0.9;
}

.play-button {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 3px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition);
}

.play-button::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent var(--white);
  margin-left: 4px;
}

.video-caption {
  font-size: 0.8125rem;
  color: var(--purple);
  font-style: italic;
  margin-top: 0.75rem;
}

.video-bullets {
  padding-left: 0;
}

.video-bullets li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.9375rem;
}

.video-bullets li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

/* ================= TESTIMONIAL PLACEHOLDERS ================= */
.testimonial-card {
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-size: 3rem;
  color: var(--teal);
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 1;
  position: absolute;
  top: 0.5rem;
  left: 1rem;
}

.testimonial-card h3 {
  margin-bottom: 0.75rem;
  padding-top: 1rem;
}

.placeholder-label {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--purple);
  background: rgba(111, 37, 159, 0.1);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  margin-top: 1rem;
}

/* ================= CTA STRIP ================= */
.cta-strip {
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-strip.bg-gradient-navy {
  background: linear-gradient(135deg, var(--navy) 0%, var(--purple) 100%);
  color: var(--white);
}

.cta-strip.bg-gradient-teal {
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 50%, var(--purple) 100%);
  color: var(--white);
}

.cta-strip h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-strip p {
  max-width: 640px;
  margin: 0 auto 1.5rem;
  opacity: 0.92;
}

.cta-strip .accent-strip {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--yellow), var(--green), var(--orange));
}

.cta-strip .btn-group {
  justify-content: center;
}

.cta-strip a.btn-white,
.cta-strip a.btn-white:hover,
.cta-strip a.btn-white:focus-visible {
  color: var(--navy);
}

.cta-strip a.btn-outline-white,
.cta-strip a.btn-outline-white:focus-visible {
  color: var(--white);
}

.cta-strip a.btn-outline-white:hover {
  color: var(--navy);
}

.parent-trust-section a.btn-white,
.parent-trust-section a.btn-white:hover,
.parent-trust-section a.btn-white:focus-visible {
  color: var(--navy);
}

.cta-reassurance {
  font-size: 0.875rem;
  opacity: 0.8;
  margin-top: 1.25rem;
}

/* ================= MICROSCHOOL ================= */
.microschool-hero .split-section {
  align-items: start;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

.comparison-col {
  padding: 2rem;
  border-radius: var(--radius);
}

.comparison-col.traditional {
  background: var(--soft-gray);
  border: 1px solid rgba(6, 43, 111, 0.08);
}

.comparison-col.engaged {
  background: var(--white);
  border: 2px solid var(--teal);
  box-shadow: var(--shadow);
}

.comparison-col h3 {
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.comparison-col ul li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.9375rem;
}

.comparison-col.traditional ul li::before {
  content: '•';
  position: absolute;
  left: 0.5rem;
  color: var(--dark-text);
}

.comparison-col.engaged ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

.comparison-note {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--navy);
  font-size: 1.0625rem;
  text-align: center;
  max-width: 720px;
  margin: 2rem auto 0;
}

/* ================= TIMELINE ================= */
.learning-timeline {
  display: flex;
  gap: 0;
  margin: 2.5rem 0;
  position: relative;
}

.timeline-step {
  flex: 1;
  text-align: center;
  padding: 0 1rem;
  position: relative;
}

.timeline-step::after {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(50% + 28px);
  width: calc(100% - 56px);
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--purple));
  opacity: 0.3;
}

.timeline-step:last-child::after {
  display: none;
}

.timeline-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  position: relative;
  z-index: 1;
}

.timeline-step:nth-child(2) .timeline-number { background: var(--teal); }
.timeline-step:nth-child(3) .timeline-number { background: var(--purple); }
.timeline-step:nth-child(4) .timeline-number { background: var(--green); }
.timeline-step:nth-child(5) .timeline-number { background: var(--yellow); color: var(--navy); }

.timeline-step h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.timeline-step p {
  font-size: 0.8125rem;
  margin: 0;
}

.timeline-closing {
  text-align: center;
  font-style: italic;
  color: var(--purple);
  font-weight: 500;
  margin-top: 1.5rem;
}

/* ================= AUDIENCE / OUTCOME GRIDS ================= */
.audience-grid,
.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.audience-card,
.outcome-card-grid {
  padding: 1.75rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.audience-card {
  border-top: 3px solid var(--teal);
}

.audience-card.yellow { border-top-color: var(--yellow); }
.audience-card.purple { border-top-color: var(--purple); }
.audience-card.green { border-top-color: var(--green); }
.audience-card.blue { border-top-color: var(--blue); }
.audience-card.orange { border-top-color: var(--orange); }

.audience-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--soft-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.parent-outcomes .outcome-card-grid {
  background: rgba(255, 255, 255, 0.95);
}

.parent-outcomes .outcome-icon-sm {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

/* ================= LEARNING AREAS ================= */
.learning-area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.learning-area-card {
  padding: 1.75rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.learning-area-card h3 {
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--soft-gray);
}

.learning-area-card.teal h3 { border-bottom-color: var(--teal); }
.learning-area-card.green h3 { border-bottom-color: var(--green); }
.learning-area-card.purple h3 { border-bottom-color: var(--purple); }
.learning-area-card.yellow h3 { border-bottom-color: var(--yellow); }

.check-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
  font-size: 0.75rem;
}

/* ================= PARENT TRUST ================= */
.parent-trust-section {
  background: var(--navy);
  color: var(--white);
}

.parent-trust-section h2,
.parent-trust-section h3 {
  color: var(--white);
}

.parent-trust-section .section-subtitle {
  color: var(--yellow);
}

.trust-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.trust-block {
  padding: 1.75rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-block h3 {
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
}

.trust-block p {
  font-size: 0.9375rem;
  opacity: 0.9;
  margin: 0;
}

/* ================= MATERIALS / SHOP ================= */
.materials-hero .badge-row {
  margin-bottom: 1rem;
}

.materials-display-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.materials-display-photo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center;
}

.materials-display-card .image-caption {
  background: var(--cream);
  margin: 0;
}

.product-category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.product-category-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform var(--transition);
}

.product-category-card:hover {
  transform: translateY(-4px);
}

.product-category-image {
  height: 160px;
  background: linear-gradient(135deg, var(--cream), var(--soft-gray));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--navy);
  opacity: 0.8;
}

.product-category-body {
  padding: 1.5rem;
}

.product-category-body h3 {
  margin-bottom: 0.5rem;
}

.product-category-body .examples {
  font-size: 0.8125rem;
  color: var(--dark-text);
  opacity: 0.85;
  margin: 1rem 0;
}

.product-category-body .examples li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.35rem;
}

.product-category-body .examples li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--teal);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.product-image {
  height: 180px;
  background: linear-gradient(145deg, var(--soft-gray), var(--cream));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  text-align: center;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.product-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-category {
  margin-bottom: 0.5rem;
}

.product-title {
  margin-bottom: 0.75rem;
}

.product-description {
  font-size: 0.875rem;
  flex: 1;
  margin-bottom: 1rem;
}

.product-skills {
  font-size: 0.8125rem;
  color: var(--purple);
  margin-bottom: 1rem;
}

.product-status {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--orange);
  background: rgba(243, 112, 42, 0.12);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.product-actions {
  margin-top: auto;
}

.coming-soon {
  color: var(--orange);
}

.materials-process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.process-step {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.process-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1rem;
}

.process-step h3 {
  font-size: 0.9375rem;
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.8125rem;
  margin: 0;
}

.parent-value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.parent-value-card {
  padding: 1.75rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.parent-value-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.0625rem;
}

/* ================= CAMP ================= */
.camp-section {
  background: linear-gradient(180deg, #fff9e6 0%, var(--cream) 100%);
  position: relative;
}

.camp-flyer-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
}

.camp-flyer-photo {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.camp-flyer-card .image-caption {
  background: var(--cream);
  margin: 0;
}

.camp-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(246, 199, 68, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.camp-details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.camp-detail-card {
  padding: 1.75rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-top: 3px solid var(--yellow);
}

.camp-detail-card.teal { border-top-color: var(--teal); }
.camp-detail-card.purple { border-top-color: var(--purple); }
.camp-detail-card.green { border-top-color: var(--green); }
.camp-detail-card.orange { border-top-color: var(--orange); }
.camp-detail-card.blue { border-top-color: var(--blue); }

.camp-focus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.camp-focus-card {
  padding: 1.75rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.camp-day-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.camp-day-block {
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-left: 3px solid var(--teal);
}

.camp-day-block h3 {
  font-size: 0.9375rem;
  margin-bottom: 0.75rem;
}

.camp-day-block p {
  font-size: 0.8125rem;
  margin: 0;
}

.camp-outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* ================= ABOUT / CREDENTIALS ================= */
.about-founder .split-section {
  align-items: start;
}

.founder-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.founder-photo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.founder-image-card .image-caption {
  background: var(--cream);
  margin: 0;
}

.credential-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.credential-card {
  padding: 1.75rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.credential-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.25rem;
}

.founder-philosophy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.philosophy-quote {
  background: var(--navy);
  color: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
}

.philosophy-quote blockquote {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 1rem;
  color: var(--white);
}

.philosophy-cards {
  display: grid;
  gap: 1rem;
}

.philosophy-card {
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-left: 3px solid var(--teal);
}

.philosophy-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.philosophy-card p {
  font-size: 0.875rem;
  margin: 0;
}

/* ================= EXPERIENCE TIMELINE ================= */
.experience-timeline {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}

.experience-timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--teal), var(--purple));
  opacity: 0.3;
}

.timeline-item {
  position: relative;
  padding-left: 3.5rem;
  padding-bottom: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--teal);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--teal);
}

.timeline-item h3 {
  font-size: 1.0625rem;
  margin-bottom: 0.5rem;
}

.timeline-item p {
  font-size: 0.9375rem;
  margin: 0;
}

/* ================= MEDIA LIBRARY ================= */
.media-library-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.media-placeholder-card {
  aspect-ratio: 4 / 3;
  background: linear-gradient(145deg, var(--soft-gray), var(--cream));
  border-radius: var(--radius);
  border: 2px dashed rgba(6, 43, 111, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  text-align: center;
  transition: transform var(--transition);
}

.media-placeholder-card:hover {
  transform: translateY(-2px);
}

.media-placeholder-card .media-type {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  opacity: 0.5;
}

.media-placeholder-card h3 {
  font-size: 0.9375rem;
  margin-bottom: 0.5rem;
}

.media-placeholder-card p {
  font-size: 0.8125rem;
  color: var(--purple);
  margin: 0;
}

/* ================= TRUST / CHOOSE PATH ================= */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.trust-card {
  padding: 1.75rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.trust-card-icon {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.choose-path-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.path-card {
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  border-top: 4px solid var(--teal);
  display: flex;
  flex-direction: column;
}

.path-card.purple { border-top-color: var(--purple); }
.path-card.yellow { border-top-color: var(--yellow); }
.path-card.green { border-top-color: var(--green); }

.path-card h3 {
  margin-bottom: 0.75rem;
}

.path-card p {
  font-size: 0.9375rem;
  flex: 1;
  margin-bottom: 1.25rem;
}

.path-card .btn {
  width: 100%;
}

.choose-path-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9375rem;
  color: var(--purple);
}

/* ================= CONTACT ================= */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.inquiry-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.inquiry-card {
  padding: 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-top: 3px solid var(--teal);
}

.inquiry-card.purple { border-top-color: var(--purple); }
.inquiry-card.yellow { border-top-color: var(--yellow); }
.inquiry-card.green { border-top-color: var(--green); }

.inquiry-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.inquiry-card p {
  font-size: 0.8125rem;
  margin: 0;
}

.contact-info-panel {
  background: var(--navy);
  color: var(--white);
  padding: 1.75rem;
  border-radius: var(--radius);
}

.contact-info-panel h3 {
  color: var(--white);
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.contact-info-panel ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
  font-size: 0.9375rem;
}

.contact-info-panel .contact-icon {
  flex-shrink: 0;
  opacity: 0.7;
}

.contact-form-wrapper {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.contact-form-wrapper h3 {
  margin-bottom: 0.5rem;
}

.form-helper {
  font-size: 0.8125rem;
  color: var(--purple);
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.form-group .optional {
  font-weight: 400;
  color: var(--purple);
  font-size: 0.8125rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  border: 1px solid rgba(6, 43, 111, 0.25);
  border-radius: 8px;
  background: var(--white);
  color: var(--dark-text);
  transition: border-color var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #5c6778;
  opacity: 1;
}

.form-group select {
  color: var(--dark-text);
}

.form-group select option {
  color: var(--dark-text);
  background: var(--white);
}

button.btn-primary[type="submit"] {
  color: var(--white);
  min-height: 48px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  outline: none;
  box-shadow: 0 0 0 3px rgba(21, 158, 156, 0.15);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-reassurance {
  font-size: 0.8125rem;
  color: var(--purple);
  margin-top: 1rem;
}

/* ================= FOOTER ================= */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.85);
}

.footer-accent-strip {
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--purple), var(--yellow), var(--green), var(--orange));
}

.footer-main {
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
}

.footer-brand h3 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.footer-brand .tagline {
  color: var(--yellow);
  font-size: 0.8125rem;
  font-style: italic;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.6;
}

.footer-col h4 {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col ul li {
  margin-bottom: 0.625rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.875rem;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--yellow);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8125rem;
  margin-bottom: 0.35rem;
  opacity: 0.7;
}

.footer-message {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--yellow);
  font-size: 0.9375rem;
  margin-top: 0.75rem;
  opacity: 1;
}

/* ================= IMAGE GRID ================= */
.image-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.image-grid-2 .media-placeholder-inner {
  min-height: 220px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .grid-4,
  .learning-area-grid,
  .camp-focus-grid,
  .camp-day-timeline,
  .materials-process,
  .parent-value-grid,
  .choose-path-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-grid,
  .product-category-grid,
  .product-grid,
  .audience-grid,
  .outcome-grid,
  .camp-outcomes-grid,
  .credential-grid,
  .trust-grid,
  .media-library-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-section,
  .video-wrapper,
  .founder-philosophy,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .learning-timeline {
    flex-direction: column;
    gap: 1.5rem;
  }

  .timeline-step::after {
    display: none;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 3.5rem 0;
  }

  section[id] {
    scroll-margin-top: 100px;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
    position: relative;
    z-index: 1001;
  }

  .header-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    padding: 5rem 1.5rem 2rem;
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 1000;
    overflow-y: auto;
  }

  .header-nav.is-open {
    transform: translateX(0);
  }

  .nav-menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-menu a:not(.btn) {
    padding: 1rem 0;
    font-size: 1.0625rem;
    border-bottom: 1px solid var(--soft-gray);
  }

  .nav-menu .mobile-cta {
    display: list-item;
    margin-top: 1.5rem;
  }

  .nav-menu .mobile-cta .btn {
    width: 100%;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .value-grid,
  .comparison-grid,
  .feature-grid,
  .product-category-grid,
  .product-grid,
  .audience-grid,
  .outcome-grid,
  .learning-area-grid,
  .camp-details-grid,
  .camp-focus-grid,
  .camp-day-timeline,
  .camp-outcomes-grid,
  .credential-grid,
  .trust-grid,
  .trust-blocks,
  .media-library-grid,
  .materials-process,
  .parent-value-grid,
  .choose-path-grid,
  .inquiry-cards,
  .image-grid-2 {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 3.5rem 0;
  }

  .btn-group {
    flex-direction: column;
  }

  .btn-group .btn {
    width: 100%;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .trust-bar .container {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .brand-name {
    font-size: 1.25rem;
  }

  .site-logo {
    height: 64px;
    max-width: 160px;
  }
}
