/* ==========================================================================
   Reignance Studios — minimal white (template: References/website.html)
   White paper, near-black ink, Spectral italic accents (Manrope sans), one hero film.
   ========================================================================== */

:root {
  /* Ink scale (user palette 2026-09-14) */
  --ink-900: #07080A; --ink-850: #0B0D11; --ink-800: #0F1216; --ink-750: #14171D; --ink-700: #1B1F26;
  --ink-600: #23282F; --ink-500: #2E343D; --ink-400: #3D444E; --ink-300: #565D68; --ink-200: #757C86;
  --ink-150: #9AA0A9; --ink-100: #B7BCC3; --ink-75: #D3D7DC; --ink-50: #ECEEF1;
  --hl: #C9CCD1;

  --paper: #FFFFFF;
  --soft: var(--ink-50);
  --ink: var(--ink-850);
  --ink-2: var(--ink-500);
  --muted: var(--ink-300);
  --line: #DFE2E6;
  --line-2: var(--ink-75);
  --black: var(--ink-800);
  --on-black: #FFFFFF;
  --on-black-2: var(--ink-150);
  --error: #A1260F;

  /* Rules and strokes: column grid on paper; hairlines, strokes and the hero scrim on dark surfaces */
  --grid-rule: rgba(0, 0, 0, 0.06);
  --on-dark-rule: rgba(255, 255, 255, 0.18);
  --on-dark-rule-soft: rgba(255, 255, 255, 0.12);
  --on-dark-stroke: rgba(255, 255, 255, 0.4);
  --scrim-rgb: 7 8 10; /* --ink-900 as channels, for alpha steps */

  --sans: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  --serif: "Spectral", Georgia, "Times New Roman", serif;

  --max: 1240px;
  --gutter: clamp(16px, 3.5vw, 28px);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  /* Type ramp for small and mid roles (display, headline, page title, title stay inline clamps) */
  --fs-label: 0.8125rem; --fs-small: 0.875rem; --fs-body-sm: 0.9375rem; --fs-body: 1rem; --fs-lede: 1.125rem;
  --fs-title-sm: 1.25rem; --fs-title-md: 1.5rem; --fs-figure: clamp(1.5rem, 2.4vw, 2rem); --fs-price: 2.5rem;

  color-scheme: light;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; -webkit-text-size-adjust: 100%; scrollbar-color: var(--muted) var(--soft); }
body { margin: 0; background: var(--paper); color: var(--ink); font: 400 1rem/1.55 var(--sans); text-rendering: optimizeLegibility; }
body::before {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: -1;
  background-image: linear-gradient(to right,
    transparent calc(25% - 0.5px), var(--grid-rule) 25%, transparent calc(25% + 0.5px),
    transparent calc(50% - 0.5px), var(--grid-rule) 50%, transparent calc(50% + 0.5px),
    transparent calc(75% - 0.5px), var(--grid-rule) 75%, transparent calc(75% + 0.5px));
}
::selection { background: var(--ink); color: var(--paper); }
h1, h2, h3, h4, p, ul, ol, figure, blockquote { margin: 0; }
ul[role="list"], ol[role="list"] { list-style: none; padding: 0; }
a { color: inherit; text-decoration: none; }
img, video { max-width: 100%; display: block; }
em { font-family: var(--serif); font-weight: 500; font-style: italic; letter-spacing: -0.02em; font-variant-numeric: lining-nums; }
:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }
.dark :focus-visible, .hero-film :focus-visible { outline-color: var(--hl); }
.dark em, .hero-film .display em { color: var(--hl); }
.num { font-variant-numeric: tabular-nums; }
.sr-only { position: absolute !important; width: 1px; height: 1px; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip { position: absolute; left: var(--gutter); top: -100px; z-index: 100; background: var(--ink); color: var(--paper); padding: 0.75rem 1rem; font-weight: 600; }
.skip:focus { top: 12px; }
.wrap { width: min(var(--max), 100% - 2 * var(--gutter)); margin-inline: auto; }

/* ---------- Buttons & links ---------- */
.pill {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  min-height: 44px; padding: 0.7rem 1.2rem; border-radius: 999px;
  background: var(--ink); color: var(--paper); border: 1px solid var(--ink);
  font: 600 var(--fs-body-sm)/1 var(--sans); white-space: nowrap; cursor: pointer;
  transition: background-color 160ms var(--ease), color 160ms var(--ease), border-color 160ms var(--ease);
}
.pill svg { width: 14px; height: 14px; flex: none; transition: transform 220ms var(--ease); }
.pill:hover { background: #000; }
.pill:hover svg { transform: translate(2px, -2px); }
.pill--ghost { background: transparent; color: var(--ink); }
.pill--ghost:hover { background: var(--ink); color: var(--paper); }
.dark .pill { background: var(--on-black); color: var(--ink); border-color: var(--on-black); }
.dark .pill:hover { background: var(--hl); border-color: var(--hl); }
.text-link { display: inline-flex; align-items: center; gap: 0.4rem; min-height: 44px; font-weight: 600; font-size: var(--fs-body-sm); text-decoration: underline; text-underline-offset: 0.25em; text-decoration-thickness: 1px; }
.text-link:hover { text-decoration-thickness: 2px; }

/* ---------- Header ---------- */
.top { position: sticky; top: 0; z-index: 40; border-bottom: 1px solid var(--line); background: var(--paper); }
.top-in { display: flex; align-items: center; gap: 1.25rem; min-height: 72px; }
.logo { display: inline-flex; align-items: center; gap: 0.6rem; min-height: 44px; font-weight: 700; font-size: var(--fs-body); letter-spacing: -0.02em; }
.logo img { width: 28px; height: 28px; }
.logo small { font-size: inherit; font-weight: 400; color: var(--ink-2); }
.nav { margin-left: auto; }
.nav ul { display: flex; align-items: center; gap: 0.25rem; list-style: none; margin: 0; padding: 0; }
.nav a { display: inline-flex; align-items: center; min-height: 44px; padding: 0 0.75rem; font-size: var(--fs-small); font-weight: 500; color: var(--ink-2); }
.nav a:hover { color: var(--ink); text-decoration: underline; text-underline-offset: 0.3em; }
.nav .nav-cta { display: none; }
.menu-btn { display: none; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 999px; border: 1px solid var(--line-2); background: var(--paper); color: var(--ink); cursor: pointer; }
.menu-btn svg { width: 18px; height: 18px; }

/* ---------- Hero ---------- */
.hero-top { display: grid; grid-template-columns: 1.45fr 0.55fr; gap: 2rem clamp(2rem, 5vw, 4.5rem); align-items: end; }
.display { font-weight: 700; font-size: clamp(2.9rem, 6.4vw, 5.25rem); line-height: 0.94; letter-spacing: -0.04em; text-wrap: balance; }
.display em { display: block; }
.lede { margin: 1.5rem 0 2rem; max-width: 46ch; font-size: var(--fs-lede); color: var(--muted); }
.actions { display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem 1.25rem; }
.hero-side { padding-bottom: 0.5rem; font-size: var(--fs-body-sm); color: var(--muted); max-width: 34ch; text-wrap: balance; }
.hero-side strong { display: block; margin-bottom: 0.4rem; color: var(--ink); font-size: var(--fs-body); font-weight: 600; }

/* Hero: full-bleed Higgsfield film with text layered on top */
.hero-film {
  position: relative; isolation: isolate; overflow: hidden;
  display: flex; align-items: flex-end;
  min-height: max(620px, calc(100vh - 73px));
  min-height: max(620px, calc(100svh - 73px));
  padding-top: clamp(5rem, 12vh, 8rem);
  background: radial-gradient(120% 90% at 72% 18%, var(--ink-700) 0%, var(--ink-900) 62%);
  color: var(--on-black);
}
.hero-video { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 900ms var(--ease); }
.hero-film.has-video { background: var(--ink-900); }
.hero-film.has-video .hero-video { opacity: 1; }
.hero-scrim {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    linear-gradient(to top, rgb(var(--scrim-rgb) / 0.94) 0%, rgb(var(--scrim-rgb) / 0.6) 38%, rgb(var(--scrim-rgb) / 0.22) 72%, rgb(var(--scrim-rgb) / 0.4) 100%),
    linear-gradient(to right, rgb(var(--scrim-rgb) / 0.55) 0%, rgb(var(--scrim-rgb) / 0) 62%);
}
.hero-film .film-toggle { top: 1.25rem; bottom: auto; right: var(--gutter); }
.hero-film.has-video .film-toggle { display: inline-flex; }
.hero-inner { position: relative; }
.hero-film .display { color: var(--on-black); }
.hero-film .lede { color: var(--ink-100); }
.hero-film .hero-side { color: var(--ink-100); }
.hero-film .hero-side strong { color: var(--on-black); }
.hero-film .pill { background: var(--on-black); color: var(--ink-900); border-color: var(--on-black); }
.hero-film .pill:hover { background: var(--hl); border-color: var(--hl); }
.hero-film .text-link { color: var(--on-black); }
.hero-stats {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: clamp(2.5rem, 7vh, 4.5rem) 0 0; padding: 0; list-style: none;
  border-top: 1px solid var(--on-dark-rule);
}
.hero-stats li { padding: 1.25rem 1.25rem 1.6rem; border-right: 1px solid var(--on-dark-rule-soft); }
.hero-stats li:first-child { padding-left: 0; }
.hero-stats li:last-child { border-right: 0; }
.hero-stats b { display: block; white-space: nowrap; font-weight: 700; font-size: var(--fs-figure); line-height: 1.1; letter-spacing: -0.03em; font-variant-numeric: tabular-nums; }
.hero-stats span { display: block; margin-top: 0.3rem; font-size: var(--fs-small); color: var(--ink-150); }

.offer-note { margin-top: 1.25rem; max-width: 60ch; font-size: var(--fs-body-sm); color: var(--muted); }

/* Hero film pause/play control */
.film-toggle {
  position: absolute; right: 1rem; bottom: 1rem; display: none; align-items: center; gap: 0.45rem;
  min-height: 44px; padding: 0 1rem; border-radius: 999px; border: 1px solid var(--on-dark-stroke);
  background: rgb(var(--scrim-rgb) / 0.55); color: var(--on-black); backdrop-filter: blur(8px);
  font: 600 var(--fs-small)/1 var(--sans); cursor: pointer;
}
.film-toggle svg { width: 12px; height: 12px; }

/* ---------- Sections ---------- */
.section { padding-block: clamp(4.5rem, 9vw, 6.5rem); border-bottom: 1px solid var(--line); }
.head { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem clamp(2rem, 5vw, 4.5rem); align-items: end; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.h2 { font-weight: 700; font-size: clamp(2.2rem, 4.2vw, 3.3rem); line-height: 1; letter-spacing: -0.035em; text-wrap: balance; }
.head p { max-width: 44ch; color: var(--muted); }

/* Service rows */
.rows { border-top: 1px solid var(--ink); list-style: none; margin: 0; padding: 0; }
.row a {
  display: grid; grid-template-columns: 64px minmax(0, 1fr) minmax(0, 1fr) 44px; gap: 1.5rem; align-items: center;
  padding: 1.8rem 1.5rem; border-bottom: 1px solid var(--line);
  transition: background-color 220ms var(--ease), color 220ms var(--ease);
}
.row-no { font-size: var(--fs-label); color: var(--muted); font-variant-numeric: tabular-nums; }
.row h3 { font-weight: 600; font-size: clamp(1.4rem, 2.3vw, 1.85rem); line-height: 1.2; letter-spacing: -0.025em; }
.row p { max-width: 44ch; font-size: var(--fs-body-sm); color: var(--muted); }
.arrow { width: 44px; height: 44px; border: 1px solid var(--ink); border-radius: 50%; display: grid; place-items: center; }
.arrow svg { width: 16px; height: 16px; }
.row a:hover, .row a:focus-visible { background: var(--black); color: var(--on-black); }
.row a:hover p, .row a:focus-visible p,
.row a:hover .row-no, .row a:focus-visible .row-no { color: var(--on-black-2); }
.row a:hover .arrow, .row a:focus-visible .arrow { border-color: var(--on-black); }
.row a:focus-visible { outline-offset: -4px; outline-color: var(--on-black); }

/* Work rows */
.work { border-top: 1px solid var(--ink); list-style: none; margin: 0 -1rem; padding: 0; }
.work a {
  display: grid; grid-template-columns: 72px minmax(0, 1fr) 220px 170px; gap: 1.5rem; align-items: center;
  padding: 1.4rem 1rem; border-bottom: 1px solid var(--line);
  transition: background-color 220ms var(--ease), color 220ms var(--ease);
}
.work a:hover, .work a:focus-visible { background: var(--black); color: var(--on-black); }
.work a:hover .w-no, .work a:hover .w-type, .work a:focus-visible .w-no, .work a:focus-visible .w-type { color: var(--on-black-2); }
.work a:focus-visible { outline-offset: -4px; outline-color: var(--hl); }
.w-title { transition: transform 260ms var(--ease); }
.work a:hover .w-title { transform: translateX(8px); }
.w-no { font-size: var(--fs-label); color: var(--muted); font-variant-numeric: tabular-nums; }
.w-title { display: inline-block; font-size: var(--fs-title-sm); font-weight: 500; letter-spacing: -0.02em; }
.w-type { font-size: var(--fs-small); color: var(--muted); }
.w-result { font-weight: 600; font-size: var(--fs-body-sm); text-align: right; font-variant-numeric: tabular-nums; }

/* Process */
.steps { position: relative; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-block: 1px solid var(--ink); list-style: none; margin: 0; padding: 0; }
.steps li { display: grid; grid-template-columns: auto minmax(0, 1fr); column-gap: 1rem; row-gap: 0.45rem; align-items: baseline; padding: 1.5rem 1.4rem 1.75rem; border-right: 1px solid var(--line); }
.steps li:last-child { border-right: 0; }
.s-no { font-weight: 500; font-size: 2rem; line-height: 1; letter-spacing: -0.04em; color: var(--ink-200); font-variant-numeric: tabular-nums; }
.steps h3 { margin: 0; font-size: var(--fs-title-sm); font-weight: 600; }
.steps p { grid-column: 2; margin: 0; max-width: 28ch; font-size: var(--fs-body-sm); line-height: 1.45; color: var(--muted); }

/* How we work: drafting line draws through the sequence once, steps arrive as it passes.
   Armed only by JS (and never under reduced motion), so content is visible by default. */
.steps::before { content: ""; position: absolute; left: 0; right: 0; top: -1px; height: 2px; background: var(--ink); transform-origin: left center; transform: scaleX(1); pointer-events: none; }
.steps.is-armed { border-top-color: var(--line-2); }
.steps.is-armed::before { transform: scaleX(0); }
.steps.is-armed.is-in::before { transform: scaleX(1); transition: transform 950ms cubic-bezier(0.65, 0, 0.35, 1); }
.steps.is-armed li > * { opacity: 0; transform: translateY(10px); }
.steps.is-armed .s-no { color: var(--line-2); }
.steps.is-armed.is-in li > * { opacity: 1; transform: none; transition: opacity 500ms var(--ease), transform 650ms var(--ease), color 700ms var(--ease); transition-delay: calc(var(--i, 0) * 220ms + 140ms); }
.steps.is-armed.is-in li > p { transition-delay: calc(var(--i, 0) * 220ms + 240ms); }
.steps.is-armed.is-in .s-no { color: var(--ink-200); }

/* Offer */
.offer { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 2rem 3rem; align-items: center; padding: clamp(1.75rem, 4vw, 3.25rem); background: var(--soft); border: 1px solid var(--line); }
.offer .h2 em { display: block; }
.offer p { margin-top: 1rem; max-width: 50ch; color: var(--muted); }
.price-card { padding: 0.25rem 0 0.25rem clamp(1.5rem, 3vw, 2.5rem); border-left: 1px solid var(--line-2); }
.pc-label { font-size: var(--fs-label); color: var(--muted); }
.price-card strong { display: block; margin: 0.25rem 0; font-weight: 700; font-size: var(--fs-price); letter-spacing: -0.03em; font-variant-numeric: tabular-nums; }
.price-card p { margin: 0 0 1.25rem; font-size: var(--fs-body-sm); color: var(--ink-2); }
.pc-links { display: grid; gap: 0.6rem; }
.pc-links .pill { width: 100%; }

/* Field notes */
.notes { display: grid; grid-template-columns: 1.5fr 0.75fr 0.75fr; gap: 1rem; list-style: none; margin: 0; padding: 0; }
.note a { display: flex; flex-direction: column; height: 100%; min-height: 290px; padding: 1.6rem; border: 1px solid var(--line); transition: border-color 200ms var(--ease); }
.note a:hover { border-color: var(--ink); }
.note--feature a { background: var(--black); color: var(--on-black); border-color: var(--black); }
.n-meta { font-size: var(--fs-label); color: var(--muted); font-variant-numeric: tabular-nums; }
.note.note--feature .n-meta, .note.note--feature p { color: var(--on-black-2); }
.note h3 { margin: auto 0 0.6rem; padding-top: 3rem; font-weight: 600; font-size: var(--fs-title-md); line-height: 1.2; letter-spacing: -0.025em; }
.note--feature h3 { font-size: var(--fs-figure); }
.note p { font-size: var(--fs-body-sm); color: var(--muted); }
.n-more { padding-top: 1.25rem; font-weight: 600; font-size: var(--fs-small); }
.note a:hover .n-more { text-decoration: underline; text-underline-offset: 0.25em; }

/* FAQ */
.faq { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 3rem; align-items: start; }
.faq-col { border-bottom: 1px solid var(--line); }
.qa { border-top: 1px solid var(--line); }
.qa summary { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 60px; padding-block: 0.9rem; cursor: pointer; list-style: none; font-weight: 500; font-size: var(--fs-body); line-height: 1.35; }
.qa summary::-webkit-details-marker { display: none; }
.qa summary:hover .q { text-decoration: underline; text-underline-offset: 0.25em; }
.plus { flex: none; width: 28px; height: 28px; border: 1px solid var(--line-2); border-radius: 50%; display: grid; place-items: center; transition: transform 220ms var(--ease), background-color 160ms, border-color 160ms, color 160ms; }
.plus svg { width: 11px; height: 11px; }
.qa[open] .plus { transform: rotate(45deg); background: var(--ink); border-color: var(--ink); color: var(--paper); }
.answer { padding-bottom: 1.25rem; max-width: 60ch; font-size: var(--fs-body-sm); color: var(--muted); }
.answer a { color: var(--ink); text-decoration: underline; text-underline-offset: 0.2em; }

/* Contact */
.dark { background: var(--black); color: var(--on-black); }
.contact { padding-block: clamp(4.5rem, 9vw, 6.5rem); }
.contact-grid { display: grid; grid-template-columns: minmax(0, 1fr) 420px; gap: 3rem clamp(2rem, 6vw, 5rem); align-items: start; }
.big { font-weight: 700; font-size: clamp(3rem, 6.5vw, 5.5rem); line-height: 0.94; letter-spacing: -0.04em; text-wrap: balance; }
.big em { display: block; }
.contact-copy { margin: 1.4rem 0 2rem; max-width: 40ch; color: var(--on-black-2); font-size: var(--fs-lede); }
.contact-meta { margin-top: 2rem; display: grid; gap: 0.35rem; font-size: var(--fs-body-sm); color: var(--on-black-2); }
.contact-meta a { display: inline-flex; align-items: center; justify-self: start; min-height: 44px; color: var(--on-black); text-decoration: underline; text-underline-offset: 0.2em; }

.form { background: var(--paper); color: var(--ink); padding: 1.75rem; }
.form h3 { margin-bottom: 1.25rem; font-weight: 600; font-size: var(--fs-title-sm); letter-spacing: -0.02em; }
.field { margin-bottom: 0.9rem; }
.field label { display: block; margin-bottom: 0.35rem; font-size: var(--fs-label); font-weight: 600; color: var(--ink-2); }
.field input, .field textarea {
  width: 100%; min-height: 46px; padding: 0.7rem 0.8rem; border: 1px solid var(--ink-200); border-radius: 0;
  background: var(--paper); color: var(--ink); font: 400 var(--fs-body)/1.4 var(--sans); caret-color: var(--ink);
}
.field textarea { min-height: 110px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted); opacity: 1; }
.field input:focus-visible, .field textarea:focus-visible { outline: 2px solid var(--ink); outline-offset: 1px; border-color: var(--ink); }
.field [aria-invalid="true"] { border-color: var(--error); }
.field-error { display: block; margin-top: 0.3rem; font-size: var(--fs-label); color: var(--error); }
.field-error:empty { display: none; }
.form .form-submit { width: 100%; min-height: 48px; margin-top: 0.4rem; }
.dark .form .form-submit { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.dark .form .form-submit:hover { background: #000; }
.dark .form :focus-visible { outline-color: var(--ink); }
.form-meta { margin-top: 0.8rem; text-align: center; font-size: var(--fs-label); color: var(--muted); }
.brief-copy { display: block; margin: 0.25rem auto 0; min-height: 44px; background: none; border: 0; color: var(--ink-2); font: 500 var(--fs-small) var(--sans); text-decoration: underline; text-underline-offset: 0.2em; cursor: pointer; }
.brief-success { margin-top: 1rem; padding: 1rem; border: 1px solid var(--ink); }
.brief-success h4 { margin-bottom: 0.3rem; font-size: var(--fs-lede); }
.brief-success p { font-size: var(--fs-body-sm); color: var(--muted); }
.brief-success a { text-decoration: underline; }

/* Footer */
.foot { padding-block: 2.25rem; }
.foot-links { display: flex; flex-wrap: wrap; gap: 0 1.25rem; margin: 0 0 1rem; padding: 0; list-style: none; }
.foot-links a { display: inline-flex; align-items: center; min-height: 44px; font-size: var(--fs-small); color: var(--ink-2); }
.foot-links a:hover { color: var(--ink); text-decoration: underline; text-underline-offset: 0.25em; }
.foot-in { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.4rem 1.5rem; padding-top: 1rem; border-top: 1px solid var(--line); font-size: var(--fs-label); color: var(--muted); }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .work a { grid-template-columns: 56px minmax(0, 1fr) 150px; }
  .w-type { display: none; }
}

@media (max-width: 900px) {
  .price-card { padding: 1.5rem 0 0; border-left: 0; border-top: 1px solid var(--line-2); }
  .hero-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-stats li:nth-child(2) { border-right: 0; }
  .hero-stats li:nth-child(3) { padding-left: 0; }
  .hero-stats li:nth-child(-n+2) { border-bottom: 1px solid var(--on-dark-rule-soft); }
  .menu-btn { display: inline-flex; }
  .nav { position: absolute; top: 100%; left: 0; right: 0; margin: 0; padding: 0.5rem var(--gutter) 1rem; background: var(--paper); border-bottom: 1px solid var(--line); }
  .nav[data-open="false"] { display: none; }
  .nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .nav a { min-height: 48px; padding: 0; font-size: var(--fs-lede); }
  .nav .nav-cta { display: block; margin-top: 0.5rem; }
  .nav .nav-cta a { justify-content: center; border-radius: 999px; background: var(--ink); color: var(--paper); }
  .top-cta { margin-left: auto; }

  .hero-top, .head, .offer, .contact-grid { grid-template-columns: minmax(0, 1fr); }
  .hero-side { max-width: 46ch; }
  .row a { grid-template-columns: minmax(0, 1fr) 44px; row-gap: 0.4rem; }
  .row-no { display: none; }
  .row h3, .row p { grid-column: 1; }
  .row .arrow { grid-column: 2; grid-row: 1 / span 2; }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps li:nth-child(2) { border-right: 0; }
  .steps li:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .notes { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .note--feature { grid-column: 1 / -1; }
  .faq { grid-template-columns: minmax(0, 1fr); }
  .faq-col + .faq-col { border-top: 0; }
  .faq-col + .faq-col .qa:first-child { border-top: 0; }
  .faq-col:first-child { border-bottom: 0; }
}

@media (max-width: 600px) {
  .hero-film { min-height: max(560px, calc(100svh - 73px)); padding-top: 4.5rem; }
  .hero-film .film-toggle { top: 1rem; }
  .hero-stats { margin-top: 1.75rem; }
  .top-cta { display: none; }
  .menu-btn { margin-left: auto; }
  .work { margin-inline: 0; }
  .work a { grid-template-columns: minmax(0, 1fr) auto; gap: 1rem; padding-inline: 0; }
  .w-no { display: none; }
  .steps, .notes { grid-template-columns: minmax(0, 1fr); }
  .steps li { padding: 1.25rem 0 1.25rem 1.25rem; border-right: 0 !important; border-bottom: 1px solid var(--line); }
  .steps::before { top: 0; bottom: 0; left: -1px; right: auto; width: 2px; height: auto; transform-origin: center top; transform: scaleY(1); }
  .steps.is-armed::before { transform: scaleY(0); }
  .steps.is-armed.is-in::before { transform: scaleY(1); }
  .steps.is-armed { border-top-color: var(--ink); }
  .steps li:last-child { border-bottom: 0; }
  .s-no { font-size: var(--fs-title-md); min-width: 2.2ch; }
  .note a { min-height: 220px; }
  .note h3 { padding-top: 2rem; }
  .foot-in { flex-direction: column; }
}

/* Short phones (e.g. 375x812): keep all four proof numbers inside the first viewport */
@media (max-width: 600px) and (max-height: 820px) {
  .hero-film .lede { margin: 1.25rem 0 1.5rem; }
  .hero-top { row-gap: 1.25rem; }
  .hero-stats li { padding-block: 1rem 1.1rem; }
}

/* ---------- Article / SEO pages ---------- */
.page-head { padding-block: clamp(3rem, 6vw, 4.5rem) clamp(2.5rem, 5vw, 3.75rem); border-bottom: 1px solid var(--line); }
.crumbs ol { display: flex; flex-wrap: wrap; gap: 0 0.5rem; list-style: none; margin: 0 0 1.25rem; padding: 0; font-size: var(--fs-small); color: var(--muted); }
.crumbs li + li::before { content: "/"; margin-right: 0.5rem; color: var(--line-2); }
.crumbs a { display: inline-flex; align-items: center; min-height: 44px; text-decoration: underline; text-underline-offset: 0.2em; }
.crumbs [aria-current="page"] { display: inline-flex; align-items: center; min-height: 44px; }
.display--page { font-size: clamp(2.4rem, 5vw, 4.25rem); line-height: 1.02; max-width: 20ch; }
.byline { margin-top: 1rem; font-size: var(--fs-small); color: var(--muted); }
.page-head .lede { max-width: 54ch; margin-bottom: 0; }
.page-head .actions { margin-top: 2rem; }
.nav a[aria-current="page"] { color: var(--ink); text-decoration: underline; text-underline-offset: 0.3em; }

.list-rows { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 3rem; margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--ink); }
.list-rows li { padding: 1.5rem 0 1.75rem; border-bottom: 1px solid var(--line); }
.list-rows h3 { font-weight: 600; font-size: var(--fs-title-sm); line-height: 1.3; letter-spacing: -0.015em; }
.list-rows p { margin-top: 0.4rem; max-width: 52ch; font-size: var(--fs-body-sm); color: var(--muted); }
.list-rows a, .prose a { color: var(--ink); text-decoration: underline; text-underline-offset: 0.2em; }

.split { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2rem clamp(2rem, 5vw, 4.5rem); align-items: start; }
.prose { max-width: 56ch; color: var(--ink-2); }
.prose p + p { margin-top: 1rem; }
.checks { display: grid; gap: 0.8rem; margin: 0; padding: 0; list-style: none; color: var(--ink-2); }
.checks li { position: relative; padding-left: 1.4rem; }
.checks li::before { content: ""; position: absolute; left: 0; top: 0.62em; width: 7px; height: 7px; border-radius: 50%; background: var(--ink); }
.checks b { color: var(--ink); font-weight: 600; }

.cta-band { padding-block: clamp(3.5rem, 7vw, 5rem); }
.cta-grid { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 2rem 3rem; align-items: end; }
.cta-grid .big { font-size: clamp(2.4rem, 5vw, 4.25rem); }
.cta-grid .contact-copy { margin-bottom: 0; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.dark .pill--ghost { background: transparent; color: var(--on-black); border-color: var(--on-dark-stroke); }
.dark .pill--ghost:hover { background: var(--on-black); color: var(--ink); }

@media (max-width: 900px) {
  .list-rows, .split, .cta-grid { grid-template-columns: minmax(0, 1fr); }
}

@media print {
  .steps.is-armed li > * { opacity: 1 !important; transform: none !important; }
  .steps.is-armed::before { transform: none !important; }
}

/* Reduced motion: remove movement, keep state. Colour and opacity crossfades stay (they are not vestibular);
   positional nudges, slides and rotations snap straight to their end state. */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .pill svg, .w-title, .plus { transition: none; }
  .pill:hover svg, .work a:hover .w-title { transform: none; }
  /* The draft line never arms under reduced motion; if the setting changes mid-visit, show the steps as-is. */
  .steps.is-armed li > * { opacity: 1; transform: none; transition: none; }
  .steps.is-armed::before { transform: none; transition: none; }
  .steps.is-armed .s-no { color: var(--ink-200); }
}
