/* ══════════════════════════════════════════════════════════════════
   PAGES.CSS — merged page/template sheets
   ══════════════════════════════════════════════════════════════════
   Absorbs home.css, about.css, contact.css, how-i-build.css, 404.css,
   droplove.css and set-set.css (see docs/css-refactor-plan.md Phase 2).
   Each section below keeps the @layer wrapper its source file used —
   home/contact/how-i-build are shared multi-page templates (`templates`
   layer); about/404/droplove/set-set are single-page instance overrides
   (`pages` layer). Selectors were verified to have no overlap across
   files, except .status-note (droplove + set-set, byte-identical),
   which is declared once and shared.
   ══════════════════════════════════════════════════════════════════ */

/* ─── HOME — template for the homepage-shaped pages (index.html, work.html) ─── */
@layer templates {

/* ─── HOME — page-specific styles (index.html) ─── */

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  padding: clamp(72px, 12vh, 140px) var(--pad) clamp(56px, 8vh, 96px);
  border-bottom: 1px solid var(--line);
}
.hero-eyebrow { margin-bottom: 28px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero-eyebrow i {
  font-style: normal; color: currentColor;
}
/* eyebrow = the sans voice (Geist), matching the .label utility. This rule
   lives in @layer templates so it also settles the split with .label in
   @layer utilities — both now render sans, consistently, on every page. */
.hero-eyebrow span {
  font-family: var(--body);
  font-size: var(--fs-11);
  font-weight: var(--w-med);
  letter-spacing: var(--tr-caps);
  text-transform: uppercase;
  color: var(--mid);
}
.hero h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: var(--fs-d4);
  line-height: var(--lh-hero);
  letter-spacing: var(--tr-tight);
  text-transform: none;
  max-width: 18ch;
  /* Push Newsreader to its display optical-size cut — high stroke
     contrast, fine hairlines — the opposite end of the axis from the
     serif standfirst below, so the opsz axis is visibly doing work. */
  font-variation-settings: "opsz" 72, "wght" 400;
}
/* Weight-reveal entrance: the headline settles from light to regular as
   it rises, only the wght axis moving (opsz stays pinned). Replaces the
   plain fade for the hero h1; falls back to the static rule with motion off. */
@media (prefers-reduced-motion: no-preference) {
  .hero h1.rise { animation: heroType .9s var(--ease) both; animation-delay: .08s; }
  @keyframes heroType {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: none;             }
  }
}
.hero-sub {
  margin-top: 36px;
  max-width: 52ch;
  font-size: var(--fs-18);
  font-weight: 400;
  line-height: var(--lh-body);
  color: var(--ink);
}
.hero-sub b { font-weight: 600; }
/* Standfirst — the lede becomes a Newsreader italic standfirst, set at the
   text optical-size cut (auto → sturdier, lower-contrast than the hero).
   The serif hero + serif standfirst let the opsz axis show its full range;
   the sans support paragraph below keeps the three-voice hierarchy intact. */
.hero-sub.lede {
  font-family: var(--display);
  font-style: italic;
  font-weight: var(--w-serif);
  font-size: var(--fs-serif-lede);
  line-height: var(--lh-body);
  letter-spacing: var(--tr-snug);
  color: var(--ink);
  max-width: 38ch;
}

/* ─── FLAGSHIPS: BUILDER'S STATUS BOARD ──────────────────── */
/* .flagships itself (display, columns, divider, 900px collapse) is fully
   defined in site.css's shared hairline-grid rule — kept in one @layer so
   the mobile collapse can't lose to a higher-layer desktop value. */
.flag {
  position: relative;
  padding: clamp(32px, 4vw, 56px) var(--pad) clamp(36px, 4vw, 60px);
  text-decoration: none;
  display: flex; flex-direction: column;
  min-height: clamp(380px, 46vh, 520px);
  transition: background .2s;
}
.flag:hover { background: var(--paper-2); }
.flag-status {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--mono);
  font-size: var(--fs-11); font-weight: 600;
  letter-spacing: var(--tr-caps-wide); text-transform: uppercase;
  color: var(--ink);
}
.flag-status::before {
  content: '';
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--rosa);
  flex-shrink: 0;
}
@media (prefers-reduced-motion: no-preference) {
  .flag-status::before { animation: pulse 2.2s ease-in-out infinite; }
  @keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }
}
.flag-word {
  margin-top: 0;
  font-family: var(--display);
  font-weight: 500;
  font-size: var(--fs-d3);
  line-height: var(--lh-hero);
  letter-spacing: var(--tr-tight);
  text-transform: none;
  transition: color .18s, transform .25s cubic-bezier(.2,.7,.2,1);
}
.flag-status + .flag-word { margin-top: 22px; }
.flag:hover .flag-word { color: var(--rosa); transform: translateX(8px); }
/* Matches the "Hero thesis · per-project section lead" type role
   (see .hero-thesis in case-study.css + styleguide-type.html):
   Newsreader display italic at --fs-serif-lede, 1.42 line-height. */
.flag-subline {
  margin: 10px 0 0;
  font-family: var(--display);
  font-style: italic;
  font-weight: var(--w-serif);
  font-size: var(--fs-serif-lede);
  line-height: 1.42;
  letter-spacing: var(--tr-snug);
  color: var(--ink);
  max-width: 42ch;
}
.flag-desc {
  margin-top: 18px;
  max-width: 40ch;
  font-size: var(--fs-14);
  line-height: var(--lh-body);
  color: var(--ink);
}
.flag-board {
  margin-top: 26px;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  letter-spacing: var(--tr-tight);
  font-size: var(--fs-11);
  color: var(--mid);
}
.flag-board div {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
}
.flag-board div dt, .flag-board div dd { margin: 0; }
.flag-board div dd { color: var(--ink); text-align: right; transition: color .18s; }
.flag:hover .flag-board div dd { color: var(--rosa); }
.flag-media {
  /* grey placeholder slot — swap for real screens when graphics land.
     border/background/centering composed from site.css's shared placeholder
     rule (same treatment as .media-placeholder/.specimen-box in
     case-study.css — see that rule's comment).
     aspect-ratio matches the project-cover art (1920×1240) so covers
     display in full rather than cropping; object-fit:cover on .flag-media img
     still absorbs any cover that isn't exactly this ratio. */
  order: -1;              /* image sits above the text (status/title/desc/board) */
  margin-top: 0;
  margin-bottom: 28px;
  aspect-ratio: 1920 / 1240;
  padding: 24px;
}
.flag-media:has(img) {
  border: none;           /* no stroke around the cover image */
  padding: 0;
  overflow: hidden;
}
.flag-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Reserved slot, no real project behind it yet — same dashed-placeholder
   language as .cs-screen-placeholder/.media-placeholder, but not a link
   (no href to fake), so hover states are neutralized rather than implying
   an interactive card that goes nowhere. */
.flag--placeholder { opacity: .55; cursor: default; }
.flag--placeholder:hover { background: none; }
.flag--placeholder:hover .flag-word { color: inherit; transform: none; }
.flag--placeholder:hover .flag-board div dd { color: inherit; }
.flag--placeholder .flag-status::before { animation: none; opacity: .4; }
.flag-media span {
  font-family: var(--body);
  font-size: var(--fs-11);
  font-weight: 500;
  letter-spacing: var(--tr-caps);
  text-transform: uppercase;
  color: var(--mid);
}

/* ─── PRODUCT STUDIES LEDGER ─────────────────────────────── */
.study {
  display: grid;
  /* middle track flexes so the arrow (auto) is pushed to the far-right edge;
     .study-desc stays capped at 56ch so a gap remains before the arrow. */
  grid-template-columns: minmax(260px, 440px) minmax(0, 1fr) auto;
  gap: 24px clamp(56px, 7vw, 104px);
  align-items: start;
  padding: 34px var(--pad);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  /* ink-wipe hover: paper-2 panel sweeps in from the left, behind content */
  position: relative; overflow: hidden; isolation: isolate;
}
.study > * { position: relative; z-index: 1; }
.study::before {
  content: ""; position: absolute; inset: 0; background: var(--paper-2);
  transform: scaleX(0); transform-origin: left;
  transition: transform .5s var(--ease, ease); z-index: 0;
}
.study:last-child { border-bottom: none; }
.study:hover::before { transform: scaleX(1); }
.study > div:first-child {
  padding-right: 0;
  max-width: 460px;
}
.study > div:nth-child(2) { max-width: 56ch; }
.study-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: var(--fs-d1);
  line-height: var(--lh-hero);
  text-transform: none;
  letter-spacing: var(--tr-tight);
  text-wrap: pretty;
}
.study:hover .study-title { color: var(--rosa); }
.study-sector {
  margin-top: 10px;
  max-width: 34ch;
  line-height: var(--lh-title);
}
.study-desc {
  font-size: var(--fs-14);
  line-height: var(--lh-body);
  max-width: 56ch;
  color: var(--ink);
}
.study-scope {
  margin-top: 12px;
  line-height: var(--lh-title);
}
.study-arrow {
  font-family: var(--mono);
  font-size: var(--fs-18);
  color: var(--mid);
  transition: transform .18s, color .18s;
  align-self: center;
}
.study:hover .study-arrow { transform: translateX(6px); color: var(--rosa); }

/* ─── CLIENT WORK — reuses .study layout; only the title scale is dialed back down ─── */
.client-row .study-title {
  font-size: var(--fs-20);
  line-height: var(--lh-title);
}
.archive-line {
  padding: 26px var(--pad);
  font-family: var(--mono);
  font-size: var(--fs-12);
  line-height: 2;
  color: var(--mid);
}
.archive-line b { font-family: var(--mono); color: var(--ink); font-weight: 500; font-variant-numeric: tabular-nums; letter-spacing: var(--tr-tight); }
.logo-strip {
  padding: 0 var(--pad) 30px;
  font-family: var(--mono);
  font-size: var(--fs-11);
  letter-spacing: var(--tr-caps-wide);
  text-transform: uppercase;
  color: var(--mid);
  word-spacing: 0.3em;
}

/* ─── PRACTICE PILLARS ───────────────────────────────────── */
/* .how itself (display, columns, divider, 900px collapse) is fully defined
   in site.css's shared hairline-grid rule — see .flagships above. */
.how-col {
  padding: 36px var(--pad);
}
.how-col h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: var(--fs-14);
  text-transform: none;
  letter-spacing: var(--tr-snug);
  margin-bottom: 12px;
}
.how-col p { font-size: var(--fs-14); line-height: var(--lh-prose); color: var(--ink); }
.how-cta {
  padding: 0 var(--pad) 40px;
  text-align: center;
}

/* ─── CTA — one canonical link style. Lives in site.css @layer components
   ("reusable cross-page chrome") — see that file for the full rule; a
   byte-identical copy used to be duplicated here and was removed 2026-08-30
   (see docs/decisions.md and docs/design-system-inventory.md §3). Adopted
   from the home hero's "Explore ↓" (Rod's preferred look): heavy 600 weight,
   wide 0.26em tracking, 11px uppercase, ink text with a rosa → arrow in its
   own <span> that nudges right on hover, over a 1.5px rosa underline.
   Replaces the old lighter .how-cta a treatment. ─── */

.collab-strip { border-top: 1px solid var(--line); padding: 60px var(--pad); text-align: center; }
.collab-strip h2 { color: var(--ink); margin-bottom: 44px; }
.collab-strip .logo-strip {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 36px 52px;
  text-align: left;
}
.logo-strip svg {
  height: 24px;
  width: auto;
  display: block;
}
.logo-strip img {
  height: 24px;
  width: auto;
  display: block;
}
.collab-strip .logo-droga5 {
  height: 34px;
}
.logo-strip svg path,
.logo-strip svg rect,
.logo-strip svg polygon,
.logo-strip svg circle {
  fill: #9B9896;
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 900px) {
  /* .flagships/.how collapse to 1fr + their divider flip to border-top now
     live in site.css's shared hairline-grid media query. */
  .study { grid-template-columns: 1fr; gap: 14px; }
  .study-arrow { display: none; }
}

}

/* ─── ABOUT — about.html. Converted from hashed classes to semantic ones
   per docs/css-refactor-plan.md Phase 5 (the rehearsal pass — about.html
   has no shared scaffold with the case-study pages, so these are its own
   names, not case-study.css's). Every value below is the value that
   actually rendered under the old hashed classes (generated value + every
   revamp.css override), verified with getComputedStyle before/after. Two
   classes (.c-93a691, .c-d375f0) were dropped entirely: the former
   duplicated the site's own `section { border-bottom: 1px solid var(--line) }`
   base rule, the latter was byte-identical to the existing `.sec-head`
   component — both replaced by removing/swapping classes in the HTML,
   not by new CSS. .about-portrait's caption color (#8A8781) is the
   *old*, pre-WCAG-fix --mid value — genuinely still what renders (this
   selector was never in revamp.css's reach), preserved literally rather
   than "corrected" to the current --mid, per the plan's no-visual-change
   rule. */
@layer pages{
.about-page{background:var(--paper);color:var(--ink);min-height:100vh}
.about-accent{color:var(--rosa)}
/* layout-only wrapper (grid column); the hero elements inside stagger via
   .rise/.d1/.d2 exactly like the other page heroes */
.about-reveal{}
.about-portrait{width:100%;aspect-ratio:4/5;background:var(--paper-2);border:1px solid var(--line);overflow:hidden;display:flex;align-items:center;justify-content:center;opacity:0;animation:rise .7s var(--ease) .12s forwards}
.about-portrait img{width:100%;height:100%;object-fit:cover;object-position:center 25%;display:block;filter:grayscale(1) contrast(1.02);transition:filter .5s var(--ease)}
.about-portrait:hover img{filter:grayscale(0) contrast(1)}
.about-portrait span{font-family:var(--mono);font-size: var(--fs-12);letter-spacing: var(--tr-caps);text-transform:uppercase;color:#8A8781;text-align:center;padding:0 24px}
/* about.html reuses the shared .hero/.how scaffold (same classes index.html
   and how-i-build.html use) instead of a parallel .about-* class family.
   These are the actual, deliberate differences from the plain home-page
   treatment — a denser two-column hero with a portrait slot, mono eyebrow
   labels, bolder section/column headings — expressed as scoped overrides,
   same pattern case-study.css uses for body.proj-folio etc. Scoped to
   "main" specifically so it doesn't reach the shared footer, which also
   sits inside .about-page and must keep the ordinary .label treatment. */
.about-page .hero {
  padding: clamp(72px,12vh,120px) var(--pad) clamp(56px,8vh,88px);
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: clamp(32px,5vw,72px);
  align-items: start;
}
.about-page .hero-eyebrow { margin-bottom: 24px; }
.about-page .hero h1 { font-size: var(--fs-d4); max-width: 16ch; }
.about-page .hero-sub { margin-top: 32px; }
.about-page .sec-head h2 { margin: 0; }
.about-page .how-col p { margin: 0; }
.about-collab-grid{display:grid;grid-template-columns:repeat(4,1fr);margin:0;padding:0;list-style:none}
/* The Collaborations section is the last thing before the footer — its own
   grid already ends in a hairline (.about-collab-item's border-bottom on the
   last row), so the site-wide `section{border-bottom}` rule right after it
   was stacking a second 1px line flush against the first, reading as one
   doubled/thick stroke instead of the site's normal single hairline. */
.about-collab-section{border-bottom:none}
.about-collab-item{padding:clamp(28px,3vw,40px) 20px;display:flex;align-items:center;justify-content:center;min-height:110px;border-right:1px solid var(--line);border-bottom:1px solid var(--line)}
.about-collab-item span{font-family:var(--display);font-weight:400;text-transform:none;letter-spacing: var(--tr-tight);line-height: var(--lh-hero);font-size:var(--fs-20);color:var(--ink);text-align:center}
.about-collab-item img{display:block;width:auto;max-width:min(170px,80%);max-height:44px}
.about-collab-item .client-logo-ibm{max-height:32px}
.about-collab-item .client-logo-hp{max-height:48px}
.about-collab-item .client-logo-chipotle{max-width:min(145px,82%)}
.about-collab-item .client-logo-redbull{max-height:44px}
.about-collab-item .client-logo-tmobile{width:min(100px,80%);max-height:none}
.about-collab-item .client-logo-digitalocean{max-height:60px}
.about-collab-item .client-logo-netbeez{width:min(124px,82%);max-height:none}
.about-collab-item .client-logo-samsung{width:min(114px,82%);max-height:none}
.about-collab-item .client-logo-dazz{width:min(92px,76%);max-height:none}
.about-collab-item .client-logo-google{width:min(100px,80%);max-height:none}
.about-collab-item .client-logo-lucid{width:min(124px,82%);max-height:none}
.about-collab-item .client-logo-vestas{width:min(105px,80%);max-height:none}
.about-collab-item .client-logo-wittkieffer{width:min(105px,80%);max-height:none}
/* .how/.how-col's own mobile collapse (grid-template-columns:1fr at 900px,
   border-left->border-top) is already handled by the shared rule above —
   about.html gets it automatically now that it uses those classes too.
   Only the .hero grid (unique to about's two-column layout; the plain
   home .hero never had a grid to collapse) and .about-portrait/
   .about-collab-grid (never renamed, still about-specific) need their own
   rule here. */
@media (max-width:800px){.about-page .hero{grid-template-columns:1fr}.about-portrait{max-width:320px;margin:0 auto}.about-collab-grid{grid-template-columns:repeat(2,1fr)}}
}

/* ─── CONTACT — template for the contact page ─── */
@layer templates {

/* ─── CONTACT — page-specific styles ─── */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px,6vw,88px);
  padding: clamp(40px,6vw,64px) var(--pad);
}

/* ─── methods column ─── */
.contact-methods { display: flex; flex-direction: column; gap: clamp(28px,4vw,40px); }
.contact-method .label { margin-bottom: 10px; }
.contact-method a.big-link {
  position: relative;
  display: inline-block;
  font-family: var(--display);
  font-weight: 500;
  font-size: var(--fs-d1);
  letter-spacing: var(--tr-snug);
  text-transform: none;
  text-decoration: none;
  color: var(--ink);
  transition: color .18s;
}
.contact-method a.big-link::after {
  content: ''; position: absolute; left: 0; bottom: -4px;
  width: 100%; height: 2px; background: var(--rosa);
  transform: scaleX(0); transform-origin: left;
  transition: transform .22s cubic-bezier(.2,.7,.2,1);
}
.contact-method a.big-link:hover {
  color: var(--rosa);
  -webkit-text-fill-color: var(--rosa);
}
.contact-method a.big-link:hover::after { transform: scaleX(1); }

.social-row { display: flex; flex-wrap: wrap; gap: 10px 28px; }
.social-row a {
  font-family: var(--body);
  font-size: var(--fs-13);
  font-weight: 500;
  letter-spacing: var(--tr-caps);
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
  transition: color .18s, border-color .18s;
}
.social-row a:hover { color: var(--rosa); border-color: var(--rosa); }

.contact-status { display: flex; flex-direction: column; gap: 14px; }
.contact-status div { display: flex; justify-content: space-between; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.contact-status div dt, .contact-status div dd { margin: 0; }
.contact-status div dd { color: var(--ink); font-weight: 500; text-align: right; }

/* ─── form column ─── */
.contact-form { display: grid; gap: 20px; }
.contact-form .field { display: flex; flex-direction: column; }
.contact-hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.contact-form label {
  font-family: var(--body);
  font-size: var(--fs-11);
  font-weight: 500;
  letter-spacing: var(--tr-caps);
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 8px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  font-family: var(--body);
  font-size: var(--fs-14);
  color: var(--ink);
  transition: border-color .18s;
}
.contact-form input:focus,
.contact-form textarea:focus { outline: none; border-color: var(--rosa); }
.contact-form textarea { min-height: 150px; resize: vertical; }
.contact-form button {
  justify-self: start;
  font-family: var(--body);
  font-size: var(--fs-12);
  font-weight: 500;
  letter-spacing: var(--tr-caps);
  text-transform: uppercase;
  padding: 15px 30px;
  background: var(--ink);
  color: var(--paper);
  border: none;
  cursor: pointer;
  transition: background .18s;
}
.contact-form button:hover { background: var(--rosa); }
.contact-form button:disabled { cursor: wait; opacity: .65; }
.contact-form-note {
  font-family: var(--body);
  font-weight: 500;
  letter-spacing: var(--tr-caps);
  font-size: var(--fs-11);
  color: var(--mid);
  margin-top: -4px;
}

@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; gap: clamp(40px,6vw,56px); }
}

}

/* ─── HOW I BUILD — template for the process/practice page ─── */
@layer templates {

/* ─── HOW I BUILD — page-specific styles ─── */

.timeline { display: grid; grid-template-columns: repeat(5, 1fr); }
.timeline-step { padding: clamp(28px,3vw,40px) var(--pad); border-right: 1px solid var(--line); }
.timeline-step:last-child { border-right: none; }
.timeline-step .label { display: block; margin-bottom: 10px; }
.timeline-step h3 { font-family: var(--display); font-weight: 500; font-size: var(--fs-16); letter-spacing: var(--tr-snug); text-transform: none; margin-bottom: 8px; }
.timeline-step p { font-size: var(--fs-13); line-height: var(--lh-body); color: var(--mid); }

@media (max-width: 900px) {
  .timeline { grid-template-columns: 1fr; }
  .timeline-step { border-right: none; border-top: 1px solid var(--line); }
  .timeline-step:first-child { border-top: none; }
}

/* ─── AI-FIRST WORKFLOW PIPELINE ─────────────────────────── */
.pipeline-intro {
  padding: clamp(20px,3vw,32px) var(--pad) 0;
  max-width: 64ch;
  font-size: var(--fs-14);
  line-height: var(--lh-body);
  color: var(--mid);
}
.pipeline {
  position: relative;
  margin-top: clamp(28px,4vw,40px);
  padding: 0 var(--pad);
}
.pipeline::before {
  content: '';
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: calc(var(--pad) + 17px);
  width: 1px;
  background: var(--line);
}
.pipeline-step {
  position: relative;
  display: flex;
  gap: clamp(20px,3vw,32px);
  padding-bottom: var(--fs-num);
}
.pipeline-step:last-child { padding-bottom: var(--fs-num); }
.pipeline-node {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--paper);
  border: 1.5px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: var(--fs-11);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  letter-spacing: var(--tr-tight);
  color: var(--ink);
  transition: background .2s, color .2s, border-color .2s;
}
.pipeline-step:hover .pipeline-node { background: var(--rosa); border-color: var(--rosa); color: var(--paper); }
.pipeline-content {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(140px,220px) 1fr;
  gap: 4px clamp(24px,3vw,48px);
  padding-top: 6px;
}
.pipeline-step h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: var(--fs-16);
  text-transform: none;
  letter-spacing: var(--tr-snug);
  transition: color .2s;
}
.pipeline-step:hover h3 { color: var(--rosa); }
.pipeline-step p {
  font-size: var(--fs-14);
  line-height: var(--lh-body);
  color: var(--ink);
  margin-bottom: 14px;
  max-width: 56ch;
}

.hib-callout {
  margin: clamp(12px,2vw,20px) var(--pad) clamp(8px,2vw,16px);
  padding: clamp(10px,2vw,16px) clamp(20px,3vw,28px) clamp(20px,3vw,28px);
  text-align: center;
}
.hib-callout .label { margin-bottom: 10px; }
/* Type spec matches the home hero's standfirst pair (2026-09-07, Rod's
   request) — same italic-Newsreader-lede + sans-support combo and sizing
   used under the home hero phrase (body.home .hero-sub / .hero-sub.lede
   in hero.css), just centered here inside the callout instead of the
   hero's own layout. Not reusing the .hero-sub/.lede classes directly:
   those get their centering and this exact clamp() size only from
   body.home-scoped rules in hero.css, so applying them here unscoped
   would silently fall back to pages.css's left-aligned, differently-sized
   base .hero-sub/.lede rule instead. */
.hib-callout p.lede {
  font-family: var(--display);
  font-style: italic;
  font-weight: var(--w-serif);
  font-size: clamp(21px, 2vw, 30px);
  line-height: var(--lh-body);
  letter-spacing: var(--tr-snug);
  color: var(--ink);
  max-width: 46ch;
  margin: 0 auto;
}
.hib-callout p.support {
  margin: 16px auto 0;
  max-width: 52ch;
  font-size: var(--fs-18);
  font-weight: 400;
  line-height: var(--lh-body);
  color: var(--ink);
}

@media (max-width: 680px) {
  .pipeline-content {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-top: 4px;
  }
  .pipeline-step h3 { font-size: var(--fs-14); }
}

}

/* ─── 404 — not-found page ─── */
@layer pages {

.nf {
  min-height: calc(100vh - 200px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(48px, 10vh, 120px) var(--pad);
}
.nf-code {
  font-family: var(--mono);
  font-weight: 400;
  font-size: var(--fs-num-xl);
  line-height: var(--lh-hero);
  letter-spacing: var(--tr-snug);
  text-transform: none;
  color: var(--line);
}
.nf-title {
  margin-top: 8px;
  font-family: var(--display);
  font-weight: 400;
  font-size: var(--fs-d1);
  line-height: var(--lh-hero);
  letter-spacing: var(--tr-tight);
  text-transform: none;
  color: var(--ink);
}
.nf-sub {
  margin-top: 14px;
  max-width: 48ch;
  font-size: var(--fs-16);
  line-height: var(--lh-body);
  color: var(--mid);
}
.nf-links {
  margin-top: 32px;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.nf-links a {
  font-family: var(--body);
  font-size: var(--fs-12);
  font-weight: 500;
  letter-spacing: var(--tr-caps);
  text-transform: uppercase;
  color: var(--rosa);
  text-decoration: none;
  border-bottom: 2px solid var(--rosa);
  padding-bottom: 3px;
  transition: opacity .15s;
}
.nf-links a:hover { opacity: .7; }

}

/* ─── DROPLOVE + SET-SET — page-specific instance styling ───
   .status-note is byte-identical in both source files (droplove.css,
   set-set.css); declared once here and shared instead of duplicated. ─── */
@layer pages {

.status-note { margin-top: 18px; padding: 16px 18px; border: 1px solid var(--line); border-left: 2px solid var(--client); background: var(--paper-2); font-size: var(--fs-14); line-height: var(--lh-body); }

/* droplove.html */
.voice-lines { list-style: none; margin-top: 14px; display: flex; flex-direction: column; gap: 8px; }
.voice-lines li { font-size: var(--fs-14); font-style: italic; line-height: var(--lh-body); }
.voice-lines li::before { content: '“'; margin-right: 2px; }
.voice-lines li::after { content: '”'; margin-left: 2px; }

.flow-steps { display: grid; grid-template-columns: repeat(auto-fit,minmax(150px,1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); margin: 18px 0 0; padding: 0; list-style: none; counter-reset: dlstep; }
.flow-steps li { background: var(--paper); padding: 18px; }
.flow-steps li::before { counter-increment: dlstep; content: counter(dlstep); display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; border-radius: 50%; background: var(--client); color: #fff; font-size: var(--fs-11); font-weight: 700; margin-bottom: 10px; }
.flow-steps b { display: block; font-size: var(--fs-14); margin-bottom: 4px; }
.flow-steps span { font-size: var(--fs-12); color: var(--mid); line-height: var(--lh-ui); }

/* set-set.html */
.stat-strip { display: grid; grid-template-columns: repeat(auto-fit,minmax(120px,1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); margin: 26px 0 8px; padding: 0; list-style: none; }
.stat-strip li { background: var(--paper); padding: 20px 18px; }
.stat-strip b { display: block; font-family: var(--mono); font-weight: 500; font-variant-numeric: tabular-nums; font-size: var(--fs-num); line-height: var(--lh-solid); letter-spacing: var(--tr-tight); color: var(--client); }
.stat-strip span { display: block; margin-top: 8px; font-size: var(--fs-12); line-height: 1.4; color: var(--mid); }

}
