/* ============================================================
   Naveen Varghese — personal site
   Design system: editorial / analytical / human
   ============================================================ */

/* ---------- 1. Tokens ---------- */
:root {
  /* Colour — a restrained four-tone palette. Warm near-black,
     bone paper, one signal colour (burnt sienna), one graphite. */
  --ink:        #0D0C0B;
  --ink-raised: #17151300;
  --paper:      #F4F1EA;
  --paper-warm: #EBE6DC;
  --accent:     #C2542A;
  --accent-lo:  #E0A184;
  --leaf:       #7F8C60;
  --leaf-fill:  rgba(127, 140, 96, 0.17);
  --bloom-fill: rgba(194, 84, 42, 0.20);

  --on-ink:        #F4F1EA;
  --on-ink-muted:  #948C81;
  --on-ink-faint:  #7C766D;
  --on-paper:       #14120F;
  --on-paper-muted: #6A6459;
  --on-paper-faint: #B8B0A3;

  --rule-ink:   rgba(244, 241, 234, 0.14);
  --rule-paper: rgba(20, 18, 15, 0.14);

  /* Type */
  --font-display: "Instrument Serif", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --font-sans: "Instrument Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --t-hero:    clamp(2.7rem, min(9.4vw, 13.2svh), 8rem);
  --t-display: clamp(2.1rem, 6vw, 5.25rem);
  --t-section: clamp(1.75rem, 4.2vw, 3.5rem);
  --t-lead:    clamp(1.15rem, 2.1vw, 1.65rem);
  --t-body:    clamp(1rem, 1.15vw, 1.0625rem);
  --t-small:   0.8125rem;
  --t-label:   0.6875rem;

  /* Space */
  --gutter: clamp(1.25rem, 5vw, 5.5rem);
  --section-y: clamp(5rem, 13vh, 11rem);
  --max: 1440px;
  --measure: 62ch;

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 0.72s;
  --pin: 78svh;          /* scroll distance the hero holds while the plant grows */
}

/* ---------- 2. Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, figure, blockquote, dl, dd, ul, ol { margin: 0; padding: 0; }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; }

body {
  background: var(--ink);
  color: var(--on-ink);
  font-family: var(--font-sans);
  font-size: var(--t-body);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection { background: var(--accent); color: var(--paper); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 2px;
}

.skip-link {
  position: absolute; left: 1rem; top: -100px; z-index: 200;
  background: var(--accent); color: var(--paper);
  padding: 0.75rem 1.25rem; font-size: var(--t-small);
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 1rem; }

.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;
}

/* ---------- 3. Layout primitives ---------- */
.section { padding: var(--section-y) 0; position: relative; }
:where(section, header)[id] { scroll-margin-top: 5.25rem; }
.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); }

.section--ink   { background: var(--ink);  color: var(--on-ink);  --muted-ctx: var(--on-ink-muted); }
.section--paper { background: var(--paper); color: var(--on-paper); --muted-ctx: var(--on-paper-muted); }
.section--paper .muted { color: var(--on-paper-muted); }
.muted { color: var(--on-ink-muted); }

/* Section eyebrow — a small monospaced index label */
.eyebrow {
  font-family: var(--font-mono);
  font-size: var(--t-label);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: baseline;
  gap: 0.85rem;
  margin-bottom: clamp(1.75rem, 4vw, 3rem);
}
.eyebrow::after {
  content: "";
  flex: 1;
  height: 1px;
  background: currentColor;
  opacity: 0.28;
  transform: translateY(-0.25em);
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--t-section);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.015em;
  max-width: 18ch;
}
.section-title em { font-style: italic; color: var(--accent); }

.lead {
  font-size: var(--t-lead);
  line-height: 1.5;
  max-width: 44ch;
  font-weight: 400;
}

/* ---------- 4. Navigation ---------- */
.progress {
  position: fixed; inset: 0 auto auto 0; z-index: 90;
  height: 2px; width: 100%;
  transform-origin: 0 50%; transform: scaleX(0);
  background: var(--accent);
  will-change: transform;
}

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 80;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem;
  padding: 1.1rem var(--gutter);
  background: color-mix(in srgb, var(--ink) 82%, transparent);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transform: translateY(-102%);
  transition: transform 0.5s var(--ease), background 0.4s var(--ease), border-color 0.4s var(--ease);
}
.nav.is-visible { transform: translateY(0); border-bottom-color: var(--rule-ink); }
.nav.is-light {
  background: color-mix(in srgb, var(--paper) 84%, transparent);
  color: var(--on-paper);
  border-bottom-color: var(--rule-paper);
}

.nav__mark {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  white-space: nowrap;
}
.nav__mark span { color: var(--accent); }

.nav__links { display: flex; gap: clamp(1rem, 2.2vw, 2.25rem); align-items: center; }
.nav__link {
  font-size: var(--t-small);
  text-decoration: none;
  letter-spacing: 0.02em;
  opacity: 0.62;
  position: relative;
  padding-block: 0.35rem;
  transition: opacity 0.3s var(--ease);
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: var(--accent);
  transform: scaleX(0); transform-origin: 0 50%;
  transition: transform 0.4s var(--ease);
}
.nav__link:hover, .nav__link:focus-visible { opacity: 1; }
.nav__link[aria-current="true"] { opacity: 1; }
.nav__link[aria-current="true"]::after,
.nav__link:hover::after { transform: scaleX(1); }

.nav__toggle { display: none; }

/* Mobile menu */
@media (max-width: 760px) {
  .nav__toggle {
    display: flex; flex-direction: column; gap: 5px;
    padding: 0.6rem 0.25rem; align-items: flex-end;
  }
  .nav__toggle i {
    display: block; width: 22px; height: 1.5px; background: currentColor;
    transition: transform 0.35s var(--ease), opacity 0.25s var(--ease), width 0.35s var(--ease);
  }
  .nav__toggle i:last-child { width: 14px; }
  .nav[data-open="true"] .nav__toggle i:first-child { transform: translateY(6.5px) rotate(45deg); }
  .nav[data-open="true"] .nav__toggle i:last-child { transform: translateY(-6.5px) rotate(-45deg); width: 22px; }

  /* The overlay is positioned against the NAV, not the viewport, and the nav
     grows to fill the screen when open. It cannot be `position: fixed` here:
     .nav carries both a transform and a backdrop-filter, and either one makes
     it the containing block for fixed descendants — which pinned the menu to
     the 68px bar and hid it off-screen. */
  .nav[data-open="true"] {
    /* Pin to the real visual viewport. 100svh is the *smallest* viewport
       height, so when the phone's address bar collapses the panel falls short
       of the bottom; anchoring top and bottom sidesteps svh/lvh/dvh entirely. */
    bottom: 0;
    height: auto;
    align-items: flex-start;
    background: var(--ink);
    /* Force the light palette: over a paper section .nav.is-light sets a
       near-black colour, which made the close X black-on-black. */
    color: var(--on-ink);
    backdrop-filter: none; -webkit-backdrop-filter: none;
    /* Zero the border, don't just make it transparent: 1px of border still
       occupies layout, and the absolutely-positioned menu resolves inset:0
       against the padding box — leaving a 1px seam at the bottom edge. */
    border-bottom: 0;
  }
  .nav__mark, .nav__toggle { position: relative; z-index: 2; }

  /* The close control is accent-coloured so it's findable at a glance, and
     given a comfortable tap target. */
  .nav[data-open="true"] .nav__toggle {
    /* ~44x44 hit area (the accessibility minimum for a touch target), with a
       negative margin so the glyph stays put against the gutter. */
    padding: 1.15rem 0.7rem;
    margin: -0.35rem -0.35rem -0.35rem 0;
  }
  .nav[data-open="true"] .nav__toggle i { background: var(--accent); height: 2px; }

  .nav__links {
    position: absolute; inset: 0; z-index: 1;
    flex-direction: column; justify-content: center; align-items: flex-start;
    gap: 0.35rem;
    padding: 0 var(--gutter);
    background: var(--ink); color: var(--on-ink);
    opacity: 0; pointer-events: none;
    transition: opacity 0.4s var(--ease);
  }
  .nav[data-open="true"] .nav__links { opacity: 1; pointer-events: auto; }
  .nav__link {
    font-family: var(--font-display);
    font-size: clamp(2rem, 9vw, 3rem);
    opacity: 1;
    padding-block: 0.2rem;
    transform: translateY(18px);
    transition: transform 0.5s var(--ease) calc(var(--i) * 0.045s), opacity 0.4s var(--ease);
  }
  .nav[data-open="true"] .nav__link { transform: translateY(0); }
  .nav__link::after { display: none; }
}

/* ---------- 5. Hero ---------- */
.hero-stage { position: relative; }
/* The runway only exists when scripts can drive the plant. Without JS — or
   with reduced motion — the hero is an ordinary one-screen block. */
.js .hero-stage { height: calc(100svh + var(--pin)); }
.js .hero { position: sticky; top: 0; }

.hero {
  height: 100svh; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: clamp(4.5rem, 9.5vh, 6.75rem) 0 clamp(1.5rem, 3vh, 2.25rem);
  position: relative; overflow: hidden;
  background: var(--ink);
}

/* Analytical backdrop: faint measurement grid + one drawn trend line.
   Deliberately quiet — it should read as graph paper, not decoration. */
.hero__grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(244,241,234,0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(244,241,234,0.035) 1px, transparent 1px);
  background-size: clamp(48px, 7vw, 92px) clamp(48px, 7vw, 92px);
  mask-image: radial-gradient(ellipse 110% 85% at 60% 40%, #000 20%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 110% 85% at 60% 40%, #000 20%, transparent 78%);
}
/* ---------- Growth, plotted ----------
   The stem IS the trend line: it climbs the same axis the money is measured on,
   puts out a leaf at each level it clears, and flowers when it gets there.
   Drawn once on load; every "starts hidden" state is gated behind .js so the
   finished plant is simply present if scripts never run. */
.hero__lede { display: flex; flex-direction: column; gap: clamp(1.75rem, 5vh, 3.5rem); }

.growth { margin: 0; height: clamp(275px, 63svh, 580px); justify-self: start; align-self: end; }
.growth svg { height: 100%; width: auto; display: block; overflow: visible; }

.growth .grid line { stroke: rgba(244, 241, 234, 0.055); stroke-width: 1; }
.growth .axis line { stroke: var(--rule-ink); stroke-width: 1; }
.growth .tick {
  fill: var(--on-ink-muted);
  font-family: var(--font-mono);
  font-size: 14px; letter-spacing: 0.04em;
}
.growth .node { fill: var(--accent); }
.growth .soil { stroke: var(--rule-ink); stroke-width: 1.5; fill: none; stroke-linecap: round; }

.growth .stem {
  fill: none; stroke: var(--leaf); stroke-width: 2.5;
  stroke-linecap: round; stroke-dasharray: 640; stroke-dashoffset: 0;
}
.growth .leaf { fill: var(--leaf-fill); stroke: var(--leaf); stroke-width: 1.4; }
.growth .vein { fill: none; stroke: var(--leaf); stroke-width: 1; opacity: 0.65; }
.growth .petal { fill: var(--bloom-fill); stroke: var(--accent); stroke-width: 1.4; }
.growth .core { fill: var(--accent); }

/* --- motion: a single paused timeline, scrubbed by scroll ---
   Every part runs the same 4-second timeline but starts at its own offset.
   JS sets --t (seconds elapsed); the negative animation-delay positions each
   element at that instant. Because nothing is actually *playing*, scrolling
   backwards rewinds the plant to a sapling exactly as it grew. */
.js .growth .stem,
.js .growth .leaf-g,
.js .growth .petal,
.js .growth .core,
.js .growth .node { animation-play-state: paused; animation-fill-mode: both; }

.js .growth .stem {
  stroke-dashoffset: 626;   /* a sprout, before anything happens */
  /* linear, not eased: a scrubbed timeline should track the scroll 1:1 —
     an ease-out curve jumps most of the way on the first notch. */
  animation-name: stem-draw; animation-duration: 2.9s; animation-timing-function: linear;
  animation-delay: calc((0.15 - var(--t, 0)) * 1s);
}
@keyframes stem-draw { to { stroke-dashoffset: 0; } }

.js .growth .leaf-g {
  transform: scale(0); transform-box: fill-box; transform-origin: 0% 66%;
  animation-name: leaf-open; animation-duration: 0.85s; animation-timing-function: var(--ease-out);
  animation-delay: calc((0.85 + var(--i) * 0.42 - var(--t, 0)) * 1s);
}
@keyframes leaf-open { to { transform: scale(1); } }

.js .growth .petal {
  transform: scale(0); transform-box: fill-box; transform-origin: 0% 50%;
  animation-name: petal-open; animation-duration: 0.75s; animation-timing-function: var(--ease-out);
  animation-delay: calc((2.8 + var(--i) * 0.08 - var(--t, 0)) * 1s);
}
@keyframes petal-open { to { transform: scale(1); } }

.js .growth .core {
  transform: scale(0); transform-box: fill-box; transform-origin: 50% 50%;
  animation-name: core-pop; animation-duration: 0.55s; animation-timing-function: var(--ease-out);
  animation-delay: calc((3.4 - var(--t, 0)) * 1s);
}
@keyframes core-pop { to { transform: scale(1); } }

.js .growth .node {
  opacity: 0;
  animation-name: node-in; animation-duration: 0.5s; animation-timing-function: linear;
  animation-delay: calc((1 + var(--i) * 0.56 - var(--t, 0)) * 1s);
}
@keyframes node-in { to { opacity: 1; } }

.hero__inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.04fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: end;
}

.hero__quote {
  font-family: var(--font-display);
  font-size: var(--t-hero);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.028em;
  text-wrap: balance;
}
.hero__quote .line { display: block; overflow: hidden; padding-bottom: 0.14em; margin-bottom: -0.14em; }
.hero__quote .line > span {
  display: block;
  transform: translateY(105%);
  animation: rise 1.15s var(--ease-out) forwards;
  animation-delay: calc(0.12s + var(--i) * 0.13s);
}
@keyframes rise { to { transform: translateY(0); } }
.hero__quote .accent { color: var(--accent); font-style: italic; }

.hero__foot {
  position: relative; z-index: 2;
  display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: flex-start;
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-top: clamp(1.5rem, 4.5vh, 3.5rem);
  opacity: 0; animation: fade 1s var(--ease) 1.05s forwards;
}
@keyframes fade { to { opacity: 1; } }

.hero__id { max-width: 52ch; }
.hero__name {
  font-family: var(--font-mono);
  font-size: var(--t-label);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--on-ink-muted);
  margin-bottom: 0.9rem;
}
.hero__role {
  font-size: clamp(1.05rem, 1.9vw, 1.4rem);
  line-height: 1.45;
  max-width: 46ch;
}
.hero__role b { font-weight: 500; color: var(--paper); }

.hero__disciplines {
  display: flex; flex-wrap: wrap; gap: 0.5rem 0.9rem;
  font-family: var(--font-mono); font-size: var(--t-label);
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--on-ink-muted);
  margin-top: 1.25rem;
}
.hero__disciplines li { display: flex; align-items: center; gap: 0.9rem; }
.hero__disciplines li:not(:last-child)::after {
  content: ""; width: 4px; height: 4px; border-radius: 50%; background: var(--accent); opacity: 0.7;
}

.hero__cue {
  display: flex; align-items: center; gap: 0.75rem;
  font-family: var(--font-mono); font-size: var(--t-label);
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--on-ink-muted);
  text-decoration: none; white-space: nowrap;
}
.hero__cue i {
  display: block; width: 1px; height: 44px; background: var(--rule-ink); position: relative; overflow: hidden;
}
.hero__cue i::after {
  content: ""; position: absolute; inset: 0; background: var(--accent);
  animation: trickle 2.4s var(--ease) infinite;
}
@keyframes trickle {
  0%   { transform: translateY(-100%); }
  55%  { transform: translateY(0); }
  100% { transform: translateY(100%); }
}

/* ---------- 6. Reveal system ---------- */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity var(--dur) var(--ease-out), transform var(--dur) var(--ease-out); }
.js .reveal.is-in { opacity: 1; transform: none; }
.js .reveal[data-delay] { transition-delay: calc(var(--i, 0) * 0.085s); }

.reveal-mask { overflow: hidden; display: block; }
.js .reveal-mask > * { display: block; transform: translateY(100%); transition: transform 0.95s var(--ease-out); }
.js .reveal-mask.is-in > * { transform: none; }

/* ---------- 6b. Soft image edges ----------
   Every photograph dissolves into its ground rather than stopping at a hard
   rectangle. Two gradient masks intersected = a feather on all four sides.
   If mask-composite is unsupported the layers simply add, which degrades to
   an almost-full image — never a broken one. */
.feather {
  --feather: clamp(10px, 1.8vw, 26px);
  -webkit-mask-image:
    linear-gradient(to right,  transparent 0, #000 var(--feather), #000 calc(100% - var(--feather)), transparent 100%),
    linear-gradient(to bottom, transparent 0, #000 var(--feather), #000 calc(100% - var(--feather)), transparent 100%);
          mask-image:
    linear-gradient(to right,  transparent 0, #000 var(--feather), #000 calc(100% - var(--feather)), transparent 100%),
    linear-gradient(to bottom, transparent 0, #000 var(--feather), #000 calc(100% - var(--feather)), transparent 100%);
  -webkit-mask-composite: source-in;
          mask-composite: intersect;
}

/* ---------- 7. Positioning ---------- */
.positioning__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
.positioning__body p { max-width: var(--measure); }
.positioning__body p + p { margin-top: 1.35rem; }
.positioning__body .big {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.1vw, 2.5rem);
  line-height: 1.16; letter-spacing: -0.012em;
  max-width: 24ch; margin-bottom: 2rem;
}
.positioning__body .big b { font-weight: 400; color: var(--accent); font-style: italic; }

.portrait { position: relative; }
.portrait img {
  width: 100%; aspect-ratio: 3 / 4; object-fit: cover; object-position: 50% 22%;
  filter: grayscale(1) contrast(1.05);
  transition: filter 0.8s var(--ease);
}
.portrait:hover img { filter: grayscale(0.15) contrast(1); }
.portrait figcaption {
  margin-top: 0.9rem;
  font-family: var(--font-mono); font-size: var(--t-label);
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--on-paper-muted);
  display: flex; justify-content: space-between; gap: 1rem;
}

/* The operating loop */
.loop {
  margin-top: clamp(3rem, 7vw, 5rem);
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem 0.35rem;
  font-family: var(--font-mono); font-size: clamp(0.7rem, 1.35vw, 0.9rem);
  letter-spacing: 0.12em; text-transform: uppercase;
  padding-top: 2rem; border-top: 1px solid var(--rule-paper);
}
.loop li { display: flex; align-items: center; gap: 0.35rem; }
.loop li:not(:last-child)::after { content: "→"; color: var(--accent); margin-inline: 0.3rem; }

/* ---------- 8. By the numbers ---------- */
.metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  border-top: 1px solid var(--rule-ink);
}
.metric {
  padding: clamp(1.75rem, 3.5vw, 2.75rem) clamp(1rem, 2vw, 2rem) clamp(1.75rem, 3.5vw, 2.5rem) 0;
  border-bottom: 1px solid var(--rule-ink);
  border-right: 1px solid var(--rule-ink);
  display: flex; flex-direction: column; gap: 0.75rem;
}
.metric__value {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6.2vw, 5rem);
  line-height: 0.92; letter-spacing: -0.03em;
  color: var(--paper);
  font-variant-numeric: tabular-nums;
}
.metric__value sup { font-size: 0.42em; vertical-align: super; color: var(--accent); letter-spacing: 0; }
/* A masked digit — reads as deliberate redaction, not a typo. */
.metric__value .mask { color: var(--accent); font-style: italic; }
.metrics__caveat b { color: var(--paper); font-weight: 500; }
.metric__label {
  font-family: var(--font-mono); font-size: var(--t-label);
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent);
}
.metric__note { font-size: 0.925rem; line-height: 1.5; color: var(--on-ink-muted); max-width: 34ch; }

.metrics__caveat {
  margin-top: 1.5rem; font-size: var(--t-small); color: var(--on-ink-faint);
  max-width: 70ch; line-height: 1.6;
}

/* ---------- 9. Journey / timeline ---------- */
.journey__head { margin-bottom: clamp(2.5rem, 6vw, 4.5rem); }
.journey__layout {
  display: grid;
  grid-template-columns: minmax(190px, 260px) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

/* Sticky rail */
.rail { position: sticky; top: 18vh; align-self: start; }
.rail__year {
  font-family: var(--font-display);
  font-size: clamp(3.25rem, 7vw, 5.5rem);
  line-height: 0.9; letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  display: block; margin-bottom: 0.35rem;
}
.rail__place {
  font-family: var(--font-mono); font-size: var(--t-label);
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent);
  min-height: 1.4em; display: block;
}
.rail__learn {
  margin-top: 1.5rem; font-size: 0.95rem; line-height: 1.45;
  color: var(--on-paper-muted); max-width: 22ch; min-height: 4.2em;
}
.rail__track {
  margin-top: 2rem; height: 2px; background: var(--rule-paper); position: relative; overflow: hidden;
}
.rail__fill {
  position: absolute; inset: 0; background: var(--accent);
  transform-origin: 0 50%; transform: scaleX(0);
  transition: transform 0.5s var(--ease);
}
.rail__count {
  margin-top: 0.65rem; font-family: var(--font-mono); font-size: var(--t-label);
  letter-spacing: 0.14em; color: var(--on-paper-muted);
  display: flex; justify-content: space-between;
}

/* Chapters */
.chapters { display: flex; flex-direction: column; }
.chapter {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0;
  border-top: 1px solid var(--rule-paper);
  transition: opacity 0.6s var(--ease);
}
.js .chapter { opacity: 0.42; }
.chapter:first-child { border-top: 0; padding-top: 0; }
.chapter.is-active, .chapter:focus-within { opacity: 1; }

.chapter__meta {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 0.5rem 1.1rem;
  font-family: var(--font-mono); font-size: var(--t-label);
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--on-paper-muted);
  margin-bottom: 1.1rem;
}
.chapter__meta .dates { color: var(--accent); }
.chapter__co {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.7vw, 3rem);
  line-height: 1.02; letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}
.chapter__co small { display: block; font-family: var(--font-sans); font-size: 0.9rem; letter-spacing: 0.01em; color: var(--on-paper-muted); margin-top: 0.55rem; font-style: normal; }
.chapter__role { font-size: 1.05rem; font-weight: 500; margin-bottom: 1.35rem; }
.chapter__body { max-width: var(--measure); }
.chapter__body p + p { margin-top: 1rem; }

.chapter__proof {
  margin-top: 1.75rem;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 190px), 1fr));
  gap: 1px; background: var(--rule-paper);
  border: 1px solid var(--rule-paper);
}
.chapter__proof li { background: var(--paper); padding: 1rem 1.15rem; }
.chapter__proof b {
  display: block; font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem); line-height: 1.05; letter-spacing: -0.02em;
  margin-bottom: 0.3rem;
}
.chapter__proof span { font-size: 0.85rem; line-height: 1.4; color: var(--on-paper-muted); display: block; }

.chapter__tags {
  display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1.5rem;
}
.chapter__tags li {
  font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.35rem 0.7rem; border: 1px solid var(--rule-paper); color: var(--on-paper-muted);
  border-radius: 100px;
}

.chapter__figure { margin-top: 2rem; }
.chapter__figure img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; filter: grayscale(1) contrast(1.04); }
.chapter__figure figcaption {
  margin-top: 0.75rem; font-family: var(--font-mono); font-size: var(--t-label);
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--on-paper-muted);
}

/* ---------- 10. Case studies ---------- */
.cases { border-top: 1px solid var(--rule-ink); }
.case { border-bottom: 1px solid var(--rule-ink); }

.case__trigger {
  width: 100%; text-align: left; display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(1rem, 3vw, 2.5rem);
  align-items: center;
  padding: clamp(1.5rem, 3.2vw, 2.4rem) 0;
  transition: color 0.35s var(--ease);
}
.case__trigger:hover { color: var(--accent-lo); }
.case__num {
  font-family: var(--font-mono); font-size: var(--t-label);
  letter-spacing: 0.14em; color: var(--accent);
}
.case__headline {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.3vw, 2.6rem);
  line-height: 1.05; letter-spacing: -0.02em; font-weight: 400;
}
.case__sub {
  display: block; font-family: var(--font-mono); font-size: var(--t-label);
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--on-ink-muted); margin-top: 0.7rem;
}
.case__plus { position: relative; width: 20px; height: 20px; flex: none; }
.case__plus::before, .case__plus::after {
  content: ""; position: absolute; background: currentColor; transition: transform 0.45s var(--ease), opacity 0.3s var(--ease);
}
.case__plus::before { inset: 9.5px 0 auto 0; height: 1px; }
.case__plus::after  { inset: 0 9.5px auto auto; width: 1px; height: 20px; }
.case[data-open="true"] .case__plus::after { transform: rotate(90deg); opacity: 0; }

.case__panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.6s var(--ease); }
.case[data-open="true"] .case__panel { grid-template-rows: 1fr; }
.case__panel > div { overflow: hidden; }
.case__inner {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr));
  gap: clamp(1.5rem, 3vw, 2.75rem);
  padding: 0.5rem 0 clamp(2.25rem, 4vw, 3.25rem);
}
.case__step h4 {
  font-family: var(--font-mono); font-size: var(--t-label); font-weight: 400;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent);
  margin-bottom: 0.6rem; padding-bottom: 0.6rem; border-bottom: 1px solid var(--rule-ink);
}
.case__step p { font-size: 0.95rem; line-height: 1.6; color: var(--on-ink-muted); }
.case__step p strong { color: var(--paper); font-weight: 500; }
.case__step--impact p strong { color: var(--accent-lo); }
.case__learned {
  grid-column: 1 / -1;
  font-family: var(--font-display); font-size: clamp(1.15rem, 2.2vw, 1.7rem);
  line-height: 1.3; letter-spacing: -0.01em; color: var(--paper);
  max-width: 52ch; padding-top: 1.5rem; border-top: 1px solid var(--rule-ink);
}
.case__learned::before {
  content: "What I took from it"; display: block;
  font-family: var(--font-mono); font-size: var(--t-label); letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--on-ink-muted); margin-bottom: 0.85rem;
}

/* ---------- 11. How I think ---------- */
.think__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 235px), 1fr));
  background: var(--paper);
  border-top: 1px solid var(--rule-paper);
  border-left: 1px solid var(--rule-paper);
  margin-top: clamp(2rem, 5vw, 3.5rem);
}
.think__step {
  background: var(--paper);
  border-right: 1px solid var(--rule-paper);
  border-bottom: 1px solid var(--rule-paper);
  padding: clamp(1.5rem, 2.6vw, 2.1rem) clamp(1.25rem, 2.2vw, 1.75rem);
  display: flex; flex-direction: column; gap: 0.7rem;
  position: relative; overflow: hidden;
}
.think__step::after {
  content: ""; position: absolute; left: -1px; top: -1px; right: -1px; height: 2px;
  background: var(--accent); transform: scaleX(0); transform-origin: 0 50%;
  transition: transform 0.75s var(--ease-out) calc(var(--i) * 0.09s);
}
.think__grid.is-in .think__step::after { transform: scaleX(1); }
html:not(.js) .think__step::after { transform: scaleX(1); }
.think__n {
  font-family: var(--font-mono); font-size: var(--t-label); letter-spacing: 0.16em; color: var(--accent);
}
.think__step h3 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.3rem, 2.2vw, 1.65rem); line-height: 1.1; letter-spacing: -0.015em;
}
.think__step p { font-size: 0.9rem; line-height: 1.55; color: var(--on-paper-muted); }

/* ---------- 12. Capabilities & industries ---------- */
.cap__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 178px), 1fr));
  gap: clamp(1.5rem, 2.4vw, 2.25rem);
  margin-top: clamp(2rem, 5vw, 3.5rem);
}
.cap h3 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.35rem, 2.4vw, 1.9rem); letter-spacing: -0.015em;
  padding-bottom: 0.9rem; margin-bottom: 1.1rem; border-bottom: 1px solid var(--rule-ink);
}
.cap ul { display: flex; flex-direction: column; gap: 0.5rem; }
.cap li { font-size: 0.95rem; color: var(--on-ink-muted); display: flex; gap: 0.7rem; }
.cap li::before { content: ""; width: 3px; height: 3px; border-radius: 50%; background: var(--accent); margin-top: 0.72em; flex: none; }

.industries {
  margin-top: clamp(3.5rem, 8vw, 6rem);
  padding-top: clamp(2.5rem, 5vw, 3.5rem);
  border-top: 1px solid var(--rule-ink);
}
.industries__claim {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 3rem); line-height: 1.08; letter-spacing: -0.02em;
  max-width: 22ch; margin-bottom: 2rem;
}
.industries__claim em { font-style: italic; color: var(--accent); }
.industries__list { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.industries__list li {
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.13em; text-transform: uppercase;
  padding: 0.55rem 1rem; border: 1px solid var(--rule-ink); border-radius: 100px;
  color: var(--on-ink-muted);
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.industries__list li:hover { border-color: var(--accent); color: var(--accent-lo); }
.industries__common {
  margin-top: 1.75rem; font-size: 0.95rem; color: var(--on-ink-muted); max-width: 60ch;
}

/* ---------- 13. Side quests ---------- */
.quest__grid {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem); align-items: start;
  margin-top: clamp(2rem, 4vw, 3rem);
}
.quest h3 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2.25rem); line-height: 1.1; letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.quest p { max-width: var(--measure); }
.quest p + p { margin-top: 1rem; }
.quest .pull {
  margin-top: 1.75rem; padding-left: 1.35rem; border-left: 2px solid var(--accent);
  font-family: var(--font-display); font-size: clamp(1.15rem, 2.1vw, 1.5rem);
  line-height: 1.28; letter-spacing: -0.01em;
}

/* ---------- 14. Off the clock ---------- */
.off__head {
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 1.5rem clamp(2rem, 5vw, 4rem); align-items: end;
}
@media (max-width: 900px) { .off__head { grid-template-columns: 1fr; } }
.gallery {
  margin-top: clamp(2rem, 5vw, 3.5rem);
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.9rem, 2vw, 1.75rem);
}
@media (max-width: 700px) { .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.gallery figure { margin: 0; }
.gallery img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  transition: transform 0.85s var(--ease), filter 0.6s var(--ease);
  background: #1a1815;
}
.gallery figure:hover img { transform: scale(1.028); }
.gallery figcaption {
  margin-top: 0.6rem; font-family: var(--font-mono); font-size: var(--t-label);
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-ctx, var(--on-ink-muted));
}
.gallery--tall img { aspect-ratio: 3 / 4; filter: grayscale(1) contrast(1.06); }
.gallery--tall figure:hover img { filter: grayscale(0) contrast(1); }

/* ---------- 15. Contact ---------- */
.contact { padding-bottom: clamp(3rem, 7vh, 5rem); }
.contact__claim {
  font-family: var(--font-display);
  font-size: var(--t-display);
  line-height: 0.98; letter-spacing: -0.028em;
  max-width: 15ch; margin-bottom: clamp(2.5rem, 6vw, 4rem);
}
.contact__claim em { font-style: italic; color: var(--accent); }

.contact__links { border-top: 1px solid var(--rule-ink); }
.contact__link {
  display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 0.5rem 2rem;
  padding: clamp(1.15rem, 2.4vw, 1.7rem) 0;
  border-bottom: 1px solid var(--rule-ink);
  text-decoration: none;
  position: relative;
  transition: padding-left 0.45s var(--ease), color 0.35s var(--ease);
}
.contact__link:hover, .contact__link:focus-visible { padding-left: 1.1rem; color: var(--accent-lo); }
.contact__link::before {
  content: ""; position: absolute; left: 0; top: 50%; width: 0; height: 1px; background: var(--accent);
  transition: width 0.45s var(--ease);
}
.contact__link:hover::before { width: 0.7rem; }
.contact__link .what {
  font-family: var(--font-display); font-size: clamp(1.3rem, 2.8vw, 2.1rem); letter-spacing: -0.02em; line-height: 1.05;
}
.contact__link .where {
  font-family: var(--font-mono); font-size: var(--t-label);
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--on-ink-muted);
}

.footer {
  border-top: 1px solid var(--rule-ink);
  margin-top: clamp(3rem, 7vw, 5rem); padding-top: 2rem;
  display: flex; flex-wrap: wrap; gap: 1rem 2rem; justify-content: space-between;
  font-family: var(--font-mono); font-size: var(--t-label);
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--on-ink-faint);
}

/* ---------- 16. Responsive ---------- */
@media (max-width: 1020px) {
  .positioning__grid { grid-template-columns: 1fr; }
  .portrait { max-width: 380px; }
  .quest__grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  /* Timeline: rail collapses to a compact sticky bar above the chapters */
  .journey__layout { grid-template-columns: 1fr; gap: 0; }
  .rail {
    position: sticky; top: 68px; z-index: 40;
    background: var(--paper);
    padding: 0.9rem 0 0.85rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--rule-paper);
    display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 0 1rem; align-items: center;
  }
  .rail__year { font-size: 2.35rem; margin: 0; grid-row: span 2; }
  .rail__place { align-self: end; }
  .rail__learn { display: none; }
  .rail__track { grid-column: 1 / -1; margin-top: 0.75rem; }
  .rail__count { grid-column: 1 / -1; }
  .chapter { opacity: 1; }
  .case__trigger { grid-template-columns: minmax(0, 1fr) auto; }
  .case__num { grid-column: 1 / -1; margin-bottom: 0.35rem; }
}

@media (max-width: 560px) {
  .hero__foot { flex-direction: column; align-items: flex-start; }
  .hero__cue i { height: 32px; }
  .metric { padding-right: 1rem; border-right: 0; }
  .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .loop { font-size: 0.66rem; letter-spacing: 0.08em; }
}

/* ---------- 17. Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .js .reveal, .reveal { opacity: 1; transform: none; }
  .js .reveal-mask > *, .reveal-mask > * { transform: none; }
  .hero__quote .line > span { transform: none; }
  .hero__foot { opacity: 1; }
  .js .chapter, .chapter { opacity: 1; }
  .think__step::after { transform: scaleX(1); }
  .js .hero-stage { height: auto; }
  .js .hero { position: static; }
  .js .growth .stem { stroke-dashoffset: 0; animation: none; }
  .js .growth .leaf-g,
  .js .growth .petal,
  .js .growth .core { transform: none; animation: none; }
  .js .growth .node { opacity: 1; animation: none; }
}

/* ---------- 18. Print ---------- */
@media print {
  .nav, .progress, .hero__cue, .hero__grid { display: none !important; }
  body, .section--ink { background: #fff !important; color: #000 !important; }
  .case__panel { grid-template-rows: 1fr !important; }
  .chapter { opacity: 1 !important; page-break-inside: avoid; }
}

/* ---------- 19. Small-screen refinements ---------- */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: clamp(1rem, 3vh, 2rem); align-items: start; }
  .hero__lede { gap: clamp(1rem, 3vh, 2rem); }
  .growth { justify-self: center; align-self: auto; height: clamp(175px, 27svh, 280px); }
}
@media (max-width: 640px) {
  /* Buy the plant more room on phones — it is the point of the scroll
     sequence, so it should not be a thumbnail. */
  .hero { padding-top: clamp(3rem, 6.5vh, 4.25rem); }
  .growth { height: clamp(195px, 26svh, 250px); }
  .growth .tick { font-size: 21px; }
}

/* ---------- 20. Paired chapter figure ---------- */
.chapter__figure--pair {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.75rem, 2vw, 1.5rem);
}
.chapter__figure--pair img { aspect-ratio: 4 / 3; filter: none; }
.chapter__figure--pair figcaption { grid-column: 1 / -1; }
@media (max-width: 560px) { .chapter__figure--pair { grid-template-columns: 1fr; } }

/* ---------- 21. Robowars mark ---------- */
.mark {
  margin-top: 1.75rem; display: flex; align-items: center; gap: 1.15rem;
}
.mark svg { flex: none; width: clamp(64px, 8vw, 88px); height: auto; }
.mark svg [stroke] { stroke: var(--accent); fill: none; }
.mark p {
  font-family: var(--font-mono); font-size: var(--t-label);
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--on-paper-muted); max-width: 34ch; line-height: 1.75;
}

/* ---------- 22. Football ---------- */
.pitch {
  position: relative; overflow: hidden;
  margin-top: clamp(2.5rem, 6vw, 4rem);
  padding: clamp(2rem, 5vw, 3.75rem) clamp(1.5rem, 4vw, 3rem);
  background: #0A2A5E;                       /* a blue, not a badge */
  color: #EAF0FA;
  border-radius: 2px;
}
.pitch__lines { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.22; pointer-events: none; }
.pitch__lines [stroke] { stroke: #EAF0FA; fill: none; stroke-width: 1.5; vector-effect: non-scaling-stroke; }
.pitch__body { position: relative; max-width: 54ch; }
.pitch__label {
  font-family: var(--font-mono); font-size: var(--t-label);
  letter-spacing: 0.2em; text-transform: uppercase; color: #9DB8E0; margin-bottom: 1rem;
}
.pitch h3 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.6rem, 3.4vw, 2.6rem); line-height: 1.06; letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.pitch p { color: #C7D6EC; }
.pitch p + p { margin-top: 0.9rem; }

/* ---------- 23. Volunteering ---------- */
.give ul { display: flex; flex-direction: column; gap: 1.1rem; margin-top: 1.25rem; }
.give li { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 0 1rem; }
.give li::before {
  content: ""; width: 7px; height: 7px; border: 1px solid var(--accent);
  border-radius: 50%; margin-top: 0.55em;
}
.give b { font-weight: 500; color: var(--on-paper); }
.give span { color: var(--on-paper-muted); font-size: 0.95rem; line-height: 1.55; }

/* ---------- 24. Contact note ---------- */
.contact__note {
  max-width: 56ch;
  font-size: var(--t-lead);
  line-height: 1.5;
  color: var(--on-ink-muted);
  margin: calc(clamp(2.5rem, 6vw, 4rem) * -0.55) 0 clamp(2.5rem, 6vw, 4rem);
}
.contact__note::before {
  content: ""; display: block; width: 2.5rem; height: 1px;
  background: var(--accent); margin-bottom: 1.5rem;
}

/* ---------- 25. Résumé gate ---------- */
.gate {
  width: min(94vw, 440px);
  padding: 0; border: 0; background: transparent;
  color: var(--on-ink);
  margin: auto;
}
.gate::backdrop {
  background: rgba(6, 5, 4, 0.74);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.gate__panel {
  position: relative;
  background: #131110;
  border: 1px solid var(--rule-ink);
  padding: clamp(1.75rem, 5vw, 2.75rem);
}
.js .gate[open] .gate__panel { animation: gate-in 0.4s var(--ease-out); }
@keyframes gate-in { from { opacity: 0; transform: translateY(12px); } }

.gate__close {
  position: absolute; top: 0.5rem; right: 0.75rem;
  font-size: 1.6rem; line-height: 1; color: var(--on-ink-muted);
  padding: 0.35rem 0.5rem;
  transition: color 0.25s var(--ease);
}
.gate__close:hover { color: var(--accent); }

.gate__eyebrow {
  font-family: var(--font-mono); font-size: var(--t-label);
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent);
  margin-bottom: 0.9rem;
}
.gate__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.5rem, 4.5vw, 2rem); line-height: 1.08;
  letter-spacing: -0.02em; margin-bottom: 0.75rem;
}
.gate__blurb { font-size: 0.95rem; color: var(--on-ink-muted); margin-bottom: 1.75rem; }

.gate__field { margin-bottom: 1.35rem; }
.gate__field label {
  display: block; margin-bottom: 0.4rem;
  font-family: var(--font-mono); font-size: var(--t-label);
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--on-ink-muted);
}
.gate__field input {
  width: 100%; padding: 0.55rem 0;
  font: inherit; font-size: 1.05rem; color: var(--paper);
  background: transparent; border: 0; border-bottom: 1px solid var(--rule-ink);
  border-radius: 0;
  transition: border-color 0.3s var(--ease);
}
.gate__field input:focus { outline: none; border-bottom-color: var(--accent); }
.gate__field input:-webkit-autofill { -webkit-text-fill-color: var(--paper); -webkit-box-shadow: 0 0 0 1000px #131110 inset; }

.gate__enter { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.gate__submit {
  display: block; text-align: center; text-decoration: none;
  width: 100%; margin-top: 0.75rem; padding: 0.95rem 1.25rem;
  background: var(--accent); color: var(--paper);
  font-weight: 500; letter-spacing: 0.02em;
  transition: background 0.3s var(--ease), opacity 0.3s var(--ease);
}
.gate__submit:hover { background: #A9451F; }


.gate__status { min-height: 1.2em; margin-top: 0.75rem; font-size: var(--t-small); color: var(--accent-lo); }
.gate__note { margin-top: 0.5rem; font-size: var(--t-small); line-height: 1.5; color: var(--on-ink-faint); }
