:root {
  --sage: #8fae9a;
  --sage-dark: #486f5c;
  --sage-light: #e7f0e9;
  --lavender: #b9add9;
  --lavender-light: #eeeaf7;
  --cream: #fbfaf6;
  --warm: #f3eadf;
  --ink: #26352e;
  --muted: #65736b;
  --white: #ffffff;
  --line: #dce4dc;
  --shadow: 0 20px 50px rgba(38, 53, 46, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 150px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

.announcement-bar {
  position: sticky;
  top: 0;
  z-index: 12;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 10px clamp(18px, 4vw, 56px);
  color: var(--sage-dark);
  background: linear-gradient(135deg, var(--sage-light), var(--lavender-light));
  border-bottom: 1px solid rgba(143, 174, 154, 0.34);
}

.announcement-bar p {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 900;
  text-align: center;
}

.announcement-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  color: var(--white);
  background: var(--sage-dark);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 900;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.announcement-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(72, 111, 92, 0.18);
}

.site-header {
  position: sticky;
  top: 55px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(251, 250, 246, 0.94);
  border-bottom: 1px solid rgba(220, 228, 220, 0.82);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-logo {
  display: grid;
  place-items: center;
  width: 116px;
  height: 72px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(38, 53, 46, 0.08);
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  line-height: 1.2;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: clamp(12px, 2vw, 24px);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.main-nav a:hover,
.text-link:hover,
.contact-card a:hover {
  color: var(--sage-dark);
}

.nav-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-button,
.button.primary {
  color: var(--white);
  background: var(--sage-dark);
  box-shadow: 0 10px 22px rgba(72, 111, 92, 0.22);
}

.button.secondary {
  color: var(--sage-dark);
  background: var(--sage-light);
  border-color: var(--line);
}

.button.ghost {
  color: var(--sage-dark);
  background: var(--white);
  border-color: var(--line);
}

.button.small {
  min-height: 42px;
  width: fit-content;
  padding-inline: 16px;
  font-size: 0.9rem;
}

.hero-register {
  min-height: 54px;
  padding-inline: 28px;
  background: linear-gradient(135deg, var(--sage-dark), #6f5aa8) !important;
  box-shadow: 0 16px 34px rgba(72, 111, 92, 0.28);
  font-size: 1.05rem;
}

.button:hover,
.nav-button:hover,
.choice-card:hover,
.news-card:hover,
.impact-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(72, 111, 92, 0.18);
}

.section-band,
.content-section,
.contact-section,
.site-footer,
.intro-section,
.promise-section {
  padding-inline: clamp(18px, 4vw, 72px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(460px, 1.06fr) minmax(320px, 0.94fr);
  align-items: center;
  gap: clamp(28px, 5vw, 68px);
  min-height: min(680px, calc(100vh - 118px));
  padding-top: 34px;
  padding-bottom: 34px;
  overflow: hidden;
}

.hero-copy {
  max-width: 680px;
}

.enrollment-badge {
  display: inline-grid;
  gap: 3px;
  margin: 0 0 24px;
  padding: 14px 18px;
  color: var(--sage-dark);
  background: linear-gradient(135deg, rgba(231, 240, 233, 0.98), rgba(238, 234, 247, 0.94));
  border: 1px solid rgba(143, 174, 154, 0.38);
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(38, 53, 46, 0.1);
}

.enrollment-badge span {
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.1em;
}

.enrollment-badge strong {
  font-size: 1.05rem;
}

.enrollment-badge small {
  color: var(--muted);
  font-weight: 850;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--sage-dark);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.08;
}

h1 {
  margin-bottom: 22px;
  max-width: 760px;
  font-size: clamp(2.45rem, 4.75vw, 4.05rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.8rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.28rem;
}

.hero-copy p:not(.eyebrow),
.section-heading > p:not(.eyebrow),
.contact-section > div:first-child p,
.intro-panel p {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-media {
  position: relative;
}

.hero-media::before {
  position: absolute;
  inset: 8% -4% -5% 8%;
  z-index: -1;
  border-radius: 42px;
  background: var(--lavender-light);
  content: "";
}

.hero-media img {
  width: 100%;
  aspect-ratio: 1.14 / 1;
  object-fit: cover;
  border: 12px solid var(--white);
  border-radius: 36px;
  box-shadow: var(--shadow);
}

.intro-section {
  padding-top: 6px;
  padding-bottom: 42px;
}

.intro-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.intro-panel p {
  max-width: 830px;
  margin-bottom: 0;
}

.text-link {
  color: var(--sage-dark);
  font-weight: 900;
  min-width: max-content;
}

.content-section {
  padding-top: clamp(66px, 8vw, 108px);
  padding-bottom: clamp(66px, 8vw, 108px);
}

.tinted {
  background:
    linear-gradient(180deg, rgba(231, 240, 233, 0.68), rgba(238, 234, 247, 0.72)),
    var(--sage-light);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.split-grid,
.program-grid,
.team-grid,
.involved-grid,
.choice-grid,
.news-grid,
.impact-grid {
  display: grid;
  gap: 18px;
}

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

.split-grid article,
.program-card,
.team-card,
.checklist,
.parent-copy,
.involved-grid article,
.choice-card,
.news-card,
.impact-card,
.calendar-card,
.faq-list details,
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.split-grid article,
.involved-grid article {
  padding: 28px;
}

.split-grid article p,
.program-card p,
.involved-grid article p,
.choice-card p,
.news-card p,
.parent-copy p,
.checklist li {
  color: var(--muted);
}

.family-section {
  background: var(--cream);
}

.choice-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.choice-card,
.news-card,
.impact-card {
  padding: 26px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.choice-icon,
.news-card span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  background: var(--lavender-light);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 1.4rem;
}

.values-card {
  background: linear-gradient(135deg, var(--sage-light), var(--lavender-light)) !important;
}

.value-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.value-list span {
  padding: 9px 13px;
  color: var(--sage-dark);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(220, 228, 220, 0.88);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 800;
}

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

.impact-section {
  background: var(--white);
}

.impact-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.impact-card {
  background: linear-gradient(135deg, var(--white), rgba(238, 234, 247, 0.5));
}

.impact-card span {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-weight: 850;
}

.impact-card strong {
  display: block;
  color: var(--sage-dark);
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1;
}

.program-card {
  display: flex;
  min-height: 342px;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px;
  background: var(--white);
}

.program-card p {
  flex: 1;
}

.program-card .program-note {
  flex: 0;
  margin: -4px 0 14px;
  color: var(--sage-dark);
  font-weight: 850;
}

.program-card.lavender {
  background: #fbf9ff;
}

.program-card.neutral {
  background: #fffdf9;
}

.more-programs {
  margin-top: 28px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.mini-card-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.mini-card-grid span {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 14px;
  color: var(--sage-dark);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 850;
}

.program-badge {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 8px 12px;
  color: var(--sage-dark);
  background: var(--sage-light);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 900;
}

.coming-badge {
  color: #5e3c8f;
  background: var(--lavender-light);
  border: 1px solid rgba(185, 173, 217, 0.72);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.calendar-card {
  padding: 30px;
  box-shadow: 0 16px 34px rgba(38, 53, 46, 0.1);
}

.calendar-card.break-card {
  background: linear-gradient(135deg, #fffdf9, var(--lavender-light));
}

.calendar-card p {
  color: var(--muted);
}

.calendar-card p:last-child {
  margin-bottom: 0;
  color: var(--sage-dark);
  font-weight: 850;
}

.calendar-note {
  margin-top: 12px;
  color: var(--sage-dark) !important;
  font-weight: 850;
}

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

.team-card {
  padding: 24px;
}

.photo-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1 / 0.72;
  margin-bottom: 22px;
  color: var(--sage-dark);
  background:
    radial-gradient(circle at 28% 24%, rgba(185, 173, 217, 0.38), transparent 28%),
    linear-gradient(135deg, var(--sage-light), var(--warm));
  border: 1px dashed #b9c9bd;
  border-radius: 8px;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-weight: 900;
}

.team-card p {
  color: var(--muted);
}

.team-card .team-role {
  margin-bottom: 12px;
  color: var(--muted);
  font-weight: 700;
}

.parents-section {
  background: var(--white);
}

.parent-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.7fr);
  gap: 18px;
}

.parent-copy,
.checklist {
  padding: 30px;
}

.checklist ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 21px;
}

.faq-section {
  margin-top: 38px;
}

.compact-heading {
  margin-bottom: 24px;
}

.compact-heading h2 {
  font-size: clamp(1.7rem, 3vw, 2.65rem);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 980px;
}

.faq-list details {
  padding: 20px 22px;
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--sage-dark);
  background: var(--sage-light);
  border-radius: 50%;
  content: "+";
  font-size: 1.15rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list details p {
  margin: 14px 0 0;
  color: var(--muted);
}

.handbook-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 42px;
  margin-top: 18px;
  padding: 0 16px;
  color: #5e3c8f;
  background: var(--lavender-light);
  border: 1px dashed rgba(185, 173, 217, 0.95);
  border-radius: 999px;
  cursor: not-allowed;
  font-size: 0.9rem;
  font-weight: 900;
}

.involved-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.center-cta {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.news-section {
  background: var(--cream);
}

.news-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.promise-section {
  padding-top: clamp(66px, 8vw, 108px);
  padding-bottom: clamp(66px, 8vw, 108px);
  background:
    linear-gradient(135deg, rgba(231, 240, 233, 0.82), rgba(238, 234, 247, 0.86)),
    var(--sage-light);
}

.promise-card {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(30px, 5vw, 58px);
  text-align: center;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(220, 228, 220, 0.92);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.promise-card h2 {
  margin-bottom: 12px;
}

.promise-card > p:last-child,
.promise-lines p {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
}

.promise-lines {
  margin-bottom: 22px;
}

.promise-lines p {
  margin-bottom: 6px;
  color: var(--sage-dark);
  font-weight: 850;
}

.policy-hero {
  padding: clamp(66px, 8vw, 108px) clamp(18px, 4vw, 72px);
  background:
    linear-gradient(135deg, rgba(231, 240, 233, 0.82), rgba(238, 234, 247, 0.86)),
    var(--sage-light);
}

.policy-hero h1 {
  max-width: 860px;
  margin-bottom: 12px;
}

.policy-hero p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 850;
}

.policy-content {
  display: grid;
  gap: 18px;
  padding: clamp(54px, 7vw, 86px) clamp(18px, 4vw, 72px);
  background: var(--cream);
}

.policy-content article {
  max-width: 980px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.policy-content h2 {
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
}

.policy-content p {
  color: var(--muted);
}

.policy-content a {
  color: var(--sage-dark);
  font-weight: 850;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(300px, 0.64fr);
  gap: 32px;
  align-items: center;
  padding-top: clamp(66px, 8vw, 108px);
  padding-bottom: clamp(66px, 8vw, 108px);
  color: var(--white);
  background: var(--sage-dark);
}

.contact-section .eyebrow,
.contact-section p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-section .service-area {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 900;
}

.contact-card {
  display: grid;
  gap: 14px;
  padding: 28px;
  color: var(--ink);
  box-shadow: 0 18px 42px rgba(38, 53, 46, 0.18);
}

.contact-card a,
.contact-card span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  overflow-wrap: anywhere;
  color: var(--sage-dark);
  font-size: 1.05rem;
  font-weight: 850;
}

.contact-icon {
  flex: 0 0 auto;
  display: grid !important;
  place-items: center;
  width: 32px;
  height: 32px;
  color: var(--white) !important;
  background: linear-gradient(135deg, var(--sage-dark), #6f5aa8);
  border-radius: 50%;
  font-size: 0.98rem !important;
}

.help-widget {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  width: min(320px, calc(100vw - 36px));
}

.help-widget summary {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  color: var(--white);
  background: linear-gradient(135deg, var(--sage-dark), #6f5aa8);
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(38, 53, 46, 0.22);
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

.help-widget summary::-webkit-details-marker {
  display: none;
}

.help-panel {
  display: grid;
  position: absolute;
  right: 0;
  bottom: 60px;
  width: 100%;
  gap: 10px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.help-widget:not([open]) .help-panel {
  display: none;
}

.help-panel a,
.help-panel span {
  overflow-wrap: anywhere;
  color: var(--sage-dark);
  font-size: 0.95rem;
  font-weight: 800;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  padding-bottom: 24px;
  background: var(--cream);
  border-top: 1px solid var(--line);
}

.footer-copy {
  display: grid;
  gap: 5px;
  color: var(--muted);
  font-weight: 800;
  text-align: right;
}

.footer-copy strong {
  color: var(--ink);
}

.footer-copy p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 16px;
  margin-top: 6px;
  font-size: 0.86rem;
}

.footer-links a {
  color: var(--sage-dark);
}

@media (max-width: 1050px) {
  .site-header {
    top: 57px;
    flex-wrap: wrap;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy {
    max-width: none;
  }

  .program-grid,
  .team-grid,
  .calendar-grid,
  .choice-grid,
  .news-grid,
  .impact-grid,
  .mini-card-grid,
  .involved-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .announcement-bar {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
    padding: 10px 18px;
  }

  .announcement-bar p {
    font-size: 0.86rem;
  }

  .announcement-button {
    width: 100%;
  }

  .site-header {
    top: 107px;
    padding: 14px 18px;
  }

  .brand-logo {
    width: 92px;
    height: 58px;
  }

  .brand-logo img {
    width: 100%;
    height: 100%;
  }

  .nav-button {
    display: none;
  }

  .main-nav {
    gap: 16px;
    font-size: 0.9rem;
  }

  .hero {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  h1 {
    margin-bottom: 16px;
    font-size: clamp(2.15rem, 10vw, 2.55rem);
  }

  h2 {
    font-size: clamp(1.9rem, 10vw, 2.7rem);
  }

  .hero-media::before {
    border-radius: 28px;
  }

  .hero-media img {
    border-width: 8px;
    border-radius: 24px;
    aspect-ratio: 21 / 9;
  }

  .button-row,
  .intro-panel,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-register {
    min-height: 52px;
    padding-inline: 20px;
  }

  .hero .button-row {
    margin-top: 20px;
  }

  .intro-panel {
    padding: 24px;
  }

  .split-grid,
  .program-grid,
  .team-grid,
  .parent-layout,
  .involved-grid,
  .calendar-grid,
  .choice-grid,
  .news-grid,
  .impact-grid,
  .mini-card-grid,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .program-card {
    min-height: auto;
  }

  .site-footer {
    align-items: flex-start;
  }

  .footer-copy {
    text-align: left;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 430px) {
  .main-nav a {
    min-width: max-content;
  }

  .brand small {
    font-size: 0.72rem;
  }

  .section-band,
  .content-section,
  .contact-section,
  .site-footer,
  .intro-section {
    padding-inline: 16px;
  }

  .split-grid article,
  .program-card,
  .team-card,
  .choice-card,
  .news-card,
  .impact-card,
  .parent-copy,
  .checklist,
  .involved-grid article,
  .faq-list details,
  .contact-card,
  .more-programs {
    padding: 22px;
  }

  .help-widget {
    right: 14px;
    bottom: 14px;
    width: min(300px, calc(100vw - 28px));
  }
}
