/* ==========================================================================
   Tiny Scholars Daycare — Concept B, "Morning Light"
   White ground, hairline rules, pastel crayon accents, circular portraits.
   Type: Outfit (light display) / Source Serif 4 (body)
   ========================================================================== */

:root {
  --ground:      #FFFFFF;
  --ground-2:    #F5F9FA;
  --line:        #E3ECEE;
  --line-strong: #CBDCDF;
  --ink:         #22383D;
  --ink-2:       #3F595F;
  --muted:       #768D92;

  --sky:         #3E93AC;
  --sky-soft:    #E4F2F6;
  --leaf:        #5F9422;
  --leaf-soft:   #EEF6E2;
  --blush:       #C9635A;
  --blush-soft:  #FCEEEC;
  --butter:      #9A7415;
  --butter-soft: #FCF3DE;

  --btn-bg:        #3E93AC;
  --btn-bg-hover:  #2F7386;
  --btn-fg:        #FFFFFF;
  --btn-alt-bg:       #FFFFFF;
  --btn-alt-fg:       #22383D;
  --btn-alt-border:   #CBDCDF;

  --ring: 0 0 0 1px var(--line);
  --lift: 0 18px 40px -28px rgba(34, 56, 61, .45);

  --radius:     26px;
  --radius-sm:  16px;

  --step--1: clamp(.80rem, .78rem + .10vw, .88rem);
  --step-0:  clamp(1.02rem, .99rem + .16vw, 1.14rem);
  --step-1:  clamp(1.16rem, 1.08rem + .36vw, 1.36rem);
  --step-2:  clamp(1.40rem, 1.22rem + .82vw, 1.95rem);
  --step-3:  clamp(1.85rem, 1.50rem + 1.60vw, 3.00rem);
  --step-4:  clamp(2.35rem, 1.70rem + 3.00vw, 4.50rem);

  --gutter: clamp(1rem, 4vw, 2.75rem);
  --wrap:   1160px;
  color-scheme: light;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --ground:      #11181A;
    --ground-2:    #172023;
    --line:        #253235;
    --line-strong: #35474B;
    --ink:         #E8F1F2;
    --ink-2:       #C2D4D7;
    --muted:       #8CA3A7;

    --sky:         #7FCADE;
    --sky-soft:    #152B31;
    --leaf:        #A0D858;
    --leaf-soft:   #1A2615;
    --blush:       #F0AFA6;
    --blush-soft:  #2A1C1A;
    --butter:      #F3CD78;
    --butter-soft: #2A2214;

    --btn-bg:        #7FCADE;
    --btn-bg-hover:  #A9DEEC;
    --btn-fg:        #0C1618;
    --btn-alt-bg:       transparent;
    --btn-alt-fg:       #E8F1F2;
    --btn-alt-border:   #35474B;

    --ring: 0 0 0 1px var(--line);
    --lift: 0 18px 40px -28px rgba(0, 0, 0, .9);
    color-scheme: dark;
  }
}
:root[data-theme="dark"] {
  --ground:      #11181A;
  --ground-2:    #172023;
  --line:        #253235;
  --line-strong: #35474B;
  --ink:         #E8F1F2;
  --ink-2:       #C2D4D7;
  --muted:       #8CA3A7;

  --sky:         #7FCADE;
  --sky-soft:    #152B31;
  --leaf:        #A0D858;
  --leaf-soft:   #1A2615;
  --blush:       #F0AFA6;
  --blush-soft:  #2A1C1A;
  --butter:      #F3CD78;
  --butter-soft: #2A2214;

  --btn-bg:        #7FCADE;
  --btn-bg-hover:  #A9DEEC;
  --btn-fg:        #0C1618;
  --btn-alt-bg:       transparent;
  --btn-alt-fg:       #E8F1F2;
  --btn-alt-border:   #35474B;

  --ring: 0 0 0 1px var(--line);
  --lift: 0 18px 40px -28px rgba(0, 0, 0, .9);
  color-scheme: dark;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  margin: 0;
  background: var(--ground);
  color: var(--ink-2);
  font-family: "Source Serif 4", Georgia, "Times New Roman", serif;
  font-size: var(--step-0);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--sky); }
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--sky);
  outline-offset: 3px;
  border-radius: 3px;
}

h1, h2, h3, h4 {
  font-family: "Outfit", "Trebuchet MS", system-ui, sans-serif;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
h1 { font-size: var(--step-4); font-weight: 300; line-height: 1.02; letter-spacing: -.025em; }
h2 { font-size: var(--step-3); font-weight: 300; line-height: 1.08; letter-spacing: -.02em; }
h3 { font-size: var(--step-1); font-weight: 500; line-height: 1.25; letter-spacing: -.005em; }
h4 { font-size: 1rem; font-weight: 500; }
p  { margin: 0; }
strong { color: var(--ink); font-weight: 600; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }

.kicker {
  font-family: "Outfit", sans-serif;
  font-size: var(--step--1);
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--sky);
}
.lead { font-size: var(--step-1); line-height: 1.6; color: var(--ink-2); max-width: 48ch; }

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--btn-bg); color: var(--btn-fg);
  padding: .7rem 1rem; z-index: 200;
}
.skip:focus { left: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.1;
  letter-spacing: .01em;
  padding: .85rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 4px;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease;
}
.btn svg { flex: none; }
.btn-solid { background: var(--btn-bg); color: var(--btn-fg); }
.btn-solid:hover, .btn-solid:focus-visible { background: var(--btn-bg-hover); color: var(--btn-fg); }
.btn-line { background: var(--btn-alt-bg); color: var(--btn-alt-fg); border-color: var(--btn-alt-border); }
.btn-line:hover, .btn-line:focus-visible { border-color: var(--sky); color: var(--sky); }

.textlink {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: .95rem;
  color: var(--sky);
  text-decoration: none;
  display: inline-flex; align-items: center; gap: .4rem;
  border-bottom: 1px solid transparent;
}
.textlink:hover { border-bottom-color: currentColor; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: var(--ground);
  border-bottom: 1px solid var(--line);
}
.header-bar { display: flex; align-items: center; gap: 1.25rem; min-height: 82px; }
.brand { display: flex; align-items: center; margin-right: auto; text-decoration: none; }
.brand img { height: 44px; width: auto; max-width: none; flex: none; }
:root[data-theme="dark"] .brand img,
:root[data-theme="dark"] .footer-brand img { filter: invert(1) hue-rotate(180deg) brightness(1.15); }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .brand img,
  :root:not([data-theme="light"]) .footer-brand img { filter: invert(1) hue-rotate(180deg) brightness(1.15); }
}

.nav { display: flex; align-items: center; gap: .1rem; }
.nav a {
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  font-size: .95rem;
  color: var(--ink-2);
  text-decoration: none;
  padding: .45rem .6rem;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
.nav a:hover { color: var(--ink); }
.nav a[aria-current="page"] { color: var(--ink); border-bottom-color: var(--sky); }

.header-cta { display: flex; align-items: center; gap: .9rem; }
.header-cta .btn { padding: .68rem 1.15rem; font-size: .92rem; }
.phone-link {
  font-family: "Outfit", sans-serif; font-weight: 500; font-size: .95rem;
  color: var(--ink); text-decoration: none; white-space: nowrap;
  display: inline-flex; align-items: center; gap: .4rem;
}
.phone-link:hover { color: var(--sky); }

.nav-toggle {
  display: none; background: none; border: 1px solid var(--line);
  border-radius: 4px; padding: .55rem; cursor: pointer; color: var(--ink);
}
@media (max-width: 1080px) { .header-cta .phone-link { display: none; } }
@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .header-cta { display: none; }
  .nav {
    position: fixed; inset: 82px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--ground);
    border-bottom: 1px solid var(--line);
    padding: .5rem var(--gutter) 1.5rem;
    box-shadow: var(--lift);
    transform: translateY(-125%);
    transition: transform .28s ease;
    max-height: calc(100dvh - 82px); overflow-y: auto;
  }
  .nav a { padding: .9rem .2rem; font-size: 1.05rem; border-bottom: 1px solid var(--line); }
  .nav a[aria-current="page"] { border-bottom-color: var(--sky); }
  .nav.open { transform: translateY(0); }
  .nav .nav-extra { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.2rem; }
}
.nav .nav-extra { display: none; }
@media (max-width: 900px) { .nav .nav-extra { display: flex; } }

/* ---------- Section rhythm: hairlines, not color blocks ---------- */
.section { padding-block: clamp(3.5rem, 7vw, 6.5rem); }
.section + .section > .wrap { border-top: 1px solid var(--line); padding-top: clamp(3.5rem, 7vw, 6.5rem); }
.section + .section { padding-top: 0; }
.section-head { display: grid; gap: 1rem; max-width: 56ch; margin-bottom: clamp(2.2rem, 4vw, 3.25rem); }

/* ---------- Hero ---------- */
.hero { padding-block: clamp(2.75rem, 6vw, 5.5rem) clamp(3rem, 6vw, 5rem); overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(2.25rem, 5vw, 4.5rem);
  align-items: center;
}
.hero-copy { display: grid; gap: 1.5rem; justify-items: start; }
.hero h1 em { font-style: normal; color: var(--sky); }
.actions { display: flex; flex-wrap: wrap; gap: .75rem; }

.ticks { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.ticks li {
  display: grid; grid-template-columns: auto minmax(0, 1fr); gap: .7rem; align-items: baseline;
  font-family: "Outfit", sans-serif; font-size: .95rem; color: var(--ink-2);
}
.ticks li::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--sky); transform: translateY(-2px);
}
.ticks li:nth-child(2)::before { background: var(--leaf); }
.ticks li:nth-child(3)::before { background: var(--blush); }

.hero-figure { position: relative; margin: 0; }
.hero-figure::before {
  content: "";
  position: absolute; inset: -6% -5% 12% 30%;
  background: var(--sky-soft);
  border-radius: 50%;
  z-index: 0;
}
.hero-figure img {
  position: relative; z-index: 1;
  width: 100%; height: auto; aspect-ratio: 4 / 3.1; object-fit: cover;
  border-radius: var(--radius);
}
.hero-figure figcaption {
  position: relative; z-index: 2;
  margin: -2.25rem 0 0 auto;
  width: fit-content;
  background: var(--ground);
  box-shadow: var(--ring), var(--lift);
  border-radius: 4px;
  padding: .85rem 1.15rem;
  font-family: "Outfit", sans-serif;
  font-size: .88rem;
  line-height: 1.4;
  color: var(--ink);
  margin-right: 1.5rem;
}
.hero-figure figcaption b { display: block; font-weight: 500; }
.hero-figure figcaption span { color: var(--muted); }
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-figure { order: -1; }
}

/* ---------- Facts row ---------- */
.facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 0; }
.fact {
  padding: 1.5rem 1.4rem 1.5rem 0;
  border-left: 1px solid var(--line);
  padding-left: 1.4rem;
  display: grid; gap: .4rem; align-content: start;
}
.fact:first-child { border-left: 0; padding-left: 0; }
.fact .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--sky); }
.fact:nth-child(2) .dot { background: var(--leaf); }
.fact:nth-child(3) .dot { background: var(--blush); }
.fact:nth-child(4) .dot { background: var(--butter); }
.fact:nth-child(5) .dot { background: var(--sky); }
.fact h3 { font-size: 1rem; }
.fact p { font-size: .92rem; line-height: 1.55; color: var(--muted); }
@media (max-width: 620px) {
  .fact { border-left: 0; padding-left: 0; border-top: 1px solid var(--line); padding-top: 1.25rem; }
  .fact:first-child { border-top: 0; padding-top: 0; }
}

/* ---------- Split ---------- */
.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.split-copy { display: grid; gap: 1.15rem; align-content: start; justify-items: start; }
.split-media img { width: 100%; height: auto; aspect-ratio: 5 / 4; object-fit: cover; border-radius: var(--radius); }
.split.reverse .split-media { order: 2; }
@media (max-width: 720px) { .split.reverse .split-media { order: -1; } }

/* ---------- Programs: circular portraits ---------- */
.circles { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: clamp(1.5rem, 3vw, 2.5rem); }
.circle-card { display: grid; gap: .85rem; justify-items: start; }
.circle-card .shot {
  width: 100%; aspect-ratio: 1 / 1; border-radius: 50%; overflow: hidden;
  background: var(--ground-2);
}
.circle-card .shot img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.circle-card:hover .shot img { transform: scale(1.05); }
.circle-card .age {
  font-family: "Outfit", sans-serif; font-size: .72rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase; color: var(--leaf);
}
.circle-card:nth-child(2) .age { color: var(--sky); }
.circle-card:nth-child(3) .age { color: var(--blush); }
.circle-card:nth-child(4) .age { color: var(--butter); }
.circle-card p { font-size: .95rem; line-height: 1.6; color: var(--muted); }

/* ---------- Program detail rows ---------- */
.prog-row { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: clamp(1.75rem, 4vw, 4rem); align-items: center; }
.prog-row + .prog-row { margin-top: clamp(2.75rem, 6vw, 5rem); padding-top: clamp(2.75rem, 6vw, 5rem); border-top: 1px solid var(--line); }
.prog-row img { width: 100%; height: auto; aspect-ratio: 5 / 4; object-fit: cover; border-radius: var(--radius); }
.prog-row:nth-child(even) .media { order: 2; }
.prog-copy { display: grid; gap: 1rem; align-content: start; justify-items: start; }
@media (max-width: 820px) {
  .prog-row { grid-template-columns: 1fr; }
  .prog-row:nth-child(even) .media { order: -1; }
}

/* ---------- Steps ---------- */
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; counter-reset: step; }
.step {
  display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 1.4rem;
  padding: 1.6rem 0;
  border-top: 1px solid var(--line);
}
.step:first-child { border-top: 0; padding-top: 0; }
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: "Outfit", sans-serif; font-weight: 300; font-size: 1.6rem;
  color: var(--sky); line-height: 1;
  padding-top: .15rem;
}
.step h3 { margin-bottom: .35rem; }
.step p { font-size: .97rem; color: var(--muted); }

/* ---------- Tinted panels (the only fills on the page) ---------- */
.panel { border-radius: var(--radius); padding: clamp(1.5rem, 3vw, 2.3rem); display: grid; gap: .9rem; align-content: start; justify-items: start; }
.panel h3 { font-size: var(--step-1); }
.panel p { font-size: .97rem; }
.panel-sky    { background: var(--sky-soft); }
.panel-leaf   { background: var(--leaf-soft); }
.panel-butter { background: var(--butter-soft); }
.panel-blush  { background: var(--blush-soft); }
.panel-line   { box-shadow: var(--ring); }
.panel-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; align-items: start; }
@media (min-width: 940px) {
  .panel-grid.wide-left { grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr); }
}

.rows { display: grid; width: 100%; }
.rows div {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: .3rem 1.5rem;
  padding: .65rem 0; border-top: 1px solid var(--line);
  font-family: "Outfit", sans-serif; font-size: .95rem;
}
.rows div:first-child { border-top: 0; }
.rows span:last-child { color: var(--muted); font-variant-numeric: tabular-nums; }

.holidays { list-style: none; margin: 0; padding: 0; width: 100%; }
.holidays li {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: .3rem 1.5rem;
  padding: .8rem 0; border-top: 1px solid var(--line);
  font-family: "Outfit", sans-serif; font-size: .95rem; color: var(--ink);
}
.holidays li:first-child { border-top: 0; }
.holidays .when { color: var(--muted); font-size: .88rem; white-space: nowrap; }

/* ---------- Quote ---------- */
.quote { max-width: 24ch; }
.quote p {
  font-family: "Outfit", sans-serif; font-weight: 300;
  font-size: var(--step-2); line-height: 1.25; letter-spacing: -.02em; color: var(--ink);
}
.quote cite {
  display: block; margin-top: 1.1rem; font-style: normal;
  font-family: "Outfit", sans-serif; font-size: .8rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase; color: var(--muted);
}

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.1rem; }
.gallery button {
  padding: 0; border: 0; background: var(--ground-2); cursor: zoom-in;
  border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 4 / 3;
}
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery button:hover img { transform: scale(1.04); }
.gallery button:nth-child(3n+1) { aspect-ratio: 4 / 5; }
@media (max-width: 560px) { .gallery button:nth-child(3n+1) { aspect-ratio: 4 / 3; } }

.strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: .9rem; }
.strip a { border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 1 / 1; background: var(--ground-2); }
.strip img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.strip a:hover img { transform: scale(1.06); }

.lightbox {
  position: fixed; inset: 0; z-index: 120;
  background: rgba(17, 24, 26, .9);
  display: grid; place-items: center; padding: var(--gutter);
}
.lightbox img { max-width: min(1000px, 92vw); max-height: 84vh; border-radius: var(--radius-sm); }
.lightbox button {
  position: absolute; top: 1rem; right: 1rem;
  width: 44px; height: 44px; border-radius: 50%; border: 0;
  background: #fff; color: #22383D; font-size: 1.4rem; line-height: 1; cursor: pointer;
}

/* ---------- Closing invitation ---------- */
.invite {
  background: var(--sky-soft);
  border-radius: var(--radius);
  padding: clamp(2rem, 5vw, 3.5rem);
  display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: clamp(1.75rem, 4vw, 3.5rem); align-items: center;
}
.invite-copy { display: grid; gap: 1.1rem; justify-items: start; }
.invite-copy h2 { max-width: 18ch; }
.invite dl { margin: 0; display: grid; gap: 1.1rem; }
.invite dt {
  font-family: "Outfit", sans-serif; font-size: .74rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase; color: var(--sky);
  margin-bottom: .2rem;
}
.invite dd { margin: 0; font-size: .98rem; color: var(--ink); }
.invite dd a { color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--line-strong); }
.invite dd a:hover { color: var(--sky); border-bottom-color: currentColor; }
@media (max-width: 820px) { .invite { grid-template-columns: 1fr; } }

/* ---------- Forms ---------- */
.form { display: grid; gap: 1.1rem; width: 100%; }
.form-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 1.1rem; }
.field { display: grid; gap: .35rem; }
.field label { font-family: "Outfit", sans-serif; font-size: .82rem; font-weight: 500; letter-spacing: .04em; color: var(--muted); }
.field input, .field select, .field textarea {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1rem; color: var(--ink);
  background: var(--ground);
  border: 0; border-bottom: 1px solid var(--line-strong);
  padding: .6rem .1rem; width: 100%; border-radius: 0;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-bottom-color: var(--sky); }
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible { outline: 2px solid var(--sky); outline-offset: 4px; }
.form-note { font-size: .9rem; color: var(--muted); }

/* ---------- Footer (light, not dark) ---------- */
.site-footer {
  background: var(--ground-2);
  border-top: 1px solid var(--line);
  margin-top: clamp(3.5rem, 7vw, 6rem);
  padding-block: clamp(3rem, 6vw, 4.5rem) 1.75rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(auto-fit, minmax(150px, 1fr));
  gap: clamp(1.75rem, 4vw, 3rem);
}
.footer-brand img { height: 52px; width: auto; max-width: none; }
.footer-brand p { margin-top: 1rem; max-width: 32ch; font-size: .95rem; color: var(--muted); }
.site-footer h4 {
  font-family: "Outfit", sans-serif; font-size: .74rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase; color: var(--muted);
  margin-bottom: .9rem;
}
.footer-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; font-family: "Outfit", sans-serif; font-size: .95rem; }
.site-footer a { color: var(--ink); text-decoration: none; }
.site-footer a:hover { color: var(--sky); }
.socials { display: flex; gap: .5rem; margin-top: 1.2rem; }
.socials a {
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: var(--ring); color: var(--ink);
}
.socials a:hover { background: var(--sky); color: var(--ground); box-shadow: none; }
.footer-bottom {
  margin-top: clamp(2rem, 5vw, 3rem); padding-top: 1.3rem;
  border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between;
  font-family: "Outfit", sans-serif; font-size: .85rem; color: var(--muted);
}

/* ---------- Page banner ---------- */
.page-banner { padding-block: clamp(2.5rem, 5vw, 4rem) clamp(2rem, 4vw, 3rem); border-bottom: 1px solid var(--line); }
.page-banner .inner { display: grid; gap: 1rem; max-width: 58ch; }
.crumbs { font-family: "Outfit", sans-serif; font-size: .82rem; letter-spacing: .06em; color: var(--muted); }
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--sky); }

/* ---------- Reveal ---------- */
.js-anim .reveal { opacity: 0; transform: translateY(12px); transition: opacity .6s ease, transform .6s ease; }
.js-anim .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js-anim .reveal { opacity: 1; transform: none; } }
