:root {
  --ivory: #f8f5ee;
  --cream: #fffdf8;
  --beige: #ede5d6;
  --sage-soft: #c9d3be;
  --sage: #798052;
  --sage-deep: #5f6939;
  --walnut: #543a26;
  --brown: #6a4a30;
  --ink: #2e271f;
  --muted: #766e62;
  --line: rgba(84, 58, 38, 0.16);
  --shadow: 0 26px 70px rgba(84, 58, 38, 0.13);
  --radius: 30px;
  --container: min(1120px, calc(100vw - 44px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.6;
  font-size: 15.5px;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

h1, h2, h3, .brand-text {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
  color: var(--walnut);
}
h1 { font-size: clamp(2.04rem, 4.16vw, 3.92rem); letter-spacing: -0.04em; margin: 0; }
h2 { font-size: clamp(1.75rem, 3.1vw, 3.05rem); letter-spacing: -0.035em; margin: 0; }
h3 { font-size: 1.18rem; margin: 0 0 0.65rem; }
p { margin: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  min-height: 120px;
  padding: 0.35rem max(24px, calc((100vw - 1180px) / 2)) 0.95rem;
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.26), rgba(248, 245, 238, 0.10));
  -webkit-backdrop-filter: blur(38px) saturate(1.38) contrast(1.05);
  backdrop-filter: blur(38px) saturate(1.38) contrast(1.05);
  border-bottom: 1px solid rgba(255, 253, 248, 0.24);
  box-shadow: 0 12px 30px rgba(84, 58, 38, 0.022), inset 0 1px 0 rgba(255,255,255,.22);
  overflow: visible;
}
.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(84,58,38,0.06), rgba(84,58,38,0.12), rgba(84,58,38,0.06));
  pointer-events: none;
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 14% 18%, rgba(201, 211, 190, 0.10), transparent 38%),
              radial-gradient(circle at 84% 28%, rgba(237, 229, 214, 0.12), transparent 38%);
  pointer-events: none;
  z-index: 0;
}
.brand { display: flex; align-items: center; text-decoration: none; position: relative; z-index: 3; padding-bottom: 2px; }
.brand img { width: 194px; height: auto; filter: saturate(1.18) contrast(1.12); }
.header-vine {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -18px;
  z-index: 2;
  pointer-events: none;
}
.header-vine img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0.92;
  transform: scale(0.91);
  transform-origin: center bottom;
  filter: saturate(1.10) contrast(1.06) brightness(0.98) drop-shadow(0 7px 9px rgba(95,105,57,.08));
}
.main-nav { display: flex; align-items: center; gap: clamp(.85rem, 1.8vw, 1.75rem); color: var(--walnut); font-size: 1rem; font-weight: 700; position: relative; z-index: 3; padding-top: 4.12rem; }
.main-nav a { text-decoration: none; position: relative; }
.main-nav a:not(.nav-button)::after { content: ""; position: absolute; left: 0; right: 0; bottom: -18px; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: left; transition: .22s; opacity: .55; }
.main-nav a:hover::after { transform: scaleX(1); }
.nav-button { padding: 0.68rem 1.05rem; border-radius: 999px; color: var(--cream); background: var(--sage); font-weight: 800; box-shadow: 0 10px 24px rgba(95, 105, 57, 0.2); }
.nav-toggle, .nav-toggle-label { display: none; }

.section-padding { padding: clamp(3.4rem, 6vw, 5.9rem) 0; }
.hero {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1.08fr);
  align-items: center;
  gap: clamp(2.2rem, 5vw, 5rem);
  min-height: calc(90vh - 92px);
}
.eyebrow {
  color: var(--sage-deep);
  text-transform: uppercase;
  letter-spacing: 0.17em;
  font-weight: 700;
  font-size: 0.7rem;
  margin-bottom: .8rem;
}
.hero-copy { font-size: clamp(.98rem, 1.2vw, 1.16rem); color: var(--muted); max-width: 600px; margin: 1.15rem 0 1.7rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 0.74rem 1.18rem; border-radius: 999px; text-decoration: none; font-weight: 700; font-size: .92rem; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--sage-deep); color: var(--cream); box-shadow: 0 20px 35px rgba(95, 105, 57, .2); }
.button.secondary { border: 1px solid rgba(84,58,38,.28); color: var(--walnut); background: rgba(255,255,255,.36); }
.button.full { width: 100%; margin-top: 1.3rem; }
.hero-image { position: relative; border-radius: 36px; overflow: hidden; min-height: clamp(430px, 58vh, 650px); box-shadow: var(--shadow); background: var(--beige); }
.hero-image img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.hero-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(145deg, rgba(255,253,248,.24), rgba(95,105,57,.10)); pointer-events: none; }
.hero-card { position: absolute; right: 1.3rem; bottom: 1.3rem; background: rgba(255,253,248,.88); backdrop-filter: blur(14px); border: 1px solid rgba(255,255,255,.7); border-radius: 22px; padding: 1rem 1.15rem; box-shadow: 0 14px 40px rgba(0,0,0,.13); min-width: 190px; }
.hero-card span { display: block; font-size: .82rem; color: var(--muted); }
.hero-card strong { display: block; color: var(--walnut); font-family: Georgia, serif; font-size: 1.1rem; line-height: 1.1; }

.section-intro { width: var(--container); margin: 0 auto 2.3rem; max-width: 780px; }
.section-intro.centered { text-align: center; }
.feature-band { background: linear-gradient(180deg, var(--cream), var(--ivory)); }
.feature-grid { width: var(--container); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.feature-card { padding: 1.65rem; border-radius: 24px; background: rgba(255,255,255,.52); border: 1px solid var(--line); box-shadow: 0 18px 50px rgba(84,58,38,.06); }
.icon { width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(95,105,57,.33); color: var(--sage-deep); display: grid; place-items: center; font-size: 1.55rem; margin-bottom: .95rem; background: rgba(201,211,190,.18); }
.icon img { width: 24px; height: 24px; object-fit: contain; display: block; }
.feature-card p { color: var(--muted); }

.about { width: var(--container); margin: 0 auto; display: grid; grid-template-columns: .82fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.about-art { border-radius: 34px; overflow: hidden; box-shadow: var(--shadow); transform: rotate(-1deg); background: var(--beige); }
.about-art img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.about-copy { max-width: 610px; }
.about-copy p:not(.eyebrow) { color: var(--muted); margin-top: 1rem; font-size: .98rem; }
.text-link { display: inline-block; color: var(--sage-deep); font-weight: 800; margin-top: 1.35rem; text-decoration: none; border-bottom: 1px solid rgba(95,105,57,.35); }

.environment { background: var(--beige); }
.image-story-grid { width: var(--container); margin: 0 auto; display: grid; grid-template-columns: 1.1fr .9fr; gap: 1.1rem; }
.image-story { background: var(--cream); border-radius: 30px; overflow: hidden; border: 1px solid rgba(84,58,38,.11); box-shadow: 0 18px 45px rgba(84,58,38,.07); }
.image-story.large { grid-row: span 2; }
.image-story img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.image-story.large img { aspect-ratio: 5/5.25; }
.image-story div { padding: 1.35rem; }
.image-story p { color: var(--muted); }

.program { background: var(--sage-deep); color: var(--cream); }
.program .eyebrow, .program h2, .program h3 { color: var(--cream); }
.program .section-intro p:not(.eyebrow) { color: rgba(255,253,248,.78); }
.program-grid { width: var(--container); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,253,248,.18); border: 1px solid rgba(255,253,248,.18); border-radius: 30px; overflow: hidden; }
.program-item { background: var(--sage-deep); padding: 1.6rem; min-height: 178px; }
.program-item span { color: var(--sage-soft); font-weight: 800; letter-spacing: .12em; font-size: .82rem; }
.program-item h3 { margin-top: .85rem; }
.program-item p { color: rgba(255,253,248,.77); }

.gallery { background: var(--ivory); }
.gallery-grid { width: var(--container); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: .85rem; }
.gallery-grid img { width: 100%; height: 280px; object-fit: cover; border-radius: 22px; box-shadow: 0 16px 38px rgba(84,58,38,.08); }

.admissions { background: linear-gradient(180deg, var(--ivory), var(--cream)); }
.admissions-card { width: var(--container); margin: 0 auto; border-radius: 38px; background: var(--cream); border: 1px solid var(--line); box-shadow: var(--shadow); padding: clamp(2rem, 5vw, 4rem); display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem; align-items: center; }
.admissions-card p:not(.eyebrow) { color: var(--muted); margin-top: 1.2rem; }
.admissions-steps { display: grid; gap: .85rem; }
.admissions-steps div { display: flex; align-items: center; gap: 1rem; padding: 1rem; border-radius: 22px; background: var(--ivory); border: 1px solid rgba(84,58,38,.09); }
.admissions-steps span { flex: 0 0 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; color: var(--cream); background: var(--sage); font-weight: 800; }
.admissions-steps p { margin: 0 !important; color: var(--walnut) !important; font-weight: 700; }

.contact { background: var(--cream); }
.contact-panel { width: var(--container); margin: 0 auto; display: grid; grid-template-columns: 1fr .7fr; gap: 2rem; border-radius: 38px; background: linear-gradient(135deg, rgba(201,211,190,.38), rgba(237,229,214,.44)); border: 1px solid rgba(84,58,38,.12); padding: clamp(2rem, 5vw, 4rem); }
.contact-copy p:not(.eyebrow) { color: var(--muted); margin-top: 1.1rem; }
.contact-details { align-self: center; background: rgba(255,253,248,.7); border: 1px solid rgba(255,255,255,.72); border-radius: 28px; padding: 1.7rem; }
.contact-line { display: block; font-family: Georgia, serif; color: var(--walnut); font-size: clamp(1.05rem, 1.5vw, 1.35rem); overflow-wrap: anywhere; text-decoration: none; border-bottom: 1px solid rgba(84,58,38,.2); padding-bottom: .9rem; margin-bottom: .9rem; }
.contact-details p { color: var(--muted); }

.site-footer {
  background:
    radial-gradient(circle at 16% 18%, rgba(247,239,214,.16), transparent 20%),
    radial-gradient(circle at 76% 70%, rgba(91,100,57,.22), transparent 28%),
    radial-gradient(circle at 48% 42%, rgba(123,133,79,.18), transparent 32%),
    linear-gradient(180deg, #738149 0%, #65723d 56%, #596534 100%);
  color: rgba(255,249,238,.92);
  padding: 2.1rem max(24px, calc((100vw - 1120px)/2)) 0.95rem;
  box-shadow: inset 0 1px 0 rgba(255,251,240,.10), inset 0 -1px 0 rgba(61,67,38,.16);
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 16%, rgba(249,241,218,.17) 0 2.2px, transparent 2.8px),
    radial-gradient(circle at 22% 62%, rgba(92,101,57,.14) 0 1.8px, transparent 2.4px),
    radial-gradient(circle at 46% 26%, rgba(247,238,214,.14) 0 1.8px, transparent 2.3px),
    radial-gradient(circle at 67% 74%, rgba(83,92,50,.13) 0 2px, transparent 2.7px),
    radial-gradient(circle at 88% 24%, rgba(248,240,216,.13) 0 1.7px, transparent 2.4px),
    radial-gradient(circle at 94% 84%, rgba(88,96,55,.12) 0 1.5px, transparent 2.1px),
    repeating-linear-gradient(0deg, rgba(248,240,216,.03) 0 1px, rgba(89,101,56,.022) 1px 4px),
    repeating-linear-gradient(90deg, rgba(248,240,216,.022) 0 1px, transparent 1px 6px);
  background-size: 200px 150px, 210px 165px, 240px 170px, 260px 180px, 220px 160px, 240px 175px, 100% 100%, 100% 100%;
  opacity: 1;
  mix-blend-mode: soft-light;
  pointer-events: none;
}
.site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,249,236,.10), transparent 24%),
    radial-gradient(circle at 18% 38%, rgba(246,236,210,.09), transparent 18%),
    radial-gradient(circle at 80% 78%, rgba(76,85,45,.08), transparent 22%),
    linear-gradient(180deg, rgba(255,250,240,.055), transparent 26%);
  opacity: .95;
  pointer-events: none;
}
.footer-inner { display: grid; grid-template-columns: 1.2fr .75fr .85fr; gap: 2rem; position: relative; z-index: 1; }
.site-footer h2, .site-footer h3 { color: #fff9ee; }
.site-footer h2 { font-size: 1.4rem; margin: 0 0 .55rem; }
.site-footer h3 { font-size: .84rem; margin: 0 0 .6rem; font-family: ui-sans-serif, system-ui, sans-serif; text-transform: uppercase; letter-spacing: .14em; }
.site-footer p { color: rgba(255,249,238,.94); }
.site-footer a { display: block; color: rgba(255,249,238,.94); text-decoration: none; margin: .28rem 0; }
.copyright { margin-top: 1.55rem; padding-top: .9rem; border-top: 1px solid rgba(245,236,210,.20); font-size: .86rem; color: rgba(245,236,210,.78); position: relative; z-index: 1; }

.reveal { animation: fadeUp .8s ease both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }


.hero-image img { object-position: center center; }
.gallery-grid img:nth-child(1) { object-position: center center; }
.gallery-grid img:nth-child(2) { object-position: center center; }
.gallery-grid img:nth-child(3) { object-position: center center; }
.image-story.large img { object-position: center center; }

@media (max-width: 920px) {
  .site-header { min-height: 82px; padding: .45rem 20px .55rem; align-items: center; }
  .header-vine { display: none; }
  .brand img { width: 143px; }
  .nav-toggle-label { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(84,58,38,.16); }
  .nav-toggle-label span, .nav-toggle-label span::before, .nav-toggle-label span::after { display: block; width: 20px; height: 2px; background: var(--walnut); position: relative; transition: .2s; }
  .nav-toggle-label span::before, .nav-toggle-label span::after { content: ""; position: absolute; left: 0; }
  .nav-toggle-label span::before { top: -6px; }
  .nav-toggle-label span::after { top: 6px; }
  .main-nav { position: absolute; top: 78px; left: 0; right: 0; background: rgba(248,245,238,.98); border-bottom: 1px solid var(--line); padding: 1rem 22px 1.4rem; display: grid; gap: .95rem; transform-origin: top; transform: scaleY(0); opacity: 0; pointer-events: none; transition: .2s ease; }
  .nav-toggle:checked ~ .main-nav { transform: scaleY(1); opacity: 1; pointer-events: auto; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 4.2rem; }
  .hero-image { min-height: 430px; }
  .feature-grid, .program-grid, .gallery-grid, .admissions-card, .contact-panel, .footer-inner { grid-template-columns: 1fr; }
  .about { grid-template-columns: 1fr; }
  .image-story-grid { grid-template-columns: 1fr; }
  .image-story.large { grid-row: auto; }
  .gallery-grid img { height: 260px; }
}

@media (max-width: 560px) {
  :root { --container: min(100vw - 28px, 1120px); }
  h1 { font-size: clamp(1.8rem, 9.6vw, 2.8rem); }
  h2 { font-size: clamp(1.75rem, 8.6vw, 2.55rem); }
  .section-padding { padding: 3.8rem 0; }
  .hero-actions .button { width: 100%; }
  .hero-image { min-height: 360px; border-radius: 28px; }
  .hero-card { left: 1rem; right: 1rem; }
  .feature-card, .program-item { padding: 1.55rem; }
  .admissions-card, .contact-panel { border-radius: 28px; padding: 1.5rem; }
  .site-footer { padding: 1.6rem 20px .85rem; }
  .gallery-grid { gap: .7rem; }
  .gallery-grid img { height: 230px; border-radius: 18px; }
}


/* Multi-page refinement */
.sub-page main {
  padding-top: 2.2rem;
}

.home-pathways {
  background: linear-gradient(180deg, var(--ivory), var(--cream));
}

.pathway-grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.pathway-card {
  text-decoration: none;
  color: inherit;
  background: rgba(255, 255, 255, .56);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 1.55rem;
  box-shadow: 0 18px 50px rgba(84, 58, 38, .06);
  transition: transform .2s ease, box-shadow .2s ease;
}

.pathway-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 60px rgba(84, 58, 38, .10);
}

.pathway-card span {
  color: var(--sage-deep);
  font-weight: 800;
  letter-spacing: .12em;
  font-size: .78rem;
}

.pathway-card h3 {
  margin-top: .8rem;
}

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

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

@media (max-width: 560px) {
  .pathway-grid {
    grid-template-columns: 1fr;
  }
  .sub-page main {
    padding-top: 0;
  }
}


/* Home hero widened for more breathing room */
.home-page .hero {
  width: min(1220px, calc(100vw - 44px));
  grid-template-columns: minmax(0, 1.02fr) minmax(430px, 0.98fr);
  gap: clamp(1.8rem, 4vw, 4.2rem);
}
.home-page .hero-copy {
  max-width: 680px;
}


/* v30 home watercolor update */
.home-page .hero-image { background: #efe7dc; }


/* v31: stronger separation between header and home background */
.home-page {
  background: #f1ece3;
}

.site-header {
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.74), rgba(246, 240, 231, 0.58));
  -webkit-backdrop-filter: blur(42px) saturate(1.42) contrast(1.06);
  backdrop-filter: blur(42px) saturate(1.42) contrast(1.06);
  border-bottom: 1px solid rgba(121, 128, 82, 0.10);
  box-shadow: 0 14px 34px rgba(84, 58, 38, 0.045), inset 0 1px 0 rgba(255,255,255,.42);
}

.site-header::before {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.02)),
    radial-gradient(circle at 13% 18%, rgba(201, 211, 190, 0.18), transparent 39%),
    radial-gradient(circle at 84% 24%, rgba(237, 229, 214, 0.20), transparent 40%);
}

.site-header::after {
  background: linear-gradient(90deg, rgba(84,58,38,0.06), rgba(121,128,82,0.18), rgba(84,58,38,0.06));
}

.home-page .hero {
  position: relative;
  z-index: 1;
}


/* v32: brighter page background + framed watercolor artwork */
.home-page {
  background: #fbf8f2;
}

.site-header {
  background: linear-gradient(180deg, rgba(244, 238, 228, 0.78), rgba(239, 232, 221, 0.62));
  -webkit-backdrop-filter: blur(42px) saturate(1.42) contrast(1.06);
  backdrop-filter: blur(42px) saturate(1.42) contrast(1.06);
  border-bottom: 1px solid rgba(121, 128, 82, 0.11);
  box-shadow: 0 14px 34px rgba(84, 58, 38, 0.05), inset 0 1px 0 rgba(255,255,255,.42);
}

.site-header::before {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.02)),
    radial-gradient(circle at 13% 18%, rgba(201, 211, 190, 0.18), transparent 39%),
    radial-gradient(circle at 84% 24%, rgba(228, 219, 205, 0.22), transparent 40%);
}

.home-page .hero-image {
  background: #f6efe4;
  padding: 14px;
  border-radius: 38px;
  border: 1px solid rgba(84,58,38,.12);
  box-shadow:
    0 18px 48px rgba(84,58,38,.10),
    0 0 0 8px rgba(255,253,248,.82),
    inset 0 1px 0 rgba(255,255,255,.66);
}

.home-page .hero-image img {
  border-radius: 28px;
}

.home-page .hero-image::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 28px;
  border: 1px solid rgba(121,128,82,.16);
  pointer-events: none;
  z-index: 2;
}

.home-page .hero-image::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255,253,248,.14), rgba(95,105,57,.05));
  pointer-events: none;
  z-index: 1;
}


/* v33: brighter page + more elevated framed watercolor art */
.home-page {
  background: #fdfbf7;
}

.site-header {
  background: linear-gradient(180deg, rgba(243, 236, 225, 0.80), rgba(236, 229, 218, 0.64));
  border-bottom: 1px solid rgba(121, 128, 82, 0.10);
  box-shadow:
    0 12px 28px rgba(84, 58, 38, 0.045),
    inset 0 1px 0 rgba(255,255,255,.46);
}

.home-page .hero-image {
  position: relative;
  background: linear-gradient(180deg, #fbf7f0 0%, #f4ede2 100%);
  padding: 16px;
  border-radius: 40px;
  border: 1px solid rgba(94, 78, 58, 0.12);
  box-shadow:
    0 34px 70px rgba(84,58,38,.12),
    0 16px 28px rgba(84,58,38,.08),
    0 3px 8px rgba(84,58,38,.05),
    0 0 0 10px rgba(255,253,249,.92),
    inset 0 1px 0 rgba(255,255,255,.78),
    inset 0 -1px 0 rgba(208,194,173,.35);
  transform: translateY(-3px);
}

.home-page .hero-image img {
  display: block;
  border-radius: 30px;
  box-shadow: 0 10px 22px rgba(84,58,38,.06);
}

.home-page .hero-image::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 30px;
  border: 1px solid rgba(121,128,82,.18);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.24);
  pointer-events: none;
  z-index: 2;
}

.home-page .hero-image::after {
  content: "";
  position: absolute;
  inset: auto 22px -16px 22px;
  height: 44px;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(84,58,38,.18) 0%, rgba(84,58,38,.08) 42%, rgba(84,58,38,0) 72%);
  filter: blur(10px);
  pointer-events: none;
  z-index: 0;
}


/* v34: stronger floating effect for watercolor hero artwork */
.home-page .hero-image {
  box-shadow:
    0 46px 90px rgba(84,58,38,.16),
    0 24px 42px rgba(84,58,38,.10),
    0 6px 14px rgba(84,58,38,.06),
    0 0 0 10px rgba(255,253,249,.94),
    inset 0 1px 0 rgba(255,255,255,.82),
    inset 0 -1px 0 rgba(208,194,173,.38);
  transform: translateY(-7px);
}

.home-page .hero-image img {
  box-shadow: 0 14px 28px rgba(84,58,38,.08);
}

.home-page .hero-image::after {
  inset: auto 18px -24px 18px;
  height: 56px;
  background: radial-gradient(ellipse at center, rgba(84,58,38,.24) 0%, rgba(84,58,38,.12) 40%, rgba(84,58,38,0) 74%);
  filter: blur(14px);
}


/* v35: warmer What Matters section */
.card-label {
  margin: 0 0 .55rem;
  color: var(--sage-deep);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .72rem;
  font-weight: 800;
}

.feature-card h3 {
  line-height: 1.22;
}

.feature-card p:last-child {
  line-height: 1.68;
}


/* v36: What Matters section with soft watercolor background */
.feature-band-photo {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(180deg, #f8f5ef 0%, #fdfbf7 100%);
}

.feature-band-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(253, 251, 247, 0.48), rgba(253, 251, 247, 0.56)),
    url('assets/what-matters-bg.jpg');
  background-size: cover;
  background-position: center center;
  opacity: 0.90;
  transform: scale(1.02);
  z-index: -2;
}

.feature-band-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.04) 38%, rgba(255,255,255,0.12) 100%);
  z-index: -1;
}

.feature-band-photo .feature-card {
  background: rgba(255, 253, 249, 0.76);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(118, 111, 94, 0.15);
  box-shadow: 0 22px 54px rgba(84,58,38,.08);
}

.feature-band-photo .section-intro,
.feature-band-photo .feature-grid {
  position: relative;
  z-index: 1;
}


/* v38: header updated to a more translucent frosted-glass look */
.site-header {
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.44) 0%, rgba(246, 239, 228, 0.28) 100%);
  -webkit-backdrop-filter: blur(30px) saturate(1.55) contrast(1.08);
  backdrop-filter: blur(30px) saturate(1.55) contrast(1.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    0 14px 34px rgba(84, 58, 38, 0.035),
    inset 0 1px 0 rgba(255,255,255,.55),
    inset 0 -1px 0 rgba(116, 125, 85, 0.06);
}

.site-header::before {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.24) 0%, rgba(255,255,255,0.06) 45%, rgba(255,255,255,0.02) 100%),
    radial-gradient(circle at 14% 24%, rgba(209, 220, 199, 0.22), transparent 35%),
    radial-gradient(circle at 78% 20%, rgba(239, 233, 222, 0.18), transparent 36%),
    radial-gradient(circle at 52% -10%, rgba(255,255,255,0.18), transparent 30%);
  opacity: 1;
}

.site-header::after {
  background: linear-gradient(90deg, rgba(255,255,255,0.16), rgba(121,128,82,0.14), rgba(255,255,255,0.10));
}

.main-nav a {
  text-shadow: 0 1px 0 rgba(255,255,255,.22);
}

.nav-cta {
  box-shadow:
    0 10px 22px rgba(95,105,57,.14),
    inset 0 1px 0 rgba(255,255,255,.18);
}


/* v39: softer, more natural handcrafted frosted header */
.site-header {
  background:
    linear-gradient(180deg,
      rgba(255, 252, 247, 0.34) 0%,
      rgba(247, 241, 232, 0.24) 42%,
      rgba(239, 232, 221, 0.18) 100%);
  -webkit-backdrop-filter: blur(24px) saturate(1.16) contrast(1.02);
  backdrop-filter: blur(24px) saturate(1.16) contrast(1.02);
  border-bottom: 1px solid rgba(136, 145, 98, 0.08);
  box-shadow:
    0 12px 28px rgba(84, 58, 38, 0.028),
    inset 0 1px 0 rgba(255,255,255,.34),
    inset 0 -1px 0 rgba(136, 145, 98, 0.04);
}

.site-header::before {
  background:
    linear-gradient(180deg,
      rgba(255,255,255,0.12) 0%,
      rgba(255,255,255,0.03) 55%,
      rgba(255,255,255,0.00) 100%),
    radial-gradient(circle at 12% 20%, rgba(203, 214, 193, 0.18), transparent 34%),
    radial-gradient(circle at 28% 68%, rgba(237, 230, 217, 0.13), transparent 28%),
    radial-gradient(circle at 70% 18%, rgba(229, 237, 222, 0.12), transparent 30%),
    radial-gradient(circle at 88% 34%, rgba(223, 214, 198, 0.14), transparent 34%),
    radial-gradient(circle at 54% -8%, rgba(255,255,255,0.10), transparent 24%);
  opacity: 1;
}

.site-header::after {
  background: linear-gradient(90deg,
    rgba(118, 126, 82, 0.05),
    rgba(168, 175, 135, 0.12),
    rgba(118, 126, 82, 0.05));
}

.main-nav a {
  text-shadow: 0 1px 0 rgba(255,255,255,.16);
}

.nav-cta {
  box-shadow:
    0 9px 18px rgba(95,105,57,.11),
    inset 0 1px 0 rgba(255,255,255,.14);
}


/* v40: dreamier, softer white mist glass header */
.site-header {
  background:
    linear-gradient(180deg,
      rgba(255, 255, 252, 0.46) 0%,
      rgba(252, 249, 243, 0.34) 36%,
      rgba(247, 243, 236, 0.26) 68%,
      rgba(242, 236, 227, 0.20) 100%);
  -webkit-backdrop-filter: blur(28px) saturate(1.12) brightness(1.05);
  backdrop-filter: blur(28px) saturate(1.12) brightness(1.05);
  border-bottom: 1px solid rgba(255,255,255,0.34);
  box-shadow:
    0 14px 30px rgba(125, 112, 96, 0.035),
    inset 0 1px 0 rgba(255,255,255,0.52),
    inset 0 -1px 0 rgba(156, 165, 122, 0.05);
}

.site-header::before {
  background:
    linear-gradient(180deg,
      rgba(255,255,255,0.28) 0%,
      rgba(255,255,255,0.12) 24%,
      rgba(255,255,255,0.05) 58%,
      rgba(255,255,255,0.00) 100%),
    radial-gradient(circle at 10% 12%, rgba(255,255,255,0.34), transparent 24%),
    radial-gradient(circle at 24% 42%, rgba(245, 244, 238, 0.18), transparent 28%),
    radial-gradient(circle at 42% 10%, rgba(235, 243, 231, 0.15), transparent 22%),
    radial-gradient(circle at 62% 24%, rgba(255,255,255,0.22), transparent 26%),
    radial-gradient(circle at 82% 18%, rgba(239, 245, 236, 0.16), transparent 24%),
    radial-gradient(circle at 92% 42%, rgba(255,255,255,0.18), transparent 26%),
    radial-gradient(circle at 52% -10%, rgba(255,255,255,0.26), transparent 22%);
  opacity: 1;
  filter: blur(0.2px);
}

.site-header::after {
  background:
    linear-gradient(90deg,
      rgba(255,255,255,0.12),
      rgba(175, 185, 144, 0.14),
      rgba(255,255,255,0.12));
  opacity: .95;
}

.main-nav a {
  text-shadow: 0 1px 0 rgba(255,255,255,.24);
}

/* v47: softer pale-green header with higher transparency */
.site-header {
  background:
    linear-gradient(180deg,
      rgba(233, 241, 228, 0.36) 0%,
      rgba(226, 236, 221, 0.28) 36%,
      rgba(220, 232, 214, 0.21) 68%,
      rgba(214, 227, 208, 0.15) 100%);
  -webkit-backdrop-filter: blur(30px) saturate(1.08) brightness(1.08);
  backdrop-filter: blur(30px) saturate(1.08) brightness(1.08);
  border-bottom: 1px solid rgba(188, 205, 176, 0.24);
  box-shadow:
    0 14px 30px rgba(125, 112, 96, 0.028),
    inset 0 1px 0 rgba(255,255,255,0.42),
    inset 0 -1px 0 rgba(156, 165, 122, 0.04);
}

.site-header::before {
  background:
    linear-gradient(180deg,
      rgba(255,255,255,0.22) 0%,
      rgba(255,255,255,0.10) 24%,
      rgba(255,255,255,0.04) 58%,
      rgba(255,255,255,0.00) 100%),
    radial-gradient(circle at 10% 12%, rgba(240,247,236,0.30), transparent 24%),
    radial-gradient(circle at 24% 42%, rgba(223,236,214,0.20), transparent 28%),
    radial-gradient(circle at 42% 10%, rgba(214,229,206,0.18), transparent 22%),
    radial-gradient(circle at 62% 24%, rgba(248,251,245,0.20), transparent 26%),
    radial-gradient(circle at 82% 18%, rgba(220,234,213,0.16), transparent 24%),
    radial-gradient(circle at 92% 42%, rgba(244,248,240,0.16), transparent 26%),
    radial-gradient(circle at 52% -10%, rgba(255,255,255,0.22), transparent 22%);
  opacity: 1;
  filter: blur(0.3px);
}

.site-header::after {
  background:
    linear-gradient(90deg,
      rgba(255,255,255,0.10),
      rgba(166, 186, 151, 0.16),
      rgba(255,255,255,0.10));
  opacity: .82;
}

.main-nav a {
  text-shadow: 0 1px 0 rgba(255,255,255,.28);
}


/* v49: enlarge the hero location line */
.hero-text .eyebrow {
  font-size: clamp(.86rem, 1.05vw, 1rem);
  letter-spacing: .16em;
  margin-bottom: 1rem;
}


/* v52: About page story layout */
.about-page {
  background:
    radial-gradient(circle at 12% 18%, rgba(224, 236, 216, .24), transparent 30%),
    radial-gradient(circle at 86% 18%, rgba(255, 249, 238, .62), transparent 34%),
    linear-gradient(180deg, #fdfbf7 0%, #f7f2ea 100%);
}

.about-story {
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .88fr);
  gap: clamp(2.4rem, 5vw, 5.4rem);
  align-items: center;
}

.about-story .about-copy {
  max-width: 690px;
}

.about-story .about-copy h2 {
  max-width: 640px;
}

.about-story .about-copy p:not(.eyebrow) {
  font-size: clamp(1rem, 1.05vw, 1.08rem);
  line-height: 1.78;
  color: rgba(84, 58, 38, .76);
  margin-top: 1.05rem;
}

.about-story .about-art {
  transform: rotate(.6deg);
  border-radius: 38px;
  padding: 13px;
  background: linear-gradient(180deg, rgba(255,253,249,.94), rgba(241,233,219,.88));
  border: 1px solid rgba(84,58,38,.13);
  box-shadow:
    0 34px 72px rgba(84,58,38,.12),
    0 12px 24px rgba(84,58,38,.07),
    inset 0 1px 0 rgba(255,255,255,.78);
}

.about-story .about-art img {
  border-radius: 28px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center center;
  box-shadow: inset 0 0 0 1px rgba(121,128,82,.16);
}

@media (max-width: 920px) {
  .about-story {
    grid-template-columns: 1fr;
  }
  .about-story .about-copy {
    max-width: none;
  }
  .about-story .about-art {
    max-width: 560px;
    margin: 0 auto;
  }
}


/* v55: About page refined spacing + one-large-one-small image overlap */
.about-story.section-padding {
  padding-top: clamp(2.4rem, 4vw, 3.4rem);
  padding-bottom: clamp(4.8rem, 7vw, 6.2rem);
}

.about-story {
  align-items: start;
}

.about-story .about-copy .eyebrow {
  font-size: clamp(.88rem, 1.05vw, 1rem);
  letter-spacing: .16em;
  margin-bottom: .85rem;
}

.about-story .about-copy h2 {
  margin-top: 0;
}

.about-image-stack {
  position: relative;
  max-width: 590px;
  margin-left: auto;
  padding: .35rem 1rem 7.2rem 0;
}

.about-image-stack .about-art {
  margin: 0;
}

.about-art-primary {
  width: 88%;
  transform: rotate(.3deg);
}

.about-art-primary img {
  aspect-ratio: 4 / 5.15 !important;
  object-position: center center;
}

.about-art-secondary {
  position: absolute;
  width: 43%;
  right: 0;
  bottom: 0;
  margin: 0 !important;
  transform: rotate(2.15deg);
  padding: 10px !important;
  border-radius: 28px !important;
  box-shadow:
    0 26px 56px rgba(84,58,38,.14),
    0 10px 22px rgba(84,58,38,.08),
    inset 0 1px 0 rgba(255,255,255,.78) !important;
}

.about-art-secondary img {
  border-radius: 18px !important;
  aspect-ratio: 4 / 4.65 !important;
  object-fit: cover;
  object-position: center center;
}

@media (max-width: 920px) {
  .about-story.section-padding {
    padding-top: 2rem;
  }

  .about-image-stack {
    max-width: 560px;
    margin: .35rem auto 0;
    padding: .2rem .4rem 6rem 0;
  }

  .about-art-primary {
    width: 86%;
  }

  .about-art-secondary {
    width: 44%;
    right: 0;
    bottom: 0;
  }
}


/* v56: About page add third small image and refine lower space */
.about-image-stack {
  max-width: 610px;
  padding: .25rem 1rem 8.4rem 0;
}

.about-art-primary {
  width: 88%;
}

.about-art-secondary {
  width: 41%;
  right: 0;
  bottom: .25rem;
  z-index: 3;
}

.about-art-tertiary {
  position: absolute;
  width: 34%;
  left: 4.5%;
  bottom: -1.35rem;
  margin: 0 !important;
  transform: rotate(-2.4deg);
  padding: 10px !important;
  border-radius: 26px !important;
  background: rgba(255,252,248,.92);
  box-shadow:
    0 24px 54px rgba(84,58,38,.15),
    0 10px 22px rgba(84,58,38,.09),
    inset 0 1px 0 rgba(255,255,255,.8) !important;
  z-index: 2;
}

.about-art-tertiary img {
  display: block;
  width: 100%;
  border-radius: 16px !important;
  aspect-ratio: 4 / 4.2 !important;
  object-fit: cover;
  object-position: center center;
}

@media (max-width: 920px) {
  .about-image-stack {
    max-width: 560px;
    padding: .2rem .4rem 7.4rem 0;
  }

  .about-art-secondary {
    width: 42%;
    right: 0;
    bottom: .2rem;
  }

  .about-art-tertiary {
    width: 36%;
    left: 3.5%;
    bottom: -.75rem;
  }
}


/* v57: About page align width with home page and match watercolor floating frames */
.about-story {
  width: min(1220px, calc(100vw - 44px));
  grid-template-columns: minmax(0, 1fr) minmax(400px, .96fr);
  gap: clamp(2rem, 4vw, 4.2rem);
}

.about-story .about-copy {
  max-width: 720px;
}

.about-story .about-copy h2 {
  max-width: 700px;
}

.about-image-stack {
  max-width: 660px;
  padding: .2rem 1.2rem 9.8rem 0;
}

.about-story .about-art {
  position: relative;
  overflow: visible;
  --frame-pad: 14px;
  border-radius: 40px !important;
  padding: var(--frame-pad) !important;
  background: linear-gradient(180deg, #fbf7f0 0%, #f4ede2 100%) !important;
  border: 1px solid rgba(94, 78, 58, 0.12) !important;
  box-shadow:
    0 46px 90px rgba(84,58,38,.16),
    0 24px 42px rgba(84,58,38,.10),
    0 6px 14px rgba(84,58,38,.06),
    0 0 0 10px rgba(255,253,249,.94),
    inset 0 1px 0 rgba(255,255,255,.82),
    inset 0 -1px 0 rgba(208,194,173,.38) !important;
}

.about-story .about-art img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  border-radius: 30px !important;
  box-shadow: 0 14px 28px rgba(84,58,38,.08);
}

.about-story .about-art::before {
  content: "";
  position: absolute;
  inset: var(--frame-pad);
  border-radius: calc(40px - var(--frame-pad));
  border: 1px solid rgba(121,128,82,.18);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.24);
  pointer-events: none;
  z-index: 2;
}

.about-story .about-art::after {
  content: "";
  position: absolute;
  inset: auto 18px -24px 18px;
  height: 56px;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(84,58,38,.24) 0%, rgba(84,58,38,.12) 40%, rgba(84,58,38,0) 74%);
  filter: blur(14px);
  pointer-events: none;
  z-index: 0;
}

.about-art-primary {
  width: 88%;
  transform: rotate(.35deg);
}

.about-art-primary img {
  aspect-ratio: 4 / 5.15 !important;
}

.about-art-secondary,
.about-art-tertiary {
  --frame-pad: 10px;
  border-radius: 30px !important;
}

.about-art-secondary::before,
.about-art-tertiary::before {
  border-radius: calc(30px - var(--frame-pad));
}

.about-art-secondary::after,
.about-art-tertiary::after {
  inset: auto 12px -18px 12px;
  height: 42px;
  filter: blur(10px);
}

.about-art-secondary {
  width: 39%;
  right: 0;
  bottom: .6rem;
  transform: rotate(2.2deg);
  z-index: 3;
}

.about-art-secondary img {
  border-radius: 18px !important;
  aspect-ratio: 4 / 4.65 !important;
}

.about-art-tertiary {
  width: 41%;
  left: 5%;
  bottom: -2.3rem;
  transform: rotate(-2.6deg);
  z-index: 2;
}

.about-art-tertiary img {
  border-radius: 18px !important;
  aspect-ratio: 4 / 4.15 !important;
  object-position: center center;
}

@media (max-width: 920px) {
  .about-story {
    width: var(--container);
    grid-template-columns: 1fr;
  }

  .about-image-stack {
    max-width: 600px;
    padding: .2rem .4rem 8.6rem 0;
  }

  .about-art-secondary {
    width: 40%;
    right: 0;
    bottom: .55rem;
  }

  .about-art-tertiary {
    width: 42%;
    left: 4%;
    bottom: -1.5rem;
  }
}


/* v59: about page gallery below text, matching home-page framing */
.about-story.section-padding {
  padding-top: clamp(2.2rem, 4vw, 3.2rem);
}

.about-story {
  width: min(1220px, calc(100vw - 44px));
  display: block;
}

.about-story .about-copy {
  max-width: 980px;
}

.about-story .about-copy h2 {
  margin-bottom: 1rem;
}

.about-story .about-copy p:last-child {
  margin-bottom: 0;
}

.about-gallery {
  margin-top: clamp(2rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 2vw, 2rem);
  align-items: start;
}

.about-gallery-card {
  margin: 0;
}

.about-gallery-art {
  position: relative;
  overflow: visible;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.about-gallery-art::before {
  content: none;
}

.about-gallery-art::after {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  bottom: -18px;
  height: 42px;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(84,58,38,.22) 0%, rgba(84,58,38,.10) 38%, rgba(84,58,38,0) 78%);
  filter: blur(12px);
  pointer-events: none;
  z-index: 0;
}

.about-gallery-art img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5.15;
  object-fit: cover;
  object-position: center center;
  border-radius: 28px;
  box-shadow:
    0 26px 44px rgba(84,58,38,.14),
    0 12px 24px rgba(84,58,38,.10);
  position: relative;
  z-index: 1;
  transition: transform .25s ease, box-shadow .25s ease;
}

.about-gallery-art:hover img {
  transform: translateY(-4px);
  box-shadow:
    0 32px 52px rgba(84,58,38,.16),
    0 16px 28px rgba(84,58,38,.12);
}

.about-gallery-card figcaption {
  margin-top: 1.1rem;
  text-align: center;
  font-size: .96rem;
  letter-spacing: .32em;
  color: rgba(84,58,38,.80);
  font-weight: 600;
}

@media (max-width: 920px) {
  .about-story {
    width: var(--container);
  }

  .about-gallery {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }
}


/* v62: Program page */
.program-page {
  background:
    radial-gradient(circle at 12% 16%, rgba(224, 236, 216, .26), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(255, 249, 238, .64), transparent 34%),
    linear-gradient(180deg, #fdfbf7 0%, #f7f2ea 100%);
}

.program-hero {
  width: min(1220px, calc(100vw - 44px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);
  gap: clamp(2rem, 4vw, 4.2rem);
  align-items: center;
  padding-top: clamp(2.4rem, 4vw, 3.4rem);
}

.program-hero-copy {
  max-width: 710px;
}

.program-hero-copy .eyebrow {
  font-size: clamp(.88rem, 1.05vw, 1rem);
  letter-spacing: .16em;
}

.program-hero-copy p:not(.eyebrow) {
  color: rgba(84,58,38,.76);
  font-size: clamp(1rem, 1.18vw, 1.16rem);
  line-height: 1.75;
  margin: 1.2rem 0 1.6rem;
  max-width: 680px;
}

.program-hero-art,
.curriculum-art {
  position: relative;
  overflow: visible;
  padding: 10px;
  border-radius: 32px;
  background: linear-gradient(180deg, #fbf7f0 0%, #f4ede2 100%);
  border: 1px solid rgba(84,58,38,.10);
  box-shadow:
    0 20px 42px rgba(84,58,38,.10),
    0 8px 18px rgba(84,58,38,.06),
    0 0 0 5px rgba(255,253,248,.72),
    inset 0 1px 0 rgba(255,255,255,.72);
}

.program-hero-art::before,
.curriculum-art::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 22px;
  border: 1px solid rgba(121,128,82,.13);
  pointer-events: none;
  z-index: 2;
}

.program-hero-art::after,
.curriculum-art::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: -18px;
  height: 44px;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(84,58,38,.24) 0%, rgba(84,58,38,.12) 38%, rgba(84,58,38,0) 78%);
  filter: blur(14px);
  opacity: .95;
  pointer-events: none;
}

.program-hero-art img,
.curriculum-art img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 4.75;
  object-fit: cover;
  object-position: center center;
  border-radius: 22px;
  box-shadow: 0 10px 20px rgba(84,58,38,.05);
}

.program-block,
.daily-rhythm,
.curriculum-section,
.program-values,
.program-cta {
  width: min(1220px, calc(100vw - 44px));
  margin: 0 auto;
}

.program-section-intro {
  max-width: 760px;
  margin-bottom: 2rem;
}

.program-section-intro.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.program-section-intro p:not(.eyebrow) {
  color: var(--muted);
  margin-top: 1rem;
  font-size: 1.02rem;
  line-height: 1.75;
}

.age-card-grid,
.program-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.program-card,
.value-card {
  background: rgba(255,253,249,.82);
  border: 1px solid rgba(84,58,38,.08);
  border-radius: 28px;
  padding: clamp(1.35rem, 2vw, 1.75rem);
  box-shadow: 0 26px 56px rgba(84,58,38,.10), 0 8px 22px rgba(84,58,38,.06);
}

.program-card {
  position: relative;
  transform: translateY(0);
  transition: transform .28s ease, box-shadow .28s ease;
}

.program-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 66px rgba(84,58,38,.13), 0 10px 28px rgba(84,58,38,.07);
}

.program-card h3,
.value-card h3 {
  margin-top: 0;
}

.program-card p,
.value-card p {
  color: var(--muted);
  line-height: 1.68;
  margin-top: .75rem;
}

.daily-rhythm {
  background:
    linear-gradient(180deg, rgba(255,253,249,.70), rgba(248,244,235,.72));
  border: 1px solid rgba(84,58,38,.10);
  border-radius: 40px;
  padding-left: clamp(1.4rem, 3vw, 2.4rem);
  padding-right: clamp(1.4rem, 3vw, 2.4rem);
  box-shadow: 0 24px 60px rgba(84,58,38,.07);
}

.rhythm-timeline {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: .6rem;
  align-items: stretch;
}

.rhythm-timeline article {
  position: relative;
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(84,58,38,.10);
  border-radius: 22px;
  padding: 1.1rem;
  min-height: 170px;
}

.rhythm-timeline article::before {
  content: "";
  position: absolute;
  top: 1.3rem;
  left: 1.1rem;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--sage);
  box-shadow: 0 0 0 5px rgba(121,128,82,.12);
}

.rhythm-timeline span {
  display: block;
  margin-left: 1.15rem;
  color: var(--walnut);
  font-weight: 800;
  line-height: 1.2;
}

.rhythm-timeline p {
  margin-top: .8rem;
  color: var(--muted);
  line-height: 1.58;
  font-size: .93rem;
}

.curriculum-section {
  display: grid;
  grid-template-columns: minmax(360px, .82fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 4vw, 4.4rem);
  align-items: center;
}

.curriculum-copy p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.75;
  margin-top: 1rem;
  font-size: 1.02rem;
}

.curriculum-pill-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: .85rem;
  margin-top: 1.5rem;
}

.curriculum-pill-grid div {
  border-radius: 24px;
  background: rgba(255,253,249,.70);
  border: 1px solid rgba(84,58,38,.10);
  padding: 1.05rem 1.15rem;
  box-shadow: 0 14px 34px rgba(84,58,38,.05);
}

.curriculum-pill-grid h3 {
  margin-bottom: .35rem;
}

.curriculum-pill-grid p {
  color: var(--muted);
}

.value-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(95,105,57,.26);
  background: rgba(201,211,190,.16);
  font-size: 1.35rem;
}

.program-cta-card {
  border-radius: 40px;
  background:
    radial-gradient(circle at 12% 20%, rgba(255,253,249,.66), transparent 30%),
    linear-gradient(135deg, rgba(201,211,190,.36), rgba(237,229,214,.48));
  border: 1px solid rgba(84,58,38,.12);
  box-shadow: 0 26px 70px rgba(84,58,38,.11);
  padding: clamp(2rem, 5vw, 4rem);
  max-width: 900px;
  margin: 0 auto;
}

.program-cta-card p:not(.eyebrow) {
  color: var(--muted);
  margin: 1rem 0 1.5rem;
}

@media (max-width: 1100px) {
  .rhythm-timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .rhythm-timeline article {
    min-height: auto;
  }
}

@media (max-width: 920px) {
  .program-hero,
  .curriculum-section {
    width: var(--container);
    grid-template-columns: 1fr;
  }

  .program-block,
  .daily-rhythm,
  .program-values,
  .program-cta {
    width: var(--container);
  }

  .age-card-grid,
  .program-values-grid {
    grid-template-columns: 1fr;
  }

  .program-hero-art,
  .curriculum-art {
    max-width: 620px;
    margin: 0 auto;
  }
}

@media (max-width: 560px) {
  .rhythm-timeline {
    grid-template-columns: 1fr;
  }
}


/* v65: Program hero without buttons + ivory section background */
.program-hero {
  position: relative;
  isolation: isolate;
}

.program-hero::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: #fffdf8;
  z-index: -1;
}

.program-hero-copy p:not(.eyebrow) {
  margin-bottom: 0;
}


/* v66: Program age section refined */
.daily-rhythm .program-section-intro .eyebrow {
  font-size: clamp(.88rem, 1.05vw, 1rem);
  letter-spacing: .16em;
}

.ages-block .program-section-intro .eyebrow {
  font-size: clamp(.88rem, 1.05vw, 1rem);
  letter-spacing: .16em;
}

.program-card h3 small {
  display: block;
  margin-top: .32rem;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: .72rem;
  letter-spacing: .04em;
  color: rgba(84,58,38,.62);
  font-weight: 700;
}


/* v71: Program hero in deeper olive tone with light text */
.program-hero::before {
  background: linear-gradient(180deg, #59653a 0%, #667344 100%);
}

.program-hero-copy .eyebrow {
  color: #d9e2bf;
}

.program-hero-copy h1 {
  color: #f7f1e5;
}

.program-hero-copy p:not(.eyebrow) {
  color: rgba(247, 241, 229, 0.88);
}

.program-hero-art {
  background: linear-gradient(180deg, rgba(250,246,238,0.96) 0%, rgba(241,233,220,0.94) 100%);
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow: 0 20px 42px rgba(20, 24, 12, 0.26), 0 8px 18px rgba(20, 24, 12, 0.14);
}


/* v72: Program hero matches footer-style antique sage background */
.program-hero::before {
  background:
    radial-gradient(circle at 16% 18%, rgba(247,239,214,.16), transparent 20%),
    radial-gradient(circle at 76% 70%, rgba(91,100,57,.22), transparent 28%),
    radial-gradient(circle at 48% 42%, rgba(123,133,79,.18), transparent 32%),
    linear-gradient(180deg, #738149 0%, #65723d 56%, #596534 100%);
  box-shadow: inset 0 1px 0 rgba(255,251,240,.10), inset 0 -1px 0 rgba(61,67,38,.16);
}

.program-hero::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background-image:
    radial-gradient(circle at 10% 16%, rgba(249,241,218,.17) 0 2.2px, transparent 2.8px),
    radial-gradient(circle at 22% 62%, rgba(92,101,57,.14) 0 1.8px, transparent 2.4px),
    radial-gradient(circle at 46% 26%, rgba(247,238,214,.14) 0 1.8px, transparent 2.3px),
    radial-gradient(circle at 67% 74%, rgba(83,92,50,.13) 0 2px, transparent 2.7px),
    radial-gradient(circle at 88% 24%, rgba(248,240,216,.13) 0 1.7px, transparent 2.4px),
    radial-gradient(circle at 94% 84%, rgba(88,96,55,.12) 0 1.5px, transparent 2.1px),
    repeating-linear-gradient(0deg, rgba(248,240,216,.03) 0 1px, rgba(89,101,56,.022) 1px 4px),
    repeating-linear-gradient(90deg, rgba(248,240,216,.022) 0 1px, transparent 1px 6px),
    radial-gradient(circle at 50% 0%, rgba(255,249,236,.10), transparent 24%),
    radial-gradient(circle at 18% 38%, rgba(246,236,210,.09), transparent 18%),
    radial-gradient(circle at 80% 78%, rgba(76,85,45,.08), transparent 22%),
    linear-gradient(180deg, rgba(255,250,240,.055), transparent 26%);
  background-size: 200px 150px, 210px 165px, 240px 170px, 260px 180px, 220px 160px, 240px 175px, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%;
  mix-blend-mode: soft-light;
  opacity: .98;
  pointer-events: none;
  z-index: -1;
}

.program-hero-copy .eyebrow {
  color: #e2e8c8;
}

.program-hero-copy h1 {
  color: #fff9ee;
}

.program-hero-copy p:not(.eyebrow) {
  color: rgba(255,249,238,.9);
}


/* v73: watercolor half-transparent backgrounds for program sections 2 and 3 */
.ages-block,
.daily-rhythm {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.ages-block {
  background: linear-gradient(180deg, rgba(255,252,246,.84), rgba(248,245,238,.86));
  border: 1px solid rgba(84,58,38,.08);
  border-radius: 40px;
  padding-left: clamp(1.4rem, 3vw, 2.4rem);
  padding-right: clamp(1.4rem, 3vw, 2.4rem);
  box-shadow: 0 24px 60px rgba(84,58,38,.07);
}

.ages-block::before,
.daily-rhythm::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('assets/program-watercolor-garden.jpg');
  background-size: cover;
  background-position: center center;
  opacity: .21;
  filter: saturate(0.95) contrast(0.98);
  z-index: -2;
}

.ages-block::after,
.daily-rhythm::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,251,244,.84), rgba(247,243,235,.82)),
    radial-gradient(circle at 20% 16%, rgba(255,255,255,.26), transparent 26%),
    radial-gradient(circle at 82% 72%, rgba(235,242,223,.18), transparent 24%);
  z-index: -1;
  pointer-events: none;
}

.daily-rhythm {
  background: linear-gradient(180deg, rgba(255,253,249,.76), rgba(248,244,235,.78));
}

.ages-block .program-section-intro,
.daily-rhythm .program-section-intro,
.ages-block .age-card-grid,
.daily-rhythm .rhythm-timeline {
  position: relative;
  z-index: 1;
}

.age-card-grid .program-card,
.rhythm-timeline article {
  backdrop-filter: blur(1px);
}


/* v74: tune program hero sizing and strengthen watercolor backgrounds */
.program-hero {
  padding-top: clamp(2.2rem, 3.7vw, 3rem);
  padding-bottom: clamp(2.1rem, 3.5vw, 2.9rem);
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, .82fr);
  gap: clamp(1.8rem, 3.2vw, 3rem);
}

.program-hero-art {
  width: min(100%, 560px);
  justify-self: end;
}

.program-hero-art img {
  aspect-ratio: 4 / 4.35;
}

.ages-block,
.daily-rhythm {
  width: min(1220px, calc(100vw - 44px));
}

.ages-block::before,
.daily-rhythm::before {
  opacity: .34;
  filter: saturate(1) contrast(1.01);
}

.ages-block::after,
.daily-rhythm::after {
  background:
    linear-gradient(180deg, rgba(255,250,242,.72), rgba(247,242,232,.68)),
    radial-gradient(circle at 20% 16%, rgba(255,255,255,.18), transparent 26%),
    radial-gradient(circle at 82% 72%, rgba(235,242,223,.12), transparent 24%);
}

.ages-block {
  background: linear-gradient(180deg, rgba(255,252,246,.72), rgba(248,245,238,.74));
}

.daily-rhythm {
  background: linear-gradient(180deg, rgba(255,253,249,.68), rgba(248,244,235,.70));
}


/* v75: merge ages + daily rhythm into one watercolor background section */
.program-combined-watercolor {
  position: relative;
  width: calc(100vw - 28px);
  max-width: none;
  margin: 0 auto clamp(2.2rem, 4vw, 3.4rem);
  padding: clamp(1.45rem, 2vw, 1.85rem) 0 clamp(2rem, 3.6vw, 3rem);
  border-radius: 40px;
  overflow: hidden;
  background-image:
    linear-gradient(180deg, rgba(255,251,245,.74), rgba(250,246,238,.70)),
    url('assets/program-watercolor-garden.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  box-shadow: 0 22px 50px rgba(96, 74, 44, 0.08);
}

.program-combined-watercolor::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02)),
    radial-gradient(circle at 20% 18%, rgba(255,255,255,.14), transparent 30%),
    radial-gradient(circle at 83% 78%, rgba(237,244,225,.06), transparent 28%);
  pointer-events: none;
}

.program-combined-watercolor > section {
  position: relative;
  z-index: 1;
}

.program-combined-watercolor .ages-block,
.program-combined-watercolor .daily-rhythm {
  width: min(1220px, calc(100vw - 72px));
  max-width: none;
  margin: 0 auto;
  padding: clamp(1rem, 1.6vw, 1.4rem) 0;
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
  border-radius: 0;
}

.program-combined-watercolor .daily-rhythm {
  margin-top: clamp(0.7rem, 1.4vw, 1.2rem);
  padding-top: clamp(1.25rem, 2vw, 1.9rem);
  border-top: 1px solid rgba(118, 107, 88, 0.08) !important;
}

.program-combined-watercolor .ages-block::before,
.program-combined-watercolor .ages-block::after,
.program-combined-watercolor .daily-rhythm::before,
.program-combined-watercolor .daily-rhythm::after {
  display: none !important;
}

.program-combined-watercolor .program-section-intro {
  max-width: 920px;
}

.program-combined-watercolor .program-card,
.program-combined-watercolor .rhythm-timeline article {
  background: rgba(255, 252, 247, 0.92);
}

.program-combined-watercolor .program-card {
  box-shadow: 0 18px 36px rgba(105, 86, 56, 0.10);
}

.program-combined-watercolor .rhythm-timeline article {
  box-shadow: 0 14px 30px rgba(105, 86, 56, 0.08);
}


/* v78: keep ages heading on one line, darker text, stronger floating cards */
.program-combined-watercolor .ages-block .program-section-intro {
  max-width: min(1320px, 100%);
}

.program-combined-watercolor h2,
.program-combined-watercolor .program-card h3,
.program-combined-watercolor .rhythm-timeline span {
  color: #4d311d;
}

.program-combined-watercolor .eyebrow {
  color: #65703f;
}

.program-combined-watercolor .program-section-intro p:not(.eyebrow),
.program-combined-watercolor .program-card p,
.program-combined-watercolor .rhythm-timeline p {
  color: #635548;
}

.program-combined-watercolor .program-card,
.program-combined-watercolor .rhythm-timeline article {
  border-color: rgba(84,58,38,.06);
}

.program-combined-watercolor .program-card {
  box-shadow: 0 30px 68px rgba(84,58,38,.17), 0 10px 26px rgba(84,58,38,.10);
  transform: translateY(-2px);
}

.program-combined-watercolor .program-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 38px 78px rgba(84,58,38,.20), 0 14px 32px rgba(84,58,38,.12);
}

.program-combined-watercolor .rhythm-timeline article {
  box-shadow: 0 18px 36px rgba(105, 86, 56, 0.12);
}

@media (min-width: 1180px) {
  .program-combined-watercolor .ages-block h2 {
    font-size: clamp(3rem, 4.2vw, 4.85rem);
    line-height: 1.04;
    white-space: nowrap;
  }
}


/* v79: slightly smaller ages heading so full line fits */
.program-combined-watercolor .ages-block h2 {
  font-size: clamp(2.45rem, 5vw, 4.1rem);
  line-height: 1.06;
}

@media (min-width: 1180px) {
  .program-combined-watercolor .ages-block h2 {
    font-size: clamp(2.65rem, 3.55vw, 4.05rem);
    line-height: 1.06;
    white-space: nowrap;
  }
}


/* v80: ages heading two steps smaller and card shadow softened */
.program-combined-watercolor .ages-block h2 {
  font-size: clamp(2.2rem, 4.3vw, 3.6rem);
  line-height: 1.08;
}

@media (min-width: 1180px) {
  .program-combined-watercolor .ages-block h2 {
    font-size: clamp(2.35rem, 3.05vw, 3.55rem);
    line-height: 1.08;
    white-space: nowrap;
  }
}

.program-combined-watercolor .program-card {
  box-shadow: 0 16px 34px rgba(84,58,38,.10), 0 6px 16px rgba(84,58,38,.06);
  transform: translateY(-1px);
}

.program-combined-watercolor .program-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 42px rgba(84,58,38,.12), 0 8px 18px rgba(84,58,38,.07);
}


/* v81: match the three key program section headings and reduce by one step */
.program-combined-watercolor .ages-block h2,
.program-combined-watercolor .daily-rhythm h2,
.curriculum-section h2 {
  font-size: clamp(2rem, 2.75vw, 3.05rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

@media (min-width: 1180px) {
  .program-combined-watercolor .ages-block h2,
  .program-combined-watercolor .daily-rhythm h2,
  .curriculum-section h2 {
    font-size: clamp(2.08rem, 2.6vw, 2.95rem);
    line-height: 1.08;
  }

  .program-combined-watercolor .ages-block h2 {
    white-space: nowrap;
  }
}

/* soften the age-card floating shadow slightly */
.program-combined-watercolor .program-card {
  box-shadow: 0 12px 28px rgba(84,58,38,.08), 0 4px 12px rgba(84,58,38,.05);
  transform: translateY(-1px);
}

.program-combined-watercolor .program-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(84,58,38,.10), 0 6px 14px rgba(84,58,38,.06);
}


/* v82: global side margins slightly narrower, footer simplified, home eyebrow aligned */
:root {
  --container: min(1180px, calc(100vw - 28px));
}

/* Wider content frame across all pages */
.home-page .hero,
.about-story,
.program-hero,
.curriculum-section,
.program-values,
.program-cta,
.program-block,
.daily-rhythm,
.contact-panel,
.admissions-card,
.gallery-grid,
.footer-inner {
  width: min(1240px, calc(100vw - 28px));
}

/* Keep the merged program watercolor area nearly full-width */
.program-combined-watercolor {
  width: calc(100vw - 18px);
}

.program-combined-watercolor .ages-block,
.program-combined-watercolor .daily-rhythm {
  width: min(1240px, calc(100vw - 48px));
}

/* Footer now has only brand + contact */
.footer-inner {
  grid-template-columns: minmax(0, 1.25fr) minmax(240px, .55fr);
  align-items: start;
}

/* Match “What matters here” to the Daily Rhythm eyebrow size */
.feature-band-photo .section-intro .eyebrow {
  font-size: clamp(.88rem, 1.05vw, 1rem);
  letter-spacing: .16em;
}

@media (max-width: 920px) {
  .home-page .hero,
  .about-story,
  .program-hero,
  .curriculum-section,
  .program-values,
  .program-cta,
  .program-block,
  .daily-rhythm,
  .contact-panel,
  .admissions-card,
  .gallery-grid,
  .footer-inner {
    width: min(100vw - 28px, 100%);
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}


/* v84: program hero watercolor image no frame, stronger floating effect; curriculum copy updated */
.program-hero-art {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
}

.program-hero-art::before {
  display: none;
}

.program-hero-art::after {
  left: 7%;
  right: 7%;
  bottom: -26px;
  height: 58px;
  background: radial-gradient(ellipse at center, rgba(58, 43, 28, .32) 0%, rgba(58, 43, 28, .16) 40%, rgba(58, 43, 28, 0) 78%);
  filter: blur(16px);
  opacity: 1;
}

.program-hero-art img {
  border-radius: 26px;
  border: 0;
  box-shadow:
    0 34px 78px rgba(43, 33, 21, .28),
    0 16px 34px rgba(43, 33, 21, .16),
    0 4px 12px rgba(43, 33, 21, .07);
}

.curriculum-copy p {
  max-width: 690px;
}

.curriculum-pill-grid p strong {
  color: #5a3721;
  font-weight: 800;
}


/* v85: curriculum eyebrow matches Ages We Welcome size */
.curriculum-copy .eyebrow {
  font-size: clamp(.88rem, 1.05vw, 1rem);
  letter-spacing: .16em;
}


/* v86: curriculum section layout refined */
.curriculum-section {
  display: block;
}

.curriculum-top {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, .82fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.curriculum-copy {
  max-width: 760px;
}

.curriculum-art {
  margin-left: auto;
  max-width: 520px;
  width: 100%;
  align-self: start;
}

.curriculum-pill-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
  align-items: stretch;
}

.curriculum-pill-grid div {
  height: 100%;
  border-radius: 26px;
}

@media (max-width: 920px) {
  .curriculum-top {
    grid-template-columns: 1fr;
  }

  .curriculum-art {
    max-width: 560px;
    margin: 0 auto;
  }

  .curriculum-pill-grid {
    grid-template-columns: 1fr;
  }
}


/* v87: curriculum image updated - no border, no crop, stronger floating shadow */
.curriculum-art {
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  max-width: 540px;
}

.curriculum-art::before {
  display: none;
}

.curriculum-art::after {
  left: 10%;
  right: 10%;
  bottom: -22px;
  height: 42px;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(84,58,38,.18) 0%, rgba(84,58,38,.10) 42%, rgba(84,58,38,0) 78%);
  filter: blur(18px);
  opacity: 1;
}

.curriculum-art img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  border-radius: 0;
  box-shadow:
    0 22px 44px rgba(84,58,38,.18),
    0 10px 24px rgba(84,58,38,.10);
}

@media (max-width: 920px) {
  .curriculum-art {
    max-width: 560px;
  }
}


/* v88: enlarge curriculum image and align proportion with text block */
.curriculum-top {
  grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
  gap: clamp(2rem, 3.4vw, 3.5rem);
  align-items: start;
}

.curriculum-copy {
  max-width: 100%;
}

.curriculum-art {
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  align-self: start;
}

.curriculum-art img {
  width: 100%;
  height: auto;
}

@media (max-width: 920px) {
  .curriculum-top {
    grid-template-columns: 1fr;
  }

  .curriculum-art {
    max-width: 100%;
    margin: 0 auto;
  }
}


/* v89: enlarge curriculum image further, visually align top/bottom with copy, rounded corners */
.curriculum-top {
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(1.6rem, 2.8vw, 2.8rem);
  align-items: start;
}

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

.curriculum-art {
  width: 100%;
  max-width: none;
  margin-left: 0;
  align-self: start;
}

.curriculum-art::after {
  left: 8%;
  right: 8%;
  bottom: -24px;
  height: 46px;
  background: radial-gradient(ellipse at center, rgba(84,58,38,.16) 0%, rgba(84,58,38,.08) 44%, rgba(84,58,38,0) 80%);
  filter: blur(18px);
}

.curriculum-art img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
  box-shadow:
    0 26px 48px rgba(84,58,38,.16),
    0 12px 24px rgba(84,58,38,.08);
}

@media (max-width: 1200px) {
  .curriculum-top {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  }
}

@media (max-width: 920px) {
  .curriculum-top {
    grid-template-columns: 1fr;
  }

  .curriculum-art {
    max-width: 100%;
    margin: 0 auto;
  }
}


/* v90: replace curriculum image, scale it down, free more space for text */
.curriculum-top {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(2rem, 3vw, 3rem);
  align-items: start;
}

.curriculum-copy {
  max-width: 100%;
}

.curriculum-art {
  width: 100%;
  max-width: 540px;
  margin-left: auto;
  align-self: start;
}

.curriculum-art::after {
  left: 10%;
  right: 10%;
  bottom: -20px;
  height: 40px;
  background: radial-gradient(ellipse at center, rgba(84,58,38,.15) 0%, rgba(84,58,38,.075) 42%, rgba(84,58,38,0) 80%);
  filter: blur(16px);
}

.curriculum-art img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 28px;
  box-shadow:
    0 22px 42px rgba(84,58,38,.14),
    0 10px 22px rgba(84,58,38,.07);
}

@media (max-width: 1200px) {
  .curriculum-top {
    grid-template-columns: minmax(0, 1fr) minmax(0, .92fr);
  }

  .curriculum-art {
    max-width: 500px;
  }
}

@media (max-width: 920px) {
  .curriculum-top {
    grid-template-columns: 1fr;
  }

  .curriculum-art {
    max-width: 100%;
    margin: 0 auto;
  }
}


/* v91: vertically center curriculum text and image */
.curriculum-top {
  align-items: center;
}

.curriculum-copy {
  align-self: center;
}

.curriculum-art {
  align-self: center;
}

@media (max-width: 920px) {
  .curriculum-top {
    align-items: start;
  }

  .curriculum-copy,
  .curriculum-art {
    align-self: start;
  }
}


/* v92: home hero keeps only program button and tighter vertical spacing */
.home-page .hero.section-padding {
  padding-top: clamp(2rem, 3.4vw, 2.9rem);
  padding-bottom: clamp(2rem, 3.2vw, 2.8rem);
}

.home-page .hero-copy {
  margin: 1.05rem 0 1.25rem;
}

.home-page .hero-actions {
  gap: 0;
}

@media (max-width: 720px) {
  .home-page .hero.section-padding {
    padding-top: 1.65rem;
    padding-bottom: 1.8rem;
  }

  .home-page .hero-copy {
    margin: .95rem 0 1.1rem;
  }
}

/* Mobile fixes: collapse hero grids to single column and prevent overflow */
@media (max-width: 920px) {
  .home-page .hero {
    grid-template-columns: 1fr;
  }
  .program-hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .program-combined-watercolor {
    width: calc(100vw - 28px);
    border-radius: 28px;
  }
}
