/* ==========================================================================
   LITTLEROOTS LEARNING CENTRE INC. — Design System
   Brand direction: "Playful Editorial / Storybook" (Option 2)
   Archetype: academy — benefit-led hero, programme grid, curriculum, outcomes.

   TABLE OF CONTENTS
   ---------------------------------------------------------------------------
   01. TOKENS (:root custom properties)
   02. RESET & BASE
   03. TYPOGRAPHY
   04. LAYOUT — containers, sections, bands, grids
   05. MOTIF — scalloped divider, leaf watermark, rules
   06. HEADER — sticky nav + mobile drawer
   07. BUTTONS
   08. CARDS — programme cards, pillar cards, value chips, stat tiles
   09. PROGRAMME COLOUR-CODING (toddler / readiness / play / workshops)
   10. HERO
   11. TRUST STRIP
   12. BREADCRUMBS
   13. FORMS
   14. PROSE / LEGAL PAGE TYPOGRAPHY
   15. FOOTER (cocoa band)
   16. UTILITIES (spacing, text, visually-hidden)
   17. MOTION — reveal-on-scroll + prefers-reduced-motion
   ========================================================================== */

/* ==========================================================================
   01. TOKENS
   ========================================================================== */
:root {
  /* --- Brand palette (from the letterhead) --- */
  --cream:        #FBF3E4;   /* the PAGE CANVAS — never white */
  --cream-l:      #FDF8EF;   /* raised surfaces, cards */
  --cocoa:        #4A2E28;   /* warm ink: body text, outlines, footer band */
  --coral:        #E8663F;   /* primary accent */
  --yellow:       #F4B740;
  --green:        #7FB069;
  --sky:          #5AA9C9;
  --berry:        #C64B6E;
  --rule:         #E7D8BE;   /* hairline */

  /* --- Derived tints/shades (kept AA-safe against cream) --- */
  --cocoa-90:     rgba(74, 46, 40, 0.90);
  --cocoa-72:     rgba(74, 46, 40, 0.72);
  --cocoa-56:     rgba(74, 46, 40, 0.56);
  --cocoa-14:     rgba(74, 46, 40, 0.14);
  --cocoa-08:     rgba(74, 46, 40, 0.08);
  --coral-ink:    #B8431F;   /* coral dark enough for text on cream (AA) */
  --sky-ink:      #1F6E8C;   /* sky dark enough for text on cream (AA) */
  --green-ink:    #3F7A2C;   /* green dark enough for text on cream (AA) */
  --berry-ink:    #A32F52;
  --yellow-ink:   #8A5A05;   /* yellow dark enough for text on cream (AA) */
  --coral-wash:   #FBE3DA;
  --sky-wash:     #DDEDF4;
  --green-wash:   #E4F0DC;
  --yellow-wash:  #FBEBCC;

  /* --- Semantic --- */
  --bg:           var(--cream);
  --surface:      var(--cream-l);
  --ink:          var(--cocoa);
  --ink-soft:     var(--cocoa-72);
  --ink-faint:    var(--cocoa-56);
  --accent:       var(--coral);
  --accent-ink:   var(--coral-ink);
  --focus:        #1F6E8C;

  /* --- Type --- */
  --font-display: "Fraunces", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --font-body:    "Nunito", "Segoe UI", system-ui, -apple-system, sans-serif;

  --fs-xs:   0.8125rem;  /* 13px */
  --fs-sm:   0.9375rem;  /* 15px */
  --fs-base: 1.0625rem;  /* 17px */
  --fs-md:   1.1875rem;
  --fs-lg:   clamp(1.25rem, 0.9rem + 1.1vw, 1.5rem);
  --fs-h3:   clamp(1.35rem, 1.05rem + 1.1vw, 1.65rem);
  --fs-h2:   clamp(1.75rem, 1.25rem + 2.1vw, 2.6rem);
  --fs-h1:   clamp(2.15rem, 1.4rem + 3.4vw, 3.75rem);
  --fs-eyebrow: 0.78rem;

  --lh-tight: 1.14;
  --lh-snug:  1.32;
  --lh-body:  1.68;

  /* --- Space scale --- */
  --s-1: 0.25rem;
  --s-2: 0.5rem;
  --s-3: 0.75rem;
  --s-4: 1rem;
  --s-5: 1.5rem;
  --s-6: 2rem;
  --s-7: 3rem;
  --s-8: 4rem;
  --s-9: 5.5rem;
  --s-10: 7rem;

  /* --- Structure --- */
  --wrap:        1160px;
  --wrap-narrow: 760px;
  --gutter:      clamp(1.15rem, 4vw, 2.5rem);
  --radius-sm:   8px;
  --radius:      16px;
  --radius-lg:   26px;
  --radius-pill: 999px;
  --border:      2px solid var(--cocoa);
  --hairline:    1px solid var(--rule);

  /* --- "Storybook" shadow: a flat cocoa offset, never a blur-mush --- */
  --lift:      6px 6px 0 var(--cocoa);
  --lift-sm:   4px 4px 0 var(--cocoa);
  --lift-soft: 0 14px 34px rgba(74, 46, 40, 0.10);

  --header-h: 74px;
  --ease: cubic-bezier(0.22, 0.68, 0.32, 1);
}

/* ==========================================================================
   02. RESET & BASE
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background-color: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: var(--lh-body);
  font-weight: 400;
  overflow-x: hidden;          /* guarantee: no horizontal scroll at 375px */
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg, picture, video { max-width: 100%; display: block; }
img { height: auto; }

a { color: var(--accent-ink); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1.5px; }
a:hover { color: var(--cocoa); }

/* Visible focus everywhere — WCAG 2.2 AA */
:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--yellow); color: var(--cocoa); }

.skip-link {
  position: absolute;
  left: var(--s-4);
  top: -100%;
  z-index: 200;
  background: var(--cocoa);
  color: var(--cream);
  padding: var(--s-3) var(--s-5);
  border-radius: var(--radius-pill);
  font-weight: 700;
  text-decoration: none;
  transition: top 0.18s var(--ease);
}
.skip-link:focus { top: var(--s-4); color: var(--cream); }

/* ==========================================================================
   03. TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-variation-settings: "SOFT" 40, "WONK" 1;
  color: var(--ink);
  margin: 0 0 var(--s-4);
  line-height: var(--lh-tight);
  letter-spacing: -0.012em;
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); line-height: var(--lh-snug); }
h3 { font-size: var(--fs-h3); line-height: var(--lh-snug); }
h4 { font-size: var(--fs-md); line-height: var(--lh-snug); }

p { margin: 0 0 var(--s-4); }
p:last-child { margin-bottom: 0; }

strong, b { font-weight: 800; color: var(--ink); }

/* Eyebrow — small caps label above a heading */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-ink);
  margin: 0 0 var(--s-3);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 3px;
  border-radius: 2px;
  background: currentColor;
  flex: none;
}

/* Lead paragraph */
.lead {
  font-size: var(--fs-lg);
  line-height: 1.55;
  color: var(--ink-soft);
  font-weight: 500;
}

/* Display serif accent inside a heading */
.tint-coral  { color: var(--coral-ink); }
.tint-sky    { color: var(--sky-ink); }
.tint-green  { color: var(--green-ink); }
.tint-berry  { color: var(--berry-ink); }
.tint-yellow { color: var(--yellow-ink); }

/* A hand-drawn "underline" swoosh behind a word */
.marker {
  position: relative;
  white-space: nowrap;
}
.marker::after {
  content: "";
  position: absolute;
  left: -2px;
  right: -2px;
  bottom: 0.06em;
  height: 0.34em;
  background: var(--yellow);
  border-radius: var(--radius-pill);
  z-index: -1;
  opacity: 0.75;
}

/* ==========================================================================
   04. LAYOUT
   ========================================================================== */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap--narrow { max-width: var(--wrap-narrow); }

.section { padding-block: clamp(3rem, 7vw, 5.5rem); }
.section--tight { padding-block: clamp(2.25rem, 5vw, 3.5rem); }
.section--tall  { padding-block: clamp(3.75rem, 9vw, 7rem); }

/* Section bands — alternate the canvas without ever going white */
.band--cream   { background: var(--cream); }
.band--surface { background: var(--cream-l); }
.band--cocoa   { background: var(--cocoa); color: var(--cream); }
.band--cocoa h1, .band--cocoa h2, .band--cocoa h3, .band--cocoa h4 { color: var(--cream); }
.band--cocoa .lead { color: rgba(251, 243, 228, 0.82); }
.band--cocoa .eyebrow { color: var(--yellow); }
.band--cocoa a { color: var(--yellow); }
.band--coral-wash { background: var(--coral-wash); }
.band--sky-wash   { background: var(--sky-wash); }
.band--green-wash { background: var(--green-wash); }

/* Section header block */
.section-head { max-width: 44rem; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }

/* Grids */
.grid { display: grid; gap: clamp(1.15rem, 2.4vw, 1.75rem); }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; }
.grid--split { grid-template-columns: 1fr; align-items: center; gap: clamp(2rem, 5vw, 4rem); }

@media (min-width: 600px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
  .grid--split { grid-template-columns: 1.05fr 0.95fr; }
}

/* ==========================================================================
   05. MOTIF — the signature multi-tone SCALLOPED divider
   Half-circles in coral -> yellow -> green -> sky -> berry, repeating.
   Usage: <div class="scallop" aria-hidden="true"></div> between bands.
   Variants: .scallop--flip (points up), .scallop--sm.
   ========================================================================== */
.scallop {
  --scallop-size: 34px;
  height: calc(var(--scallop-size) / 2);
  width: 100%;
  display: block;
  background-repeat: repeat-x;
  background-position: left top;
  background-size: calc(var(--scallop-size) * 5) var(--scallop-size);
  /* five half-circles, one per brand tone, tiled */
  background-image:
    radial-gradient(circle at 17px 0, var(--coral)  16px, transparent 16.5px),
    radial-gradient(circle at 51px 0, var(--yellow) 16px, transparent 16.5px),
    radial-gradient(circle at 85px 0, var(--green)  16px, transparent 16.5px),
    radial-gradient(circle at 119px 0, var(--sky)   16px, transparent 16.5px),
    radial-gradient(circle at 153px 0, var(--berry) 16px, transparent 16.5px);
}
.scallop--flip { transform: scaleY(-1); }
.scallop--sm { --scallop-size: 24px; background-size: 120px 24px;
  background-image:
    radial-gradient(circle at 12px 0, var(--coral)  11px, transparent 11.5px),
    radial-gradient(circle at 36px 0, var(--yellow) 11px, transparent 11.5px),
    radial-gradient(circle at 60px 0, var(--green)  11px, transparent 11.5px),
    radial-gradient(circle at 84px 0, var(--sky)    11px, transparent 11.5px),
    radial-gradient(circle at 108px 0, var(--berry) 11px, transparent 11.5px);
}

/* Thin five-tone ribbon (a flat cousin of the scallop) */
.ribbon {
  height: 7px;
  width: 100%;
  display: block;
  background: linear-gradient(
    to right,
    var(--coral) 0 20%, var(--yellow) 20% 40%, var(--green) 40% 60%,
    var(--sky) 60% 80%, var(--berry) 80% 100%
  );
}

/* Hairline rule */
.rule { border: 0; border-top: var(--hairline); margin: var(--s-6) 0; }

/* Faint cocoa leaf / sprout watermark on a band */
.watermark { position: relative; isolation: isolate; overflow: hidden; }
.watermark > .watermark__leaf {
  position: absolute;
  z-index: 0;
  width: min(46vw, 420px);
  color: var(--cocoa);
  opacity: 0.045;
  pointer-events: none;
}
.watermark > .watermark__leaf--tr { top: -3rem; right: -4rem; transform: rotate(12deg); }
.watermark > .watermark__leaf--bl { bottom: -4rem; left: -4rem; transform: rotate(-160deg); }
.watermark > .wrap { position: relative; z-index: 1; }

/* ==========================================================================
   06. HEADER — sticky nav + mobile drawer
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(251, 243, 228, 0.94);
  backdrop-filter: saturate(1.2) blur(8px);
  border-bottom: 1px solid var(--rule);
}
.site-header__bar {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
}
.brand { display: inline-flex; align-items: center; text-decoration: none; flex: none; }
.brand img, .brand svg { height: 46px; width: auto; }
@media (min-width: 900px) { .brand img, .brand svg { height: 54px; } }

/* Small screens: the bar is flex/nowrap, and a 267px wordmark + 16px gap + the
   menu button needs more room than the wrap leaves at 375px — which pushed the
   button ~26px past the viewport. Let the wordmark shrink (it scales
   proportionally, so it stays legible) and pin the menu button so it keeps a
   full 44x44 tap target instead of being squashed. */
@media (max-width: 600px) {
  .brand { flex: 0 1 auto; min-width: 0; }
  .brand img, .brand svg { height: auto; width: 200px; max-width: 100%; }
  .nav-toggle { flex: none; min-height: 44px; }
}

/* Desktop nav */
.nav { display: none; }
@media (min-width: 960px) {
  .nav {
    display: flex;
    align-items: center;
    gap: clamp(0.5rem, 1.4vw, 1.25rem);
  }
}
.nav__link {
  position: relative;
  font-weight: 700;
  font-size: var(--fs-sm);
  color: var(--ink);
  text-decoration: none;
  padding: var(--s-2) var(--s-2);
  border-radius: var(--radius-sm);
  white-space: nowrap;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: var(--s-2);
  right: var(--s-2);
  bottom: 2px;
  height: 3px;
  border-radius: 2px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s var(--ease);
}
.nav__link:hover { color: var(--ink); }
.nav__link:hover::after,
.nav__link[aria-current="page"]::after { transform: scaleX(1); }
.nav__link[aria-current="page"] { color: var(--coral-ink); }
.nav .btn { margin-left: var(--s-3); }

/* Mobile toggle */
.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: var(--fs-sm);
  background: var(--cream-l);
  color: var(--ink);
  border: var(--border);
  border-radius: var(--radius-pill);
  padding: 0.55rem 0.95rem;
  cursor: pointer;
  box-shadow: var(--lift-sm);
}
.nav-toggle:active { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--cocoa); }
@media (min-width: 960px) { .nav-toggle { display: none; } }
.nav-toggle__bars { display: block; width: 18px; height: 12px; position: relative; }
.nav-toggle__bars::before,
.nav-toggle__bars::after,
.nav-toggle__bars span {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 2.5px;
  border-radius: 2px;
  background: var(--cocoa);
  transition: transform 0.2s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle__bars::before { top: 0; }
.nav-toggle__bars span    { top: 5px; }
.nav-toggle__bars::after  { top: 10px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before { transform: translateY(5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span    { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after  { transform: translateY(-5px) rotate(-45deg); }

/* Drawer */
.drawer {
  display: none;
  border-top: 1px solid var(--rule);
  background: var(--cream-l);
  padding: var(--s-4) 0 var(--s-6);
}
.drawer[data-open="true"] { display: block; }
@media (min-width: 960px) { .drawer, .drawer[data-open="true"] { display: none; } }
.drawer__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 2px; }
.drawer__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  padding: 0.85rem var(--s-3);
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
}
.drawer__link[aria-current="page"] { color: var(--coral-ink); }
.drawer__link::after {
  content: "";
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--cocoa-14);
  flex: none;
}
.drawer__link[aria-current="page"]::after { background: var(--coral); }
.drawer .btn { margin-top: var(--s-4); width: 100%; }

/* ==========================================================================
   07. BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: var(--fs-sm);
  line-height: 1.2;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-pill);
  border: var(--border);
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  transition: transform 0.15s var(--ease), box-shadow 0.15s var(--ease), background-color 0.15s var(--ease);
}
.btn svg { width: 18px; height: 18px; flex: none; }

.btn--primary {
  background: var(--coral);
  color: #FFF7F2;
  box-shadow: var(--lift-sm);
}
.btn--primary:hover { background: var(--coral-ink); color: #FFF7F2; transform: translate(-1px, -1px); box-shadow: 5px 5px 0 var(--cocoa); }
.btn--primary:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--cocoa); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: none;
}
.btn--ghost:hover { background: var(--cocoa); color: var(--cream); }

.btn--cream {
  background: var(--cream);
  color: var(--cocoa);
  border-color: var(--cream);
  box-shadow: none;
}
.btn--cream:hover { background: var(--yellow); color: var(--cocoa); border-color: var(--yellow); }

.btn--outline-cream {
  background: transparent;
  color: var(--cream);
  border-color: rgba(251, 243, 228, 0.65);
}
.btn--outline-cream:hover { background: rgba(251, 243, 228, 0.14); color: var(--cream); }

.btn--lg { padding: 1rem 1.85rem; font-size: var(--fs-base); }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: var(--s-3); align-items: center; }

/* Plain text link with an arrow */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 800;
  font-size: var(--fs-sm);
  text-decoration: none;
  color: var(--accent-ink);
}
.link-arrow::after { content: "\2192"; transition: transform 0.18s var(--ease); }
.link-arrow:hover::after { transform: translateX(4px); }

/* ==========================================================================
   08. CARDS
   ========================================================================== */
.card {
  position: relative;
  background: var(--cream-l);
  border: var(--border);
  border-radius: var(--radius);
  padding: clamp(1.35rem, 3vw, 1.9rem);
  box-shadow: var(--lift-sm);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.card > :last-child { margin-bottom: 0; }
.card h3 { margin-bottom: 0; }
.card p { color: var(--ink-soft); font-size: var(--fs-sm); }

.card--flat { box-shadow: none; }
.card--hair { border: var(--hairline); box-shadow: var(--lift-soft); border-radius: var(--radius); }

/* Card icon badge */
.card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  border: var(--border);
  background: var(--cream);
  flex: none;
}
.card__icon svg { width: 24px; height: 24px; stroke: var(--cocoa); fill: none; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }

/* Numbered pillar card */
.pillar { counter-increment: pillar; }
.pillar__num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: var(--border);
  background: var(--cream);
  flex: none;
}

/* Programme card (image on top, colour-coded) */
.prog {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--cream-l);
  border: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--lift-sm);
  height: 100%;
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease);
}
.prog:hover { transform: translate(-2px, -2px); box-shadow: 8px 8px 0 var(--cocoa); }
.prog__media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--prog-wash, var(--cocoa-08));
  border-bottom: var(--border);
  overflow: hidden;
}
.prog__media img { width: 100%; height: 100%; object-fit: cover; }
/* The 4th programme (Parent & Child Workshops) has no photo — iconic treatment */
.prog__media--icon {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 18% 22%, rgba(255,255,255,0.55) 0 22%, transparent 22.5%),
    var(--prog-wash, var(--green-wash));
}
.prog__media--icon svg {
  width: clamp(96px, 34%, 132px);
  height: auto;
  stroke: var(--cocoa);
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.prog__age {
  position: absolute;
  top: var(--s-3);
  left: var(--s-3);
  z-index: 2;
  font-size: var(--fs-xs);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-pill);
  border: var(--border);
  background: var(--prog-color, var(--coral));
  color: var(--cocoa);
}
.prog__body {
  padding: clamp(1.25rem, 3vw, 1.65rem);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  flex: 1;
}
.prog__body h3 { margin: 0; font-size: var(--fs-h3); }
.prog__body p { color: var(--ink-soft); font-size: var(--fs-sm); margin: 0; }
.prog__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.prog__list li {
  font-size: var(--fs-xs);
  font-weight: 700;
  padding: 0.28rem 0.65rem;
  border-radius: var(--radius-pill);
  background: var(--prog-wash, var(--cocoa-08));
  color: var(--ink);
  border: 1px solid var(--cocoa-14);
}
.prog__foot { margin-top: auto; padding-top: var(--s-2); }
.prog__foot .link-arrow { color: var(--prog-ink, var(--coral-ink)); }

/* Value chips (the eight values) */
.chips { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: var(--s-3); }
.chips li {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-weight: 700;
  font-size: var(--fs-sm);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  border: var(--border);
  background: var(--cream-l);
}
.chips li::before {
  content: "";
  width: 10px; height: 10px;
  border-radius: 50%;
  flex: none;
  background: var(--coral);
}
.chips li:nth-child(5n+2)::before { background: var(--yellow); }
.chips li:nth-child(5n+3)::before { background: var(--green); }
.chips li:nth-child(5n+4)::before { background: var(--sky); }
.chips li:nth-child(5n+5)::before { background: var(--berry); }

/* Stat tiles */
.stats { list-style: none; margin: 0; padding: 0; }
.stat {
  background: var(--cream-l);
  border: var(--border);
  border-radius: var(--radius);
  padding: clamp(1.15rem, 2.5vw, 1.6rem);
  height: 100%;
}
.stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 1.2rem + 2vw, 2.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--coral-ink);
  margin-bottom: var(--s-2);
}
.stat__label { font-size: var(--fs-sm); color: var(--ink-soft); margin: 0; }
.stat:nth-child(4n+2) .stat__num { color: var(--sky-ink); }
.stat:nth-child(4n+3) .stat__num { color: var(--green-ink); }
.stat:nth-child(4n+4) .stat__num { color: var(--berry-ink); }

/* Tick list */
.ticks { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--s-3); }
.ticks li { position: relative; padding-left: 2rem; }
.ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--green);
  border: 2px solid var(--cocoa);
}
.ticks li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 0.68em;
  width: 8px; height: 4px;
  border-left: 2px solid var(--cocoa);
  border-bottom: 2px solid var(--cocoa);
  transform: rotate(-45deg);
}

/* Media frame — a photo with the storybook offset */
.frame {
  position: relative;
  border: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--lift);
  background: var(--cream-l);
}
.frame img { width: 100%; height: 100%; object-fit: cover; }

/* ==========================================================================
   09. PROGRAMME COLOUR-CODING — used site-wide, verbatim
   Toddler=coral · Readiness=sky · Play=yellow · Workshops=green
   Apply to any .prog / .card / section: class="prog p-toddler"
   ========================================================================== */
.p-toddler   { --prog-color: var(--coral);  --prog-ink: var(--coral-ink);  --prog-wash: var(--coral-wash); }
.p-readiness { --prog-color: var(--sky);    --prog-ink: var(--sky-ink);    --prog-wash: var(--sky-wash); }
.p-play      { --prog-color: var(--yellow); --prog-ink: var(--yellow-ink); --prog-wash: var(--yellow-wash); }
.p-workshops { --prog-color: var(--green);  --prog-ink: var(--green-ink);  --prog-wash: var(--green-wash); }

/* Colour-coded top edge on any card */
.prog::before,
.card.is-coded::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 8px;
  background: var(--prog-color, var(--coral));
  z-index: 3;
}
.prog__media { margin-top: 0; }

/* Small colour dot for legends */
.dot {
  display: inline-block;
  width: 12px; height: 12px;
  border-radius: 50%;
  border: 2px solid var(--cocoa);
  background: var(--prog-color, var(--coral));
  vertical-align: -1px;
  margin-right: 0.35rem;
}

/* ==========================================================================
   10. HERO
   ========================================================================== */
.hero {
  position: relative;
  padding-block: clamp(2.5rem, 6vw, 4.75rem) clamp(2.5rem, 6vw, 4.5rem);
  background: var(--cream);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}
@media (min-width: 980px) {
  .hero__grid { grid-template-columns: 1.02fr 0.98fr; }
}
.hero h1 { margin-bottom: var(--s-4); }
.hero__copy > .btn-row { margin-top: var(--s-6); }

.hero__meta {
  list-style: none;
  margin: var(--s-6) 0 0;
  padding: var(--s-5) 0 0;
  border-top: var(--hairline);
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3) var(--s-5);
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--ink-soft);
}
.hero__meta li { display: inline-flex; align-items: center; gap: 0.45rem; }
.hero__meta svg { width: 18px; height: 18px; stroke: var(--coral-ink); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex: none; }

/* Hero media: framed photo + a floating "age band" tag */
.hero__media { position: relative; }
.hero__media .frame { aspect-ratio: 5 / 4; }
.hero__tag {
  position: absolute;
  right: clamp(-0.4rem, 1vw, 0.75rem);
  bottom: -1.1rem;
  z-index: 3;
  background: var(--cream-l);
  border: var(--border);
  border-radius: var(--radius);
  box-shadow: var(--lift-sm);
  padding: 0.8rem 1.05rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  max-width: min(84%, 19rem);
}
.hero__tag svg { width: 30px; height: 30px; flex: none; stroke: var(--green-ink); fill: none; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.hero__tag strong { display: block; font-size: var(--fs-sm); line-height: 1.25; }
.hero__tag span { display: block; font-size: var(--fs-xs); color: var(--ink-faint); font-weight: 600; }

/* Compact page hero for interior pages */
.page-hero {
  background: var(--cream-l);
  padding-block: clamp(2rem, 5vw, 3.5rem) clamp(2.25rem, 5vw, 3.75rem);
  border-bottom: 1px solid var(--rule);
}
.page-hero h1 { margin-bottom: var(--s-3); }
.page-hero .lead { max-width: 46rem; }

/* ==========================================================================
   11. TRUST STRIP
   ========================================================================== */
.trust {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--s-4);
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .trust { grid-template-columns: repeat(3, 1fr); } }
.trust li {
  display: flex;
  gap: var(--s-4);
  align-items: flex-start;
  padding: var(--s-5);
  background: var(--cream);
  border: var(--hairline);
  border-radius: var(--radius);
}
.band--cocoa .trust li {
  background: rgba(251, 243, 228, 0.06);
  border-color: rgba(251, 243, 228, 0.18);
}
.trust__ic {
  width: 42px; height: 42px;
  flex: none;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--cream-l);
  border: 2px solid var(--cocoa);
}
.band--cocoa .trust__ic { background: var(--cream); border-color: var(--cream); }
.trust__ic svg { width: 22px; height: 22px; stroke: var(--cocoa); fill: none; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.trust h3 { font-size: var(--fs-md); margin-bottom: 0.3rem; }
.trust p { font-size: var(--fs-sm); margin: 0; color: var(--ink-soft); }
.band--cocoa .trust p { color: rgba(251, 243, 228, 0.78); }

/* ==========================================================================
   12. BREADCRUMBS
   ========================================================================== */
.breadcrumb { padding-block: var(--s-4); font-size: var(--fs-sm); }
.breadcrumb ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  color: var(--ink-faint);
}
.breadcrumb li { display: inline-flex; align-items: center; gap: 0.4rem; }
.breadcrumb li + li::before { content: "\203A"; color: var(--ink-faint); }
.breadcrumb a { color: var(--ink-soft); text-decoration: none; font-weight: 700; }
.breadcrumb a:hover { color: var(--coral-ink); text-decoration: underline; }
.breadcrumb [aria-current="page"] { font-weight: 700; color: var(--ink); }

/* ==========================================================================
   13. FORMS
   ========================================================================== */
.form { display: grid; gap: var(--s-5); }
.form__row { display: grid; gap: var(--s-5); grid-template-columns: 1fr; }
@media (min-width: 640px) { .form__row--2 { grid-template-columns: 1fr 1fr; } }

.field { display: grid; gap: 0.4rem; }
.field label {
  font-weight: 800;
  font-size: var(--fs-sm);
}
.field .hint { font-size: var(--fs-xs); color: var(--ink-faint); }
.field .req { color: var(--coral-ink); }

.input, .textarea, .select {
  width: 100%;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  color: var(--ink);
  background: var(--cream-l);
  border: 2px solid var(--cocoa-14);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.9rem;
  transition: border-color 0.15s var(--ease), box-shadow 0.15s var(--ease);
}
.input::placeholder, .textarea::placeholder { color: var(--ink-faint); }
.input:hover, .textarea:hover, .select:hover { border-color: var(--cocoa-56); }
.input:focus, .textarea:focus, .select:focus {
  outline: none;
  border-color: var(--cocoa);
  box-shadow: 0 0 0 3px rgba(90, 169, 201, 0.35);
}
.input:focus-visible, .textarea:focus-visible, .select:focus-visible { outline: 3px solid var(--focus); outline-offset: 2px; }
.textarea { min-height: 9rem; resize: vertical; }
.select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--cocoa) 50%),
                    linear-gradient(135deg, var(--cocoa) 50%, transparent 50%);
  background-position: calc(100% - 20px) calc(50% + 2px), calc(100% - 14px) calc(50% + 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 2.6rem;
}

.check { display: flex; gap: var(--s-3); align-items: flex-start; }
.check input[type="checkbox"] {
  width: 1.2rem; height: 1.2rem;
  margin-top: 0.28rem;
  accent-color: var(--coral);
  flex: none;
}
.check label { font-weight: 600; font-size: var(--fs-sm); color: var(--ink-soft); }

fieldset { border: var(--hairline); border-radius: var(--radius); padding: var(--s-5); margin: 0; }
legend { font-family: var(--font-display); font-weight: 600; padding-inline: var(--s-2); }

.form__note { font-size: var(--fs-xs); color: var(--ink-faint); }

/* ==========================================================================
   14. PROSE / LEGAL PAGE TYPOGRAPHY
   ========================================================================== */
.prose { max-width: 44rem; }
.prose h2 { font-size: clamp(1.4rem, 1.1rem + 1vw, 1.8rem); margin-top: var(--s-7); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: var(--fs-md); margin-top: var(--s-5); }
.prose p, .prose li { color: var(--ink-soft); }
.prose ul, .prose ol { padding-left: 1.25rem; margin: 0 0 var(--s-4); }
.prose li { margin-bottom: var(--s-2); }
.prose li::marker { color: var(--coral); }
.prose a { font-weight: 700; }
.prose hr { border: 0; border-top: var(--hairline); margin: var(--s-6) 0; }
.prose dl { margin: 0 0 var(--s-4); }
.prose dt { font-weight: 800; margin-top: var(--s-4); }
.prose dd { margin: 0.25rem 0 0; color: var(--ink-soft); }
.prose table { width: 100%; border-collapse: collapse; font-size: var(--fs-sm); }
.prose th, .prose td { text-align: left; padding: 0.6rem 0.75rem; border-bottom: var(--hairline); }
.prose th { font-weight: 800; }
.table-scroll { overflow-x: auto; }

/* ==========================================================================
   15. FOOTER — the cocoa band
   ========================================================================== */
.site-footer {
  background: var(--cocoa);
  color: rgba(251, 243, 228, 0.82);
  padding-block: clamp(2.75rem, 6vw, 4rem) var(--s-6);
}
.site-footer h2, .site-footer h3 { color: var(--cream); font-size: var(--fs-md); margin-bottom: var(--s-4); }
.site-footer a { color: rgba(251, 243, 228, 0.86); text-decoration: none; }
.site-footer a:hover { color: var(--yellow); text-decoration: underline; }

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3rem);
}
@media (min-width: 700px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; } }
@media (min-width: 1000px) { .footer__grid { grid-template-columns: 1.5fr 1fr 1fr 1.1fr; } }

.footer__brand img { height: 62px; width: auto; margin-bottom: var(--s-4); }
.footer__brand p { font-size: var(--fs-sm); max-width: 30ch; }

.footer__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.55rem; font-size: var(--fs-sm); }
.footer__list li { line-height: 1.45; }

address.footer__addr { font-style: normal; font-size: var(--fs-sm); line-height: 1.6; }

.footer__bottom {
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: var(--s-5);
  border-top: 1px solid rgba(251, 243, 228, 0.18);
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3) var(--s-5);
  align-items: center;
  justify-content: space-between;
  font-size: var(--fs-xs);
  color: rgba(251, 243, 228, 0.62);
}
.footer__legal { margin: 0; }
.footer__meta { display: flex; flex-wrap: wrap; gap: var(--s-2) var(--s-4); margin: 0; list-style: none; padding: 0; }

/* ==========================================================================
   16. UTILITIES
   ========================================================================== */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.center { text-align: center; }
.center .eyebrow { justify-content: center; }
.mx-auto { margin-inline: auto; }
.measure { max-width: 42rem; }
.mt-0 { margin-top: 0; }
.mt-3 { margin-top: var(--s-3); }
.mt-4 { margin-top: var(--s-4); }
.mt-5 { margin-top: var(--s-5); }
.mt-6 { margin-top: var(--s-6); }
.mt-7 { margin-top: var(--s-7); }
.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: var(--s-4); }
.mb-5 { margin-bottom: var(--s-5); }
.mb-6 { margin-bottom: var(--s-6); }
.small { font-size: var(--fs-sm); }
.tiny  { font-size: var(--fs-xs); }
.soft  { color: var(--ink-soft); }
.faint { color: var(--ink-faint); }

/* CTA panel — reusable closing call-to-action */
.cta-panel {
  background: var(--cocoa);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: clamp(1.85rem, 5vw, 3.25rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-panel h2 { color: var(--cream); }
.cta-panel p { color: rgba(251, 243, 228, 0.82); max-width: 40rem; margin-inline: auto; }
.cta-panel .btn-row { justify-content: center; margin-top: var(--s-6); }
.cta-panel .ribbon { position: absolute; inset: 0 0 auto 0; }

/* ==========================================================================
   16b. APPENDED COMPONENTS (interior pages)
   Added for about / programs / approach / enrolment / contact.
   ========================================================================== */

/* Pull-quote — used for the verbatim mission & vision statements */
.quote { margin: 0; }
.quote p {
  font-family: var(--font-display);
  font-size: var(--fs-md);
  line-height: 1.5;
  font-weight: 500;
  color: var(--ink);
  padding-left: var(--s-4);
  border-left: 4px solid var(--prog-color, var(--coral));
  margin: 0;
}

/* Address card — bordered contact block */
.addr-card {
  display: block;
  font-style: normal;
  background: var(--cream-l);
  border: var(--border);
  border-radius: var(--radius);
  box-shadow: var(--lift-sm);
  padding: clamp(1.15rem, 3vw, 1.6rem);
  margin-top: var(--s-5);
  line-height: 1.65;
}
.addr-card__links {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-top: var(--s-4);
  padding-top: var(--s-4);
  border-top: var(--hairline);
  font-weight: 800;
  overflow-wrap: anywhere;
}

/* Numbered step sequence (enrolment) */
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--s-5); counter-reset: step; }
@media (min-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
.steps > li {
  counter-increment: step;
  position: relative;
  background: var(--cream-l);
  border: var(--border);
  border-radius: var(--radius);
  box-shadow: var(--lift-sm);
  padding: clamp(1.25rem, 3vw, 1.75rem);
  padding-left: clamp(3.75rem, 8vw, 4.5rem);
}
.steps > li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: clamp(1rem, 2.5vw, 1.25rem);
  top: clamp(1.25rem, 3vw, 1.75rem);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: var(--border);
  background: var(--cream);
  color: var(--ink);
}
.steps > li:nth-child(5n+1)::before { background: var(--coral-wash); }
.steps > li:nth-child(5n+2)::before { background: var(--yellow-wash); }
.steps > li:nth-child(5n+3)::before { background: var(--green-wash); }
.steps > li:nth-child(5n+4)::before { background: var(--sky-wash); }
.steps > li h3 { margin-bottom: var(--s-2); font-size: var(--fs-md); }
.steps > li p { font-size: var(--fs-sm); color: var(--ink-soft); margin: 0; }

/* Detailed programme block (programs.html) — alternating media / copy */
.prog-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  scroll-margin-top: calc(var(--header-h) + 1.5rem);
}
@media (min-width: 900px) {
  .prog-detail { grid-template-columns: 0.95fr 1.05fr; }
  .prog-detail--flip .prog-detail__media { order: 2; }
}
.prog-detail + .prog-detail { margin-top: clamp(3rem, 7vw, 5rem); padding-top: clamp(3rem, 7vw, 5rem); border-top: var(--hairline); }
.prog-detail__media .frame { aspect-ratio: 4 / 3; }
.prog-detail__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: var(--fs-xs);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-pill);
  border: var(--border);
  background: var(--prog-color, var(--coral));
  color: var(--cocoa);
  margin-bottom: var(--s-4);
}
.prog-detail__panel {
  background: var(--prog-wash, var(--coral-wash));
  border: var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--lift);
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  padding: var(--s-6);
}
.prog-detail__panel svg {
  width: min(62%, 220px);
  height: auto;
  stroke: var(--cocoa);
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.prog-detail h2 { margin-bottom: var(--s-3); }
.gains { list-style: none; margin: var(--s-5) 0 0; padding: 0; display: grid; gap: var(--s-3); }
.gains li { position: relative; padding-left: 1.9rem; font-size: var(--fs-sm); color: var(--ink-soft); }
.gains li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 12px; height: 12px;
  border-radius: 50%;
  border: 2px solid var(--cocoa);
  background: var(--prog-color, var(--coral));
}
.gains li strong { color: var(--ink); }

/* Package cards (enrolment) — no prices, structure only */
.pack { display: flex; flex-direction: column; gap: var(--s-3); }
.pack__tag {
  align-self: flex-start;
  font-size: var(--fs-xs);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-pill);
  background: var(--prog-wash, var(--cocoa-08));
  border: 1px solid var(--cocoa-14);
}
.pack ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.45rem; font-size: var(--fs-sm); color: var(--ink-soft); }
.pack ul li { position: relative; padding-left: 1.25rem; }
.pack ul li::before { content: "\2022"; position: absolute; left: 0; color: var(--prog-color, var(--coral)); font-weight: 800; }

/* Enquiry form panel */
.form-panel {
  background: var(--cream-l);
  border: var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--lift);
  padding: clamp(1.35rem, 4vw, 2.25rem);
  scroll-margin-top: calc(var(--header-h) + 1.5rem);
}
.form-panel h2 { font-size: var(--fs-h3); margin-bottom: var(--s-3); }

/* Form status message */
.form__status {
  margin: 0;
  padding: var(--s-3) var(--s-4);
  border-radius: var(--radius-sm);
  border: 2px solid var(--green);
  background: var(--green-wash);
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--ink);
}
.form__status[hidden] { display: none; }

/* Chips that are links (programme jump-nav) — explicit class, no :has() dependency */
.chips--links li { padding: 0; background: transparent; border: 0; }
.chips--links li::before { display: none; }
.chips--links li > a {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-weight: 700;
  font-size: var(--fs-sm);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  border: var(--border);
  background: var(--cream-l);
  color: var(--ink);
  text-decoration: none;
}
.chips--links li > a::before {
  content: "";
  width: 10px; height: 10px;
  border-radius: 50%;
  flex: none;
  background: var(--coral);
}
.chips--links li:nth-child(2) > a::before { background: var(--sky); }
.chips--links li:nth-child(3) > a::before { background: var(--yellow); }
.chips--links li:nth-child(4) > a::before { background: var(--green); }
.chips--links li > a:hover { background: var(--cocoa); color: var(--cream); }

/* Standalone data table (outside .prose) */
.prose-table { width: 100%; border-collapse: collapse; font-size: var(--fs-sm); min-width: 34rem; }
.prose-table th, .prose-table td { text-align: left; padding: 0.85rem 0.9rem; border-bottom: var(--hairline); vertical-align: top; }
.prose-table thead th {
  font-weight: 800;
  font-size: var(--fs-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: var(--border);
  color: var(--ink);
}
.prose-table tbody th { font-weight: 800; color: var(--ink); }
.prose-table td { color: var(--ink-soft); }

/* Definition-style FAQ / info rows */
.info-list { display: grid; gap: var(--s-4); margin: 0; }
.info-list > div {
  border-bottom: var(--hairline);
  padding-bottom: var(--s-4);
}
.info-list > div:last-child { border-bottom: 0; padding-bottom: 0; }
.info-list dt { font-weight: 800; font-size: var(--fs-md); font-family: var(--font-display); margin-bottom: var(--s-2); }
.info-list dd { margin: 0; color: var(--ink-soft); font-size: var(--fs-sm); }

/* ==========================================================================
   17. MOTION
   ========================================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: 0.08s; }
[data-reveal][data-delay="2"] { transition-delay: 0.16s; }
[data-reveal][data-delay="3"] { transition-delay: 0.24s; }

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

/* ==========================================================================
   PRINT
   ========================================================================== */
@media print {
  .site-header, .drawer, .nav-toggle, .scallop, .cta-panel { display: none !important; }
  body { background: #fff; color: #000; }
}
