@font-face { font-family: "Fredoka"; src: url("/public/fonts/fredoka-500.ttf") format("truetype"); font-style: normal; font-weight: 500; font-display: swap; }
@font-face { font-family: "Fredoka"; src: url("/public/fonts/fredoka-600.ttf") format("truetype"); font-style: normal; font-weight: 600; font-display: swap; }
@font-face { font-family: "Fredoka"; src: url("/public/fonts/fredoka-700.ttf") format("truetype"); font-style: normal; font-weight: 700; font-display: swap; }
@font-face { font-family: "Nunito"; src: url("/public/fonts/nunito-400.ttf") format("truetype"); font-style: normal; font-weight: 400; font-display: swap; }
@font-face { font-family: "Nunito"; src: url("/public/fonts/nunito-600.ttf") format("truetype"); font-style: normal; font-weight: 600; font-display: swap; }
@font-face { font-family: "Nunito"; src: url("/public/fonts/nunito-700.ttf") format("truetype"); font-style: normal; font-weight: 700; font-display: swap; }
@font-face { font-family: "Nunito"; src: url("/public/fonts/nunito-800.ttf") format("truetype"); font-style: normal; font-weight: 800; font-display: swap; }

:root {
  --ink: #27325a;
  --ink-soft: #59627c;
  --forest: #4c57b6;
  --forest-deep: #2e3475;
  --paper: #fff9f0;
  --paper-deep: #f4eeff;
  --white: #ffffff;
  --coral: #ff7867;
  --coral-soft: #ffe0d7;
  --mint: #53d7be;
  --mint-soft: #d9f8f0;
  --blue: #5abaf5;
  --blue-soft: #ddf1ff;
  --mustard: #ffd166;
  --lilac: #b5a2ff;
  --pink: #ff9bcb;
  --line: #dfe2f0;
  --line-dark: rgba(255, 255, 255, 0.17);
  --shadow: 0 24px 70px rgba(46, 52, 117, 0.13);
  --shadow-small: 0 10px 30px rgba(46, 52, 117, 0.09);
  --radius-xl: 36px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --max-width: 1180px;
  --sidebar-width: 276px;
}

html[data-condition="trissomia21"] {
  --ink: #21364c;
  --ink-soft: #52677c;
  --forest: #2879bd;
  --forest-deep: #16476f;
  --paper: #fffaf0;
  --paper-deep: #eaf5ff;
  --coral: #f1c644;
  --coral-soft: #fff0b5;
  --mint: #54c3dc;
  --mint-soft: #dcf7fb;
  --blue: #68a9e8;
  --blue-soft: #dfedff;
  --mustard: #ff8a64;
  --lilac: #87b7e8;
  --pink: #efa6bc;
  --line: #d9e6ef;
  --shadow: 0 24px 70px rgba(22, 71, 111, .13);
  --shadow-small: 0 10px 30px rgba(22, 71, 111, .09);
}

html[data-condition="dislexia"] {
  --ink: #29433f;
  --ink-soft: #5b6d69;
  --forest: #197a70;
  --forest-deep: #0d4d48;
  --paper: #fffaf2;
  --paper-deep: #e7f5f1;
  --coral: #ef825a;
  --coral-soft: #ffe0d1;
  --mint: #69c7b1;
  --mint-soft: #daf5ec;
  --blue: #5eabd0;
  --blue-soft: #deeff7;
  --mustard: #f2c85e;
  --lilac: #9b9ae7;
  --pink: #e99bc2;
  --line: #dbe7e3;
  --shadow: 0 24px 70px rgba(13, 77, 72, .13);
  --shadow-small: 0 10px 30px rgba(13, 77, 72, .09);
}

html[data-condition="paralisiaCerebral"] {
  --ink: #263f38;
  --ink-soft: #5b6d66;
  --forest: #268556;
  --forest-deep: #14563c;
  --paper: #fffaf2;
  --paper-deep: #eaf7ee;
  --coral: #ff8c52;
  --coral-soft: #ffe2d1;
  --mint: #73cf83;
  --mint-soft: #def5e3;
  --blue: #4fa8de;
  --blue-soft: #deeffa;
  --mustard: #ffd166;
  --lilac: #9aa7ed;
  --pink: #ef9db8;
  --line: #dbe8df;
  --shadow: 0 24px 70px rgba(20, 86, 60, .13);
  --shadow-small: 0 10px 30px rgba(20, 86, 60, .09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-left: var(--sidebar-width);
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Nunito", Arial, sans-serif;
  line-height: 1.6;
}

body::selection {
  background: var(--mint);
  color: var(--forest-deep);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Fredoka", "Trebuchet MS", sans-serif;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(3.2rem, 6vw, 6.35rem);
  line-height: 0.94;
}

h2 {
  font-size: clamp(2.2rem, 4.2vw, 4.2rem);
  line-height: 1.02;
}

h3 {
  line-height: 1.25;
}

:focus-visible {
  outline: 3px solid var(--mustard);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: calc(var(--sidebar-width) + 16px);
  z-index: 1000;
  padding: 12px 16px;
  border-radius: 10px;
  background: var(--white);
  color: var(--forest);
  font-weight: 700;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 48px), var(--max-width));
  margin-inline: auto;
}

section[id] {
  scroll-margin-top: 26px;
}

.site-header {
  position: fixed;
  inset: 0 auto 0 0;
  width: var(--sidebar-width);
  z-index: 100;
  overflow: hidden;
  border-right: 1px solid rgba(76, 87, 182, .12);
  background:
    linear-gradient(165deg, rgba(255, 249, 240, .99) 0 17%, rgba(244, 238, 255, .98) 50%, rgba(217, 248, 240, .97) 100%);
  box-shadow: 14px 0 50px rgba(46, 52, 117, .11);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, box-shadow 180ms ease;
}

html[data-condition="trissomia21"] .site-header {
  background: linear-gradient(165deg, rgba(255,250,240,.99) 0 17%, rgba(234,245,255,.98) 50%, rgba(220,247,251,.97) 100%);
  box-shadow: 14px 0 50px rgba(22,71,111,.11);
}

html[data-condition="dislexia"] .site-header {
  background: linear-gradient(165deg, rgba(255,250,242,.99) 0 17%, rgba(231,245,241,.98) 50%, rgba(255,224,209,.9) 100%);
  box-shadow: 14px 0 50px rgba(13,77,72,.11);
}

html[data-condition="paralisiaCerebral"] .site-header {
  background: linear-gradient(165deg, rgba(255,250,242,.99) 0 17%, rgba(234,247,238,.98) 50%, rgba(222,239,250,.94) 100%);
  box-shadow: 14px 0 50px rgba(20,86,60,.11);
}

.site-header::before,
.site-header::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
}

.site-header::before {
  width: 180px;
  height: 180px;
  top: -96px;
  right: -82px;
  border: 28px solid rgba(255, 120, 103, .16);
  box-shadow: 0 0 0 22px rgba(255, 209, 102, .12);
}

.site-header::after {
  width: 205px;
  height: 205px;
  left: -112px;
  bottom: -88px;
  background: rgba(181, 162, 255, .22);
  box-shadow: 70px -50px 0 -34px rgba(83, 215, 190, .28);
}

.site-header.is-scrolled,
.site-header.is-open {
  box-shadow: 16px 0 55px rgba(46, 52, 117, .14);
  backdrop-filter: blur(16px);
}

.nav-shell {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 100%;
  padding: 28px 18px 22px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: none;
}

.site-header .brand {
  width: 100%;
  min-height: 88px;
  margin: 0 0 18px;
  padding: 13px 12px;
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: 20px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 12px 32px rgba(46, 52, 117, .09);
  backdrop-filter: blur(12px);
}

.brand > span:last-child {
  min-width: 0;
  flex: 1 1 auto;
  display: grid;
  line-height: 1.05;
}

.brand strong {
  display: block;
  color: var(--forest);
  font-family: "Fredoka", "Trebuchet MS", sans-serif;
  font-size: 1.02rem;
  line-height: .96;
  white-space: normal;
  text-wrap: balance;
  letter-spacing: -0.02em;
}

.brand small {
  display: block;
  min-height: 2.16em;
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 0.67rem;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brand-mark {
  position: relative;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 50% 50% 44% 56%;
  background: var(--forest);
  transform: rotate(-7deg);
}

.brand-mark::before,
.brand-mark::after,
.brand-mark span::before {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: var(--mint);
}

.brand-mark::before {
  width: 50%;
  height: 17.391%;
  transform: translate(-21.739%, -87.5%) rotate(32deg);
}

.brand-mark::after {
  width: 39.13%;
  height: 15.217%;
  transform: translate(33.333%, 85.714%) rotate(-30deg);
  background: var(--coral);
}

.brand-mark span::before {
  width: 15.217%;
  height: 15.217%;
  transform: translate(85.714%, -100%);
  background: var(--mustard);
}

.nav-label {
  margin: 0 10px -3px;
  color: var(--forest);
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.condition-switcher {
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, .76);
  border-radius: 20px;
  background: rgba(255, 255, 255, .58);
  box-shadow: 0 12px 30px rgba(46, 52, 117, .07);
}

.condition-switcher-mobile { display: none; }

.condition-switcher > span {
  display: block;
  margin: 0 4px 7px;
  color: var(--ink-soft);
  font-size: .61rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.condition-switcher > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
}

.condition-switcher a {
  min-height: 38px;
  display: grid;
  place-items: center;
  padding: 4px 8px;
  border: 1px solid transparent;
  border-radius: 11px;
  color: var(--ink-soft);
  font-size: .67rem;
  font-weight: 800;
  text-align: center;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.condition-switcher a:hover {
  background: rgba(255, 255, 255, .86);
  color: var(--forest-deep);
  transform: translateY(-1px);
}

.condition-switcher a.is-active {
  border-color: rgba(255, 255, 255, .38);
  background: linear-gradient(135deg, var(--forest-deep), var(--forest));
  color: var(--white);
  box-shadow: 0 8px 18px color-mix(in srgb, var(--forest) 23%, transparent);
}

.site-nav {
  display: grid;
  align-items: stretch;
  gap: 5px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 24px;
  background: rgba(255, 255, 255, .48);
  box-shadow: 0 18px 38px rgba(46, 52, 117, .08);
  backdrop-filter: blur(12px);
}

.site-nav > a:not(.nav-cta) {
  --nav-accent: var(--coral);
  --nav-accent-ring: rgba(255, 120, 103, .11);
  position: relative;
  padding: 11px 13px 11px 36px;
  border-radius: 14px;
  color: var(--ink-soft);
  font-size: 0.91rem;
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-nav > a:not(.nav-cta)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 15px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--nav-accent);
  box-shadow: 0 0 0 5px var(--nav-accent-ring);
  transform: translateY(-50%);
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.site-nav > a[href="#compreender"] { --nav-accent: var(--mustard); --nav-accent-ring: rgba(255, 209, 102, .14); }
.site-nav > a[href="#diagnostico"] { --nav-accent: var(--mint); --nav-accent-ring: rgba(83, 215, 190, .13); }
.site-nav > a[href="#todas-idades"] { --nav-accent: var(--blue); --nav-accent-ring: rgba(90, 186, 245, .13); }
.site-nav > a[href="#apoios"] { --nav-accent: var(--lilac); --nav-accent-ring: rgba(181, 162, 255, .14); }
.site-nav > a[href="#encontrar"] { --nav-accent: var(--pink); --nav-accent-ring: rgba(255, 155, 203, .13); }
.site-nav > a[href="#escola"] { --nav-accent: var(--coral); --nav-accent-ring: rgba(255, 120, 103, .11); }
.site-nav > a[href="#pais"] { --nav-accent: #38ad91; --nav-accent-ring: rgba(56, 173, 145, .14); }
.site-nav > a[href="#doacoes"] { --nav-accent: #f0a13a; --nav-accent-ring: rgba(240, 161, 58, .15); }

.site-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  inset: 50% auto auto -1px;
  width: 5px;
  height: 22px;
  border-radius: 999px;
  background: var(--nav-accent);
  opacity: 0;
  transform: translateY(-50%) scaleY(.35);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-nav > a:not(.nav-cta):hover {
  background: rgba(255, 255, 255, .82);
  color: var(--forest-deep);
  transform: translateX(3px);
}

.site-nav > a.is-active:not(.nav-cta) {
  background: linear-gradient(135deg, var(--forest-deep), var(--forest));
  color: var(--white);
  box-shadow: 0 10px 22px rgba(46, 52, 117, .23);
  transform: none;
}

.site-nav > a.is-active:not(.nav-cta)::before {
  background: var(--nav-accent);
  box-shadow: 0 0 0 5px rgba(255, 255, 255, .13);
  transform: translateY(-50%) scale(1.08);
}

.site-nav > a:hover::after,
.site-nav > a.is-active::after {
  opacity: 1;
  transform: translateY(-50%) scaleY(1);
}

.nav-cta,
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-cta {
  min-height: 44px;
  margin-top: 9px;
  background: linear-gradient(135deg, var(--coral), #ff987e);
  color: #31203c;
  box-shadow: 0 10px 22px rgba(255, 120, 103, .24);
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.nav-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: auto 0 0;
  padding: 14px 15px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  background: linear-gradient(135deg, var(--forest-deep), var(--forest));
  color: var(--white);
  box-shadow: 0 14px 30px rgba(46, 52, 117, .19);
  font-size: .69rem;
  font-weight: 800;
}
.nav-trust span { width: 8px; height: 8px; flex: 0 0 8px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 5px rgba(83,215,190,.14); }

.button-primary {
  background: var(--coral);
  color: #231713;
  box-shadow: 0 14px 28px rgba(233, 115, 94, 0.24);
}

.button-secondary {
  border-color: rgba(22, 63, 58, 0.3);
  background: rgba(255, 255, 255, 0.32);
  color: var(--forest);
}

.button-outline {
  border-color: var(--forest);
  background: transparent;
  color: var(--forest);
}

.button-white {
  border: 0;
  background: var(--white);
  color: var(--forest);
}

.nav-toggle {
  width: 46px;
  height: 46px;
  display: none;
  place-items: center;
  border: 1px solid rgba(22, 63, 58, 0.18);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
}

.nav-toggle-lines {
  width: 20px;
  height: 14px;
  position: relative;
  display: block;
}

.nav-toggle-lines i {
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--forest);
  transition: transform 180ms ease, top 180ms ease;
}

.nav-toggle-lines i:first-child { top: 3px; }
.nav-toggle-lines i:last-child { top: 10px; }
.site-header.is-open .nav-toggle-lines i:first-child { top: 7px; transform: rotate(45deg); }
.site-header.is-open .nav-toggle-lines i:last-child { top: 7px; transform: rotate(-45deg); }

.hero {
  position: relative;
  min-height: 860px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 95px 0;
  background:
    linear-gradient(120deg, rgba(255,255,255,.35), rgba(255,255,255,0) 50%),
    var(--paper-deep);
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 42%;
  height: 100%;
  background: var(--mint-soft);
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
}

.hero::after {
  content: "";
  position: absolute;
  left: -8vw;
  bottom: -180px;
  width: 430px;
  height: 330px;
  border-radius: 48% 52% 66% 34%;
  background: var(--coral-soft);
  transform: rotate(17deg);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.68fr);
  align-items: center;
  gap: 85px;
}

.hero-copy {
  max-width: 790px;
}

.eyebrow,
.section-kicker {
  margin-bottom: 22px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow > span {
  width: 27px;
  height: 2px;
  background: currentColor;
}

.section-kicker.light {
  color: var(--mint);
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 28px;
  color: var(--forest);
}

.hero h1 em {
  position: relative;
  z-index: 1;
  color: var(--coral);
  font-style: normal;
  white-space: nowrap;
}

.hero h1 em::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: -2%;
  right: -2%;
  bottom: 0.02em;
  height: 0.17em;
  border-radius: 999px;
  background: var(--coral-soft);
  transform: rotate(-2deg);
}

.hero-lead {
  max-width: 665px;
  margin-bottom: 34px;
  color: var(--ink-soft);
  font-size: 1.16rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-note {
  margin: 22px 0 0;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 600;
}

.trust-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 5px rgba(159, 214, 198, 0.25);
}

.calm-card {
  position: relative;
  min-height: 460px;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 54px 52px 78px;
  overflow: hidden;
  border-radius: 46% 46% 30% 42% / 38% 44% 50% 52%;
  background: var(--forest);
  color: var(--white);
  box-shadow: 35px 35px 0 rgba(255, 254, 250, 0.74);
  transform: rotate(1.5deg);
}

.calm-card::after {
  content: "";
  position: absolute;
  right: -45px;
  bottom: -60px;
  width: 185px;
  height: 185px;
  border: 32px solid var(--coral);
  border-radius: 50%;
  opacity: 0.85;
}

.calm-card-top,
.calm-card-bottom {
  position: relative;
  z-index: 1;
  padding: 0;
  transform: rotate(-1.5deg);
}

.calm-icon {
  display: block;
  height: 45px;
  color: var(--mint);
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 1;
}

.calm-card-top p {
  margin: 15px 0 0;
  font-family: "Fredoka", "Trebuchet MS", sans-serif;
  font-size: 2rem;
  line-height: 1.14;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.calm-card-bottom {
  padding-top: 26px;
}

.calm-card-bottom p {
  margin-bottom: 13px;
  color: rgba(255,255,255,.73);
  font-size: 0.93rem;
  text-wrap: pretty;
}

.calm-card-bottom span {
  display: block;
  color: var(--mustard);
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.04em;
}

html[data-condition="paralisiaCerebral"] .calm-card-top p {
  font-size: 1.72rem;
  line-height: 1.16;
}

.understand-section {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background:
    radial-gradient(circle at 8% 12%, color-mix(in srgb, var(--mint) 18%, transparent) 0 90px, transparent 91px),
    linear-gradient(145deg, var(--paper) 0 56%, var(--paper-deep) 56% 100%);
}

.understand-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .68fr);
  align-items: end;
  gap: 72px;
}

.understand-heading h2 {
  max-width: 760px;
  margin: 0;
  color: var(--forest);
}

.understand-heading > p {
  margin: 0 0 8px;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.topic-overview {
  margin-top: 58px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 18px;
}

.topic-definition {
  position: relative;
  min-height: 315px;
  padding: 40px;
  overflow: hidden;
  border-radius: 34px;
  background: var(--forest-deep);
  color: var(--white);
  box-shadow: var(--shadow-small);
}

.topic-definition::after {
  content: "";
  position: absolute;
  right: -55px;
  bottom: -70px;
  width: 190px;
  height: 190px;
  border: 28px solid color-mix(in srgb, var(--mint) 68%, transparent);
  border-radius: 50%;
}

.topic-card-label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-bottom: 26px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  color: var(--mint);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.topic-definition h3,
.topic-definition p {
  position: relative;
  z-index: 1;
  max-width: 540px;
}

.topic-definition h3 {
  margin: 0 0 18px;
  font-family: "Fredoka", "Trebuchet MS", sans-serif;
  font-size: clamp(1.65rem, 2.6vw, 2.35rem);
  line-height: 1.08;
  text-wrap: balance;
}

.topic-definition p {
  margin: 0;
  color: rgba(255,255,255,.76);
  font-size: 1rem;
}

.topic-fact-list {
  display: grid;
  gap: 18px;
}

.topic-fact-list article {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: start;
  gap: 18px;
  padding: 28px;
  border: 1px solid color-mix(in srgb, var(--line) 80%, transparent);
  border-radius: 26px;
  background: rgba(255,255,255,.76);
  box-shadow: var(--shadow-small);
}

.topic-fact-list article > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px 16px 16px 6px;
  background: var(--mint-soft);
  color: var(--forest-deep);
  font-size: .74rem;
  font-weight: 800;
}

.topic-fact-list h3 {
  margin: 2px 0 8px;
  color: var(--forest-deep);
  font-size: 1.05rem;
}

.topic-fact-list p {
  margin: 0;
  color: var(--ink-soft);
  font-size: .9rem;
}

.levels-heading {
  margin-top: 72px;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(280px, .65fr);
  align-items: end;
  gap: 64px;
}

.levels-heading h3 {
  margin: 0;
  color: var(--forest);
  font-family: "Fredoka", "Trebuchet MS", sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.08;
}

.levels-heading > p {
  margin: 0 0 5px;
  color: var(--ink-soft);
}

.level-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
}

.level-card {
  min-height: 265px;
  padding: 28px;
  border: 1px solid color-mix(in srgb, var(--line) 76%, transparent);
  border-radius: 25px;
  background: var(--white);
  box-shadow: var(--shadow-small);
}

.level-card:nth-child(3n + 1) { background: color-mix(in srgb, var(--blue-soft) 62%, var(--white)); }
.level-card:nth-child(3n + 2) { background: color-mix(in srgb, var(--mint-soft) 64%, var(--white)); }
.level-card:nth-child(3n + 3) { background: color-mix(in srgb, var(--coral-soft) 60%, var(--white)); }

.level-number {
  display: inline-flex;
  margin-bottom: 32px;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--white);
  color: var(--forest-deep);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  box-shadow: 0 5px 14px color-mix(in srgb, var(--forest) 10%, transparent);
}

.level-card h3 {
  margin: 0 0 12px;
  color: var(--forest-deep);
  font-size: 1.16rem;
  line-height: 1.25;
}

.level-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: .9rem;
}

.level-note {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding: 24px 28px;
  border: 1px solid color-mix(in srgb, var(--mustard) 55%, var(--line));
  border-radius: 22px;
  background: color-mix(in srgb, var(--mustard) 18%, var(--white));
}

.level-note > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--mustard);
  color: var(--forest-deep);
  font-family: Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
}

.level-note strong {
  display: block;
  margin: 1px 0 4px;
  color: var(--forest-deep);
}

.level-note p {
  margin: 0;
  color: var(--ink-soft);
  font-size: .9rem;
}

.level-note-links {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.level-note-links a {
  color: var(--forest-deep);
  font-size: .78rem;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, var(--forest) 38%, transparent);
  text-underline-offset: 4px;
}

.hero-orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(22, 63, 58, 0.11);
  border-radius: 50%;
}

.hero-orbit-one {
  top: 145px;
  right: 4vw;
  width: 520px;
  height: 520px;
}

.hero-orbit-two {
  top: 205px;
  right: 7vw;
  width: 410px;
  height: 410px;
}

.route-section,
.after-section,
.life-section,
.supports-section,
.school-section,
.faq-section {
  padding: 120px 0;
}

.section-intro {
  max-width: 720px;
}

.section-intro h2,
.diagnosis-heading h2,
.after-grid h2,
.school-copy h2,
.care-copy h2,
.faq-grid h2 {
  margin-bottom: 22px;
  color: var(--forest);
}

.section-intro > p:last-child,
.after-lead,
.school-copy > p,
.faq-grid > div > p:last-child {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.section-intro-center {
  margin-inline: auto;
  text-align: center;
}

.route-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.route-card {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(22, 63, 58, 0.07);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-small);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.route-card:hover {
  transform: translateY(-7px) rotate(-0.5deg);
  box-shadow: var(--shadow);
}

.route-coral { background: var(--coral-soft); }
.route-mint { background: var(--mint-soft); }
.route-blue { background: var(--blue-soft); }

.route-number {
  width: 49px;
  height: 49px;
  display: grid;
  place-items: center;
  margin-bottom: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.62);
  color: var(--forest);
  font-size: 0.8rem;
  font-weight: 700;
}

.route-label {
  margin-bottom: 9px;
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.route-card > strong {
  max-width: 280px;
  color: var(--forest);
  font-family: "Fredoka", "Trebuchet MS", sans-serif;
  font-size: 1.62rem;
  line-height: 1.15;
}

.route-link {
  margin-top: auto;
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 700;
}

.route-link b {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--forest);
  color: var(--white);
}

.life-section {
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.life-section::before {
  content: "";
  position: absolute;
  top: -135px;
  right: -95px;
  width: 330px;
  height: 330px;
  border: 58px solid var(--mustard);
  border-radius: 48% 52% 61% 39%;
  opacity: .28;
  transform: rotate(18deg);
}

.life-section .container { position: relative; }

.age-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.age-card {
  min-height: 285px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid rgba(46, 52, 117, .08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-small);
}

.age-child { background: var(--coral-soft); }
.age-teen { background: var(--blue-soft); }
.age-adult { background: var(--mint-soft); }

.age-card > span {
  align-self: flex-start;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,.7);
  color: var(--forest-deep);
  font-size: .72rem;
  font-weight: 900;
}

.age-card h3 {
  margin: 22px 0 10px;
  color: var(--forest-deep);
  font-family: "Fredoka", "Trebuchet MS", sans-serif;
  font-size: 1.65rem;
}

.age-card p { color: var(--ink-soft); font-size: .92rem; }

.age-card a {
  margin-top: auto;
  color: var(--forest);
  font-size: .8rem;
  font-weight: 900;
}

.transition-guides {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.transition-guides article {
  padding: 25px 27px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .78);
  box-shadow: var(--shadow-small);
}

.transition-guides article:nth-child(2) { background: color-mix(in srgb, var(--mint-soft) 58%, white); }
.transition-guides article > span,
.leisure-access-note > div > span,
.regional-school-resource > div > span {
  display: block;
  margin-bottom: 8px;
  color: var(--forest);
  font-size: .67rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.transition-guides h3 {
  margin: 0 0 8px;
  color: var(--forest-deep);
  font-family: "Fredoka", "Trebuchet MS", sans-serif;
  font-size: 1.35rem;
}

.transition-guides p { margin: 0 0 14px; color: var(--ink-soft); font-size: .84rem; }
.transition-guides a,
.leisure-access-note a,
.regional-school-resource a {
  color: var(--forest);
  font-size: .78rem;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, var(--coral) 72%, transparent);
  text-underline-offset: 4px;
}

.life-panel {
  margin-top: 30px;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--paper-deep);
}

.activities-panel {
  background: linear-gradient(135deg, var(--paper), var(--blue-soft));
}

.life-panel-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .8fr);
  align-items: end;
  gap: 50px;
  margin-bottom: 26px;
}

.life-panel-heading .section-kicker { margin-bottom: 10px; }

.life-panel-heading h3 {
  margin: 0;
  color: var(--forest-deep);
  font-family: "Fredoka", "Trebuchet MS", sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.75rem);
  line-height: 1.05;
}

.life-panel-heading > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: .86rem;
}

.opportunity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
}

.opportunity-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  padding: 23px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--lilac);
  border-radius: var(--radius-md);
  background: var(--white);
}

.opportunity-card:nth-child(3n+2) { border-top-color: var(--coral); }
.opportunity-card:nth-child(3n) { border-top-color: var(--mint); }

.opportunity-tag {
  color: var(--forest);
  font-size: .65rem;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.opportunity-card h4 {
  margin: 14px 0 8px;
  color: var(--forest-deep);
  font-family: "Fredoka", "Trebuchet MS", sans-serif;
  font-size: 1.15rem;
  line-height: 1.2;
}

.opportunity-card p {
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-size: .79rem;
}

.opportunity-card a {
  margin-top: auto;
  color: var(--forest);
  font-size: .73rem;
  font-weight: 900;
}

.leisure-access-note,
.regional-school-resource {
  margin-top: 18px;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .82);
}

.leisure-access-note strong,
.regional-school-resource strong {
  display: block;
  color: var(--forest-deep);
  font-family: "Fredoka", "Trebuchet MS", sans-serif;
  font-size: 1.15rem;
}

.leisure-access-note p,
.regional-school-resource p { max-width: 780px; margin: 6px 0 0; color: var(--ink-soft); font-size: .82rem; }
.leisure-access-note > a,
.regional-school-resource > a { flex: 0 0 auto; }

.parking-card-guide {
  margin-top: 20px;
  padding: 26px;
  border: 1px solid rgba(79, 88, 185, .18);
  border-radius: 26px;
  background:
    radial-gradient(circle at 92% 8%, rgba(91, 209, 191, .22), transparent 30%),
    linear-gradient(135deg, rgba(238, 241, 255, .98), rgba(255, 255, 255, .96));
  box-shadow: 0 18px 42px rgba(46, 52, 117, .09);
}

.parking-card-heading {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  align-items: end;
  gap: 28px;
}

.parking-card-heading span {
  color: var(--blue);
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.parking-card-heading h4 {
  margin: 6px 0 0;
  color: var(--forest-deep);
  font-family: "Fredoka", "Trebuchet MS", sans-serif;
  font-size: clamp(1.55rem, 2.5vw, 2.2rem);
  line-height: 1.08;
}

.parking-card-heading > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: .88rem;
}

.parking-card-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.parking-card-facts article {
  padding: 17px 18px;
  border: 1px solid rgba(79, 88, 185, .12);
  border-radius: 17px;
  background: rgba(255, 255, 255, .78);
}

.parking-card-facts strong,
.parking-card-facts article > span {
  display: block;
  margin-bottom: 6px;
  color: var(--forest-deep);
  font-size: .84rem;
}

.parking-card-facts p {
  margin: 0;
  color: var(--ink-soft);
  font-size: .76rem;
  line-height: 1.55;
}

.parking-law-details {
  margin-top: 12px;
  padding: 15px 18px;
  border: 1px solid rgba(79, 88, 185, .14);
  border-radius: 16px;
  background: rgba(255, 255, 255, .62);
}

.parking-law-details summary {
  color: var(--forest-deep);
  font-size: .8rem;
  font-weight: 900;
  cursor: pointer;
}

.parking-law-details p {
  margin: 10px 0 0;
  color: var(--ink-soft);
  font-size: .76rem;
}

.parking-law-details ul { margin: 9px 0; padding-left: 20px; color: var(--ink-soft); font-size: .76rem; }

.parking-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 16px;
}

.parking-card-actions a {
  padding: 10px 14px;
  border: 1px solid rgba(79, 88, 185, .24);
  border-radius: 999px;
  background: rgba(255, 255, 255, .82);
  color: var(--blue);
  font-size: .72rem;
  font-weight: 900;
  text-decoration: none;
}

.diagnosis-section {
  padding: 125px 0;
  background: var(--forest);
  color: var(--white);
}

.diagnosis-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
}

.diagnosis-heading {
  position: sticky;
  top: 130px;
  align-self: start;
}

.diagnosis-heading h2 {
  color: var(--white);
}

.diagnosis-heading > p:not(.section-kicker) {
  color: rgba(255,255,255,.68);
  font-size: 1.08rem;
}

.text-link {
  display: inline-flex;
  gap: 8px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  color: var(--forest);
  font-weight: 700;
}

.text-link.light {
  margin-top: 13px;
  color: var(--mint);
}

.step-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.step-list > li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
  padding: 0 0 42px;
}

.step-list > li:not(:last-child) > div {
  padding-bottom: 42px;
  border-bottom: 1px solid var(--line-dark);
}

.step-index {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50%;
  color: var(--mint);
  font-family: "Fredoka", "Trebuchet MS", sans-serif;
  font-size: 1.35rem;
}

.step-list h3 {
  margin: 4px 0 10px;
  font-family: "Fredoka", "Trebuchet MS", sans-serif;
  font-size: 1.55rem;
}

.step-list p {
  margin-bottom: 14px;
  color: rgba(255,255,255,.68);
}

.mini-action {
  display: inline-flex;
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(159,214,198,.7);
  background: transparent;
  color: var(--mint);
  font-size: .86rem;
  font-weight: 700;
  cursor: pointer;
}

.notes-helper {
  margin-top: 18px;
  padding: 18px;
  display: grid;
  gap: 10px;
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  background: rgba(255,255,255,.055);
}

.notes-helper[hidden] { display: none; }

.notes-helper label {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: rgba(255,255,255,.78);
  font-size: .86rem;
}

.notes-helper input {
  margin-top: 4px;
  accent-color: var(--coral);
}

.after-section {
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.after-section::before {
  content: "";
  position: absolute;
  top: -170px;
  right: -130px;
  width: 430px;
  height: 430px;
  border: 70px solid var(--blue-soft);
  border-radius: 50%;
}

.after-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 90px;
}

.after-lead {
  max-width: 570px;
}

.team-wheel {
  position: relative;
  width: min(100%, 470px);
  aspect-ratio: 1;
  margin-inline: auto;
  border: 1px dashed rgba(22,63,58,.3);
  border-radius: 50%;
}

.team-wheel::before {
  content: "";
  position: absolute;
  inset: 16%;
  border: 1px solid rgba(22,63,58,.12);
  border-radius: 50%;
}

.team-center {
  position: absolute;
  inset: 31%;
  display: grid;
  place-content: center;
  text-align: center;
  border-radius: 43% 57% 47% 53%;
  background: var(--coral);
  color: #231713;
  transform: rotate(-5deg);
}

.team-center strong,
.team-center span {
  transform: rotate(5deg);
}

.team-center strong {
  font-family: "Fredoka", "Trebuchet MS", sans-serif;
  font-size: 1.42rem;
}

.team-center span { font-size: .77rem; }

.team-pill {
  position: absolute;
  min-width: 112px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--paper);
  box-shadow: var(--shadow-small);
  color: var(--forest);
  font-size: .84rem;
  font-weight: 700;
  text-align: center;
}

.team-pill-one { top: 3%; left: 35%; }
.team-pill-two { top: 43%; right: -5%; background: var(--mint-soft); }
.team-pill-three { bottom: 5%; left: 31%; background: var(--blue-soft); }
.team-pill-four { top: 43%; left: -5%; background: var(--coral-soft); }

.priority-strip {
  position: relative;
  margin-top: 85px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.priority-strip article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  padding: 30px;
}

.priority-strip article:not(:last-child) {
  border-right: 1px solid var(--line);
}

.priority-strip article > span {
  color: var(--coral);
  font-size: .75rem;
  font-weight: 700;
}

.priority-strip h3 { margin-bottom: 8px; color: var(--forest); }
.priority-strip p { margin: 0; color: var(--ink-soft); font-size: .88rem; }

.supports-section {
  background: var(--paper-deep);
}

.section-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 45px;
}

.section-heading-row .button {
  flex: none;
  margin-bottom: 10px;
}

.support-grid {
  margin-top: 52px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.support-card {
  align-self: start;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 8px 25px rgba(22,63,58,.035);
}

.support-card:nth-child(4n+1) { border-top: 4px solid var(--coral); }
.support-card:nth-child(4n+2) { border-top: 4px solid var(--blue); }
.support-card:nth-child(4n+3) { border-top: 4px solid var(--mint); }
.support-card:nth-child(4n) { border-top: 4px solid var(--mustard); }

.support-card summary {
  min-height: 118px;
  display: grid;
  grid-template-columns: 112px 1fr 28px;
  align-items: center;
  gap: 18px;
  padding: 24px;
  list-style: none;
  cursor: pointer;
}

.support-card summary::-webkit-details-marker,
.faq-list summary::-webkit-details-marker {
  display: none;
}

.support-tag {
  display: inline-flex;
  justify-self: start;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--mint-soft);
  color: var(--forest);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.support-card:nth-child(3n+1) .support-tag { background: var(--coral-soft); }
.support-card:nth-child(3n+2) .support-tag { background: var(--blue-soft); }

.support-card summary strong {
  color: var(--forest);
  font-family: "Fredoka", "Trebuchet MS", sans-serif;
  font-size: 1.3rem;
  line-height: 1.2;
}

.support-card summary i,
.faq-list summary i {
  position: relative;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--paper-deep);
}

.support-card summary i::before,
.support-card summary i::after,
.faq-list summary i::before,
.faq-list summary i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1.5px;
  background: var(--forest);
  transform: translate(-50%, -50%);
}

.support-card summary i::after,
.faq-list summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 180ms ease;
}

.support-card[open] summary i::after,
.faq-list details[open] summary i::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.support-body {
  padding: 0 24px 27px 154px;
  color: var(--ink-soft);
  font-size: .91rem;
}

.support-body h3 {
  margin: 22px 0 8px;
  color: var(--forest);
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.support-body ol {
  margin: 0 0 20px;
  padding-left: 20px;
}

.support-body a {
  display: inline-flex;
  gap: 6px;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--coral);
  color: var(--forest);
  font-weight: 700;
}

.support-callout {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 25px 28px;
  border-radius: var(--radius-md);
  background: var(--forest);
  color: var(--white);
}

.support-callout > div {
  display: flex;
  align-items: center;
  gap: 18px;
}

.support-callout p { margin: 0; color: rgba(255,255,255,.76); }
.support-callout strong { color: var(--white); }
.support-callout > a { flex: none; color: var(--mint); font-weight: 700; }

.callout-mark {
  width: 43px;
  height: 43px;
  flex: none;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50%;
  color: var(--mustard);
  font-family: "Fredoka", "Trebuchet MS", sans-serif;
  font-size: 1.35rem;
}

.finder-section {
  padding: 120px 0;
  background:
    radial-gradient(circle at 8% 14%, rgba(255, 209, 102, .72) 0 70px, transparent 72px),
    radial-gradient(circle at 91% 8%, rgba(255, 155, 203, .42) 0 115px, transparent 118px),
    linear-gradient(145deg, var(--blue-soft), var(--paper-deep) 58%, var(--mint-soft));
  color: var(--ink);
}

.finder-heading h2 { color: var(--forest-deep); }
.finder-heading .section-intro > p:last-child { color: var(--ink-soft); }
.finder-heading .section-kicker.light { color: var(--forest); }
.finder-heading .button-white {
  background: var(--forest);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(76, 87, 182, .22);
}

.directory-note {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 24px;
  padding: 20px 24px;
  border: 1px solid rgba(76, 87, 182, .16);
  border-left: 5px solid var(--mustard);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.76);
  box-shadow: var(--shadow-small);
}

.directory-note strong { color: var(--forest-deep); }
.directory-note p { margin: 0; color: var(--ink-soft); font-size: .83rem; }

.directory-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0 12px;
  padding: 9px 14px;
  border: 1px solid rgba(36, 106, 93, .2);
  border-radius: 999px;
  background: rgba(255, 255, 255, .78);
  color: var(--forest-deep);
  font-size: .78rem;
}

.directory-live-dot {
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  border-radius: 50%;
  background: var(--mint-deep);
  box-shadow: 0 0 0 5px rgba(74, 176, 143, .16);
}

.directory-status[data-verification-state="checking"] .directory-live-dot {
  background: var(--mustard);
  box-shadow: 0 0 0 5px rgba(244, 190, 74, .18);
  animation: directory-status-pulse 1.6s ease-in-out infinite;
}

.directory-status[data-verification-state="attention"] .directory-live-dot {
  background: var(--coral);
  box-shadow: 0 0 0 5px rgba(255, 119, 103, .16);
}

.directory-status[data-verification-state="unavailable"] .directory-live-dot {
  background: #98a0b4;
  box-shadow: 0 0 0 5px rgba(152, 160, 180, .16);
}

@keyframes directory-status-pulse {
  50% { transform: scale(.72); opacity: .62; }
}

.source-library {
  display: grid;
  grid-template-columns: minmax(240px, .75fr) minmax(0, 1.25fr);
  gap: 20px;
  align-items: center;
  margin: 16px 0 26px;
  padding: 22px;
  border: 1px solid rgba(48, 38, 31, .11);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 228, 127, .88), rgba(255, 247, 211, .94));
  box-shadow: 0 16px 34px rgba(83, 65, 40, .08);
}

.source-library p { margin: 0; color: var(--ink-soft); font-size: .84rem; }
.source-library .source-library-label { margin-bottom: 5px; color: var(--forest-deep); font-family: "Fredoka", sans-serif; font-weight: 700; font-size: 1rem; }
.source-library-links { display: flex; flex-wrap: wrap; gap: 8px; }
.source-library-links a {
  padding: 8px 12px;
  border: 1px solid rgba(36, 106, 93, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .82);
  color: var(--forest-deep);
  font-size: .76rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease;
}
.source-library-links a:hover { transform: translateY(-2px); background: #fff; }

.map-tabs {
  margin-top: 55px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid var(--line);
  border-bottom: 0;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: rgba(255,255,255,.82);
}

.map-tabs button {
  min-width: 0;
  flex: 1 1 0;
  display: grid;
  grid-template-columns: 12px auto;
  align-items: center;
  justify-content: start;
  gap: 2px 10px;
  padding: 18px 22px;
  border: 0;
  border-bottom: 3px solid transparent;
  background: transparent;
  color: var(--ink-soft);
  text-align: left;
  cursor: pointer;
}

.map-tabs button[aria-selected="true"] {
  border-bottom-color: var(--coral);
  background: var(--white);
  color: var(--forest-deep);
}

.map-tabs small {
  grid-column: 2;
  color: inherit;
  font-size: .7rem;
}

.tab-dot {
  grid-row: 1 / span 2;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.tab-dot-coral { background: var(--coral); }
.tab-dot-mint { background: var(--mint); }
.tab-dot-mustard { background: var(--mustard); }
.tab-dot-blue { background: var(--blue); }

.map-panel {
  min-height: 620px;
  display: grid;
  grid-template-columns: 370px 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 30px 70px rgba(46, 52, 117, .15);
}

.map-panel[hidden] { display: none; }

.map-sidebar {
  min-height: 620px;
  padding: 24px 20px 20px;
  overflow: hidden;
  border-right: 1px solid var(--line);
}

.activity-map-note {
  display: grid;
  gap: 2px;
  margin: -4px 0 14px;
  padding: 11px 12px;
  border: 1px solid rgba(255, 209, 102, .58);
  border-radius: 12px;
  background: rgba(255, 209, 102, .18);
  color: var(--ink-soft);
  font-size: .66rem;
  line-height: 1.4;
}

.activity-map-note strong { color: var(--forest-deep); font-size: .72rem; }
#activities-panel .resource-list { max-height: 358px; }

.parking-map-note {
  display: grid;
  gap: 3px;
  margin: -4px 0 14px;
  padding: 12px;
  border: 1px solid rgba(79, 88, 185, .22);
  border-radius: 13px;
  background: rgba(79, 88, 185, .08);
  color: var(--ink-soft);
  font-size: .68rem;
  line-height: 1.45;
}

.parking-map-note strong { color: var(--blue); font-size: .75rem; }

.parking-search-fields {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(105px, .7fr);
  gap: 8px;
  align-items: end;
}

.parking-place-field {
  display: grid;
  gap: 6px;
  color: var(--ink-soft);
  font-size: .69rem;
  font-weight: 900;
}

.parking-place-field select {
  width: 100%;
  min-height: 45px;
  padding: 0 34px 0 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  font-size: .78rem;
  font-weight: 800;
}

.parking-place-field select:focus-visible {
  outline: 3px solid rgba(82, 178, 230, .3);
  outline-offset: 2px;
  border-color: var(--blue);
}

.parking-search-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  margin-top: 10px;
}

.parking-search-actions button {
  min-height: 42px;
  padding: 8px 10px;
  border: 1px solid var(--blue);
  border-radius: 12px;
  background: var(--blue);
  color: var(--white);
  font: inherit;
  font-size: .68rem;
  font-weight: 900;
  cursor: pointer;
}

.parking-search-actions button + button {
  background: var(--white);
  color: var(--blue);
}

.parking-search-actions button:disabled { opacity: .55; cursor: wait; }

.parking-search-status {
  min-height: 36px;
  margin: 10px 0;
  color: var(--ink-soft);
  font-size: .69rem;
  line-height: 1.45;
}

.parking-legend {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5px;
  margin: 0 0 10px;
  padding: 11px 12px;
  border: 1px solid rgba(82, 178, 230, .24);
  border-radius: 12px;
  background: rgba(82, 178, 230, .07);
  color: var(--ink-soft);
  font-size: .64rem;
  line-height: 1.35;
}

.parking-legend strong { margin-bottom: 2px; color: var(--forest-deep); font-size: .69rem; }
.parking-legend span { display: flex; align-items: center; gap: 7px; }
.parking-legend a { margin-top: 3px; color: var(--blue); font-weight: 900; }

.parking-legend-dot {
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 1px rgba(79, 88, 185, .3);
}

.parking-legend-dot.is-park { border-radius: 3px; background: var(--mint); }
.parking-legend-dot.is-street { width: 11px; height: 4px; flex-basis: 11px; border: 0; border-radius: 999px; background: var(--coral); box-shadow: none; }
.parking-legend-dot.is-search { background: var(--white); box-shadow: 0 0 0 3px rgba(82, 178, 230, .22); }

.parking-result-list {
  max-height: 245px;
  display: grid;
  gap: 8px;
  overflow-y: auto;
  padding-right: 5px;
  scrollbar-color: var(--line) transparent;
  scrollbar-width: thin;
}

.parking-result-card {
  display: grid;
  grid-template-columns: 31px minmax(0, 1fr);
  gap: 11px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--white);
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.parking-result-card:hover,
.parking-result-card.is-active {
  border-color: var(--blue);
  background: var(--blue-soft);
  transform: translateY(-1px);
}

.parking-result-marker {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border-radius: 50% 50% 50% 6px;
  background: var(--blue);
  color: var(--white);
  font-size: .66rem;
  font-weight: 900;
  transform: rotate(-45deg);
}

.parking-result-marker span { transform: rotate(45deg); }
.parking-result-card h3 { margin: 0 0 3px; color: var(--forest-deep); font-size: .83rem; }
.parking-result-card p { margin: 0; color: var(--ink-soft); font-size: .68rem; line-height: 1.42; }
.parking-result-details { margin-top: 6px !important; color: var(--ink) !important; }

.parking-result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 10px;
  margin-top: 9px;
}

.parking-result-actions button,
.parking-result-actions a {
  padding: 0 0 2px;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--blue);
  font: inherit;
  font-size: .63rem;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.parking-empty {
  padding: 24px 16px;
  border: 1px dashed var(--line);
  border-radius: 12px;
  color: var(--ink-soft);
  font-size: .76rem;
  text-align: center;
}

.parking-loading {
  padding: 22px 16px;
  display: grid;
  grid-template-columns: repeat(3, 8px);
  justify-content: center;
  gap: 6px;
  border: 1px dashed var(--line);
  border-radius: 12px;
  color: var(--ink-soft);
  text-align: center;
}

.parking-loading span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  animation: parking-pulse 1s ease-in-out infinite alternate;
}

.parking-loading span:nth-child(2) { animation-delay: .15s; }
.parking-loading span:nth-child(3) { animation-delay: .3s; }
.parking-loading p { grid-column: 1 / -1; margin: 6px 0 0; font-size: .72rem; }
@keyframes parking-pulse { to { opacity: .28; transform: translateY(-3px); } }

.parking-data-help {
  margin-top: 10px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink-soft);
  font-size: .67rem;
}

.parking-data-help summary { color: var(--forest-deep); font-weight: 900; cursor: pointer; }
.parking-data-help p { margin: 8px 0; line-height: 1.45; }
.parking-data-help a { color: var(--blue); font-weight: 900; }

.search-field {
  height: 48px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
}

.search-field input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: .86rem;
}

.search-field span:last-child {
  color: var(--ink-soft);
  font-size: 1.25rem;
}

.filter-select-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 8px;
  margin: 14px 0 10px;
}

.filter-select-row label {
  min-width: 0;
  display: grid;
  gap: 5px;
  color: var(--ink-soft);
  font-size: .68rem;
  font-weight: 800;
}

.filter-select-row select {
  width: 100%;
  min-width: 0;
  min-height: 42px;
  padding: 0 30px 0 11px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-size: .73rem;
  font-weight: 800;
  cursor: pointer;
}

.filter-select-row select:focus {
  border-color: var(--forest);
}

.result-count {
  margin: 10px 0;
  color: var(--ink-soft);
  font-size: .72rem;
}

.resource-list {
  max-height: 447px;
  display: grid;
  gap: 8px;
  overflow-y: auto;
  padding-right: 5px;
  scrollbar-color: var(--line) transparent;
  scrollbar-width: thin;
}

.resource-card {
  width: 100%;
  display: grid;
  grid-template-columns: 31px 1fr;
  gap: 11px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  color: var(--ink);
  text-align: left;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.resource-card:hover,
.resource-card.is-active {
  border-color: var(--forest);
  background: var(--mint-soft);
  transform: translateY(-1px);
}

.resource-card-marker {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border-radius: 50% 50% 50% 6px;
  background: var(--coral);
  color: #231713;
  font-size: .67rem;
  font-weight: 700;
  transform: rotate(-45deg);
}

.resource-card-marker span { transform: rotate(45deg); }
.resource-card.school .resource-card-marker { background: var(--mint); }
.resource-card.activity .resource-card-marker { background: var(--mustard); }
.resource-card.activity:hover,
.resource-card.activity.is-active { background: #fff7d9; border-color: #e0ad32; }
.resource-card-content { min-width: 0; }
.resource-card h3 { margin: 0 0 4px; color: var(--forest-deep); font-size: .91rem; }
.resource-card p { margin: 0; color: var(--ink-soft); font-size: .72rem; line-height: 1.45; }
.resource-address { margin-top: 5px !important; }
.resource-description { margin-top: 8px !important; color: var(--ink) !important; }
.resource-detail { margin-top: 6px !important; }
.resource-detail strong { color: var(--forest-deep); }
.resource-verified,
.resource-distance {
  display: block;
  margin-top: 7px;
  color: var(--forest);
  font-size: .64rem;
  font-weight: 800;
}
.resource-distance { color: var(--coral); }

.resource-card-actions {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 10px;
}

.resource-card-actions button,
.resource-card-link {
  padding: 0 0 2px;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--forest);
  font: inherit;
  font-size: .65rem;
  font-weight: 800;
  cursor: pointer;
}

.resource-card-actions button { color: var(--coral); }

.empty-result {
  padding: 30px 18px;
  border: 1px dashed var(--line);
  border-radius: 12px;
  color: var(--ink-soft);
  font-size: .85rem;
  text-align: center;
}

.map-wrap {
  position: relative;
  min-width: 0;
  background: var(--blue-soft);
}

.map-canvas {
  width: 100%;
  height: 620px;
  z-index: 1;
}

.map-fallback {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-content: center;
  gap: 6px;
  padding: 32px;
  background: linear-gradient(135deg, var(--blue-soft), var(--mint-soft));
  color: var(--ink-soft);
  text-align: center;
}

.map-fallback[hidden] { display: none; }
.map-fallback strong { color: var(--forest-deep); font-size: 1.1rem; }
.map-fallback span { max-width: 360px; font-size: .83rem; }

.map-consent {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 10px;
  padding: 40px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 209, 102, .55), transparent 30%),
    linear-gradient(135deg, var(--blue-soft), var(--mint-soft));
  color: var(--ink-soft);
  text-align: center;
}

.map-consent[hidden] { display: none; }
.map-consent > span { width: 62px; height: 62px; display: grid; place-items: center; border-radius: 22px; background: var(--white); color: var(--forest); font-family: "Fredoka", sans-serif; font-size: 2rem; box-shadow: var(--shadow-small); }
.map-consent strong { color: var(--forest-deep); font-family: "Fredoka", sans-serif; font-size: 1.35rem; }
.map-consent p { max-width: 440px; margin: 0; font-size: .84rem; }
.map-consent button { margin-top: 5px; padding: 10px 15px; border: 1px solid var(--forest); border-radius: 999px; background: var(--white); color: var(--forest); font-size: .78rem; font-weight: 800; cursor: pointer; }

.map-source {
  position: absolute;
  z-index: 2;
  right: 12px;
  bottom: 10px;
  max-width: calc(100% - 24px);
  margin: 0;
  padding: 6px 9px;
  border-radius: 7px;
  background: rgba(255,254,250,.88);
  color: var(--ink-soft);
  font-size: .6rem;
  backdrop-filter: blur(6px);
}

.leaflet-control-attribution { font-size: 9px; }
.leaflet-popup-content-wrapper { border-radius: 14px; box-shadow: 0 18px 45px rgba(22,63,58,.2); }
.leaflet-popup-content { width: 220px !important; margin: 16px; font-family: "Nunito", Arial, sans-serif; }
.leaflet-popup-content h3 { margin: 0 0 6px; color: var(--forest); font-size: .95rem; }
.leaflet-popup-content p { margin: 0 0 10px; color: var(--ink-soft); font-size: .75rem; }
.leaflet-popup-content a { color: var(--coral); font-size: .75rem; font-weight: 700; }

.map-pin {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 3px solid var(--white);
  border-radius: 50% 50% 50% 7px;
  background: var(--coral);
  color: #231713;
  box-shadow: 0 5px 12px rgba(22,63,58,.3);
  font-family: "Nunito", Arial, sans-serif;
  font-size: .68rem;
  font-weight: 700;
  transform: rotate(-45deg);
}

.map-pin span { transform: rotate(45deg); }
.map-pin.school { background: var(--mint); }
.map-pin.activity { background: var(--mustard); }
.map-pin.parking { background: var(--blue); color: var(--white); }
.map-pin.user { background: var(--blue); }
.map-pin.search { background: var(--blue); box-shadow: 0 0 0 6px rgba(82, 178, 230, .22), 0 7px 14px rgba(23, 36, 71, .2); }

.school-section {
  background: var(--paper);
}

.school-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: start;
  gap: 90px;
}

.school-note {
  margin-top: 32px;
  padding: 22px;
  border-left: 4px solid var(--coral);
  background: var(--white);
  box-shadow: var(--shadow-small);
}

.school-note strong { color: var(--forest); }
.school-note p { margin: 6px 0 0; color: var(--ink-soft); font-size: .88rem; }
.school-note a {
  display: inline-flex;
  margin-top: 13px;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--coral);
  color: var(--forest);
  font-size: .8rem;
  font-weight: 900;
}

.regional-school-resource { margin-top: 24px; border-left: 4px solid var(--mint); }

.question-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}

.question-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 16px 24px;
  background: var(--coral-soft);
  color: var(--forest);
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.question-card-head button {
  padding: 5px 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  cursor: pointer;
}

.question-card h3 {
  margin: 0;
  padding: 30px 30px 14px;
  color: var(--forest);
  font-family: "Fredoka", "Trebuchet MS", sans-serif;
  font-size: 1.65rem;
}

.question-list {
  margin: 0;
  padding: 0 30px 28px;
  list-style: none;
}

.question-list li {
  display: grid;
  grid-template-columns: 35px 1fr;
  gap: 14px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.question-list li:last-child { border-bottom: 0; }
.question-list li > span { color: var(--coral); font-family: "Fredoka", "Trebuchet MS", sans-serif; font-size: 1.1rem; }
.question-list p { margin: 0; color: var(--ink-soft); font-size: .9rem; }

.care-section {
  padding: 110px 0;
  overflow: hidden;
  background: var(--coral);
  color: #231713;
}

.care-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  align-items: center;
  gap: 90px;
}

.care-shape {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  flex: none;
}

.care-copy { max-width: 670px; }
.care-copy .section-kicker { color: var(--forest); }
.care-copy h2 { color: #231713; }
.care-copy > p:not(.section-kicker) { font-size: 1.08rem; }

.care-links {
  margin: 32px 0 18px;
  display: flex;
  gap: 13px;
}

.care-links a {
  min-width: 170px;
  display: grid;
  padding: 16px 20px;
  border-radius: 13px;
  background: rgba(255,255,255,.5);
}

.care-links strong { color: var(--forest); font-size: .74rem; text-transform: uppercase; }
.care-links span { font-family: "Fredoka", "Trebuchet MS", sans-serif; font-size: 1.15rem; }
.care-copy small { font-size: .75rem; opacity: .8; }

.parent-support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 62px;
}

.parent-support-grid article {
  padding: 27px;
  border: 1px solid rgba(35, 23, 19, .1);
  border-radius: 24px;
  background: rgba(255, 255, 255, .55);
  box-shadow: 0 18px 38px rgba(80, 37, 28, .08);
}

.parent-support-grid article > span { color: var(--forest); font-family: "Fredoka", sans-serif; font-weight: 700; }
.parent-support-grid h3 { margin: 12px 0 8px; color: #231713; font-family: "Fredoka", sans-serif; font-size: 1.35rem; }
.parent-support-grid p { margin: 0; font-size: .86rem; }

.parent-library {
  margin-top: 18px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(35, 23, 19, .12);
  border-radius: 30px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 22px 50px rgba(80, 37, 28, .1);
}

.parent-library-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, .9fr);
  gap: 28px 48px;
  align-items: end;
}

.parent-library-heading .section-kicker { margin-bottom: 8px; color: var(--forest); }
.parent-library-heading h3 { max-width: 760px; margin: 0; color: #231713; font-family: "Fredoka", "Trebuchet MS", sans-serif; font-size: clamp(1.8rem, 3vw, 2.65rem); line-height: 1.05; }
.parent-library-heading > p { margin: 0; color: var(--ink-soft); font-size: .93rem; }

.parent-library-tabs {
  display: inline-flex;
  gap: 7px;
  margin: 30px 0 20px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(35, 23, 19, .07);
}

.parent-library-tabs button {
  min-width: 116px;
  padding: 11px 18px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ink-soft);
  font: 800 .86rem/1 "Nunito", Arial, sans-serif;
  cursor: pointer;
}

.parent-library-tabs button:hover { color: #231713; }
.parent-library-tabs button[aria-selected="true"] { background: var(--forest-deep); color: var(--white); box-shadow: 0 8px 18px rgba(35, 23, 19, .16); }
.parent-library-tabs button:focus-visible { outline: 3px solid var(--mustard); outline-offset: 2px; }

.library-panel {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.library-panel.is-active { display: grid; }
.library-panel[hidden] { display: none; }

.library-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid rgba(35, 23, 19, .11);
  border-radius: 22px;
  background: var(--white);
}

.library-meta {
  align-self: flex-start;
  padding: 7px 10px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--mint) 38%, white);
  color: var(--forest-deep);
  font-size: .67rem;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.library-card h4 { margin: 17px 0 4px; color: #231713; font-family: "Fredoka", "Trebuchet MS", sans-serif; font-size: 1.35rem; line-height: 1.12; overflow-wrap: anywhere; }
.library-author { min-height: 2.5em; margin: 0 0 17px; color: var(--ink-soft); font-size: .76rem; font-weight: 800; }
.library-detail { padding-top: 14px; border-top: 1px solid var(--line); }
.library-detail + .library-detail { margin-top: 13px; }
.library-detail strong { display: block; margin-bottom: 4px; color: var(--forest-deep); font-size: .72rem; letter-spacing: .02em; text-transform: uppercase; }
.library-detail p { margin: 0; color: var(--ink-soft); font-size: .82rem; line-height: 1.58; }
.library-start strong { color: var(--forest); }
.library-critical { padding: 14px; border: 0; border-radius: 14px; background: color-mix(in srgb, var(--mustard) 18%, white); }
.library-critical strong { color: #6f4f00; }
.library-card > a { align-self: flex-start; margin-top: auto; padding-top: 20px; color: var(--forest-deep); font-size: .78rem; font-weight: 900; text-decoration: underline; text-decoration-color: color-mix(in srgb, var(--forest) 45%, transparent); text-underline-offset: 4px; }
.library-card > a:hover { color: #231713; }

.library-note {
  margin: 18px 0 0;
  padding: 15px 18px;
  border-radius: 16px;
  background: rgba(35, 23, 19, .055);
  color: var(--ink-soft);
  font-size: .76rem;
  line-height: 1.55;
}

.library-note strong { color: #231713; }

.parent-checkin {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 24px 42px;
  align-items: center;
  margin-top: 18px;
  padding: 34px;
  border-radius: 28px;
  background: var(--forest-deep);
  color: var(--white);
  box-shadow: var(--shadow);
}

.parent-checkin h3 { margin: 0 0 5px; font-family: "Fredoka", sans-serif; font-size: 1.65rem; }
.parent-checkin p { margin-bottom: 0; }
.parent-checkin .section-kicker { margin-bottom: 7px; color: var(--mint); }
.parent-checkin > div:first-child > p:last-child { color: rgba(255,255,255,.72); font-size: .8rem; }
.parent-checkin-actions { display: flex; flex-wrap: wrap; gap: 9px; }
.parent-checkin-actions button { padding: 11px 14px; border: 1px solid rgba(255,255,255,.25); border-radius: 999px; background: rgba(255,255,255,.08); color: var(--white); font-weight: 800; cursor: pointer; }
.parent-checkin-actions button:hover,
.parent-checkin-actions button.is-selected { border-color: var(--mustard); background: var(--mustard); color: #231713; }
.parent-checkin-result { grid-column: 1 / -1; min-height: 55px; padding: 16px 18px; border-radius: 16px; background: rgba(255,255,255,.1); color: rgba(255,255,255,.88); font-size: .9rem; }

.donation-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 14%, color-mix(in srgb, var(--mint) 19%, transparent) 0 110px, transparent 111px),
    radial-gradient(circle at 94% 87%, color-mix(in srgb, var(--mustard) 22%, transparent) 0 150px, transparent 151px),
    var(--paper);
}

.donation-heading {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: end;
  gap: 70px;
}

.donation-heading h2 { max-width: 760px; margin-bottom: 0; }
.donation-heading > p { margin: 0 0 7px; color: var(--ink-soft); font-size: 1.02rem; }

.donation-verification {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 21px;
  border: 1px solid color-mix(in srgb, var(--mint) 52%, var(--line));
  border-radius: 20px;
  background: color-mix(in srgb, var(--white) 88%, var(--mint));
}

.donation-shield {
  width: 44px;
  height: 48px;
  flex: 0 0 44px;
  display: grid;
  place-items: center;
  border-radius: 48% 48% 55% 55% / 34% 34% 70% 70%;
  background: var(--forest);
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 8px 20px color-mix(in srgb, var(--forest) 24%, transparent);
}

.donation-verification strong { display: block; color: var(--forest-deep); }
.donation-verification p { margin: 2px 0 0; color: var(--ink-soft); font-size: .8rem; }

.donation-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.donation-card,
.donation-loading,
.donation-empty {
  min-height: 310px;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 50px rgba(46,52,117,.08);
}

.donation-card { display: flex; flex-direction: column; }
.donation-card-top { display: flex; flex-wrap: wrap; gap: 7px; }
.donation-badge { padding: 6px 9px; border-radius: 999px; background: color-mix(in srgb, var(--mint) 20%, var(--white)); color: var(--forest-deep); font-size: .66rem; font-weight: 900; letter-spacing: .03em; }
.donation-badge.is-territory { background: color-mix(in srgb, var(--mustard) 25%, var(--white)); }
.donation-card h3 { margin: 19px 0 7px; color: var(--forest-deep); font-size: 1.55rem; }
.donation-organizer { margin: 0; color: var(--forest); font-size: .78rem; font-weight: 850; }
.donation-purpose { margin: 16px 0 22px; color: var(--ink-soft); font-size: .9rem; }
.donation-card-actions { margin-top: auto; display: flex; flex-wrap: wrap; align-items: center; gap: 9px 15px; }
.donation-card-actions > a:first-child { min-height: 45px; display: inline-flex; align-items: center; padding: 0 17px; border-radius: 999px; background: var(--coral); color: #231713; font-weight: 900; }
.donation-card-actions > a:not(:first-child) { color: var(--forest); font-size: .72rem; font-weight: 800; text-decoration: underline; text-underline-offset: 4px; }
.donation-card small { display: block; margin-top: 16px; color: var(--ink-soft); font-size: .68rem; }

.donation-loading { grid-column: 1 / -1; min-height: 210px; display: grid; place-content: center; justify-items: center; gap: 8px; color: var(--ink-soft); text-align: center; }
.donation-loading > span { width: min(320px, 68vw); height: 12px; border-radius: 999px; background: linear-gradient(90deg, var(--line), color-mix(in srgb, var(--mint) 30%, var(--white)), var(--line)); background-size: 200% 100%; animation: donation-loading 1.4s linear infinite; }
.donation-loading > span:nth-child(2) { width: min(240px, 52vw); }
.donation-loading > span:nth-child(3) { width: min(180px, 40vw); }
.donation-loading p { margin: 12px 0 0; font-size: .8rem; }
@keyframes donation-loading { to { background-position: -200% 0; } }

.donation-empty { grid-column: 1 / -1; min-height: 0; display: grid; gap: 7px; }
.donation-empty strong { color: var(--forest-deep); font-size: 1.1rem; }
.donation-empty p { margin: 0; color: var(--ink-soft); }

.donation-safety {
  margin-top: 22px;
  display: grid;
  grid-template-columns: .72fr 1.15fr 1fr;
  gap: 24px;
  padding: 31px;
  border-radius: 30px;
  background: var(--forest-deep);
  color: var(--white);
}

.donation-safety .section-kicker { color: var(--mint); }
.donation-safety h3 { margin: 0; color: var(--white); font-size: 1.65rem; }
.donation-safety ol { display: grid; gap: 14px; margin: 0; padding: 0; list-style: none; }
.donation-safety li { display: grid; grid-template-columns: 31px 1fr; gap: 11px; align-items: start; }
.donation-safety li > span { width: 31px; height: 31px; display: grid; place-items: center; border-radius: 50%; background: var(--mustard); color: #231713; font-size: .72rem; font-weight: 900; }
.donation-safety li p { margin: 2px 0 0; color: rgba(255,255,255,.72); font-size: .78rem; }
.donation-safety li strong { color: var(--white); }
.donation-disclaimer { padding: 19px; border-radius: 19px; background: rgba(255,255,255,.1); }
.donation-disclaimer > strong { color: var(--mint); font-size: .78rem; }
.donation-disclaimer p { margin: 6px 0 12px; color: rgba(255,255,255,.7); font-size: .73rem; }
.donation-disclaimer a { color: var(--mustard); font-size: .72rem; font-weight: 900; text-decoration: underline; text-underline-offset: 4px; }

.faq-section {
  background: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 95px;
}

.faq-list details {
  border-top: 1px solid var(--line);
}

.faq-list details:last-child { border-bottom: 1px solid var(--line); }

.faq-list summary {
  min-height: 86px;
  display: grid;
  grid-template-columns: 1fr 28px;
  align-items: center;
  gap: 20px;
  list-style: none;
  color: var(--forest);
  font-weight: 700;
  cursor: pointer;
}

.faq-list details p {
  max-width: 650px;
  margin: -5px 55px 28px 0;
  color: var(--ink-soft);
  font-size: .92rem;
}

.site-footer {
  padding-top: 70px;
  background: var(--forest-deep);
  color: rgba(255,255,255,.65);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 55px;
  padding-bottom: 55px;
}

.brand-footer strong { color: var(--white); font-size: 1.2rem; }
.brand-footer small { color: rgba(255,255,255,.55); }
.footer-brand-wrap > p { max-width: 290px; margin: 20px 0 0; font-size: .86rem; }
.footer-top > div:not(:first-child) { display: grid; align-content: start; gap: 9px; }
.footer-top h2 { margin: 0 0 10px; color: var(--mint); font-family: "Nunito", Arial, sans-serif; font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-top a:not(.brand) { font-size: .82rem; }
.footer-top a:not(.brand):hover { color: var(--white); }

.footer-bottom {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid var(--line-dark);
  font-size: .71rem;
}

.footer-bottom p { margin: 0; }

.footer-privacy-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px; }
.footer-privacy-links a,
.footer-privacy-links button { padding: 0; border: 0; background: transparent; color: rgba(255,255,255,.78); font: inherit; text-decoration: underline; text-underline-offset: 3px; cursor: pointer; }
.footer-privacy-links a:hover,
.footer-privacy-links button:hover { color: var(--white); }
.footer-privacy-links .site-credit { color: rgba(255,255,255,.48); text-decoration-color: transparent; }
.footer-privacy-links .site-credit:hover { color: var(--white); text-decoration-color: currentColor; }

.cookie-banner {
  position: fixed;
  z-index: 500;
  left: calc(var(--sidebar-width) + 20px);
  right: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 20px 22px;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 22px;
  background: rgba(46, 52, 117, .97);
  color: var(--white);
  box-shadow: 0 24px 80px rgba(25, 28, 70, .3);
  backdrop-filter: blur(18px);
}

.cookie-banner[hidden] { display: none; }
.cookie-banner strong { font-family: "Fredoka", sans-serif; font-size: 1.1rem; }
.cookie-banner p { margin: 3px 0 0; color: rgba(255,255,255,.74); font-size: .78rem; }
.cookie-banner a { color: var(--mint); font-size: .73rem; text-decoration: underline; text-underline-offset: 3px; }
.cookie-actions { display: flex; flex: none; flex-wrap: wrap; gap: 8px; }
.cookie-actions button,
.consent-dialog-actions button { min-height: 42px; padding: 0 15px; border-radius: 999px; font-size: .78rem; font-weight: 800; cursor: pointer; }
.cookie-primary { border: 1px solid var(--mustard); background: var(--mustard); color: #231713; }
.cookie-secondary { border: 1px solid rgba(255,255,255,.34); background: transparent; color: inherit; }

.consent-dialog {
  width: min(calc(100% - 32px), 670px);
  padding: 0;
  border: 0;
  border-radius: 28px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 30px 100px rgba(25, 28, 70, .35);
}

.consent-dialog::backdrop { background: rgba(27, 29, 62, .62); backdrop-filter: blur(6px); }
.consent-dialog form { padding: 30px; }
.consent-dialog-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.consent-dialog h2 { max-width: 520px; margin-bottom: 15px; font-size: clamp(2rem, 6vw, 3.3rem); }
.consent-dialog > form > p { color: var(--ink-soft); }
.dialog-close { width: 42px; height: 42px; flex: 0 0 42px; border: 1px solid var(--line); border-radius: 50%; background: var(--white); color: var(--forest); font-size: 1.7rem; cursor: pointer; }
.consent-option { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 12px; padding: 18px; border: 1px solid var(--line); border-radius: 17px; background: var(--white); }
.consent-option span { display: grid; gap: 3px; }
.consent-option strong { color: var(--forest-deep); }
.consent-option small { color: var(--ink-soft); }
.consent-option input { width: 22px; height: 22px; accent-color: var(--forest); }
.consent-option.is-required { opacity: .7; }
.consent-dialog-actions { display: flex; justify-content: flex-end; gap: 9px; margin-top: 22px; }
.consent-dialog .cookie-secondary { border-color: var(--line); color: var(--forest); }

.legal-main { padding: 90px 0 110px; background: linear-gradient(145deg, var(--paper-deep), var(--paper) 44%, var(--blue-soft)); }
.legal-hero { padding: 28px 0 45px; }
.legal-hero h1 { max-width: 900px; margin-bottom: 22px; color: var(--forest-deep); font-size: clamp(3.2rem, 7vw, 6.6rem); }
.legal-hero > p:last-child { max-width: 720px; color: var(--ink-soft); }
.legal-layout { display: grid; grid-template-columns: 220px minmax(0, 820px); gap: 55px; align-items: start; }
.legal-toc { position: sticky; top: 35px; display: grid; gap: 8px; padding: 20px; border-radius: 20px; background: rgba(255,255,255,.76); box-shadow: var(--shadow-small); }
.legal-toc strong { margin-bottom: 5px; color: var(--forest-deep); }
.legal-toc a { color: var(--ink-soft); font-size: .82rem; }
.legal-toc a:hover { color: var(--forest); }
.legal-content { display: grid; gap: 16px; }
.legal-content section { padding: 30px; border: 1px solid rgba(76,87,182,.1); border-radius: 24px; background: rgba(255,255,255,.84); box-shadow: var(--shadow-small); }
.legal-content h2 { margin-bottom: 17px; color: var(--forest-deep); font-size: clamp(1.65rem, 3vw, 2.5rem); }
.legal-content p,
.legal-content li { color: var(--ink-soft); font-size: .94rem; }
.legal-content a { color: var(--forest); font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.legal-content code { padding: 2px 6px; border-radius: 6px; background: var(--paper-deep); color: var(--forest-deep); }
.legal-warning { margin-bottom: 18px; padding: 18px; border-left: 5px solid var(--mustard); border-radius: 14px; background: #fff8d9; }
.legal-warning strong { color: var(--forest-deep); }
.legal-warning p { margin: 5px 0 0; }
.legal-action { margin-top: 20px; }
.legal-footer { padding-top: 0; }

.verification-standard {
  position: relative;
  z-index: 2;
  border-block: 1px solid color-mix(in srgb, var(--forest) 16%, transparent);
  background: color-mix(in srgb, var(--cream) 88%, white);
}
.verification-standard-inner {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 15px;
  align-items: center;
  padding-block: 17px;
}
.verification-standard-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: color-mix(in srgb, var(--mint) 28%, white);
  color: var(--forest-deep);
  font-weight: 950;
}
.verification-standard strong { display: block; color: var(--ink); font-size: .84rem; }
.verification-standard p { margin: 3px 0 0; color: var(--muted); font-size: .76rem; line-height: 1.55; }

.section-sources {
  display: grid;
  grid-template-columns: minmax(220px, .52fr) minmax(0, 1.48fr);
  gap: 18px 28px;
  align-items: center;
  margin-top: 48px;
  padding: 18px 20px;
  border: 1px solid color-mix(in srgb, var(--forest) 17%, transparent);
  border-radius: 20px;
  background: color-mix(in srgb, white 92%, var(--cream));
  box-shadow: 0 12px 32px rgba(35, 23, 19, .05);
  color: var(--ink);
}
.section-sources-heading { display: flex; gap: 11px; align-items: center; min-width: 0; }
.section-sources-heading > span {
  display: grid;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: color-mix(in srgb, var(--mint) 30%, white);
  color: var(--forest-deep);
  font-weight: 950;
}
.section-sources-heading strong { display: block; font-size: .82rem; }
.section-sources-heading small { display: block; margin-top: 2px; color: var(--muted); font-size: .68rem; line-height: 1.45; }
.section-source-links { display: flex; flex-wrap: wrap; gap: 8px; min-width: 0; }
.section-source-links a {
  display: grid;
  gap: 2px;
  min-width: min(210px, 100%);
  flex: 1 1 210px;
  padding: 10px 12px;
  border: 1px solid color-mix(in srgb, var(--forest) 16%, transparent);
  border-radius: 13px;
  background: white;
  color: var(--ink);
  text-decoration: none;
}
.section-source-links a:hover { border-color: var(--forest); transform: translateY(-1px); }
.section-source-links span { color: var(--forest-deep); font-size: .59rem; font-weight: 900; letter-spacing: .045em; text-transform: uppercase; }
.section-source-links strong { font-size: .7rem; line-height: 1.35; overflow-wrap: anywhere; }

.source-origin,
.resource-source-origin {
  display: block;
  margin-top: 14px;
  padding-top: 10px;
  border-top: 1px solid color-mix(in srgb, var(--forest) 14%, transparent);
  color: var(--muted);
  font-size: .66rem;
  font-weight: 750;
  line-height: 1.45;
}
.resource-source-origin { margin-top: 9px; padding-top: 0; border-top: 0; }
.resource-source-origin.is-community { color: #4d5a73; }
.library-card .source-origin { margin-top: 12px; }
.support-body .source-origin { margin-top: 18px; }
.regional-school-resource .source-origin { flex-basis: 100%; width: 100%; }

@media (pointer: fine) {
  html,
  body { cursor: url("/public/cursor-default.png") 3 2, auto; }

  a,
  button,
  summary,
  select,
  [role="button"],
  [role="tab"],
  .consent-option { cursor: url("/public/cursor-pointer.png") 3 2, pointer; }

  input[type="text"],
  input[type="search"] { cursor: text; }

  button:disabled,
  select:disabled,
  input:disabled { cursor: not-allowed; }
}

@media (max-width: 1040px) {
  body { padding-left: 0; }
  .skip-link { left: 12px; }
  section[id] { scroll-margin-top: 94px; }
  .site-header {
    inset: 0 0 auto;
    width: auto;
    overflow: visible;
    border-right: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }
  html[data-condition="trissomia21"] .site-header,
  html[data-condition="dislexia"] .site-header,
  html[data-condition="paralisiaCerebral"] .site-header {
    background: transparent;
    box-shadow: none;
  }
  .site-header.is-scrolled,
  .site-header.is-open {
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }
  .site-header::before,
  .site-header::after { display: none; }
  .nav-shell {
    width: min(calc(100% - 48px), var(--max-width));
    min-height: 86px;
    margin-inline: auto;
    padding: 0;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
  }
  .site-header .brand {
    width: 240px;
    max-width: calc(100% - 64px);
    min-height: 46px;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }
  .site-header .brand strong { font-size: .92rem; white-space: nowrap; }
  .site-header .brand small { min-height: 0; white-space: nowrap; }
  .nav-label { display: none; }
  .condition-switcher-desktop { display: none; }
  .nav-toggle { display: grid; }

  .site-nav {
    position: absolute;
    top: 78px;
    left: 24px;
    right: 24px;
    display: none;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow);
    backdrop-filter: none;
  }

  .site-header.is-open .site-nav { display: grid; gap: 15px; }
  .condition-switcher-mobile { display: block; }
  .site-nav > a:not(.nav-cta) { padding: 10px 12px 10px 36px; }
  .site-nav > a:not(.nav-cta)::after { display: none; }
  .site-nav > a:hover,
  .site-nav > a.is-active { transform: none; }
  .nav-cta { margin-top: 0; }
  .nav-trust { display: none; }
  .hero { padding-top: 145px; }
  .cookie-banner { left: 20px; }

  .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(340px, .68fr); gap: 45px; }
  .calm-card { min-height: 0; padding: 48px 38px 70px; }
  .calm-card-top, .calm-card-bottom { padding-inline: 0; }
  .calm-card-top p { font-size: 1.65rem; }
  html[data-condition="paralisiaCerebral"] .calm-card-top p { font-size: 1.58rem; }

  .diagnosis-grid,
  .school-grid,
  .faq-grid { gap: 55px; }

  .map-panel { grid-template-columns: 330px 1fr; }
  .opportunity-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1.3fr repeat(3, 1fr); gap: 28px; }
}

@media (max-width: 820px) {
  .section-sources { grid-template-columns: 1fr; align-items: start; }
  .hero { min-height: auto; padding: 135px 0 85px; }
  .hero::before { width: 100%; height: 43%; top: auto; bottom: 0; clip-path: polygon(0 23%, 100% 0, 100% 100%, 0 100%); }
  .hero-grid,
  .understand-heading,
  .topic-overview,
  .levels-heading,
  .diagnosis-grid,
  .after-grid,
  .school-grid,
  .care-grid,
  .faq-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 60px; }
  .understand-heading,
  .levels-heading { gap: 20px; }
  .topic-overview { gap: 16px; }
  .hero-copy { max-width: 690px; }
  .calm-card { width: min(100%, 480px); justify-self: center; }

  .route-grid { grid-template-columns: 1fr; }
  .route-card { min-height: 245px; }
  .route-number { margin-bottom: 24px; }

  .diagnosis-heading { position: static; }
  .diagnosis-grid { gap: 55px; }
  .age-grid { grid-template-columns: 1fr; }
  .age-card { min-height: 230px; }
  .transition-guides { grid-template-columns: 1fr; }
  .life-panel-heading { grid-template-columns: 1fr; gap: 18px; }
  .leisure-access-note,
  .regional-school-resource { align-items: flex-start; flex-direction: column; gap: 14px; }
  .parking-card-heading { grid-template-columns: 1fr; align-items: start; gap: 12px; }
  .after-grid { gap: 60px; }
  .team-wheel { max-width: 430px; }
  .priority-strip { grid-template-columns: 1fr; }
  .priority-strip article:not(:last-child) { border-right: 0; border-bottom: 1px solid var(--line); }

  .section-heading-row { align-items: flex-start; flex-direction: column; }
  .support-grid { grid-template-columns: 1fr; }
  .map-panel { grid-template-columns: 1fr; }
  .map-sidebar { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .resource-list { max-height: 320px; }
  .map-canvas { height: 500px; }
  .care-grid { gap: 55px; }
  .parent-support-grid { grid-template-columns: 1fr; }
  .parent-library-heading { grid-template-columns: 1fr; }
  .library-panel { grid-template-columns: 1fr; }
  .library-author { min-height: 0; }
  .parent-checkin { grid-template-columns: 1fr; }
  .parent-checkin-result { grid-column: 1; }
  .donation-heading { grid-template-columns: 1fr; align-items: start; gap: 18px; }
  .donation-safety { grid-template-columns: 1fr; }
  .legal-layout { grid-template-columns: 1fr; gap: 22px; }
  .legal-toc { position: static; grid-template-columns: repeat(2, 1fr); }
  .legal-toc strong { grid-column: 1 / -1; }
  .care-shape { width: min(80%, 430px); height: auto; justify-self: center; }
  .footer-top { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-brand-wrap { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  .container,
  .nav-shell { width: min(calc(100% - 30px), var(--max-width)); }

  .nav-shell { min-height: 76px; }
  .brand-mark { width: 38px; height: 38px; flex-basis: 38px; }
  .brand strong { font-size: .9rem; }
  .brand small { font-size: .59rem; }

  .hero { padding: 118px 0 70px; }
  .verification-standard-inner { grid-template-columns: 34px minmax(0, 1fr); gap: 11px; padding-block: 14px; }
  .verification-standard-icon { width: 34px; height: 34px; }
  .verification-standard p { font-size: .7rem; }
  .section-sources { margin-top: 34px; padding: 15px; border-radius: 17px; }
  .section-source-links { display: grid; grid-template-columns: 1fr; width: 100%; }
  .section-source-links a { min-width: 0; width: 100%; }
  .hero h1 { font-size: clamp(3rem, 15vw, 4.35rem); }
  .hero-lead { font-size: 1.02rem; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .trust-note { align-items: flex-start; }
  .calm-card { min-height: 0; padding: 48px 36px 76px; border-radius: 40% 46% 27% 38% / 31% 38% 43% 48%; box-shadow: 18px 20px 0 rgba(255,254,250,.7); }
  .calm-card-top, .calm-card-bottom { padding-inline: 0; }
  .calm-card-top p { font-size: clamp(1.5rem, 7vw, 1.7rem); line-height: 1.16; }
  html[data-condition="paralisiaCerebral"] .calm-card-top p { font-size: clamp(1.42rem, 6.5vw, 1.58rem); }
  .calm-card-bottom { padding-top: 22px; }
  .calm-card-bottom p { font-size: .9rem; line-height: 1.55; }

  .route-section,
  .understand-section,
  .after-section,
  .life-section,
  .supports-section,
  .school-section,
  .faq-section,
  .finder-section,
  .diagnosis-section,
  .care-section { padding: 85px 0; }
  .donation-section { padding: 85px 0; }

  .route-grid { margin-top: 38px; }
  .topic-definition { min-height: 0; padding: 32px 26px 90px; }
  .topic-fact-list article { grid-template-columns: 42px 1fr; gap: 14px; padding: 22px 20px; }
  .topic-fact-list article > span { width: 42px; height: 42px; }
  .levels-heading { margin-top: 58px; }
  .level-grid { grid-template-columns: 1fr; }
  .level-card { min-height: 0; padding: 24px 22px; }
  .level-number { margin-bottom: 24px; }
  .level-note { grid-template-columns: 1fr; padding: 22px 20px; }
  .route-card { padding: 25px; }

  .step-list > li { grid-template-columns: 45px 1fr; gap: 14px; }
  .step-index { width: 44px; height: 44px; font-size: 1rem; }
  .step-list h3 { font-size: 1.3rem; }

  .team-wheel { width: 88%; }
  .team-pill { min-width: 94px; padding: 9px 12px; font-size: .72rem; }
  .priority-strip article { padding: 24px 8px; }

  .support-card summary { min-height: 105px; grid-template-columns: 1fr 28px; gap: 9px 14px; padding: 20px; }
  .support-tag { grid-column: 1; }
  .support-card summary strong { font-size: 1.15rem; }
  .support-card summary i { grid-column: 2; grid-row: 1 / 3; }
  .support-body { padding: 0 20px 24px; }
  .support-callout { align-items: flex-start; flex-direction: column; }
  .support-callout > div { align-items: flex-start; }

  .life-panel { padding: 25px 19px; border-radius: var(--radius-lg); }
  .opportunity-grid { grid-template-columns: 1fr; }
  .opportunity-card { min-height: 0; }

  .map-tabs { overflow-x: auto; scroll-snap-type: x mandatory; }
  .map-tabs button { min-width: 150px; flex: 0 0 42%; padding-inline: 12px; font-size: .75rem; scroll-snap-align: start; }
  .directory-note { grid-template-columns: 1fr; gap: 6px; }
  .directory-status { width: 100%; align-items: flex-start; border-radius: 18px; line-height: 1.45; }
  .directory-live-dot { margin-top: 4px; }
  .source-library { grid-template-columns: 1fr; }
  .map-tabs small { display: none; }
  .map-panel { border-radius: 0 0 18px 18px; }
  .map-canvas { height: 420px; }
  .map-source { display: none; }
  .filter-select-row { grid-template-columns: 1fr; }
  .parking-card-guide { padding: 22px 18px; border-radius: 22px; }
  .parking-card-facts { grid-template-columns: 1fr; }
  .parking-card-actions { display: grid; }
  .parking-card-actions a { text-align: center; }
  .parking-search-actions { grid-template-columns: 1fr; }
  .parking-search-fields { grid-template-columns: 1fr; }
  .parking-result-list { max-height: 330px; }

  .question-card h3 { padding-inline: 22px; }
  .question-list { padding-inline: 22px; }
  .care-shape { width: 92%; height: auto; }
  .care-links { display: grid; grid-template-columns: 1fr; }
  .care-links a { min-width: 0; }
  .parent-support-grid { margin-top: 42px; }
  .parent-library { padding: 22px 16px; border-radius: 24px; }
  .parent-library-heading { gap: 16px; }
  .parent-library-heading h3 { font-size: 1.75rem; }
  .parent-library-tabs { width: 100%; }
  .parent-library-tabs button { min-width: 0; flex: 1; }
  .library-card { padding: 20px 18px; }
  .parent-checkin { padding: 24px 20px; }
  .parent-checkin-actions { display: grid; }
  .donation-grid { grid-template-columns: 1fr; }
  .donation-card, .donation-loading, .donation-empty { min-height: 0; padding: 22px 19px; border-radius: 22px; }
  .donation-verification { align-items: flex-start; padding: 16px; }
  .donation-safety { padding: 24px 20px; border-radius: 24px; }
  .donation-card-actions { align-items: stretch; flex-direction: column; }
  .donation-card-actions > a:first-child { justify-content: center; }

  .cookie-banner { left: 12px; right: 12px; bottom: 12px; align-items: stretch; flex-direction: column; gap: 14px; padding: 18px; }
  .cookie-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .cookie-actions .cookie-primary { grid-column: 1 / -1; grid-row: 1; }
  .consent-dialog form { padding: 22px 18px; }
  .consent-dialog-actions { display: grid; }
  .consent-option { align-items: flex-start; }
  .map-consent { padding: 24px; }

  .legal-main { padding: 100px 0 75px; }
  .legal-hero { padding-bottom: 25px; }
  .legal-hero h1 { font-size: clamp(2.7rem, 14vw, 4.2rem); }
  .legal-toc { grid-template-columns: 1fr; }
  .legal-toc strong { grid-column: 1; }
  .legal-content section { padding: 23px 20px; }

  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand-wrap { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding-block: 22px; }
  .footer-privacy-links { justify-content: flex-start; }
}

@media print {
  body * { visibility: hidden; }
  .question-card, .question-card * { visibility: visible; }
  .question-card { position: absolute; inset: 0; width: 100%; box-shadow: none; }
  .question-card-head button { display: none; }
}

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