/* ==========================================================================
   Tiny Scholars Daycare — Concept C, "Cut Paper"
   White page, full-bleed colour bands, photos taped up at an angle on torn
   colour blocks, poster type. Committed to light — it looks the same for
   every visitor, whatever their device theme is set to.
   Type: Archivo (poster display) / Rubik (text)
   ========================================================================== */

:root {
  color-scheme: light;

  --white:  #FFFFFF;
  --ink:    #14181C;
  --ink-2:  #3A4349;
  --muted:  #6B777D;
  --chalk:  #F1F3F1;

  --grass:  #4C9A05;
  --grass-d:#3A7704;
  --tomato: #DC4526;
  --sun:    #FFC121;
  --sky:    #1272C4;

  --rule:      3px solid var(--ink);
  --rule-thin: 2px solid var(--ink);
  --hair:      1px solid #DCE1DE;

  --step--1: clamp(.78rem, .76rem + .10vw, .86rem);
  --step-0:  clamp(1rem, .97rem + .18vw, 1.12rem);
  --step-1:  clamp(1.16rem, 1.06rem + .42vw, 1.40rem);
  --step-2:  clamp(1.55rem, 1.25rem + 1.35vw, 2.55rem);
  --step-3:  clamp(2.05rem, 1.50rem + 2.50vw, 3.85rem);
  --step-4:  clamp(2.60rem, 1.85rem + 3.35vw, 5.00rem);

  --gutter: clamp(1.15rem, 4vw, 3rem);
  --wrap:   1200px;
}

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

body {
  margin: 0;
  background: var(--white);
  color: var(--ink-2);
  font-family: "Rubik", "Helvetica Neue", Arial, sans-serif;
  font-size: var(--step-0);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: "Archivo", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink); margin: 0; text-wrap: balance;
}
h1 { font-size: var(--step-4); font-weight: 800; line-height: .95; letter-spacing: -.035em; }
h2 { font-size: var(--step-3); font-weight: 800; line-height: .98; letter-spacing: -.032em; }
h3 { font-size: var(--step-1); font-weight: 700; line-height: 1.18; letter-spacing: -.015em; }
p  { margin: 0; }
strong { color: var(--ink); font-weight: 600; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.lead { font-size: var(--step-1); line-height: 1.55; color: var(--ink-2); max-width: 46ch; }

/* ---------- Sticker labels: the eyebrow, cut out and taped on ---------- */
.label {
  display: inline-block;
  font-family: "Archivo", sans-serif;
  font-size: .78rem; font-weight: 700;
  letter-spacing: .13em; text-transform: uppercase;
  background: var(--grass); color: #fff;
  padding: .45rem .85rem; border-radius: 2px;
  transform: rotate(-1.6deg);
}
.label.t { background: var(--tomato); transform: rotate(1.4deg); }
.label.s { background: var(--sun); color: var(--ink); transform: rotate(-1.2deg); }
.label.b { background: var(--sky); transform: rotate(1.6deg); }

.skip { position: absolute; left: -9999px; top: 0; background: var(--ink); color: #fff; 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: "Archivo", sans-serif;
  font-weight: 700; font-size: 1rem; line-height: 1.1;
  padding: .95rem 1.6rem;
  border: 3px solid var(--ink); border-radius: 3px;
  text-decoration: none; white-space: nowrap; cursor: pointer;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform .12s ease, box-shadow .12s ease, background-color .15s ease, color .15s ease;
}
.btn svg { flex: none; }
.btn:hover, .btn:focus-visible { transform: translate(3px, 3px); box-shadow: 1px 1px 0 var(--ink); }
.btn-ink { background: var(--grass); color: #fff; }
.btn-ink:hover, .btn-ink:focus-visible { background: var(--grass-d); color: #fff; }
.btn-open { background: var(--white); color: var(--ink); }
.btn-open:hover, .btn-open:focus-visible { background: var(--sun); color: var(--ink); }
.on-color .btn-ink { background: var(--ink); color: #fff; }
.on-color .btn-open { background: var(--white); }

.arrowlink {
  font-family: "Archivo", sans-serif; font-weight: 700; font-size: .97rem;
  color: var(--ink); text-decoration: none;
  display: inline-flex; align-items: center; gap: .45rem;
  box-shadow: inset 0 -3px 0 var(--sun);
  transition: box-shadow .15s ease, gap .15s ease;
}
.arrowlink:hover { box-shadow: inset 0 -12px 0 var(--sun); gap: .7rem; }

/* ---------- Masthead ---------- */
.masthead { position: sticky; top: 0; z-index: 60; background: var(--white); border-bottom: var(--rule); }
.masthead-bar { display: flex; align-items: center; gap: 1.25rem; min-height: 86px; }
.brand { display: flex; align-items: center; margin-right: auto; text-decoration: none; }
.brand img { height: 48px; width: auto; max-width: none; flex: none; }

.nav { display: flex; align-items: center; gap: .1rem; }
.nav a {
  font-family: "Archivo", sans-serif; font-weight: 600; font-size: .93rem;
  color: var(--ink); text-decoration: none; white-space: nowrap;
  padding: .4rem .6rem; border-radius: 2px;
}
.nav a:hover { background: var(--sun); }
.nav a[aria-current="page"] { background: var(--ink); color: #fff; }

.masthead-cta { display: flex; align-items: center; gap: .9rem; }
.masthead-cta .btn { padding: .62rem 1.1rem; font-size: .92rem; box-shadow: 3px 3px 0 var(--ink); border-width: 2px; }
.tel {
  font-family: "Archivo", sans-serif; font-weight: 700; font-size: .97rem;
  color: var(--ink); text-decoration: none; white-space: nowrap;
  display: inline-flex; align-items: center; gap: .4rem;
}
.tel:hover { color: var(--grass-d); }

.nav-toggle { display: none; background: var(--sun); border: var(--rule-thin); border-radius: 3px; padding: .5rem; cursor: pointer; color: var(--ink); }
@media (max-width: 1120px) { .masthead-cta .tel { display: none; } }
@media (max-width: 940px) {
  .nav-toggle { display: inline-flex; }
  .masthead-cta { display: none; }
  .nav {
    position: fixed; inset: 86px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--white); border-bottom: var(--rule);
    padding: .5rem var(--gutter) 1.5rem;
    transform: translateY(-125%); transition: transform .26s ease;
    max-height: calc(100dvh - 86px); overflow-y: auto;
  }
  .nav a { padding: .9rem .6rem; font-size: 1.1rem; border-radius: 2px; }
  .nav.open { transform: translateY(0); }
  .nav .nav-extra { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.3rem; }
}
.nav .nav-extra { display: none; }
@media (max-width: 940px) { .nav .nav-extra { display: flex; } }

/* ---------- Full-bleed colour bands ---------- */
.band { width: 100vw; margin-left: calc(50% - 50vw); padding-block: clamp(2.75rem, 5.5vw, 4.5rem); }
.band-grass { background: var(--grass); color: #EAF6DC; }
.band-grass h2, .band-grass h3 { color: #fff; }
.band-sun { background: var(--sun); color: #4A3300; }
.band-sun h2, .band-sun h3 { color: var(--ink); }

/* ---------- Hero ---------- */
.hero { position: relative; }
.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .96fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding-left: max(var(--gutter), calc((100vw - var(--wrap)) / 2 + var(--gutter)));
  padding-block: clamp(2.5rem, 5.5vw, 4.5rem);
}
.hero-copy { display: grid; gap: 1.6rem; justify-items: start; }
.hero h1 { max-width: 11ch; }
.hero h1 mark {
  background: var(--sun); color: var(--ink);
  padding: .04em .14em; border-radius: 2px;
  box-decoration-break: clone; -webkit-box-decoration-break: clone;
}
.hero .lead { max-width: 38ch; }
.actions { display: flex; flex-wrap: wrap; gap: .85rem; }

.hero-photo { position: relative; }
.hero-photo img {
  width: 100%; height: auto; aspect-ratio: 1 / 1; object-fit: cover;
  border-top: var(--rule); border-bottom: var(--rule); border-left: var(--rule);
  border-radius: 3px 0 0 3px;
}
.hero-photo .tag {
  position: absolute; left: -26px; bottom: 34px;
  background: var(--tomato); color: #fff;
  font-family: "Archivo", sans-serif; font-weight: 800;
  font-size: 1.05rem; line-height: 1.15;
  padding: .85rem 1.15rem; border: var(--rule); border-radius: 3px;
  transform: rotate(-3deg);
  box-shadow: 5px 5px 0 var(--ink);
}
.hero-photo .tag span { display: block; font-weight: 600; font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; }

/* paper confetti */
.confetti { position: absolute; z-index: 2; border-radius: 2px; }
.confetti.one   { width: 28px; height: 28px; background: var(--sky);    left: 1.2%; top: 12%;  transform: rotate(18deg); }
.confetti.two   { width: 19px; height: 19px; background: var(--tomato); left: 2.6%; bottom: 16%; transform: rotate(-14deg); }
.confetti.three { width: 22px; height: 22px; background: var(--grass);  left: 50.5%; top: 7%;  transform: rotate(28deg); }
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; padding-right: var(--gutter); }
  .hero-photo { order: -1; }
  .hero-photo img { aspect-ratio: 4 / 3; border-right: var(--rule); border-radius: 3px; }
  .hero-photo .tag { left: auto; right: 10px; bottom: 10px; }
  .confetti { display: none; }
}

/* ---------- Facts, on the green band ---------- */
.facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(185px, 1fr)); gap: 0; }
.fact {
  padding: .5rem 1.5rem;
  display: grid; gap: .55rem; align-content: start;
  border-left: 2px solid rgba(255, 255, 255, .35);
}
.fact:first-child { border-left: 0; padding-left: 0; }
.fact .sq { width: 26px; height: 26px; background: var(--sun); border-radius: 2px; transform: rotate(-8deg); }
.fact:nth-child(2) .sq { background: var(--tomato); transform: rotate(7deg); }
.fact:nth-child(3) .sq { background: #fff; transform: rotate(-5deg); }
.fact:nth-child(4) .sq { background: var(--sky); transform: rotate(10deg); }
.fact:nth-child(5) .sq { background: var(--sun); transform: rotate(-9deg); }
.fact h3 { font-size: 1.06rem; }
.fact p { font-size: .93rem; line-height: 1.5; color: #DCEFC8; }
@media (max-width: 680px) {
  .fact { border-left: 0; padding: 1.1rem 0; border-top: 2px solid rgba(255,255,255,.3); }
  .fact:first-child { border-top: 0; padding-top: 0; }
}

/* ---------- Sections ---------- */
.section { padding-block: clamp(3.25rem, 6.5vw, 5.5rem); }
.head { display: grid; gap: 1.1rem; justify-items: start; max-width: 54ch; margin-bottom: clamp(2rem, 4vw, 3rem); }

/* ---------- Photos taped onto colour ---------- */
.stack { position: relative; padding: 20px 22px; }
.stack::before {
  content: ""; position: absolute; inset: 0;
  background: var(--grass); border-radius: 3px;
  transform: rotate(-2.6deg);
}
.stack.t::before { background: var(--tomato); transform: rotate(2.4deg); }
.stack.s::before { background: var(--sun);    transform: rotate(-3deg); }
.stack.b::before { background: var(--sky);    transform: rotate(2.8deg); }
.stack img {
  position: relative; z-index: 1;
  width: 100%; height: auto; aspect-ratio: 5 / 4; object-fit: cover;
  border: 9px solid #fff; border-radius: 2px;
  box-shadow: 0 0 0 3px var(--ink);
  transform: rotate(1.3deg);
}
.stack.t img, .stack.s img { transform: rotate(-1.5deg); }

.duo { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: clamp(2.25rem, 5vw, 4.5rem); align-items: center; }
.duo-copy { display: grid; gap: 1.2rem; align-content: start; justify-items: start; }
.duo.flip .stack { order: 2; }
@media (max-width: 720px) { .duo.flip .stack { order: -1; } }

/* ---------- Programs as ruled rows with a colour tab ---------- */
.roster { border-bottom: var(--rule); }
.roster-row {
  position: relative;
  display: grid; grid-template-columns: 158px minmax(0, 1fr) auto;
  gap: 1.25rem 2.25rem; align-items: center;
  padding: 1.9rem 0 1.9rem 1.6rem;
  border-top: var(--rule);
}
.roster-row::before { content: ""; position: absolute; left: 0; top: 1.9rem; bottom: 1.9rem; width: 9px; background: var(--grass); border-radius: 2px; }
.roster-row:nth-child(2)::before { background: var(--tomato); }
.roster-row:nth-child(3)::before { background: var(--sun); }
.roster-row:nth-child(4)::before { background: var(--sky); }
.roster-row .shot { width: 158px; height: 158px; overflow: hidden; border: 5px solid #fff; box-shadow: 0 0 0 3px var(--ink); border-radius: 2px; background: var(--chalk); transform: rotate(-2deg); }
.roster-row:nth-child(even) .shot { transform: rotate(2deg); }
.roster-row .shot img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.roster-row:hover .shot img { transform: scale(1.07); }
.roster-copy { display: grid; gap: .4rem; }
.roster-copy .age {
  font-family: "Archivo", sans-serif; font-size: 1.9rem; font-weight: 800;
  line-height: 1; letter-spacing: -.03em; color: var(--grass);
}
.roster-row:nth-child(2) .age { color: var(--tomato); }
.roster-row:nth-child(3) .age { color: #B07C00; }
.roster-row:nth-child(4) .age { color: var(--sky); }
.roster-copy h3 { font-size: 1.16rem; }
.roster-copy p { font-size: .98rem; color: var(--muted); max-width: 60ch; }
@media (max-width: 780px) {
  .roster-row { grid-template-columns: 104px minmax(0, 1fr); padding-left: 1.2rem; }
  .roster-row .shot { width: 104px; height: 104px; }
  .roster-row .arrowlink { grid-column: 2; }
}

/* ---------- Program detail ---------- */
.detail { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: clamp(2rem, 4vw, 4rem); align-items: center; }
.detail + .detail { margin-top: clamp(2.75rem, 5vw, 4.5rem); padding-top: clamp(2.75rem, 5vw, 4.5rem); border-top: var(--rule); }
.detail:nth-child(even) .stack { order: 2; }
.detail-copy { display: grid; gap: 1.1rem; align-content: start; justify-items: start; }
@media (max-width: 820px) {
  .detail { grid-template-columns: 1fr; }
  .detail:nth-child(even) .stack { order: -1; }
}

/* ---------- Numbered steps ---------- */
.steps { list-style: none; margin: 0; padding: 0; counter-reset: step; display: grid; gap: 1.2rem; }
.step {
  display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 1.5rem;
  padding: 1.5rem 1.6rem; border: var(--rule-thin); border-radius: 3px;
  box-shadow: 5px 5px 0 var(--ink);
  background: var(--white);
}
.step::before {
  counter-increment: step; content: counter(step);
  font-family: "Archivo", sans-serif; font-weight: 800; font-size: 2.4rem; line-height: .85;
  color: #fff; background: var(--grass);
  padding: .4rem .6rem; border-radius: 3px; align-self: start;
  transform: rotate(-3deg);
}
.step:nth-child(2)::before { background: var(--tomato); transform: rotate(3deg); }
.step:nth-child(3)::before { background: var(--sky);    transform: rotate(-2deg); }
.step:nth-child(4)::before { background: var(--sun); color: var(--ink); transform: rotate(2.5deg); }
.step:nth-child(5)::before { background: var(--grass);  transform: rotate(-3.5deg); }
.step h3 { margin-bottom: .3rem; }
.step p { font-size: .98rem; color: var(--muted); }

/* ---------- Boxes ---------- */
.box {
  border: var(--rule-thin); border-radius: 3px;
  box-shadow: 6px 6px 0 var(--ink);
  padding: clamp(1.4rem, 3vw, 2.1rem);
  display: grid; gap: .9rem; align-content: start; justify-items: start;
  background: var(--white);
}
.box h3 { font-size: var(--step-1); }
.box p { font-size: .98rem; }
.box .cap { width: calc(100% + 2px); height: 14px; background: var(--grass); margin: -.4rem 0 .3rem -1px; border-radius: 2px; }
.box.t .cap { background: var(--tomato); }
.box.s .cap { background: var(--sun); }
.box.b .cap { background: var(--sky); }
.boxes { display: grid; grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); gap: 1.8rem; align-items: start; }
@media (min-width: 940px) { .boxes.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: .62rem 0; border-top: var(--hair); font-size: .96rem; }
.rows div:first-child { border-top: 0; }
.rows span:first-child { font-weight: 500; color: var(--ink); }
.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: var(--hair); font-size: .96rem; color: var(--ink); }
.holidays li:first-child { border-top: 0; }
.holidays .when { color: var(--muted); font-size: .88rem; white-space: nowrap; }

/* ---------- Pull quote ---------- */
.pull { max-width: 20ch; }
.pull p {
  font-family: "Archivo", sans-serif; font-weight: 800;
  font-size: var(--step-2); line-height: 1.05; letter-spacing: -.03em; color: var(--ink);
}
.pull p::first-line { }
.pull cite { display: block; margin-top: 1.2rem; font-style: normal; font-family: "Archivo", sans-serif; font-size: .76rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }

/* ---------- Gallery: a taped-up photo wall ---------- */
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.5rem; }
.gallery button {
  padding: 0; border: 6px solid #fff; box-shadow: 0 0 0 3px var(--ink); border-radius: 2px;
  background: var(--chalk); cursor: zoom-in; overflow: hidden; aspect-ratio: 4 / 3;
  transition: transform .2s ease;
}
.gallery button:nth-child(3n+1) { transform: rotate(-1.8deg); }
.gallery button:nth-child(3n+2) { transform: rotate(1.5deg); }
.gallery button:nth-child(3n)   { transform: rotate(-.8deg); }
.gallery button:hover { transform: rotate(0) scale(1.02); z-index: 2; }
.gallery img { width: 100%; height: 100%; object-fit: cover; }
.gallery button:nth-child(4n+1) { aspect-ratio: 4 / 5; }
@media (max-width: 560px) { .gallery button:nth-child(4n+1) { aspect-ratio: 4 / 3; } }

.strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1.2rem; }
.strip a { border: 6px solid #fff; box-shadow: 0 0 0 3px var(--ink); border-radius: 2px; overflow: hidden; aspect-ratio: 1 / 1; background: var(--chalk); transition: transform .2s ease; }
.strip a:nth-child(odd)  { transform: rotate(-2deg); }
.strip a:nth-child(even) { transform: rotate(1.8deg); }
.strip a:hover { transform: rotate(0) scale(1.03); }
.strip img { width: 100%; height: 100%; object-fit: cover; }

.lightbox { position: fixed; inset: 0; z-index: 120; background: rgba(20, 24, 28, .93); display: grid; place-items: center; padding: var(--gutter); }
.lightbox img { max-width: min(1000px, 92vw); max-height: 84vh; border: 8px solid #fff; border-radius: 2px; }
.lightbox button { position: absolute; top: 1rem; right: 1rem; width: 46px; height: 46px; border: 0; border-radius: 3px; background: var(--sun); color: #14181C; font-size: 1.5rem; line-height: 1; cursor: pointer; }

/* ---------- Visit band ---------- */
.visit { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); gap: clamp(1.75rem, 4vw, 3.5rem); align-items: center; }
.visit-copy { display: grid; gap: 1.2rem; justify-items: start; }
.visit-copy h2 { max-width: 14ch; }
.visit dl { margin: 0; display: grid; gap: 1.1rem; background: var(--white); border: var(--rule); border-radius: 3px; box-shadow: 7px 7px 0 var(--ink); padding: clamp(1.4rem, 3vw, 2rem); }
.visit dt { font-family: "Archivo", sans-serif; font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: .25rem; }
.visit dd { margin: 0; font-size: .99rem; color: var(--ink); }
.visit dd a { color: var(--ink); text-decoration: none; box-shadow: inset 0 -3px 0 var(--sun); }
.visit dd a:hover { box-shadow: inset 0 -11px 0 var(--sun); }
@media (max-width: 820px) { .visit { grid-template-columns: 1fr; } }

/* ---------- Forms ---------- */
.form { display: grid; gap: 1.15rem; width: 100%; }
.form-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(185px, 1fr)); gap: 1.15rem; }
.field { display: grid; gap: .35rem; }
.field label { font-family: "Archivo", sans-serif; font-size: .74rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.field input, .field select, .field textarea {
  font-family: "Rubik", sans-serif; font-size: 1rem; color: var(--ink);
  background: var(--white); border: var(--rule-thin); border-radius: 3px;
  padding: .75rem .85rem; width: 100%;
}
.field textarea { min-height: 125px; resize: vertical; }
.form-note { font-size: .92rem; color: var(--muted); }
.form-note a { color: var(--ink); box-shadow: inset 0 -3px 0 var(--sun); text-decoration: none; }

/* ---------- Page banner ---------- */
.banner { padding-block: clamp(2.4rem, 5vw, 3.75rem) clamp(1.9rem, 4vw, 2.75rem); border-bottom: var(--rule); }
.banner .inner { display: grid; gap: 1.1rem; max-width: 56ch; }
.crumbs { font-family: "Archivo", sans-serif; font-size: .8rem; font-weight: 600; letter-spacing: .05em; color: var(--muted); }
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--ink); }

/* ---------- Footer ---------- */
.colophon { border-top: 10px solid var(--grass); margin-top: clamp(3.5rem, 7vw, 6rem); padding-block: clamp(2.75rem, 5vw, 4rem) 1.75rem; background: var(--white); }
.colophon-grid { display: grid; grid-template-columns: minmax(0, 1.5fr) repeat(auto-fit, minmax(148px, 1fr)); gap: clamp(1.75rem, 4vw, 3rem); }
.colophon-brand img { height: 56px; width: auto; max-width: none; }
.colophon-brand p { margin-top: 1rem; max-width: 32ch; font-size: .94rem; color: var(--muted); }
.colophon h4 { font-family: "Archivo", sans-serif; font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-bottom: .85rem; }
.colophon ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; font-size: .96rem; }
.colophon a { color: var(--ink); text-decoration: none; }
.colophon a:hover { box-shadow: inset 0 -3px 0 var(--sun); }
.socials { display: flex; gap: .6rem; margin-top: 1.2rem; }
.socials a { width: 42px; height: 42px; border: var(--rule-thin); border-radius: 3px; display: grid; place-items: center; color: var(--ink); box-shadow: 3px 3px 0 var(--ink); }
.socials a:hover { background: var(--sun); box-shadow: 1px 1px 0 var(--ink); transform: translate(2px, 2px); }
.colophon-foot { margin-top: clamp(2rem, 4vw, 3rem); padding-top: 1.3rem; border-top: var(--hair); display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between; font-size: .86rem; color: var(--muted); }

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