:root {
  --ink: #11120f;
  --paper: #fbfbf7;
  --white: #ffffff;
  --lime: #caff9a;
  --green: #28d58a;
  --lilac: #cbb9f4;
  --coral: #ff8ca6;
  --yellow: #ffe765;
  --line: rgba(17, 18, 15, .16);
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #dfe0e8;
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }

.page-shell {
  width: min(1500px, calc(100% - 48px));
  margin: 24px auto;
  overflow: clip;
  background: var(--paper);
  border-radius: 32px;
  box-shadow: 0 16px 80px rgba(38, 38, 60, .08);
}

.site-header {
  min-height: 96px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 5vw;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 251, 247, 0);
  border-bottom: 1px solid transparent;
  transition:
    min-height .42s cubic-bezier(.22, 1, .36, 1),
    background-color .32s ease,
    border-color .32s ease,
    box-shadow .42s cubic-bezier(.22, 1, .36, 1);
}

.site-header.is-scrolled {
  min-height: 72px;
  background: rgba(251, 251, 247, .88);
  border-bottom-color: rgba(17, 18, 15, .08);
  box-shadow: 0 12px 32px rgba(17, 18, 15, .075);
  backdrop-filter: blur(18px) saturate(1.25);
  -webkit-backdrop-filter: blur(18px) saturate(1.25);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  font-size: 18px;
  font-weight: 700;
  transform-origin: left center;
  transition: transform .42s cubic-bezier(.22, 1, .36, 1);
}

.site-header.is-scrolled > .brand { transform: scale(.94); }

.brand-mark {
  width: 28px;
  height: 28px;
  position: relative;
  display: inline-block;
  flex: 0 0 28px;
}

.brand-mark span {
  position: absolute;
  left: 10px;
  top: 1px;
  width: 8px;
  height: 13px;
  background: var(--ink);
  border-radius: 80% 20% 80% 20%;
  transform-origin: 4px 13px;
}
.brand-mark span:nth-child(1) { transform: rotate(0deg); }
.brand-mark span:nth-child(2) { transform: rotate(90deg); }
.brand-mark span:nth-child(3) { transform: rotate(180deg); }
.brand-mark span:nth-child(4) { transform: rotate(270deg); }

.desktop-nav {
  display: flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  transform-origin: center;
  transition:
    transform .42s cubic-bezier(.22, 1, .36, 1),
    background-color .32s ease;
}

.site-header.is-scrolled .desktop-nav {
  transform: scale(.96);
  background: rgba(255, 255, 255, .58);
}

.desktop-nav a {
  padding: 9px 18px;
  font-size: 13px;
  border-radius: 999px;
  transition: .25s ease;
}
.desktop-nav a:hover, .desktop-nav a.active { background: var(--ink); color: white; }

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}
.tour-link {
  border-bottom: 1px solid var(--ink);
  font-size: 14px;
  padding-bottom: 3px;
  transition: opacity .25s ease, transform .42s cubic-bezier(.22, 1, .36, 1);
}
.site-header.is-scrolled .tour-link { transform: translateY(-1px); }
.menu-button {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.menu-button span { width: 17px; height: 1.5px; background: var(--ink); transition: .25s ease; }
.menu-button[aria-expanded="true"] span:first-child { transform: translateY(3.2px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:last-child { transform: translateY(-3.2px) rotate(-45deg); }
.mobile-menu { display: none; }

.hero {
  min-height: 690px;
  padding: 66px 5vw 46px;
  display: grid;
  grid-template-columns: 47% 53%;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  width: 850px;
  height: 430px;
  left: -160px;
  top: 300px;
  border: 1.5px solid #b8dc58;
  border-radius: 50%;
  transform: rotate(10deg);
  pointer-events: none;
}

.hero-copy { position: relative; z-index: 4; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 27px;
}
.eyebrow > span { width: 26px; height: 1px; display: inline-block; background: currentColor; }

h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 28px;
  font-size: clamp(67px, 7.2vw, 118px);
  line-height: .77;
  letter-spacing: -.065em;
  font-weight: 500;
}
h1 em, h2 em, h3 em {
  font-family: var(--serif);
  font-weight: 400;
}
h1 em { font-size: 1.06em; }

.hero-intro {
  width: min(430px, 90%);
  margin: 0 0 32px;
  padding-left: 0;
  font-size: 14px;
  line-height: 1.55;
}
.hero-buttons { display: flex; align-items: center; gap: 26px; padding-left: 0; }
.button {
  min-height: 54px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 9px 25px rgba(0,0,0,.15); }
.button-dark { background: var(--ink); color: white; }
.button svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.8;
  flex: 0 0 auto;
}
.text-link {
  font-size: 13px;
  border-bottom: 1px solid var(--ink);
  padding: 8px 0 4px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.text-link svg { width: 15px; height: 15px; stroke-width: 1.7; }

.hero-visual { position: relative; min-width: 0; z-index: 3; }
.hero-photo {
  width: 93%;
  height: 520px;
  margin: 10px 0 0 auto;
  border-radius: 42% 30% 34% 27% / 28% 24% 37% 31%;
  overflow: hidden;
  transform: rotate(1.5deg);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.08);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }

.orbit {
  position: absolute;
  border: 2px solid var(--coral);
  border-radius: 50%;
  pointer-events: none;
}
.orbit-one { width: 610px; height: 270px; right: -170px; top: 170px; transform: rotate(-23deg); }
.orbit-two { width: 540px; height: 220px; right: -80px; top: 205px; transform: rotate(28deg); border-color: var(--lilac); }
.sun-sticker {
  width: 76px;
  height: 76px;
  position: absolute;
  right: -5px;
  top: -20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  font-size: 40px;
  transform: translate3d(var(--float-x, 0px), var(--float-y, 0px), 0) rotate(10deg);
  z-index: 4;
  will-change: transform;
}
.tiny-card {
  position: absolute;
  left: -12px;
  bottom: 12px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 17px 12px 12px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 10px 35px rgba(0,0,0,.1);
  transform: translate3d(var(--float-x, 0px), var(--float-y, 0px), 0) rotate(-3deg);
  font-size: 11px;
  line-height: 1.3;
  will-change: transform;
}
.tiny-card strong { display: block; font-size: 13px; }
.tiny-card-icon { width: 39px; height: 39px; display: grid; place-items: center; border-radius: 50%; background: var(--coral); }

.play-pill {
  position: absolute;
  right: 20px;
  bottom: -9px;
  z-index: 4;
  height: 52px;
  padding: 0 20px 0 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 999px;
  background: var(--lilac);
  transform: translate3d(var(--float-x, 0px), var(--float-y, 0px), 0) rotate(5deg);
  will-change: transform;
}
.play-pill > span { width: 37px; height: 37px; display: grid; place-items: center; background: var(--coral); border-radius: 50%; font-size: 11px; }
.play-pill > span svg {
  display: block;
  width: 15px;
  height: 15px;
  fill: currentColor;
  stroke-width: 1.8;
  transform: translateX(1px);
}
.play-lines { display: flex; gap: 3px; align-items: center; }
.play-lines i { width: 2px; height: 13px; background: var(--ink); border-radius: 2px; }
.play-lines i:nth-child(2) { height: 22px; }
.play-lines i:nth-child(3) { height: 17px; }

.hero-tags { position: absolute; left: 43%; bottom: 46px; z-index: 6; display: flex; gap: 6px; transform: rotate(7deg); }
.tag { padding: 11px 16px; border-radius: 999px; font-size: 13px; font-weight: 600; border: 1px solid rgba(0,0,0,.06); }
.tag {
  --float-x: 0px;
  --float-y: 0px;
  will-change: transform;
}
.tag-lime {
  background: var(--green);
  transform: translate3d(var(--float-x), var(--float-y), 0);
}
.tag-lilac {
  background: var(--lilac);
  transform: translate3d(var(--float-x), var(--float-y), 0) translateY(19px) rotate(-8deg);
}
.tag-coral {
  background: var(--coral);
  transform: translate3d(var(--float-x), var(--float-y), 0) translateY(-13px) rotate(7deg);
}

.intro-strip {
  min-height: 155px;
  padding: 28px 5vw;
  background: var(--ink);
  color: white;
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  align-items: center;
  gap: 30px;
}
.intro-note { display: flex; align-items: center; gap: 18px; }
.intro-note p { margin: 0; font-family: var(--serif); font-style: italic; font-size: 24px; line-height: 1.05; }
.scribble { font-size: 51px; color: var(--lime); }
.intro-stat { display: flex; align-items: center; gap: 13px; padding-left: 30px; border-left: 1px solid rgba(255,255,255,.22); }
.intro-stat strong { font-family: var(--serif); font-style: italic; font-size: 50px; font-weight: 400; }
.intro-stat span { font-size: 11px; line-height: 1.35; color: rgba(255,255,255,.66); text-transform: uppercase; letter-spacing: .06em; }

.section-pad { padding: 115px 5vw; }
.section-heading { display: grid; grid-template-columns: 1fr 1.3fr .7fr; align-items: end; margin-bottom: 58px; }
.section-heading .eyebrow { align-self: start; }
h2 { font-size: clamp(52px, 5.5vw, 82px); line-height: .88; letter-spacing: -.045em; font-weight: 500; }
.section-heading h2 { margin: 0; }
.section-heading > p:last-child { font-size: 14px; line-height: 1.6; margin: 0 0 5px 40px; }

.program-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.program-card {
  min-height: 430px;
  padding: 24px;
  border-radius: 34px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform .3s ease;
}
.program-card:hover { transform: translateY(-7px) rotate(-.4deg); }
.program-lime { background: var(--green); }
.program-lilac { background: var(--lilac); }
.program-yellow { background: var(--lime); }
.card-top { display: flex; justify-content: space-between; align-items: center; z-index: 3; }
.age-pill { border: 1px solid var(--ink); padding: 5px 10px; border-radius: 999px; font-size: 11px; }
.card-top a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  display: grid;
  place-items: center;
  line-height: 0;
  transition: .2s ease;
}
.card-top a svg {
  display: block;
  width: 17px;
  height: 17px;
  stroke-width: 1.8;
}
.card-top a:hover { background: var(--ink); color: white; transform: rotate(45deg); }
.program-card > div:nth-child(2) { z-index: 3; }
.program-card p { margin-bottom: 7px; font-size: 12px; }
.program-card h3 { margin: 0; font-size: clamp(38px, 3.2vw, 53px); line-height: .82; letter-spacing: -.04em; }
.program-card h3 em { font-size: 1.12em; }

.flower-shape { position: absolute; width: 205px; height: 205px; right: -55px; bottom: -25px; }
.flower-shape i { position: absolute; width: 80px; height: 125px; background: var(--yellow); border-radius: 60% 60% 45% 45%; left: 63px; top: 0; transform-origin: 40px 103px; }
.flower-shape i:nth-child(2) { transform: rotate(90deg); }
.flower-shape i:nth-child(3) { transform: rotate(180deg); }
.flower-shape i:nth-child(4) { transform: rotate(270deg); }
.flower-shape b { position: absolute; width: 55px; height: 55px; background: var(--coral); border-radius: 50%; left: 76px; top: 75px; z-index: 2; }
.loop-shape { position: absolute; width: 230px; height: 150px; border: 19px solid var(--lime); border-radius: 50%; right: -22px; top: 140px; transform: rotate(-33deg); }
.loop-shape::after { content: ""; position: absolute; width: 190px; height: 110px; border: 19px solid var(--lime); border-radius: 50%; left: -80px; top: 48px; transform: rotate(57deg); }
.asterisk-shape { position: absolute; right: -7px; bottom: -47px; color: var(--lilac); font-size: 218px; line-height: 1; transform: rotate(16deg); }

.approach { background: #f0efed; display: grid; grid-template-columns: 1fr 1fr; gap: 9vw; align-items: center; }
.approach-art { min-height: 610px; position: relative; }
.art-panel { position: absolute; overflow: hidden; }
.art-panel-lilac { width: 68%; height: 65%; left: 0; top: 0; background: var(--lilac); border-radius: 42% 25% 38% 25%; transform: rotate(-4deg); }
.art-panel-coral { width: 55%; height: 50%; right: 0; bottom: 15%; background: var(--coral); border-radius: 30% 45% 26% 40%; transform: rotate(6deg); }
.face { width: 205px; height: 250px; border-radius: 46% 48% 43% 45%; background: var(--yellow); position: absolute; left: 50%; top: 53%; transform: translate(-50%,-50%) rotate(3deg); }
.face span { position: absolute; top: 93px; font-size: 32px; }
.face span:first-child { left: 55px; }
.face span:nth-child(2) { right: 55px; }
.face i { position: absolute; width: 55px; height: 26px; border-bottom: 4px solid var(--ink); border-radius: 50%; left: 75px; top: 142px; }
.giant-star { position: absolute; font-size: 220px; color: var(--lime); left: 50%; top: 50%; transform: translate(-50%,-50%); }
.art-caption { position: absolute; right: -2%; top: 4%; padding: 17px 23px; background: white; border-radius: 999px; font-size: 16px; transform: rotate(8deg); z-index: 4; box-shadow: 0 9px 25px rgba(0,0,0,.08); }
.art-caption em { font-family: var(--serif); font-size: 1.35em; }

.approach-copy h2 { margin-bottom: 26px; }
.approach-copy .lead { max-width: 480px; margin-bottom: 36px; line-height: 1.6; font-size: 15px; }
.value-list { border-top: 1px solid var(--line); }
.value-list article { display: grid; grid-template-columns: 50px 1fr; gap: 16px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.value-list article > span { font-family: var(--serif); font-style: italic; color: #777; font-size: 20px; }
.value-list h3 { font-size: 18px; margin-bottom: 6px; }
.value-list p { margin: 0; color: #5d5e58; font-size: 13px; line-height: 1.55; max-width: 430px; }

.day-section { background: var(--paper); }
.day-heading { display: flex; justify-content: space-between; align-items: start; margin-bottom: 70px; }
.day-heading h2 { width: 55%; margin: 0; }
.day-track { display: grid; grid-template-columns: repeat(4, 1fr); }
.day-track article { position: relative; min-height: 270px; padding: 18px 30px 0; border-left: 1px solid var(--line); }
.day-track article::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--ink); position: absolute; left: -5px; top: -5px; }
.day-time { display: block; font-family: var(--serif); font-style: italic; font-size: 21px; margin-bottom: 29px; }
.day-icon { width: 75px; height: 75px; display: grid; place-items: center; border-radius: 28px; font-size: 33px; margin-bottom: 28px; transform: rotate(-5deg); }
.day-icon svg { display: block; width: 27px; height: 27px; stroke-width: 1.8; transform: rotate(5deg); }
.icon-coral { background: var(--coral); }.icon-lime { background: var(--lime); }.icon-lilac { background: var(--lilac); }.icon-yellow { background: var(--yellow); }
.day-track h3 { font-size: 17px; margin-bottom: 9px; }
.day-track p { font-size: 12px; line-height: 1.6; color: #676861; max-width: 190px; }

.family-section { min-height: 650px; background: var(--lilac); position: relative; display: grid; place-items: center; text-align: center; overflow: hidden; }
.testimonial-carousel { width: min(100%, 1040px); position: relative; z-index: 3; }
.testimonial-stage { display: grid; align-items: center; }
.testimonial-slide {
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  transform: translateX(28px) scale(.985);
  pointer-events: none;
  transition:
    opacity .55s ease,
    transform .7s cubic-bezier(.22, 1, .36, 1),
    visibility 0s linear .7s;
}
.testimonial-slide.active {
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
  transition-delay: 0s;
}
.family-section blockquote { width: 100%; margin: 0; position: relative; z-index: 2; }
.family-section blockquote > p { font-family: var(--serif); font-style: italic; font-size: clamp(38px, 4vw, 61px); line-height: .98; margin-bottom: 34px; }
.quote-mark { position: absolute; left: 7%; top: 24px; font-family: var(--serif); font-size: 260px; color: rgba(255,255,255,.4); }
.family-section footer { display: flex; justify-content: center; align-items: center; gap: 14px; text-align: left; font-size: 11px; line-height: 1.5; }
.family-section footer strong { display: block; font-size: 13px; }
.family-section footer img {
  width: 62px;
  height: 62px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,.78);
  box-shadow: 0 8px 20px rgba(39, 29, 67, .14);
}
.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 38px;
}
.testimonial-arrow {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(17,18,15,.65);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease, transform .2s ease;
}
.testimonial-arrow:hover { background: var(--ink); color: white; transform: scale(1.06); }
.testimonial-arrow svg { width: 17px; height: 17px; stroke-width: 1.8; }
.testimonial-dots { display: flex; align-items: center; gap: 7px; }
.testimonial-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(17,18,15,.32);
  cursor: pointer;
  transition: width .35s cubic-bezier(.22,1,.36,1), background-color .25s ease;
}
.testimonial-dots button.active { width: 27px; background: var(--ink); }
.family-doodle { position: absolute; right: 5%; bottom: 7%; }
.family-doodle span {
  display: block;
  position: relative;
  z-index: 2;
  background: var(--lime);
  padding: 10px 21px;
  border-radius: 50%;
  transform: rotate(-9deg);
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
}
.family-doodle i {
  display: block;
  position: relative;
  z-index: 1;
  width: 120px;
  height: 70px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  transform: rotate(15deg);
  margin-top: -27px;
}

.faq-section { background: var(--paper); }
.faq-heading { display: grid; grid-template-columns: 1fr minmax(260px, .52fr); align-items: end; gap: 8vw; margin-bottom: 64px; }
.faq-heading h2 { margin: 0; }
.faq-heading > p { max-width: 390px; margin: 0 0 7px; font-size: 14px; line-height: 1.65; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 24px; list-style: none; cursor: pointer; font-size: clamp(18px, 1.65vw, 24px); font-weight: 600; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary i { width: 34px; height: 34px; flex: 0 0 34px; position: relative; border: 1px solid var(--ink); border-radius: 50%; transition: transform .45s cubic-bezier(.22,1,.36,1), background-color .25s ease; }
.faq-list summary i::before, .faq-list summary i::after { content: ""; position: absolute; left: 50%; top: 50%; width: 13px; height: 1.5px; background: var(--ink); transform: translate(-50%,-50%); }
.faq-list summary i::after { transform: translate(-50%,-50%) rotate(90deg); transition: transform .35s ease; }
.faq-list details[open] summary i { background: var(--lime); transform: rotate(180deg); }
.faq-list details[open] summary i::after { transform: translate(-50%,-50%) rotate(0deg); }
.faq-answer { overflow: hidden; }
.faq-answer p { min-height: 0; overflow: hidden; width: min(650px, calc(100% - 58px)); margin: 0; color: #5d5e58; font-size: 14px; line-height: 1.7; padding: 0 0 28px; }
.visit-section { min-height: 560px; color: white; background: var(--ink); position: relative; display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 9vw; overflow: hidden; }
.visit-section::before { content: ""; position: absolute; width: 600px; height: 240px; border: 1.5px solid var(--coral); border-radius: 50%; right: -200px; top: 50px; transform: rotate(-20deg); }
.visit-copy h2 { font-size: clamp(67px, 7vw, 106px); margin: 0; }
.eyebrow.light { color: white; }
.visit-action { position: relative; z-index: 2; padding-bottom: 10px; }
.visit-action p { font-size: 17px; line-height: 1.5; max-width: 400px; margin-bottom: 27px; }
.button-light { background: var(--lime); color: var(--ink); }
.visit-action small { display: block; margin-top: 16px; color: rgba(255,255,255,.55); }
.visit-burst { position: absolute; font-size: 150px; color: var(--coral); top: 25px; left: 55%; transform: rotate(12deg); }

.site-footer { padding: 66px 5vw 24px; background: var(--paper); }
.footer-brand { display: flex; justify-content: space-between; align-items: center; padding-bottom: 50px; }
.footer-brand .brand { font-size: 25px; }
.footer-brand p { margin: 0; font-family: var(--serif); font-style: italic; font-size: 25px; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; padding: 38px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.footer-links > div { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; font-size: 13px; }
.footer-links span { text-transform: uppercase; letter-spacing: .12em; font-size: 10px; color: #777; margin-bottom: 10px; }
.footer-links a:hover { text-decoration: underline; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 24px; font-size: 10px; color: #74756e; }

@media (max-width: 1080px) {
  .page-shell { width: calc(100% - 24px); margin: 12px auto; border-radius: 25px; }
  .hero { grid-template-columns: 50% 50%; padding-top: 45px; min-height: 640px; }
  h1 { font-size: clamp(62px, 8.5vw, 92px); }
  .hero-intro, .hero-buttons { padding-left: 0; }
  .hero-photo { height: 470px; }
  .section-heading { grid-template-columns: 1fr 1.8fr; }
  .section-heading > p:last-child { grid-column: 2; margin: 25px 0 0; max-width: 420px; }
  .intro-note p { font-size: 20px; }
  .intro-stat { padding-left: 20px; }
  .intro-stat strong { font-size: 41px; }
  .approach { gap: 6vw; }
  .approach-art { min-height: 530px; }
}

@media (max-width: 760px) {
  .page-shell { width: 100%; margin: 0; border-radius: 0; }
  .site-header { min-height: 78px; padding: 0 20px; grid-template-columns: 1fr auto; }
  .site-header.is-scrolled {
    min-height: 66px;
    background: rgba(251, 251, 247, .92);
  }
  .desktop-nav, .tour-link { display: none; }
  .menu-button { display: flex; }
  .mobile-menu {
    display: flex;
    position: absolute;
    top: 70px;
    left: 12px;
    right: 12px;
    padding: 18px;
    background: var(--ink);
    color: white;
    border-radius: 19px;
    flex-direction: column;
    gap: 4px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: .25s ease;
  }
  .mobile-menu.open { visibility: visible; opacity: 1; transform: none; }
  .site-header.is-scrolled .mobile-menu { top: 59px; }
  .mobile-menu a { padding: 12px 10px; border-bottom: 1px solid rgba(255,255,255,.12); }

  .hero { display: block; padding: 50px 20px 90px; min-height: 0; }
  .hero::after { width: 590px; height: 260px; left: -270px; top: 300px; }
  h1 { font-size: clamp(61px, 19vw, 83px); line-height: .82; }
  .hero-intro { width: 95%; padding: 0; margin: 0 0 26px; }
  .hero-buttons { padding: 0; flex-wrap: wrap; }
  .hero-visual { height: 400px; margin-top: 56px; }
  .hero-photo { width: 100%; height: 370px; border-radius: 34% 20% 29% 24% / 23% 19% 31% 25%; }
  .sun-sticker { width: 62px; height: 62px; right: -4px; top: -35px; }
  .orbit-one { width: 410px; height: 200px; right: -150px; top: 105px; }
  .orbit-two { width: 370px; height: 160px; right: -90px; top: 140px; }
  .tiny-card { left: -4px; bottom: -8px; }
  .play-pill { right: 1px; bottom: 238px; }
  .hero-tags { left: auto; right: 14px; bottom: 59px; flex-direction: column; align-items: flex-end; gap: 14px; }
  .tag-lilac { transform: translate3d(var(--float-x), var(--float-y), 0) rotate(-8deg); }
  .tag-coral { transform: translate3d(var(--float-x), var(--float-y), 0) rotate(7deg); }
  .tag { width: max-content; padding: 9px 13px; }

  .intro-strip { grid-template-columns: 1fr 1fr; gap: 27px 15px; padding: 40px 20px; }
  .intro-note { grid-column: 1 / -1; }
  .intro-stat { padding-left: 0; border-left: none; flex-direction: column; align-items: flex-start; gap: 2px; }
  .intro-stat:last-child { grid-column: 1 / -1; }

  .section-pad { padding: 85px 20px; }
  .section-heading { display: block; margin-bottom: 40px; }
  .section-heading h2 { margin-bottom: 25px; }
  .section-heading > p:last-child { margin: 0; }
  h2 { font-size: clamp(51px, 15vw, 70px); }
  .program-grid { grid-template-columns: 1fr; }
  .program-card { min-height: 360px; }
  .program-card h3 { font-size: 48px; }

  .approach { grid-template-columns: 1fr; gap: 50px; }
  .approach-art { min-height: 450px; order: 2; }
  .approach-copy { order: 1; }
  .art-panel-lilac { height: 72%; width: 70%; }
  .art-panel-coral { width: 55%; height: 48%; }
  .face { transform: translate(-50%,-50%) rotate(3deg) scale(.8); }

  .day-heading { display: block; margin-bottom: 50px; }
  .day-heading h2 { width: auto; }
  .day-track { grid-template-columns: 1fr 1fr; gap: 35px 0; }
  .day-track article { min-height: 0; padding: 15px 18px; }
  .day-icon { margin-bottom: 18px; }

  .family-section { min-height: 590px; padding-left: 24px; padding-right: 24px; }
  .family-section blockquote > p { font-size: 40px; }
  .family-section footer img { width: 56px; height: 56px; }
  .testimonial-controls { margin-top: 30px; }
  .quote-mark { font-size: 190px; left: 2%; }
  .family-doodle {
    right: -7%;
    bottom: -3%;
    transform: scale(.82);
    transform-origin: right bottom;
  }

  .faq-heading { display: block; margin-bottom: 42px; }
  .faq-heading h2 { margin-bottom: 24px; }
  .faq-list summary { min-height: 76px; font-size: 17px; }
  .faq-answer p { width: calc(100% - 46px); font-size: 13px; }
  .visit-section { grid-template-columns: 1fr; gap: 40px; align-items: start; }
  .visit-copy h2 { font-size: clamp(62px, 18vw, 82px); }
  .visit-burst { left: auto; right: -5px; font-size: 105px; }

  .footer-brand { display: block; }
  .footer-brand p { margin-top: 18px; }
  .footer-links { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* Inner pages */
.inner-main { padding-top: 86px; }
.inner-hero {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  padding: 110px 8vw 80px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  align-items: end;
  gap: 7vw;
  background: var(--paper);
  border-bottom: 1px solid rgba(20, 20, 20, .12);
}
.inner-hero::after {
  content: "";
  position: absolute;
  width: 390px;
  height: 220px;
  border: 1.5px solid var(--coral);
  border-radius: 50%;
  right: -90px;
  top: 70px;
  transform: rotate(-18deg);
}
.inner-hero h1 {
  max-width: 850px;
  margin: 20px 0 0;
  font-size: clamp(58px, 8vw, 118px);
  line-height: .85;
  letter-spacing: -.065em;
}
.inner-hero h1 em { font-family: "Instrument Serif", Georgia, serif; font-weight: 400; }
.inner-hero-copy { position: relative; z-index: 2; }
.inner-hero-aside {
  position: relative;
  z-index: 2;
  max-width: 430px;
  margin-bottom: 8px;
}
.inner-hero-aside p { margin: 0 0 28px; font-size: 17px; line-height: 1.65; }
.inner-section { padding: 100px 8vw; }
.inner-section-soft { background: #f2eee6; }
.inner-section-dark { background: var(--ink); color: white; }
.inner-heading {
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  gap: 7vw;
  align-items: start;
  margin-bottom: 58px;
}
.inner-heading h2 {
  margin: 0;
  font-size: clamp(44px, 5.7vw, 82px);
  line-height: .94;
  letter-spacing: -.05em;
}
.inner-heading h2 em { font-family: "Instrument Serif", Georgia, serif; font-weight: 400; }
.inner-heading > div > p:last-child { max-width: 600px; font-size: 16px; line-height: 1.7; }
.number-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.number-card {
  min-height: 285px;
  padding: 30px;
  border: 1px solid rgba(20, 20, 20, .16);
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.number-card:nth-child(1) { background: var(--lime); }
.number-card:nth-child(2) { background: var(--lilac); }
.number-card:nth-child(3) { background: var(--yellow); }
.number-card > span { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }
.number-card h3 { margin: 0 0 10px; font-size: 31px; letter-spacing: -.04em; }
.number-card p { margin: 0; font-size: 14px; line-height: 1.6; }
.split-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 7vw;
  align-items: center;
}
.split-photo {
  overflow: hidden;
  min-height: 520px;
  border-radius: 42% 24% 38% 24%;
  background: var(--lilac);
}
.split-photo img { width: 100%; height: 100%; min-height: 520px; object-fit: cover; }
.split-copy h2 { margin: 18px 0 24px; font-size: clamp(44px, 5.5vw, 78px); line-height: .94; letter-spacing: -.05em; }
.split-copy h2 em { font-family: "Instrument Serif", Georgia, serif; font-weight: 400; }
.split-copy > p { font-size: 16px; line-height: 1.75; }
.check-list { padding: 0; margin: 30px 0 0; list-style: none; }
.check-list li { padding: 16px 0; border-top: 1px solid rgba(20, 20, 20, .16); font-size: 15px; }
.check-list li::before { content: "✦"; margin-right: 12px; color: #6c54c7; }
.program-detail-list { display: grid; gap: 22px; }
.program-detail {
  scroll-margin-top: 110px;
  min-height: 360px;
  padding: 45px;
  border-radius: 34px;
  display: grid;
  grid-template-columns: .65fr 1fr;
  gap: 6vw;
  align-items: center;
}
.program-detail:nth-child(1) { background: var(--lime); }
.program-detail:nth-child(2) { background: var(--lilac); }
.program-detail:nth-child(3) { background: var(--yellow); }
.program-detail .age-pill { display: inline-flex; }
.program-detail h2 { margin: 24px 0 0; font-size: clamp(48px, 6vw, 84px); line-height: .86; letter-spacing: -.06em; }
.program-detail h2 em { font-family: "Instrument Serif", Georgia, serif; font-weight: 400; }
.program-detail h3 { margin: 0 0 14px; font-size: 23px; }
.program-detail p { margin: 0 0 22px; font-size: 15px; line-height: 1.7; }
.detail-points { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.detail-points span { padding: 13px 15px; background: rgba(255,255,255,.48); border-radius: 14px; font-size: 13px; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step-card { padding: 34px; border: 1px solid rgba(255,255,255,.22); border-radius: 28px; }
.step-card > span { display: block; color: var(--lime); margin-bottom: 70px; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
.step-card h3 { margin: 0 0 14px; font-size: 27px; }
.step-card p { margin: 0; color: rgba(255,255,255,.67); font-size: 14px; line-height: 1.65; }
.fees-table { border-top: 1px solid rgba(20,20,20,.18); }
.fees-row {
  display: grid;
  grid-template-columns: 1.2fr .7fr .7fr;
  gap: 20px;
  padding: 25px 0;
  border-bottom: 1px solid rgba(20,20,20,.18);
  align-items: center;
}
.fees-row strong { font-size: 19px; }
.fees-row span { font-size: 14px; color: #666; }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 7vw; }
.contact-details { display: grid; gap: 24px; align-content: start; }
.contact-detail { padding-top: 20px; border-top: 1px solid rgba(20,20,20,.18); }
.contact-detail span { display: block; margin-bottom: 9px; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: #6c6c6c; }
.contact-detail a, .contact-detail p { margin: 0; color: var(--ink); font-size: 17px; line-height: 1.55; text-decoration: none; }
.contact-form { padding: 38px; background: white; border-radius: 30px; box-shadow: 0 18px 50px rgba(35, 29, 23, .08); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: grid; gap: 8px; }
.field-full { grid-column: 1 / -1; }
.field label { font-size: 12px; font-weight: 600; letter-spacing: .04em; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid #d8d2c8;
  border-radius: 12px;
  background: #faf8f4;
  color: var(--ink);
  font: inherit;
}
.field textarea { min-height: 135px; resize: vertical; }
.contact-form .button { border: 0; cursor: pointer; margin-top: 22px; }
.form-note { margin: 16px 0 0; font-size: 12px; line-height: 1.5; color: #777; }
.form-status { margin: 20px 0 0; padding: 15px; background: var(--lime); border-radius: 12px; font-size: 14px; }
.cta-band {
  padding: 75px 8vw;
  background: var(--coral);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.cta-band h2 { margin: 0; max-width: 760px; font-size: clamp(43px, 6vw, 80px); line-height: .92; letter-spacing: -.05em; }
.cta-band h2 em { font-family: "Instrument Serif", Georgia, serif; font-weight: 400; }
.error-page { min-height: calc(100vh - 86px); display: grid; place-items: center; padding: 100px 8vw; text-align: center; background: var(--yellow); }
.error-page strong { display: block; font: 400 clamp(130px, 25vw, 310px)/.7 "Instrument Serif", Georgia, serif; letter-spacing: -.07em; }
.error-page h1 { margin: 45px 0 15px; font-size: clamp(42px, 6vw, 72px); letter-spacing: -.05em; }
.error-page p { max-width: 520px; margin: 0 auto 30px; line-height: 1.7; }

@media (max-width: 900px) {
  .inner-hero, .split-feature, .contact-grid { grid-template-columns: 1fr; }
  .inner-hero { min-height: auto; padding-top: 80px; }
  .inner-hero-aside { margin-top: 10px; }
  .number-grid, .steps-grid { grid-template-columns: 1fr; }
  .program-detail { grid-template-columns: 1fr; }
  .step-card > span { margin-bottom: 35px; }
}

@media (max-width: 760px) {
  .inner-main { padding-top: 74px; }
  .inner-hero, .inner-section { padding-left: 6vw; padding-right: 6vw; }
  .inner-hero { padding-top: 70px; padding-bottom: 60px; }
  .inner-heading { grid-template-columns: 1fr; gap: 24px; }
  .program-detail { padding: 28px; }
  .detail-points, .form-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .fees-row { grid-template-columns: 1fr; gap: 6px; }
  .cta-band { align-items: flex-start; flex-direction: column; padding: 58px 6vw; }
}
