/* Tickaboo — /about/ page-specific styles.
 *
 * Loaded automatically after fonts/tokens/base/components (see
 * tools/stitch.js → injectPageCssLink) because this file's name matches
 * the page slug ("about"). Governed by design-guide/current.md §13
 * (interior marketing page pattern).
 *
 * Rebuilt 26 Aug 2026. The v1 page was a stack of centred text columns
 * with no imagery, no cards and no dark value, and it silently rendered
 * the retired v2 finishes because those recipes were scoped `.page-home`
 * inside home.css. Those are now unscoped in components.css (§"v3 SHARED
 * CHROME"), so this file only owns what is genuinely unique to /about/.
 *
 * The .chip-soon, .faq* and .close* rules this file used to duplicate were
 * extracted into components.css on 26 Aug once /tools/blur-faces/ became the
 * third page needing them. Do not copy them back here.
 */

/* ═══════════════════════════════════════════════════════════════════
   HERO — copy left, educator right. Half and half on desktop; the
   image leads on mobile because it carries the whole proposition.
   ═══════════════════════════════════════════════════════════════════ */
.about-hero {
  position: relative;
  overflow: clip;
  padding-block: clamp(2.5rem, 6vw, 4.5rem) clamp(2.5rem, 6vw, 4rem);
}
.about-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}
@media (min-width: 900px) {
  .about-hero__inner { grid-template-columns: 1fr 1fr; }
}
.about-hero__copy h1 {
  margin-bottom: 1.1rem;
  font-size: clamp(2.4rem, 1.9rem + 2.4vw, 3.5rem);
}
.about-hero__copy .lead { max-width: 46ch; margin-bottom: 1.9rem; }
.about-hero__actions { display: flex; flex-wrap: wrap; gap: 0.85rem; }

/* The educator sits on flat white, so she reads as a cut-out floating on
   the page ground rather than a photo in a box. No frame, no shadow. */
.about-hero__visual { margin: 0; }
.about-hero__visual img {
  display: block;
  width: 100%;
  max-width: 520px;
  height: auto;
  margin-inline: auto;
  /* The photo ends at her waist. Without this the crop reads as a hard
     rule across the page; the fade lets her dissolve into the white
     ground so she reads as a cut-out rather than a boxed photo. */
  -webkit-mask-image: linear-gradient(to bottom, #000 78%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 78%, transparent 100%);
}
.about-hero__floats .float-cluster--nw { top: 4%; left: -4%; }
.about-hero__floats .float-cluster--nw .float-shape:nth-child(1) { width: 118px; height: 118px; }
.about-hero__floats .float-cluster--nw .float-shape:nth-child(2) {
  width: 84px; height: 34px; top: 106px; left: 62px;
}
.about-hero__floats > .float-shape--ring {
  width: 132px; height: 132px; top: 5%; right: 3%;
}
.about-hero__floats > .float-shape--blob {
  width: 96px; height: 96px; bottom: 6%; left: 41%;
}
@media (max-width: 899px) {
  .about-hero__floats > .float-shape--blob { display: none; }
  .about-hero__inner { text-align: center; }
  .about-hero__copy .lead { margin-inline: auto; }
  .about-hero__actions { justify-content: center; }
}
/* §12: shapes sit behind content and never crowd text. Stacked, the h1
   runs the full width, so all but one shape come out on a phone. */
@media (max-width: 720px) {
  .about-hero__floats > .float-shape--ring,
  .about-hero__floats .float-cluster--nw .float-shape:nth-child(2) { display: none; }
  .about-hero__floats .float-cluster--nw { top: 1%; left: -12%; }
  .about-hero__floats .float-cluster--nw .float-shape:nth-child(1) { width: 92px; height: 92px; }
}

/* ═══════════════════════════════════════════════════════════════════
   Statement titles (§4 word-fill). Centred here rather than home's
   left-aligned treatment: these two sections open on the statement
   with nothing beside it, so centred is the stronger block.
   ═══════════════════════════════════════════════════════════════════ */
.about-why__title,
.about-believe__title {
  text-align: center;
  max-width: 26ch;
  margin: 0 auto clamp(1.25rem, 2.5vw, 1.75rem);
  font-size: clamp(2.1rem, 1.8rem + 1.6vw, 2.85rem);
}
/* The trailing full stop is its own .word so the fill reaches it last;
   it must not carry the inter-word space in front of it. */
.about-why__title .word + .word:last-child,
.about-believe__title .word + .word:last-child { margin-left: -0.28em; }

/* ═══════════════════════════════════════════════════════════════════
   Inline info cards (§8 treatment 1: pastel tint fill, no border,
   no shadow). Tints rotate so neighbouring cards differ subtly.
   ═══════════════════════════════════════════════════════════════════ */
.info-cards {
  display: grid;
  gap: clamp(1rem, 2vw, 1.25rem);
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .info-cards { grid-template-columns: repeat(3, 1fr); } }
.info-card {
  padding: clamp(1.6rem, 3vw, 2rem) clamp(1.5rem, 2.6vw, 1.75rem);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
}
.info-card:nth-child(2) { background: var(--color-paper); }
.info-card:nth-child(3) { background: color-mix(in srgb, var(--color-primary) 9%, var(--color-surface-tint)); }
.info-card h3 { margin: 0 0 0.5rem; }
.info-card p { margin: 0; color: var(--color-muted); }

/* ═══════════════════════════════════════════════════════════════════
   Card photography — a real snapshot of the problem, square, sitting
   flush inside the card's tint. These are generated to look like an
   ordinary phone photo: mixed fluoro and window light, missed focus,
   genuine mess. See page-craft.md §10 for how they are prompted.
   No child's face appears in any of them.
   ═══════════════════════════════════════════════════════════════════ */
.info-card__shot {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1.15rem;
  background: color-mix(in srgb, var(--color-ink) 6%, transparent);
}

/* ═══════════════════════════════════════════════════════════════════
   Belief grid — the same tint treatment, three across on desktop.
   ═══════════════════════════════════════════════════════════════════ */
.belief-grid {
  display: grid;
  gap: clamp(1rem, 2vw, 1.25rem);
  grid-template-columns: 1fr;
}
@media (min-width: 620px) { .belief-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .belief-grid { grid-template-columns: repeat(3, 1fr); } }
.belief {
  padding: clamp(1.5rem, 2.8vw, 1.85rem);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
}
.belief:nth-child(2n) { background: var(--color-paper); }
.belief:nth-child(3n) { background: color-mix(in srgb, var(--color-primary) 9%, var(--color-surface-tint)); }
.belief .icon-tick { color: var(--color-primary); margin-bottom: 0.85rem; }
.belief h3 { margin: 0 0 0.45rem; font-size: 1.125rem; }
.belief p { margin: 0; color: var(--color-muted); font-size: 0.9375rem; }

/* ═══════════════════════════════════════════════════════════════════
   Founder — the page's one dark value (§8 featured-card drench).
   ═══════════════════════════════════════════════════════════════════ */
.founder {
  /* Sage brush and sage accent: the green underline would disappear
     against the green drench. Same stroke, legible fill. */
  --underline-brush: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 12' preserveAspectRatio='none'%3E%3Cpath d='M2.5 8.6 C 24 4.2, 55 2.6, 96 3.4 C 106 3.6, 114 4.2, 117.5 5.1 C 118.6 5.5, 118.3 6.6, 116.8 6.7 C 96 6.2, 66 6.4, 38 8.2 C 24 9.1, 12 10.2, 5 11 C 3.2 11.1, 1.8 10.2, 2 9.4 Z' fill='%23C5DCC8' fill-opacity='0.9'/%3E%3C/svg%3E");
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
  padding: clamp(2rem, 4.5vw, 3.25rem);
  border-radius: var(--radius-lg);
  background: var(--color-dark);
  color: var(--color-dark-ink);
}
@media (min-width: 860px) { .founder { grid-template-columns: 1.35fr 1fr; align-items: start; } }
.founder h2 {
  color: var(--color-dark-ink);
  margin-bottom: 1rem;
  font-size: clamp(2rem, 1.7rem + 1.4vw, 2.6rem);
}
.founder .accent--quicksand { color: var(--color-accent-2); }
.founder__copy p {
  color: color-mix(in srgb, var(--color-dark-ink) 82%, transparent);
  max-width: 54ch;
}
.founder__copy p:last-child { margin-bottom: 0; }

/* Paperwork as a quiet definition list. The old doc-table forced a
   640px min-width and clipped the ABN on a phone. */
.founder__facts { margin: 0; display: grid; gap: 0.7rem; align-content: start; }
.founder__facts > div {
  display: grid;
  gap: 0.15rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid color-mix(in srgb, var(--color-dark-ink) 18%, transparent);
}
.founder__facts > div:last-child { border-bottom: 0; padding-bottom: 0; }
.founder__facts dt {
  font-size: 0.75rem; letter-spacing: 0.04em; text-transform: uppercase;
  color: color-mix(in srgb, var(--color-dark-ink) 62%, transparent);
}
.founder__facts dd {
  margin: 0;
  font-family: var(--font-heading); font-weight: 600;
  font-size: 0.9375rem; color: var(--color-dark-ink);
  overflow-wrap: anywhere;
}
.founder__facts a { color: var(--color-accent-2); text-decoration: underline; text-underline-offset: 3px; }
.founder__facts a:hover { color: var(--color-dark-ink); }
