/* White and charcoal surfaces with red emphasis. Lightweight CSS effects;
 * no animation libraries, external fonts or scroll-driven scripts. */

:root {
  --ink: #18181b;
  --ink-soft: #414147;
  --ink-faint: #626269;
  --paper: #ffffff;
  --paper-deep: #f5f5f7;
  --paper-card: #ffffff;
  --line: #d9d9d6;
  --line-strong: #18181b;
  --accent: #cf2338;
  --accent-deep: #b51b2d;
  --accent-wash: #fff0f2;
  --yellow: #ffe6ea;
  --flag: #b51b2d;
  --focus: #b51b2d;

  --sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --measure: 66ch;
  --shell: 74rem;
  --gap: clamp(1.25rem, 3vw, 2.5rem);
  --step: clamp(2.75rem, 6vw, 5rem);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 400 clamp(1rem, 0.35vw + 0.95rem, 1.0625rem)/1.65 var(--sans);
  text-rendering: optimizeLegibility;
}

/* Text accents remain dark enough to read on the neutral surfaces. */
h1, h2, h3, h4 { font-family: var(--sans); font-weight: 800; line-height: 1.05; letter-spacing: -0.025em; margin: 0 0 0.6em; }
h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 2.9vw, 2.3rem); }
h3 { font-size: clamp(1.2rem, 1.6vw, 1.45rem); }
h4 { font-size: 1.05rem; }
p, ul, ol, dl, table, figure, blockquote { margin: 0 0 1.15em; }
p, li { max-width: var(--measure); }
strong { font-weight: 700; }

a { color: var(--accent-deep); text-decoration-thickness: 1px; text-underline-offset: 0.18em; }
a:hover { color: var(--ink); }

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

img { max-width: 100%; height: auto; display: block; }

.shell { width: 100%; max-width: var(--shell); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2.5rem); }
.lede { font-size: clamp(1.1rem, 1.1vw + 0.9rem, 1.3rem); color: var(--ink-soft); max-width: 60ch; }
/* Small section labels use dark red on a pale red surface. */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font: 700 0.72rem/1 var(--sans);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-deep);
  background: var(--accent-wash);
  border: 1px solid #f0c9cf;
  padding: 0.4rem 0.7rem;
  margin-bottom: 0.85rem;
}
.muted { color: var(--ink-faint); }
.fine { font-size: 0.85rem; color: var(--ink-faint); max-width: 72ch; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 0.75rem; top: -3rem; z-index: 50;
  background: var(--ink); color: var(--paper); padding: 0.6rem 1rem; border-radius: 0 0 4px 4px;
  transition: top 0.15s ease;
}
.skip-link:focus { top: 0; color: var(--paper); }

/* ---------------------------------------------------------------- header */

.masthead { border-bottom: 1px solid var(--line); background: var(--paper); position: sticky; top: 0; z-index: 40; }
.masthead-inner { display: flex; align-items: center; gap: 1rem; min-height: 4.25rem; }
.wordmark {
  font: 800 1.22rem/1 var(--sans);
  letter-spacing: -0.03em;
  color: var(--ink);
  text-decoration: none;
  display: inline-flex; align-items: baseline;
  margin-right: auto;
}
/* A red period adds a small, consistent brand accent. */
.wordmark::after { content: "."; color: var(--accent); }
.wordmark:hover { color: var(--ink); }

.nav-toggle {
  display: none;
  font: 600 0.9rem/1 var(--sans);
  align-items: center; gap: 0.5rem;
  background: none; border: 2px solid var(--ink); color: var(--ink);
  padding: 0.6rem 0.85rem; border-radius: 3px; cursor: pointer;
}
.site-nav { display: flex; align-items: center; gap: clamp(0.9rem, 2vw, 1.75rem); }
.site-nav a:not(.btn) {
  font: 600 0.95rem/1 var(--sans);
  color: var(--ink); text-decoration: none; padding: 0.4rem 0;
  border-bottom: 2px solid transparent;
}
.site-nav a:not(.btn):hover { border-bottom-color: var(--accent); }
.site-nav a:not(.btn)[aria-current="page"] { border-bottom-color: var(--accent); }
.site-nav .btn { border-bottom: 0; }

@media (max-width: 60rem) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    display: none;
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper); border-bottom: 2px solid var(--ink);
    padding: 0.5rem clamp(1.1rem, 4vw, 2.5rem) 1.5rem;
  }
  .site-nav[data-open="true"] { display: flex; }
  .site-nav a:not(.btn) { padding: 0.85rem 0; border-bottom: 1px solid var(--line); }
  .site-nav .btn { margin-top: 1rem; text-align: center; }
}

/* ---------------------------------------------------------------- buttons */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font: 700 0.95rem/1 var(--sans);
  padding: 0.85rem 1.3rem;
  border-radius: 2px;
  border: 2px solid var(--accent);
  background: var(--accent); color: #fff; text-decoration: none;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}
.btn:hover { background: var(--accent-deep); border-color: var(--accent-deep); color: #fff; box-shadow: 0 5px 16px rgb(181 27 45 / 20%); }
.btn-quiet { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-quiet:hover { background: var(--accent-wash); border-color: var(--accent); color: var(--accent-deep); }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }

/* ---------------------------------------------------------------- layout blocks */

.band { padding-block: var(--step); border-bottom: 2px solid var(--ink); }
.band-deep { background: var(--paper-deep); }
/* Authorship and last-reviewed line: a rule, not a section. */
.band-byline { padding-block: 1rem; }
.band-byline p { margin: 0; }
.band-ink { background: var(--ink); color: var(--paper); border-bottom-color: var(--ink); }
.band-ink h2, .band-ink h3 { color: var(--paper); }
.band-ink p, .band-ink li { color: var(--paper-deep); }
.band-ink a { color: #fff; }
.band-ink .btn { background: var(--yellow); border-color: var(--yellow); color: var(--ink); }
.band-ink .btn:hover { background: #fff; border-color: #fff; color: var(--ink); }
.band-ink .btn-quiet { background: transparent; color: #fff; border-color: #fff; }
.band-ink .btn-quiet:hover { background: #fff; color: var(--ink); }
.band-ink :focus-visible { outline-color: var(--paper); }
.band-head { max-width: 60ch; margin-bottom: 2rem; }

/* One opening wash, shared by the homepage and every sub-page.
 *
 * Sized in PIXELS, not percentages. A percentage-sized ellipse is measured
 * against its own box, so the short homepage opening showed colour while a tall
 * service or pricing hero stretched the same gradient until it was invisible.
 * Fixed dimensions render identically regardless of section height. */
:root {
  --opening-wash:
    radial-gradient(1100px 520px at 88% -120px, #ffbecb 0%, #ffd8e0 34%, #ffeef1 62%, rgba(255, 255, 255, 0) 82%),
    radial-gradient(620px 320px at 8% -80px, #fff0f3 0%, rgba(255, 255, 255, 0) 70%);
}

/* Sub-page hero. Uses the homepage opening settings verbatim (.home-v2 .hv-open
 * below): same padding, same border, same radial wash, same heading scale and
 * accent rule — so a service, guide or work page opens exactly like the home
 * page. Change both together or they drift. */
.hero {
  padding-block: clamp(2rem, 4vw, 3.5rem) clamp(2.25rem, 4vw, 3.25rem);
  border-bottom: 1px solid var(--line);
  background: var(--opening-wash), var(--paper);
  background-repeat: no-repeat, no-repeat, no-repeat;
}
.hero h1 {
  font-size: clamp(2rem, 4.4vw, 3.65rem);
  max-width: 34ch;
  margin-bottom: 0.8rem;
}
.hero h1 span { color: var(--accent-deep); }
.hero-grid { display: grid; gap: var(--gap); grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); align-items: start; }
.hero-grid > div:first-child::before {
  content: ""; display: block; width: 3rem; height: 4px;
  margin-bottom: 1.1rem; background: var(--accent);
}
.hero-figure figcaption { font-size: 0.8rem; color: var(--ink-faint); padding-top: 0.6rem; border-top: 1px solid var(--line); margin-top: 0.6rem; }
/* Pages without a hero figure have one child, so the second column would sit
 * empty and squeeze the fact row. */
.hero-grid > :only-child { grid-column: 1 / -1; }
.hero-figure img { border: 2px solid var(--ink); }
@media (max-width: 60rem) { .hero-grid { grid-template-columns: 1fr; } }

.facts { list-style: none; padding: 0; margin: 1.75rem 0 0; display: grid; gap: 0.9rem 1.5rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 13rem), 1fr)); }
.facts li { max-width: none; padding-top: 0.7rem; border-top: 2px solid var(--line-strong); font-size: 0.95rem; }
.facts b { display: block; font-size: 1.15rem; font-weight: 800; }

.cols { display: grid; gap: var(--gap); grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr)); }
.split { display: grid; gap: var(--gap); grid-template-columns: minmax(0, 20rem) minmax(0, 1fr); align-items: start; }
@media (max-width: 60rem) { .split { grid-template-columns: minmax(0, 1fr); } }

.entry { border-top: 2px solid var(--line-strong); padding-top: 1rem; }
.entry h3 { margin-bottom: 0.4rem; }
.entry p:last-child { margin-bottom: 0; }

.checks, .plain { list-style: none; padding: 0; }
.checks li { position: relative; padding-left: 1.5rem; margin-bottom: 0.55rem; }
.checks li::before {
  content: ""; position: absolute; left: 0; top: 0.55em;
  width: 0.6rem; height: 0.6rem; border: 2px solid var(--accent); border-radius: 1px;
}
.band-ink .checks li::before { border-color: var(--yellow); }
.plain li { margin-bottom: 0.5rem; padding-left: 1.1rem; position: relative; }
.plain li::before { content: "—"; position: absolute; left: 0; color: var(--ink-faint); }

.steps { list-style: none; counter-reset: step; padding: 0; display: grid; gap: 1.5rem; }
.steps li { counter-increment: step; padding-left: 3.25rem; position: relative; max-width: var(--measure); }
/* Numeral as an outlined yellow chip, the same mark the homepage process
 * list uses. */
.steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute; left: 0; top: 0.05rem;
  font: 800 0.95rem/1 var(--sans); color: var(--ink);
  background: var(--yellow); border: 2px solid var(--ink); padding: 0.4rem 0.45rem;
}

.tag {
  display: inline-block; font: 700 0.7rem/1 var(--sans); letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.4rem 0.55rem; border: 2px solid var(--ink); background: var(--paper-card); color: var(--ink); border-radius: 2px;
  margin-bottom: 0.85rem;
}
.tag-flag { color: var(--flag); border-color: currentColor; }

.rates { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.rates caption { text-align: left; font-size: 0.85rem; color: var(--ink-faint); padding-bottom: 0.6rem; }
.rates th, .rates td { text-align: left; vertical-align: top; padding: 0.85rem 0.9rem 0.85rem 0; border-bottom: 1px solid var(--line); }
.rates thead th { border-bottom: 2px solid var(--line-strong); font: 700 0.75rem/1.2 var(--sans); letter-spacing: 0.09em; text-transform: uppercase; }
.rates td b { font-size: 1.05rem; font-weight: 800; }
.table-scroll { overflow-x: auto; }


/* The opening quote sits with the hero copy, so it stays tighter than a
 * standalone one: a client's sentence should be visible without scrolling,
 * without pushing the first project screenshot off the screen. */
blockquote.quote-open {
  margin: 1.4rem 0 0;
  padding: 0.95rem 1.1rem;
  max-width: 40rem;
  background: rgba(255, 255, 255, 0.72);
}
blockquote.quote-open p {
  font: 600 clamp(1rem, 0.4vw + 0.95rem, 1.12rem)/1.42 var(--sans);
  margin-bottom: 0.5rem;
}
blockquote.quote-open footer { font-size: 0.82rem; }
/* Outlined callout, the same treatment the homepage evidence note uses. */
.note {
  border: 2px solid var(--ink);
  border-left-width: 8px;
  border-left-color: var(--accent);
  background: var(--paper-card);
  padding: 0.9rem 1.1rem;
  font-size: 0.95rem;
}
.note :last-child { margin-bottom: 0; }
.note-flag { border-left-color: var(--flag); background: var(--accent-wash); }

/* Client quote. Same outlined language as .note, with the words given room. */
blockquote.quote {
  border: 2px solid var(--ink);
  border-left-width: 8px;
  border-left-color: var(--accent);
  background: var(--paper-card);
  padding: 1.2rem 1.4rem;
  max-width: 44rem;
}
blockquote.quote p {
  font: 600 clamp(1.08rem, 2.2vw, 1.32rem)/1.45 var(--sans);
  margin-bottom: 0.75rem;
}
blockquote.quote footer {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink-soft);
}

figure.shot { margin: 0 0 1.5rem; }
figure.shot img { border: 2px solid var(--ink); }
figure.shot figcaption { font-size: 0.82rem; color: var(--ink-faint); margin-top: 0.6rem; }

.toc { border: 2px solid var(--ink); background: var(--paper-card); padding: 1.15rem 1.25rem; }
.toc h2 { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.75rem; }
.toc ol { margin: 0; padding-left: 1.2rem; font-size: 0.95rem; }
.toc li { margin-bottom: 0.35rem; }

.prose h2 { margin-top: 2.5rem; }
.prose h3 { margin-top: 1.75rem; }
.prose > :first-child { margin-top: 0; }

.faq dt { font-weight: 800; font-size: 1.05rem; margin-top: 1.6rem; }
.faq dt:first-of-type { margin-top: 0; }
.faq dd { margin: 0.35rem 0 0; max-width: var(--measure); color: var(--ink-soft); }

/* ---------------------------------------------------------------- form */

.enquiry { display: grid; gap: 1.15rem; max-width: 34rem; }
.field { display: grid; gap: 0.35rem; }
.field > label { font: 600 0.9rem/1.3 var(--sans); }
.field .hint { font-size: 0.82rem; color: var(--ink-faint); }
.field input, .field select, .field textarea {
  font: inherit; color: var(--ink); background: var(--paper-card);
  border: 2px solid var(--ink); border-radius: 2px; padding: 0.65rem 0.7rem; width: 100%;
}
.field textarea { min-height: 8.5rem; resize: vertical; }
.field input:invalid[data-touched="true"], .field textarea:invalid[data-touched="true"] { border-color: var(--flag); }
.field-error { font-size: 0.85rem; color: var(--flag); }
.radio-set { border: 0; margin: 0; padding: 0; display: grid; gap: 0.5rem; }
.radio-set legend { font: 600 0.9rem/1.3 var(--sans); padding: 0; margin-bottom: 0.5rem; }
.radio-set label { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.95rem; }
.radio-set input { width: auto; margin-top: 0.25rem; }
.trap { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* States are distinguished by more than hue: the error state also carries a
 * thick left bar, so it reads without color perception. */
.form-status { border: 2px solid var(--line); background: var(--paper-card); padding: 0.9rem 1rem; font-size: 0.95rem; }
.form-status[data-state="working"] { border-color: var(--ink); }
.form-status[data-state="ok"] { border-color: var(--ink); background: var(--paper-deep); }
.form-status[data-state="error"] { border-color: var(--flag); border-left-width: 8px; background: var(--accent-wash); }
.form-status[hidden] { display: none; }

/* ---------------------------------------------------------------- consent */

.consent {
  position: fixed; inset-inline: 0; bottom: 0; z-index: 60;
  background: var(--ink); color: var(--paper);
  border-top: 3px solid var(--accent);
  padding: 1rem clamp(1.1rem, 4vw, 2.5rem);
}
.consent-inner { max-width: var(--shell); margin-inline: auto; display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between; }
.consent p { margin: 0; font-size: 0.9rem; color: #f2e6d2; max-width: 62ch; }
.consent a { color: #fff; }
.consent .btn-quiet { color: #fff; border-color: #fff; }
.consent .btn-quiet:hover { background: #fff; color: var(--ink); }

/* ---------------------------------------------------------------- footer */

.site-foot { padding-block: var(--step) 2rem; background: var(--paper-deep); border-top: 2px solid var(--ink); }
.foot-grid { display: grid; gap: var(--gap); grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr) minmax(0, 1.1fr); overflow-wrap: anywhere; }
.foot-grid h2 { font-size: 0.75rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink); margin-bottom: 0.8rem; }
.foot-grid ul { list-style: none; padding: 0; margin: 0; font-size: 0.93rem; }
.foot-grid li { margin-bottom: 0.5rem; }
.foot-grid a { color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--accent); }
.foot-grid a:hover { color: var(--accent-deep); border-bottom-color: currentColor; }
.foot-legal { margin-top: 2.5rem; padding-top: 1.25rem; border-top: 1px solid var(--line); font-size: 0.85rem; color: var(--ink-faint); display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; }
.foot-legal p { margin: 0; max-width: 70ch; }

@media (max-width: 60rem) {
  .foot-grid { grid-template-columns: repeat(auto-fit, minmax(min(100%, 11rem), 1fr)); }
}

/* Tall screenshots are cropped to a readable band instead of dominating the
 * page. The intrinsic width/height attributes still match the file, so
 * nothing shifts while the image decodes. */
.crop { display: block; overflow: hidden; aspect-ratio: 4 / 3; }
.crop img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }

@media print {
  .masthead, .site-foot, .consent, .btn { display: none !important; }
  body { background: #fff; }
}

/* Homepage composition: opening, service selection, project proof and process. */

/* ------------------------------------------------------------- opening */

.home-v2 .hv-open {
  padding-block: clamp(2rem, 4vw, 3.5rem) clamp(2.25rem, 4vw, 3.25rem);
  border-bottom: 1px solid var(--line);
  background: var(--opening-wash), var(--paper);
  background-repeat: no-repeat, no-repeat, no-repeat;
}
/* The heading and the supporting copy carry their own measures. Clamping this
 * wrapper instead forced the h1 into a narrow tower and pushed the project
 * images below the fold. */
.home-v2 .hv-open-copy { max-width: none; }
.home-v2 .hv-open h1 {
  font-size: clamp(2rem, 4.4vw, 3.65rem);
  max-width: 34ch;
  margin-bottom: 0.8rem;
}
.home-v2 .hv-open h1 span { color: var(--accent-deep); }
.home-v2 .hv-open-copy::before {
  content: ""; display: block; width: 3rem; height: 4px;
  margin-bottom: 1.1rem; background: var(--accent);
}
.home-v2 .hv-lede { font-size: clamp(1.05rem, 0.6vw + 0.95rem, 1.22rem); color: var(--ink-soft); max-width: 72ch; }
.home-v2 .hv-btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; margin: 1.25rem 0 0; }

/* Two real projects side by side under the type, rather than one page-sized
 * thumbnail centred against a taller column. */
.home-v2 .hv-oproof {
  display: grid;
  gap: var(--gap);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr));
  margin-top: clamp(1.25rem, 2vw, 1.75rem);
}
.home-v2 .hv-oshot { margin: 0; }
/* Preserve the complete current homepage captures, including their navigation. */
.home-v2 .hv-oframe {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 7 / 5;
  border: 1px solid #303038;
  border-radius: 6px;
  background: #111114;
  box-shadow: 0 12px 30px rgb(24 24 27 / 12%);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.home-v2 .hv-oframe .crop { display: block; position: relative; width: 100%; height: 100%; aspect-ratio: auto; overflow: hidden; }
.home-v2 .hv-oframe img { display: block; width: 100%; height: 100%; object-fit: contain; }
.home-v2 .hv-oshot figcaption { display: grid; gap: 0.4rem; margin-top: 1rem; font-size: 0.9rem; color: var(--ink-soft); }
.home-v2 .hv-oshot figcaption b { font-weight: 800; font-size: 1.02rem; color: var(--ink); }
.home-v2 .hv-oshot:focus-within .hv-oframe {
  border-color: var(--accent);
  box-shadow: 0 16px 36px rgb(181 27 45 / 16%);
}
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .home-v2 .hv-oshot:hover .hv-oframe {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: 0 16px 36px rgb(181 27 45 / 16%);
  }
  .btn:hover { transform: translateY(-2px); }
}
@media (prefers-reduced-motion: no-preference) {
  .home-v2 .hv-open-copy { animation: opening-in 500ms ease-out both; }
  @keyframes opening-in {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
  }
}

/* ---------------------------------------------------------------- bands */

.home-v2 .hv-band { border-bottom: 2px solid var(--ink); padding-block: clamp(2.5rem, 5vw, 4rem); }
.home-v2 .hv-band-tint { background: var(--paper-deep); }
.home-v2 .hv-head { max-width: 62ch; margin-bottom: 2rem; }
.home-v2 .hv-head h2 { font-size: clamp(1.55rem, 2.5vw, 2.1rem); margin-bottom: 0.7rem; }
.home-v2 .hv-head h2::before {
  content: ""; display: block; width: 2rem; height: 3px;
  margin-bottom: 0.85rem; background: var(--accent);
}
.home-v2 .hv-note {
  margin: 1.75rem 0 0;
  max-width: 74ch;
  font-size: 0.92rem;
  color: var(--ink-soft);
  background: var(--paper-card);
  border: 2px solid var(--ink);
  border-left-width: 8px;
  border-left-color: var(--accent);
  padding: 0.85rem 1rem;
}

/* -------------------------------------------------------- service picker */

/* Five equal rows, in the owner's order. No card, no shadow, no promoted
 * item: the section is a selection, so every service carries the same weight
 * and the same amount of copy. */
.home-v2 .hv-pick { list-style: none; margin: 0; padding: 0; border-top: 2px solid var(--ink); }
.home-v2 .hv-pick li {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 17rem) minmax(0, 1fr) minmax(0, 15rem);
  gap: 0.4rem 2rem;
  align-items: baseline;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
}
.home-v2 .hv-pick li:last-child { border-bottom: 2px solid var(--ink); }
.home-v2 .hv-pick li { transition: background-color 180ms ease, box-shadow 180ms ease; }
.home-v2 .hv-pick li:hover, .home-v2 .hv-pick li:focus-within {
  background: var(--accent-wash);
  box-shadow: inset -3px 0 var(--accent);
}
.home-v2 .hv-pick-name { font-size: 1.1rem; margin: 0; }
.home-v2 .hv-pick-num { font: 800 0.82rem/1 var(--sans); color: var(--accent-deep); margin-right: 0.55rem; vertical-align: 0.12em; }
.home-v2 .hv-pick-for {
  display: block;
  font: 700 0.68rem/1.3 var(--sans);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 0.3rem;
}
.home-v2 .hv-pick-line { max-width: none; margin: 0; font-size: 0.94rem; color: var(--ink-soft); }
.home-v2 .hv-pick-act { margin: 0; }
.home-v2 .hv-link {
  font: 700 0.92rem/1.35 var(--sans);
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 3px;
  text-underline-offset: 0.22em;
}
.home-v2 .hv-link:hover { color: var(--accent-deep); text-decoration-color: var(--ink); }

/* ---------------------------------------------------------------- buyers */

.home-v2 .hv-buyers { list-style: none; margin: 0; padding: 0; }
.home-v2 .hv-buyers li {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 15rem) minmax(0, 1fr);
  gap: 0.4rem 2rem;
  padding: 1rem 0;
  border-top: 2px solid var(--ink);
}
.home-v2 .hv-buyers li:last-child { border-bottom: 2px solid var(--ink); }
.home-v2 .hv-buyers b { font-weight: 800; font-size: 1.05rem; }
.home-v2 .hv-buyers span { color: var(--ink-soft); }

/* ---------------------------------------------------------------- proof */

.home-v2 .hv-proof { display: grid; gap: var(--gap); grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr)); }
.home-v2 .hv-shot { margin: 0; }
.home-v2 .hv-shot img { border: 2px solid var(--ink); background: #fff; }
.home-v2 .hv-shot .crop { border: 2px solid var(--ink); background: #fff; }
.home-v2 .hv-shot .crop img { border: 0; }
.home-v2 .hv-shot figcaption { display: grid; gap: 0.4rem; margin-top: 0.85rem; font-size: 0.9rem; color: var(--ink-soft); }
.home-v2 .hv-shot figcaption b { font-weight: 800; font-size: 1.02rem; color: var(--ink); }
/* The evidence class is a qualifier, not a badge. It keeps the exact string
 * recorded in site.mjs, rendered as quiet secondary text so the project name
 * and what was built lead the caption. */
.home-v2 .hv-evidence {
  justify-self: start;
  font: 400 0.78rem/1.45 var(--sans);
  color: var(--ink-faint);
}

/* ---------------------------------------------------------------- process */

.home-v2 .hv-steps {
  list-style: none;
  counter-reset: hv-step;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem 2rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr));
}
.home-v2 .hv-steps li {
  counter-increment: hv-step;
  max-width: none;
  position: relative;
  padding-left: 3.1rem;
  color: var(--ink-soft);
}
.home-v2 .hv-steps li::before {
  content: counter(hv-step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0.05rem;
  font: 800 0.95rem/1 var(--sans);
  color: var(--ink);
  background: var(--yellow);
  border: 2px solid var(--ink);
  padding: 0.4rem 0.45rem;
}
.home-v2 .hv-steps b { color: var(--ink); font-weight: 800; }

@media (max-width: 60rem) {
  .home-v2 .hv-buyers li { grid-template-columns: 1fr; }
  .home-v2 .hv-pick li { grid-template-columns: 1fr; gap: 0.5rem; }
}
