@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,600;9..144,700&family=Manrope:wght@400;500;600;700&display=swap");

:root {
  --bg: #ffffff;
  --surface: #f6efe8;
  --text: #203126;
  --muted: #67594b;
  --brand: #53734d;
  --brand-2: #c09369;
  --brand-3: #8f694d;
  --border: rgba(83, 115, 77, 0.14);
  --shadow: 0 12px 34px rgba(76, 62, 43, 0.14);
  --radius: 20px;
  --max: 1120px;
  --ease-spring: cubic-bezier(0.2, 0.8, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Manrope, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji",
    "Segoe UI Emoji";
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}

body.home-page {
  background: #ffffff !important;
  background-image: none !important;
  background-attachment: scroll !important;
}

.home-page .topbar {
  background: linear-gradient(90deg, #56714a, #7f9d74) !important;
  color: #f7fbf5;
}

.home-page .topbar a {
  color: #f7fbf5;
}

.home-page .site-header {
  background: rgba(255, 255, 255, 0.96) !important;
  border-bottom: 1px solid rgba(83, 115, 77, 0.12) !important;
}

@keyframes float-drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -10px, 0);
  }
}

@keyframes pulse-glow {
  0%,
  100% {
    opacity: 0.32;
    transform: scale(1);
  }
  50% {
    opacity: 0.48;
    transform: scale(1.04);
  }
}

@keyframes slow-pan {
  0% {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
  100% {
    transform: scale(1.08) translate3d(-1.5%, -1%, 0);
  }
}

h1,
h2,
h3 {
  font-family: Fraunces, ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  letter-spacing: -0.01em;
}

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

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: #111827;
  color: #fff;
  padding: 10px 12px;
  border-radius: 10px;
  z-index: 9999;
}

.skip-link:focus {
  left: 10px;
}

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  background: linear-gradient(90deg, #56714a, #8c684c);
  color: #f7fbf5;
  font-size: 14px;
}

.topbar .wrap {
  display: flex;
  gap: 24px;
  padding: 10px 0;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.topbar a {
  color: #f7fbf5;
}

.topbar .items {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.site-header .nav a[aria-current="page"] {
  background: rgba(246, 239, 232, 0.96);
}

.site-header .wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 12px 0;
  gap: 14px;
}

.brand {
  display: flex;
  gap: 12px;
  flex-direction: column;
  align-items: center;
  min-width: 0;
}

.brand .logo {
  width: 154px;
  height: auto;
  border-radius: 0;
  border: 0;
  background: transparent;
  object-fit: contain;
}

.brand-mark {
  display: block;
  font-family: Fraunces, ui-serif, Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--brand);
  text-align: center;
}

.nav-toggle {
  border: 1px solid var(--border);
  background: rgba(246, 239, 232, 0.96);
  border-radius: 12px;
  padding: 10px 12px;
  font: inherit;
  cursor: pointer;
}

.nav {
  grid-column: 1 / -1;
}

.nav ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.nav ul.nav-submenu,
.nav-submenu {
  display: block !important;
  margin: 0;
  gap: 0;
  text-align: left;
}

.nav-submenu li {
  display: block;
  text-align: left;
}

.nav a {
  display: inline-block;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 14px;
  transition: transform 180ms var(--ease-spring), background-color 180ms ease, border-color 180ms ease,
    color 180ms ease;
}

.nav a[aria-current="page"] {
  border-color: var(--border);
  background: var(--surface);
  text-decoration: none;
}

.nav a.cta {
  background: linear-gradient(135deg, var(--brand), #1f6f5f);
  color: #fff;
  text-decoration: none;
}

.nav a.cta:hover {
  filter: brightness(0.95);
  transform: translateY(-1px);
}

.nav li {
  position: relative;
}

.nav-item-has-children {
  display: grid;
  gap: 6px;
}

.nav-submenu {
  list-style: none;
  margin: 0;
  padding: 0 0 0 14px;
  display: grid;
  gap: 6px;
}

.nav-submenu a {
  padding: 8px 12px;
  font-size: 13px;
  color: var(--muted);
}

.nav[data-state="closed"] {
  display: none;
}

@media (min-width: 900px) {
  .site-header .wrap {
    grid-template-columns: 1fr auto;
  }

  .nav-toggle {
    display: none;
  }

  .nav {
    grid-column: auto;
  }

  .nav[data-state="closed"] {
    display: block;
  }

  .nav ul {
    margin: 0;
    justify-content: flex-end;
  }

  .nav-item-has-children {
    display: block;
    position: relative;
  }

  .nav-submenu {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    width: max-content;
    min-width: 0;
    padding-top: 8px;
    z-index: 200;
    opacity: 0;
    pointer-events: none;
    transform: translateY(6px);
    transition: opacity 0.18s ease, transform 0.18s ease;
  }

  .nav-submenu-inner {
    padding: 10px;
    border-radius: 18px;
    background: rgba(248, 243, 234, 0.98);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    text-align: left;
  }

  .nav-item-has-children:hover .nav-submenu,
  .nav-item-has-children.is-open .nav-submenu,
  .nav-item-has-children:focus-within .nav-submenu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-submenu a {
    display: block;
    width: 100%;
    border-radius: 12px;
    text-align: left;
  }

  .nav-submenu a:hover,
  .nav-submenu a[aria-current="page"] {
    background: var(--surface);
    color: var(--text);
    text-decoration: none;
  }
}

@media (max-width: 699px) {
  .brand .logo {
    width: 126px;
  }

  .brand-mark {
    font-size: 15px;
  }
}

.home-header-center .site-header .wrap {
  justify-items: center;
}

.home-header-center .brand {
  justify-self: center;
}

.home-header-center .nav {
  width: 100%;
}

.home-header-center .nav ul {
  justify-content: center;
}

@media (min-width: 900px) {
  .home-header-center .site-header .wrap {
    grid-template-columns: 1fr;
  }

  .home-header-center .nav {
    grid-column: 1 / -1;
  }
}

.site-header .brand {
  justify-self: start;
}

.site-header .wrap {
  justify-items: start;
}

.hero {
  padding: 0 0 28px;
}

.home-page .hero {
  padding-bottom: 8px;
}

.home-sketch-band {
  padding: 0;
}

.home-sketch-band .wrap {
  width: min(1120px, calc(100% - 44px));
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
}

.home-sketch-band img {
  width: 100%;
  max-width: 900px;
  height: auto;
  display: block;
  mix-blend-mode: darken;
  opacity: 1;
}

.about-page .about-sketch-band {
  padding: 0 !important;
  margin: 1cm 0 !important;
}

.about-page .about-sketch-band .wrap {
  width: min(860px, calc(100% - 44px));
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin: 0 auto !important;
  height: 215px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-page .about-sketch-band img {
  width: auto;
  max-width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  margin: 0 auto;
}

.page-hero {
  position: relative;
  min-height: 560px;
  max-height: 560px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 16px 36px rgba(76, 62, 43, 0.12);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 249, 240, 0.18), rgba(48, 38, 25, 0.28));
}

.page-hero img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  max-height: 560px;
  object-fit: cover;
  filter: saturate(0.9) brightness(0.82);
}

.page-hero-note {
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  transform: translate(-50%, -50%);
  width: min(820px, calc(100% - 32px));
  padding: 14px 20px;
  border-radius: 20px;
  text-align: center;
  z-index: 1;
}

.page-hero-note strong {
  display: block;
  font-family: Fraunces, ui-serif, Georgia, serif;
  font-size: clamp(28px, 3.3vw, 44px);
  line-height: 1.08;
  color: #fff6e8;
  text-shadow: 0 4px 18px rgba(31, 23, 15, 0.35);
}

.page-hero-note span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 248, 238, 0.96);
  font-size: 13px;
  line-height: 1.45;
  text-shadow: 0 2px 10px rgba(31, 23, 15, 0.22);
}

.hero-grid {
  display: grid;
  gap: 22px;
  align-items: stretch;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}

.badge {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(83, 115, 77, 0.12);
  border: 1px solid rgba(83, 115, 77, 0.22);
  color: #3e5c37;
  font-size: 13px;
}

.home-section .badge {
  display: inline-block;
  padding: 8px 18px;
  border: 2px solid rgba(79, 104, 71, 0.28);
  border-radius: 999px;
  background: rgba(255, 249, 240, 0.28);
  color: var(--brand);
  font-family: Fraunces, ui-serif, Georgia, serif;
  font-size: clamp(11px, 1.1vw, 14px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  box-shadow: 0 8px 20px rgba(76, 62, 43, 0.08);
}

.hero h1 {
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.15;
  margin: 12px 0 10px;
}

.hero p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.hero strong.emphasis {
  color: #3f5f39;
}

.actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 14px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  background: #fff;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: transform 180ms var(--ease-spring), box-shadow 180ms ease, background-color 180ms ease,
    color 180ms ease, border-color 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(76, 62, 43, 0.12);
}

.btn.primary {
  background: var(--brand);
  color: #fff;
  border-color: transparent;
}

.btn.primary:hover {
  filter: brightness(0.96);
}

.btn.secondary {
  background: #6a5339;
  color: #fff;
  border-color: transparent;
}

.btn.secondary:hover {
  filter: brightness(1.05);
}

.hero-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: #fff;
}

.hero-copy {
  padding: 28px 0 12px;
}

.hero-copy,
.section-copy,
.testimonial,
.content h1,
.content .lede,
.content h2 {
  text-align: center;
}

.hero-copy .actions,
.section-copy .actions,
.testimonial .actions {
  justify-content: center;
}

.hero-copy .callout {
  max-width: 620px;
}

.programs-intro {
  margin: 0 auto 24px;
  max-width: 780px;
}

.programs-intro h2 {
  margin: 0 0 10px;
  font-size: clamp(30px, 3.8vw, 46px);
  line-height: 1.1;
}

.programs-intro p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.8vw, 21px);
}

.hero-visual {
  display: grid;
  gap: 14px;
}

.hero-visual-main {
  display: block;
  position: relative;
  border-radius: 0 0 38px 38px;
  overflow: hidden;
  height: 560px;
  border-bottom: 1px solid var(--border);
  background: #fff;
}

.hero-visual-main::before {
  content: "";
  position: absolute;
  inset: auto auto 9% 6%;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 137, 95, 0.28), rgba(184, 137, 95, 0));
  filter: blur(6px);
  z-index: 1;
  animation: pulse-glow 8s ease-in-out infinite;
}

.hero-visual-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28, 23, 17, 0.42), rgba(28, 23, 17, 0.6));
}

.hero-visual-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: slow-pan 16s ease-in-out infinite alternate;
}

.hero-visual-note {
  position: absolute;
  left: 50%;
  right: auto;
  top: 50%;
  bottom: auto;
  transform: translate(-50%, -50%);
  display: grid;
  gap: 10px;
  width: min(1080px, calc(100% - 48px));
  padding: 18px 22px;
  text-align: center;
  justify-items: center;
  z-index: 1;
}

.hero-visual-note::before {
  content: "";
  position: absolute;
  inset: -10px auto auto -8px;
  width: 72px;
  height: 72px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(184, 137, 95, 0.24), rgba(184, 137, 95, 0));
  z-index: -1;
  transform: rotate(-8deg);
}

.hero-visual-note strong {
  font-family: Fraunces, ui-serif, Georgia, serif;
  font-size: clamp(28px, 3.5vw, 46px);
  line-height: 1.04;
  color: #fffdf8;
  text-align: center;
  max-width: 900px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.28);
}

.hero-visual-note p {
  margin: 0;
  color: rgba(255, 250, 242, 0.96);
  font-size: clamp(14px, 1.1vw, 17px);
  line-height: 1.5;
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.22);
}

.hero-kicker {
  font-size: clamp(11px, 0.95vw, 14px);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #e8cfb4;
  font-weight: 700;
  text-align: center;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
}

.hero-visual-action {
  display: flex;
  justify-content: center;
  margin-top: 6px;
}

.hero-visual-note .btn {
  min-width: 250px;
  background: var(--brand-2);
  color: #fffaf3;
  border-color: transparent;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: clamp(15px, 1.15vw, 17px);
}

.hero-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

@media (max-width: 899px) {
  .hero-visual-main {
    height: 440px;
    border-radius: 0 0 28px 28px;
  }

  .hero-visual-note {
    width: min(700px, calc(100% - 24px));
    padding: 18px 14px;
    gap: 10px;
  }

  .hero-visual-note strong {
    font-size: clamp(24px, 6.6vw, 34px);
  }

  .hero-visual-note p {
    font-size: clamp(14px, 3.2vw, 16px);
  }

  .hero-kicker {
    font-size: clamp(10px, 2.4vw, 12px);
  }

  .hero-visual-note .btn {
    min-width: 190px;
    padding: 14px 24px;
  }

  .programs-section .age-card-link:nth-child(2),
  .programs-section .age-card-link:nth-child(4),
  .difference-card:nth-child(2),
  .difference-card:nth-child(3),
  .environment-section .stats-grid .card:nth-child(2),
  .environment-section .stats-grid .card:nth-child(3) {
    transform: none;
  }
}

.hero-thumbs a,
.showcase-photo,
.feature-photo {
  display: block;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: #fff;
}

.hero-thumbs a:nth-child(1) {
  border-radius: 28px 28px 28px 12px;
}

.hero-thumbs a:nth-child(2) {
  border-radius: 18px 30px 18px 30px;
}

.hero-thumbs a:nth-child(3) {
  border-radius: 30px 18px 30px 18px;
}

.hero-thumbs img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.hero-card img {
  height: 340px;
  width: 100%;
  object-fit: cover;
}

.mosaic {
  display: grid;
  gap: 12px;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: 170px 170px;
}

.section.alt {
  padding: 34px 0;
}

.showcase-grid {
  display: grid;
  gap: 18px;
  align-items: center;
}

@media (min-width: 900px) {
  .showcase-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

.showcase-photo {
  border-radius: 40px 20px 40px 20px;
}

.showcase-photo img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: center;
}

.about-page .split--goals {
  min-height: 0 !important;
  align-items: center;
}

.about-page .showcase-photo--goals {
  height: auto !important;
  min-height: 0 !important;
  overflow: visible;
  align-self: center;
}

.about-page .showcase-photo--goals img {
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  object-fit: contain !important;
  display: block;
}

.showcase-stack {
  display: grid;
  gap: 14px;
}

.feature-photo {
  border-radius: 26px;
}

.feature-photo img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 0;
}

.pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 9px 14px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--border);
  font-size: 14px;
  font-weight: 600;
}

.image-band {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

@media (min-width: 900px) {
  .image-band {
    grid-template-columns: 1.15fr 0.85fr 0.85fr;
  }
}

.image-band a {
  display: block;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: #fff;
}

.image-band a:first-child {
  border-radius: 34px 18px 34px 18px;
}

.image-band a:nth-child(2) {
  border-radius: 18px 34px 18px 34px;
}

.image-band a:nth-child(3) {
  border-radius: 28px;
}

.image-band img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.map-embed {
  margin-top: 22px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: #fff;
}

.map-embed iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
}

.program-layout {
  display: grid;
  gap: 24px;
  align-items: start;
}

@media (min-width: 980px) {
  .program-layout {
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  }
}

.program-sidebar {
  display: grid;
  gap: 16px;
}

.characteristics {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.characteristics li {
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.82);
  color: var(--muted);
}

.quote-block {
  border-radius: 30px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(239, 111, 87, 0.12), rgba(245, 158, 11, 0.15), rgba(47, 133, 90, 0.1));
  border: 1px solid rgba(17, 24, 39, 0.08);
}

.quote-block blockquote {
  margin: 0;
  font-family: Fraunces, ui-serif, Georgia, serif;
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1.2;
}

.quote-block p {
  margin: 12px 0 0;
  color: var(--muted);
}

.home-section {
  position: relative;
  padding: 38px 0;
}

.home-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(var(--max), calc(100% - 40px));
  border-top: 1px solid rgba(83, 115, 77, 0.18);
}

.home-section .wrap {
  position: relative;
  padding: 22px 18px;
  overflow: clip;
}

.home-page .home-section {
  padding: 0;
}

.home-page .home-section::before {
  display: none;
}

.home-page .home-section .wrap,
.home-page .ready-cta-section .wrap {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-left: max(20px, calc((100vw - var(--max)) / 2));
  padding-right: max(20px, calc((100vw - var(--max)) / 2));
}

.home-page .home-section .wrap {
  border-radius: 0;
}

.home-page .philosophy-section .wrap {
  padding-top: 18px;
  padding-bottom: 30px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.99), rgba(246, 243, 238, 0.95)) !important;
}

.home-page .environment-section .wrap {
  padding-top: 30px;
  padding-bottom: 30px;
  background: linear-gradient(135deg, rgba(97, 122, 82, 0.96), rgba(71, 94, 58, 0.99)) !important;
}

.home-page .programs-section .wrap {
  padding-top: 34px;
  padding-bottom: 38px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.99), rgba(247, 244, 239, 0.95)) !important;
}

.home-page .why-choose-section .wrap {
  padding-top: 34px;
  padding-bottom: 34px;
  background: linear-gradient(135deg, rgba(248, 244, 238, 0.98), rgba(255, 255, 255, 0.98)) !important;
}

.home-page .feedback-section .wrap {
  padding-top: 48px;
  padding-bottom: 52px;
  background: linear-gradient(155deg, #eef4ea 0%, #f7f2ea 55%, #f0ebe0 100%) !important;
}

.home-page .gallery-section .wrap {
  padding-top: 28px;
  padding-bottom: 34px;
  background: rgba(255, 255, 255, 0.99) !important;
}

.home-page .ready-cta-section .wrap {
  background: transparent;
}

.banded-page .content > .wrap,
.banded-page .ready-cta-section .wrap {
  width: 100%;
  max-width: none;
  margin: 0;
  gap: 0;
}

.banded-page .content > .wrap > .lede,
.banded-page .content > .wrap > h2,
.banded-page .content > .wrap > h1,
.banded-page .content > .wrap > .split,
.banded-page .content > .wrap > .grid,
.banded-page .content > .wrap > .callout,
.banded-page .content > .wrap > .image-band,
.banded-page .content > .wrap > ul,
.banded-page .content > .wrap > .faq,
.banded-page .content > .wrap > form,
.banded-page .content > .wrap > .media,
.banded-page .content > .wrap > .figure,
.banded-page .content > .wrap > .enrollment-intro,
.banded-page .content > .wrap > .enrollment-steps-lead,
.banded-page .content > .wrap > .enrollment-steps-grid {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-left: max(20px, calc((100vw - var(--max)) / 2));
  padding-right: max(20px, calc((100vw - var(--max)) / 2));
  border-radius: 0;
  border-left: 0;
  border-right: 0;
}

.banded-page .content > .wrap > .split,
.banded-page .content > .wrap > .grid,
.banded-page .content > .wrap > .callout,
.banded-page .content > .wrap > .image-band,
.banded-page .content > .wrap > ul,
.banded-page .content > .wrap > .faq,
.banded-page .content > .wrap > form,
.banded-page .content > .wrap > .media,
.banded-page .content > .wrap > .figure,
.banded-page .content > .wrap > .enrollment-intro,
.banded-page .content > .wrap > .enrollment-steps-grid {
  padding-top: 28px;
  padding-bottom: 28px;
}

.banded-page .content > .wrap > .lede,
.banded-page .content > .wrap > h2,
.banded-page .content > .wrap > h1 {
  padding-top: 22px;
  padding-bottom: 12px;
}

.banded-page .content > .wrap > h2 {
  border-top: 0;
  margin-top: 0;
}

.banded-page .content > .wrap > .split,
.banded-page .content > .wrap > .faq,
.banded-page .content > .wrap > form,
.banded-page .content > .wrap > .enrollment-intro,
.banded-page .content > .wrap > .enrollment-steps-grid {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(242, 233, 224, 0.95));
}

.content > .wrap > :first-child {
  margin-top: 0 !important;
}

.banded-page .content > .wrap > :first-child {
  padding-top: 0 !important;
}

.banded-page .content > .wrap > .grid,
.banded-page .content > .wrap > .image-band,
.banded-page .content > .wrap > .media,
.banded-page .content > .wrap > .figure {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(244, 237, 229, 0.92));
}

.banded-page .content > .wrap > .callout,
.banded-page .content > .wrap > .enrollment-steps-lead {
  background: linear-gradient(135deg, rgba(243, 234, 225, 0.96), rgba(255, 255, 255, 0.94));
}

.banded-page .content > .wrap > .split:nth-of-type(even),
.banded-page .content > .wrap > .grid:nth-of-type(even),
.banded-page .content > .wrap > .faq:nth-of-type(even),
.banded-page .content > .wrap > form:nth-of-type(even),
.banded-page .content > .wrap > .enrollment-intro:nth-of-type(even),
.banded-page .content > .wrap > .enrollment-steps-grid:nth-of-type(even) {
  background: linear-gradient(135deg, rgba(97, 122, 82, 0.88), rgba(71, 94, 58, 0.94));
}

.banded-page .content > .wrap > .split:nth-of-type(even) .section-copy h2,
.banded-page .content > .wrap > .split:nth-of-type(even) .section-copy p,
.banded-page .content > .wrap > .split:nth-of-type(even) .badge,
.banded-page .content > .wrap > .split:nth-of-type(even) .eyebrow,
.banded-page .content > .wrap > .grid:nth-of-type(even) h3,
.banded-page .content > .wrap > .grid:nth-of-type(even) p,
.banded-page .content > .wrap > .faq:nth-of-type(even) summary,
.banded-page .content > .wrap > .faq:nth-of-type(even) p,
.banded-page .content > .wrap > .enrollment-steps-grid:nth-of-type(even) h3,
.banded-page .content > .wrap > .enrollment-steps-grid:nth-of-type(even) p {
  color: #f2e8d6;
}

.banded-page .content > .wrap > .split:nth-of-type(even) .btn,
.banded-page .content > .wrap > .grid:nth-of-type(even) .btn,
.banded-page .content > .wrap > .faq:nth-of-type(even) .btn,
.banded-page .content > .wrap > .enrollment-steps-grid:nth-of-type(even) .btn {
  background: rgba(255, 249, 240, 0.94);
  color: #203126;
}

.banded-page .content > .wrap > .split:nth-of-type(even) .btn.primary,
.banded-page .content > .wrap > .grid:nth-of-type(even) .btn.primary,
.banded-page .content > .wrap > .faq:nth-of-type(even) .btn.primary,
.banded-page .content > .wrap > .enrollment-steps-grid:nth-of-type(even) .btn.primary {
  background: #f7f4ef;
  color: #203126;
}

.banded-page .ready-cta-section {
  padding-top: 60px;
}

.banded-page .ready-cta-section .wrap {
  padding-left: max(20px, calc((100vw - var(--max)) / 2));
  padding-right: max(20px, calc((100vw - var(--max)) / 2));
}

.split {
  display: grid;
  gap: 22px;
  align-items: center;
}

@media (min-width: 900px) {
  .split {
    grid-template-columns: 1fr 1fr;
  }

  .split.reverse > :first-child {
    order: 2;
  }

  .split.reverse > :last-child {
    order: 1;
  }
}

.section-copy h2 {
  margin: 0 0 10px;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.16;
}

.section-copy p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
}

.section-copy .actions {
  margin-top: 16px;
}

.philosophy-section .wrap::after,
.environment-section .wrap::after,
.why-choose-section .wrap::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.3;
  filter: blur(2px);
}

.philosophy-section .wrap {
  padding: 30px;
  border-radius: 46px 18px 46px 18px;
  border: 1px solid rgba(67, 57, 43, 0.08);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 30px rgba(76, 62, 43, 0.08);
}

.philosophy-section .wrap::after {
  width: 220px;
  height: 220px;
  right: -70px;
  top: -70px;
  background: radial-gradient(circle, rgba(129, 164, 119, 0.22), rgba(129, 164, 119, 0));
}

.philosophy-section .showcase-photo {
  border-radius: 48px 18px 48px 18px;
  transform: rotate(-1.6deg);
}

.philosophy-section .showcase-photo img {
  object-position: center 38%;
}

.environment-section .wrap {
  padding: 30px;
  border-radius: 18px 46px 18px 46px;
  border: 1px solid rgba(58, 75, 34, 0.22);
  background: linear-gradient(135deg, rgba(89, 108, 53, 0.92), rgba(71, 89, 41, 0.96));
  box-shadow: 0 14px 30px rgba(52, 61, 32, 0.18);
}

.environment-section .wrap::after {
  width: 260px;
  height: 260px;
  left: -80px;
  bottom: -90px;
  background: radial-gradient(circle, rgba(255, 249, 240, 0.22), rgba(255, 249, 240, 0));
}

.environment-section .showcase-photo {
  border-radius: 18px 54px 18px 54px;
  transform: rotate(1.2deg);
}

.environment-section .stats-grid .card:nth-child(2) {
  transform: translateY(16px);
}

.environment-section .stats-grid .card:nth-child(3) {
  transform: translateY(6px);
}

.stats-grid {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

@media (min-width: 700px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.age-grid {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

@media (min-width: 800px) {
  .age-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.testimonial {
  padding: 32px;
  border-radius: 30px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  background: linear-gradient(135deg, rgba(184, 135, 79, 0.14), rgba(255, 250, 243, 0.92), rgba(83, 115, 77, 0.12));
  box-shadow: var(--shadow);
}

.testimonial blockquote {
  margin: 0;
  font-family: Fraunces, ui-serif, Georgia, serif;
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1.25;
}

.testimonial cite {
  display: block;
  margin-top: 14px;
  font-style: normal;
  font-weight: 700;
  color: var(--text);
}

.feedback-section .wrap {
  padding: 52px 40px 56px;
  border-radius: 28px;
  background: linear-gradient(155deg, #eef4ea 0%, #f7f2ea 55%, #f0ebe0 100%);
  border: 1px solid rgba(83,115,77,0.12);
  box-shadow: 0 16px 48px rgba(76, 62, 43,0.1);
  position: relative;
  overflow: hidden;
}
.feedback-section .wrap::before {
  content: '\201C';
  position: absolute;
  top: -20px;
  left: 24px;
  font-family: Fraunces, ui-serif, Georgia, serif;
  font-size: 220px;
  color: rgba(83,115,77,0.07);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.review-slider {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  margin-top: 6px;
}

.review-viewport {
  position: relative;
  min-height: 240px;
}

.review-card {
  display: none;
  padding: 28px 30px;
  border-radius: 24px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  background: linear-gradient(135deg, rgba(184, 169, 150, 0.08), rgba(255, 255, 255, 0.99), rgba(83, 115, 77, 0.1));
  box-shadow: var(--shadow);
  text-align: center;
  transition: box-shadow 200ms ease;
}

.review-card.is-active {
  display: block;
}

.review-slider:hover .review-card.is-active {
  box-shadow: 0 18px 34px rgba(76, 62, 43, 0.14);
}

.review-card p {
  margin: 0;
  font-family: Fraunces, ui-serif, Georgia, serif;
  font-size: clamp(13px, 1.1vw, 15px);
  line-height: 1.5;
  color: #5b3d24;
}

.review-card span {
  display: block;
  margin-top: 14px;
  font-weight: 700;
  font-size: 12px;
  color: #6c4a2c;
}

.review-arrow {
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 999px;
  background: rgba(83, 115, 77, 0.92);
  color: #fff8ef;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  position: relative;
  z-index: 2;
  box-shadow: 0 12px 22px rgba(76, 62, 43, 0.18);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.review-arrow:hover {
  transform: translateY(-2px);
  background: rgba(66, 92, 60, 0.98);
  box-shadow: 0 16px 26px rgba(76, 62, 43, 0.22);
}

.review-arrow:focus-visible {
  outline: 3px solid rgba(184, 135, 79, 0.35);
  outline-offset: 3px;
}

@media (max-width: 760px) {
  .review-slider {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .review-viewport {
    order: 1;
    min-height: 280px;
  }

  .review-arrow {
    width: 48px;
    height: 48px;
    font-size: 28px;
  }

  .review-arrow--prev {
    order: 2;
    justify-self: start;
  }

  .review-arrow--next {
    order: 3;
    justify-self: end;
    margin-top: -62px;
  }
}

@media (min-width: 900px) {
  .mosaic {
    grid-template-rows: 190px 190px;
  }
}

.mosaic a {
  display: block;
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: #fff;
}

.mosaic a:first-child {
  grid-row: 1 / -1;
}

.mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card .meta {
  padding: 14px 14px 16px;
}

.hero-card .meta strong {
  display: block;
}

.hero-card .meta span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  margin-top: 2px;
}

.section {
  padding: 26px 0;
}

.section h2 {
  margin: 0 0 12px;
  font-size: 22px;
}

.grid {
  display: grid;
  gap: 14px;
}

@media (min-width: 800px) {
  .grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }

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

.card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(243, 234, 225, 0.92));
  transition: transform 200ms var(--ease-spring), box-shadow 200ms ease, border-color 200ms ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(76, 62, 43, 0.12);
}

.age-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
  overflow: hidden;
  padding: 0;
}

.programs-section .wrap {
  padding: 8px 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.programs-section .age-grid {
  align-items: start;
}

.age-card-link img {
  display: block;
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.age-card-link h3,
.age-card-link p {
  padding-left: 18px;
  padding-right: 18px;
  text-decoration: none;
}

.age-card-link h3 {
  margin-top: 18px;
}

.programs-section .age-grid {
  margin-top: 0;
}

.programs-section .age-card-link {
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(247, 243, 238, 0.95));
}

.programs-section .age-card-link:nth-child(1) {
  border-radius: 34px 18px 28px 18px;
}

.programs-section .age-card-link:nth-child(2) {
  border-radius: 18px 34px 18px 30px;
  transform: translateY(18px);
}

.programs-section .age-card-link:nth-child(3) {
  border-radius: 28px;
}

.programs-section .age-card-link:nth-child(4) {
  border-radius: 20px 34px 20px 34px;
  transform: translateY(22px);
}

.programs-section .age-card-link h3 {
  font-size: clamp(20px, 2vw, 26px);
}

.programs-section .age-card-link p {
  font-size: 15px;
  padding-bottom: 24px;
}

.age-card-link:hover,
.age-card-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(83, 115, 77, 0.35);
  box-shadow: 0 10px 24px rgba(76, 62, 43, 0.12);
}

.card h3 {
  margin: 0 0 6px;
  font-size: 16px;
}

.curriculum-heading {
  text-align: center;
  font-size: clamp(26px, 2.8vw, 38px);
  color: #4a2e10;
  margin-bottom: 4px !important;
}

.curriculum-heading::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, #c07830, #e8b46a);
  margin: 12px auto 0;
}

.curriculum-card {
  text-align: center;
  border-radius: 20px;
  border: 2px solid #d9c9a8;
  background: #fdf8f0;
  padding: 24px 20px 20px;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.curriculum-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 30px rgba(120, 80, 20, 0.13);
}

.curriculum-card h3 {
  color: #3b2a0e !important;
  font-size: 16px;
  margin-bottom: 8px;
}

.curriculum-card p {
  color: #4a3520 !important;
  font-size: 14px;
  line-height: 1.6;
}

.curriculum-icon {
  width: 86px;
  height: 86px;
  margin: 0 auto 16px;
  display: block;
}

.curriculum-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  padding-bottom: 18px;
}

.card ul {
  margin: 10px 0 0 18px;
  color: var(--muted);
  font-size: 14px;
}

.difference-grid {
  margin-top: 26px;
  gap: 22px;
}

.why-choose-section .wrap {
  padding: 34px 30px;
  border-radius: 26px 52px 26px 52px;
  background: linear-gradient(135deg, rgba(248, 244, 238, 0.98), rgba(255, 255, 255, 0.96));
  border: 1px solid rgba(67, 57, 43, 0.08);
  box-shadow: 0 12px 28px rgba(76, 62, 43, 0.08);
}

.why-choose-section .wrap::after {
  width: 240px;
  height: 240px;
  right: -90px;
  bottom: -100px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
}

.difference-card {
  padding: 30px 28px;
  min-height: 100%;
  text-align: left;
  border-radius: 28px;
  box-shadow: 0 10px 28px rgba(76, 62, 43, 0.08);
  position: relative;
  transition: transform 220ms var(--ease-spring), box-shadow 220ms ease;
}

.difference-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 6px;
  border-radius: 28px 28px 0 0;
  background: linear-gradient(90deg, var(--brand-2), var(--brand));
}

.difference-card:nth-child(2) {
  transform: translateY(16px);
}

.difference-card:nth-child(3) {
  transform: translateY(6px);
}

.difference-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(76, 62, 43, 0.14);
}

.difference-icon {
  width: 78px;
  height: 78px;
  margin-bottom: 18px;
  display: inline-block;
}

.difference-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.difference-card h3 {
  font-size: clamp(16px, 1.25vw, 19px);
  margin-bottom: 12px;
}

.difference-card p {
  font-size: 13.5px;
  line-height: 1.62;
}

.content {
  padding: 0 0 42px;
}

.content .wrap {
  display: grid;
  gap: 22px;
}

.content .lede {
  font-size: 17px;
  color: var(--muted);
  margin: 0 0 18px;
}

.contact-tagline {
  max-width: 900px;
  margin: 0 auto 24px;
  padding: 14px 22px;
  border: 1px solid rgba(75, 94, 55, 0.16);
  border-radius: 999px;
  background: rgba(248, 243, 232, 0.92);
  color: #314227;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.45rem, 2vw, 2.2rem);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: 0.01em;
  box-shadow: 0 18px 38px rgba(73, 57, 36, 0.08);
}

.content h1 {
  margin: 0 0 10px;
  font-size: 34px;
  line-height: 1.15;
}

.content h2 {
  margin: 30px 0 0;
  font-size: 22px;
  padding-top: 24px;
  border-top: 1px solid rgba(83, 115, 77, 0.2);
}

.content .wrap > .figure,
.content .wrap > .split,
.content .wrap > .grid,
.content .wrap > .callout,
.content .wrap > .image-band,
.content .wrap > ul {
  padding: 22px;
  border-radius: 26px;
  border: 1px solid rgba(67, 57, 43, 0.1);
  box-shadow: 0 10px 28px rgba(76, 62, 43, 0.08);
}

.content .wrap > .split,
.content .wrap > ul {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(242, 233, 224, 0.95));
}

.content .wrap > .figure,
.content .wrap > .grid,
.content .wrap > .image-band {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(244, 237, 229, 0.92));
}

.content .wrap > .callout {
  background: linear-gradient(135deg, rgba(83, 115, 77, 0.12), rgba(243, 234, 225, 0.9));
}

.program-tagline {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
  min-height: 140px;
  padding: 18px 22px !important;
  border-radius: 32px !important;
  background: linear-gradient(135deg, rgba(255, 249, 240, 0.96), rgba(247, 238, 223, 0.92)) !important;
}

.program-tagline::before,
.program-tagline::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.program-tagline::before {
  width: 160px;
  height: 160px;
  left: -40px;
  top: -46px;
  background: radial-gradient(circle, rgba(215, 178, 124, 0.24), rgba(215, 178, 124, 0));
}

.program-tagline::after {
  width: 190px;
  height: 190px;
  right: -64px;
  bottom: -82px;
  background: radial-gradient(circle, rgba(88, 113, 149, 0.16), rgba(88, 113, 149, 0));
}

.program-tagline p {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  font-family: Fraunces, ui-serif, Georgia, serif;
  font-size: clamp(17px, 1.55vw, 23px);
  line-height: 1.35;
  color: #3f5138;
}

.program-age-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 40px;
  justify-content: center;
}

.program-age-nav a {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 999px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  color: var(--brand);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
  letter-spacing: 0.02em;
}

.program-age-nav a:hover {
  background: var(--brand);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(83,115,77,0.18);
}

.program-feature {
  align-items: center;
}

@media (min-width: 900px) {
  .program-feature {
    grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  }
}

.program-kicker {
  display: inline-block;
  margin-bottom: 10px;
  font-family: Fraunces, ui-serif, Georgia, serif;
  font-size: clamp(15px, 1.4vw, 20px);
  line-height: 1.08;
  color: #b8793a;
  letter-spacing: 0.02em;
}

.program-feature .section-copy h2 {
  margin: 0 0 16px;
  border-top: 0;
  padding-top: 0;
  font-size: clamp(19px, 1.75vw, 28px);
  line-height: 1.18;
}

.program-classroom {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin: -2px 0 18px !important;
  padding: 8px 16px 8px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #fff5e6, #fde8c8);
  border: 1.5px solid rgba(184, 121, 58, 0.30);
  color: #7a4a1e !important;
  font-size: 13px !important;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 12px rgba(184, 121, 58, 0.12);
}

.program-classroom::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50% 45% 55% 50%;
  background: linear-gradient(135deg, #d7b27c, #b8874f);
  box-shadow: 0 0 0 4px rgba(215, 178, 124, 0.18);
  flex: 0 0 auto;
}

.program-feature .section-copy p {
  max-width: 780px;
  font-size: 15.5px;
  line-height: 1.65;
}

.program-feature-photo {
  position: relative;
  max-width: 560px;
  width: 100%;
  justify-self: end;
  border-radius: 38px 38px 110px 38px;
  transform: rotate(-1.5deg);
}

.program-feature-photo::before {
  content: "";
  position: absolute;
  inset: -14px 18px 18px -14px;
  border-radius: 46px 46px 120px 46px;
  background: linear-gradient(135deg, rgba(215, 178, 124, 0.22), rgba(88, 113, 149, 0.14));
  z-index: -1;
}

.program-feature-photo img {
  height: 520px;
  object-position: center;
}

.program-feature-photo--toddler {
  border-radius: 110px 34px 34px 34px;
  transform: rotate(1.4deg);
}

.program-feature-photo--toddler::before {
  inset: 16px -12px -16px 18px;
  border-radius: 120px 42px 42px 42px;
  background: linear-gradient(135deg, rgba(88, 113, 149, 0.2), rgba(215, 178, 124, 0.16));
}

.program-feature-photo--preschoolers {
  border-radius: 34px 110px 34px 34px;
  transform: rotate(-1deg);
}

.program-feature-photo--preschoolers::before {
  inset: -12px 18px 16px -12px;
  border-radius: 42px 120px 42px 42px;
  background: linear-gradient(135deg, rgba(215, 178, 124, 0.22), rgba(126, 149, 110, 0.14));
}

.program-feature-photo--tk-prek {
  border-radius: 34px 34px 110px 34px;
  transform: rotate(1deg);
}

.program-feature-photo--tk-prek::before {
  inset: 14px 18px -14px -10px;
  border-radius: 42px 42px 120px 42px;
  background: linear-gradient(135deg, rgba(126, 149, 110, 0.2), rgba(88, 113, 149, 0.14));
}

.content ul {
  margin: 10px 0 0 18px;
}

.enrollment-page .wrap {
  gap: 32px;
}

.enrollment-intro {
  display: grid;
  gap: 32px;
  align-items: start;
  padding: 28px 0 !important;
}

.content > .wrap > .enrollment-intro {
  margin-top: 40px !important;
}

@media (min-width: 980px) {
  .enrollment-intro {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  }
}

.enrollment-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  background: rgba(83,115,77,0.10);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.enrollment-intro-copy h2 {
  margin: 0 0 10px;
  padding-top: 0;
  border-top: 0;
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.12;
  color: var(--text);
}

.enrollment-intro-text {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
}

.enrollment-tour-highlights {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  padding: 14px 16px;
  background: var(--surface);
  border-radius: 14px;
  border: 1px solid var(--border);
}

.enrollment-highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.4;
}

.enrollment-highlight-icon {
  font-size: 16px;
  flex-shrink: 0;
}

.enrollment-actions {
  margin-top: 0;
  gap: 8px;
  flex-wrap: wrap;
}

.enrollment-actions .btn {
  font-size: 14px;
  padding: 10px 18px;
}

.enrollment-sketch-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 24px 20px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow);
  gap: 10px;
}

.enrollment-sketch-wrap img {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
  mix-blend-mode: multiply;
}

.enrollment-sketch-caption {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-align: center;
}

.enrollment-steps-lead {
  position: relative;
  overflow: hidden;
  padding: 36px 28px;
  border-radius: 0;
  background: linear-gradient(135deg, rgba(184, 135, 79, 0.92), rgba(215, 178, 124, 0.9)) !important;
  text-align: center;
}

.enrollment-steps-lead::before,
.enrollment-steps-lead::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.enrollment-steps-lead::before {
  width: 220px;
  height: 220px;
  left: -60px;
  top: -90px;
  background: radial-gradient(circle, rgba(255, 249, 240, 0.22), rgba(255, 249, 240, 0));
}

.enrollment-steps-lead::after {
  width: 220px;
  height: 220px;
  right: -70px;
  bottom: -110px;
  background: radial-gradient(circle, rgba(255, 249, 240, 0.16), rgba(255, 249, 240, 0));
}

.enrollment-steps-lead h2 {
  margin: 0;
  padding-top: 0;
  border-top: 0;
  color: #fff9f0;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.12;
}

.enrollment-steps-grid {
  display: grid;
  gap: 20px;
  padding: 20px 0 4px;
}

@media (min-width: 980px) {
  .enrollment-steps-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
  }
}

.enrollment-step {
  text-align: center;
  padding: 24px 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.enrollment-step-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(184,135,79,0.92), rgba(215,178,124,0.9));
  color: #fff9f0;
  font-family: Fraunces, Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
  box-shadow: 0 4px 14px rgba(184,135,79,0.28);
}

.enrollment-step h3 {
  margin: 0;
  font-family: Manrope, ui-sans-serif, system-ui, sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--brand-3);
  text-transform: uppercase;
}

.enrollment-step p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: #404946;
}

.figure {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: #fff;
}

.callout {
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid rgba(83, 115, 77, 0.22);
  background: linear-gradient(135deg, rgba(83, 115, 77, 0.12), rgba(184, 135, 79, 0.12));
  padding: 16px;
}

.callout h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.mission-callout {
  text-align: center;
  padding: 28px 26px;
}

.mission-callout h3 {
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.15;
  margin-bottom: 10px;
}

.mission-callout p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 16px;
}

.about-flow {
  display: grid;
  gap: 22px;
}

.about-flow .section-copy,
.about-flow .section-copy h2,
.about-flow .section-copy p {
  text-align: left;
}

.about-flow .section-copy .actions {
  justify-content: flex-start;
}

.about-flow .highlight-list {
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-flow .highlight-list li {
  display: flex;
  align-items: flex-start;
  font-size: 15.5px;
  line-height: 1.55;
}

/* ── Learning Pillars Strip ── */
.pillars-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
}

.pillar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-right: 1px solid var(--border);
}

.pillar:last-child { border-right: none; }
.pillar-icon { font-size: 20px; }

.pillar-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

@media (max-width: 700px) {
  .pillar { border-right: none; padding: 6px 12px; }
  .pillar-label { font-size: 12px; }
}

/* ── About Page ── */
.about-stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: linear-gradient(135deg, var(--brand), #3d5e38);
  padding: 24px 32px;
}

@media (max-width: 700px) {
  .about-stats-bar { grid-template-columns: repeat(2, 1fr); gap: 16px; padding: 20px; }
}

.about-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  padding: 0 12px;
  border-right: 1px solid rgba(255,255,255,0.18);
}

.about-stat:last-child { border-right: none; }

.about-stat-num {
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 700;
  color: #fff;
}

.about-stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
}

.about-mission-quote {
  margin: 14px 0 0;
  padding: 16px 20px;
  border-left: 4px solid rgba(83,115,77,0.4);
  background: rgba(83,115,77,0.06);
  border-radius: 0 12px 12px 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  font-style: italic;
}

.hl-icon {
  margin-right: 10px;
  font-size: 16px;
}

.about-page {
  padding: 0 0 38px;
}

/* ── Contact Page ── */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  padding: 36px 0 28px;
  margin-top: 40px !important;
}

@media (max-width: 860px) {
  .contact-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .contact-cards {
    grid-template-columns: 1fr;
  }
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  padding: 20px 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.contact-card-icon {
  font-size: 26px;
  margin-bottom: 2px;
}

.contact-info-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--brand);
}

.contact-info-value {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}

.contact-info-link {
  color: var(--brand-3);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 600;
}

.contact-info-link:hover {
  text-decoration: underline;
}

.contact-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 40px;
}

@media (max-width: 760px) {
  .contact-bottom {
    grid-template-columns: 1fr;
  }
}

.content > .wrap > .contact-cards {
  margin-top: 44px !important;
}

.contact-map-wrap {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  min-height: 320px;
}

.contact-form-panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 28px;
  box-shadow: var(--shadow);
  margin: 0;
}

.contact-form-panel h2 {
  margin: 0 0 8px;
  padding: 0;
  border: none;
  font-size: clamp(20px, 2.2vw, 26px);
  color: var(--text);
}

.contact-form-panel > p {
  margin: 0 0 24px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

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

.contact-page .page-hero,
.about-page .page-hero,
.teachers-page .page-hero,
.enrollment-page-body .page-hero,
.schedule-page .page-hero,
.menu-page .page-hero {
  min-height: 430px;
  max-height: 430px;
  margin-bottom: 0;
}

.contact-page .page-hero img,
.about-page .page-hero img,
.teachers-page .page-hero img,
.enrollment-page-body .page-hero img,
.schedule-page .page-hero img,
.menu-page .page-hero img {
  min-height: 430px;
  max-height: 430px;
}

.banded-page .page-hero {
  min-height: 430px;
  max-height: 430px;
}

.banded-page .page-hero img {
  min-height: 430px;
  max-height: 430px;
  object-fit: cover;
  object-position: center center;
}

.about-page .about-building-strip {
  margin: 0 !important;
  padding: 0 !important;
  line-height: 0;
}

.about-page .about-building-strip img {
  width: 100%;
  height: auto;
  display: block;
}

.about-intro-card {
  max-width: 840px;
  margin: 0 auto 12px;
  padding: 26px 28px;
  text-align: center;
  border-radius: 30px;
  border: 1px solid rgba(67, 57, 43, 0.08);
  background: rgba(255, 249, 240, 0.9);
  box-shadow: 0 10px 28px rgba(76, 62, 43, 0.08);
}

.about-intro-card .badge {
  margin-bottom: 12px;
}

.about-page > .wrap > .about-intro-card > .lede {
  max-width: 720px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.65;
}

.about-page .about-flow {
  gap: 0;
}

.showcase-photo--families img {
  object-position: center 20%;
  transform: scale(1.12);
  transform-origin: center top;
}

.about-page .about-flow > .split {
  padding: 48px 40px;
  border-radius: 0;
  border: 1px solid rgba(67, 57, 43, 0.1);
  border-left: 0;
  border-right: 0;
  box-shadow: 0 10px 28px rgba(76, 62, 43, 0.08);
  align-items: stretch;
  gap: 22px;
  background: rgba(255, 249, 240, 0.9);
}

@media (min-width: 900px) {
  .about-page .about-flow > .split:not(.mission-panel) {
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
    min-height: 420px;
  }
}

.about-page .about-flow > .split:nth-child(even) {
  background: linear-gradient(135deg, rgba(91, 108, 58, 0.94), rgba(69, 86, 42, 0.96));
}

.about-page .about-flow .section-copy {
  max-width: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.about-page .about-flow > .mission-panel {
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  align-items: center;
  gap: 30px;
  padding: 22px 30px 28px;
  background: rgba(255, 249, 240, 0.9);
}

.about-page .mission-panel .mission-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-page .mission-panel .mission-copy--primary {
  max-width: 760px;
}

.about-page .mission-panel .eyebrow {
  align-self: center;
  margin: 0 0 20px;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
  color: #364c63;
  font-size: 13px;
  letter-spacing: 0.16em;
}

.about-page .mission-panel .mission-copy--primary h2 {
  margin: 0;
  color: #d8c08b;
  font-size: clamp(22px, 2.15vw, 31px);
  line-height: 1.14;
  text-align: left;
}

.about-page .mission-panel .mission-copy--secondary {
  max-width: 620px;
  padding-top: 0;
}

.about-page .mission-panel .mission-copy--secondary p {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.62;
  color: #687178;
  text-align: left;
}

.about-page .mission-panel .mission-copy--secondary p:last-child {
  margin-bottom: 0;
}

.about-page .about-flow .section-copy h2 {
  margin: 0 0 12px;
  padding-top: 0;
  border-top: 0;
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.16;
}

.about-page .about-flow .section-copy p {
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 1.62;
}

.about-page .about-flow .section-copy .actions {
  margin-top: auto;
  padding-top: 10px;
}

.about-page .about-flow .eyebrow {
  align-self: center;
  margin: 0 auto 16px;
  padding: 10px 18px;
  border: 1px solid rgba(32, 49, 38, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  text-align: center;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: #203126;
}

.about-page .about-flow .highlight-list {
  display: grid;
  gap: 10px;
  margin-top: 6px;
}

.about-page .about-flow .highlight-list li {
  padding: 11px 13px;
  border: 1px solid rgba(67, 57, 43, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
  font-size: 13px;
}

.about-page .about-flow > .split:nth-child(even) .section-copy h2,
.about-page .about-flow > .split:nth-child(even) .section-copy p,
.about-page .about-flow > .split:nth-child(even) .eyebrow,
.about-page .about-flow > .split:nth-child(even) .highlight-list li {
  color: #f2e8d6;
}

.about-page .about-flow > .split:nth-child(even) .eyebrow {
  border-color: rgba(242, 232, 214, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.about-page .about-flow > .split:nth-child(even) .highlight-list li {
  border-color: rgba(242, 232, 214, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.about-page .about-flow > .split:nth-child(even) .btn,
.about-page .about-flow > .split:nth-child(even) .btn.primary {
  background: #efe9dc;
  color: #203126;
  border-color: transparent;
}

.about-page .showcase-photo {
  display: block;
  height: 100%;
  min-height: 100%;
  max-width: 400px;
  min-width: 400px;
  width: 100%;
  justify-self: center;
  align-self: stretch;
  border-radius: 24px;
  overflow: hidden;
}

.about-page .showcase-photo img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

.about-page .ready-cta-section {
  padding-top: 24px;
}

@media (max-width: 699px) {
  .about-page .about-flow > .mission-panel {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px 20px;
  }

  .about-page .mission-panel .mission-copy--primary h2 {
    font-size: clamp(28px, 10vw, 42px);
  }

  .about-page .mission-panel .mission-copy--secondary {
    padding-top: 0;
  }

  .page-hero {
    min-height: 440px;
    max-height: 440px;
  }

  .page-hero img {
    min-height: 440px;
    max-height: 440px;
  }

  .home-section .wrap,
  .content .wrap > .figure,
  .content .wrap > .split,
  .content .wrap > .grid,
  .content .wrap > .callout,
  .content .wrap > .image-band,
  .content .wrap > ul {
    padding: 18px;
  }

  .about-page .about-flow > .split {
    padding: 20px;
    gap: 16px;
  }

  .about-intro-card {
    padding: 22px 18px;
  }

  .about-page .showcase-photo img {
    min-height: 280px;
  }

  .about-page .showcase-photo {
    min-width: 0;
    max-width: none;
    min-height: 260px;
  }
}

.callout p {
  margin: 0;
  color: var(--muted);
}

.callout ul {
  margin: 10px 0 0 18px;
  color: var(--muted);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0f766e;
}

.home-section .wrap .btn,
.content .wrap > .split .btn,
.content .wrap > .grid .btn {
  background: rgba(255, 249, 240, 0.94);
  color: #203126;
}

.home-section .wrap .btn.primary,
.content .wrap > .split .btn.primary,
.content .wrap > .grid .btn.primary {
  background: var(--brand);
  color: #fffaf0;
}

.environment-section .btn,
.about-page .about-flow > .split:nth-child(even) .btn {
  background: rgba(255, 249, 240, 0.94);
  color: #203126;
}

.environment-section .btn.primary,
.about-page .about-flow > .split:nth-child(even) .btn.primary {
  background: #efe9dc;
  color: #203126;
}

.home-section .badge {
  border-color: rgba(239, 244, 235, 0.26);
  background: rgba(255, 249, 240, 0.14);
  color: var(--brand);
}

.highlight-list li {
  border-color: rgba(239, 244, 235, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: var(--muted);
}

.environment-section .section-copy h2,
.environment-section .section-copy p,
.environment-section .badge,
.environment-section .card h3,
.environment-section .card p,
.about-page .about-flow > .split:nth-child(even) .section-copy h2,
.about-page .about-flow > .split:nth-child(even) .section-copy p,
.about-page .about-flow > .split:nth-child(even) .eyebrow,
.content .wrap > ul li {
  color: #f2e8d6;
}

.home-section .review-card p {
  color: #5b3d24;
}

.home-section .review-card span {
  color: #6c4a2c;
}

.stats-grid .card h3,
.stats-grid .card p {
  color: #203126 !important;
}

.programs-section .age-card-link h3,
.programs-section .age-card-link p {
  color: #203126 !important;
}

.environment-section .badge,
.about-page .about-flow > .split:nth-child(even) .eyebrow {
  border-color: rgba(242, 232, 214, 0.26);
}

.teacher-card {
  height: 100%;
}

.teachers-page {
  padding: 0 0 38px;
}

.teachers-page > .wrap {
  padding-top: 32px;
  gap: 22px;
}

.teachers-page .teacher-tagline {
  max-width: 920px;
  margin: 0 auto 10px;
  padding: 18px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 249, 240, 0.94), rgba(247, 238, 223, 0.9));
  border: 1px solid rgba(67, 57, 43, 0.08);
  box-shadow: 0 8px 22px rgba(76, 62, 43, 0.07);
  text-align: center;
  font-family: Fraunces, ui-serif, Georgia, serif;
  font-size: clamp(17px, 1.8vw, 24px);
  line-height: 1.35;
  color: #30412c;
}

.teachers-page > .wrap > .lede {
  max-width: 760px;
  margin: 0 auto 8px;
  text-align: center;
  line-height: 1.7;
}

.teachers-page .content h2,
.teachers-page .wrap > h2 {
  position: relative;
  width: fit-content;
  margin: 22px auto 0;
  padding: 16px 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 249, 240, 0.96), rgba(247, 238, 223, 0.92));
  border: 1px solid rgba(67, 57, 43, 0.1);
  box-shadow: 0 8px 22px rgba(76, 62, 43, 0.08);
  font-size: clamp(24px, 2.3vw, 30px);
  line-height: 1.05;
  isolation: isolate;
}

.teachers-page .content h2::before,
.teachers-page .wrap > h2::before,
.teachers-page .content h2::after,
.teachers-page .wrap > h2::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 22px;
  height: 22px;
  border-radius: 8px;
  z-index: -1;
  transform: translateY(-50%) rotate(18deg);
}

.teachers-page .content h2::before,
.teachers-page .wrap > h2::before {
  left: -12px;
  background: linear-gradient(135deg, rgba(215, 178, 124, 0.9), rgba(215, 178, 124, 0.35));
  box-shadow: 0 8px 14px rgba(184, 135, 79, 0.22);
}

.teachers-page .content h2::after,
.teachers-page .wrap > h2::after {
  right: -12px;
  background: linear-gradient(135deg, rgba(88, 113, 149, 0.9), rgba(88, 113, 149, 0.32));
  box-shadow: 0 8px 14px rgba(88, 113, 149, 0.2);
}

.teachers-page .wrap > .lede + .split,
.teachers-page .teacher-leadership {
  margin-top: 6px;
}

.teacher-leadership {
  align-items: start;
  padding: 28px;
  border-radius: 32px;
  border: 1px solid rgba(67, 57, 43, 0.1);
  box-shadow: 0 10px 28px rgba(76, 62, 43, 0.08);
  background: rgba(255, 249, 240, 0.9);
}

.teacher-leadership .section-copy {
  max-width: 680px;
}

.teacher-leadership .showcase-photo {
  max-width: 520px;
  justify-self: center;
}

.teacher-leadership .section-copy h2 {
  margin-top: 6px;
  padding-top: 0;
  border-top: 0;
}

.teachers-page .wrap > h2 + .lede {
  position: relative;
  width: fit-content;
  margin: 10px auto 4px;
  padding: 11px 20px 11px 42px;
  border-radius: 999px;
  background: rgba(83, 115, 77, 0.12);
  border: 1px solid rgba(83, 115, 77, 0.18);
  color: #39553a;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 18px rgba(76, 62, 43, 0.06);
}

.teachers-page .wrap > h2 + .lede::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #d7b27c, #b8874f);
  box-shadow: 0 0 0 4px rgba(215, 178, 124, 0.18);
}

.teacher-grid,
.trust-grid {
  margin-top: 10px;
  gap: 18px;
}

.teacher-grid--single {
  grid-template-columns: minmax(0, 420px);
  justify-content: center;
}

.teacher-grid--single .teacher-card {
  max-width: 420px;
  margin-inline: auto;
}

.teacher-profile {
  text-align: center;
}

.teacher-profile img {
  width: min(260px, 100%);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 14px;
  margin-inline: auto;
  display: block;
}

.teacher-profile--chia img {
  object-position: center;
}

.teacher-profile h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.teacher-profile p:first-of-type,
.teacher-profile p:nth-of-type(2) {
  width: fit-content;
  margin-inline: auto;
  text-align: center;
}

.teacher-profile p:first-of-type {
  margin-top: 6px;
  padding: 7px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(88, 113, 149, 0.16), rgba(88, 113, 149, 0.08));
  color: #445c7f;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.teacher-profile p:nth-of-type(2) {
  margin-top: 8px;
  margin-bottom: 6px;
  padding: 8px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(215, 178, 124, 0.24), rgba(255, 243, 224, 0.86));
  border: 1px solid rgba(184, 135, 79, 0.16);
  color: #6b4c2a;
  font-size: 13px;
  font-weight: 800;
}

.teacher-card p + p {
  margin-top: 10px;
}

.teacher-card .meta {
  margin-top: 12px;
  font-size: 13px;
  color: var(--muted);
}

.teacher-trust-section {
  margin-top: 18px;
  padding: 30px;
  border-radius: 32px;
  background: rgba(255, 249, 240, 0.88);
  border: 1px solid rgba(67, 57, 43, 0.08);
  box-shadow: 0 10px 28px rgba(76, 62, 43, 0.07);
}

.teacher-trust-intro {
  max-width: 760px;
  margin: 0 auto 20px;
  text-align: center;
}

.teacher-trust-intro h2 {
  margin: 8px 0 10px;
}

.teacher-trust-intro p {
  margin: 0;
}

.trust-grid .teacher-card {
  padding: 26px 24px;
  text-align: left;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(67, 57, 43, 0.08);
}

.trust-icon {
  display: inline-flex;
  width: 64px;
  height: 64px;
  margin-bottom: 14px;
}

.trust-icon svg {
  width: 100%;
  height: 100%;
}

.trust-grid .teacher-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.trust-grid .teacher-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
}

@media (max-width: 699px) {
  .enrollment-intro {
    gap: 22px;
  }

  .enrollment-intro-copy h2 {
    font-size: clamp(28px, 10vw, 38px);
  }

  .enrollment-intro-text {
    font-size: 16px;
  }

  .enrollment-sketch-wrap {
    padding: 0;
  }

  .enrollment-steps-lead {
    padding: 30px 18px;
  }

  .enrollment-steps-grid {
    gap: 16px;
    padding-top: 12px;
  }

  .enrollment-step {
    padding: 6px 4px;
  }

  .program-kicker {
    font-size: clamp(22px, 8vw, 32px);
  }

  .program-feature-photo {
    max-width: 100%;
    justify-self: stretch;
    transform: none;
  }

  .program-feature-photo--toddler,
  .program-feature-photo--preschoolers,
  .program-feature-photo--tk-prek {
    transform: none;
  }

  .program-feature-photo::before {
    inset: -10px 10px 10px -10px;
  }

  .program-feature-photo img {
    height: 320px;
  }

  .teacher-leadership {
    padding: 22px;
  }

  .teacher-trust-section {
    padding: 22px;
  }

  .teacher-grid,
  .trust-grid {
    gap: 14px;
  }
}

.highlight-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.highlight-list li {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--muted);
}

.photo-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 300px);
  gap: 12px;
  overflow-x: auto;
  padding: 6px 2px 14px;
  scroll-snap-type: x mandatory;
}

.gallery-section .wrap {
  padding: 6px 0 10px;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
}

.photo-strip a {
  scroll-snap-align: start;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: #fff;
  transition: transform 220ms var(--ease-spring), box-shadow 220ms ease;
}

.photo-strip a:nth-child(4n + 1) {
  border-radius: 30px 18px 30px 18px;
}

.photo-strip a:nth-child(4n + 2) {
  border-radius: 18px 30px 18px 30px;
}

.photo-strip a:nth-child(4n + 3) {
  border-radius: 24px;
}

.photo-strip a:nth-child(4n + 4) {
  border-radius: 34px 16px 34px 16px;
}

.photo-strip a:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 34px rgba(76, 62, 43, 0.14);
}

.photo-strip img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform 500ms ease;
}

.photo-strip a:hover img {
  transform: scale(1.05);
}

.enroll-float {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 60;
}

.enroll-float a {
  box-shadow: var(--shadow);
}

@media (min-width: 900px) {
  .enroll-float {
    display: none;
  }
}

.puzzle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 260px 180px 260px 180px 260px 180px 240px;
  grid-template-areas:
    "a  a  b"
    "a  a  c"
    "d  e  e"
    "f  f  g"
    "h  i  g"
    "h  j  k"
    "l  m  m";
  gap: 8px;
}

.puzzle-item {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  background: #f0ebe4;
}

.puzzle-item:nth-child(1)  { grid-area: a; }
.puzzle-item:nth-child(2)  { grid-area: b; }
.puzzle-item:nth-child(3)  { grid-area: c; }
.puzzle-item:nth-child(4)  { grid-area: d; }
.puzzle-item:nth-child(5)  { grid-area: e; }
.puzzle-item:nth-child(6)  { grid-area: f; }
.puzzle-item:nth-child(7)  { grid-area: g; }
.puzzle-item:nth-child(8)  { grid-area: h; }
.puzzle-item:nth-child(9)  { grid-area: i; }
.puzzle-item:nth-child(10) { grid-area: j; }
.puzzle-item:nth-child(11) { grid-area: k; }
.puzzle-item:nth-child(12) { grid-area: l; }
.puzzle-item:nth-child(13) { grid-area: m; }
.puzzle-item:nth-child(14) { grid-area: n; }

.puzzle-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 400ms ease;
}

.puzzle-item:hover img {
  transform: scale(1.04);
}

@media (max-width: 700px) {
  .puzzle-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    grid-template-areas: none;
  }
  .puzzle-item:nth-child(n) { grid-area: auto; }
  .puzzle-item img { min-height: 160px; }
}

.puzzle-grid--15 {
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 340px 340px 300px 300px 300px 300px 300px;
  grid-template-areas:
    "a  a  b"
    "c  d  d"
    "e  e  f"
    "g  h  i"
    "j  j  k"
    "l  m  m"
    "n  o  o";
  gap: 8px;
}

.puzzle-grid--15 .puzzle-item:nth-child(1)  { grid-area: a; }
.puzzle-grid--15 .puzzle-item:nth-child(2)  { grid-area: b; }
.puzzle-grid--15 .puzzle-item:nth-child(3)  { grid-area: c; }
.puzzle-grid--15 .puzzle-item:nth-child(4)  { grid-area: d; }
.puzzle-grid--15 .puzzle-item:nth-child(5)  { grid-area: e; }
.puzzle-grid--15 .puzzle-item:nth-child(6)  { grid-area: f; }
.puzzle-grid--15 .puzzle-item:nth-child(7)  { grid-area: g; }
.puzzle-grid--15 .puzzle-item:nth-child(8)  { grid-area: h; }
.puzzle-grid--15 .puzzle-item:nth-child(9)  { grid-area: i; }
.puzzle-grid--15 .puzzle-item:nth-child(10) { grid-area: j; }
.puzzle-grid--15 .puzzle-item:nth-child(11) { grid-area: k; }
.puzzle-grid--15 .puzzle-item:nth-child(12) { grid-area: l; }
.puzzle-grid--15 .puzzle-item:nth-child(13) { grid-area: m; }
.puzzle-grid--15 .puzzle-item:nth-child(14) { grid-area: n; }
.puzzle-grid--15 .puzzle-item:nth-child(15) { grid-area: o; }

.puzzle-grid--15 .puzzle-item img {
  min-height: unset;
  height: 100%;
}

@media (max-width: 700px) {
  .puzzle-grid--15 {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    grid-template-areas: none;
  }
  .puzzle-grid--15 .puzzle-item:nth-child(n) { grid-area: auto; aspect-ratio: 4/3; }
}

.puzzle-grid--4 {
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 320px 320px;
  grid-template-areas:
    "a b"
    "c d";
  gap: 8px;
}

.puzzle-grid--4 .puzzle-item:nth-child(1) { grid-area: a; }
.puzzle-grid--4 .puzzle-item:nth-child(2) { grid-area: b; }
.puzzle-grid--4 .puzzle-item:nth-child(3) { grid-area: c; }
.puzzle-grid--4 .puzzle-item:nth-child(4) { grid-area: d; }

.puzzle-grid--4 .puzzle-item img {
  min-height: unset;
  height: 100%;
}

@media (max-width: 600px) {
  .puzzle-grid--4 {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas: none;
  }
  .puzzle-grid--4 .puzzle-item:nth-child(n) { grid-area: auto; aspect-ratio: 4/3; }
}

.gallery-section-title {
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--brand);
  margin: 0 0 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
}

.gallery-section {
  padding: 40px 0 20px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

@media (min-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-grid a {
  display: block;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: #fff;
}

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.figure img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.figure .caption {
  padding: 12px 14px 14px;
  color: var(--muted);
  font-size: 14px;
}

.tuition-wrap {
  padding-top: 36px;
  padding-bottom: 36px;
}

.tuition-section-header {
  text-align: center;
  margin: 0 auto 28px;
}

.tuition-section-header h2 {
  margin: 0 0 6px;
  border: none;
  padding: 0;
  color: var(--text);
}

.tuition-period {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  font-weight: 500;
  text-align: center;
}

.tuition-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 820px;
  margin: 0 auto;
}

@media (max-width: 700px) {
  .tuition-cards {
    grid-template-columns: 1fr;
  }
}

.tuition-card {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: #fff;
}

.tuition-card-header {
  padding: 20px 20px 16px;
  background: linear-gradient(135deg, var(--brand), #3d5e38);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.tuition-card-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

.tuition-card-header h3 {
  margin: 0;
  color: #fff;
  font-family: Fraunces, Georgia, serif;
  font-size: 20px;
  font-weight: 700;
}

.tuition-card-body {
  padding: 4px 0 8px;
}

.tuition-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  padding: 11px 18px;
  border-bottom: 1px solid var(--border);
  align-items: center;
  gap: 4px;
}

.tuition-row:last-child {
  border-bottom: none;
}

.tuition-row--head {
  background: rgba(83,115,77,0.05);
  padding: 8px 18px;
}

.tuition-row--head span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
}

.tuition-time {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

.tuition-row span:not(.tuition-time):not(.tuition-featured) {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}

.tuition-featured {
  font-size: 16px;
  font-weight: 800;
  color: var(--brand);
}

.tuition-note {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  margin: 18px auto 0;
  max-width: 820px;
  font-style: italic;
}

/* ── Daily Schedule Timeline ── */
.schedule-intro {
  text-align: center;
  padding: 36px 20px 10px;
  max-width: 680px;
  margin: 0 auto;
}

.schedule-title {
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(22px, 3vw, 34px);
  color: var(--text);
  margin: 0 0 8px;
  border: none;
  padding: 0;
}

.schedule-subtitle {
  font-size: 15px;
  color: var(--brand-3);
  font-weight: 700;
  margin: 0 0 8px;
}

.schedule-note {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
  margin: 0;
}

.schedule-timeline {
  position: relative;
  max-width: 680px;
  margin: 32px auto 40px;
  padding-left: 0;
}

.schedule-timeline::before {
  content: "";
  position: absolute;
  left: 140px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--brand) 0%, rgba(83,115,77,0.15) 100%);
}

.schedule-item {
  display: grid;
  grid-template-columns: 130px 20px 1fr;
  gap: 0 16px;
  align-items: start;
  margin-bottom: 20px;
  position: relative;
}

.schedule-time {
  text-align: right;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  padding-top: 14px;
  line-height: 1.3;
  letter-spacing: 0.01em;
}

.schedule-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--brand);
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--brand);
  margin-top: 13px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.schedule-content {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 2px 10px rgba(76,62,43,0.07);
  transition: box-shadow 200ms ease, transform 200ms ease;
}

.schedule-content:hover {
  box-shadow: var(--shadow);
  transform: translateX(3px);
}

.schedule-icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 1px;
}

.schedule-content h3 {
  margin: 0 0 3px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.schedule-content p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.schedule-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: linear-gradient(135deg, rgba(184,135,79,0.92), rgba(215,178,124,0.9));
  color: #fff9f0;
  padding: 2px 8px;
  border-radius: 999px;
}

/* Color-coded dots by activity type */
.schedule-item--snack .schedule-dot    { background: #e8a030; box-shadow: 0 0 0 2px #e8a030; }
.schedule-item--circle .schedule-dot  { background: #5b8dd9; box-shadow: 0 0 0 2px #5b8dd9; }
.schedule-item--outdoor .schedule-dot { background: #4caf72; box-shadow: 0 0 0 2px #4caf72; }
.schedule-item--music .schedule-dot   { background: #a06bcc; box-shadow: 0 0 0 2px #a06bcc; }
.schedule-item--sharing .schedule-dot { background: #e06b6b; box-shadow: 0 0 0 2px #e06b6b; }
.schedule-item--lunch .schedule-dot   { background: #e8a030; box-shadow: 0 0 0 2px #e8a030; }
.schedule-item--rest .schedule-dot    { background: #7eb8c9; box-shadow: 0 0 0 2px #7eb8c9; }

@media (max-width: 600px) {
  .schedule-timeline::before { left: 20px; }
  .schedule-item {
    grid-template-columns: 20px 1fr;
    grid-template-rows: auto auto;
  }
  .schedule-time {
    grid-column: 2;
    grid-row: 1;
    text-align: left;
    padding-top: 0;
    margin-bottom: 4px;
  }
  .schedule-dot {
    grid-column: 1;
    grid-row: 1 / 3;
    margin-top: 2px;
  }
  .schedule-content {
    grid-column: 2;
    grid-row: 2;
  }
}

.schedule-page-header {
  text-align: center;
  padding: 32px 20px 24px;
  max-width: 780px;
  margin: 0 auto;
}

.schedule-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto 40px;
}

@media (max-width: 680px) {
  .schedule-columns { grid-template-columns: 1fr; }
}

.schedule-col {
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
}

.schedule-col-header {
  padding: 16px 18px 14px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.schedule-col-header--preschool {
  background: linear-gradient(135deg, var(--brand), #3d5e38);
}

.schedule-col-header--infant {
  background: linear-gradient(135deg, #4d8ba1, #2e6b84);
}

.schedule-col-header h3 {
  margin: 0;
  color: #fff;
  font-family: Fraunces, Georgia, serif;
  font-size: 18px;
  font-weight: 700;
}

.schedule-col-header span {
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  font-weight: 600;
}

.schedule-rows {
  padding: 6px 0;
}

.srow {
  display: grid;
  grid-template-columns: 80px 24px 1fr;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-bottom: 1px solid var(--border);
  transition: background 150ms ease;
}

.srow:last-child { border-bottom: none; }
.srow:hover { background: var(--surface); }

.srow-time {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--muted);
  white-space: nowrap;
}

.srow-icon { font-size: 16px; text-align: center; }

.srow-label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}

/* Row accent colors */
.srow--snack   { border-left: 3px solid #e8a030; }
.srow--circle  { border-left: 3px solid #5b8dd9; }
.srow--outdoor { border-left: 3px solid #4caf72; }
.srow--music   { border-left: 3px solid #a06bcc; }
.srow--sharing { border-left: 3px solid #e06b6b; }
.srow--lunch   { border-left: 3px solid #e8a030; }
.srow--rest    { border-left: 3px solid #7eb8c9; }
.srow--activity{ border-left: 3px solid var(--brand); }

.schedule-intro--infant {
  margin-top: 20px;
  padding-top: 48px;
  border-top: 2px solid var(--border);
}

.schedule-timeline--infant::before {
  background: linear-gradient(180deg, #7eb8c9 0%, rgba(126,184,201,0.15) 100%);
}

.schedule-timeline--infant .schedule-item--greet .schedule-dot {
  background: #53734d;
  box-shadow: 0 0 0 2px #53734d;
}

/* ── Snack Menu ── */
.menu-header {
  text-align: center;
  padding: 32px 20px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.menu-title {
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(22px, 3vw, 34px);
  color: var(--text);
  margin: 0 0 10px;
  border: none;
  padding: 0;
}

.menu-note {
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-3);
  margin: 0;
}

.menu-table-wrap {
  overflow-x: auto;
  max-width: 960px;
  margin: 0 auto 12px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.menu-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
}

.menu-table thead tr {
  background: linear-gradient(135deg, var(--brand), #3d5e38);
}

.menu-table thead th {
  padding: 13px 14px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.04em;
  border-right: 1px solid rgba(255,255,255,0.15);
}

.menu-table thead th:last-child { border-right: none; }

.menu-week-col { width: 80px; }

.menu-week-label {
  text-align: center;
  vertical-align: middle;
  background: rgba(83,115,77,0.06);
  border-right: 2px solid var(--border);
}

.menu-week-label span {
  font-size: 12px;
  font-weight: 800;
  color: var(--brand);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.menu-table td {
  padding: 10px 12px;
  vertical-align: top;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.menu-table td:last-child { border-right: none; }
.menu-table tr:last-child td { border-bottom: none; }

.menu-row-alt td { background: rgba(83,115,77,0.03); }
.menu-row-alt .menu-week-label { background: rgba(83,115,77,0.09); }

.snack-am, .snack-pm {
  display: block;
  line-height: 1.35;
  font-size: 12.5px;
}

.snack-am {
  font-weight: 600;
  color: var(--text);
  padding-bottom: 5px;
  margin-bottom: 5px;
  border-bottom: 1px dashed var(--border);
}

.snack-pm {
  color: var(--muted);
}

.snack-free {
  font-weight: 700;
  color: var(--brand);
}

.menu-cell-holiday,
.menu-cell-tbd {
  text-align: center;
  vertical-align: middle;
  background: rgba(184,135,79,0.07);
}

.menu-cell-holiday span,
.menu-cell-tbd span {
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-3);
}

.menu-legend {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin: 8px auto 24px;
}

.legend-am { color: var(--text); }
.legend-pm { color: var(--muted); }

.media {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.media img {
  width: 100%;
  height: auto;
}

.faq details {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 14px;
  background: #fff;
}

.faq details + details {
  margin-top: 10px;
}

.faq summary {
  cursor: pointer;
  font-weight: 650;
}

form .field {
  display: grid;
  gap: 6px;
  margin-top: 12px;
}

label {
  font-size: 14px;
  font-weight: 600;
}

input,
textarea {
  font: inherit;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 12px;
  background: #fff;
}

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

.site-footer {
  padding: 28px 0 12px;
  background: linear-gradient(135deg, rgba(89, 108, 53, 0.96), rgba(98, 79, 61, 0.98));
  color: #f4efe9;
}

.site-footer .wrap {
  width: min(1500px, calc(100% - 28px));
}

.site-footer a {
  color: #f7f1e8;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: none;
  opacity: 0.9;
}

.footer-layout {
  display: grid;
  gap: 34px;
  align-items: start;
}

.footer-branding {
  display: flex;
  align-items: flex-start;
}

.footer-logo-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.footer-logo {
  width: min(220px, 100%);
  height: auto;
}

.footer-column h3 {
  margin: 0 0 14px;
  font-family: Manrope, ui-sans-serif, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #f8f3ea;
}

.footer-column p {
  margin: 0 0 6px;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(247, 241, 232, 0.94);
}

.footer-column--cta p {
  max-width: 420px;
}

.footer-spacer {
  margin-top: 16px !important;
}

.footer-links {
  display: grid;
  gap: 12px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(247, 241, 232, 0.94);
}

.footer-bottom {
  display: grid;
  gap: 8px;
  margin-top: 32px;
  padding-top: 12px;
}

.footer-bottom p {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.5;
  color: rgba(247, 241, 232, 0.82);
}

@media (min-width: 900px) {
  .footer-layout {
    grid-template-columns: 1.05fr 0.95fr 1.15fr 0.72fr;
  }

  .footer-bottom {
    grid-template-columns: 1fr auto;
    align-items: end;
  }
}

.fineprint {
  color: rgba(247, 241, 232, 0.82);
  font-size: 13px;
  margin-top: 12px;
}

.ready-cta-section {
  padding: 60px 0 34px;
}

.ready-cta {
  text-align: center;
  padding: 52px 32px;
  border-radius: 34px;
  background: linear-gradient(160deg, #fdf4e3, #f5e4c8);
  border: 2px solid rgba(184, 121, 58, 0.20);
  box-shadow: 0 16px 40px rgba(120, 80, 20, 0.12);
}

.ready-cta h2 {
  margin: 0 0 14px;
  font-family: Fraunces, ui-serif, Georgia, serif;
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.12;
  color: #5a3515;
}

.ready-cta p {
  margin: 0 auto 26px;
  max-width: 680px;
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.65;
  color: #4a3420;
}

.ready-cta .btn {
  min-width: 220px;
  background: linear-gradient(135deg, #c07830, #a0621e);
  color: #fffaf3;
  border-color: transparent;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: 20px;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(160, 98, 30, 0.30);
}

.ready-cta .actions {
  margin-top: 0;
  justify-content: center;
  gap: 14px;
}

.ready-cta .btn.secondary {
  background: #fffaf3;
  color: #7a4a1e;
  border: 2px solid rgba(184, 121, 58, 0.35);
  font-weight: 700;
  box-shadow: none;
}

.calendar-page .content > .wrap {
  gap: 0;
}

.calendar-page .calendar-intro {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 24px max(20px, calc((100vw - var(--max)) / 2)) 10px !important;
  background: transparent;
}

.calendar-page .calendar-intro-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7a8a72;
}

.calendar-page .calendar-intro-kicker::before,
.calendar-page .calendar-intro-kicker::after {
  content: "";
  width: 46px;
  height: 1px;
  background: rgba(83, 115, 77, 0.28);
}

.calendar-page .calendar-intro h1 {
  margin: 0;
  text-align: center;
  font-family: Fraunces, ui-serif, Georgia, serif;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.04;
  color: #30412c;
}

.calendar-page .calendar-display {
  padding: 6px max(20px, calc((100vw - var(--max)) / 2)) 20px !important;
  background: linear-gradient(135deg, rgba(89, 108, 53, 0.14), rgba(255, 249, 240, 0.54));
}

.calendar-page .calendar-media {
  max-width: 760px;
  margin: 0 auto;
  padding: 18px !important;
  border-radius: 28px !important;
  background: rgba(255, 252, 247, 0.92) !important;
  box-shadow: 0 16px 34px rgba(76, 62, 43, 0.1) !important;
}

.calendar-page .calendar-media img {
  border-radius: 18px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms var(--ease-spring);
  transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal="left"] {
  transform: translate3d(-28px, 18px, 0);
}

[data-reveal="right"] {
  transform: translate3d(28px, 18px, 0);
}

[data-reveal="scale"] {
  transform: scale(0.96) translateY(18px);
}

[data-reveal="left"].is-visible,
[data-reveal="right"].is-visible,
[data-reveal="scale"].is-visible {
  transform: none;
}

@media (min-width: 900px) {
}

@media (max-width: 760px) {
  .calendar-page .calendar-intro {
    padding-top: 24px !important;
    padding-bottom: 8px !important;
  }

  .calendar-page .calendar-intro h1 {
    font-size: clamp(26px, 8vw, 34px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* ═══════════════════════════════════════════════
   SITEWIDE POLISH — design consistency & vibrancy
   ═══════════════════════════════════════════════ */

/* ── Showcase photo hover effect (all pages) ── */
.showcase-photo {
  transition: transform 260ms var(--ease-spring), box-shadow 260ms ease;
}
.showcase-photo:hover {
  transform: translateY(-6px) rotate(0.4deg);
  box-shadow: 0 22px 44px rgba(76, 62, 43, 0.16);
}

/* ── Age cards — stronger hover on program page ── */
.age-card-link:hover img {
  transform: scale(1.03);
  transition: transform 320ms ease;
}
.age-card-link img {
  transition: transform 320ms ease;
}

/* ── Ready-to-enroll CTA — more vibrant ── */
.ready-cta-section {
  background: linear-gradient(135deg, #3d5838 0%, #5c7a55 50%, #4a6644 100%);
  padding: 64px 0;
}
.ready-cta {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.ready-cta h2 {
  font-family: Fraunces, ui-serif, Georgia, serif;
  font-size: clamp(26px, 3vw, 40px);
  color: #f5efe4;
  margin: 0 0 14px;
  line-height: 1.12;
}
.ready-cta p {
  color: rgba(245, 239, 228, 0.84);
  font-size: 16px;
  margin: 0 0 28px;
  line-height: 1.6;
}
.ready-cta .btn.primary {
  background: #c09369;
  color: #fff;
  border-color: transparent;
  padding: 14px 28px;
  font-size: 15px;
  border-radius: 999px;
}
.ready-cta .btn.primary:hover {
  background: #b07d55;
}
.ready-cta .btn.secondary {
  background: rgba(255, 249, 240, 0.15);
  color: #f5efe4;
  border: 1.5px solid rgba(255, 249, 240, 0.4);
  padding: 14px 28px;
  font-size: 15px;
  border-radius: 999px;
}
.ready-cta .btn.secondary:hover {
  background: rgba(255, 249, 240, 0.25);
}

/* ── Page hero note — richer for subtitle pages ── */
.page-hero-note {
  background: rgba(30, 22, 12, 0.42);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 18px;
  border: 1px solid rgba(255, 249, 240, 0.14);
  padding: 22px 36px;
}
.page-hero-note strong {
  font-size: clamp(30px, 3.6vw, 48px);
}
.page-hero-note span {
  font-size: 15px;
  max-width: 600px;
  margin: 0 auto;
}

/* ── Section badge pill — more polished ── */
.badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(83, 115, 77, 0.1);
  border: 1.5px solid rgba(83, 115, 77, 0.22);
  color: #3e5c37;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* ── Eyebrow labels (about page) ── */
.eyebrow {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(192, 147, 105, 0.12);
  border: 1.5px solid rgba(192, 147, 105, 0.28);
  color: #7a4e22;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* ── Highlight list (about / tour pages) ── */
.highlight-list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.highlight-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.5;
}
.hl-icon {
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── About page split sections — consistent spacing ── */
.about-flow .split {
  padding: 48px 40px;
}

/* ── Program feature photos — taller & more impactful ── */
.program-feature-photo img {
  height: 380px !important;
  border-radius: 32px 16px 32px 16px;
}

/* ── Teachers page: hero same height as about ── */
.teachers-page .page-hero,
.teachers-page .page-hero img {
  min-height: 430px;
  max-height: 430px;
}

/* ── Contact page hero ── */
.contact-page .page-hero,
.contact-page .page-hero img {
  min-height: 430px;
  max-height: 430px;
}

/* ── Consistent page hero heights ── */
.about-page .page-hero,
.about-page .page-hero img,
.enrollment-page-body .page-hero,
.enrollment-page-body .page-hero img,
.schedule-page .page-hero,
.schedule-page .page-hero img,
.menu-page .page-hero,
.menu-page .page-hero img {
  min-height: 430px;
  max-height: 430px;
}

/* ── Pillars strip — more vibrant ── */
.pillars-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  background: linear-gradient(90deg, #2e4228 0%, #4a6840 50%, #2e4228 100%);
  padding: 20px max(20px, calc((100vw - var(--max)) / 2));
}
.pillar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}
.pillar:last-child { border-right: none; }
.pillar-icon { font-size: 20px; }
.pillar-label {
  font-size: 13px;
  font-weight: 700;
  color: rgba(245, 240, 230, 0.92);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

/* ── Stats bar ── */
.about-stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: linear-gradient(90deg, #3d5636 0%, #5a7a4f 50%, #3d5636 100%);
  padding: 0;
}
@media (max-width: 700px) {
  .about-stats-bar { grid-template-columns: repeat(2, 1fr); }
}
.about-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 22px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  gap: 4px;
}
.about-stat:last-child { border-right: none; }
.about-stat-num {
  font-family: Fraunces, ui-serif, Georgia, serif;
  font-size: clamp(18px, 2vw, 26px);
  color: #f5ede0;
  font-weight: 700;
  line-height: 1;
}
.about-stat-label {
  font-size: 12px;
  color: rgba(245, 237, 224, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: center;
}

/* ── Topbar ── */
.topbar {
  background: linear-gradient(90deg, #384c34, #56714a);
}
.topbar .items {
  text-align: center;
  padding: 9px 0;
  font-size: 13px;
  font-weight: 600;
  color: #f0ebe0;
  letter-spacing: 0.01em;
}
.topbar a { color: #f0ebe0; }

/* ── Footer ── */
.site-footer {
  background: linear-gradient(135deg, #273522 0%, #374a31 100%);
  color: rgba(240, 235, 224, 0.88);
  padding-top: 48px;
  padding-bottom: 0;
}
.site-footer h3 {
  color: #f0ebe0;
  font-family: Fraunces, ui-serif, Georgia, serif;
  font-size: 17px;
  margin: 0 0 12px;
}
.site-footer p { color: rgba(240, 235, 224, 0.72); font-size: 14px; margin: 0 0 4px; }
.site-footer a { color: rgba(215, 190, 155, 0.9); text-decoration: none; }
.site-footer a:hover { color: #f0ebe0; text-decoration: underline; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 0 !important;
  margin-top: 36px;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 12px !important; color: rgba(240, 235, 224, 0.5) !important; margin: 0 !important; }

/* Review blocks — stacked standalone cards */
.review-blocks {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 36px;
}
.review-blocks .review-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 36px;
  box-shadow: 0 4px 20px rgba(76,62,43,0.08);
  border-left: 5px solid #53734d;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.review-blocks .review-card:hover {
  transform: translateX(4px);
  box-shadow: 0 8px 32px rgba(76,62,43,0.13);
}
.review-blocks .review-card p {
  font-size: 15.5px;
  line-height: 1.75;
  color: #3a4f35;
  margin: 0;
  font-style: italic;
  font-family: Fraunces, ui-serif, Georgia, serif;
}
.review-blocks .review-card span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  color: #203126;
}
.review-blocks .review-card span::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 3px;
  border-radius: 99px;
  background: #c09369;
  flex-shrink: 0;
}

/* Review star ratings */
.review-stars {
  color: #e8a020;
  font-size: 20px;
  letter-spacing: 2px;
  margin-bottom: 12px;
  line-height: 1;
}

/* Feedback section trust count */
.feedback-trust {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  font-size: 13px;
  color: #67594b;
  background: rgba(83,115,77,0.08);
  border: 1px solid rgba(83,115,77,0.14);
  border-radius: 999px;
  padding: 5px 14px;
}
.feedback-trust strong { color: #3a4f35; }

/* About stats bar — ensure dark enough text on green */
.about-stats-bar .stat-label { color: rgba(240,235,224,0.75); }
.about-stats-bar .stat-number { color: #f5f0e8; }


/* ── Mobile polish ── */

/* Tuition table — stack on small screens */
@media (max-width: 600px) {
  .tuition-cards { gap: 16px; }
  .tuition-row { grid-template-columns: 1.6fr 1fr 1fr; font-size: 12px; padding: 10px 12px; }
  .tuition-row--head span, .tuition-featured { font-size: 12px; }
  /* hide Extra Day column on very small screens */
  .tuition-row > span:last-child,
  .tuition-row--head > span:last-child { display: none; }
}

/* Stats bar — remove orphan dividers on mobile */
@media (max-width: 700px) {
  .about-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); padding-bottom: 12px; }
  .about-stat:last-child { border-bottom: none; }
}

/* Pillar strip — no dividers when wrapping */
@media (max-width: 700px) {
  .pillar { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); width: 100%; justify-content: center; }
  .pillar:last-child { border-bottom: none; }
  .pillars-strip { padding: 12px 20px; }
}

/* Why-choose difference cards — stack on mobile */
@media (max-width: 700px) {
  .difference-grid { grid-template-columns: 1fr !important; }
  .difference-card { padding: 24px 20px; }
}

/* Age cards — 2-up on mobile, not tiny 3-up */
@media (max-width: 600px) {
  .age-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 12px; }
}

/* Hero note — shorter on mobile */
@media (max-width: 600px) {
  .hero-visual-note { padding: 16px 18px; }
  .hero-visual-note strong { font-size: 17px; }
  .hero-visual-note p { display: none; }
}

/* Program feature photos — shorter on mobile */
@media (max-width: 700px) {
  .program-feature-photo img { height: 220px !important; }
}

/* Teacher classroom padding — tighter on mobile */
@media (max-width: 700px) {
  .classroom-section { padding: 40px 20px !important; }
}

/* Enrollment steps — single column on mobile */
@media (max-width: 600px) {
  .enrollment-steps-grid { grid-template-columns: 1fr !important; }
}

/* Book a tour why-visit cards — single column on mobile */
@media (max-width: 600px) {
  .why-visit-grid { grid-template-columns: 1fr !important; }
  .tour-timeline { grid-template-columns: 1fr !important; }
}

/* Section padding — tighter on mobile */
@media (max-width: 600px) {
  .reviews-section { padding: 48px 16px !important; }
  .reviews-grid { gap: 16px !important; }
  .review-blk { padding: 22px 18px; }
}

/* ── Mobile spacing + hero resize ── */
@media (max-width: 700px) {

  /* Home hero — shorter, tighter */
  .hero-visual-main {
    height: 300px;
    border-radius: 0 0 20px 20px;
  }
  .hero-visual-note {
    padding: 18px 16px;
    width: calc(100% - 24px);
  }
  .hero-visual-note strong { font-size: 20px; line-height: 1.2; }
  .hero-visual-note p { display: none; }
  .hero-kicker { font-size: 11px; }

  /* Inner page heroes — shorter */
  .page-hero,
  .page-hero img {
    min-height: 240px !important;
    max-height: 240px !important;
  }
  .page-hero-note strong { font-size: clamp(20px, 5vw, 28px); }
  .page-hero-note span { font-size: 12px; }

  /* Section padding — breathable but not bloated */
  .home-section .wrap,
  .about-flow .split,
  .classroom-section { padding: 28px 16px !important; }

  .enrollment-intro { flex-direction: column; gap: 24px; }
  .enrollment-sketch-wrap { max-width: 100%; }
  .enrollment-tour-highlights { gap: 12px; }

  /* Split sections — always stack */
  .split { flex-direction: column !important; gap: 24px !important; }
  .split.reverse { flex-direction: column !important; }
  .showcase-photo { width: 100% !important; max-width: 100% !important; }
  .showcase-photo img { height: 220px; object-fit: cover; width: 100%; border-radius: 14px; }

  /* Stats ratio cards */
  .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .stats-grid .card { padding: 12px 8px; }
  .stats-grid .card h3 { font-size: 12px; }
  .stats-grid .card p { font-size: 13px; }

  /* Programs age grid */
  .age-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 10px; }

  /* Section copy text */
  .section-copy h2 { font-size: clamp(22px, 5vw, 32px); }

  /* About page flow */
  .about-flow .split { padding: 28px 16px !important; }
  .mission-copy { gap: 10px; }

  /* Enrollment steps */
  .enrollment-steps-grid { grid-template-columns: 1fr !important; gap: 16px; }
  .enrollment-step { padding: 24px 20px; }

  /* Tuition cards */
  .tuition-cards { grid-template-columns: 1fr !important; }
  .tuition-wrap { padding: 24px 16px; }

  /* Ready CTA */
  .ready-cta { padding: 36px 20px; }
  .ready-cta h2 { font-size: 24px; }
  .ready-cta .actions { flex-direction: column; align-items: center; gap: 10px; }
  .ready-cta .btn { width: 100%; max-width: 300px; text-align: center; }

  /* Gallery grid */
  .puzzle-mosaic { grid-template-columns: repeat(2, 1fr) !important; }

  /* FAQ */
  .faq-category-header { flex-direction: column; gap: 8px; }
  .faq-contact-strip { padding: 28px 20px; }

  /* Footer layout */
  .footer-layout { gap: 28px; }
  .footer-column { min-width: 0; }

  /* Book a tour why-visit */
  .why-visit-grid,
  .tour-timeline { grid-template-columns: 1fr !important; gap: 14px; }
  .tour-booking-section .wrap { padding: 28px 16px; }
  .tour-form-wrap { gap: 28px !important; }

  /* General button actions */
  .actions { flex-wrap: wrap; gap: 10px; }
  .enrollment-actions { flex-direction: column; }
  .enrollment-actions .btn { width: 100%; text-align: center; }
}

/* Extra small phones (iPhone SE etc.) */
@media (max-width: 390px) {
  .hero-visual-main { height: 260px; }
  .page-hero, .page-hero img { min-height: 200px !important; max-height: 200px !important; }
  .about-stats-bar { grid-template-columns: 1fr; }
}

/* ── Our Environment — mobile fix ── */
@media (max-width: 700px) {
  .environment-section .wrap {
    padding: 24px 16px;
    border-radius: 18px;
  }
  /* Remove staggered card offsets — they break vertical flow */
  .environment-section .stats-grid .card:nth-child(2),
  .environment-section .stats-grid .card:nth-child(3) {
    transform: none !important;
  }
  /* Stack ratio cards in a row on mobile */
  .stats-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 8px;
  }
  .stats-grid .card {
    padding: 14px 8px;
    text-align: center;
  }
  .stats-grid .card h3 { font-size: 11px; margin-bottom: 4px; }
  .stats-grid .card p  { font-size: 15px; font-weight: 700; }
  /* Remove photo rotation — looks clipped on mobile */
  .environment-section .showcase-photo {
    transform: none;
    border-radius: 14px;
  }
}

/* ── Environment ratio cards — force 3-column row on mobile ── */
@media (max-width: 699px) {
  .environment-section .stats-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 8px !important;
    margin-top: 12px !important;
  }
  .environment-section .stats-grid .card {
    padding: 12px 6px !important;
    text-align: center !important;
    min-width: 0 !important;
  }
  .environment-section .stats-grid .card h3 {
    font-size: 10px !important;
    margin: 0 0 4px !important;
    line-height: 1.2 !important;
  }
  .environment-section .stats-grid .card p {
    font-size: 16px !important;
    font-weight: 700 !important;
    margin: 0 !important;
  }
}

/* ── Programs section — remove stagger offsets on mobile ── */
@media (max-width: 899px) {
  .programs-section .age-card-link:nth-child(2),
  .programs-section .age-card-link:nth-child(4) {
    transform: none !important;
  }
  .programs-section .age-card-link {
    border-radius: 20px !important;
  }
  .age-grid {
    gap: 12px !important;
  }
}

/* ── Ready to Learn More CTA — fix text/background contrast ── */
.ready-cta-section {
  background: linear-gradient(135deg, #3d5838 0%, #5c7a55 50%, #4a6644 100%) !important;
}
.ready-cta {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
}
.ready-cta h2 {
  color: #f5efe4 !important;
}
.ready-cta p {
  color: rgba(245, 239, 228, 0.88) !important;
}
