/* ============================================================
   OUR LEARNING GARDEN — Brand System
   Fonts: Playfair Display (display) + Lato (text)
   Palette: dark sage / marigold / raspberry on warm cream
   Bold but warm.
   ============================================================ */

:root {
  /* Warm papers */
  --cream:      #FBF4E4;
  --cream-2:    #F5E7CB;
  --white:      #FFFDF8;

  /* Sage greens */
  --sage-900:   #24382A;   /* deep — dark bands, body ink alt */
  --sage-800:   #2E4733;
  --sage-700:   #3C5A41;   /* headings */
  --sage-600:   #4E6E50;
  --sage-500:   #618A5E;
  --sage-200:   #BFD2B4;
  --sage-100:   #D8E3CD;

  /* Marigold */
  --marigold:      #F4A91D;
  --marigold-deep: #E0901A;
  --marigold-soft: #FBD27E;

  /* Raspberry */
  --raspberry:      #C82E6F;
  --raspberry-deep: #A52260;
  --raspberry-soft: #F0A9C6;

  /* Ink */
  --ink:    #2C2820;
  --ink-60: rgba(44, 40, 32, 0.62);

  --font-display: "Playfair Display", Georgia, serif;
  --font-text: "Lato", "Helvetica Neue", Arial, sans-serif;

  --maxw: 1200px;
  --radius: 22px;
  --radius-lg: 34px;
  --shadow: 0 18px 50px -24px rgba(36, 56, 42, 0.45);
  --shadow-sm: 0 8px 24px -14px rgba(36, 56, 42, 0.4);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font-text);
  color: var(--ink);
  background: var(--cream);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.04; margin: 0; }

p { margin: 0 0 1em; text-wrap: pretty; }

a { color: inherit; }

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

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

.eyebrow {
  font-family: var(--font-text);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--raspberry);
  margin: 0 0 18px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--marigold);
  border-radius: 2px;
}

section { position: relative; }
.band { padding: clamp(72px, 9vw, 128px) 0; }

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--font-text);
  font-weight: 800;
  font-size: 1rem;
  border: none;
  border-radius: 100px;
  padding: 16px 30px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--raspberry); color: #fff; box-shadow: 0 10px 22px -10px rgba(165,34,96,.7); }
.btn-primary:hover { background: var(--raspberry-deep); transform: translateY(-2px); }
.btn-marigold { background: var(--marigold); color: var(--sage-900); box-shadow: 0 10px 22px -10px rgba(224,144,26,.7); }
.btn-marigold:hover { background: var(--marigold-deep); transform: translateY(-2px); }
.btn-sage { background: var(--sage-700); color: #fff; }
.btn-sage:hover { background: var(--sage-800); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--sage-700); box-shadow: inset 0 0 0 2px var(--sage-500); }
.btn-ghost:hover { background: var(--sage-700); color: #fff; box-shadow: inset 0 0 0 2px var(--sage-700); }
.btn-lg { padding: 19px 38px; font-size: 1.08rem; }

/* ============================================================
   NAV
   ============================================================ */
.announce {
  background: var(--sage-900);
  color: var(--cream);
  text-align: center;
  font-size: 0.92rem;
  padding: 10px 16px;
  letter-spacing: .01em;
}
.announce strong { color: var(--marigold-soft); }
.announce a { color: var(--marigold-soft); text-underline-offset: 3px; }

.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(251, 244, 228, 0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(36,56,42,.08);
}
.nav-inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 12px 28px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; cursor: pointer; }
.brand .mark { width: 46px; height: 46px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--font-display); font-weight: 800;
  font-size: 1.18rem; color: var(--sage-800);
  letter-spacing: .14em; text-transform: uppercase;
  white-space: nowrap;
}
.brand-tag { font-size: 0.6rem; letter-spacing: .22em; text-transform: uppercase; color: var(--raspberry); font-weight: 800; margin-top: 4px; }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  text-decoration: none; font-weight: 700; font-size: 0.98rem;
  color: var(--sage-800); position: relative; padding: 4px 0;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px; background: var(--marigold);
  transition: width .22s ease;
}
.nav-links a:hover::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 14px; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 26px; height: 2.5px; background: var(--sage-800); border-radius: 3px; margin: 5px 0; transition: .25s; }

/* ============================================================
   HERO
   ============================================================ */
.hero { overflow: hidden; padding: clamp(48px, 7vw, 96px) 0 clamp(60px,8vw,110px); }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px; align-items: center;
}
.hero h1 {
  font-size: clamp(2.7rem, 5.4vw, 4.6rem);
  color: var(--sage-800);
  letter-spacing: -0.01em;
  line-height: 1.08;
  padding-bottom: 0.5em;
}
.hero h1 .seed { display: inline-block; }
.hero h1 .seed { color: var(--raspberry); font-style: italic; }
.hero h1 .grow { position: relative; white-space: nowrap; }
.hero h1 .grow svg { position: absolute; left: -2%; bottom: -6px; width: 104%; height: 16px; }
.hero-lead { font-size: 1.22rem; color: var(--ink-60); max-width: 30ch; margin: 26px 0 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 30px; }
.hero-meta .chip {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 700; font-size: 0.92rem; color: var(--sage-700);
  white-space: nowrap;
}
.hero-meta .chip b { color: var(--sage-900); }
.hero-meta .dot { width: 11px; height: 11px; border-radius: 50%; flex: none; }

/* Hero graphic stage */
.hero-art { position: relative; aspect-ratio: 1 / 1; }
.hero-art .arch {
  position: absolute; inset: 0; margin: auto;
  width: 92%; height: 92%;
  background: var(--sage-700);
  border-radius: 100% 100% 28px 28px;
  overflow: hidden;
}
.hero-art .arch::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 50% -10%, rgba(255,255,255,.10), transparent 60%);
}
.float { position: absolute; }

/* ============================================================
   PROGRAMS
   ============================================================ */
.section-head { max-width: 720px; margin-bottom: 54px; }
.section-head h2 { font-size: clamp(2.1rem, 4.2vw, 3.4rem); color: var(--sage-800); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { font-size: 1.15rem; color: var(--ink-60); margin-top: 16px; }

.programs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.program {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex; flex-direction: column;
  min-height: 440px;
  color: #fff;
}
.program .age {
  font-family: var(--font-text); font-weight: 800;
  font-size: .82rem; letter-spacing: .14em; text-transform: uppercase;
  padding: 8px 16px; border-radius: 100px; align-self: flex-start;
  background: rgba(255,255,255,.22);
}
.program h3 { font-size: 2.6rem; margin: 22px 0 14px; }
.program .desc { font-size: 1.05rem; opacity: .96; margin-bottom: 24px; }
.program ul { list-style: none; padding: 0; margin: 0 0 28px; display: grid; gap: 11px; }
.program li { display: flex; gap: 11px; align-items: flex-start; font-weight: 600; font-size: .98rem; }
.program li svg { flex: none; margin-top: 3px; }
.program .foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.program .hours { font-size: .88rem; font-weight: 700; opacity: .9; }
.program-toddler { background: linear-gradient(155deg, #6E9A5C, var(--sage-700)); }
.program-preschool { background: linear-gradient(155deg, var(--raspberry), var(--raspberry-deep)); }
.program .blob { position: absolute; right: -40px; top: -40px; opacity: .9; pointer-events: none; }

/* ============================================================
   PHILOSOPHY (dark band)
   ============================================================ */
.philosophy { background: var(--sage-900); color: var(--cream); overflow: hidden; }
.philosophy .eyebrow { color: var(--marigold-soft); }
.philosophy .eyebrow::before { background: var(--raspberry-soft); }
.phil-top { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: end; margin-bottom: 60px; }
.phil-top h2 { font-size: clamp(2.2rem, 4.4vw, 3.6rem); color: var(--cream); }
.phil-top h2 em { color: var(--marigold-soft); font-style: italic; }
.phil-top p { color: rgba(251,244,228,.78); font-size: 1.12rem; }
.phil-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.phil-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius); padding: 30px;
  transition: transform .2s ease, background .2s ease;
}
.phil-card:hover { transform: translateY(-5px); background: rgba(255,255,255,.085); }
.phil-icon { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 20px; }
.phil-card h3 { font-size: 1.4rem; color: var(--cream); margin-bottom: 10px; }
.phil-card p { color: rgba(251,244,228,.72); font-size: .98rem; margin: 0; }

/* ============================================================
   APP / BRIGHTWHEEL (standout)
   ============================================================ */
.app { background: var(--cream-2); overflow: hidden; }
.app-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 60px; align-items: center; }
.app .eyebrow { color: var(--raspberry); }
.app h2 { font-size: clamp(2.2rem, 4.4vw, 3.7rem); color: var(--sage-800); }
.app h2 em { font-style: italic; color: var(--raspberry); }
.app-lead { font-size: 1.18rem; color: var(--ink-60); margin: 20px 0 28px; max-width: 44ch; }
.app-feats { display: grid; gap: 16px; margin-bottom: 34px; }
.app-feat { display: flex; gap: 15px; align-items: flex-start; }
.app-feat .fi { width: 44px; height: 44px; border-radius: 13px; flex: none; display: grid; place-items: center; }
.app-feat b { display: block; font-size: 1.06rem; color: var(--sage-900); }
.app-feat span { color: var(--ink-60); font-size: .98rem; }
.app-cta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.app-note { font-size: .9rem; color: var(--ink-60); }
.app-note b { color: var(--sage-700); }

/* phone */
.phone-stage { position: relative; display: grid; place-items: center; }
.phone {
  position: relative; z-index: 2;
  width: 320px; max-width: 82vw;
  background: #1f2d24;
  border-radius: 46px;
  padding: 12px;
  box-shadow: 0 40px 90px -30px rgba(36,56,42,.6);
}
.phone-screen {
  background: var(--cream); border-radius: 36px; overflow: hidden;
  height: 620px; position: relative;
}
.phone-notch { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 130px; height: 26px; background: #1f2d24; border-radius: 0 0 16px 16px; z-index: 5; }
.app-top { background: var(--sage-700); color: #fff; padding: 30px 20px 18px; }
.app-top .row { display: flex; align-items: center; justify-content: space-between; }
.app-top .hi { font-size: .8rem; opacity: .8; }
.app-top .name { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; margin-top: 2px; }
.app-top .ava { width: 42px; height: 42px; border-radius: 50%; background: var(--marigold); display: grid; place-items: center; color: var(--sage-900); font-weight: 800; }
.app-feed { padding: 16px; display: grid; gap: 13px; overflow: hidden; }
.fcard { background: #fff; border-radius: 18px; padding: 14px; box-shadow: var(--shadow-sm); }
.fcard .fh { display: flex; align-items: center; gap: 9px; margin-bottom: 10px; }
.fcard .tag { font-size: .62rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; padding: 4px 9px; border-radius: 100px; }
.fcard .time { font-size: .72rem; color: var(--ink-60); margin-left: auto; font-weight: 700; }
.fcard p { font-size: .82rem; margin: 0; color: var(--ink); line-height: 1.4; }
.fcard .photo { height: 96px; border-radius: 12px; margin-top: 4px; }
.fcard .stats { display: flex; gap: 8px; margin-top: 6px; }
.fstat { flex: 1; background: var(--cream); border-radius: 11px; padding: 8px 9px; }
.fstat .k { font-size: .58rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-60); }
.fstat .v { font-size: .95rem; font-weight: 800; color: var(--sage-800); font-family: var(--font-display); }
.app-tabbar { position: absolute; bottom: 0; left: 0; right: 0; height: 58px; background: #fff; border-top: 1px solid rgba(36,56,42,.08); display: flex; align-items: center; justify-content: space-around; padding-bottom: 6px; }
.app-tabbar .t { width: 22px; height: 22px; border-radius: 7px; background: var(--sage-100); }
.app-tabbar .t.on { background: var(--raspberry); }

/* ============================================================
   COMMUNITY & EVENTS
   ============================================================ */
.events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.event {
  background: var(--white); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow-sm);
  border: 1px solid rgba(36,56,42,.06);
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.event:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.event .date {
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
  width: 66px; height: 66px; border-radius: 18px; flex: none;
  font-family: var(--font-display); line-height: 1;
}
.event .date .m { font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; font-family: var(--font-text); }
.event .date .d { font-size: 1.7rem; font-weight: 800; }
.event h3 { font-size: 1.4rem; color: var(--sage-800); margin: 20px 0 8px; }
.event .meta { font-size: .86rem; font-weight: 700; color: var(--raspberry); margin-bottom: 10px; }
.event p { font-size: .96rem; color: var(--ink-60); margin: 0; }
.event .more { margin-top: auto; padding-top: 18px; font-weight: 800; color: var(--sage-700); font-size: .92rem; display: inline-flex; gap: 7px; align-items: center; }

.community-strip { margin-top: 36px; background: var(--sage-100); border-radius: var(--radius); padding: 26px 32px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.community-strip p { margin: 0; font-weight: 700; color: var(--sage-800); font-size: 1.05rem; }

/* ============================================================
   OUR CENTER
   ============================================================ */
.center-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.center h2 { font-size: clamp(2.1rem, 4.4vw, 3.5rem); color: var(--sage-800); }
.center-lead { font-size: 1.15rem; color: var(--ink-60); margin: 18px 0 28px; }
.center-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 26px; margin-bottom: 30px; }
.cfeat { display: flex; gap: 13px; align-items: flex-start; }
.cfeat .ci { width: 40px; height: 40px; border-radius: 12px; flex: none; display: grid; place-items: center; }
.cfeat b { display: block; color: var(--sage-900); font-size: 1.02rem; }
.cfeat span { font-size: .9rem; color: var(--ink-60); }

.gallery { display: block; }
.g-stage { position: relative; border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-sm); aspect-ratio: 4 / 3.05; background: var(--sage-100); }
.g-slide { margin: 0; position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity .55s ease; }
.g-slide.is-active { opacity: 1; visibility: visible; }
.g-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.g-slide figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 40px 22px 16px; color: #fff; font-size: 1rem; font-weight: 600;
  background: linear-gradient(transparent, rgba(36,56,42,.78));
}
.g-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 46px; height: 46px; border: none; border-radius: 50%; cursor: pointer;
  display: grid; place-items: center; color: var(--sage-800);
  background: rgba(255,253,248,.92); box-shadow: 0 6px 18px -6px rgba(36,56,42,.5);
  transition: background .2s ease, transform .2s ease;
}
.g-arrow:hover { background: #fff; transform: translateY(-50%) scale(1.06); }
.g-prev { left: 14px; }
.g-next { right: 14px; }
.g-dots { display: flex; justify-content: center; gap: 9px; margin-top: 18px; }
.g-dot {
  width: 9px; height: 9px; border-radius: 50%; border: none; cursor: pointer; padding: 0;
  background: var(--sage-200); transition: background .2s ease, transform .2s ease;
}
.g-dot.is-active { background: var(--marigold); transform: scale(1.25); }

/* ============================================================
   MEET THE TEAM
   ============================================================ */
.team { background: var(--cream-2); }
.team .section-head { margin-bottom: 50px; }
.team-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.tcard {
  background: var(--white); border-radius: var(--radius);
  padding: 26px 18px 24px; text-align: center;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(36,56,42,.06);
  display: flex; flex-direction: column; align-items: center;
  transition: transform .2s ease, box-shadow .2s ease;
}
.tcard:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.tcard .photo-wrap { position: relative; margin-bottom: 18px; }
.tcard image-slot, .tcard .tphoto { width: 132px; height: 132px; border-radius: 50%; box-shadow: var(--shadow-sm); }
.tcard .tphoto { object-fit: cover; }
.tcard .bloom {
  position: absolute; bottom: -6px; right: -6px;
  width: 40px; height: 40px;
  background: var(--white); border-radius: 50%;
  display: grid; place-items: center; box-shadow: var(--shadow-sm);
}
.tcard h3 { font-size: 1.3rem; color: var(--sage-800); margin-bottom: 4px; }
.tcard .role {
  font-family: var(--font-text); font-weight: 800; font-size: .74rem;
  letter-spacing: .1em; text-transform: uppercase; color: var(--raspberry);
  margin-bottom: 10px;
}
.tcard p { font-size: .92rem; color: var(--ink-60); margin: 0; line-height: 1.55; }
.team-note { margin-top: 36px; text-align: center; font-weight: 700; color: var(--sage-700); }

/* ============================================================
   WAITLIST / CONTACT
   ============================================================ */
.waitlist { background: var(--raspberry); color: #fff; overflow: hidden; }
.waitlist-grid { display: grid; grid-template-columns: 1fr 0.9fr; gap: 56px; align-items: center; }
.waitlist .eyebrow { color: var(--marigold-soft); }
.waitlist .eyebrow::before { background: #fff; }
.waitlist h2 { font-size: clamp(2.2rem, 4.6vw, 3.8rem); color: #fff; }
.waitlist h2 em { font-style: italic; color: var(--marigold-soft); }
.waitlist-lead { font-size: 1.15rem; color: rgba(255,255,255,.86); margin: 18px 0 26px; max-width: 42ch; }
.contact-row { display: grid; gap: 14px; }
.contact-row a { display: flex; align-items: center; gap: 14px; text-decoration: none; font-weight: 700; }
.contact-row a .ci { width: 46px; height: 46px; border-radius: 13px; background: rgba(255,255,255,.16); display: grid; place-items: center; flex: none; }
.contact-row a span.sub { display: block; font-weight: 500; font-size: .84rem; color: rgba(255,255,255,.7); }

.form-card { background: var(--white); color: var(--ink); border-radius: var(--radius-lg); padding: 38px; box-shadow: var(--shadow); }
.form-card h3 { font-size: 1.7rem; color: var(--sage-800); margin-bottom: 6px; }
.form-card .sub { color: var(--ink-60); font-size: .96rem; margin-bottom: 22px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 800; font-size: .82rem; color: var(--sage-800); margin-bottom: 7px; letter-spacing: .02em; }
.field input, .field select {
  width: 100%; font-family: var(--font-text); font-size: 1rem;
  padding: 14px 16px; border-radius: 14px;
  border: 2px solid #E6DAC0; background: var(--cream);
  color: var(--ink); transition: border .18s ease;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--raspberry); }
.field.two { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-card .btn { width: 100%; justify-content: center; margin-top: 6px; }
.form-success { text-align: center; padding: 30px 10px; }
.form-success .ok { width: 70px; height: 70px; border-radius: 50%; background: var(--sage-100); display: grid; place-items: center; margin: 0 auto 18px; }
.form-success h3 { margin-bottom: 8px; }
.form-success p { color: var(--ink-60); margin: 0; }

/* ============================================================
   LOGO CONCEPTS
   ============================================================ */
.logos { background: var(--cream); border-top: 1px dashed rgba(36,56,42,.2); }
.logos .note-tag { display: inline-block; font-weight: 800; font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--raspberry); margin-bottom: 14px; }
.logos h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); color: var(--sage-800); max-width: 22ch; }
.logos .lead { color: var(--ink-60); margin: 14px 0 44px; max-width: 56ch; font-size: 1.05rem; }
.logo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.logo-card { background: var(--white); border-radius: var(--radius); padding: 38px 28px 26px; box-shadow: var(--shadow-sm); text-align: center; border: 1px solid rgba(36,56,42,.06); }
.logo-card .stageL { height: 150px; display: grid; place-items: center; margin-bottom: 22px; }
.logo-card .cap { font-weight: 800; color: var(--sage-800); font-size: 1.02rem; }
.logo-card .cap-sub { font-size: .86rem; color: var(--ink-60); margin-top: 4px; }

/* ============================================================
   TERRITORIAL ACKNOWLEDGEMENT
   ============================================================ */
.ack { background: var(--cream-2); border-top: 1px solid rgba(36,56,42,.1); padding: 40px 0; }
.ack .wrap { display: flex; gap: 20px; align-items: flex-start; max-width: 920px; }
.ack .leaf { flex: none; width: 46px; height: 46px; border-radius: 13px; background: var(--sage-100); display: grid; place-items: center; }
.ack p { margin: 0; color: var(--sage-800); font-size: .98rem; line-height: 1.62; }
.ack p b { color: var(--sage-900); }
.ack .label { display: block; font-weight: 800; font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--raspberry); margin-bottom: 8px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--sage-900); color: rgba(251,244,228,.7); padding: 64px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 44px; }
.footer h4 { font-family: var(--font-text); font-weight: 800; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: var(--marigold-soft); margin: 0 0 16px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer a { text-decoration: none; color: rgba(251,244,228,.7); font-size: .96rem; }
.footer a:hover { color: var(--cream); }
.footer .brand-name { color: var(--cream); }
.footer .brand-tag { color: var(--marigold-soft); }
.footer .fdesc { font-size: .96rem; margin: 18px 0 0; max-width: 32ch; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 22px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .86rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .nav-toggle { display: block; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream); padding: 16px 28px 24px;
    border-bottom: 1px solid rgba(36,56,42,.1); box-shadow: var(--shadow-sm);
  }
  .nav.open .nav-links a { padding: 10px 0; width: 100%; }
  .hero-grid, .phil-top, .app-grid, .center-grid, .waitlist-grid { grid-template-columns: 1fr; }
  .hero-art { max-width: 460px; margin: 8px auto 0; }
  .phil-grid { grid-template-columns: 1fr; }
  .programs-grid { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .logo-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .app-grid { gap: 40px; }
  .phone-stage { order: -1; }
}
@media (max-width: 560px) {
  body { font-size: 17px; }
  .wrap { padding: 0 20px; }
  .center-feats { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .field.two { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery { grid-auto-rows: 130px; }
  .program { padding: 32px; min-height: auto; }
}
