:root {
  --bg: #f4efe6;
  --bg-deep: #e9f4f0;
  --surface: rgba(255, 251, 244, 0.9);
  --surface-strong: #fff9f1;
  --ink: #163041;
  --muted: #4d6672;
  --line: rgba(22, 48, 65, 0.14);
  --line-strong: rgba(22, 48, 65, 0.22);
  --accent: #2a7f8e;
  --accent-hover: #226974;
  --sea-glass: #79c4b7;
  --coral: #e98a6d;
  --sand: #f7efe3;
  --shadow: 0 18px 45px rgba(16, 35, 48, 0.12);
  --shadow-soft: 0 10px 24px rgba(16, 35, 48, 0.08);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --maxw: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  color: var(--ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(121, 196, 183, 0.22), transparent 32%),
    radial-gradient(circle at 85% 8%, rgba(233, 138, 109, 0.17), transparent 24%),
    linear-gradient(180deg, #f8f4ed 0%, #f4efe6 26%, #eef6f4 100%);
  min-height: 100vh;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img { display: block; max-width: 100%; }
button, a, input, select, textarea { font: inherit; }
button { cursor: pointer; }
p { margin: 0; }
h1, h2, h3 { margin: 0; font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif; letter-spacing: -0.02em; }
h1 { font-size: clamp(3rem, 7vw, 5.8rem); line-height: 0.95; max-width: 9ch; text-wrap: balance; }
h2 { font-size: clamp(2rem, 3vw, 3.1rem); line-height: 1.02; text-wrap: balance; }
h3 { font-size: clamp(1.2rem, 1.6vw, 1.45rem); line-height: 1.2; text-wrap: balance; }
a { color: inherit; text-decoration: none; }
.shell { width: min(var(--maxw), calc(100% - 2rem)); margin-inline: auto; }
.section-pad { padding-block: clamp(4rem, 7vw, 7rem); }
.section-tint { background: linear-gradient(180deg, rgba(255, 250, 244, 0.42), rgba(232, 242, 239, 0.78)); border-block: 1px solid rgba(22, 48, 65, 0.08); }
.eyebrow { margin-bottom: 0.8rem; color: var(--accent); text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.78rem; font-weight: 700; }
.section-intro { color: var(--muted); font-size: 1.02rem; line-height: 1.75; max-width: 62ch; }
.section-intro--tight { max-width: 45ch; }
.skip-link { position: absolute; left: 1rem; top: 0.75rem; z-index: 1000; padding: 0.8rem 1rem; border-radius: 999px; background: var(--ink); color: #fff; transform: translateY(-180%); transition: transform 160ms var(--ease); }
.skip-link:focus { transform: translateY(0); }
.site-header { position: sticky; top: 0; z-index: 50; backdrop-filter: blur(18px); background: rgba(245, 240, 232, 0.86); border-bottom: 1px solid rgba(22, 48, 65, 0.1); }
.header-shell { display: grid; grid-template-columns: auto 1fr auto auto; gap: 1rem; align-items: center; padding-block: 0.85rem; }
.brand { display: inline-flex; align-items: center; gap: 0.85rem; min-width: 0; }
.brand-mark { width: 2.75rem; height: 2.75rem; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(135deg, rgba(42, 127, 142, 0.18), rgba(121, 196, 183, 0.34)); color: var(--accent); box-shadow: inset 0 0 0 1px rgba(42, 127, 142, 0.24); font-size: 1.25rem; flex: none; }
.brand-text { display: grid; min-width: 0; }
.brand-text strong { font-size: 0.98rem; line-height: 1.1; }
.brand-text span { font-size: 0.82rem; color: var(--muted); line-height: 1.25; }
.site-nav { display: flex; flex-wrap: wrap; gap: 0.5rem 0.9rem; align-items: center; justify-content: center; min-width: 0; }
.site-nav a { position: relative; padding: 0.38rem 0.2rem; color: var(--ink); font-size: 0.95rem; line-height: 1.2; white-space: nowrap; }
.site-nav a::after { content: ""; position: absolute; left: 0.1rem; right: 0.1rem; bottom: 0.15rem; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: left; transition: transform 180ms var(--ease); opacity: 0.6; }
.site-nav a:hover::after, .site-nav a:focus-visible::after { transform: scaleX(1); }
.site-nav__cta-row { display: none; }
.header-actions { display: inline-flex; gap: 0.9rem; align-items: center; }
.nav-toggle { display: none; gap: 0.65rem; align-items: center; justify-content: center; padding: 0.8rem 1rem; border: 1px solid var(--line); border-radius: 999px; background: rgba(255, 251, 245, 0.92); color: var(--ink); box-shadow: var(--shadow-soft); }
.nav-toggle__label { font-weight: 600; }
.nav-toggle__icon { width: 1.1rem; height: 0.85rem; position: relative; border-top: 2px solid currentColor; }
.nav-toggle__icon::before, .nav-toggle__icon::after { content: ""; position: absolute; left: 0; width: 100%; border-top: 2px solid currentColor; }
.nav-toggle__icon::before { top: 0.05rem; }
.nav-toggle__icon::after { bottom: 0.05rem; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem; padding: 0.88rem 1.2rem; border-radius: 999px; border: 1px solid transparent; transition: transform 160ms var(--ease), background-color 160ms var(--ease), border-color 160ms var(--ease), color 160ms var(--ease), box-shadow 160ms var(--ease); box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset; font-weight: 700; line-height: 1; white-space: nowrap; }
.btn:hover { transform: translateY(-1px); }
.btn--solid { background: var(--accent); color: #fff; box-shadow: 0 18px 30px rgba(42, 127, 142, 0.18); }
.btn--solid:hover { background: var(--accent-hover); }
.btn--solid-strong { box-shadow: 0 20px 34px rgba(42, 127, 142, 0.24); }
.btn--ghost { background: rgba(255, 250, 244, 0.86); color: var(--ink); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: rgba(42, 127, 142, 0.45); background: rgba(255, 255, 255, 0.98); }
.btn--ghost-strong { border-color: rgba(22, 48, 65, 0.26); background: rgba(255, 252, 247, 0.98); }
.btn--large { padding: 1rem 1.35rem; }
.btn:focus-visible, .nav-toggle:focus-visible, .site-nav a:focus-visible, .footer-links a:focus-visible, .event-link:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, button:focus-visible { outline: 3px solid rgba(233, 138, 109, 0.95); outline-offset: 3px; }
.hero { position: relative; overflow: clip; }
.hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0) 36%), linear-gradient(120deg, rgba(255, 255, 255, 0.1), transparent 30%); pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr); gap: clamp(1.5rem, 3vw, 3rem); align-items: start; }
.hero-copy { padding-top: clamp(1rem, 3vw, 4rem); max-width: 42rem; }
.hero-lead { margin-top: 1.5rem; font-size: clamp(1.1rem, 1.6vw, 1.35rem); line-height: 1.75; color: var(--ink); max-width: 36ch; }
.hero-support { margin-top: 1rem; font-size: 1rem; line-height: 1.8; color: var(--muted); max-width: 42ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.7rem; }
.trust-line { list-style: none; padding: 0; margin: 1.5rem 0 0; display: flex; flex-wrap: wrap; gap: 0.65rem; }
.trust-line li { padding: 0.48rem 0.78rem; border-radius: 999px; background: rgba(255, 251, 245, 0.86); border: 1px solid rgba(22, 48, 65, 0.1); font-size: 0.9rem; color: var(--muted); }
.hero-media { position: relative; display: grid; gap: 1rem; padding-top: clamp(0.3rem, 1vw, 1rem); }
.hero-figure, .feature-media--framed figure, .research-feature figure { position: relative; margin: 0; overflow: clip; border-radius: var(--radius-xl); border: 1px solid rgba(22, 48, 65, 0.12); box-shadow: var(--shadow); background: #d9ecee; }
.hero-figure img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; transform: scale(1.01); filter: saturate(1.02) contrast(1.02); }
.hero-figure figcaption { position: absolute; left: 1rem; right: 1rem; bottom: 1rem; display: flex; justify-content: space-between; gap: 1rem; align-items: flex-end; color: #fff; text-shadow: 0 2px 18px rgba(0, 0, 0, 0.25); font-size: 0.88rem; line-height: 1.35; }
.hero-figure figcaption span:first-child { max-width: 12ch; font-weight: 700; }
.hero-annotation { position: absolute; display: flex; align-items: center; gap: 0.55rem; color: var(--ink); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.hero-annotation__line { width: 2.6rem; height: 1px; background: var(--coral); position: relative; }
.hero-annotation__line::after { content: ""; position: absolute; right: 0; top: -0.2rem; width: 0.38rem; height: 0.38rem; border-radius: 50%; background: var(--coral); }
.hero-annotation--left { left: -0.2rem; top: 1.25rem; transform: translateX(-100%); }
.hero-annotation--right { right: -0.2rem; bottom: 4.8rem; transform: translateX(100%); }
.hero-card { position: absolute; left: 1rem; bottom: 1rem; width: min(20rem, calc(100% - 2rem)); padding: 1rem 1rem 0.95rem; border-radius: 1.3rem; background: rgba(255, 250, 244, 0.92); backdrop-filter: blur(8px); border: 1px solid rgba(22, 48, 65, 0.12); box-shadow: var(--shadow-soft); }
.hero-card__kicker { color: var(--accent); text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.72rem; font-weight: 700; margin-bottom: 0.4rem; }
.hero-card h2 { font-size: 1.35rem; line-height: 1.1; margin-bottom: 0.45rem; }
.hero-card p { color: var(--muted); line-height: 1.55; font-size: 0.94rem; }
.mini-list { margin: 0.9rem 0 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.7rem; }
.mini-list div { padding-top: 0.75rem; border-top: 1px solid rgba(22, 48, 65, 0.12); }
.mini-list dt { font-size: 0.74rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.12em; }
.mini-list dd { margin: 0.24rem 0 0; font-weight: 700; }
.metrics-shell { margin-top: clamp(1.4rem, 2.4vw, 2rem); display: grid; gap: 1.2rem; }
.metrics-note { display: flex; align-items: end; justify-content: space-between; gap: 1.5rem; border-top: 1px solid rgba(22, 48, 65, 0.1); padding-top: 1.1rem; }
.metrics-note h2 { font-size: clamp(1.7rem, 2.8vw, 2.3rem); }
.metrics-note p:last-child { color: var(--muted); line-height: 1.7; max-width: 47ch; }
.metrics-grid { margin: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.metric-card, .process-grid article, .school-main, .school-aside, .events-side, .visit-card, .contact-card, .research-card, .support-card, .quote-card, .events-list li { padding: 1.2rem; border-radius: 1.4rem; background: rgba(255, 251, 245, 0.92); border: 1px solid rgba(22, 48, 65, 0.1); box-shadow: var(--shadow-soft); }
.metric-card dt { color: var(--muted); font-size: 0.82rem; line-height: 1.45; text-transform: uppercase; letter-spacing: 0.08em; min-height: 3.2em; }
.metric-card dd { margin: 0.45rem 0 0; font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif; font-size: clamp(2rem, 4vw, 3rem); line-height: 1; color: var(--ink); }
.metric-card p, .process-grid article p, .school-main p, .school-aside p, .events-side p, .visit-card p, .contact-card p, .research-card p, .support-card p { margin-top: 0.55rem; color: var(--muted); line-height: 1.7; }
.feature-split, .school-layout, .research-grid, .events-layout, .support-grid, .visit-grid, .contact-layout { display: grid; gap: 1.25rem; }
.feature-split { grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr); align-items: center; }
.feature-media--framed img, .research-feature img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.feature-media--framed figcaption, .research-feature figcaption { position: absolute; left: 1rem; bottom: 1rem; padding: 0.58rem 0.8rem; border-radius: 999px; background: rgba(255, 250, 244, 0.92); border: 1px solid rgba(22, 48, 65, 0.12); color: var(--ink); font-size: 0.8rem; font-weight: 700; box-shadow: var(--shadow-soft); }
.feature-copy { padding-left: clamp(0rem, 2vw, 1rem); }
.bullet-list, .school-aside ul, .events-side ul, .support-card ul, .visit-card ul, .contact-card ul { margin: 1.2rem 0 0; padding: 0; list-style: none; display: grid; gap: 0.72rem; }
.bullet-list li, .school-aside li, .events-side li, .support-card li, .visit-card li, .contact-card li { position: relative; padding-left: 1.35rem; color: var(--ink); line-height: 1.6; }
.bullet-list li::before, .school-aside li::before, .events-side li::before, .support-card li::before, .visit-card li::before, .contact-card li::before { content: ""; position: absolute; left: 0; top: 0.55rem; width: 0.5rem; height: 0.5rem; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--sea-glass)); box-shadow: 0 0 0 4px rgba(42, 127, 142, 0.08); }
.process-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; margin-top: 1.4rem; }
.feature-actions, .form-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 0.8rem; margin-top: 1.5rem; }
.school-layout { grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr); align-items: start; }
.school-points { margin-top: 1.2rem; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.9rem; }
.school-points div { padding: 0.9rem; border-radius: 1rem; background: linear-gradient(180deg, rgba(42, 127, 142, 0.06), rgba(121, 196, 183, 0.1)); border: 1px solid rgba(22, 48, 65, 0.08); }
.school-points strong { display: block; font-size: 0.82rem; color: var(--accent); text-transform: uppercase; letter-spacing: 0.08em; }
.school-points span { display: block; margin-top: 0.35rem; color: var(--muted); line-height: 1.5; }
.school-aside { border-left: 4px solid rgba(42, 127, 142, 0.42); }
.research-grid { grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); align-items: start; }
.research-feature { display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr); gap: 1rem; align-items: center; padding: 1rem; border-radius: 1.6rem; background: rgba(255, 251, 245, 0.78); border: 1px solid rgba(22, 48, 65, 0.1); box-shadow: var(--shadow-soft); }
.research-feature img { aspect-ratio: 1 / 1.15; }
.research-copy { padding-right: 0.4rem; }
.research-tag, .support-tag { margin-bottom: 0.55rem; color: var(--accent); text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.72rem; font-weight: 800; }
.research-stack { display: grid; gap: 1rem; }
.events-layout { grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr); }
.events-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.9rem; }
.events-list li { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; gap: 1rem; align-items: center; }
.event-date { display: grid; place-items: center; min-width: 5.8rem; padding: 0.8rem 0.8rem 0.7rem; border-radius: 1rem; background: linear-gradient(180deg, rgba(42, 127, 142, 0.12), rgba(121, 196, 183, 0.16)); border: 1px solid rgba(42, 127, 142, 0.18); text-align: center; }
.event-date strong { font-size: 1rem; }
.event-date span { margin-top: 0.18rem; display: block; color: var(--muted); font-size: 0.8rem; line-height: 1.2; }
.event-body h3 { margin-bottom: 0.35rem; }
.event-body p { color: var(--muted); line-height: 1.6; }
.event-link { color: var(--accent); font-weight: 700; white-space: nowrap; }
.event-link:hover { color: var(--accent-hover); }
.events-side { background: linear-gradient(180deg, rgba(42, 127, 142, 0.08), rgba(233, 138, 109, 0.08)); }
.section-quotes { padding-top: clamp(2rem, 4vw, 4rem); }
.quotes-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.quote-card { margin: 0; position: relative; }
.quote-card::before { content: "“"; position: absolute; left: 1rem; top: 0.35rem; font-family: "Iowan Old Style", Georgia, serif; font-size: 3.4rem; line-height: 1; color: rgba(42, 127, 142, 0.18); }
.quote-card p { position: relative; z-index: 1; margin-top: 1.3rem; font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif; font-size: 1.15rem; line-height: 1.65; color: var(--ink); }
.quote-card footer { margin-top: 1rem; padding-top: 0.9rem; border-top: 1px solid rgba(22, 48, 65, 0.1); display: grid; gap: 0.15rem; }
.quote-card footer strong { font-size: 0.98rem; }
.quote-card footer span { color: var(--muted); font-size: 0.93rem; }
.quote-card--lifted { transform: translateY(-0.8rem); }
.support-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.support-card { position: relative; overflow: clip; }
.support-card--volunteer { border-left: 4px solid rgba(121, 196, 183, 0.72); }
.support-card--donate { border-left: 4px solid rgba(233, 138, 109, 0.72); }
.donation-amounts { margin-top: 1rem; display: flex; flex-wrap: wrap; gap: 0.6rem; }
.donation-amounts span { padding: 0.55rem 0.8rem; border-radius: 999px; background: rgba(233, 138, 109, 0.1); border: 1px solid rgba(233, 138, 109, 0.25); font-weight: 700; }
.support-note { margin-top: 1rem; color: var(--muted); line-height: 1.7; }
.visit-grid { grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); }
.visit-dl { margin: 1rem 0 0; display: grid; gap: 1rem; }
.visit-dl div { padding-top: 1rem; border-top: 1px solid rgba(22, 48, 65, 0.1); }
.visit-dl dt { color: var(--accent); text-transform: uppercase; letter-spacing: 0.09em; font-size: 0.74rem; font-weight: 800; }
.visit-dl dd { margin: 0.35rem 0 0; color: var(--muted); line-height: 1.7; }
.visit-card--note { border-top: 4px solid rgba(42, 127, 142, 0.42); }
.contact-layout { grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); align-items: start; }
.enquiry-form { padding: 1.25rem; border-radius: 1.65rem; background: rgba(255, 251, 245, 0.94); border: 1px solid rgba(22, 48, 65, 0.1); box-shadow: var(--shadow); }
.field-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.field { display: grid; gap: 0.45rem; }
.field--full { margin-top: 1rem; }
label { font-weight: 700; line-height: 1.3; }
input, select, textarea { width: 100%; padding: 0.92rem 1rem; border-radius: 1rem; border: 1px solid rgba(22, 48, 65, 0.18); background: #fffdf9; color: var(--ink); transition: border-color 160ms var(--ease), box-shadow 160ms var(--ease), background-color 160ms var(--ease); }
input::placeholder, textarea::placeholder { color: #71858f; }
input:hover, select:hover, textarea:hover { border-color: rgba(42, 127, 142, 0.36); }
textarea { resize: vertical; min-height: 8.5rem; }
.field-error { min-height: 1.2em; color: #a23d30; font-size: 0.84rem; line-height: 1.35; }
.is-invalid { border-color: #c75745 !important; background: #fff7f5; box-shadow: 0 0 0 3px rgba(199, 87, 69, 0.12); }
.form-note { color: var(--muted); line-height: 1.65; }
.form-status { margin-top: 1rem; padding: 1rem 1.05rem; border-radius: 1rem; border: 1px solid rgba(42, 127, 142, 0.22); background: rgba(121, 196, 183, 0.14); color: var(--ink); line-height: 1.65; }
.contact-card { border-left: 4px solid rgba(233, 138, 109, 0.72); }
.contact-pullout { margin-top: 1.2rem; padding: 1rem; border-radius: 1.1rem; background: linear-gradient(180deg, rgba(42, 127, 142, 0.08), rgba(233, 138, 109, 0.08)); border: 1px solid rgba(22, 48, 65, 0.08); }
.contact-pullout strong { display: block; margin-bottom: 0.35rem; }
.site-footer { padding: 2rem 0 3.25rem; border-top: 1px solid rgba(22, 48, 65, 0.1); background: linear-gradient(180deg, rgba(12, 33, 44, 0.03), rgba(233, 242, 239, 0.98)); }
.footer-impact { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; gap: 1rem 1.25rem; align-items: center; margin-bottom: 1.5rem; padding: 1.15rem 1.2rem; border-radius: 1.6rem; background: linear-gradient(135deg, rgba(22, 48, 65, 0.96), rgba(42, 127, 142, 0.9)); color: #f7fbfc; box-shadow: var(--shadow); }
.footer-impact__badge { align-self: start; padding: 0.45rem 0.7rem; border-radius: 999px; background: rgba(255, 255, 255, 0.12); border: 1px solid rgba(255, 255, 255, 0.16); letter-spacing: 0.12em; text-transform: uppercase; font-size: 0.72rem; font-weight: 800; }
.footer-impact__copy h2 { font-size: clamp(1.5rem, 2.6vw, 2.2rem); color: #fff; }
.footer-impact__copy p { margin-top: 0.55rem; color: rgba(247, 251, 252, 0.82); line-height: 1.7; max-width: 58ch; }
.footer-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr) minmax(0, 0.85fr); gap: 1.5rem; align-items: start; }
.footer-brand { padding-right: 1rem; }
.footer-blurb { margin-top: 0.55rem; max-width: 34ch; color: var(--muted); line-height: 1.75; }
.footer-mini-metrics { margin-top: 1rem; display: flex; flex-wrap: wrap; gap: 0.55rem; }
.footer-mini-metrics span { padding: 0.45rem 0.7rem; border-radius: 999px; background: rgba(22, 48, 65, 0.06); border: 1px solid rgba(22, 48, 65, 0.08); color: var(--ink); font-size: 0.84rem; font-weight: 700; }
.footer-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.55rem 1rem; padding-left: 1rem; border-left: 1px solid rgba(22, 48, 65, 0.1); }
.footer-links a { color: var(--ink); line-height: 1.5; width: fit-content; }
.footer-links a:hover { color: var(--accent-hover); }
.footer-cta { padding: 1.15rem; border-radius: 1.25rem; background: rgba(255, 251, 245, 0.94); border: 1px solid rgba(22, 48, 65, 0.1); box-shadow: var(--shadow-soft); }
.footer-cta p { margin-top: 0.85rem; color: var(--muted); line-height: 1.7; }
.footer-contact-line { margin-top: 0.85rem; padding-top: 0.85rem; border-top: 1px solid rgba(22, 48, 65, 0.1); font-size: 0.92rem; }
.reveal { opacity: 0; transform: translateY(14px); transition: opacity 700ms var(--ease), transform 700ms var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; } .reveal { opacity: 1; transform: none; } }
@media (max-width: 1120px) {
  .header-shell { grid-template-columns: auto 1fr auto; }
  .header-actions { display: none; }
  .hero-grid, .feature-split, .research-grid, .events-layout, .visit-grid, .contact-layout, .footer-grid, .footer-impact { grid-template-columns: 1fr; }
  .metrics-grid, .quotes-grid, .support-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-grid { grid-template-columns: 1fr; }
  .research-feature { grid-template-columns: 1fr; }
  .hero-copy { max-width: 100%; }
  .hero-annotation { display: none; }
  .hero-card { position: static; width: 100%; }
  .hero-media { padding-top: 0; }
}
@media (max-width: 960px) {
  .nav-toggle { display: inline-flex; justify-self: end; }
  .site-nav { grid-column: 1 / -1; display: grid; gap: 0.35rem; justify-content: stretch; align-items: start; padding: 0.85rem; margin-top: 0.2rem; border-radius: 1.25rem; border: 1px solid rgba(22, 48, 65, 0.1); background: rgba(255, 251, 244, 0.98); box-shadow: var(--shadow-soft); max-height: 0; opacity: 0; overflow: hidden; pointer-events: none; transition: max-height 260ms var(--ease), opacity 220ms var(--ease); }
  .site-nav[data-open="true"] { max-height: 34rem; opacity: 1; pointer-events: auto; }
  .site-nav a { padding: 0.6rem 0.2rem; white-space: normal; }
  .site-nav__cta-row { display: grid; gap: 0.65rem; padding-top: 0.5rem; margin-top: 0.4rem; border-top: 1px solid rgba(22, 48, 65, 0.1); }
  .site-nav__cta-row .btn { width: 100%; }
  .metrics-note { flex-direction: column; align-items: start; }
  .metrics-grid, .quotes-grid, .support-grid, .field-grid, .school-points { grid-template-columns: 1fr; }
  .events-list li { grid-template-columns: 1fr; }
  .event-link { margin-top: 0.2rem; }
  .quote-card--lifted { transform: none; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-links { padding-left: 0; border-left: 0; border-top: 1px solid rgba(22, 48, 65, 0.1); padding-top: 1rem; }
}
@media (max-width: 700px) {
  .shell { width: min(var(--maxw), calc(100% - 1rem)); }
  .header-shell { gap: 0.4rem; padding-block: 0.5rem; }
  .site-header { box-shadow: 0 1px 0 rgba(22, 48, 65, 0.04); }
  .brand { gap: 0.65rem; }
  .brand-mark { width: 2.15rem; height: 2.15rem; }
  .brand-text strong { font-size: 0.88rem; }
  .brand-text span { font-size: 0.72rem; line-height: 1.15; }
  .nav-toggle { padding: 0.68rem 0.9rem; }
  .nav-toggle__label { font-size: 0.92rem; }
  .hero { padding-top: 0.65rem; }
  .hero-grid { gap: 1rem; }
  .hero-copy { padding-top: 0.15rem; }
  .hero-figure { order: -1; border-radius: 1.35rem; }
  .hero-media { gap: 0.75rem; }
  .hero-figure img, .feature-media--framed img, .research-feature img { aspect-ratio: 4 / 4.85; }
  .hero-figure figcaption { flex-direction: column; align-items: start; gap: 0.25rem; font-size: 0.8rem; }
  .hero-card { padding: 0.9rem; border-radius: 1.05rem; }
  .hero-card h2 { font-size: 1.2rem; }
  .hero-lead, .hero-support, .section-intro, .metrics-note p:last-child, .school-main p, .research-card p, .quote-card p, .support-card p, .visit-dl dd, .form-note, .footer-blurb, .footer-cta p { font-size: 0.98rem; }
  .hero-actions, .feature-actions, .form-actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .mini-list, .site-nav__cta-row, .footer-links { grid-template-columns: 1fr; }
  .feature-copy { padding-left: 0; }
  .research-feature { padding: 0.85rem; }
  .metric-card, .process-grid article, .school-main, .school-aside, .events-side, .visit-card, .contact-card, .research-card, .support-card, .quote-card, .events-list li { border-radius: 1.15rem; }
  h1 { font-size: clamp(2.7rem, 14vw, 4rem); max-width: 8.3ch; }
  .hero-figure { margin-top: 0.1rem; }
  .hero-figure img { object-position: 62% 46%; }
  .metrics-shell { margin-top: 1rem; }
  .metrics-note { gap: 0.95rem; }
  .metrics-note h2 { font-size: 1.55rem; }
  .metric-card dd { font-size: 2.5rem; }
  .footer-impact { padding: 1rem; border-radius: 1.3rem; }
  .footer-impact__badge { width: fit-content; }
}
@media (max-width: 520px) {
  .section-pad { padding-block: 3.25rem; }
  .hero-actions, .feature-actions, .form-actions { gap: 0.7rem; }
  .trust-line { gap: 0.5rem; }
  .trust-line li { font-size: 0.82rem; }
  .event-date { justify-self: start; }
  .footer-cta { padding: 1rem; }
  .footer-contact-line { font-size: 0.88rem; }
}