:root {
  --orange: #e6672e;
  --orange-dark: #b94a1d;
  --mustard: #d6a32a;
  --green: #4f8b57;
  --blue: #3476a8;
  --charcoal: #5b5e65;
  --gray: #70737a;
  --cream: #fffaf1;
  --paper: #fff;
  --line: #e9e1d5;
  --radius: 24px;
  --shadow: 0 20px 60px rgba(71, 48, 25, 0.12);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--charcoal);
  font-family: "DM Sans", sans-serif;
  background: var(--cream);
  font-size: 16px;
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select {
  font: inherit;
}
.site-header {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(5vw, 24px);
  background: rgba(255, 250, 241, 0.94);
  backdrop-filter: blur(15px);
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(44, 44, 48, 0.07);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.1;
}
.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 50% 50% 48% 52%;
  display: grid;
  place-items: center;
  background: var(--orange);
  color: white;
  font-weight: 800;
  letter-spacing: -1px;
  transform: rotate(-3deg);
}
.brand > span:last-child {
  display: flex;
  flex-direction: column;
}
.brand strong {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
}
.brand small {
  font-family: "Fraunces", serif;
  font-size: 1.3rem;
  font-weight: 700;
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-weight: 600;
  font-size: 0.95rem;
}
.language-toggle {
  display: inline-flex;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
}
.language-button {
  min-width: 38px;
  min-height: 34px;
  padding: 5px 9px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--gray);
  font-weight: 800;
  cursor: pointer;
}
.language-button.active {
  background: var(--orange);
  color: white;
}
.site-header nav a:hover {
  color: var(--orange);
}
.nav-cta {
  padding: 11px 19px;
  border: 1px solid var(--orange);
  border-radius: 999px;
  color: var(--orange);
}
.menu-button {
  display: none;
}
.hero {
  min-height: 690px;
  padding: 84px max(6vw, 24px);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 6vw;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(
      circle at 85% 18%,
      rgba(212, 165, 40, 0.18),
      transparent 28%
    ),
    linear-gradient(135deg, #fffaf1 60%, #fff3dd);
}
.hero-copy,
.hero-panel {
  position: relative;
  z-index: 1;
}
.eyebrow {
  display: block;
  color: var(--orange-dark);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
  margin-bottom: 14px;
}
.hero h1,
.section-heading h2,
.intro h2,
.giving h2,
.contact h2,
dialog h2 {
  font-family: "Fraunces", serif;
  line-height: 1.04;
  margin: 0.1em 0;
  color: var(--charcoal);
}
.hero h1 {
  font-size: clamp(3.4rem, 7vw, 6.8rem);
  letter-spacing: -0.055em;
  max-width: 850px;
}
.hero h1 em {
  font-style: normal;
  color: var(--orange);
}
.hero-copy > p {
  font-size: 1.2rem;
  max-width: 630px;
  color: var(--gray);
  margin: 28px 0;
}
.hero-actions,
.contact-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 23px;
  font-weight: 700;
  border: 0;
  cursor: pointer;
}
.primary {
  background: var(--orange);
  color: white;
  box-shadow: 0 8px 24px rgba(237, 106, 34, 0.24);
}
.primary:hover {
  background: var(--orange-dark);
}
.secondary {
  background: transparent;
  border: 1px solid #b7aa98;
}
.mustard {
  background: var(--mustard);
  color: #24211b;
}
.trust-row {
  display: flex;
  gap: 23px;
  flex-wrap: wrap;
  margin-top: 34px;
  color: var(--gray);
  font-size: 0.88rem;
}
.trust-row span:before {
  content: "•";
  color: var(--mustard);
  font-size: 1.5em;
  margin-right: 8px;
}
.hero-panel {
  min-height: 480px;
  background: linear-gradient(145deg, #f27a3e, var(--orange));
  color: white;
  border-radius: 44% 56% 42% 58% / 54% 43% 57% 46%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px;
  box-shadow: 0 24px 70px rgba(184, 74, 29, 0.28);
  transform: rotate(1deg);
  position: relative;
}
.sun-orbit {
  width: 125px;
  height: 125px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 34px;
  background: radial-gradient(circle, rgba(255, 221, 134, 0.42), transparent 68%);
}
.sun-orbit span {
  font-family: "Fraunces";
  font-size: 2.5rem;
  line-height: 1;
}
.sun-orbit small {
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero-panel blockquote {
  font-family: "Fraunces";
  font-size: 2.3rem;
  margin: 0;
}
.hero-panel p {
  margin: 0.4em 0;
  color: #fff4df;
}
.mustard-line {
  display: flex;
  gap: 10px;
  margin-top: 35px;
}
.mustard-line i {
  width: 8px;
  height: 16px;
  border-radius: 100% 0 100% 0;
  background: var(--mustard);
  transform: rotate(45deg);
}
section {
  padding: 100px max(6vw, 24px);
}
.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10vw;
  align-items: end;
  background: white;
}
.intro h2,
.section-heading h2,
.giving h2,
.contact h2 {
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  letter-spacing: -0.045em;
}
.intro p {
  font-size: 1.15rem;
  color: var(--gray);
  max-width: 670px;
}
.services {
  background: white;
}
.section-heading {
  max-width: 830px;
  margin-bottom: 54px;
}
.section-heading > p {
  font-size: 1.1rem;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.service-card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  min-height: 360px;
  display: flex;
  flex-direction: column;
}
.service-card.featured {
  background: var(--orange);
  color: white;
  border-color: var(--orange);
  transform: translateY(-12px);
}
.service-card.prekinder {
  border-top: 5px solid var(--mustard);
}
.service-card.preschool {
  border-top: 5px solid var(--green);
}
.service-card.afterschool {
  border-top: 5px solid var(--blue);
}
.service-card .number {
  font-family: "Fraunces";
  font-size: 2.2rem;
  color: var(--mustard);
}
.service-card h3 {
  font-family: "Fraunces";
  font-size: 1.65rem;
  margin: 30px 0 8px;
}
.service-card p {
  color: inherit;
  opacity: 0.76;
}
.service-card a {
  margin-top: auto;
  font-weight: 700;
}
.tag {
  background: var(--mustard);
  color: var(--charcoal);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
}
.daypass-panel {
  margin-top: 22px;
  padding: 30px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #656870, #777a82);
  color: white;
  position: relative;
  overflow: hidden;
}
.daypass-heading {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 22px;
}
.daypass-panel h3 {
  font-family: "Fraunces";
  font-size: 1.8rem;
  margin: 0;
}
.daypass-panel p {
  margin: 3px 0;
  color: #f0f0f2;
}
.daypass-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.daypass-options > div {
  padding: 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
  display: grid;
  gap: 3px;
}
.daypass-options span {
  color: #f4c95d;
  font-family: "Fraunces";
  font-size: 1.35rem;
}
.daypass-options strong {
  font-size: 1rem;
}
.daypass-options small {
  color: #ececee;
  line-height: 1.45;
}
.daypass-panel > a {
  font-weight: 700;
  color: #f2c85b;
}
.price-note {
  margin: 35px 0 0;
  padding: 18px 24px;
  border-left: 4px solid var(--mustard);
  background: #fff8e3;
  color: var(--gray);
}
.enrollment {
  background: linear-gradient(135deg, #5b5e65, #70737a);
  color: white;
  position: relative;
  overflow: hidden;
}
.enrollment > *:not(.wheat-decoration) { position: relative; z-index: 1; }
.wheat-decoration {
  position: absolute;
  pointer-events: none;
  user-select: none;
  mix-blend-mode: screen;
  opacity: 0.18;
}
.wheat-enrollment {
  width: min(430px, 44vw);
  right: -80px;
  bottom: -250px;
  transform: rotate(-8deg);
}
.wheat-decoration.wheat-hero {
  width: min(310px, 25vw);
  right: 31%;
  bottom: -155px;
  opacity: 0.38;
  transform: rotate(8deg);
  mix-blend-mode: multiply;
}
.light h2 {
  color: white;
}
.light .eyebrow {
  color: #efbd4b;
}
.light p {
  color: #c7c7ca;
}
.path-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.path-card {
  background: white;
  color: var(--charcoal);
  padding: 44px;
  border-radius: var(--radius);
}
.path-card.imas {
  background: #fff7dc;
}
.path-label {
  color: var(--orange);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
}
.path-card h3 {
  font-family: "Fraunces";
  font-size: 2rem;
  margin: 12px 0;
}
.path-card ul {
  padding-left: 20px;
  margin: 28px 0;
}
.path-card li {
  margin: 9px 0;
}
.weekly {
  background: #f4eee4;
}
.event-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.event-list article {
  background: white;
  border-radius: var(--radius);
  padding: 26px;
  display: flex;
  gap: 22px;
}
.event-list time {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--orange);
  border-right: 1px solid var(--line);
  padding-right: 20px;
}
.event-list time strong {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
}
.event-list time span {
  font-family: "Fraunces";
  font-size: 2.6rem;
  line-height: 1;
}
.event-list h3 {
  margin: 4px 0;
  font-family: "Fraunces";
  font-size: 1.45rem;
}
.event-list p {
  color: var(--gray);
  font-size: 0.9rem;
  margin: 5px 0;
}
.event-type {
  color: var(--orange-dark);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}
.giving {
  background: var(--mustard);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 7vw;
  align-items: center;
}
.giving-copy p {
  max-width: 580px;
  font-size: 1.15rem;
}
.giving-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.giving-options article {
  background: rgba(255, 255, 255, 0.83);
  border-radius: 18px;
  padding: 23px;
  display: flex;
  gap: 16px;
}
.giving-options article > span {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--charcoal);
  color: white;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
}
.giving-options h3 {
  margin: 0;
  font-size: 1rem;
}
.giving-options p {
  margin: 5px 0 0;
  color: var(--gray);
  font-size: 0.84rem;
}
.contact {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 50px;
  background: white;
}
.contact > div:first-child {
  max-width: 750px;
}
footer {
  background: #55585f;
  color: white;
  padding: 48px max(6vw, 24px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
footer .brand strong {
  color: #aaa;
}
dialog {
  width: min(620px, calc(100% - 32px));
  max-height: 90vh;
  overflow-y: auto;
  border: 0;
  border-radius: 28px;
  padding: 42px;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.3);
}
dialog::backdrop {
  background: rgba(82, 85, 92, 0.76);
  backdrop-filter: blur(5px);
}
.dialog-close {
  position: absolute;
  right: 20px;
  top: 16px;
  border: 0;
  background: transparent;
  font-size: 2rem;
  cursor: pointer;
}
.dialog-close + .eyebrow {
  margin-top: 10px;
}
dialog h2 {
  font-size: 2.5rem;
}
dialog form {
  display: grid;
  gap: 16px;
  margin-top: 25px;
}
dialog label {
  display: grid;
  gap: 6px;
  font-weight: 700;
  font-size: 0.9rem;
}
dialog input,
dialog select,
dialog textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ccc3b7;
  border-radius: 12px;
  background: white;
}
.private-details {
  display: grid;
  gap: 18px;
}
dialog fieldset {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fffaf1;
}
dialog legend {
  padding: 0 8px;
  color: var(--orange-dark);
  font-family: "Fraunces", serif;
  font-size: 1.15rem;
  font-weight: 700;
}
dialog textarea {
  resize: vertical;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.consent {
  display: flex !important;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  font-weight: 400 !important;
}
.consent input {
  width: auto;
  margin-top: 5px;
}
dialog form small {
  color: var(--gray);
}
@media (max-width: 1000px) {
  .card-grid {
    grid-template-columns: 1fr 1fr;
  }
  .event-list {
    grid-template-columns: 1fr;
  }
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-panel {
    min-height: 360px;
  }
  .wheat-decoration.wheat-hero {
    width: 270px;
    right: -45px;
    bottom: 265px;
    opacity: 0.25;
  }
  .giving {
    grid-template-columns: 1fr;
  }
  .site-header nav {
    position: absolute;
    display: none;
    top: 88px;
    left: 0;
    right: 0;
    background: var(--cream);
    padding: 24px;
    flex-direction: column;
    border-bottom: 1px solid var(--line);
  }
  .site-header nav.open {
    display: flex;
  }
  .menu-button {
    display: block;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 8px 15px;
    background: white;
  }
}
@media (max-width: 700px) {
  .hero {
    padding-top: 50px;
  }
  .hero h1 {
    font-size: 3.35rem;
  }
  .intro,
  .path-grid,
  .contact {
    grid-template-columns: 1fr;
    display: grid;
  }
  .card-grid,
  .giving-options {
    grid-template-columns: 1fr;
  }
  .daypass-heading {
    align-items: flex-start;
    flex-direction: column;
  }
  .daypass-options {
    grid-template-columns: 1fr;
  }
  .service-card.featured {
    transform: none;
  }
  .hero-panel {
    padding: 36px 20px;
  }
  .wheat-decoration.wheat-hero {
    width: 210px;
    right: -55px;
    bottom: 315px;
    opacity: 0.2;
  }
  .contact {
    align-items: start;
  }
  footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}
