/* ============================================================
   FAMILY FUTURES KUMASI — paper-cut playground system
   peach / teal / sun / plum / cloud — warm but disciplined
   ============================================================ */

@font-face {
  font-family: 'Baloo 2';
  src: url('/assets/fonts/baloo2.woff2') format('woff2');
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Nunito Sans';
  src: url('/assets/fonts/nunito-sans.woff2') format('woff2');
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --peach: #FFD9BE;
  --peach-soft: #FFE9DA;
  --teal: #116B5E;
  --teal-deep: #0C5348;
  --sun: #F5B841;
  --sun-soft: #FBE3B0;
  --plum: #5C374C;
  --plum-deep: #46293A;
  --cloud: #FFF9F2;
  --white: #FFFFFF;
  --ink: #4A2C3D;            /* body plum-ink, 11.7:1 on cloud */
  --ink-soft: rgba(74, 44, 61, 0.78);

  --display: 'Baloo 2', 'Comic Sans MS', cursive, sans-serif;
  --body: 'Nunito Sans', 'Segoe UI', Arial, sans-serif;

  --fs-hero: clamp(2.6rem, 1.1rem + 6.6vw, 5.9rem);
  --fs-h2: clamp(1.9rem, 1.15rem + 3.4vw, 3.4rem);
  --fs-h3: clamp(1.25rem, 1.1rem + 0.8vw, 1.6rem);
  --fs-body: clamp(1rem, 0.96rem + 0.22vw, 1.12rem);

  --space-section: clamp(4rem, 2.6rem + 6vw, 8rem);
  --r-card: 20px;
  --shadow-paper: 0 4px 0 rgba(92, 55, 76, 0.10), 0 14px 30px -18px rgba(92, 55, 76, 0.35);
  --spring: cubic-bezier(0.34, 1.6, 0.5, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
[id] { scroll-margin-top: 92px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--body);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--ink);
  background: var(--cloud);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--sun); color: var(--plum-deep); }

:focus-visible {
  outline: 3px dashed var(--plum);
  outline-offset: 3px;
  border-radius: 6px;
}
.on-teal :focus-visible, .site-foot :focus-visible { outline-color: var(--sun); }

@supports (scrollbar-color: red blue) {
  html { scrollbar-color: var(--teal) var(--cloud); }
}

h1, h2, h3, h4 {
  font-family: var(--display);
  line-height: 1.06;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
  font-weight: 700;
  color: var(--plum);
  text-wrap: balance;
}
p { margin: 0 0 1em; }
a { color: var(--teal); text-decoration-thickness: 2px; text-underline-offset: 3px; }
a:hover { text-decoration-style: wavy; text-decoration-thickness: 1.5px; }
img, svg { max-width: 100%; height: auto; }
strong { font-weight: 800; }

.wrap {
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

/* ---------- skip link ---------- */
.skip {
  position: absolute; left: 1rem; top: -4rem; z-index: 300;
  background: var(--plum); color: var(--cloud);
  padding: 0.7rem 1.2rem; border-radius: 0 0 14px 14px;
  font-weight: 800; text-decoration: none;
  transition: top 0.18s var(--ease-out);
}
.skip:focus { top: 0; }

/* ---------- header ---------- */
.site-head {
  position: sticky; top: 0; z-index: 200;
  background: var(--cloud);
  box-shadow: 0 1px 0 rgba(92, 55, 76, 0.12), 0 8px 24px -18px rgba(92, 55, 76, 0.4);
}
.site-head__row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding-block: 0.7rem;
}
.logo {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--display); font-weight: 700;
  font-size: 1.18rem; line-height: 1.05;
  color: var(--plum); text-decoration: none;
}
.logo:hover { text-decoration: none; }
.logo svg { flex: none; }
.logo .lk { color: var(--teal); display: block; font-size: 0.72em; letter-spacing: 0.04em; }
.site-nav { display: flex; align-items: center; gap: clamp(0.7rem, 1.6vw, 1.35rem); }
.site-nav a { font-weight: 800; font-size: 0.95rem; text-decoration: none; }
.site-nav a:not(.btn) { color: var(--plum); }
.site-nav a:not(.btn):hover { color: var(--teal); text-decoration: underline; text-decoration-style: wavy; text-decoration-color: var(--sun); text-decoration-thickness: 2px; text-underline-offset: 5px; }
@media (max-width: 900px) { .nav-hide { display: none; } }
@media (max-width: 620px) {
  .nav-tight { display: none; }
  .logo span span.full { display: none; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--display); font-weight: 700; font-size: 1.02rem;
  padding: 0.72rem 1.5rem; border-radius: 999px;
  background: var(--teal); color: var(--white);
  text-decoration: none; border: 0; cursor: pointer;
  box-shadow: 0 4px 0 var(--teal-deep);
  transition: translate 0.15s var(--spring), box-shadow 0.15s var(--ease-out), background 0.15s;
}
.btn:hover { translate: 0 -2px; box-shadow: 0 6px 0 var(--teal-deep); background: #14796a; }
.btn:active { translate: 0 2px; box-shadow: 0 1px 0 var(--teal-deep); }
.btn--sun { background: var(--sun); color: var(--plum-deep); box-shadow: 0 4px 0 #C98F1B; }
.btn--sun:hover { background: #F7C55C; box-shadow: 0 6px 0 #C98F1B; }
.btn--sun:active { box-shadow: 0 1px 0 #C98F1B; }
.btn--ghost { background: var(--cloud); color: var(--plum); box-shadow: 0 4px 0 rgba(92,55,76,0.35), inset 0 0 0 2.5px var(--plum); }
.btn--ghost:hover { background: var(--white); box-shadow: 0 6px 0 rgba(92,55,76,0.35), inset 0 0 0 2.5px var(--plum); }
.btn--small { padding: 0.5rem 1.05rem; font-size: 0.92rem; }

/* ---------- sections & torn edges ---------- */
.section { padding-block: var(--space-section); position: relative; }
.section--peach { background: var(--peach); }
.section--cloud { background: var(--cloud); }
.section--teal { background: var(--teal); color: var(--cloud); }
.section--teal h2, .section--teal h3 { color: var(--cloud); }
.section--teal a { color: var(--sun-soft); }
.section--sun-soft { background: var(--sun-soft); }
.section--peach-soft { background: var(--peach-soft); }

.tear { display: block; line-height: 0; margin-top: -1px; }
.tear svg { display: block; width: 100%; height: clamp(30px, 5vw, 64px); }
.tear--flip svg { transform: scaleY(-1); }

.kicker {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-family: var(--display); font-weight: 700; font-size: 0.92rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  background: var(--white); color: var(--plum);
  border: 2.5px dashed var(--plum); border-radius: 999px;
  padding: 0.32rem 1rem; margin-bottom: 1.1rem;
  rotate: -1.5deg;
}
.kicker { transition: rotate 0.25s var(--spring); }
@media (hover: hover) { .kicker:hover { rotate: 0.5deg; } }
.kicker--sun { background: var(--sun); border-color: var(--plum-deep); color: var(--plum-deep); }
.kicker--cloudline { background: var(--cloud); }
.section--teal .kicker { background: var(--sun); color: var(--plum-deep); border-color: var(--plum-deep); }

.section-head { max-width: 720px; margin-bottom: clamp(2rem, 5vw, 3.4rem); position: relative; }
.section-head h2 { font-size: var(--fs-h2); }
.section-head p { font-size: clamp(1.02rem, 1rem + 0.3vw, 1.18rem); color: var(--ink-soft); max-width: 56ch; }
.section--teal .section-head p { color: rgba(255, 249, 242, 0.88); }
.accent { color: var(--teal); }
.section--teal .accent { color: var(--sun); }

/* squiggle under headline words */
.squig-word { position: relative; display: inline-block; }
.squig-word svg { position: absolute; left: 0; right: 0; bottom: -0.18em; width: 100%; height: 0.28em; }

/* ---------- reveal ---------- */
.rv { opacity: 0; translate: 0 26px; transition: opacity 0.6s var(--ease-out), translate 0.6s var(--ease-out); transition-delay: var(--d, 0s); }
.rv.in { opacity: 1; translate: 0 0; }
.no-io .rv, .rm .rv { opacity: 1; translate: 0 0; transition: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--peach);
  position: relative;
  overflow: clip;
  padding-block: clamp(3.4rem, 3rem + 5vw, 7rem) 0;
}
.hero__grid {
  display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center;
  padding-bottom: clamp(2.5rem, 6vw, 5rem);
}
@media (max-width: 880px) { .hero__grid { grid-template-columns: 1fr; } }

.hero__eyebrow {
  font-weight: 800; font-size: 0.95rem; letter-spacing: 0.02em;
  color: var(--plum); margin-bottom: 1rem;
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: var(--cloud); border-radius: 999px; padding: 0.4rem 1.05rem;
  box-shadow: var(--shadow-paper);
  rotate: -1deg;
}
.hero h1 {
  font-size: var(--fs-hero);
  font-weight: 800;
  margin-bottom: 0.45em;
  color: var(--plum-deep);
}
.hero h1 .h-teal { color: var(--teal); }
.hero__sub {
  font-size: clamp(1.05rem, 1rem + 0.4vw, 1.28rem);
  max-width: 46ch; color: var(--ink); margin-bottom: 1.6rem;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.85rem; align-items: center; }

.hero__art { position: relative; }
.hero__art svg { display: block; width: min(100%, 480px); margin-inline: auto; }
@media (max-width: 880px) { .hero__art svg { width: min(78%, 380px); } }

/* floating crayon doodles */
.doodle { position: absolute; pointer-events: none; z-index: 1; }
.doodle--sun { top: clamp(0.6rem, 3vw, 2.5rem); right: clamp(0.8rem, 5vw, 4rem); width: clamp(70px, 9vw, 120px); }
.doodle--kite { top: 16%; left: 55%; width: clamp(60px, 7vw, 96px); }
.doodle--blocks { bottom: 12%; left: clamp(0.4rem, 2vw, 2.4rem); width: clamp(64px, 7vw, 104px); }
@media (max-width: 1340px) { .doodle--blocks { display: none; } }
@media (max-width: 880px) { .doodle--kite { display: none; } }
@media (prefers-reduced-motion: no-preference) {
  .doodle--sun .rays { animation: sunspin 40s linear infinite; transform-origin: 50% 50%; }
  .doodle--kite { animation: floaty 7s ease-in-out infinite; }
  .hero-kid .k-arm-r { animation: wave 3.4s ease-in-out infinite; transform-origin: 78% 52%; }
}
@keyframes sunspin { to { transform: rotate(360deg); } }
@keyframes floaty { 0%, 100% { translate: 0 0; rotate: -3deg; } 50% { translate: 0 -14px; rotate: 4deg; } }
@keyframes wave { 0%, 100% { transform: rotate(0deg); } 50% { transform: rotate(-14deg); } }

/* hero paper hills strip */
.hero__hills { display: block; width: 100%; line-height: 0; margin-top: -6vw; position: relative; }
.hero__hills svg { display: block; width: 100%; height: auto; }

/* concept ribbon */
.concept-note {
  background: var(--plum);
  color: var(--cloud);
  text-align: center;
  font-size: 0.92rem; font-weight: 700;
  padding: 0.55rem 1rem;
}
.concept-note a { color: var(--sun-soft); }

/* ============================================================
   TIMELINE — the crayon walk (signature)
   ============================================================ */
.tl-body {
  position: relative;
  margin-top: clamp(1rem, 3vw, 2rem);
  padding-bottom: clamp(170px, 24vh, 280px);
}
.tl-svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
.tl-svg svg { width: 100%; height: 100%; display: block; }

.tl-rows {
  position: relative;
  display: grid;
  grid-template-rows: repeat(6, minmax(clamp(300px, 52vh, 460px), auto));
  z-index: 2;
}
.tl-row { display: flex; align-items: center; }
.tl-row--right { justify-content: flex-end; }
.tl-row--center { justify-content: flex-start; padding-left: clamp(0.5rem, 9%, 9rem); align-items: flex-start; padding-top: clamp(0.5rem, 4vh, 2.5rem); }

.tag {
  width: min(400px, 44%);
  background: var(--white);
  border-radius: var(--r-card);
  padding: 1.4rem 1.5rem 1.2rem;
  box-shadow: var(--shadow-paper);
  position: relative;
  rotate: var(--rot, -1.2deg);
}
.tl-row--right .tag { --rot: 1.3deg; }
.tl-row--center .tag { --rot: -0.8deg; }
.tag { transition: rotate 0.3s var(--spring); }
@media (max-width: 720px) {
  .tag { width: min(430px, 86%); }
  .tl-row, .tl-row--right, .tl-row--center { justify-content: center; padding-left: 0; }
  .tl-rows { grid-template-rows: repeat(6, minmax(clamp(280px, 46vh, 420px), auto)); }
}

/* tape strip on each tag */
.tag::before {
  content: "";
  position: absolute; top: -12px; left: 50%;
  width: 92px; height: 26px;
  translate: -50% 0; rotate: -2deg;
  background: rgba(245, 184, 65, 0.55);
  border-left: 2px dashed rgba(92, 55, 76, 0.25);
  border-right: 2px dashed rgba(92, 55, 76, 0.25);
  border-radius: 2px;
}
.tag__age {
  display: inline-block;
  font-family: var(--display); font-weight: 700; font-size: 0.88rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  background: var(--sun); color: var(--plum-deep);
  padding: 0.18rem 0.75rem; border-radius: 999px;
  margin-bottom: 0.6rem;
}
.tag h3 { font-size: var(--fs-h3); margin-bottom: 0.35em; }
.tag p { margin: 0; color: var(--ink-soft); font-size: 0.98rem; }
.tag__note {
  display: block; margin-top: 0.7rem; padding-top: 0.65rem;
  border-top: 2px dashed var(--peach);
  font-weight: 800; font-size: 0.88rem; color: var(--teal);
}

/* pop behaviour — only when armed (JS + motion OK) */
.tl-armed .tag { opacity: 0; scale: 0.68; rotate: calc(var(--rot, -1.2deg) - 4deg); transition: none; }
.tl-armed .tag.pop {
  opacity: 1; scale: 1; rotate: var(--rot, -1.2deg);
  transition: opacity 0.4s var(--ease-out), scale 0.55s var(--spring), rotate 0.55s var(--spring);
}
@media (hover: hover) {
  .tl-rows .tag:hover, .tl-armed .tl-rows .tag.pop:hover { rotate: 0deg; }
}

/* milestone pins (HTML, so they never stretch) */
.tl-pin {
  position: absolute; z-index: 1;
  width: 18px; height: 18px;
  margin: -9px 0 0 -9px;
  border-radius: 50%;
  background: var(--cloud);
  border: 4px solid var(--teal);
  box-shadow: 0 0 0 4px var(--cloud);
  transition: scale 0.4s var(--spring), background 0.3s;
}
.tl-pin.lit { background: var(--sun); scale: 1.35; }

/* the paper-doll walker */
.doll {
  position: absolute; left: 50%; top: 0;
  width: clamp(64px, 8vw, 104px);
  translate: -50% -86%;
  z-index: 3;
  pointer-events: none;
  transform: scale(var(--s, 1)) scaleX(var(--dir, 1));
  transform-origin: 50% 96%;
  will-change: left, top, transform;
}
.doll svg { display: block; width: 100%; height: auto; filter: drop-shadow(0 5px 6px rgba(92, 55, 76, 0.25)); }
@media (prefers-reduced-motion: no-preference) {
  .tl-armed .doll .doll-inner { animation: toddle 0.9s ease-in-out infinite; transform-origin: 50% 92%; }
}
@keyframes toddle { 0%, 100% { transform: rotate(-2.4deg); } 50% { transform: rotate(2.4deg); } }

/* sky doodles + schoolhouse in the walk field */
.tl-deco { position: absolute; pointer-events: none; z-index: 0; }
.tl-deco--cloud1 { top: 3.5%; right: 6%; width: clamp(70px, 8vw, 120px); }
.tl-deco--star1 { top: 20%; left: 10%; width: clamp(26px, 3vw, 42px); rotate: -10deg; }
.tl-deco--cloud2 { top: 52%; left: 5%; width: clamp(60px, 7vw, 104px); }
.tl-deco--star2 { top: 66%; right: 9%; width: clamp(22px, 2.6vw, 36px); rotate: 14deg; }
.tl-deco--school { bottom: -0.4%; left: 61%; width: clamp(110px, 13vw, 176px); }
@media (max-width: 720px) {
  .tl-deco--star1, .tl-deco--star2 { display: none; }
  .tl-deco--school { left: auto; right: 2%; width: 104px; }
}

.tl-start, .tl-finish {
  position: absolute; z-index: 2;
  font-family: var(--display); font-weight: 700;
  color: var(--teal); font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  rotate: -2deg;
}
.tl-start { top: -0.6rem; left: 50%; translate: -140% 0; }
.tl-finish { bottom: -0.4rem; left: 50%; translate: 30% 0; }
@media (max-width: 720px) { .tl-finish { left: 8%; translate: 0 0; } }

/* ============================================================
   PROGRAMS
   ============================================================ */
.prog-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.1rem, 2.6vw, 1.8rem);
}
@media (max-width: 760px) { .prog-grid { grid-template-columns: 1fr; } }

.prog {
  background: var(--cloud);
  border-radius: var(--r-card);
  padding: 1.7rem 1.7rem 1.5rem;
  box-shadow: var(--shadow-paper);
  position: relative;
  rotate: var(--rot, -0.6deg);
  transition: rotate 0.25s var(--spring), translate 0.25s var(--spring);
  display: flex; flex-direction: column;
}
.prog:nth-child(2) { --rot: 0.7deg; }
.prog:nth-child(3) { --rot: 0.5deg; }
.prog:nth-child(4) { --rot: -0.8deg; }
@media (hover: hover) { .prog:hover { rotate: 0deg; translate: 0 -5px; } }

.prog__top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 0.9rem; }
.prog__icon {
  width: 62px; height: 62px; flex: none;
  display: grid; place-items: center;
  background: var(--peach-soft); border-radius: 18px;
  rotate: -3deg;
  transition: rotate 0.25s var(--spring), scale 0.25s var(--spring);
}
@media (hover: hover) { .prog:hover .prog__icon { rotate: 4deg; scale: 1.08; } }
.prog__ages {
  font-family: var(--display); font-weight: 700; font-size: 0.88rem;
  background: var(--teal); color: var(--white);
  padding: 0.22rem 0.85rem; border-radius: 999px;
  letter-spacing: 0.03em;
}
.prog h3 { margin-bottom: 0.35em; }
.prog > p { color: var(--ink-soft); flex-grow: 1; }
.prog__meta {
  list-style: none; margin: 0.4rem 0 0; padding: 0.8rem 0 0;
  border-top: 2px dashed var(--peach);
  display: flex; flex-wrap: wrap; gap: 0.35rem 1.1rem;
  font-weight: 800; font-size: 0.88rem; color: var(--teal);
}

/* ============================================================
   COUNCIL — holding hands
   ============================================================ */
.council-stage { position: relative; margin-block: clamp(1.5rem, 4vw, 2.5rem); }
.council-grid {
  display: grid;
  grid-template-columns: 1fr minmax(110px, 190px) 1fr;
  align-items: center;
  gap: 0;
}
.council-hands { position: relative; z-index: 2; margin-inline: -18px; width: calc(100% + 36px); max-width: none; }
@media (max-width: 720px) {
  .council-grid { grid-template-columns: 1fr; }
  .council-hands { rotate: 90deg; margin: -14px auto; width: 110px; }
}
.council-card {
  background: var(--cloud);
  color: var(--plum);
  border-radius: var(--r-card);
  box-shadow: 0 6px 0 rgba(12, 83, 72, 0.55);
  padding: 1.6rem 1.6rem 1.4rem;
  text-align: center;
  rotate: -1deg;
}
.council-card + .council-card, .council-card--b { rotate: 1.2deg; }
.council-card .wordmark {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(1.3rem, 1rem + 1.6vw, 2rem);
  line-height: 1.08; color: var(--plum-deep);
  display: block; margin-bottom: 0.4rem;
}
.council-card .wordmark .wm-accent { color: var(--teal); }
.council-card p { margin: 0; font-size: 0.95rem; color: var(--ink-soft); }
.council-note { max-width: 62ch; }
.council-note p { color: rgba(255, 249, 242, 0.88); }

.goal-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.9rem, 2vw, 1.4rem);
  margin-top: clamp(1.6rem, 4vw, 2.6rem);
  list-style: none; padding: 0;
}
@media (max-width: 720px) { .goal-row { grid-template-columns: 1fr; max-width: 460px; } }
.goal-row li {
  background: var(--teal-deep);
  border: 2.5px dashed rgba(255, 249, 242, 0.45);
  border-radius: 16px;
  padding: 1.1rem 1.2rem;
  font-size: 0.95rem;
  color: rgba(255, 249, 242, 0.92);
}
.goal-row .big {
  display: block; font-family: var(--display); font-weight: 800;
  font-size: clamp(1.7rem, 1.3rem + 1.6vw, 2.4rem);
  color: var(--sun); line-height: 1.1;
}

/* ============================================================
   RESOURCES
   ============================================================ */
.res-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1rem, 2.4vw, 1.6rem); align-items: start; }
@media (max-width: 820px) { .res-grid { grid-template-columns: 1fr; } }

.res {
  background: var(--white);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-paper);
  overflow: clip;
}
.res summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; gap: 0.9rem;
  padding: 1.15rem 1.3rem;
  font-family: var(--display); font-weight: 700; font-size: 1.12rem;
  color: var(--plum);
}
.res summary::-webkit-details-marker { display: none; }
.res summary .res-ic {
  flex: none; width: 46px; height: 46px;
  display: grid; place-items: center;
  background: var(--sun-soft); border-radius: 13px;
}
.res summary .res-caret { margin-left: auto; flex: none; transition: rotate 0.3s var(--spring); }
.res[open] summary .res-caret { rotate: 90deg; }
.res summary:hover { background: var(--peach-soft); }
.res__body { padding: 0 1.3rem 1.3rem; }
.res__body ul, .res__body ol { margin: 0 0 0.6rem; padding-left: 1.2rem; }
.res__body li { margin-bottom: 0.4rem; }
.res__body li::marker { color: var(--teal); font-weight: 800; }
.res__body p:last-child { margin-bottom: 0; }

/* ============================================================
   ENROL
   ============================================================ */
.enrol-layout { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: clamp(1.6rem, 4vw, 3.4rem); align-items: start; }
@media (max-width: 880px) { .enrol-layout { grid-template-columns: 1fr; } }
.enrol-blurb h2 { font-size: var(--fs-h2); }
.enrol-blurb p { color: var(--ink-soft); max-width: 48ch; }
.enrol-blurb .doodle-arrow { margin-top: 0.4rem; }
@media (max-width: 880px) { .enrol-blurb .doodle-arrow { display: none; } }

.enrol-form {
  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow-paper);
  padding: clamp(1.4rem, 3vw, 2.2rem);
  position: relative;
  rotate: 0.5deg;
}
.enrol-form::before {
  content: "";
  position: absolute; top: -13px; left: 12%;
  width: 110px; height: 28px; rotate: -3deg;
  background: rgba(245, 184, 65, 0.55);
  border-left: 2px dashed rgba(92, 55, 76, 0.25);
  border-right: 2px dashed rgba(92, 55, 76, 0.25);
  border-radius: 2px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1.1rem; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.field { margin: 0 0 1.05rem; }
.field label { display: block; font-weight: 800; font-size: 0.92rem; margin-bottom: 0.3rem; color: var(--plum); }
.field .opt { font-weight: 600; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  width: 100%;
  font: inherit; color: var(--ink);
  background: var(--cloud);
  border: 2.5px solid var(--peach);
  border-radius: 13px;
  padding: 0.68rem 0.9rem;
  transition: border-color 0.15s, background 0.15s;
}
.field textarea { min-height: 104px; resize: vertical; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--sun); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--teal); background: var(--white);
  box-shadow: 0 0 0 3px rgba(17, 107, 94, 0.18);
}
.hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-note { font-size: 0.88rem; color: var(--ink-soft); margin: 0.9rem 0 0; }
.form-success {
  display: flex; gap: 0.8rem; align-items: flex-start;
  background: var(--sun-soft);
  border: 2.5px dashed var(--sun);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  margin-bottom: 1.2rem;
  font-size: 0.98rem;
}
.form-success svg { flex: none; margin-top: 0.15rem; }
.enrol-form .btn { width: 100%; justify-content: center; margin-top: 0.3rem; }

/* ============================================================
   PROSE (process & guide)
   ============================================================ */
.prose { max-width: 780px; }
.prose h2 { font-size: var(--fs-h2); }
.prose h3 { font-size: clamp(1.3rem, 1.1rem + 1vw, 1.7rem); margin-top: 2em; }
.prose h4 { font-size: 1.08rem; margin-top: 1.4em; }
.prose p, .prose li { color: var(--ink); }
.prose ul { padding-left: 1.25rem; }
.prose li { margin-bottom: 0.55rem; }
.prose li::marker { color: var(--teal); }
.prose code {
  font-family: ui-monospace, 'Cascadia Code', Menlo, Consolas, monospace;
  font-size: 0.88em;
  background: var(--peach-soft);
  border-radius: 6px;
  padding: 0.1em 0.4em;
  color: var(--plum-deep);
}
.callout {
  background: var(--white);
  border: 2.5px dashed var(--plum);
  border-radius: 16px;
  padding: 1.15rem 1.3rem;
  margin: 1.4rem 0 1.8rem;
  rotate: -0.4deg;
}
.callout p { margin: 0; }
.pass-log { list-style: none; padding: 0; }
.pass-log > li {
  background: var(--white);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-paper);
  padding: 1.3rem 1.5rem;
  margin-bottom: 1.1rem;
}
.pass-log > li:nth-child(odd) { rotate: -0.4deg; }
.pass-log > li:nth-child(even) { rotate: 0.4deg; }
.pass-log h4 { margin: 0 0 0.6em; color: var(--teal); }
.pass-log ul { margin: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-foot { background: var(--plum-deep); color: var(--cloud); padding-block: clamp(2.6rem, 5vw, 4rem) 1.6rem; }
.site-foot a { color: var(--cloud); text-decoration-color: rgba(255, 249, 242, 0.5); }
.site-foot a:hover { color: var(--sun); }
.foot-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.3fr) repeat(3, minmax(140px, 1fr));
  gap: clamp(1.4rem, 3.5vw, 2.6rem);
  padding-bottom: 2rem;
}
@media (max-width: 900px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .foot-grid { grid-template-columns: 1fr; } }
.foot-brand .logo { color: var(--cloud); }
.foot-brand .logo .lk { color: var(--sun); }
.foot-brand p { font-size: 0.95rem; color: rgba(255, 249, 242, 0.82); max-width: 34ch; margin-top: 0.8rem; }
.site-foot h4 { color: var(--sun); font-size: 1rem; margin-bottom: 0.7em; }
.site-foot ul { list-style: none; margin: 0; padding: 0; }
.site-foot li { margin-bottom: 0.45rem; font-size: 0.95rem; }
.foot-legal {
  border-top: 2px dashed rgba(255, 249, 242, 0.28);
  padding-top: 1.3rem;
  display: flex; flex-wrap: wrap; gap: 0.5rem 2rem; justify-content: space-between;
  font-size: 0.88rem; color: rgba(255, 249, 242, 0.78);
}
.foot-legal a { color: rgba(255, 249, 242, 0.92); }

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.12s !important;
  }
}

/* long-page perf */
.cv { content-visibility: auto; contain-intrinsic-size: auto 900px; }
