/* ==========================================================================
   St. Luke's Day School — Global Stylesheet
   Vanilla CSS. No frameworks. Mobile-first.
   Sections: 1 Tokens · 2 Fonts · 3 Base · 4 Layout · 5 Buttons · 6 Ticker
             7 Header/Nav · 8 Hero · 9 Sections & Cards · 10 Programs
             11 Staff · 12 Gallery/Lightbox · 13 Forms · 14 FAQ · 15 Footer
             16 Page banners · 17 Parent/Enroll/Food/Contact · 18 Motion · 19 Utilities
   ========================================================================== */

/* 1. Design tokens ------------------------------------------------------- */
:root {
  --color-primary: #0f7c7a;        /* teal — links, secondary buttons */
  --color-primary-dark: #0b605e;
  --color-primary-soft: #e3f4f2;
  --color-secondary: #c83c26;      /* coral — headings accent, enroll CTA (5:1 on white) */
  --color-secondary-dark: #a8301d;
  --color-secondary-soft: #fde9e5;
  --color-accent: #ffc83d;         /* sunny yellow — primary CTA */
  --color-accent-dark: #e6ad1d;
  --color-accent-soft: #fff3cf;
  --color-sky: #3fa9e0;
  --color-sky-soft: #e4f3fb;
  --color-plum: #2b2556;           /* deep plum — header, footer, dark text */
  --color-plum-dark: #1e1a40;
  --color-background: #fff8ec;     /* warm cream */
  --color-surface: #ffffff;
  --color-surface-2: #fdf3e0;
  --color-text: #26243a;
  --color-muted: #5b5a72;
  --color-border: #ece4d4;
  --color-success: #1f7a3e;
  --color-error: #b3261e;

  --font-heading: "Fredoka", "Nunito", system-ui, sans-serif;
  --font-body: "Nunito", system-ui, -apple-system, "Segoe UI", sans-serif;

  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(43, 37, 86, 0.06), 0 2px 8px rgba(43, 37, 86, 0.06);
  --shadow: 0 6px 24px rgba(43, 37, 86, 0.10);
  --shadow-lg: 0 18px 48px rgba(43, 37, 86, 0.16);

  --container: 1200px;
  --gutter: 16px;
  --section-y: clamp(3.5rem, 8vw, 6.5rem);
  --header-h: 76px;
  --ticker-h: 40px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

@media (min-width: 640px) { :root { --gutter: 24px; } }
@media (min-width: 1024px) { :root { --gutter: 32px; --header-h: 96px; } }

/* 2. Fonts (self-hosted, OFL) ------------------------------------------- */
@font-face { font-family: "Fredoka"; font-style: normal; font-weight: 500; font-display: swap; src: url("../fonts/fredoka-latin-500-normal.woff2") format("woff2"); }
@font-face { font-family: "Fredoka"; font-style: normal; font-weight: 600; font-display: swap; src: url("../fonts/fredoka-latin-600-normal.woff2") format("woff2"); }
@font-face { font-family: "Fredoka"; font-style: normal; font-weight: 700; font-display: swap; src: url("../fonts/fredoka-latin-700-normal.woff2") format("woff2"); }
@font-face { font-family: "Nunito"; font-style: normal; font-weight: 400; font-display: swap; src: url("../fonts/nunito-latin-400-normal.woff2") format("woff2"); }
@font-face { font-family: "Nunito"; font-style: normal; font-weight: 600; font-display: swap; src: url("../fonts/nunito-latin-600-normal.woff2") format("woff2"); }
@font-face { font-family: "Nunito"; font-style: normal; font-weight: 700; font-display: swap; src: url("../fonts/nunito-latin-700-normal.woff2") format("woff2"); }
@font-face { font-family: "Nunito"; font-style: normal; font-weight: 800; font-display: swap; src: url("../fonts/nunito-latin-800-normal.woff2") format("woff2"); }

/* 3. Base ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html:focus-within { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-background);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
img, picture, svg, video { display: block; max-width: 100%; }
img { height: auto; }
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.12;
  color: var(--color-plum);
  margin: 0 0 0.6em;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.25rem, 5.5vw, 3.75rem); font-weight: 700; }
h2 { font-size: clamp(1.85rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.5rem); }
h4 { font-size: 1.125rem; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
a { color: var(--color-primary); text-decoration-thickness: 1.5px; text-underline-offset: 0.15em; }
a:hover { color: var(--color-primary-dark); }
ul, ol { padding-left: 1.25em; margin: 0 0 1em; }
strong { font-weight: 700; }
address { font-style: normal; }
button { font: inherit; color: inherit; }
::selection { background: var(--color-accent); color: var(--color-plum); }

:focus-visible {
  outline: 3px solid var(--color-plum);
  outline-offset: 3px;
  border-radius: 6px;
}

.skip-link {
  position: absolute; left: 1rem; top: -100px;
  padding: 0.75rem 1.25rem;
  background: var(--color-plum); color: #fff;
  font-weight: 700; border-radius: var(--radius-sm);
  z-index: 1000; transition: top .2s;
}
.skip-link:focus { top: 1rem; }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* 4. Layout -------------------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { max-width: 860px; }
.container--fluid { max-width: none; }
.section { padding-block: var(--section-y); position: relative; }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section--surface { background: var(--color-surface); }
.section--cream { background: var(--color-background); }
.section--plum { background: var(--color-plum); color: #fff; }
.section--plum h2, .section--plum h3 { color: #fff; }
.section--primary { background: var(--color-primary); color: #fff; }
.section--primary h2 { color: #fff; }

.section-head { max-width: 720px; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-heading); font-weight: 600; font-size: .95rem;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--color-secondary-dark); margin-bottom: .75rem;
}
.eyebrow::before { content: ""; width: 22px; height: 4px; border-radius: 4px; background: var(--color-accent); }
.section--plum .eyebrow { color: var(--color-accent); }
.section--primary .eyebrow { color: #fff; }
.lead { font-size: clamp(1.1rem, 1.6vw, 1.25rem); color: var(--color-muted); }
.section--plum .lead { color: rgba(255,255,255,.88); }
.section--primary .lead { color: #fff; }

.grid { display: grid; gap: clamp(1.25rem, 2.5vw, 2rem); }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

.split { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--reverse > :first-child { order: 2; }
}

.blob-bg { position: relative; isolation: isolate; overflow: hidden; }
.blob-bg::before, .blob-bg::after {
  content: ""; position: absolute; z-index: -1; border-radius: 50%; filter: blur(2px); pointer-events: none;
}
.blob-bg::before { width: 420px; height: 420px; right: -160px; top: -140px; background: var(--color-accent-soft); }
.blob-bg::after { width: 320px; height: 320px; left: -140px; bottom: -120px; background: var(--color-primary-soft); }

/* 5. Buttons ------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  min-height: 48px; padding: .8rem 1.5rem;
  border-radius: var(--radius-pill); border: 2px solid transparent;
  font-family: var(--font-heading); font-weight: 600; font-size: 1.05rem; line-height: 1;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background-color .2s, color .2s, border-color .2s;
}
.btn svg { width: 1.15em; height: 1.15em; flex: none; }
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--color-accent); color: var(--color-plum); }
.btn--primary:hover { background: var(--color-accent-dark); color: var(--color-plum); }
.btn--secondary { background: var(--color-secondary); color: #fff; }
.btn--secondary:hover { background: var(--color-secondary-dark); color: #fff; }
.btn--teal { background: var(--color-primary); color: #fff; }
.btn--teal:hover { background: var(--color-primary-dark); color: #fff; }
.btn--outline { background: transparent; color: var(--color-plum); border-color: currentColor; }
.btn--outline:hover { background: var(--color-plum); color: #fff; }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.8); }
.btn--outline-light:hover { background: #fff; color: var(--color-plum); }
.btn--ghost { background: var(--color-surface); color: var(--color-plum); box-shadow: var(--shadow-sm); }
.btn--ghost:hover { color: var(--color-primary); }
.btn--sm { min-height: 40px; padding: .55rem 1.1rem; font-size: .95rem; }
.btn--lg { min-height: 56px; padding: 1rem 2rem; font-size: 1.15rem; }
.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: .75rem 1rem; align-items: center; }

.text-link { font-weight: 700; display: inline-flex; align-items: center; gap: .35rem; text-decoration: none; }
.text-link svg { width: 1em; height: 1em; transition: transform .2s; }
.text-link:hover svg { transform: translateX(3px); }

.brand-icon { width: 22px; height: 22px; flex: none; }
.addr-link { color: inherit; text-decoration: underline; text-decoration-color: rgba(43,37,86,.3); text-underline-offset: .18em; }
.addr-link:hover { color: var(--color-primary); text-decoration-color: currentColor; }
.site-footer .addr-link:hover, .section--plum .addr-link:hover { color: var(--color-accent); }
.site-footer .addr-link { text-decoration-color: rgba(255,255,255,.35); }

/* 6. Announcement ticker ------------------------------------------------ */
.ticker {
  background: var(--color-secondary); color: #fff;
  font-family: var(--font-heading); font-weight: 600; font-size: .9rem; letter-spacing: .04em;
  text-transform: uppercase; overflow: hidden; position: relative;
  min-height: var(--ticker-h); display: flex; align-items: center;
}
.ticker a { color: #fff; text-decoration: underline; text-decoration-color: rgba(255,255,255,.6); text-underline-offset: .2em; }
.ticker a:hover, .ticker a:focus-visible { color: var(--color-accent); text-decoration-color: currentColor; }
.ticker a:focus-visible { outline-color: #fff; }
.site-header :focus-visible, .section--plum :focus-visible, .cta-band :focus-visible, .site-footer :focus-visible, .hero :focus-visible, .page-banner :focus-visible, .map-facade :focus-visible, .section--primary :focus-visible { outline-color: var(--color-accent); }
.ticker__track { display: flex; align-items: center; width: max-content; will-change: transform; animation: ticker 40s linear infinite; }
.ticker__item { display: inline-flex; align-items: center; gap: .6rem; margin: 0; padding: .55rem 2.5rem .55rem 0; white-space: nowrap; line-height: 1.4; }
.ticker__item::after { content: "\2726"; color: var(--color-accent); margin-left: 2.5rem; }
.ticker:hover .ticker__track, .ticker:focus-within .ticker__track, .ticker.is-paused .ticker__track { animation-play-state: paused; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

@media (prefers-reduced-motion: reduce) {
  .ticker__track { animation: none; width: 100%; justify-content: center; }
  .ticker__item { white-space: normal; text-align: center; padding: .5rem var(--gutter); line-height: 1.4; }
  .ticker__item::after { content: none; }
  .ticker__item[aria-hidden="true"] { display: none; }
}

/* 7. Header / navigation ------------------------------------------------ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--color-plum); color: #fff;
  box-shadow: 0 2px 0 rgba(255,255,255,.06), 0 8px 24px rgba(30, 26, 64, .18);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: var(--header-h); }
.brand { display: inline-flex; align-items: center; flex: none; text-decoration: none; }
.brand img { width: 176px; height: auto; }
@media (min-width: 1024px) { .brand img { width: 210px; } }
@media (min-width: 1280px) { .brand img { width: 236px; } }

.nav { display: none; }
.nav__list { list-style: none; margin: 0; padding: 0; display: flex; gap: .25rem; }
.nav__link {
  display: inline-flex; align-items: center; min-height: 44px; padding: .5rem .65rem; white-space: nowrap; font-size: .95rem;
  border-radius: var(--radius-pill); color: rgba(255,255,255,.88); font-weight: 700; text-decoration: none;
  transition: background-color .2s, color .2s;
}
.nav__link:hover, .nav__link:focus-visible { background: rgba(255,255,255,.1); color: #fff; }
.nav__link[aria-current="page"] { background: rgba(255,255,255,.14); color: var(--color-accent); }
.nav__link:focus-visible { outline-color: var(--color-accent); }
.header-actions { display: none; }
.site-header .btn:focus-visible { outline-color: #fff; }

.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  min-width: 48px; min-height: 48px; padding: .5rem .8rem;
  background: rgba(255,255,255,.08); border: 1.5px solid rgba(255,255,255,.28); border-radius: var(--radius-pill);
  color: #fff; font-family: var(--font-heading); font-weight: 600; cursor: pointer;
}
.nav-toggle:focus-visible { outline-color: var(--color-accent); }
.nav-toggle__bars { position: relative; width: 22px; height: 16px; display: block; }
.nav-toggle__bars span { position: absolute; left: 0; width: 100%; height: 2.5px; background: #fff; border-radius: 3px; transition: transform .25s var(--ease), opacity .2s, top .25s var(--ease); }
.nav-toggle__bars span:nth-child(1) { top: 0; }
.nav-toggle__bars span:nth-child(2) { top: 6.75px; }
.nav-toggle__bars span:nth-child(3) { top: 13.5px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(1) { top: 6.75px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(3) { top: 6.75px; transform: rotate(-45deg); }

@media (min-width: 1024px) {
  .nav { display: block; }
  .header-actions { display: flex; gap: .6rem; align-items: center; }
  .nav-toggle { display: none; }
}
@media (min-width: 1280px) {
  .nav__link { padding: .5rem .9rem; font-size: 1rem; }
}

/* Mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 200; display: none;
}
.drawer[data-open="true"] { display: block; }
.drawer__backdrop { position: absolute; inset: 0; background: rgba(30, 26, 64, .55); backdrop-filter: blur(2px); }
.drawer__panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(92vw, 400px);
  background: var(--color-surface); color: var(--color-text);
  display: flex; flex-direction: column; overflow-y: auto;
  box-shadow: var(--shadow-lg);
  transform: translateX(100%); animation: drawer-in .3s var(--ease) forwards;
}
@keyframes drawer-in { to { transform: translateX(0); } }
.drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 1rem var(--gutter); background: var(--color-plum); }
.drawer__head img { width: 160px; }
.drawer__close {
  width: 44px; height: 44px; border-radius: 50%; border: 0; background: rgba(255,255,255,.12); color: #fff;
  display: inline-flex; align-items: center; justify-content: center; cursor: pointer;
}
.drawer__close svg { width: 22px; height: 22px; }
.drawer__close:focus-visible { outline-color: var(--color-accent); }
.drawer__nav { list-style: none; margin: 0; padding: .75rem var(--gutter); }
.drawer__nav a {
  display: flex; align-items: center; justify-content: space-between; min-height: 52px; padding: .5rem .75rem;
  border-radius: var(--radius-sm); font-family: var(--font-heading); font-size: 1.2rem; font-weight: 600;
  color: var(--color-plum); text-decoration: none;
}
.drawer__nav a:hover { background: var(--color-background); }
.drawer__nav a[aria-current="page"] { background: var(--color-accent-soft); color: var(--color-secondary); }
.drawer__nav svg { width: 18px; height: 18px; opacity: .5; }
.drawer__cta { padding: .75rem var(--gutter) 1.25rem; display: grid; gap: .6rem; }
.drawer__contact { margin-top: auto; padding: 1.25rem var(--gutter) 2rem; background: var(--color-background); font-size: .95rem; display: grid; gap: .6rem; }
.drawer__contact a, .drawer__contact span { display: inline-flex; align-items: center; gap: .5rem; font-weight: 700; text-decoration: none; }
.drawer__contact svg { flex: none; width: 18px; height: 18px; color: var(--color-secondary); }
body.drawer-open { overflow: hidden; }

/* 8. Hero ---------------------------------------------------------------- */
.hero {
  position: relative; isolation: isolate; color: #fff;
  min-height: min(88vh, 760px); display: flex; align-items: flex-end;
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media picture, .page-banner__media picture { display: block; width: 100%; height: 100%; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 55% 40%; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(30,26,64,.28) 0%, rgba(30,26,64,.66) 24%, rgba(30,26,64,.84) 50%, rgba(30,26,64,.94) 100%);
}
@media (min-width: 900px) {
  .hero__media img { object-position: 55% 55%; }
  .hero::before {
    background:
      linear-gradient(90deg, rgba(30,26,64,.86) 0%, rgba(30,26,64,.66) 42%, rgba(30,26,64,.12) 75%, rgba(30,26,64,0) 100%),
      linear-gradient(180deg, rgba(30,26,64,.15), rgba(30,26,64,.45));
  }
}
.hero__content { padding-block: clamp(3rem, 8vw, 6rem) clamp(2.5rem, 6vw, 4.5rem); }
.hero__text { max-width: 760px; }
.hero__eyebrow { display: inline-flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1.25rem; }
.hero__eyebrow span {
  display: inline-block; padding: .3rem .8rem; border-radius: var(--radius-pill);
  background: rgba(255,255,255,.14); backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,.22);
  font-family: var(--font-heading); font-weight: 600; font-size: .9rem; letter-spacing: .03em;
}
.hero h1 { color: #fff; margin-bottom: .5em; }
.hero h1 em { font-style: normal; color: var(--color-accent); }
.hero__lead { font-size: clamp(1.1rem, 1.8vw, 1.3rem); color: rgba(255,255,255,.92); max-width: 58ch; margin-bottom: 1.75rem; }
.hero .btn-row { margin-bottom: 1.5rem; }
.hero__meta { display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; font-weight: 700; font-size: .98rem; color: rgba(255,255,255,.95); }
.hero__meta > * { display: inline-flex; align-items: center; gap: .5rem; }
.hero__meta svg { width: 20px; height: 20px; color: var(--color-accent); flex: none; }

.hero__wave { position: absolute; left: 0; right: 0; bottom: -1px; width: 100%; height: clamp(28px, 5vw, 64px); color: var(--color-background); }
.hero__wave svg { width: 100%; height: 100%; display: block; }

/* Open/closed status pill */
.status {
  display: inline-flex; align-items: center; gap: .5rem; padding: .35rem .9rem .35rem .6rem;
  border-radius: var(--radius-pill); background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.22);
  font-weight: 700; font-size: .95rem; line-height: 1.3;
}
.status__dot { width: 10px; height: 10px; border-radius: 50%; background: #9aa0a6; flex: none; box-shadow: 0 0 0 3px rgba(255,255,255,.18); }
.status[data-state="open"] .status__dot { background: #35d07f; }
.status[data-state="closed"] .status__dot { background: #ff7a5c; }
.status__label { text-transform: uppercase; letter-spacing: .05em; font-size: .8rem; }
.status__detail { opacity: .9; font-weight: 600; }
.status--light { background: var(--color-surface); border-color: var(--color-border); color: var(--color-text); }
.status--light .status__dot { box-shadow: 0 0 0 3px rgba(43,37,86,.08); }
.status--light[data-state="open"] .status__dot { background: #1f9d5a; }
.status--light[data-state="closed"] .status__dot { background: var(--color-secondary); }

/* 9. Sections & cards ---------------------------------------------------- */
.trust-strip { margin-top: -1px; }
.trust-strip__list {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: .75rem;
}
@media (min-width: 720px) { .trust-strip__list { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .trust-strip__list { grid-template-columns: repeat(6, 1fr); } }
.trust-strip__item {
  display: flex; flex-direction: column; gap: .35rem; padding: 1rem 1rem;
  background: var(--color-surface); border-radius: var(--radius); box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--color-accent); font-size: .92rem; color: var(--color-muted); line-height: 1.35;
}
.trust-strip__item:nth-child(2) { border-top-color: var(--color-primary); }
.trust-strip__item:nth-child(3) { border-top-color: var(--color-secondary); }
.trust-strip__item:nth-child(4) { border-top-color: var(--color-sky); }
.trust-strip__item:nth-child(5) { border-top-color: #7b3fa0; }
.trust-strip__item:nth-child(6) { border-top-color: #58b947; }
.trust-strip__item strong { display: block; font-family: var(--font-heading); font-size: 1.15rem; color: var(--color-plum); font-weight: 600; }
.trust-strip__item svg { width: 26px; height: 26px; color: var(--color-primary); margin-bottom: .2rem; }

.card {
  background: var(--color-surface); border-radius: var(--radius); box-shadow: var(--shadow-sm);
  overflow: hidden; display: flex; flex-direction: column; height: 100%;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card__media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--color-surface-2); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.card:hover .card__media img { transform: scale(1.04); }
.card__body { padding: 1.35rem 1.35rem 1.5rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.card__body h3 { margin-bottom: .1rem; }
.card__body p { color: var(--color-muted); }
.card__body .text-link, .card__body .btn { margin-top: auto; align-self: flex-start; }
.card__tag {
  display: inline-block; align-self: flex-start; padding: .25rem .7rem; border-radius: var(--radius-pill);
  font-family: var(--font-heading); font-weight: 600; font-size: .85rem; letter-spacing: .03em;
  background: var(--color-accent-soft); color: var(--color-secondary-dark);
}

.media-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); position: relative; }
.media-frame img { width: 100%; height: 100%; object-fit: cover; }
.media-frame--tall { aspect-ratio: 4 / 5; }
.media-frame--wide { aspect-ratio: 4 / 3; }
.media-frame__badge {
  position: absolute; left: 1rem; bottom: 1rem; padding: .7rem 1rem;
  background: var(--color-surface); border-radius: var(--radius-sm); box-shadow: var(--shadow);
  font-family: var(--font-heading); font-weight: 600; color: var(--color-plum); font-size: .95rem; line-height: 1.2;
}
.media-frame__badge span { display: block; font-size: 1.6rem; color: var(--color-secondary); font-weight: 700; }

.checklist { list-style: none; padding: 0; margin: 1.25rem 0; display: grid; gap: .8rem; }
.checklist li { display: flex; gap: .75rem; align-items: flex-start; }
.checklist svg { flex: none; width: 24px; height: 24px; color: var(--color-primary); margin-top: .1em; }
.section--plum .checklist svg, .section--primary .checklist svg { color: var(--color-accent); }

.feature-grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .feature-grid { grid-template-columns: repeat(3, 1fr); } }
.feature {
  background: var(--color-surface); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: .6rem;
}
.feature__icon {
  width: 52px; height: 52px; border-radius: 16px; display: grid; place-items: center;
  background: var(--color-primary-soft); color: var(--color-primary);
}
.feature__icon svg { width: 26px; height: 26px; }
.feature:nth-child(3n+2) .feature__icon { background: var(--color-accent-soft); color: var(--color-secondary-dark); }
.feature:nth-child(3n+3) .feature__icon { background: var(--color-sky-soft); color: #1d7fb5; }
.feature h3 { font-size: 1.2rem; margin: 0; }
.feature p { color: var(--color-muted); font-size: .98rem; }

.quote-card {
  background: var(--color-surface); border-radius: var(--radius); padding: 1.75rem; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 1rem; height: 100%; position: relative;
}
.quote-card::before {
  content: "\201C"; position: absolute; top: .4rem; right: 1.25rem; font-family: var(--font-heading);
  font-size: 5rem; line-height: 1; color: var(--color-accent); opacity: .7;
}
.quote-card blockquote { margin: 0; font-size: 1.08rem; line-height: 1.6; }
.quote-card blockquote p { font-style: italic; }
.quote-card footer { margin-top: auto; display: flex; align-items: center; gap: .8rem; font-size: .95rem; }
.quote-card__avatar {
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; flex: none;
  background: var(--color-primary-soft); color: var(--color-primary); font-family: var(--font-heading); font-weight: 700; font-size: 1.1rem;
}
.quote-card footer strong { display: block; color: var(--color-plum); }
.quote-card footer span { color: var(--color-muted); }

.cta-band {
  background: var(--color-plum); color: #fff; border-radius: var(--radius-lg); padding: clamp(2rem, 5vw, 3.5rem);
  display: grid; gap: 1.5rem; align-items: center; position: relative; overflow: hidden; box-shadow: var(--shadow-lg);
}
.cta-band::after {
  content: ""; position: absolute; width: 380px; height: 380px; border-radius: 50%; right: -120px; top: -160px;
  background: radial-gradient(circle, rgba(255,200,61,.35), rgba(255,200,61,0) 70%); pointer-events: none;
}
@media (min-width: 900px) { .cta-band { grid-template-columns: 1.4fr 1fr; } }
.cta-band h2 { color: #fff; margin-bottom: .4em; }
.cta-band p { color: rgba(255,255,255,.85); }
.cta-band .btn-row { justify-content: flex-start; }
@media (min-width: 900px) { .cta-band .btn-row { justify-content: flex-end; } }

/* 10. Programs ------------------------------------------------------------ */
.program-card .card__media { aspect-ratio: 5 / 4; }
.program-card__ages { font-family: var(--font-heading); font-weight: 600; color: var(--color-primary); font-size: .95rem; }

/* 11. Staff --------------------------------------------------------------- */
.staff-grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 480px) { .staff-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .staff-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1200px) { .staff-grid { grid-template-columns: repeat(4, 1fr); } }
.staff-card {
  background: var(--color-surface); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.staff-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.staff-card__photo { aspect-ratio: 1068 / 1472; overflow: hidden; background: var(--color-surface-2); }
.staff-card__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.staff-card__body { padding: 1.1rem 1.25rem 1.35rem; }
.staff-card__body h3 { font-size: 1.35rem; margin-bottom: .2rem; color: var(--color-secondary); }
.staff-card__role { font-weight: 700; color: var(--color-plum); font-size: .95rem; margin-bottom: .5rem; }
.staff-card__body ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .3rem; font-size: .95rem; color: var(--color-muted); }
.staff-card__body li { display: flex; gap: .5rem; align-items: flex-start; }
.staff-card__body li::before { content: ""; flex: none; width: 6px; height: 6px; border-radius: 50%; background: var(--color-accent); margin-top: .6em; }
.staff-card--featured { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr; }
@media (min-width: 720px) {
  .staff-card--featured { grid-template-columns: minmax(240px, 320px) 1fr; }
  .staff-card--featured .staff-card__photo { aspect-ratio: 1068 / 1472; align-self: start; }
  .staff-card--featured .staff-card__body { padding: 2rem; align-self: center; }
}
.staff-card--featured .staff-card__body h3 { font-size: 1.8rem; }
.staff-card--featured .staff-card__body p { color: var(--color-muted); }

/* 12. Gallery + lightbox --------------------------------------------------- */
.gallery { display: grid; gap: .75rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 640px) { .gallery { grid-template-columns: repeat(3, 1fr); gap: 1rem; } }
@media (min-width: 1024px) { .gallery { grid-template-columns: repeat(4, 1fr); } }
.gallery__item { margin: 0; position: relative; }
.gallery__btn {
  display: block; width: 100%; padding: 0; border: 0; background: var(--color-surface-2); cursor: zoom-in;
  border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 3; box-shadow: var(--shadow-sm);
}
.gallery__btn img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gallery__btn:hover img { transform: scale(1.05); }
.gallery__btn:focus-visible { outline-offset: 4px; }
.gallery__item--tall .gallery__btn { aspect-ratio: 4 / 3; }
@media (min-width: 640px) {
  .gallery__item--wide { grid-column: span 2; }
  .gallery__item--tall { grid-row: span 2; }
  .gallery__item--tall .gallery__btn { aspect-ratio: auto; height: 100%; }
}
.gallery figcaption { position: absolute; inset: auto 0 0; padding: 1.25rem .9rem .7rem; color: #fff; font-size: .85rem; font-weight: 700;
  background: linear-gradient(to top, rgba(30,26,64,.75), rgba(30,26,64,0)); pointer-events: none; border-radius: 0 0 var(--radius) var(--radius); opacity: 0; transition: opacity .25s; }
.gallery__item:hover figcaption, .gallery__item:focus-within figcaption { opacity: 1; }

.lightbox { border: 0; padding: 0; background: transparent; max-width: min(96vw, 1200px); width: 100%; max-height: 96vh; }
.lightbox::backdrop { background: rgba(20, 17, 45, .92); }
.lightbox__inner { position: relative; display: grid; gap: .75rem; justify-items: center; }
.lightbox__img { max-height: 82vh; max-width: 100%; width: auto; border-radius: var(--radius); box-shadow: var(--shadow-lg); background: #000; }
.lightbox__caption { color: #fff; text-align: center; font-weight: 600; max-width: 70ch; }
.lightbox__btn {
  position: absolute; width: 48px; height: 48px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(255,255,255,.14); color: #fff; display: grid; place-items: center; backdrop-filter: blur(4px);
  transition: background-color .2s;
}
.lightbox__btn:hover { background: rgba(255,255,255,.28); }
.lightbox__btn:focus-visible { outline-color: var(--color-accent); }
.lightbox__btn svg { width: 24px; height: 24px; }
.lightbox__close { top: .5rem; right: .5rem; }
.lightbox__prev { left: .5rem; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: .5rem; top: 50%; transform: translateY(-50%); }
.lightbox__count { position: absolute; top: .9rem; left: 1rem; color: #fff; font-weight: 700; font-size: .9rem; background: rgba(0,0,0,.35); padding: .2rem .6rem; border-radius: var(--radius-pill); }


/* Gallery carousel (home) — edge-to-edge row, 4 per view on large screens, 1 on phones */
.gallery-section { overflow: hidden; }
.carousel { position: relative; }
.carousel__track {
  display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  padding: 4px var(--gutter) 12px; scroll-padding-inline: var(--gutter); scrollbar-width: none; -webkit-overflow-scrolling: touch; overscroll-behavior-x: contain;
}
.carousel__track::-webkit-scrollbar { display: none; }
.carousel__track:focus-visible { outline-offset: -3px; }
.carousel__slide { flex: 0 0 100%; scroll-snap-align: start; margin: 0; position: relative; }
@media (min-width: 640px) { .carousel__slide { flex-basis: calc((100% - 16px) / 2); } }
@media (min-width: 900px) {
  .carousel__track { padding-inline: 0; scroll-padding-inline: 0; }
  .carousel__slide { flex-basis: calc((100% - 32px) / 3); }
}
@media (min-width: 1200px) { .carousel__slide { flex-basis: calc((100% - 48px) / 4); } }
.carousel__slide .gallery__btn { aspect-ratio: 4 / 3; border-radius: var(--radius-sm); }
.carousel__slide figcaption {
  position: absolute; inset: auto 0 0; padding: 1.25rem .9rem .7rem; color: #fff; font-size: .85rem; font-weight: 700;
  background: linear-gradient(to top, rgba(30,26,64,.75), rgba(30,26,64,0)); pointer-events: none;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm); opacity: 0; transition: opacity .25s;
}
.carousel__slide:hover figcaption, .carousel__slide:focus-within figcaption { opacity: 1; }
.carousel__controls { display: flex; justify-content: center; gap: .6rem; margin-top: 1rem; }
.carousel__btn {
  width: 48px; height: 48px; border-radius: 50%; border: 2px solid var(--color-border); background: var(--color-surface);
  color: var(--color-plum); display: grid; place-items: center; cursor: pointer; box-shadow: var(--shadow-sm);
  transition: background-color .2s, color .2s, transform .2s var(--ease);
}
.carousel__btn:hover { background: var(--color-plum); color: #fff; transform: translateY(-2px); }
.carousel__btn svg { width: 22px; height: 22px; }
.carousel__pause[aria-pressed="true"] { background: var(--color-accent); border-color: var(--color-accent); }
@media (prefers-reduced-motion: reduce) { .carousel__track { scroll-behavior: auto; } }

/* 13. Forms --------------------------------------------------------------- */
.form-card { background: var(--color-surface); border-radius: var(--radius-lg); padding: clamp(1.5rem, 4vw, 2.5rem); box-shadow: var(--shadow); }
.form-grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .form-grid { grid-template-columns: repeat(2, 1fr); } .form-grid .field--full { grid-column: 1 / -1; } }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field label { font-weight: 700; font-size: .95rem; color: var(--color-plum); }
.field label .req { color: var(--color-secondary); }
.field input, .field select, .field textarea {
  width: 100%; min-height: 50px; padding: .75rem 1rem;
  border: 2px solid var(--color-border); border-radius: var(--radius-sm); background: #fff;
  font: inherit; color: var(--color-text); transition: border-color .2s, box-shadow .2s;
}
.field textarea { min-height: 130px; resize: vertical; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%232b2556' stroke-width='2'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 4px rgba(15,124,122,.15); }
.field input[aria-invalid="true"], .field select[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: var(--color-error); }
.field__hint { font-size: .85rem; color: var(--color-muted); }
.field__error { font-size: .88rem; color: var(--color-error); font-weight: 700; display: none; }
.field__error:not(:empty) { display: block; }
.form-status { margin-top: 1rem; padding: .9rem 1.1rem; border-radius: var(--radius-sm); font-weight: 700; display: none; }
.form-status[data-type="success"] { display: block; background: #e6f6ec; color: var(--color-success); }
.form-status[data-type="error"] { display: block; background: #fdecea; color: var(--color-error); }
.form-status[data-type="info"] { display: block; background: var(--color-accent-soft); color: var(--color-plum); }
.form-status a { color: inherit; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-note { font-size: .88rem; color: var(--color-muted); margin-top: .75rem; }

.tour-section .split { align-items: start; }
.tour-aside { display: grid; gap: 1.25rem; }
.contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .9rem; }
.contact-list li { display: flex; gap: .85rem; align-items: flex-start; }
.contact-list svg { flex: none; width: 24px; height: 24px; color: var(--color-secondary); margin-top: .15em; }
.contact-list strong { display: block; color: var(--color-plum); font-family: var(--font-heading); font-weight: 600; }
.contact-list a { font-weight: 700; }
.section--plum .contact-list svg { color: var(--color-accent); }
.section--plum .contact-list strong { color: #fff; }
.section--plum .contact-list a { color: #fff; }

/* 13b. Reviews section (supplied markup, slr- prefix) */
/* ===== St. Luke's Reviews Section — all classes prefixed slr- so nothing clashes with the site ===== */
.slr {
  --slr-paper:#FFFDF6; --slr-ink:#1F2A5A; --slr-red:#E8453C; --slr-sun:#FFC531;
  --slr-sky:#3BA6E8; --slr-grass:#4CB050; --slr-card:#FFFFFF; --slr-muted:#5B6488;
  background:var(--slr-paper); color:var(--slr-ink);
  font-family:var(--font-body);
  padding:clamp(48px,7vw,88px) 0; overflow:hidden; position:relative;
}
.slr *, .slr *::before, .slr *::after { box-sizing:border-box; }
.slr-head { max-width:940px; margin:0 auto 36px; padding:0 20px; text-align:center; }
.slr-title {
  font-family:var(--font-heading); font-weight:800;
  font-size:clamp(2rem,5vw,3.1rem); line-height:1.05; margin:0 0 10px;
}
.slr-title span { display:inline-block; }
.slr-title span:nth-child(4n+1) { color:var(--slr-red); }
.slr-title span:nth-child(4n+2) { color:var(--slr-sky); }
.slr-title span:nth-child(4n+3) { color:var(--slr-grass); }
.slr-title span:nth-child(4n+4) { color:#E0A100; }
.slr-sub { margin:0; font-size:1.08rem; color:var(--slr-muted); }
.slr-rating { margin-top:14px; font-weight:700; }
.slr-rating b { color:#E0A100; letter-spacing:2px; }

.slr-viewport {
  overflow-x:auto; scrollbar-width:none; padding:18px 0 28px;
  -webkit-mask-image:linear-gradient(90deg,transparent,#000 6%,#000 94%,transparent);
          mask-image:linear-gradient(90deg,transparent,#000 6%,#000 94%,transparent);
}
.slr-viewport::-webkit-scrollbar { display:none; }
.slr-track { list-style:none; margin:0; padding:0 3vw; display:flex; gap:28px; width:max-content; align-items:flex-start; }
.slr.is-moving .slr-track { animation:slr-scroll var(--slr-dur,70s) linear infinite; }
.slr.is-moving .slr-viewport:hover .slr-track,
.slr.is-moving .slr-viewport:focus-within .slr-track { animation-play-state:paused; }
@keyframes slr-scroll { to { transform:translateX(calc(-50% - 14px)); } }

/* Cards pinned like papers on a classroom bulletin board */
.slr-card {
  width:min(340px,80vw); flex:0 0 auto; background:var(--slr-card);
  border-radius:6px 6px 14px 14px; padding:30px 24px 20px; position:relative;
  box-shadow:0 2px 0 rgba(31,42,90,.06), 0 12px 24px -12px rgba(31,42,90,.25);
  transform:rotate(-1.6deg); transition:transform .35s cubic-bezier(.2,.9,.3,1.3), box-shadow .35s;
}
.slr-card:nth-child(even) { transform:rotate(1.4deg) translateY(10px); }
.slr-card:nth-child(3n) { transform:rotate(-.6deg) translateY(4px); }
.slr-card::before { /* strip of tape */
  content:""; position:absolute; top:-11px; left:50%; width:92px; height:24px; margin-left:-46px;
  background:var(--tape); opacity:.85; transform:rotate(-3deg); border-radius:2px;
}
.slr-google { --tape:var(--slr-sun); }
.slr-facebook { --tape:var(--slr-sky); }
.slr-yelp { --tape:var(--slr-red); }
.slr-card:nth-child(4n) { --tape:var(--slr-grass); }
.slr-viewport:hover .slr-card:hover,
.slr-card:focus-within {
  transform:rotate(0) translateY(-10px) scale(1.04);
  box-shadow:0 2px 0 rgba(31,42,90,.06), 0 26px 40px -16px rgba(31,42,90,.4); z-index:2;
}
.slr-stars { color:#F4B400; font-size:1.3rem; letter-spacing:3px; line-height:1; margin-bottom:12px; }
.slr-text { margin:0 0 20px; font-size:.98rem; line-height:1.62; }
.slr-foot { display:grid; grid-template-columns:1fr auto; grid-template-rows:auto auto; column-gap:12px; align-items:end;
  border-top:2px dashed rgba(31,42,90,.14); padding-top:14px; }
.slr-name { grid-column:1; font-weight:700; color:var(--slr-ink); text-decoration:none; }
.slr-via { grid-column:1; font-size:.85rem; color:var(--slr-muted); }
.slr-src { grid-column:2; grid-row:1 / span 2; width:28px; height:28px; object-fit:contain; justify-self:end; }
.slr-yelp .slr-src { width:34px; height:34px; }

@media (prefers-reduced-motion: reduce) {
  .slr.is-moving .slr-track { animation:none; }
  .slr-card, .slr-card:nth-child(n) { transition:none; }
}

/* 14. FAQ ------------------------------------------------------------------ */
.faq { display: grid; gap: .75rem; }
.faq details { background: var(--color-surface); border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; }
.faq summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.1rem 1.35rem; font-family: var(--font-heading); font-weight: 600; font-size: 1.12rem; color: var(--color-plum);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--color-accent-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%232b2556' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M8 3v10M3 8h10'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; transition: transform .25s var(--ease);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq summary:hover { color: var(--color-primary); }
.faq summary:focus-visible { outline-offset: -4px; }
.faq details > div { padding: 0 1.35rem 1.35rem; color: var(--color-muted); }

/* 15. Footer --------------------------------------------------------------- */
.site-footer { background: var(--color-plum); color: rgba(255,255,255,.85); position: relative; margin-top: auto; }
.site-footer__wave { color: var(--color-plum); height: clamp(28px, 5vw, 60px); margin-bottom: -1px; }
.site-footer__wave svg { width: 100%; height: 100%; display: block; }
.site-footer a:not(.btn) { color: #fff; }
.site-footer a:not(.btn):hover { color: var(--color-accent); }
.site-footer__grid { display: grid; gap: 2.25rem; padding-block: clamp(2.5rem, 6vw, 4rem) 2rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .site-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .site-footer__grid { grid-template-columns: 1.5fr 1fr 1.2fr 1.2fr; } }
.site-footer h2 { font-size: 1.15rem; color: #fff; margin-bottom: 1rem; }
.site-footer__brand img { width: 190px; margin-bottom: 1rem; }
.site-footer__brand p { font-size: .98rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; }
.site-footer__nav a { text-decoration: none; font-weight: 700; }
.site-footer__contact li { display: flex; gap: .7rem; align-items: flex-start; }
.site-footer__contact svg { flex: none; width: 20px; height: 20px; color: var(--color-accent); margin-top: .2em; }
.site-footer__contact a { text-decoration: none; }
.site-footer__social { display: flex; gap: .6rem; margin-top: 1rem; }
.site-footer__social a {
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  background: transparent; text-decoration: none; transition: transform .2s var(--ease), opacity .2s;
}
.site-footer__social a:hover { transform: translateY(-2px); opacity: .85; }
.site-footer__social a:focus-visible { outline-color: var(--color-accent); }
.site-footer__social .brand-icon { width: 40px; height: 40px; }
.site-footer__cta { display: grid; gap: .6rem; margin-top: 1rem; }
.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.12); padding-block: 1.25rem;
  display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between; font-size: .9rem;
}
.site-footer__bottom ul { display: flex; flex-wrap: wrap; gap: 1rem; }
.site-footer .status { margin-top: .75rem; }

/* 16. Page banners ----------------------------------------------------------- */
.page-banner {
  position: relative; isolation: isolate; color: #fff; overflow: hidden;
  padding-block: clamp(3.5rem, 9vw, 6.5rem) clamp(3rem, 8vw, 5.5rem);
}
.page-banner__media { position: absolute; inset: 0; z-index: -2; }
.page-banner__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 78%; }
.page-banner::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(30,26,64,.78), rgba(30,26,64,.62)); }
.page-banner h1 { color: #fff; margin-bottom: .35em; }
.page-banner .lead { color: rgba(255,255,255,.9); max-width: 60ch; }
.page-banner .eyebrow { color: var(--color-accent); }
.page-banner__text { max-width: 860px; }

.breadcrumb { margin: 0 0 1.25rem; }
.breadcrumb ol { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: .35rem; font-size: .92rem; font-weight: 700; }
.breadcrumb li { display: inline-flex; align-items: center; gap: .35rem; }
.breadcrumb li + li::before { content: "/"; opacity: .55; }
.breadcrumb a { color: rgba(255,255,255,.85); text-decoration: none; }
.breadcrumb a:hover { color: var(--color-accent); }
.breadcrumb [aria-current="page"] { color: var(--color-accent); }

/* 17. Page-specific ----------------------------------------------------------- */
/* Parent resources */
.resources-layout { display: grid; gap: 2rem; }
@media (min-width: 1024px) { .resources-layout { grid-template-columns: 260px 1fr; align-items: start; } }
.resources-nav { position: sticky; top: calc(var(--header-h) + 1rem); display: none; }
@media (min-width: 1024px) { .resources-nav { display: block; } }
.resources-nav ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .25rem; }
.resources-nav a {
  display: flex; align-items: center; gap: .6rem; padding: .7rem .9rem; border-radius: var(--radius-sm);
  text-decoration: none; font-weight: 700; color: var(--color-plum);
}
.resources-nav a:hover, .resources-nav a.is-active { background: var(--color-surface); box-shadow: var(--shadow-sm); color: var(--color-primary); }
.resources-nav a span { width: 10px; height: 10px; border-radius: 50%; background: var(--color-accent); flex: none; }
.resources-nav .btn { margin-top: 1rem; }
.resources-group { margin-bottom: clamp(2rem, 5vw, 3.5rem); scroll-margin-top: calc(var(--header-h) + 1.5rem); }
.resources-group__head { display: flex; align-items: center; gap: .9rem; margin-bottom: 1.25rem; }
.resources-group__icon { width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; background: var(--color-primary-soft); color: var(--color-primary); flex: none; }
.resources-group__icon svg { width: 24px; height: 24px; }
.resources-group:nth-of-type(2) .resources-group__icon { background: var(--color-accent-soft); color: var(--color-secondary-dark); }
.resources-group:nth-of-type(3) .resources-group__icon { background: var(--color-sky-soft); color: #1d7fb5; }
.resources-group__head h2 { margin: 0; font-size: 1.6rem; }
.resources-group__head p { margin: 0; color: var(--color-muted); font-size: .95rem; }
.doc-grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 720px) { .doc-grid { grid-template-columns: repeat(2, 1fr); } }
.doc-card {
  background: var(--color-surface); border-radius: var(--radius); padding: 1.35rem; box-shadow: var(--shadow-sm);
  display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start; transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.doc-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.doc-card__icon {
  width: 54px; height: 64px; border-radius: 10px; display: grid; place-items: center; position: relative;
  background: var(--color-secondary-soft); color: var(--color-secondary);
}
.doc-card__icon svg { width: 28px; height: 28px; }
.doc-card__icon span { position: absolute; bottom: -8px; left: 50%; transform: translateX(-50%); font-size: .65rem; font-weight: 800; letter-spacing: .08em; background: var(--color-secondary); color: #fff; padding: .1rem .4rem; border-radius: 6px; }
.doc-card h3 { font-size: 1.2rem; margin-bottom: .25rem; }
.doc-card p { color: var(--color-muted); font-size: .95rem; margin-bottom: .9rem; }
.doc-card__meta { display: flex; flex-wrap: wrap; gap: .5rem 1rem; font-size: .85rem; color: var(--color-muted); font-weight: 700; margin-bottom: .9rem; }
.doc-card .btn-row { gap: .5rem; }

/* Enroll */
.packet-card {
  background: var(--color-surface); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden;
  display: grid; grid-template-columns: 1fr;
}
@media (min-width: 900px) { .packet-card { grid-template-columns: 1fr 1.1fr; } }
.packet-card__visual { background: var(--color-plum); color: #fff; padding: 2rem; display: grid; place-items: center; position: relative; overflow: hidden; min-height: 260px; }
.packet-card__visual::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 30% 20%, rgba(255,200,61,.35), transparent 55%), radial-gradient(circle at 80% 90%, rgba(63,169,224,.35), transparent 50%); }
.packet-card__doc {
  position: relative; width: 190px; aspect-ratio: 8.5 / 11; background: #fff; color: var(--color-plum);
  border-radius: 8px; box-shadow: 0 20px 40px rgba(0,0,0,.35); padding: 1.1rem; display: flex; flex-direction: column; gap: .5rem;
  transform: rotate(-3deg);
}
.packet-card__doc img { width: 120px; background: var(--color-plum); padding: .4rem .5rem; border-radius: 6px; }
.packet-card__doc i { display: block; height: 7px; border-radius: 4px; background: #e7e3f1; }
.packet-card__doc i:nth-child(3) { width: 80%; } .packet-card__doc i:nth-child(4) { width: 65%; } .packet-card__doc i:nth-child(5) { width: 90%; } .packet-card__doc i:nth-child(6) { width: 50%; }
.packet-card__doc strong { margin-top: auto; font-family: var(--font-heading); font-size: 1.05rem; line-height: 1.2; }
.packet-card__doc span { position: absolute; top: -12px; right: -12px; background: var(--color-secondary); color: #fff; font-size: .7rem; font-weight: 800; padding: .3rem .55rem; border-radius: var(--radius-pill); letter-spacing: .08em; transform: rotate(6deg); }
.packet-card__body { padding: clamp(1.5rem, 4vw, 2.5rem); }
.steps { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; gap: 1rem; counter-reset: step; }
.steps li { display: grid; grid-template-columns: 44px 1fr; gap: 1rem; align-items: start; }
.steps li::before {
  counter-increment: step; content: counter(step); width: 44px; height: 44px; border-radius: 50%;
  background: var(--color-accent); color: var(--color-plum); font-family: var(--font-heading); font-weight: 700; font-size: 1.2rem; display: grid; place-items: center;
}
.steps h3 { font-size: 1.15rem; margin-bottom: .2rem; }
.steps p { color: var(--color-muted); }

/* Food program */
.menu-grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 900px) { .menu-grid { grid-template-columns: repeat(3, 1fr); } }
.menu-card { background: var(--color-surface); border-radius: var(--radius-lg); box-shadow: var(--shadow); overflow: hidden; display: flex; flex-direction: column; }
.menu-card__head { padding: 1.5rem 1.5rem 1.25rem; color: #fff; display: flex; align-items: center; gap: 1rem; }
.menu-card--breakfast .menu-card__head { background: linear-gradient(135deg, #f2b21b, #ffc83d); color: var(--color-plum); }
.menu-card--lunch .menu-card__head { background: linear-gradient(135deg, #c8402a, #e2604a); }
.menu-card--snack .menu-card__head { background: linear-gradient(135deg, #0b605e, #17a19c); }
.menu-card__icon { width: 52px; height: 52px; border-radius: 16px; background: rgba(255,255,255,.22); display: grid; place-items: center; flex: none; }
.menu-card__icon svg { width: 28px; height: 28px; }
.menu-card__head h2 { color: inherit; margin: 0; font-size: 1.6rem; }
.menu-card__head p { margin: 0; font-size: .9rem; opacity: .9; font-weight: 700; }
.menu-card__body { padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem; flex: 1; }
.menu-list { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: .5rem; }
.menu-list li { padding: .45rem .85rem; border-radius: var(--radius-pill); background: var(--color-background); border: 1px solid var(--color-border); font-weight: 700; font-size: .95rem; }
.menu-card__note { margin-top: auto; padding: .9rem 1rem; border-radius: var(--radius-sm); background: var(--color-accent-soft); color: var(--color-plum); font-size: .95rem; font-weight: 700; display: flex; gap: .6rem; align-items: flex-start; }
.menu-card__note svg { flex: none; width: 20px; height: 20px; margin-top: .15em; color: var(--color-secondary); }

/* Contact */
.contact-layout { display: grid; gap: 2rem; }
@media (min-width: 1024px) { .contact-layout { grid-template-columns: 1fr 1fr; align-items: stretch; } }
.info-card { background: var(--color-surface); border-radius: var(--radius-lg); padding: clamp(1.5rem, 4vw, 2.25rem); box-shadow: var(--shadow); }
.info-card + .info-card { margin-top: 1.5rem; }
.contact-layout > div { display: flex; flex-direction: column; }
.contact-layout > div > .info-card, .contact-layout > div > .form-card, .contact-layout > div > .map-card { flex: 1; }
.contact-layout .form-card { display: flex; flex-direction: column; }
.contact-layout .form-card .form-grid { flex: 1; grid-auto-rows: auto; }
.contact-layout .form-card .field--full { display: flex; flex-direction: column; }
.contact-layout .form-card .field--full textarea { flex: 1; min-height: 160px; }
@media (min-width: 640px) { .contact-layout .form-card .form-grid { grid-template-rows: auto auto 1fr; } }
.info-card h2 { font-size: 1.5rem; }
.address-pair { display: grid; gap: 1rem; }
@media (min-width: 560px) { .address-pair { grid-template-columns: 1fr 1fr; } }
.address-box { padding: 1.1rem 1.25rem; border-radius: var(--radius); background: var(--color-background); border: 1px solid var(--color-border); }
.address-box h3 { font-size: 1.05rem; margin-bottom: .35rem; display: flex; align-items: center; gap: .5rem; }
.address-box h3 svg { width: 20px; height: 20px; color: var(--color-secondary); }
.address-box p { margin: 0; }
.address-box small { display: block; color: var(--color-muted); margin-top: .35rem; }
.directions h3 { font-size: 1.1rem; margin: 0 0 .35rem; color: var(--color-secondary-dark); }
.directions p { color: var(--color-muted); }
.directions__grid { display: grid; gap: 1rem; margin-top: 1.25rem; }
.directions__grid > div { padding: 1.1rem 1.25rem; border-radius: var(--radius); background: var(--color-background); border: 1px solid var(--color-border); }

.map-card { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); background: var(--color-surface); display: flex; flex-direction: column; min-height: 440px; }
.map-card__actions { display: flex; flex-wrap: wrap; gap: .75rem; padding: 1rem 1.25rem; }
.map-facade {
  position: relative; min-height: 380px; display: grid; place-items: center; text-align: center; padding: 2rem;
  background: var(--color-plum); color: #fff; overflow: hidden;
}
.map-facade::before { content: ""; position: absolute; inset: 0; opacity: .18; background-image: radial-gradient(circle at 1px 1px, #fff 1px, transparent 0); background-size: 18px 18px; }
.map-facade > div { position: relative; display: grid; gap: 1rem; justify-items: center; max-width: 480px; }
.map-facade svg { width: 48px; height: 48px; color: var(--color-accent); }
.map-facade h3 { color: #fff; margin: 0; }
.map-facade p { color: rgba(255,255,255,.85); margin: 0; }
.map-facade small { font-size: .85rem; color: rgba(255,255,255,.7); }
.map-card iframe { width: 100%; height: 440px; flex: 1; border: 0; display: block; }
@media (min-width: 1024px) { .map-card iframe { height: auto; min-height: 440px; } }

/* 404 */
.notfound { text-align: center; padding-block: clamp(4rem, 12vw, 8rem); }
.notfound h1 span { display: block; font-size: clamp(4rem, 15vw, 8rem); color: var(--color-secondary); line-height: 1; }

/* 18. Motion --------------------------------------------------------------- */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }
.js .reveal--delay-1 { transition-delay: .1s; }
.js .reveal--delay-2 { transition-delay: .2s; }
.js .reveal--delay-3 { transition-delay: .3s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .js .reveal { opacity: 1; transform: none; }
  .drawer__panel { transform: none; animation: none; }
}

/* 19. Utilities --------------------------------------------------------------- */
.mt-0 { margin-top: 0; } .mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; } .mb-1 { margin-bottom: 1rem; } .mb-2 { margin-bottom: 2rem; }
.text-center { text-align: center; }
.muted { color: var(--color-muted); }
.nowrap { white-space: nowrap; }
.stack { display: grid; gap: 1rem; }
.pill-list { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: .5rem; }
.pill-list li { padding: .4rem .9rem; border-radius: var(--radius-pill); background: var(--color-surface); box-shadow: var(--shadow-sm); font-weight: 700; font-size: .95rem; }
.icon-inline { width: 1.1em; height: 1.1em; vertical-align: -0.2em; }

@media print {
  .ticker, .site-header, .drawer, .hero__wave, .site-footer__wave, .lightbox { display: none !important; }
  body { background: #fff; color: #000; }
  a { color: #000; }
}
