/* ============================================================
   Joyce Onafowokan Parent Advocacy Services — Design System
   Direction: warm, rounded, reassuring. "Soft stacked panels."
   Green-forward, with a hand-warm voice — deliberately its own look.
   ============================================================ */

:root {
  /* Warm canvas + ink */
  --cream:      #FAF6EE;
  --cream-deep: #F0E9DA;
  --surface:    #FFFFFF;
  --ink:        #1F2A24;
  --ink-soft:   #45524B;
  --ink-muted:  #6B776F;

  /* Brand — green primary, warm gold accent/CTA, soft sky, gentle clay. */
  --green:      #2F6B4F;
  --green-deep: #214E39;
  --green-soft: #3F8B66;
  --green-tint: #E7F1EA;
  --green-line: #CCDCD2;

  --gold:       #CE9B3E;
  --gold-deep:  #A1751F;
  --gold-soft:  #F4D58A;
  --gold-tint:  #FAEFD6;

  --sky:        #4F7E97;
  --sky-deep:   #3A6275;
  --sky-tint:   #E7EEF2;

  --clay:       #C56E4F;
  --clay-deep:  #A6543A;
  --clay-tint:  #F7E6DE;

  --line:       #EAE1D2;
  --shadow-sm:  0 2px 6px rgba(33,78,57,.06);
  --shadow-md:  0 10px 28px -10px rgba(33,78,57,.18);
  --shadow-lg:  0 28px 60px -22px rgba(33,78,57,.34);

  --r-sm: 14px;
  --r-md: 22px;
  --r-lg: 30px;
  --r-xl: 44px;
  --r-panel: clamp(30px, 4.5vw, 64px);

  --container: 1160px;
  --gutter: clamp(20px, 5vw, 48px);

  --font-display: "Bricolage Grotesque", "Trebuchet MS", system-ui, sans-serif;
  --font-body: "Hanken Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  font-size: 1.06rem;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--green-deep); text-decoration-thickness: 1.5px; text-underline-offset: 2px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-optical-sizing: auto;
}
h1 { font-size: clamp(2.4rem, 1.5rem + 4vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.85rem, 1.35rem + 2.2vw, 2.7rem); }
h3 { font-size: clamp(1.2rem, 1.05rem + .9vw, 1.5rem); }
p { max-width: 64ch; }
.lead { font-size: clamp(1.1rem, 1rem + .5vw, 1.28rem); color: var(--ink-soft); line-height: 1.6; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { position: relative; padding-block: clamp(56px, 8vw, 104px); z-index: 2; }
.narrow { max-width: 760px; }

/* Soft "stacked panel" treatment — rounded tops give the page a calm, card-like rhythm */
.section--tint, .section--green {
  border-radius: var(--r-panel) var(--r-panel) 0 0;
  margin-top: clamp(-64px, -4.5vw, -30px);
  padding-top: clamp(72px, 9vw, 120px);
}
.section--tint { background: var(--cream-deep); }
.section--green { background: var(--green-deep); color: var(--cream); }
.section--green h1, .section--green h2, .section--green h3 { color: #fff; }
.section--green p { color: rgba(255,255,255,.86); }
.section--green a:not(.btn) { color: var(--gold-soft); }
/* When two soft panels stack, only round the first transition */
.section--tint + .section--tint, .section--green + .section--green { border-radius: 0; margin-top: 0; padding-top: clamp(56px,8vw,104px); }

/* ---------- Eyebrow (pill) ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .5em;
  font-family: var(--font-body); font-weight: 800;
  font-size: .76rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--green-deep); background: var(--green-tint);
  border-radius: 999px; padding: .45em .95em; margin-bottom: 1.1rem;
}
.eyebrow svg { width: 15px; height: 15px; }
.section--green .eyebrow { color: var(--gold-soft); background: rgba(255,255,255,.1); }

/* ---------- Skip link + focus ---------- */
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 1000;
  background: var(--green-deep); color: #fff; padding: .7em 1.1em;
  border-radius: 0 0 var(--r-sm) var(--r-sm); transition: top .2s; text-decoration: none;
}
.skip-link:focus { top: 0; }
:focus-visible { outline: 3px solid var(--gold-deep); outline-offset: 2px; border-radius: 6px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--cream) 92%, transparent);
  backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; gap: 1.2rem; min-height: 86px; }
.brand { display: flex; align-items: center; gap: .65rem; text-decoration: none; color: var(--ink); margin-right: auto; }
.brand__mark { flex: none; width: 44px; height: 44px; display: inline-flex; }
.brand__mark svg { width: 44px; height: 44px; }
.brand__name { font-family: var(--font-display); font-weight: 700; font-size: 1.22rem; line-height: 1; letter-spacing: -.02em; display: block; }
.brand__tag { display: block; font-family: var(--font-body); font-weight: 800; font-size: .6rem; letter-spacing: .16em; text-transform: uppercase; color: var(--green); margin-top: 4px; }

.nav__links { display: flex; align-items: center; gap: .1rem; list-style: none; padding: 0; }
.nav__links a {
  display: block; padding: .55em .7em; border-radius: 999px;
  font-weight: 700; font-size: .92rem; color: var(--ink-soft); text-decoration: none;
  transition: background .15s, color .15s; white-space: nowrap;
}
.nav__links a:hover { background: var(--green-tint); color: var(--green-deep); }
.nav__links a[aria-current="page"] { color: var(--green-deep); background: var(--green-tint); }
.nav__cta { display: flex; align-items: center; gap: .85rem; }
.nav__cta--inline { display: none; }
.nav__phone {
  display: inline-flex; align-items: center; gap: .4em; white-space: nowrap;
  font-weight: 800; font-size: .92rem; color: var(--green-deep); text-decoration: none;
}
.nav__phone:hover { color: var(--green); }
.nav__phone svg { width: 18px; height: 18px; flex: none; }
.nav__toggle { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: var(--font-body); font-weight: 800; font-size: 1rem;
  padding: .82em 1.45em; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; text-decoration: none; line-height: 1;
  transition: transform .15s, box-shadow .15s, background .15s, color .15s, border-color .15s;
  min-height: 48px;
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--green); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--green-deep); box-shadow: var(--shadow-md); }
.btn--gold { background: var(--gold); color: #2C1F06; box-shadow: var(--shadow-sm); }
.btn--gold:hover { background: var(--gold-deep); color: #fff; box-shadow: var(--shadow-md); }
.btn--secondary { background: var(--sky); color: #fff; }
.btn--secondary:hover { background: var(--sky-deep); }
.btn--outline { background: transparent; color: var(--green-deep); border-color: var(--green-line); }
.btn--outline:hover { border-color: var(--green); background: var(--green-tint); }
.btn--ghost-light { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.5); }
.btn--ghost-light:hover { background: rgba(255,255,255,.2); }
.btn--sm { padding: .58em 1.05em; font-size: .9rem; min-height: 42px; }
.btn--lg { padding: .98em 1.8em; font-size: 1.06rem; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding-block: clamp(52px, 7vw, 96px); }
.hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero__grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 5vw, 68px);
  align-items: center;
}
.hero__title { margin-bottom: 1.1rem; }
/* warm marker-style highlight instead of italic serif */
.hero__title em {
  font-style: normal; color: var(--green-deep);
  background: linear-gradient(transparent 62%, var(--gold-soft) 62% 92%, transparent 92%);
  padding: 0 .05em;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.9rem; }
.hero__trust { display: flex; flex-wrap: wrap; gap: .5rem 1.4rem; margin-top: 1.9rem; color: var(--ink-muted); font-weight: 600; font-size: .92rem; }
.hero__trust span { display: inline-flex; align-items: center; gap: .45em; }
.hero__trust svg { width: 18px; height: 18px; color: var(--green); }

/* Framed photo (rounded rectangle, soft frame) + one floating badge + blobs */
.hero__art { position: relative; aspect-ratio: 5 / 5; display: grid; place-items: center; }
.hero__frame {
  position: relative; z-index: 2; width: 100%; max-width: 460px;
  border-radius: var(--r-xl); background: var(--surface);
  border: 1px solid var(--green-line); box-shadow: var(--shadow-lg); padding: 14px;
}
.hero__photo {
  border-radius: calc(var(--r-xl) - 14px); aspect-ratio: 4/4.4; overflow: hidden;
  background:
    radial-gradient(130% 110% at 25% 15%, var(--gold-tint), transparent 55%),
    linear-gradient(155deg, var(--green-tint), var(--sky-tint) 70%, var(--clay-tint));
  display: grid; place-items: center;
}
.hero__photo span { color: var(--green-deep); font-weight: 700; opacity: .5; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; text-align: center; padding: 1rem; }
.hero__badge {
  position: absolute; z-index: 3; left: -14px; bottom: 30px;
  background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-md);
  border-radius: 999px; padding: .65em 1.1em; font-weight: 800; font-size: .92rem;
  color: var(--gold-deep); display: inline-flex; align-items: center; gap: .5em;
}
.hero__badge svg { width: 18px; height: 18px; }
.blob { position: absolute; z-index: 0; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.blob--1 { width: 220px; height: 220px; right: -6%; top: -6%; background: radial-gradient(circle at 35% 35%, var(--gold-tint), transparent 70%); }
.blob--2 { width: 200px; height: 200px; left: -10%; bottom: -4%; background: radial-gradient(circle at 50% 50%, var(--green-tint), transparent 70%); }

.arcs { position: absolute; inset: 0; z-index: 0; pointer-events: none; width: 100%; height: 100%; }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: clamp(18px, 2.4vw, 28px); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  position: relative;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(24px, 3vw, 34px); box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s, border-color .2s;
  display: flex; flex-direction: column; gap: .6rem;
}
.card--link:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--green-line); }
.card h3 a { text-decoration: none; color: inherit; }
.card h3 a::after { content: ""; position: absolute; inset: 0; }
.card p { color: var(--ink-soft); font-size: .99rem; }
/* circular icon badge */
.card__icon {
  width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center;
  background: var(--green-tint); color: var(--green-deep); margin-bottom: .4rem;
}
.card__icon svg { width: 27px; height: 27px; }
.card__more { margin-top: auto; font-weight: 800; color: var(--green-deep); font-size: .92rem; display: inline-flex; align-items: center; gap: .35em; }
.card__more svg { width: 16px; height: 16px; }
.card--green  .card__icon { background: var(--green-tint); color: var(--green-deep); }
.card--accent .card__icon { background: var(--gold-tint);  color: var(--gold-deep); }
.card--sky    .card__icon { background: var(--sky-tint);   color: var(--sky-deep); }
.card--rose   .card__icon { background: var(--clay-tint);  color: var(--clay-deep); }

/* Quote / story cards */
.card--quote .card__icon { background: var(--gold-tint); color: var(--gold-deep); }
.story__text { font-size: 1.06rem; color: var(--ink-soft); }
.story__who { margin-top: auto; font-size: .92rem; color: var(--ink-muted); }
.story__who strong { color: var(--ink); }

/* Split feature */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.split__media {
  aspect-ratio: 4/3; border-radius: var(--r-xl); border: 1px solid var(--green-line);
  background:
    radial-gradient(120% 120% at 20% 10%, var(--gold-tint), transparent 55%),
    linear-gradient(150deg, var(--green-tint), var(--sky-tint));
  display: grid; place-items: center; box-shadow: var(--shadow-md); overflow: hidden;
}
.split__media span { color: var(--green-deep); opacity: .5; font-weight: 700; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; }

/* Checklist */
.checklist { list-style: none; padding: 0; display: grid; gap: .9rem; align-content: start; }
.checklist li { display: grid; grid-template-columns: auto 1fr; gap: .85rem; align-items: start;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 1rem 1.15rem; box-shadow: var(--shadow-sm); color: var(--ink-soft); }
.checklist svg { width: 24px; height: 24px; color: #fff; background: var(--green); border-radius: 50%; padding: 3px; margin-top: 1px; flex: none; }

/* Steps */
.steps { counter-reset: step; display: grid; gap: .5rem; }
.step { display: grid; grid-template-columns: auto 1fr; gap: 1.1rem; align-items: start; padding: 1.2rem 0; border-top: 1px solid var(--line); }
.step:first-child { border-top: none; }
.step__num {
  counter-increment: step; width: 46px; height: 46px; flex: none;
  border-radius: 50%; background: var(--green); color: #fff;
  font-family: var(--font-display); font-weight: 700; display: grid; place-items: center; font-size: 1.15rem;
}
.step__num::before { content: counter(step); }
.steps--light .step { border-color: rgba(255,255,255,.18); }
.steps--light .step__num { background: var(--gold); color: #2C1F06; }
.steps--light h3 { color: #fff; }
.steps--light p { color: rgba(255,255,255,.82); }

/* Mission blockquote */
.mission { position: relative; }
.mission svg { width: 42px; height: 42px; color: var(--gold-soft); margin-inline: auto; margin-bottom: 1rem; }
.mission p { font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.4rem, 1.1rem + 1.6vw, 2.1rem); line-height: 1.28; color: #fff; max-width: 24ch; margin-inline: auto; letter-spacing: -.01em; }

/* CTA band */
.cta-band { position: relative; overflow: hidden; border-radius: var(--r-xl); padding: clamp(36px, 6vw, 68px);
  background: linear-gradient(135deg, var(--green-deep), var(--green) 60%, var(--green-soft));
  color: #fff; box-shadow: var(--shadow-lg); }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.92); }
.cta-band .hero__actions { margin-top: 1.5rem; }
.cta-band__arc { position: absolute; right: -50px; top: -50px; width: 300px; height: 300px; opacity: .28; }

/* Prose */
.prose h2 { margin-top: 2.2rem; margin-bottom: .7rem; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 1.8rem; margin-bottom: .5rem; }
.prose p, .prose ul, .prose ol { margin-bottom: 1rem; color: var(--ink-soft); }
.prose ul, .prose ol { padding-left: 1.3rem; }
.prose li { margin-bottom: .4rem; }
.prose li::marker { color: var(--green); }

/* Callout / note */
.note {
  border-left: 4px solid var(--gold); background: var(--gold-tint);
  border-radius: 0 var(--r-md) var(--r-md) 0; padding: 1.1rem 1.3rem; color: var(--ink-soft);
  font-size: .96rem;
}
.note strong { color: var(--ink); }
.note span { color: var(--ink-muted); }
.note--onDark { background: rgba(255,255,255,.1); border-left-color: var(--gold-soft); color: rgba(255,255,255,.9); border-radius: var(--r-md); }
.note--onDark strong { color: #fff; }

/* FAQ / concerns */
.faq details {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: .3rem 1.3rem; margin-bottom: .8rem; box-shadow: var(--shadow-sm);
}
.faq summary {
  cursor: pointer; font-family: var(--font-display); font-weight: 600; font-size: 1.1rem;
  padding: 1.05rem 0; list-style: none; display: flex; justify-content: space-between; gap: 1rem; align-items: center; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--green); transition: transform .2s; line-height: 1; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding-bottom: 1.1rem; margin: 0; color: var(--ink-soft); }

/* Forms */
.contact-grid { display: grid; grid-template-columns: 1.4fr .9fr; gap: clamp(28px, 4vw, 52px); align-items: start; }
.form { display: grid; gap: 1.05rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.05rem; }
.field { display: grid; gap: .4rem; }
.field label { font-weight: 800; font-size: .92rem; color: var(--ink); }
.field .req { color: var(--clay); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  padding: .82em .95em; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  background: var(--surface); width: 100%;
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 3px solid var(--gold-deep); outline-offset: 1px; border-color: var(--green); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__aside {
  background: var(--green-tint); border: 1px solid var(--green-line); border-radius: var(--r-lg);
  padding: clamp(24px,3vw,32px); display: grid; gap: 1.1rem; position: sticky; top: 108px;
}
.form__aside h3 { margin-bottom: .2rem; }
.form__aside-note { font-size: .9rem; color: var(--ink-muted); margin-top: .4rem; }

/* Contact methods */
.contact-card { display: flex; gap: .9rem; align-items: flex-start; }
.contact-card__icon { width: 46px; height: 46px; flex: none; border-radius: 50%; background: var(--surface); color: var(--green-deep); display: grid; place-items: center; box-shadow: var(--shadow-sm); }
.contact-card__icon svg { width: 22px; height: 22px; }
.contact-card__label { font-size: .74rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-muted); }
.contact-card a { font-weight: 800; color: var(--green-deep); text-decoration: none; }
.contact-card a:hover { text-decoration: underline; }

/* Page hero (interior) */
.page-hero { position: relative; padding-block: clamp(44px, 6vw, 76px); background: var(--cream-deep); border-bottom: 1px solid var(--line); overflow: hidden; }
.breadcrumb { font-size: .85rem; color: var(--ink-muted); font-weight: 700; margin-bottom: .9rem; }
.breadcrumb a { color: var(--green-deep); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* ---------- Footer ---------- */
.site-footer { position: relative; z-index: 2; background: var(--green-deep); color: rgba(255,255,255,.78);
  padding-block: clamp(52px, 6vw, 76px) 1.8rem; border-radius: var(--r-panel) var(--r-panel) 0 0; margin-top: clamp(-64px, -4.5vw, -30px); }
.section--green + .site-footer { border-radius: 0; margin-top: 0; }
.site-footer a { color: rgba(255,255,255,.8); text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer__grid { display: grid; grid-template-columns: 1.7fr 1fr 1.1fr; gap: 2.5rem; }
.brand--footer { color: #fff; }
.brand--footer .brand__name { color: #fff; }
.brand--footer .brand__mark { filter: drop-shadow(0 1px 2px rgba(0,0,0,.2)); }
.footer__brand p { color: rgba(255,255,255,.74); font-size: .95rem; margin-top: 1rem; }
.footer__note { font-size: .85rem; color: rgba(255,255,255,.55); }
.footer__col h4 { color: #fff; font-family: var(--font-body); font-weight: 800; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1rem; }
.footer__col ul { list-style: none; padding: 0; display: grid; gap: .6rem; font-size: .95rem; }
.footer__bottom { display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; justify-content: space-between; align-items: center;
  margin-top: 2.8rem; padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,.16); font-size: .82rem; color: rgba(255,255,255,.6); }
.footer__disclaimer { max-width: 60ch; }

/* Mobile sticky action bar */
.mobile-bar { display: none; }

/* Reveal-on-load stagger */
[data-reveal] { opacity: 0; transform: translateY(18px); }
.is-ready [data-reveal] { animation: reveal .7s cubic-bezier(.2,.7,.3,1) forwards; }
.is-ready [data-reveal="2"] { animation-delay: .1s; }
.is-ready [data-reveal="3"] { animation-delay: .2s; }
.is-ready [data-reveal="4"] { animation-delay: .3s; }
@keyframes reveal { to { opacity: 1; transform: none; } }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .nav__links, .nav__cta { gap: .5rem; }
  .nav__links a { padding: .5em .55em; font-size: .88rem; }
}
@media (max-width: 880px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__art { max-width: 420px; margin-inline: auto; order: -1; aspect-ratio: auto; }
  .split { grid-template-columns: 1fr; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .form__aside { position: static; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer__brand { grid-column: 1 / -1; }
  .nav__links, .nav__cta { display: none; }
  .nav__links.is-open {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--surface); border-bottom: 1px solid var(--line);
    padding: 1rem var(--gutter) 1.4rem; box-shadow: var(--shadow-md); gap: .15rem;
  }
  .nav__links.is-open .nav__cta--inline { display: flex; margin-top: .7rem; }
  .nav__links.is-open .nav__cta--inline .btn { width: 100%; }
  .nav__toggle {
    display: inline-flex; align-items: center; justify-content: center; margin-left: auto;
    width: 46px; height: 46px; border-radius: 14px; border: 1.5px solid var(--line);
    background: var(--surface); cursor: pointer; color: var(--ink);
  }
  .nav { min-height: 74px; }
}

@media (max-width: 600px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .section--tint, .section--green, .site-footer { border-radius: var(--r-md) var(--r-md) 0 0; }

  .mobile-bar {
    display: flex; gap: .6rem; position: fixed; left: 0; right: 0; bottom: 0; z-index: 200;
    padding: .6rem .8rem calc(.6rem + env(safe-area-inset-bottom));
    background: color-mix(in srgb, var(--cream) 92%, transparent);
    backdrop-filter: blur(8px); border-top: 1px solid var(--line);
  }
  .mobile-bar .btn { flex: 1; }
  body { padding-bottom: 74px; }
}

/* ============================================================
   Building-blocks motif — "Maximal" design direction (option 10)
   A playful, reassuring building-blocks language layered over the
   base system: floating block accents, foundation-row dividers,
   block card icons, chunky "stud"-shadowed cards, square step chips,
   a faint block texture on tinted/green panels, and small gold block
   bullets before every eyebrow and section heading.
   ============================================================ */

/* Floating block accents (hero badge + CTA badge) */
.blk-accent { position: absolute; z-index: 4; width: 92px; height: auto;
  filter: drop-shadow(0 10px 22px rgba(33,78,57,.20)); }
.blk-accent--hero { top: -22px; right: -6px; }
.blk-cta { position: absolute; top: 20px; right: 24px; width: 76px; height: auto; z-index: 3; }

/* Foundation-row dividers between sections */
.blk-divider { display: flex; justify-content: center; padding: 16px 20px; }
.blk-divider__svg { width: min(440px, 84%); height: auto; }

/* Alphabet blocks in the hero frame (replaces the photo placeholder) */
.hero__photo--blocks { display: flex; align-items: center; justify-content: center; background: var(--green-tint); }
.hpb { width: 76%; height: auto; }

/* Foundation row in the footer */
.blk-footer { display: block; width: 230px; max-width: 80%; height: auto; margin: 14px 0 4px; }

/* Gold block bullet before eyebrows */
.eyebrow::before { content: ""; display: inline-block; width: .66em; height: .66em;
  border-radius: 3px; background: var(--gold); margin-right: .55em; vertical-align: -.02em; }

/* Small gold block before each section heading (the "maximal" signature) */
h2::before { content: ""; display: inline-block; width: .5em; height: .5em;
  border-radius: 4px; background: var(--gold); margin-right: .42em; vertical-align: middle; }

/* Chunky "physical block" cards: tighter radius + offset stud shadow */
.card { border-radius: 14px;
  box-shadow: 5px 7px 0 -1px rgba(47,107,79,.16), 0 10px 22px -16px rgba(33,78,57,.4); }
.card--link:hover { transform: translateY(-3px); }

/* Numbered blocks: square the step-number chips */
.steps--blocks .step__num { border-radius: 12px; }

/* Faint block texture behind tinted / green panels */
.section--tint { background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='64' height='64'><g fill='%232F6B4F' opacity='0.05'><rect x='10' y='10' width='16' height='16' rx='4'/><rect x='38' y='36' width='12' height='12' rx='3'/></g></svg>"); }
.section--green { background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='64' height='64'><g fill='%23ffffff' opacity='0.06'><rect x='10' y='10' width='16' height='16' rx='4'/><rect x='38' y='36' width='12' height='12' rx='3'/></g></svg>"); }
