/* ==========================================================================
   La Distinction Academy — home page
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Reset & base
   -------------------------------------------------------------------------- */

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--lda-white);
  color: var(--lda-body);
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  margin: 0;
  color: var(--lda-navy);
  font-weight: 700;
  line-height: var(--lh-tight);
  letter-spacing: -0.015em;
}

p { margin: 0; }
figure { margin: 0; }
img, svg { display: block; max-width: 100%; }
img { height: auto; }
ul { margin: 0; padding: 0; list-style: none; }

a {
  color: var(--lda-royal-blue);
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}
a:hover { color: var(--lda-orange); }

:focus-visible {
  outline: 3px solid var(--lda-orange);
  outline-offset: 3px;
  border-radius: 4px;
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  margin: -1px; padding: 0; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}

.skip-link {
  position: absolute; top: -100px; left: 1rem; z-index: 100;
  padding: 0.75rem 1.25rem;
  background: var(--lda-navy); color: #fff; border-radius: var(--r-sm);
}
.skip-link:focus { top: 1rem; color: #fff; }

/* --------------------------------------------------------------------------
   2. Layout primitives
   -------------------------------------------------------------------------- */

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.section { padding-block: var(--section-y); position: relative; }
.section--page  { background: var(--lda-page); }
.section--sky   { background: var(--lda-sky); }
.section--cream { background: var(--lda-cream); }

.section-head {
  text-align: center;
  position: relative;
  margin-bottom: clamp(1.5rem, 1.1rem + 1.2vw, 2.25rem);
}
.section-head h2 { font-size: var(--fs-h2); }
.section-head p {
  margin: 0.75rem auto 0;
  max-width: 48ch;
  color: var(--lda-body-soft);
  font-size: var(--fs-small);
}

.eyebrow {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--lda-royal-blue);
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Gold underline rule used beneath section headings */
.rule-gold {
  display: block;
  width: 68px; height: 4px;
  margin: 1.1rem auto 0;
  border-radius: var(--r-pill);
  background: var(--lda-gold);
}

/* --------------------------------------------------------------------------
   3b. Logo lockup (crest + wordmark)
   -------------------------------------------------------------------------- */

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--lda-navy);
}
.logo__crest { flex: none; display: block; }
.logo__crest svg { width: 56px; height: 56px; display: block; }

/* The crest is drawn through <use>, so its parts are coloured with custom
   properties — they inherit past the shadow boundary where classes cannot. */
.logo {
  --crest-shield: var(--lda-royal-blue);
  --crest-gold: var(--lda-gold);
  --crest-mono: #fff;
}

.logo__text { display: flex; flex-direction: column; gap: 2px; }

.logo__name {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  color: var(--lda-navy);
  white-space: nowrap;
}
.logo__sub {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--lda-gold);
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.42em;
  text-indent: 0.42em;
  text-transform: uppercase;
}
.logo__sub i { flex: 0 0 20px; height: 1.5px; background: currentColor; border-radius: 2px; }

/* Footer / dark-background variant */
.logo--white {
  --crest-shield: transparent;
  --crest-gold: #fff;
  --crest-mono: #fff;
}
.logo--white .logo__name   { color: #fff; }
.logo--white .logo__sub    { color: rgba(255, 255, 255, 0.9); }
.logo--white .logo__crest svg { width: 64px; height: 64px; }
.logo--white .logo__name { font-size: 1.5rem; }

/* --------------------------------------------------------------------------
   3. Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 52px;
  padding: 0.75rem 1.75rem;
  border: 2px solid transparent;
  border-radius: var(--r-md);
  font-family: inherit;
  font-size: var(--fs-body);
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: background-color var(--dur) var(--ease),
              color var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--lda-gold);
  color: var(--lda-navy);
  box-shadow: 0 2px 0 rgba(21, 57, 95, 0.08);
}
.btn--primary:hover { background: var(--lda-orange); color: #fff; }

.btn--enroll { background: var(--lda-orange); color: #fff; }
.btn--enroll:hover { background: #cf7500; color: #fff; }

.btn--outline {
  background: transparent;
  border-color: var(--lda-border);
  color: var(--lda-navy);
}
.btn--outline:hover {
  border-color: var(--lda-royal-blue);
  color: var(--lda-royal-blue);
  background: var(--lda-sky);
}

.btn--navy { background: var(--lda-navy); color: #fff; }
.btn--navy:hover { background: var(--lda-royal-blue); color: #fff; }

.btn--sm { min-height: 44px; padding: 0.5rem 1.4rem; font-size: var(--fs-small); }

/* --------------------------------------------------------------------------
   4. Announcement bar
   -------------------------------------------------------------------------- */

.announce {
  background: var(--lda-orange);
  color: var(--lda-navy);
  text-align: center;
}
.announce p {
  padding-block: 0.6rem;
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: 0.01em;
}
.announce a {
  color: var(--lda-navy);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
}
.announce a:hover { color: #fff; }

/* --------------------------------------------------------------------------
   5. Header & navigation
   -------------------------------------------------------------------------- */

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--lda-page);
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.site-header.is-stuck {
  box-shadow: 0 2px 16px rgba(21, 57, 95, 0.08);
  border-bottom-color: var(--lda-border);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 88px;
}

.site-logo { flex: none; }

.nav { display: flex; align-items: center; gap: clamp(0.75rem, 1.8vw, 1.9rem); }

.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0;
  color: var(--lda-navy);
  font-size: 0.9375rem;
  font-weight: 600;
  white-space: nowrap;
  position: relative;
}
.nav__link::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -2px;
  height: 3px; border-radius: var(--r-pill);
  background: var(--lda-gold);
  transform: scaleX(0);
  transition: transform var(--dur) var(--ease);
}
.nav__link:hover, .nav__link[aria-current="page"] { color: var(--lda-royal-blue); }
.nav__link:hover::after,
.nav__link[aria-current="page"]::after { transform: scaleX(1); }

.nav__chevron { transition: transform var(--dur) var(--ease); }
.nav__item--has-menu[data-open="true"] .nav__chevron { transform: rotate(180deg); }

.nav__item { position: relative; }

.nav__menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  translate: -50% 0;
  min-width: 208px;
  padding: 0.75rem 0;
  background: #fff;
  border: 1px solid var(--lda-border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-menu);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease),
              visibility var(--dur) var(--ease);
}
.nav__item--has-menu[data-open="true"] .nav__menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav__menu a {
  display: block;
  padding: 0.5rem 1.25rem;
  color: var(--lda-royal-blue);
  font-size: var(--fs-small);
  font-weight: 500;
}
.nav__menu a:hover { background: var(--lda-sky); color: var(--lda-navy); }

.header__cta {
  flex: none;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.header__icon-btn {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--lda-border);
  border-radius: 50%;
  background: #fff;
  color: var(--lda-navy);
  cursor: pointer;
  padding: 0;
  transition: background-color var(--dur) var(--ease), border-color var(--dur) var(--ease), color var(--dur) var(--ease);
  animation: header-icon-pulse 2.4s ease-in-out infinite;
}
.header__icon-btn::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid var(--lda-gold);
  opacity: 0;
  pointer-events: none;
  animation: header-icon-ring 2.4s ease-out infinite;
}
.header__icon-btn svg { width: 1.2rem; height: 1.2rem; position: relative; z-index: 1; }
.header__icon-btn:hover {
  background: var(--lda-sky);
  border-color: var(--lda-royal-blue);
  color: var(--lda-royal-blue);
  animation-play-state: paused;
}
.header__icon-btn:hover::before { animation-play-state: paused; opacity: 0; }
.header__icon-btn:focus-visible {
  outline: 2px solid var(--lda-royal-blue);
  outline-offset: 3px;
  animation-play-state: paused;
}

@keyframes header-icon-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(233, 190, 116, 0.45); }
  50% { transform: scale(1.06); box-shadow: 0 0 0 8px rgba(233, 190, 116, 0); }
}

@keyframes header-icon-ring {
  0% { transform: scale(0.92); opacity: 0.7; }
  70% { transform: scale(1.28); opacity: 0; }
  100% { transform: scale(1.28); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .header__icon-btn,
  .header__icon-btn::before {
    animation: none;
  }
}

.nav-toggle {
  display: none;
  align-items: center; justify-content: center;
  width: 46px; height: 46px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--lda-border);
  border-radius: var(--r-sm);
  color: var(--lda-navy);
  cursor: pointer;
}

/* --------------------------------------------------------------------------
   6. Decorative doodles
   -------------------------------------------------------------------------- */

.doodle {
  position: absolute;
  pointer-events: none;
  color: var(--lda-royal-blue);
}
.doodle--gold { color: var(--lda-gold); }
.doodle--white { color: #fff; }

/* Sticker art keeps a soft white rim like the reference illustrations */
.sticker { position: absolute; pointer-events: none; }

/* --------------------------------------------------------------------------
   7. Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  background: var(--lda-page);
  overflow: hidden;
  isolation: isolate;
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  min-height: 580px;
}

.hero__copy {
  position: relative;
  z-index: 2;
  max-width: 30rem;
  padding-block: clamp(1.75rem, 3.5vw, 3rem) 8.5rem;
}

.hero h1 {
  font-size: var(--fs-hero);
  letter-spacing: -0.02em;
}
.hero h1 .accent { color: var(--lda-gold); display: block; }

.hero__lead {
  margin-top: 1.1rem;
  font-size: var(--fs-lead);
  line-height: 1.65;
  color: var(--lda-body);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

/* Full-bleed photo blob anchored to the right viewport edge */
.hero__media {
  position: absolute;
  top: 0;
  right: 0;
  width: 50vw;
  min-width: 520px;
  height: 100%;
  border-radius: 50% 0 0 50% / 50% 0 0 50%;
  overflow: hidden;
  z-index: 1;
}
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 45%; }
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      115deg,
      rgba(21, 57, 95, 0.28) 0%,
      rgba(21, 57, 95, 0.12) 42%,
      rgba(12, 28, 48, 0.38) 100%
    );
  pointer-events: none;
  z-index: 1;
}

/* Doodle + sticker placement, expressed against the hero box so the
   composition holds as the viewport widens. */
.hero > .doodle, .hero > .sticker { z-index: 3; }

.hero__doodle-scribble { top:  6.2%; left:  6.4%; width: 22px; }
.hero__doodle-star     { top:  2.6%; left: 39.4%; width: 32px; }
.hero__doodle-cloud    { top:  8.8%; left: 51.2%; width: 56px; }
.hero__doodle-heart    { top: 37.8%; left: 44.0%; width: 38px; }
.hero__doodle-sprig    { top: 72.5%; left: 42.0%; width: 62px; }
.hero__doodle-leaf     { top: 80.8%; left:  4.4%; width: 62px; }
.hero__doodle-burst    { top: 70.4%; left: 88.2%; width: 34px; }

.hero__boy  { bottom: 0%; left: 14.5%; width: 9.6vw; min-width: 94px; z-index: 4; }
.hero__girl { bottom: 8%; left: 78.5%; width: 10.5vw; min-width: 104px; z-index: 4; }
.hero__book { bottom: 1.5%; left: 62.5%; width: 8.8vw; min-width: 88px; z-index: 4; }

/* Wave divider */
.hero__wave {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  width: 100%;
  height: 110px;
  z-index: 2;
  pointer-events: none;
}
.hero__wave svg { width: 100%; height: 100%; display: block; }

/* --------------------------------------------------------------------------
   8. Welcome
   -------------------------------------------------------------------------- */

.welcome__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 3.5vw, 3rem);
  align-items: center;
}
.welcome__photo {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 226 / 178;
}
.welcome__photo img { width: 100%; height: 100%; object-fit: cover; }

.welcome h2 { font-size: var(--fs-h2); }
.welcome p { margin-top: 1.1rem; max-width: 54ch; }

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2.5vw, 2rem);
  margin-top: 1.5rem;
}
.badge { display: flex; align-items: center; gap: 0.75rem; }
.badge__icon {
  flex: none;
  display: grid; place-items: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--lda-navy);
  color: #fff;
}
.badge__icon--gold { background: var(--lda-gold); color: var(--lda-navy); }
.badge__icon svg { width: 22px; height: 22px; }
.badge__label {
  color: var(--lda-navy);
  font-size: var(--fs-xsmall);
  font-weight: 600;
  line-height: 1.35;
  max-width: 11ch;
}

/* --------------------------------------------------------------------------
   9. Programmes
   -------------------------------------------------------------------------- */

.programs .section-head { margin-bottom: 1.75rem; }
.programs__doodle-l { top: -6px; left: 6%;  width: 34px; }
.programs__doodle-r { top: -14px; right: 6%; width: 40px; }

.program-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.program-card {
  display: flex;
  flex-direction: column;
  background: var(--lda-cream-deep);
  border-radius: var(--r-lg);
  overflow: hidden;
  text-align: center;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.program-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }

.program-card__media { position: relative; aspect-ratio: 136 / 94; }
.program-card__media img { width: 100%; height: 100%; object-fit: cover; }

.program-card__icon {
  position: absolute;
  left: 50%; bottom: -27px;
  translate: -50% 0;
  display: grid; place-items: center;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--lda-navy);
  color: var(--lda-navy);
  box-shadow: 0 2px 8px rgba(21, 57, 95, 0.12);
}
.program-card__icon--gold { border-color: var(--lda-gold); color: var(--lda-gold); }
.program-card__icon svg { width: 26px; height: 26px; }

.program-card__body { padding: 2.15rem 1.1rem 1.5rem; }
.program-card__body h3 { font-size: 1.125rem; }
.program-card__body p {
  margin-top: 0.6rem;
  font-size: var(--fs-small);
  line-height: 1.55;
  color: var(--lda-body);
}

/* --------------------------------------------------------------------------
   10. Growing hearts and minds (illustration + collage)
   -------------------------------------------------------------------------- */

.growing {
  overflow: hidden;
}

.growing__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(0.75rem, 2vw, 1.5rem);
  align-items: stretch;
}

/*
  Scene image stays in normal flow and SETS the left-column height.
  Text overlays the empty top-left pocket of that art.
  Collage stretches to the same height — no dead gap under the copy.
*/
.growing__copy {
  position: relative;
  isolation: isolate;
}

.growing__scene {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  pointer-events: none;
  user-select: none;
}

.growing__text {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: min(48%, 17.5rem);
  max-width: 17.5rem;
}

.growing h2 {
  font-size: clamp(1.45rem, 1.1rem + 1vw, 2rem);
  line-height: 1.08;
  margin: 0;
  max-width: none;
}

.growing__text p {
  margin: 0.55rem 0 0;
  max-width: 28ch;
  line-height: 1.5;
  font-size: clamp(0.86rem, 0.8rem + 0.2vw, 0.96rem);
}

.growing__doodle-cloud { top: 0.1rem; left: 46%; width: 42px; z-index: 3; }
.growing__doodle-heart { top: 2.85rem; left: 52%; width: 22px; z-index: 3; }

.collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 0.625rem 0.5rem;
  position: relative;
  min-height: 0;
  height: auto;
  align-self: stretch;
}
.collage figure {
  position: relative;
  min-height: 0;
  height: auto;
  border-radius: var(--r-md);
  overflow: hidden;
  margin: 0;
}
.collage img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.collage__wide { grid-column: 1 / -1; }
.collage__doodle { top: -18px; right: -12px; width: 28px; }

/* --------------------------------------------------------------------------
   10b. Learning beyond the classroom
   -------------------------------------------------------------------------- */

.lbc { overflow: hidden; }

.lbc__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 1fr);
  align-items: center;
}

.lbc__photo {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 290 / 203;
}
.lbc__photo img { width: 100%; height: 100%; object-fit: cover; }

.lbc__card {
  position: relative;
  z-index: 2;
  margin-left: -3.5rem;
  padding: clamp(1.5rem, 2.5vw, 2.25rem) clamp(1.35rem, 2.5vw, 2.25rem);
  background: var(--lda-gold);
  border-radius: var(--r-xl);
}
.lbc__icon { width: 38px; height: 31px; color: var(--lda-navy); }
.lbc__card h2 {
  margin-top: 0.85rem;
  font-size: var(--fs-h2);
}
.lbc__card p {
  margin-top: 1rem;
  max-width: 32ch;
  color: var(--lda-navy);
  font-size: var(--fs-small);
  line-height: 1.65;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
  color: var(--lda-navy);
  font-size: var(--fs-small);
  font-weight: 600;
}
.link-arrow svg { width: 22px; height: 15px; transition: transform var(--dur) var(--ease); }
.link-arrow:hover { color: var(--lda-navy); }
.link-arrow:hover svg { transform: translateX(4px); }

.lbc__girl  { left: -4%;  bottom: -2rem; width: clamp(150px, 16vw, 210px); z-index: 3; }
.lbc__boy   { right: -4%; bottom: -1.5rem; width: clamp(160px, 17vw, 230px); z-index: 3; }
.lbc__star-l  { top: 6%;  left: -1%;  width: 32px; }
.lbc__star-r1 { top: 12%; right: 4%;  width: 28px; }
.lbc__star-r2 { top: 28%; right: -1%; width: 22px; }

/* --------------------------------------------------------------------------
   11. Foundation values (6-icon grid)
   -------------------------------------------------------------------------- */

.foundation .section-head { margin-bottom: 1.75rem; }

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.value {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.35rem clamp(0.85rem, 2vw, 1.5rem);
}
/* Interior dividers only */
.value:not(:nth-child(3n)) { border-right: 1px solid var(--lda-border); }
.value:nth-child(-n + 3)   { border-bottom: 1px solid var(--lda-border); }

.value__icon { flex: none; width: 54px; height: 54px; }
.value__icon svg { width: 100%; height: 100%; }
.value h3 { font-size: 1.0625rem; }
.value p {
  margin-top: 0.4rem;
  font-size: var(--fs-small);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   12. Founder
   -------------------------------------------------------------------------- */

.founder__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 3.5vw, 3rem);
  align-items: center;
}
.founder__photo {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  max-width: 380px;
  box-shadow: var(--shadow-lift);
}
.founder__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

.founder h2 { font-size: var(--fs-h2); }
.founder__name {
  margin-top: 0.25rem;
  color: var(--lda-gold);
  font-size: clamp(1.35rem, 1rem + 1vw, 1.75rem);
  font-weight: 600;
}
.founder p { margin-top: 1rem; max-width: 50ch; }

.signature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.35rem;
}
.signature__name {
  color: var(--lda-royal-blue);
  font-family: var(--font-script);
  font-size: 2rem;
  line-height: 1;
}
.signature svg { width: 26px; height: 26px; color: var(--lda-gold); }

/* --------------------------------------------------------------------------
   13. Life gallery
   -------------------------------------------------------------------------- */

.life .section-head { margin-bottom: 1.75rem; }
.life__doodle-star   { top: -30px; left: 12%;  width: 40px; }
.life__doodle-spark  { top: -18px; left: 19%;  width: 20px; }
.life__doodle-cloud  { top: -32px; right: 15%; width: 54px; }
.life__doodle-heart  { top: -26px; right: 10%; width: 30px; }

.life-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: repeat(2, auto);
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Slider (kept for reference; home uses .life-grid) ------------------- */

.slider { position: relative; }

.slider__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 3 * 0.625rem) / 4);
  gap: 0.625rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 2px;
}
.life .slider__track {
  grid-template-rows: repeat(2, auto);
}
.slider__track::-webkit-scrollbar { display: none; }
.slider__track:focus-visible { outline-offset: 6px; }

.slide { scroll-snap-align: start; }
.slide__btn {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  border: 0;
  background: none;
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: zoom-in;
  position: relative;
  aspect-ratio: 141 / 87;
}
.slide__btn img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 400ms var(--ease);
}
.slide__btn:hover img { transform: scale(1.06); }

.slide__zoom {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(21, 57, 95, 0.34);
  color: #fff;
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}
.slide__zoom svg { width: 26px; height: 26px; }
.slide__btn:hover .slide__zoom,
.slide__btn:focus-visible .slide__zoom { opacity: 1; }

.slider__nav {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  padding: 0;
  background: #fff;
  border: 1px solid var(--lda-border);
  border-radius: 50%;
  color: var(--lda-navy);
  box-shadow: var(--shadow-lift);
  cursor: pointer;
  transition: background-color var(--dur) var(--ease), color var(--dur) var(--ease),
              opacity var(--dur) var(--ease);
}
.slider__nav svg { width: 22px; height: 22px; }
.slider__nav:hover { background: var(--lda-gold); color: var(--lda-navy); border-color: var(--lda-gold); }
.slider__nav[disabled] { opacity: 0.35; cursor: default; }
.slider__nav[disabled]:hover { background: #fff; border-color: var(--lda-border); }
.slider__nav--prev { left: -23px; }
.slider__nav--next { right: -23px; }

.slider__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.75rem;
}
.slider__dots button {
  width: 9px; height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--lda-border);
  cursor: pointer;
  transition: background-color var(--dur) var(--ease), width var(--dur) var(--ease);
}
.slider__dots button[aria-selected="true"] { width: 26px; border-radius: var(--r-pill); background: var(--lda-gold); }

/* Lightbox -------------------------------------------------------------- */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
}
.lightbox[hidden] { display: none; }
.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(21, 57, 95, 0.92);
  cursor: zoom-out;
}

.lightbox__figure {
  position: relative;
  z-index: 1;
  max-width: min(1000px, 100%);
  text-align: center;
}
.lightbox__figure img {
  width: 100%;
  max-height: 74vh;
  object-fit: contain;
  border-radius: var(--r-lg);
  background: var(--lda-navy-deep);
}
.lightbox__figure figcaption {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--fs-small);
}
.lightbox__count { color: var(--lda-gold); font-weight: 600; }

.lightbox__btn {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 52px; height: 52px;
  padding: 0;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  transition: background-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.lightbox__btn svg { width: 24px; height: 24px; }
.lightbox__btn:hover { background: var(--lda-gold); border-color: var(--lda-gold); color: var(--lda-navy); }
.lightbox__btn--close { top: clamp(1rem, 3vw, 2rem); right: clamp(1rem, 3vw, 2rem); }
.lightbox__btn--prev  { left: clamp(0.5rem, 3vw, 2rem); top: 50%; translate: 0 -50%; }
.lightbox__btn--next  { right: clamp(0.5rem, 3vw, 2rem); top: 50%; translate: 0 -50%; }

body.is-locked { overflow: hidden; }

/* --------------------------------------------------------------------------
   14. Testimonials
   -------------------------------------------------------------------------- */

.testimonials .section-head { margin-bottom: 1.75rem; }

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
.quote-card {
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1.35rem;
  background: #fff;
  border: 1px solid var(--lda-gold-soft);
  border-radius: var(--r-lg);
}
.quote-card__mark { width: 34px; height: 26px; color: var(--lda-gold); }
.quote-card__stars { display: flex; gap: 3px; margin-top: 1rem; color: var(--lda-gold); }
.quote-card__stars svg { width: 17px; height: 17px; }
.quote-card blockquote {
  margin: 0.85rem 0 0;
  font-size: var(--fs-small);
  line-height: 1.65;
}
.quote-card__by {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: auto;
  padding-top: 1.1rem;
}
.quote-card__heart { flex: none; width: 22px; height: 20px; color: var(--lda-orange); }
.quote-card cite {
  color: var(--lda-navy);
  font-size: var(--fs-small);
  font-weight: 700;
  font-style: normal;
}

/* --------------------------------------------------------------------------
   15. Closing CTA + footer
   -------------------------------------------------------------------------- */

.closing {
  position: relative;
  background: linear-gradient(
    to bottom,
    var(--lda-white) 0,
    var(--lda-white) 72px,
    var(--lda-navy) 72px,
    var(--lda-navy) 100%
  );
  padding-bottom: 2.25rem;
}

.cta-card {
  position: relative;
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1.15rem, 2.5vw, 2.25rem);
  background: var(--lda-gold);
  border-radius: var(--r-lg);
  overflow: hidden;
  padding-right: clamp(1.5rem, 4vw, 3.25rem);
}
.cta-card__media { align-self: stretch; min-height: 156px; }
.cta-card__media img { width: 100%; height: 100%; object-fit: cover; }
.cta-card__body { padding-block: 1.5rem; }
.cta-card h2 { font-size: clamp(1.5rem, 1.1rem + 1.2vw, 2rem); max-width: 26rem; }
.cta-card p { margin-top: 0.65rem; color: var(--lda-navy); max-width: 40ch; font-size: var(--fs-small); }
.cta-card__action { position: relative; }
.cta-card__burst { top: -18px; right: -46px; width: 44px; color: #fff; }

.closing__doodle-heart { top: 150px; left: 2%;  width: 40px; color: var(--lda-gold); }
.closing__doodle-star  { top: 158px; right: 2%; width: 34px; color: #fff; }

.site-footer {
  position: relative;
  background: var(--lda-navy);
  color: #fff;
  overflow: hidden;
}
.site-footer__skyline {
  position: absolute;
  left: 0; right: 0;
  bottom: var(--legal-h, 52px);
  width: 100%;
  height: clamp(88px, 12vw, 140px);
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  opacity: 0.92;
}
.site-footer__skyline img {
  width: min(920px, 92%);
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.site-footer__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(2, minmax(0, 0.85fr)) minmax(0, 1.1fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  padding-block: 2.5rem 2.25rem;
}

.footer-tagline {
  margin-top: 1rem;
  max-width: 24ch;
  color: var(--lda-cream);
  font-family: var(--font-script);
  font-size: 1.2rem;
  line-height: 1.35;
}
.social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.social a {
  display: grid; place-items: center;
  width: 38px; height: 38px;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  color: #fff;
  transition: background-color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.social a:hover { background: var(--lda-gold); border-color: var(--lda-gold); color: var(--lda-navy); }
.social svg { width: 18px; height: 18px; }

.footer-col { position: relative; }
.footer-col + .footer-col::before {
  content: "";
  position: absolute;
  left: calc(-1 * clamp(0.75rem, 2vw, 1.75rem));
  top: 4px; bottom: 4px;
  width: 1px;
  background: rgba(255, 255, 255, 0.18);
}
.footer-col h3 {
  color: #fff;
  font-size: var(--fs-body);
  font-weight: 600;
  margin-bottom: 1.1rem;
}
.footer-col li + li { margin-top: 0.55rem; }
.footer-col a {
  color: rgba(255, 255, 255, 0.86);
  font-size: var(--fs-small);
  text-decoration: underline;
  text-underline-offset: 0.18em;
  text-decoration-thickness: 1px;
}
.footer-col a:hover { color: var(--lda-gold); }

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.86);
}
.contact-list li + li { margin-top: 0.9rem; }
.contact-list svg { flex: none; width: 20px; height: 20px; margin-top: 2px; color: #fff; }
.contact-list a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  text-decoration-thickness: 1px;
}
.contact-list a:hover { color: var(--lda-gold); }

.site-footer__legal {
  position: relative;
  z-index: 1;
  padding-block: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--fs-xsmall);
  text-align: center;
}

/* --------------------------------------------------------------------------
   16. Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1100px) {
  .site-footer__inner { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-col + .footer-col::before { display: none; }
  .site-footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 1024px) {
  .nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .header__cta .btn { display: none; }

  .site-header__inner { min-height: 76px; }

  .nav.is-open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem var(--container-pad) 1.5rem;
    background: #fff;
    border-top: 1px solid var(--lda-border);
    box-shadow: var(--shadow-menu);
  }
  .nav.is-open .nav__link { padding: 0.85rem 0; }
  .nav.is-open .nav__menu {
    position: static;
    translate: none;
    opacity: 1; visibility: visible; transform: none;
    border: 0; box-shadow: none; padding: 0 0 0.5rem 1rem;
    display: none;
  }
  .nav.is-open .nav__item--has-menu[data-open="true"] .nav__menu { display: block; }

  .hero__grid { grid-template-columns: 1fr; min-height: 0; }
  .hero__copy { max-width: 46ch; padding-block: 2.5rem 1.5rem; }
  .hero__media {
    position: relative;
    width: calc(100% + 2 * var(--container-pad));
    min-width: 0;
    margin-left: calc(-1 * var(--container-pad));
    height: 340px;
    margin-bottom: 3.5rem;
    border-radius: var(--r-xl);
  }
  .hero > .doodle, .hero > .sticker { display: none; }

  .program-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .slider__track { grid-auto-columns: calc((100% - 2 * 0.625rem) / 3); }
  .slider__nav--prev { left: -12px; }
  .slider__nav--next { right: -12px; }
  .lbc__card { margin-left: -2rem; }
  .lbc__girl { width: 140px; }
  .lbc__boy  { width: 150px; right: -1%; }
  .value-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .value:not(:nth-child(3n)) { border-right: 0; }
  .value:nth-child(odd) { border-right: 1px solid var(--lda-border); }
  .value:not(:nth-last-child(-n + 2)) { border-bottom: 1px solid var(--lda-border); }
  .value:nth-child(-n + 3) { border-bottom: 1px solid var(--lda-border); }

  .cta-card { grid-template-columns: 200px minmax(0, 1fr); padding-right: 2rem; }
  .cta-card__action { grid-column: 2; padding-bottom: 2rem; }
  .cta-card__burst { display: none; }
}

@media (max-width: 860px) {
  .welcome__grid, .growing__grid, .founder__grid { grid-template-columns: 1fr; }
  .growing__copy {
    display: flex;
    flex-direction: column;
  }
  .growing__text {
    position: relative;
    width: 100%;
    max-width: none;
    margin-bottom: 0.35rem;
  }
  .growing__text p { max-width: 46ch; }
  .growing__scene {
    width: min(100%, 520px);
    margin-inline: auto;
  }
  .collage {
    height: auto;
    min-height: 320px;
    grid-template-rows: auto auto;
  }
  .collage__tall { aspect-ratio: 4 / 3; }
  .collage__wide { aspect-ratio: 16 / 9; }
  .growing__doodle-cloud, .growing__doodle-heart, .collage__doodle { display: none; }
  .collage { min-height: 0; grid-template-rows: auto auto; }
  .collage__tall { aspect-ratio: 4 / 3; }
  .collage__wide { aspect-ratio: 16 / 9; }
  .life-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .lbc__inner { grid-template-columns: 1fr; }
  .lbc__card { margin: -3rem 1.25rem 0; }
  .lbc__girl, .lbc__boy, .lbc__star-l, .lbc__star-r1, .lbc__star-r2 { display: none; }

  .slider__track { grid-auto-columns: calc((100% - 0.625rem) / 2); }
  .quote-grid { grid-template-columns: 1fr; }
  .life__doodle-star, .life__doodle-spark,
  .life__doodle-cloud, .life__doodle-heart,
  .programs__doodle-l, .programs__doodle-r,
  .closing__doodle-heart, .closing__doodle-star,
  .page-deco__star-a, .page-deco__star-b, .page-deco__heart,
  .page-deco__spark, .page-deco__cloud, .page-deco__burst, .page-deco__leaf,
  .page-deco__pencil, .page-deco__blocks, .page-deco__book, .page-deco__kite,
  .section-deco__star-l, .section-deco__spark-l,
  .section-deco__cloud-r, .section-deco__heart-r, .section-deco__star-r {
    display: none;
  }
}

@media (max-width: 620px) {
  .program-grid { grid-template-columns: 1fr; }
  .slider__track { grid-auto-columns: 82%; }
  .slider__nav { display: none; }
  .value-grid { grid-template-columns: 1fr; }
  .value { border-right: 0 !important; }
  .value:not(:last-child) { border-bottom: 1px solid var(--lda-border) !important; }
  .collage { grid-template-columns: 1fr; }
  .cta-card { grid-template-columns: 1fr; padding-right: 0; }
  .cta-card__media { min-height: 200px; }
  .cta-card__body { padding-inline: 1.75rem; }
  .cta-card__action { grid-column: 1; padding: 0 1.75rem 2rem; }
  .site-footer__inner { grid-template-columns: 1fr; }
  .hero__actions .btn { flex: 1 1 100%; }
}

/* --------------------------------------------------------------------------
   About page
   -------------------------------------------------------------------------- */

.about-hero {
  position: relative;
  padding-block: clamp(1.5rem, 1rem + 1.5vw, 2.5rem) 2.75rem;
  overflow: hidden;
}

.about-hero__panel {
  display: grid;
  grid-template-columns: 10.5rem minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 0.75rem 1.1rem;
  align-items: center;
  border-radius: var(--r-xl);
  overflow: visible;
}

.about-hero__art {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  width: 10.5rem;
  flex: none;
}

.about-hero__kid {
  width: auto;
  max-width: 7.25rem;
  object-fit: contain;
  object-position: bottom center;
  pointer-events: none;
  flex: none;
}

.about-hero__kid--boy {
  transform: translateX(0.15rem);
}

.about-hero__kid--girl {
  transform: translateX(-3.35rem);
}

.about-hero__copy {
  min-width: 0;
  position: relative;
  z-index: 2;
}

.about-hero__copy h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.55rem, 1.15rem + 1.1vw, 2.15rem);
  line-height: 1.18;
  color: var(--lda-navy);
  margin: 0;
}

.about-hero__copy p {
  margin-top: 0.65rem;
  color: var(--lda-body);
  max-width: 32ch;
}

.about-hero__photo {
  margin: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 5 / 4;
  min-width: 0;
}

.about-hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.about-mission__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.5rem, 3vw, 2.75rem);
  align-items: stretch;
}

.about-mission__photo {
  margin: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  height: 100%;
  min-height: 16rem;
}

.about-mission__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.about-mission__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-mission__lead {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 1rem + 0.7vw, 1.55rem);
  line-height: 1.35;
  color: var(--lda-navy);
  font-weight: 600;
  margin: 0 0 1rem;
}

.about-mission__copy p + p { margin-top: 0.85rem; }

.about-glance {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.35rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--lda-border);
}
.about-glance div {
  display: grid;
  gap: 0.2rem;
}
.about-glance strong {
  color: var(--lda-navy);
  font-size: var(--fs-small);
}
.about-glance span {
  font-size: var(--fs-xsmall);
  color: var(--lda-body-soft);
  line-height: 1.4;
}

.about-stats {
  padding-block: 1.5rem 0.5rem;
  background: transparent;
}

.about-stats__box {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--lda-sky);
  border-radius: var(--r-xl);
  padding: 1.35rem 0.75rem;
}

.about-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  border-right: 1px solid #c9d8ea;
}

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

.about-stat__icon {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  color: var(--lda-royal-blue);
  border: 0;
  background: transparent;
  margin-bottom: 0.15rem;
}

.about-stat__icon svg {
  width: 1.65rem;
  height: 1.65rem;
  display: block;
}

.about-stat strong {
  display: block;
  color: var(--lda-navy);
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 0.95rem + 0.4vw, 1.25rem);
  line-height: 1.2;
  font-weight: 700;
}

.about-stat > span {
  display: block;
  color: var(--lda-body-soft);
  font-size: var(--fs-xsmall);
  font-weight: 500;
}

.tabs {
  background: var(--lda-cream);
  border-radius: var(--r-xl);
  padding: 1rem 1rem 1.1rem;
}

.tabs__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.5rem;
  margin: 0 0 0.75rem;
}

.tabs__tab {
  appearance: none;
  border: 0;
  background: #fff;
  color: var(--lda-navy);
  font: 600 var(--fs-small) / 1.2 var(--font-sans);
  padding: 0.95rem 0.85rem 1.1rem;
  border-radius: 12px;
  cursor: pointer;
  position: relative;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}

.tabs__tab.is-active,
.tabs__tab[aria-selected="true"] {
  background: var(--lda-navy);
  color: #fff;
}

.tabs__tab.is-active::after,
.tabs__tab[aria-selected="true"]::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.55rem;
  width: 2rem;
  height: 2.5px;
  margin-left: -1rem;
  background: var(--lda-orange);
  border-radius: 2px;
}

.tabs__panel {
  background: #fff;
  border-radius: 16px;
  padding: clamp(1.5rem, 2.5vw, 2.25rem);
}

.tabs__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
}

.tabs__copy {
  position: relative;
}

.tabs__copy h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 1.1rem + 0.95vw, 1.95rem);
  margin: 0 0 0.95rem;
  color: var(--lda-navy);
}

.tabs__copy p {
  color: var(--lda-body);
  max-width: 42ch;
}

.tabs__copy p + p { margin-top: 0.85rem; }

.tabs__leaf {
  position: absolute;
  width: 34px;
  right: 0.25rem;
  bottom: -0.35rem;
  color: var(--lda-orange);
}

.tabs__photo {
  margin: 0;
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 5 / 4;
}

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

.facility-features {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0 0 1.75rem;
  padding: 0;
}

.facility-card {
  background: #fff;
  border-radius: var(--r-md);
  padding: 1.15rem 0.75rem 1.05rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  box-shadow: var(--shadow-card);
}

.facility-card__icon {
  width: 2.75rem;
  height: 2.75rem;
  color: var(--lda-orange);
  display: grid;
  place-items: center;
}

.facility-card__icon svg {
  width: 2.35rem;
  height: 2.35rem;
}

.facility-card__label {
  color: var(--lda-navy);
  font-size: var(--fs-xsmall);
  font-weight: 600;
  line-height: 1.35;
  max-width: 14ch;
}

.facility-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.facility-gallery figure {
  margin: 0;
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

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

.facility-address {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin: 1.35rem 0 0;
  padding: 0;
  background: transparent;
  color: var(--lda-navy);
  font-size: var(--fs-small);
  font-weight: 600;
}

.facility-address svg {
  color: var(--lda-navy);
  flex: 0 0 auto;
}

.about-founder__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(1.5rem, 3vw, 2.75rem);
  align-items: center;
}

.about-founder__photo {
  margin: 0;
  margin-left: auto;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  max-width: 360px;
  width: 100%;
}

.about-founder__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about-founder__copy { position: relative; }
.about-founder__copy h2 { margin: 0 0 0.85rem; }
.about-founder__copy p + p { margin-top: 0.75rem; }

.about-founder__sign {
  margin-top: 1.25rem !important;
  font-family: var(--font-script);
  font-size: clamp(1.75rem, 1.3rem + 1vw, 2.25rem);
  color: var(--lda-gold);
  line-height: 1;
}

.about-founder__role {
  margin-top: 0.25rem !important;
  color: var(--lda-navy);
  font-weight: 600;
  font-size: var(--fs-small);
}

.about-founder__star { top: -0.5rem; right: 12%; width: 34px; }
.about-founder__heart { top: 2.5rem; right: 4%; width: 26px; color: var(--lda-gold); }

.about-cta {
  background: transparent;
  padding-block: clamp(1.25rem, 2vw, 2rem) clamp(1.75rem, 2.5vw, 2.75rem);
}

.about-cta__bar {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 1.25rem 1.75rem;
  align-items: center;
  background: var(--lda-sky);
  border-radius: var(--r-xl);
  padding: 1.15rem clamp(1.25rem, 2.5vw, 2rem);
  overflow: visible;
}

.about-cta__copy h2 {
  margin: 0;
  max-width: 28ch;
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 1rem + 0.7vw, 1.55rem);
  line-height: 1.25;
  color: var(--lda-navy);
}

.about-cta__copy p {
  margin: 0.35rem 0 0;
  max-width: 42ch;
  color: var(--lda-body);
  font-size: var(--fs-small);
}

.about-cta__btn {
  white-space: nowrap;
  color: #fff;
}

.about-cta__art {
  position: relative;
  display: block;
  width: 10.5rem;
  height: 155px;
  margin-top: -3.25rem;
  margin-bottom: -1.4rem;
  flex: none;
  align-self: end;
  overflow: visible;
}

.about-cta__boy,
.about-cta__girl {
  position: absolute;
  bottom: 0;
  width: auto;
  object-fit: contain;
}

.about-cta__boy {
  left: 0;
  height: 140px;
  z-index: 1;
}

.about-cta__girl {
  left: 3.4rem;
  height: 150px;
  z-index: 2;
}

.about-cta__star {
  position: absolute;
  top: 0.1rem;
  right: 0.2rem;
  width: 22px;
  z-index: 3;
}

/* --------------------------------------------------------------------------
   FAQ accordion (programs-2: rail through dots, +/- , single-open, smooth)
   -------------------------------------------------------------------------- */

.faq .section-head { margin-bottom: 1.5rem; }

.faq-box {
  --faq-rail: 1.55rem;
  --faq-dot: 0.72rem;
  position: relative;
  margin-top: 20px;
  margin-inline: auto;
  background: #eef3f8;
  border: 0 !important;
  outline: 0;
  border-radius: var(--r-xl);
  padding: 0.55rem 1.15rem 0.55rem 0;
  box-shadow: none;
  overflow: hidden;
}

.faq-box::before {
  content: "";
  position: absolute;
  /* Center of the dot column */
  left: calc(var(--faq-rail) + (var(--faq-dot) / 2) - 1px);
  top: 1.55rem;
  bottom: 1.55rem;
  width: 2px;
  background: var(--lda-orange);
  border-radius: 2px;
  pointer-events: none;
  z-index: 0;
}

.faq-item {
  position: relative;
  z-index: 1;
  border: 0;
  background: transparent;
  transition: background var(--dur) var(--ease);
}

.faq-item.is-open {
  background: rgba(255, 255, 255, 0.55);
  border-radius: var(--r-md);
}

.faq-item + .faq-item {
  box-shadow: inset 0 1px 0 #dde5ef;
}

.faq-item h3 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}

.faq-item__trigger {
  appearance: none;
  width: 100%;
  display: grid;
  grid-template-columns: calc(var(--faq-rail) + var(--faq-dot)) minmax(0, 1fr) 2rem;
  align-items: center;
  gap: 0.85rem;
  padding: 1.05rem 0.35rem 1.05rem 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  color: var(--lda-navy);
}

.faq-item__dot {
  width: var(--faq-dot);
  height: var(--faq-dot);
  margin-left: var(--faq-rail);
  border-radius: 50%;
  background: var(--lda-orange);
  border: 0;
  box-shadow: none;
  position: relative;
  z-index: 2;
}

.faq-item__q {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(1rem, 0.92rem + 0.3vw, 1.15rem);
  line-height: 1.3;
}

.faq-item__toggle {
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 50%;
  background: var(--lda-navy);
  position: relative;
  flex: 0 0 auto;
}

.faq-item__toggle::before,
.faq-item__toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #fff;
  border-radius: 1px;
  transform: translate(-50%, -50%);
}

.faq-item__toggle::before {
  width: 0.7rem;
  height: 2px;
}

.faq-item__toggle::after {
  width: 2px;
  height: 0.7rem;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.faq-item.is-open .faq-item__toggle::after {
  opacity: 0;
  transform: translate(-50%, -50%) scaleY(0);
}

.faq-item__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s var(--ease);
}

.faq-item.is-open .faq-item__panel {
  grid-template-rows: 1fr;
}

.faq-item__panel-inner {
  overflow: hidden;
  min-height: 0;
}

.faq-item__panel-inner p {
  margin: 0;
  padding: 0 2.5rem 1.1rem calc(var(--faq-rail) + var(--faq-dot) + 0.85rem);
  color: var(--lda-body);
  font-size: var(--fs-small);
  line-height: 1.65;
}

@media (max-width: 900px) {
  .about-hero__panel,
  .about-mission__grid,
  .tabs__grid,
  .about-founder__grid,
  .about-glance {
    grid-template-columns: 1fr;
  }

  .about-cta__bar {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding-top: 1.5rem;
  }

  .tabs__list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .facility-features { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .facility-gallery { grid-template-columns: 1fr; }
  .about-stats__box { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-stat:nth-child(2) { border-right: 0; }
  .about-stat:nth-child(-n + 2) {
    border-bottom: 1px solid #c9d8ea;
    padding-bottom: 0.85rem;
    margin-bottom: 0.5rem;
  }

  .about-hero__art {
    order: 2;
    width: 10.5rem;
    margin-inline: auto;
  }
  .about-hero__copy { order: 1; text-align: center; }
  .about-hero__copy p { margin-inline: auto; }
  .about-hero__photo { order: 3; }

  .about-founder__photo { max-width: none; }
  .about-cta__copy p { margin-inline: auto; }
  .about-cta__art { margin-inline: auto; margin-top: 0.25rem; }
}

@media (max-width: 600px) {
  .about-stats__box { grid-template-columns: 1fr; }
  .about-stat { border-right: 0; border-bottom: 1px solid #c9d8ea; }
  .about-stat:last-child { border-bottom: 0; }
  .facility-features { grid-template-columns: 1fr; }
  .tabs__list { grid-template-columns: 1fr; }
  .faq-box { --faq-rail: 1.1rem; padding-right: 0.75rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .btn:hover, .program-card:hover { transform: none; }
}

/* ==========================================================================
   Programs / Admissions / Community pages
   ========================================================================== */

.btn--outline-orange {
  background: #fff;
  border-color: var(--lda-orange);
  color: var(--lda-orange);
}
.btn--outline-orange:hover {
  background: var(--lda-orange);
  color: #fff;
}

.link-arrow--light { color: #fff; }
.link-arrow--light:hover { color: var(--lda-gold-soft); }

/* ---- Program finder tabs ---------------------------------------------- */

.prog-hero .section-head { margin-bottom: 1.5rem; }
.prog-hero h1, .prog-hero h2 { font-size: var(--fs-h2); text-align: center; }

/* ---- Programs page hero banner ---------------------------------------- */

.prog-banner {
  padding-block: clamp(1.5rem, 1rem + 1.5vw, 2.5rem) 0;
}

.prog-banner__panel {
  display: grid;
  grid-template-columns: 12.5rem minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 1rem 1.35rem;
  align-items: center;
  background: var(--lda-sky);
  border-radius: var(--r-xl);
  padding: clamp(1.25rem, 2.2vw, 1.85rem);
  overflow: hidden;
  position: relative;
}

.prog-banner__art {
  position: relative;
  height: 210px;
  width: 12.5rem;
}

.prog-banner__kids {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left bottom;
}

.prog-banner__star {
  position: absolute;
  top: 0.35rem;
  right: 0.4rem;
  width: 26px;
}

.prog-banner__copy h1 {
  margin: 0;
  font-size: clamp(1.65rem, 1.2rem + 1.3vw, 2.35rem);
  line-height: 1.15;
  color: var(--lda-navy);
}

.prog-banner__copy p {
  margin: 0.7rem 0 0;
  max-width: 32ch;
  color: var(--lda-body);
}

.prog-banner__photo {
  margin: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 5 / 4;
}

.prog-banner__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.prog-hero h2 { font-size: var(--fs-h2); text-align: center; }

@media (max-width: 980px) {
  .prog-banner__panel { grid-template-columns: 1fr; }
  .prog-banner__art { margin-inline: auto; order: 2; }
  .prog-banner__copy { order: 1; text-align: center; }
  .prog-banner__copy p { margin-inline: auto; }
  .prog-banner__photo { order: 3; }
}


.prog-finder {
  background: #fff;
  border: 1px solid var(--lda-border);
  border-radius: var(--r-xl);
  padding: 0.85rem;
}

.prog-finder__tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}

.prog-finder__tab {
  appearance: none;
  border: 1px solid var(--lda-border);
  background: #fff;
  color: var(--lda-navy);
  border-radius: 14px 14px 10px 10px;
  padding: 0.95rem 0.85rem 1rem;
  text-align: left;
  cursor: pointer;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas: "icon label" "icon meta";
  column-gap: 0.65rem;
  row-gap: 0.15rem;
  align-items: center;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.prog-finder__tab-icon {
  grid-area: icon;
  width: 3.75rem;
  height: 3.75rem;
  color: var(--lda-royal-blue);
  display: grid;
  place-items: center;
}
.prog-finder__tab-icon svg { width: 2.85rem; height: 2.85rem; }
.prog-finder__tab-label {
  grid-area: label;
  font-weight: 700;
  font-size: var(--fs-small);
}
.prog-finder__tab-meta {
  grid-area: meta;
  font-size: var(--fs-xsmall);
  color: var(--lda-body-soft);
}

.prog-finder__tab.is-active,
.prog-finder__tab[aria-selected="true"] {
  background: var(--lda-navy);
  border-color: var(--lda-navy);
  color: #fff;
}
.prog-finder__tab.is-active .prog-finder__tab-icon,
.prog-finder__tab[aria-selected="true"] .prog-finder__tab-icon,
.prog-finder__tab.is-active .prog-finder__tab-meta,
.prog-finder__tab[aria-selected="true"] .prog-finder__tab-meta {
  color: rgba(255,255,255,0.85);
}

.prog-finder__panel { display: none; padding: 0.5rem 0.35rem 0.65rem; }
.prog-finder__panel.is-active { display: block; }

.prog-finder__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1.25rem, 3vw, 2.25rem);
  align-items: center;
}

.prog-finder__photo {
  margin: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 5 / 4;
}
.prog-finder__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.prog-finder__copy h2 {
  margin: 0;
  font-size: clamp(1.45rem, 1.1rem + 1vw, 2rem);
}
.prog-finder__age {
  margin: 0.35rem 0 0.75rem;
  color: var(--lda-orange);
  font-weight: 600;
  font-size: var(--fs-small);
}
.prog-finder__copy .btn { margin-top: 1rem; }
.prog-finder__copy .link-arrow { display: inline-flex; margin-top: 0.85rem; }

.prog-features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--lda-border);
}
.prog-features article {
  display: grid;
  gap: 0.35rem;
}
.prog-features svg {
  width: 2.85rem;
  height: 2.85rem;
  color: var(--lda-royal-blue);
  margin-bottom: 0.15rem;
}
.prog-features h3 {
  font-size: var(--fs-small);
  font-weight: 700;
}
.prog-features p {
  font-size: var(--fs-xsmall);
  color: var(--lda-body-soft);
  line-height: 1.5;
}

/* ---- Day flow --------------------------------------------------------- */

.day-flow__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
  align-items: start;
}
.day-flow__list li {
  text-align: center;
  position: relative;
  display: grid;
  gap: 0.65rem;
  justify-items: center;
}
.day-flow__list li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 2.75rem;
  left: calc(50% + 2.9rem);
  width: calc(100% - 5.8rem);
  border-top: 2px dashed #c9d4e4;
}
.day-flow__icon {
  width: 5.75rem;
  height: 5.75rem;
  border-radius: 50%;
  background: var(--lda-sky);
  color: var(--lda-royal-blue);
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
}
.day-flow__icon svg { width: 3.1rem; height: 3.1rem; }
.day-flow__list strong {
  font-size: var(--fs-xsmall);
  color: var(--lda-navy);
  max-width: 12ch;
  line-height: 1.35;
}

/* ---- Whole child cards ------------------------------------------------ */

.whole-child__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.whole-card {
  background: #fff;
  border-radius: var(--r-md);
  padding: 1.25rem 1.1rem 1.35rem;
  box-shadow: 0 8px 24px rgba(21, 57, 95, 0.06);
}
.whole-card svg {
  width: 3.25rem;
  height: 3.25rem;
  color: var(--lda-royal-blue);
  margin-bottom: 0.95rem;
}
.whole-card h3 { font-size: var(--fs-small); margin-bottom: 0.35rem; }
.whole-card p { font-size: var(--fs-xsmall); color: var(--lda-body-soft); line-height: 1.55; }

/* ---- Inside programs gallery ------------------------------------------ */

.inside-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}
.inside-grid figure {
  margin: 0;
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 5 / 4;
}
.inside-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inside-link { text-align: center; margin-top: 1.25rem; }
.inside-link .link-arrow { display: inline-flex; }

/* ---- Shared page CTA -------------------------------------------------- */

.page-cta { padding-block: clamp(1.5rem, 2vw, 2.25rem); }
.page-cta__card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1.25rem 1.5rem;
  align-items: center;
  background: var(--lda-cream);
  border-radius: var(--r-xl);
  padding: 1.25rem 1.5rem;
  overflow: visible;
}
.page-cta__card--navy {
  background: var(--lda-navy);
  color: #fff;
}
.page-cta__card--navy h2,
.page-cta__card--navy p { color: #fff; }
.page-cta__art {
  position: relative;
  width: 9.5rem;
  height: 140px;
}
.page-cta__art img {
  position: absolute;
  bottom: 0;
  width: auto;
  height: 130px;
  object-fit: contain;
}
.page-cta__art img:first-child { left: 0; z-index: 1; height: 120px; }
.page-cta__art img:last-child { left: 3.2rem; z-index: 2; }
.page-cta__copy h2 {
  margin: 0;
  font-size: clamp(1.25rem, 1rem + 0.8vw, 1.7rem);
  max-width: 22ch;
}
.page-cta__copy p {
  margin: 0.4rem 0 0;
  max-width: 40ch;
  font-size: var(--fs-small);
}
.page-cta__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.page-cta--navy { background: transparent; }

/* ---- Shared page-hero wave (small variant of home hero__wave) --------- */

.hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100%;
  height: 110px;
  z-index: 2;
  pointer-events: none;
}
.hero-wave svg {
  width: 100%;
  height: 100%;
  display: block;
}
.hero-wave--sm { height: 64px; }

.admit-hero {
  position: relative;
  overflow: hidden;
}
.prog-page-hero {
  padding-bottom: 2.75rem;
}

/* Shared subtle doodles + stickers for inner-page heroes */
.page-deco__star-a { top: 1.1rem; left: 8%; width: 28px; }
.page-deco__star-b { top: 2.2rem; right: 18%; width: 22px; }
.page-deco__heart  { top: 28%; left: 48%; width: 24px; opacity: 0.9; }
.page-deco__spark  { top: 14%; left: 40%; width: 15px; }
.page-deco__cloud  { top: 0.85rem; right: 7%; width: 44px; opacity: 0.85; }
.page-deco__burst  { bottom: 5.5rem; right: 4%; width: 28px; }
.page-deco__leaf   { bottom: 4.75rem; left: 3%; width: 40px; }

.page-deco__pencil {
  bottom: 3.25rem;
  left: 4%;
  width: clamp(72px, 8vw, 110px);
  z-index: 3;
  transform: rotate(-18deg);
}
.page-deco__blocks {
  bottom: 3.5rem;
  right: 42%;
  width: clamp(78px, 9vw, 120px);
  z-index: 3;
}
.page-deco__book {
  bottom: 3.1rem;
  left: 6%;
  width: clamp(88px, 10vw, 130px);
  z-index: 3;
}
.page-deco__kite {
  top: 1.5rem;
  right: 40%;
  width: clamp(64px, 7vw, 96px);
  z-index: 3;
  transform: rotate(8deg);
}

.section-head--deco { padding-top: 0.35rem; }
.section-deco__star-l  { top: -0.35rem; left: 14%; width: 28px; }
.section-deco__spark-l { top: 0.35rem; left: 19%; width: 16px; }
.section-deco__cloud-r { top: -0.55rem; right: 16%; width: 42px; }
.section-deco__heart-r { top: -0.15rem; right: 11%; width: 24px; }
.section-deco__star-r  { top: -0.4rem; right: 18%; width: 26px; }

/* ---- Admissions ------------------------------------------------------- */

.admit-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.5rem, 3vw, 2.75rem);
  align-items: center;
}
.admit-hero__copy h1 {
  font-size: clamp(1.85rem, 1.3rem + 1.5vw, 2.6rem);
  margin: 0;
}
.admit-hero__copy > p {
  margin: 0.85rem 0 1.15rem;
  max-width: 40ch;
}
.admit-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}
.admit-hero__photo {
  margin: 0;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 5 / 4;
}
.admit-hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.admit-actions { padding-block: 0 0.25rem; }
.admit-actions__bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.5rem;
  background: var(--lda-cream);
  border-radius: var(--r-xl);
  padding: 0.85rem;
}
.admit-actions__bar a {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 0.75rem;
  color: var(--lda-navy);
  font-weight: 600;
  font-size: var(--fs-small);
  border-radius: var(--r-md);
}
.admit-actions__bar a:hover { background: rgba(255,255,255,0.7); }
.admit-actions__bar svg {
  width: 2.65rem;
  height: 2.65rem;
  color: var(--lda-royal-blue);
  flex: none;
}
.admit-actions__bar span { margin-left: auto; color: var(--lda-royal-blue); }

.journey {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  position: relative;
}
.journey::before {
  content: "";
  position: absolute;
  top: 1.15rem;
  left: 8%;
  right: 8%;
  height: 2px;
  background: #c5d5ea;
}
.journey li {
  position: relative;
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 0.7rem;
}
.journey__num {
  width: 2.65rem;
  height: 2.65rem;
  font-size: 1.05rem;
  border-radius: 50%;
  background: var(--lda-royal-blue);
  color: #fff;
  font-weight: 700;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
}
.journey svg {
  width: 3rem;
  height: 3rem;
  color: var(--lda-royal-blue);
  margin-top: 0.5rem;
}
.journey strong { font-size: var(--fs-small); color: var(--lda-navy); }
.journey p {
  font-size: var(--fs-xsmall);
  color: var(--lda-body-soft);
  max-width: 18ch;
  line-height: 1.45;
}

.docs-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1.25rem 1.5rem;
  align-items: start;
  background: var(--lda-sky);
  border-radius: var(--r-xl);
  padding: clamp(1.25rem, 2.5vw, 2rem);
}
.docs-card__icon {
  width: 5rem;
  height: 5rem;
  color: var(--lda-royal-blue);
}
.docs-card__icon svg { width: 100%; height: 100%; }
.docs-card h2 { margin: 0 0 1.35rem; font-size: clamp(1.35rem, 1.1rem + 0.8vw, 1.75rem); }
.docs-card__cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}
.docs-card h3 {
  font-size: var(--fs-small);
  margin: 0 0 0.75rem;
}
.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}
.check-list li {
  position: relative;
  padding-left: 1.45rem;
  font-size: var(--fs-small);
  color: var(--lda-body);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--lda-orange);
  box-shadow: inset 0 0 0 2px #fff;
}

.tuition-card {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  gap: 1.5rem;
  align-items: center;
  background: var(--lda-cream);
  border-radius: var(--r-xl);
  padding: clamp(1.35rem, 2.5vw, 2rem);
}
.tuition-card h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.35rem, 1.1rem + 0.8vw, 1.75rem);
}
.tuition-card p {
  margin: 0 0 1.1rem;
  max-width: 46ch;
}
.tuition-card__art img {
  width: clamp(120px, 18vw, 180px);
  height: auto;
}

/* ---- Community -------------------------------------------------------- */

.community-hero {
  position: relative;
  overflow: hidden;
  padding-bottom: 1.5rem;
}
.community-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: center;
}
.community-hero__copy h1 {
  font-size: clamp(1.85rem, 1.3rem + 1.5vw, 2.6rem);
  margin: 0;
}
.community-hero__copy > p {
  margin: 0.75rem 0 1.15rem;
  max-width: 34ch;
}
.community-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.community-hero__photo {
  margin: 0;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 5 / 4;
  mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 100%);
}
.community-hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.event-filters__btn {
  appearance: none;
  border: 1px solid var(--lda-border);
  background: #fff;
  color: var(--lda-navy);
  border-radius: 999px;
  padding: 0.55rem 1rem;
  font: 600 var(--fs-xsmall) / 1.2 var(--font-sans);
  cursor: pointer;
}
.event-filters__btn.is-active {
  background: var(--lda-navy);
  border-color: var(--lda-navy);
  color: #fff;
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}
.event-card {
  background: #fff;
  border: 1px solid var(--lda-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.event-card figure {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  flex: none;
}
.event-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.event-card__body {
  padding: 1rem 1.05rem 1.15rem;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}
.event-badge {
  display: inline-block;
  align-self: flex-start;
  background: var(--lda-navy);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.28rem 0.55rem;
  border-radius: 6px;
  margin-bottom: 0.55rem;
}
.event-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
}
.event-card p {
  font-size: var(--fs-xsmall);
  color: var(--lda-body-soft);
  margin: 0 0 0.65rem;
  line-height: 1.5;
}
.event-meta {
  list-style: none;
  margin: 0 0 0.85rem;
  padding: 0;
  display: grid;
  gap: 0.2rem;
  font-size: var(--fs-xsmall);
  color: var(--lda-body);
}
.event-card .link-arrow {
  margin-top: auto;
  display: inline-flex;
}

.more-than {
  display: grid;
  grid-template-columns: minmax(10rem, 0.42fr) minmax(0, 1.58fr);
  gap: clamp(1rem, 2.5vw, 1.75rem);
  align-items: center;
  background: var(--lda-cream);
  border-radius: var(--r-xl);
  padding: clamp(1.5rem, 3vw, 2.35rem);
}
.more-than__intro h2 {
  margin: 0 0 0.55rem;
  font-size: clamp(1.25rem, 1.05rem + 0.7vw, 1.65rem);
}
.more-than__intro p {
  margin: 0;
  max-width: 22ch;
  color: var(--lda-body-soft);
  font-size: var(--fs-xsmall);
  line-height: 1.55;
}
.more-than__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  text-align: center;
}
.more-than__cards img {
  width: 140px;
  height: 140px;
  object-fit: contain;
  margin: 0 auto 0.75rem;
}
.more-than__cards h3 { margin: 0 0 0.45rem; font-size: var(--fs-small); }
.more-than__cards p {
  margin: 0 auto;
  max-width: 24ch;
  font-size: var(--fs-xsmall);
  color: var(--lda-body-soft);
  line-height: 1.5;
}

.community-motion .slider { margin-bottom: 0.25rem; }
.community-motion__more {
  display: flex;
  justify-content: center;
  margin: 1.25rem 0 0;
}

.get-involved .section-head { margin-bottom: 1.75rem; }
.get-involved .section-head p {
  margin: 0.65rem auto 0;
  max-width: 46ch;
  color: var(--lda-body-soft);
  font-size: var(--fs-small);
}
.get-involved__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: stretch;
}
.involve-card {
  text-align: center;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  justify-items: center;
  gap: 0.55rem;
  height: 100%;
}
.involve-card__media {
  width: 100%;
  margin: 0 0 0.25rem;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--lda-sky);
}
.involve-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.involve-card .link-arrow {
  margin-top: auto;
  display: inline-flex;
  padding-top: 0.35rem;
}
.involve-card h3 {
  margin: 0.15rem 0 0;
  font-size: 1.05rem;
}

@media (max-width: 980px) {
  .prog-finder__tabs { grid-template-columns: 1fr; }
  .prog-finder__grid,
  .admit-hero__grid,
  .community-hero__grid,
  .docs-card,
  .tuition-card,
  .page-cta__card,
  .more-than {
    grid-template-columns: 1fr;
  }
  .prog-features,
  .day-flow__list,
  .whole-child__grid,
  .inside-grid,
  .admit-actions__bar,
  .journey,
  .more-than__cards,
  .get-involved__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .day-flow__list li:not(:last-child)::after { display: none; }
  .journey::before { display: none; }
  .event-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .page-cta__art { margin-inline: auto; }
  .page-cta__actions { align-items: stretch; }
  .docs-card__cols { grid-template-columns: 1fr; }
  .more-than__intro { text-align: center; }
  .more-than__intro p { margin-inline: auto; }
}

@media (max-width: 600px) {
  .prog-features,
  .day-flow__list,
  .whole-child__grid,
  .inside-grid,
  .admit-actions__bar,
  .journey,
  .more-than__cards,
  .get-involved__grid,
  .event-grid {
    grid-template-columns: 1fr;
  }
}

/* ---- Resources slide-over panel --------------------------------------- */

.resources-backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(21, 57, 95, 0.45);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--dur) var(--ease), visibility var(--dur) var(--ease);
}
.resources-panel {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 91;
  width: min(420px, 92vw);
  background: #fff;
  color: var(--lda-body);
  box-shadow: 8px 0 40px rgba(21, 57, 95, 0.18);
  transform: translateX(-105%);
  transition: transform 280ms var(--ease);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  pointer-events: none;
}
body.is-resources-open { overflow: hidden; }
body.is-resources-open .resources-backdrop {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
body.is-resources-open .resources-panel {
  transform: translateX(0);
  pointer-events: auto;
}

.resources-panel__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 1.35rem 1rem;
  border-bottom: 1px solid var(--lda-border);
  background: var(--lda-sky);
}
.resources-panel__head h2 {
  margin: 0;
  font-size: 1.35rem;
}
.resources-panel__head p {
  margin: 0.4rem 0 0;
  font-size: var(--fs-xsmall);
  color: var(--lda-body-soft);
  max-width: 32ch;
  line-height: 1.45;
}
.resources-panel__close {
  flex: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--lda-border);
  border-radius: 50%;
  background: #fff;
  color: var(--lda-navy);
  display: grid;
  place-items: center;
  cursor: pointer;
  padding: 0;
}
.resources-panel__close svg { width: 18px; height: 18px; }
.resources-panel__close:hover {
  background: var(--lda-gold);
  border-color: var(--lda-gold);
}

.resources-panel__body {
  padding: 1.25rem 1.35rem 2rem;
  overflow-y: auto;
  flex: 1;
}
.resources-block + .resources-block {
  margin-top: 1.5rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--lda-border);
}
.resources-block h3 {
  margin: 0 0 0.75rem;
  font-size: var(--fs-small);
}
.resources-block p {
  margin: 0 0 0.85rem;
  font-size: var(--fs-xsmall);
  color: var(--lda-body-soft);
  line-height: 1.55;
}
.resources-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}
.resources-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--lda-border);
  border-radius: var(--r-md);
  color: var(--lda-navy);
  font-size: var(--fs-small);
  font-weight: 600;
  background: var(--lda-page);
}
.resources-links a:hover {
  border-color: var(--lda-gold);
  background: var(--lda-cream);
  color: var(--lda-navy);
}
.resources-links a span {
  color: var(--lda-royal-blue);
  font-weight: 700;
}
.resources-contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
  font-size: var(--fs-small);
}
.resources-contact a {
  color: var(--lda-navy);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.resources-contact a:hover { color: var(--lda-orange); }

.resources-acc {
  border: 1px solid var(--lda-border);
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--lda-page);
}
.resources-acc + .resources-acc { margin-top: 0.55rem; }
.resources-acc__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.8rem 0.9rem;
  border: 0;
  background: transparent;
  color: var(--lda-navy);
  font: 600 var(--fs-small) / 1.3 var(--font-sans);
  text-align: left;
  cursor: pointer;
}
.resources-acc__trigger span[aria-hidden="true"] {
  color: var(--lda-royal-blue);
  font-size: 1.1rem;
  line-height: 1;
  transition: transform var(--dur) var(--ease);
}
.resources-acc.is-open .resources-acc__trigger span[aria-hidden="true"] {
  transform: rotate(45deg);
}
.resources-acc__panel {
  display: none;
  padding: 0 0.9rem 0.95rem;
  font-size: var(--fs-xsmall);
  color: var(--lda-body);
  line-height: 1.55;
}
.resources-acc.is-open .resources-acc__panel { display: block; }
.resources-acc__panel p { margin: 0 0 0.55rem; color: var(--lda-body-soft); }
.resources-acc__panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.35rem;
}
.resources-acc__panel li {
  padding-left: 0.9rem;
  position: relative;
}
.resources-acc__panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--lda-gold);
}
