/* ============================================================
   BRADFORD BIO TEAM — "Cordon Line" Design System
   Mixed-alternating: petrol ink sections / warm stone sections.
   Immersive photo entry, incident-orange cordon accents,
   Fragment Mono status chrome. Runway AI photography build.
   ============================================================ */

/* ============================================================
   1. TOKENS & RESET
   ============================================================ */
:root {
    --ink: #10181d;
    --ink-2: #0b1115;
    --ink-3: #17222b;
    --stone: #f1ece3;
    --stone-2: #e8e1d3;
    --paper: #faf7f1;
    --flare: #f26a1b;
    --flare-deep: #cf5510;
    --flare-soft: rgba(242, 106, 27, 0.14);
    --clear: #3fae6a;
    --snow: #f3f4f2;
    --snow-dim: #aeb8bc;
    --snow-faint: #78868c;
    --char: #1d2126;
    --char-dim: #565d63;
    --rule-ink: rgba(243, 244, 242, 0.12);
    --rule-stone: rgba(29, 33, 38, 0.14);
    --font-poster: "Big Shoulders", "Arial Narrow", sans-serif;
    --font-body: "Public Sans", system-ui, sans-serif;
    --font-mono: "Fragment Mono", "Courier New", monospace;
    --bend: 1080px;
    --curve: 10px;
    --curve-lg: 16px;
    --ease: cubic-bezier(0.22, 0.7, 0.25, 1);
}

*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--char);
    background: var(--stone);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font: inherit; }

:focus-visible { outline: 2px solid var(--flare); outline-offset: 3px; border-radius: 4px; }

/* ============================================================
   2. LAYOUT PRIMITIVES
   ============================================================ */
.cordon { max-width: var(--bend); margin: 0 auto; padding: 0 clamp(18px, 4vw, 40px); }

.zone-ink { background: var(--ink); color: var(--snow); }
.zone-ink-2 { background: var(--ink-2); color: var(--snow); }
.zone-stone { background: var(--stone); color: var(--char); }
.zone-stone-2 { background: var(--stone-2); color: var(--char); }

.strip-pad { padding: clamp(64px, 9vw, 110px) 0; }

/* Section headers */
.brief { max-width: 62ch; margin-bottom: clamp(34px, 5vw, 56px); }
.brief-tag {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--font-mono); font-size: 0.72rem;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--flare); margin-bottom: 16px;
}
.brief-tag::before { content: ""; width: 26px; height: 2px; background: var(--flare); }
.brief h2, .brief h1 {
    font-family: var(--font-poster); font-weight: 700;
    font-size: clamp(2.1rem, 4.6vw, 3.4rem);
    line-height: 0.98; letter-spacing: 0.01em; text-transform: uppercase;
}
.brief p { margin-top: 14px; font-size: 1rem; }
.zone-ink .brief p, .zone-ink-2 .brief p { color: var(--snow-dim); }
.zone-stone .brief p, .zone-stone-2 .brief p { color: var(--char-dim); }

/* ============================================================
   3. BUTTONS
   ============================================================ */
.act {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    font-family: var(--font-body); font-weight: 700; font-size: 0.95rem;
    padding: 15px 30px; border-radius: 7px;
    transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.act:hover { transform: translateY(-2px); }

.act--flare { background: var(--flare); color: #fff; }
.act--flare:hover { background: var(--flare-deep); }

.act--ghost { border: 1.5px solid rgba(243, 244, 242, 0.4); color: var(--snow); }
.act--ghost:hover { border-color: var(--snow); }

.act--inkline { border: 1.5px solid rgba(29, 33, 38, 0.35); color: var(--char); }
.act--inkline:hover { border-color: var(--char); }

.act--tel { font-family: var(--font-mono); letter-spacing: 0.04em; }

/* Pulse ring on primary tel actions */
.act--ring { position: relative; }
.act--ring::after {
    content: ""; position: absolute; inset: -4px;
    border: 2px solid var(--flare); border-radius: 11px;
    opacity: 0; animation: ringout 2.6s ease-out infinite;
}
@keyframes ringout {
    0% { opacity: 0.65; transform: scale(0.97); }
    70% { opacity: 0; transform: scale(1.08); }
    100% { opacity: 0; }
}

/* ============================================================
   4. HEADER — hidden on load (immersive entry), slides in on scroll
   ============================================================ */
.watch {
    position: fixed; top: 0; left: 0; right: 0; z-index: 120;
    background: rgba(11, 17, 21, 0.96);
    border-bottom: 1px solid var(--rule-ink);
    transform: translateY(-100%);
    transition: transform 0.4s var(--ease);
    backdrop-filter: blur(8px);
}
.watch.is-shown { transform: translateY(0); }
body.no-immersive .watch { position: sticky; transform: none; }

.watch-inner {
    display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 14px;
    min-height: 72px; padding: 8px 0;
}
.watch-inner .brand { justify-self: start; }

/* Brand lockup — one designed unit */
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand-mark { width: 44px; height: 44px; flex-shrink: 0; }
.brand-stack { display: flex; flex-direction: column; line-height: 1; }
.brand-town {
    font-family: var(--font-mono); font-size: 0.6rem;
    letter-spacing: 0.34em; text-transform: uppercase;
    color: var(--flare); margin-bottom: 3px;
}
.brand-name {
    font-family: var(--font-poster); font-weight: 800; font-size: 1.35rem;
    letter-spacing: 0.05em; text-transform: uppercase; color: var(--snow);
}
.zone-stone .brand-name, footer .brand-name { color: inherit; }

/* Desktop nav — centred as its own grid column, independent of the brand/actions widths */
.watch-links { display: flex; align-items: center; gap: 26px; justify-self: center; }
.watch-links > li { position: relative; }
.watch-links a {
    font-size: 0.92rem; font-weight: 600; color: var(--snow-dim);
    transition: color 0.2s var(--ease);
}
.watch-links a:hover { color: var(--snow); }

/* Services dropdown (JS hover-delay, .is-open) */
.drop-arm > a::after { content: " ▾"; font-size: 0.7em; }
.drop-tray {
    position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%);
    width: 620px; max-width: 90vw;
    background: var(--ink-3); border: 1px solid var(--rule-ink); border-radius: var(--curve);
    padding: 22px; display: grid; grid-template-columns: 1fr 1fr; gap: 4px 22px;
    opacity: 0; visibility: hidden; translate: 0 8px;
    transition: opacity 0.25s var(--ease), visibility 0.25s, translate 0.25s var(--ease);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45);
}
.drop-arm.is-open .drop-tray { opacity: 1; visibility: visible; translate: 0 0; }
.drop-tray a {
    display: flex; align-items: center; gap: 9px;
    padding: 8px 10px; border-radius: 6px; font-size: 0.88rem;
}
.drop-tray a::before { content: ""; width: 5px; height: 5px; background: var(--flare); flex-shrink: 0; transform: rotate(45deg); }
.drop-tray a:hover { background: rgba(242, 106, 27, 0.1); color: var(--snow); }

.watch-right { display: flex; align-items: center; gap: 14px; justify-self: end; }
.watch-tel {
    font-family: var(--font-mono); font-weight: 500; font-size: 0.92rem;
    color: var(--snow); letter-spacing: 0.03em;
    display: inline-flex; align-items: center; gap: 8px;
}
.watch-tel svg { width: 15px; height: 15px; color: var(--flare); }
.watch-cta { padding: 10px 20px; font-size: 0.85rem; }

/* Burger */
.burger { display: none; width: 44px; height: 44px; position: relative; flex-shrink: 0; }
.burger span, .burger span::before, .burger span::after {
    content: ""; position: absolute; left: 10px; width: 24px; height: 2px;
    background: var(--snow); transition: transform 0.3s var(--ease), opacity 0.2s;
}
.burger span { top: 21px; }
.burger span::before { left: 0; top: -7px; }
.burger span::after { left: 0; top: 7px; }
.burger.is-x span { background: transparent; }
.burger.is-x span::before { transform: translateY(7px) rotate(45deg); background: var(--snow); }
.burger.is-x span::after { transform: translateY(-7px) rotate(-45deg); background: var(--snow); }

/* Mobile drawer */
.drawer {
    position: fixed; inset: 0; z-index: 110;
    background: rgba(11, 17, 21, 0.98);
    padding: 110px clamp(22px, 6vw, 44px) 40px;
    opacity: 0; visibility: hidden; transition: opacity 0.3s var(--ease), visibility 0.3s;
    overflow-y: auto;
}
.drawer.is-open { opacity: 1; visibility: visible; }
.drawer a { display: block; padding: 13px 0; font-size: 1.06rem; font-weight: 600; color: var(--snow); border-bottom: 1px solid var(--rule-ink); }
.drawer-head {
    font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.24em;
    text-transform: uppercase; color: var(--flare); margin: 26px 0 6px;
}
.drawer .act { margin-top: 26px; width: 100%; }

/* ============================================================
   5. ENTRY — immersive full-bleed photo hero
   ============================================================ */
.entry {
    position: relative; min-height: 100svh;
    display: flex; flex-direction: column; justify-content: flex-end;
    color: var(--snow); background: var(--ink-2);
    overflow: hidden;
}
.entry-photo { position: absolute; inset: 0; }
.entry-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 38%; }
.entry-scrim {
    position: absolute; inset: 0;
    background:
        linear-gradient(180deg, rgba(11, 17, 21, 0.42) 0%, rgba(11, 17, 21, 0.18) 34%, rgba(16, 24, 29, 0.88) 82%, var(--ink-2) 100%),
        linear-gradient(94deg, rgba(11, 17, 21, 0.72) 0%, rgba(11, 17, 21, 0.28) 46%, rgba(11, 17, 21, 0.05) 72%);
}

.entry-top {
    position: absolute; top: 0; left: 0; right: 0; z-index: 5;
    padding: 22px 0;
}
.entry-top .cordon { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.entry-tel {
    font-family: var(--font-mono); font-size: 0.9rem; color: var(--snow);
    display: inline-flex; align-items: center; gap: 9px;
    padding: 10px 18px; border: 1px solid rgba(243, 244, 242, 0.3); border-radius: 7px;
    background: rgba(11, 17, 21, 0.35); backdrop-filter: blur(4px);
}
.entry-tel svg { width: 15px; height: 15px; color: var(--flare); }

.entry-copy { position: relative; z-index: 4; padding-bottom: clamp(40px, 6vw, 72px); max-width: 760px; }
.entry-flag {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--font-mono); font-size: 0.72rem;
    letter-spacing: 0.24em; text-transform: uppercase; color: #fff;
    background: var(--flare); padding: 8px 16px; border-radius: 5px;
    margin-bottom: 22px;
}
.entry-flag::before { content: ""; width: 8px; height: 8px; background: #fff; transform: rotate(45deg); }
.entry-h1 {
    font-family: var(--font-poster); font-weight: 800;
    font-size: clamp(3rem, 9vw, 5.8rem);
    line-height: 0.94; letter-spacing: 0.01em; text-transform: uppercase;
}
.entry-h1 em { font-style: normal; color: var(--flare); }
.entry-sub { margin-top: 18px; max-width: 56ch; font-size: clamp(0.98rem, 1.6vw, 1.12rem); color: rgba(243, 244, 242, 0.88); }
.entry-acts { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

/* Status rail — cordon ribbon on the hero's bottom edge */
.entry-rail {
    position: relative; z-index: 4;
    border-top: 2px solid var(--flare);
    background: rgba(11, 17, 21, 0.82); backdrop-filter: blur(6px);
}
.entry-rail .cordon {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.rail-cell {
    padding: 18px 22px 20px 0; display: flex; flex-direction: column; gap: 3px;
    border-right: 1px solid var(--rule-ink);
}
.rail-cell:last-child { border-right: none; }
.rail-cell + .rail-cell { padding-left: 22px; }
.rail-key {
    font-family: var(--font-mono); font-size: 0.62rem;
    letter-spacing: 0.22em; text-transform: uppercase; color: var(--flare);
}
.rail-val { font-weight: 700; font-size: 1.02rem; color: var(--snow); }
.rail-val small { display: block; font-weight: 400; font-size: 0.78rem; color: var(--snow-faint); }

/* ============================================================
   6. FLAGLINE — signs you need us (stone)
   ============================================================ */
.flagline-set { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.flag-tag {
    display: flex; align-items: center; gap: 12px;
    background: var(--paper); border: 1px solid var(--rule-stone);
    border-radius: var(--curve); padding: 16px 18px;
    font-weight: 600; font-size: 0.92rem;
    transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);
}
.flag-tag:hover { transform: translateY(-3px); border-color: rgba(242, 106, 27, 0.55); }
.flag-pip { width: 9px; height: 9px; flex-shrink: 0; transform: rotate(45deg); }
.flag-pip--high { background: var(--flare); }
.flag-pip--mid { background: #d9a13c; }
.flagline-foot {
    margin-top: 26px; display: flex; flex-wrap: wrap; align-items: center; gap: 10px 18px;
    font-size: 0.95rem; color: var(--char-dim);
}
.flagline-foot a { font-family: var(--font-mono); font-weight: 500; color: var(--flare-deep); border-bottom: 1px solid rgba(242, 106, 27, 0.4); }
.flagline-foot a:hover { border-bottom-color: var(--flare-deep); }

/* ============================================================
   7. DOCKET — grouped service ledger (ink)
   ============================================================ */
.docket-plate {
    display: flex; align-items: baseline; gap: 16px;
    margin: 44px 0 10px; padding-bottom: 12px;
    border-bottom: 2px solid var(--flare);
}
.docket-plate:first-of-type { margin-top: 0; }
.docket-plate h3 {
    font-family: var(--font-poster); font-weight: 700;
    font-size: clamp(1.3rem, 2.4vw, 1.7rem);
    letter-spacing: 0.04em; text-transform: uppercase;
}
.docket-plate .plate-ref {
    font-family: var(--font-mono); font-size: 0.68rem;
    letter-spacing: 0.2em; color: var(--snow-faint); text-transform: uppercase;
}

.docket-row {
    display: grid; grid-template-columns: 58px 1fr auto 64px 20px;
    align-items: center; gap: 20px;
    padding: 15px 0; border-bottom: 1px solid var(--rule-ink);
    transition: background 0.3s var(--ease), padding 0.3s var(--ease);
}
.docket-row:hover { background: linear-gradient(90deg, var(--flare-soft), transparent 65%); padding-left: 14px; }
.docket-idx {
    font-family: var(--font-mono); font-size: 0.78rem;
    color: var(--snow-faint); letter-spacing: 0.06em;
}
.docket-row:hover .docket-idx { color: var(--flare); }
.docket-main { min-width: 0; }
.docket-name { font-weight: 700; font-size: 1.05rem; color: var(--snow); }
.docket-line { font-size: 0.85rem; color: var(--snow-faint); margin-top: 1px; }
.docket-chip {
    width: 64px; height: 48px; border-radius: 6px; overflow: hidden;
    border: 1px solid var(--rule-ink); position: relative;
}
.docket-chip img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.55) contrast(1.04); transition: filter 0.35s var(--ease); }
.docket-row:hover .docket-chip img { filter: saturate(1) contrast(1); }
.docket-go { color: var(--snow-faint); font-size: 1.1rem; transition: color 0.25s, transform 0.25s var(--ease); }
.docket-row:hover .docket-go { color: var(--flare); transform: translateX(4px); }

/* ============================================================
   8. FORK — domestic / commercial photo split
   ============================================================ */
.fork { display: grid; grid-template-columns: 1fr 1fr; position: relative; }
.fork-half {
    position: relative; min-height: 460px;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: clamp(34px, 5vw, 60px); color: var(--snow);
    overflow: hidden;
}
.fork-photo { position: absolute; inset: 0; }
.fork-photo img { width: 100%; height: 100%; object-fit: cover; }
.fork-half::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(11, 17, 21, 0.25) 0%, rgba(11, 17, 21, 0.86) 78%);
}
.fork-body { position: relative; z-index: 2; max-width: 46ch; }
.fork-kicker {
    font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.24em;
    text-transform: uppercase; color: var(--flare); display: block; margin-bottom: 10px;
}
.fork-body h3 {
    font-family: var(--font-poster); font-weight: 700; text-transform: uppercase;
    font-size: clamp(1.6rem, 3vw, 2.2rem); line-height: 1;
}
.fork-body p { margin-top: 10px; font-size: 0.95rem; color: rgba(243, 244, 242, 0.85); }
.fork-spec { margin: 16px 0 22px; display: grid; gap: 7px; }
.fork-spec li {
    font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.02em;
    color: var(--snow-dim); padding-left: 20px; position: relative;
}
.fork-spec li::before { content: ""; position: absolute; left: 0; top: 6px; width: 7px; height: 7px; background: var(--flare); transform: rotate(45deg); }

/* Hazard-diamond seam node — direct child of .fork (not .fork-half, which
   clips with overflow:hidden), so left:50% is the true centre of the grid */
.fork-node {
    position: absolute; z-index: 6; top: 50%; left: 50%;
    width: 62px; height: 62px; transform: translate(-50%, -50%) rotate(45deg);
    background: var(--ink); border: 2px solid var(--flare); border-radius: 10px;
    display: grid; place-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.fork-node span {
    transform: rotate(-45deg);
    font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.18em;
    color: var(--snow); text-transform: uppercase;
}

/* ============================================================
   9. TAPELINE — horizontal treatment line (stone)
   ============================================================ */
.tapeline { position: relative; }
.tape-rail {
    position: relative; height: 3px; background: var(--rule-stone);
    border-radius: 2px; overflow: hidden; margin-bottom: clamp(30px, 4vw, 46px);
}
.tape-pulse {
    position: absolute; top: 0; bottom: 0; width: 130px; border-radius: 2px;
    background: linear-gradient(90deg, transparent, var(--flare) 55%, #ffb27a 72%, transparent);
    animation: tapeflow 6s cubic-bezier(0.4, 0.1, 0.5, 0.9) infinite;
    will-change: transform;
}
@keyframes tapeflow { from { transform: translateX(-160px); } to { transform: translateX(110vw); } }

.stage-set { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(18px, 3vw, 34px); }
.stage { position: relative; opacity: 0; transform: translateY(22px); transition: opacity 0.55s var(--ease), transform 0.55s var(--ease); }
.stage.is-in { opacity: 1; transform: none; }

.stage-node {
    width: 30px; height: 30px; transform: rotate(45deg);
    background: var(--paper); border: 2px solid var(--rule-stone); border-radius: 6px;
    margin: -46px 0 24px 4px; position: relative;
    transition: border-color 0.4s var(--ease) 0.2s, background 0.4s var(--ease) 0.2s;
}
.stage.is-in .stage-node { border-color: var(--flare); }
.stage-node::after {
    content: ""; position: absolute; inset: 7px; background: var(--flare); border-radius: 2px;
    opacity: 0; transform: scale(0.4); transition: opacity 0.35s var(--ease) 0.35s, transform 0.35s var(--ease) 0.35s;
}
.stage.is-in .stage-node::after { opacity: 1; transform: scale(1); }

.stage-idx { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.2em; color: var(--flare-deep); }
.stage h3 {
    font-family: var(--font-poster); font-weight: 700; text-transform: uppercase;
    font-size: 1.32rem; letter-spacing: 0.03em; margin: 6px 0 8px;
}
.stage p { font-size: 0.9rem; color: var(--char-dim); }

/* Handover document tag */
.stage-doc {
    display: inline-flex; align-items: center; gap: 9px; margin-top: 16px;
    background: var(--paper); border: 1px solid var(--rule-stone);
    border-left: 3px solid var(--clear); border-radius: 4px;
    padding: 8px 13px;
    font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.06em;
    color: var(--char); text-transform: uppercase;
    box-shadow: 0 2px 6px rgba(29, 33, 38, 0.07);
}
.stage-doc svg { width: 13px; height: 13px; color: var(--clear); flex-shrink: 0; }

/* ============================================================
   10. UNITPROOF — credentials band (ink)
   ============================================================ */
.proof-set { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.proof-cell {
    background: var(--ink-3); border: 1px solid var(--rule-ink);
    border-radius: var(--curve); padding: 24px;
    transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.proof-cell:hover { border-color: rgba(242, 106, 27, 0.5); transform: translateY(-3px); }
.proof-cell h3 {
    font-family: var(--font-poster); font-weight: 700; text-transform: uppercase;
    font-size: 1.15rem; letter-spacing: 0.05em; margin-bottom: 6px;
    display: flex; align-items: center; gap: 10px;
}
.proof-cell h3::before { content: ""; width: 8px; height: 8px; background: var(--flare); transform: rotate(45deg); flex-shrink: 0; }
.proof-cell p { font-size: 0.88rem; color: var(--snow-dim); }

.badge-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.badge-row span {
    font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--snow-dim);
    border: 1px solid var(--rule-ink); border-radius: 999px; padding: 7px 15px;
}

/* ============================================================
   11. WORDROW — reviews strip (stone)
   ============================================================ */
.word-set { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.word-card {
    background: var(--paper); border: 1px solid var(--rule-stone);
    border-top: 3px solid var(--flare); border-radius: var(--curve);
    padding: 26px; display: flex; flex-direction: column; gap: 14px;
}
.word-stars { color: var(--flare); font-size: 0.85rem; letter-spacing: 3px; }
.word-card blockquote { font-size: 0.95rem; color: var(--char); flex: 1; }
.word-who {
    font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.08em;
    color: var(--char-dim); text-transform: uppercase;
}
.word-foot { margin-top: 30px; text-align: center; }

/* ============================================================
   12. REACH — coverage cordon panel (ink)
   ============================================================ */
.reach-wrap { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(30px, 5vw, 60px); align-items: start; }
.reach-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.reach-grid li {
    display: flex; align-items: center; gap: 10px;
    font-size: 0.92rem; color: var(--snow-dim);
    padding: 9px 13px; border: 1px solid var(--rule-ink); border-radius: 6px;
    transition: border-color 0.25s var(--ease), color 0.25s var(--ease);
}
.reach-grid li:hover { border-color: rgba(242, 106, 27, 0.5); color: var(--snow); }
.reach-grid li::before { content: ""; width: 6px; height: 6px; background: var(--flare); transform: rotate(45deg); flex-shrink: 0; }
.reach-note {
    background: var(--ink-3); border: 1px solid var(--rule-ink);
    border-left: 3px solid var(--flare); border-radius: var(--curve);
    padding: 26px;
}
.reach-note h3 {
    font-family: var(--font-poster); font-weight: 700; text-transform: uppercase;
    font-size: 1.3rem; letter-spacing: 0.04em; margin-bottom: 10px;
}
.reach-note p { font-size: 0.92rem; color: var(--snow-dim); }
.reach-note .act { margin-top: 20px; }

/* ============================================================
   13. VERDICTS — FAQ, verdict chips visible while closed (stone)
   ============================================================ */
.verdict-set { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; align-items: start; }
.verdict-set details {
    background: var(--paper); border: 1px solid var(--rule-stone);
    border-radius: var(--curve); overflow: hidden;
}
.verdict-set details[open] { border-color: rgba(242, 106, 27, 0.5); }
.verdict-set summary { display: flex; align-items: center; gap: 13px; padding: 17px 18px; cursor: pointer; list-style: none; }
.verdict-set summary::-webkit-details-marker { display: none; }
.verdict-chip {
    flex-shrink: 0; width: 82px; text-align: center;
    font-family: var(--font-mono); font-size: 0.62rem; font-weight: 500;
    letter-spacing: 0.14em; padding: 5px 0; border-radius: 5px;
}
.vc-yes { color: #1e7a45; border: 1.5px solid rgba(63, 174, 106, 0.55); }
.vc-no { color: var(--flare-deep); border: 1.5px solid rgba(242, 106, 27, 0.55); }
.vc-dep { color: #8a6a1c; border: 1.5px solid rgba(217, 161, 60, 0.6); }
.vc-q { width: 52px; color: var(--char-dim); border: 1.5px solid var(--rule-stone); }
details[open] .vc-q { color: var(--flare-deep); border-color: rgba(242, 106, 27, 0.55); }
.verdict-set summary h3 { flex: 1; font-size: 0.98rem; font-weight: 600; line-height: 1.4; }
.verdict-plus {
    flex-shrink: 0; width: 26px; height: 26px; display: grid; place-items: center;
    border: 1px solid var(--rule-stone); border-radius: 50%;
    color: var(--char-dim); font-size: 15px; line-height: 1;
    transition: transform 0.25s var(--ease);
}
.verdict-set details[open] .verdict-plus { transform: rotate(45deg); color: var(--flare-deep); border-color: rgba(242, 106, 27, 0.5); }
.verdict-body { padding: 0 18px 18px 113px; }
.verdict-body p { font-size: 0.92rem; color: var(--char-dim); }
.verdict-body p + p { margin-top: 10px; }
.verdict-body b { color: var(--char); }

/* ============================================================
   14. REPORT — quote form as incident report (ink)
   ============================================================ */
.report-wrap { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(30px, 5vw, 60px); align-items: start; }
.report-side h2 {
    font-family: var(--font-poster); font-weight: 700; text-transform: uppercase;
    font-size: clamp(2rem, 4vw, 3rem); line-height: 0.98;
}
.report-side p { margin-top: 14px; color: var(--snow-dim); }
.report-side .side-tel {
    display: inline-flex; align-items: center; gap: 12px; margin-top: 26px;
    font-family: var(--font-mono); font-size: 1.25rem; color: var(--snow);
}
.report-side .side-tel svg { width: 20px; height: 20px; color: var(--flare); }
.side-hours { margin-top: 8px; font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--snow-faint); }

.report-card {
    background: var(--ink-3); border: 1px solid var(--rule-ink);
    border-radius: var(--curve-lg); overflow: hidden;
}
.report-head {
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    padding: 15px 24px; border-bottom: 1px dashed var(--rule-ink);
    font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--snow-faint);
}
.report-head b { color: var(--flare); font-weight: 500; }
.report-body { padding: 24px; display: grid; gap: 16px; }
.report-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.report-body label { display: grid; gap: 7px; font-size: 0.85rem; font-weight: 600; color: var(--snow-dim); }
.report-body input, .report-body select, .report-body textarea {
    width: 100%; padding: 13px 15px;
    background: rgba(243, 244, 242, 0.05);
    border: 1px solid var(--rule-ink); border-radius: 7px;
    color: var(--snow); transition: border-color 0.2s var(--ease);
}
.report-body select option { color: var(--char); background: #fff; }
.report-body input:focus, .report-body select:focus, .report-body textarea:focus { outline: none; border-color: var(--flare); }
.report-body textarea { min-height: 120px; resize: vertical; }

/* Urgency cordon tabs */
.report-tabs { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }
.report-tabs input { position: absolute; opacity: 0; pointer-events: none; }
.report-tabs label {
    display: block; text-align: center; padding: 11px 8px; cursor: pointer;
    font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--snow-dim);
    border: 1px solid var(--rule-ink); border-radius: 7px;
    transition: border-color 0.2s var(--ease), color 0.2s, background 0.2s;
}
.report-tabs input:checked + label { border-color: var(--flare); color: #fff; background: var(--flare-soft); }
.report-tabs input:focus-visible + label { outline: 2px solid var(--flare); outline-offset: 2px; }

.report-send { width: 100%; }
.report-note { font-size: 0.78rem; color: var(--snow-faint); text-align: center; }
.form-msg { display: none; padding: 13px 16px; border-radius: 7px; font-size: 0.9rem; }
.form-msg.is-ok { display: block; background: rgba(63, 174, 106, 0.14); border: 1px solid rgba(63, 174, 106, 0.5); color: #7fd8a5; }
.form-msg.is-err { display: block; background: rgba(242, 106, 27, 0.12); border: 1px solid rgba(242, 106, 27, 0.5); color: #ffb27a; }

/* Honeypot */
.field-web { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ============================================================
   15. LASTCALL — final CTA band
   ============================================================ */
.lastcall { background: var(--flare); color: #fff; }
.lastcall .cordon {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
    gap: 20px; padding-top: clamp(40px, 6vw, 62px); padding-bottom: clamp(40px, 6vw, 62px);
}
.lastcall h2 {
    font-family: var(--font-poster); font-weight: 800; text-transform: uppercase;
    font-size: clamp(1.9rem, 4vw, 3rem); line-height: 0.98; max-width: 18ch;
}
.lastcall p { margin-top: 8px; font-size: 0.98rem; color: rgba(255, 255, 255, 0.88); }
.lastcall .act--dark { background: var(--ink); color: var(--snow); }
.lastcall .act--dark:hover { background: var(--ink-2); }

/* ============================================================
   16. FOOTER
   ============================================================ */
.basefoot { background: var(--ink-2); color: var(--snow-dim); }
.basefoot-grid {
    display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: clamp(26px, 4vw, 50px);
    padding: clamp(50px, 7vw, 80px) 0 40px;
}
.basefoot h4 {
    font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.22em;
    text-transform: uppercase; color: var(--flare); margin-bottom: 16px;
}
.basefoot-brand p { margin-top: 14px; font-size: 0.88rem; max-width: 34ch; }
.basefoot li { margin-bottom: 9px; }
.basefoot li a { font-size: 0.88rem; transition: color 0.2s var(--ease); }
.basefoot li a:hover { color: var(--snow); }
.basefoot-contact li { display: flex; gap: 9px; align-items: baseline; font-size: 0.88rem; }
.basefoot-contact .mono { font-family: var(--font-mono); }

.social-line { display: flex; gap: 10px; margin-top: 20px; }
.social-line a {
    width: 38px; height: 38px; display: grid; place-items: center;
    border: 1px solid var(--rule-ink); border-radius: 8px;
    color: var(--snow-dim); transition: color 0.2s, border-color 0.2s, transform 0.25s var(--ease);
}
.social-line a:hover { color: var(--flare); border-color: rgba(242, 106, 27, 0.5); transform: translateY(-2px); }
.social-line svg { width: 16px; height: 16px; }

.basefoot-map {
    border-top: 1px solid var(--rule-ink);
    padding: 28px 0;
}
.basefoot-map iframe {
    display: block; width: 100%; max-width: 100%; height: 320px;
    border-radius: 10px; filter: grayscale(0.25) contrast(1.05);
}

.basefoot-bar {
    border-top: 1px solid var(--rule-ink);
    padding: 20px 0;
}
.basefoot-bar .cordon {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 10px 20px;
    font-size: 0.8rem; color: var(--snow-faint);
}
.basefoot-bar nav { display: flex; flex-wrap: wrap; gap: 18px; }
.basefoot-bar a:hover { color: var(--snow); }

/* ============================================================
   17. FLOAT QUOTE (sticky CTA) + THUMBBAR (mobile)
   ============================================================ */
.float-quote {
    position: fixed; right: 22px; bottom: 22px; z-index: 90;
    display: inline-flex; align-items: center; gap: 9px;
    background: var(--flare); color: #fff; font-weight: 700; font-size: 0.9rem;
    padding: 14px 22px; border-radius: 999px;
    box-shadow: 0 12px 30px rgba(207, 85, 16, 0.45);
    opacity: 0; pointer-events: none; transform: translateY(12px);
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.float-quote.is-visible { opacity: 1; pointer-events: auto; transform: none; }
.float-quote svg { width: 16px; height: 16px; }

.thumbbar {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
    display: none; gap: 1px; background: var(--ink-3);
    border-top: 1px solid var(--rule-ink);
    padding-bottom: env(safe-area-inset-bottom);
}
.thumbbar a {
    flex: 1; display: flex; flex-direction: column; align-items: center; gap: 2px;
    padding: 11px 8px; font-size: 0.82rem; font-weight: 700;
}
.thumbbar small { font-weight: 400; font-size: 0.62rem; opacity: 0.75; font-family: var(--font-mono); letter-spacing: 0.04em; }
.thumb-call { background: var(--flare); color: #fff; }
.thumb-quote { background: var(--ink-2); color: var(--snow); }

/* ============================================================
   18. SERVICE PAGE — entry + alternating bands + CTA belts
   ============================================================ */
.svc-entry {
    position: relative; color: var(--snow); background: var(--ink-2);
    padding: 150px 0 0; overflow: hidden;
}
.svc-entry-photo { position: absolute; inset: 0; }
.svc-entry-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.svc-entry::before {
    content: ""; position: absolute; inset: 0; z-index: 1;
    background:
        linear-gradient(180deg, rgba(11, 17, 21, 0.55) 0%, rgba(16, 24, 29, 0.85) 70%, var(--ink-2) 100%),
        linear-gradient(94deg, rgba(11, 17, 21, 0.65) 0%, rgba(11, 17, 21, 0.2) 60%);
}
.svc-entry .cordon { position: relative; z-index: 2; }
.svc-crumbs {
    font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--snow-faint); margin-bottom: 18px;
}
.svc-crumbs a:hover { color: var(--snow); }
.svc-entry h1 {
    font-family: var(--font-poster); font-weight: 800; text-transform: uppercase;
    font-size: clamp(2.4rem, 6.5vw, 4.4rem); line-height: 0.95; max-width: 20ch;
}
.svc-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--font-mono); font-weight: 400; font-size: 0.72rem;
    letter-spacing: 0.2em; text-transform: uppercase; color: #fff;
    background: var(--flare); padding: 8px 15px; border-radius: 5px;
    margin-bottom: 20px;
}
.svc-eyebrow::before { content: ""; width: 8px; height: 8px; background: #fff; transform: rotate(45deg); }
.svc-h1b {
    font-family: var(--font-poster); font-weight: 700; text-transform: uppercase;
    font-size: clamp(1.5rem, 3.4vw, 2.3rem); line-height: 1;
    color: var(--flare); margin-top: 12px; max-width: 26ch;
}
.svc-lead {
    font-family: var(--font-body); font-weight: 600;
    font-size: clamp(1.05rem, 1.9vw, 1.3rem); line-height: 1.45;
    color: rgba(243, 244, 242, 0.92); margin-top: 18px; max-width: 52ch;
}
.svc-sub2 {
    font-family: var(--font-mono); font-weight: 400; font-size: 0.8rem;
    letter-spacing: 0.08em; color: var(--snow-dim); margin-top: 12px; max-width: 60ch;
}
.svc-entry .entry-sub { color: rgba(243, 244, 242, 0.85); }
.svc-entry .entry-acts { margin-bottom: clamp(44px, 6vw, 70px); }
.svc-entry .entry-rail { margin: 0 calc(50% - 50vw); }

/* Cost ink panel (band--ink) reuses this grid + band-copy typography */
.band .cordon {
    display: grid; grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(30px, 5vw, 64px); align-items: center;
}
.band-copy h2 {
    font-family: var(--font-poster); font-weight: 700; text-transform: uppercase;
    font-size: clamp(1.7rem, 3.4vw, 2.5rem); line-height: 1; margin-bottom: 16px;
}
.band-copy h3 { font-size: 1.08rem; font-weight: 700; margin: 22px 0 8px; }
.band-copy p { font-size: 0.95rem; margin-bottom: 13px; }
.zone-stone .band-copy p, .zone-stone-2 .band-copy p { color: var(--char-dim); }
.zone-ink .band-copy p, .zone-ink-2 .band-copy p { color: var(--snow-dim); }
.band-copy ul { margin: 4px 0 14px; display: grid; gap: 8px; }
.band-copy ul li { position: relative; padding-left: 22px; font-size: 0.92rem; }
.band-copy ul li::before { content: ""; position: absolute; left: 0; top: 7px; width: 7px; height: 7px; background: var(--flare); transform: rotate(45deg); }
.band-copy a:not(.act) { color: var(--flare-deep); border-bottom: 1px solid rgba(242, 106, 27, 0.4); transition: opacity 0.2s; }
.zone-ink .band-copy a:not(.act), .zone-ink-2 .band-copy a:not(.act) { color: #ff9a54; }
.band-copy a:not(.act):hover { opacity: 0.8; }

/* Horizontal CTA belt between bands */
.belt { background: var(--ink); color: var(--snow); border-top: 2px solid var(--flare); border-bottom: 2px solid var(--flare); }
.belt .cordon {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
    gap: 16px 24px; padding-top: 34px; padding-bottom: 34px;
}
.belt-copy h2, .belt-copy .belt-h {
    display: block;
    font-family: var(--font-poster); font-weight: 700; text-transform: uppercase;
    font-size: clamp(1.4rem, 2.8vw, 2rem); line-height: 1;
}
.belt-copy p, .belt-copy .belt-p { display: block; margin-top: 5px; font-size: 0.9rem; color: var(--snow-dim); }

/* ============================================================
   18b. DUO SPLITS — full-bleed alternating service sections
   Image fills its half edge-to-edge and stretches to the full
   section height (no floating card, no dead space). Copy column
   aligns with the cordon; CTA pair closes every split.
   ============================================================ */
.duo-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.duo-visual { position: relative; order: 1; min-height: 400px; overflow: hidden; }
.duo-copy { order: 2; }
.duo--flip .duo-visual { order: 2; }
.duo--flip .duo-copy { order: 1; }

.duo-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.duo-visual::before {
    content: ""; position: absolute; top: 0; left: 0; right: 0; height: 8px; z-index: 2;
    background: repeating-linear-gradient(-45deg, var(--flare) 0 14px, var(--ink) 14px 28px);
    opacity: 0.92;
}
.duo-ref {
    position: absolute; bottom: 14px; left: 14px; z-index: 2;
    font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.18em;
    text-transform: uppercase; color: #fff;
    background: rgba(11, 17, 21, 0.72); padding: 6px 11px; border-radius: 4px;
    backdrop-filter: blur(3px);
}

/* Copy column: outer edge lines up with the cordon column */
.duo-copy {
    padding-block: clamp(52px, 7vw, 92px);
    padding-inline: clamp(30px, 4.5vw, 60px) max(clamp(18px, 4vw, 40px), calc(50vw - var(--bend) / 2));
}
.duo--flip .duo-copy {
    padding-inline: max(clamp(18px, 4vw, 40px), calc(50vw - var(--bend) / 2)) clamp(30px, 4.5vw, 60px);
}
.duo-copy h2 {
    font-family: var(--font-poster); font-weight: 700; text-transform: uppercase;
    font-size: clamp(1.7rem, 3.4vw, 2.5rem); line-height: 1; margin-bottom: 16px;
}
.duo-copy h3 { font-size: 1.05rem; font-weight: 700; margin: 22px 0 8px; }
.duo-copy p { font-size: 0.95rem; margin-bottom: 13px; }
.zone-stone .duo-copy p, .zone-stone-2 .duo-copy p { color: var(--char-dim); }
.zone-ink .duo-copy p, .zone-ink-2 .duo-copy p { color: var(--snow-dim); }
.duo-copy ul { margin: 4px 0 14px; display: grid; gap: 8px; }
.duo-copy ul li { position: relative; padding-left: 22px; font-size: 0.92rem; }
.duo-copy ul li::before { content: ""; position: absolute; left: 0; top: 7px; width: 7px; height: 7px; background: var(--flare); transform: rotate(45deg); }
.duo-copy a:not(.act) { color: var(--flare-deep); border-bottom: 1px solid rgba(242, 106, 27, 0.4); transition: opacity 0.2s; }
.zone-ink .duo-copy a:not(.act), .zone-ink-2 .duo-copy a:not(.act) { color: #ff9a54; }
.duo-copy a:not(.act):hover { opacity: 0.8; }

/* CTA pair closing every split */
.duo-acts { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

/* Scroll variant: long copy scrolls inside a fixed panel; image + CTAs stay put */
.duo-scroll {
    max-height: 480px; overflow-y: auto;
    padding-right: 16px; padding-bottom: 40px;
    scrollbar-width: thin; scrollbar-color: var(--flare) rgba(29, 33, 38, 0.1);
    -webkit-mask-image: linear-gradient(180deg, #000 calc(100% - 42px), transparent);
    mask-image: linear-gradient(180deg, #000 calc(100% - 42px), transparent);
}
.duo-scroll::-webkit-scrollbar { width: 6px; }
.duo-scroll::-webkit-scrollbar-track { background: rgba(29, 33, 38, 0.08); border-radius: 3px; }
.duo-scroll::-webkit-scrollbar-thumb { background: var(--flare); border-radius: 3px; }
.duo-scroll > :last-child { margin-bottom: 0; }
.duo-hint {
    display: inline-flex; align-items: center; gap: 8px; margin-top: 10px;
    font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--char-dim);
}
.duo-hint::before { content: ""; width: 20px; height: 2px; background: var(--flare); }

/* Fold accordions: h2 + intro stay visible, each h3 block collapses.
   Closed state is applied by JS (body.js-fold); without JS all content shows. */
.fold { border: 1px solid var(--rule-stone); border-radius: var(--curve); background: var(--paper); margin-bottom: 12px; overflow: hidden; }
.zone-ink .fold, .zone-ink-2 .fold { border-color: var(--rule-ink); background: var(--ink-3); }
.fold-head { display: flex; align-items: center; gap: 12px; padding: 15px 18px; cursor: pointer; user-select: none; }
.fold-head h3 { margin: 0; font-size: 0.98rem; flex: 1; }
.duo-copy .fold-head h3 { margin: 0; }
.fold-mark {
    flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    border: 1.5px solid rgba(242, 106, 27, 0.55); color: var(--flare-deep);
    font-family: var(--font-mono); font-size: 0.9rem; line-height: 1;
    transition: transform 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease);
}
.zone-ink .fold-mark, .zone-ink-2 .fold-mark { color: #ff9a54; }
.fold-body { display: grid; grid-template-rows: 1fr; transition: grid-template-rows 0.4s var(--ease); }
.fold-clip { overflow: hidden; }
.fold-clip > * { margin-left: 18px; margin-right: 18px; }
.fold-clip > :last-child { padding-bottom: 16px; }
body.js-fold .fold:not(.is-open) .fold-body { grid-template-rows: 0fr; }
.fold.is-open .fold-mark { transform: rotate(45deg); background: var(--flare); border-color: var(--flare); color: #fff; }

/* ============================================================
   18c. BELT VARIANTS — rotating CTA breaker designs
   ============================================================ */
/* Core: centred badge + poster heading + acts + feature cells */
.belt--core { border-top-width: 2px; }
.belt--core .cordon { display: block; text-align: center; padding-top: clamp(48px, 7vw, 76px); padding-bottom: clamp(48px, 7vw, 76px); }
.belt-badge {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--flare);
    border: 1px solid rgba(242, 106, 27, 0.5); border-radius: 999px;
    padding: 7px 16px; margin-bottom: 20px;
}
.belt--core .belt-h { font-size: clamp(1.8rem, 4vw, 2.8rem); }
.belt--core .belt-p { margin: 12px auto 24px; max-width: 54ch; }
.belt--core .belt-acts { justify-content: center; }
.belt-cells { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 28px; }
.belt-cell {
    position: relative; text-align: left;
    background: rgba(243, 244, 242, 0.05); border: 1px solid var(--rule-ink);
    border-radius: var(--curve); padding: 16px 18px 16px 42px; max-width: 300px;
}
.belt-cell::before { content: ""; position: absolute; left: 18px; top: 24px; width: 9px; height: 9px; background: var(--flare); transform: rotate(45deg); }
.belt-cell .cell-t { display: block; font-weight: 700; font-size: 0.95rem; }
.belt-cell .cell-s { display: block; margin-top: 3px; font-size: 0.8rem; color: var(--snow-dim); }

/* Pulse: solid flare slab, ink phone button */
.belt--pulse { background: var(--flare); border-top: none; border-bottom: none; color: #fff; }
.belt--pulse .cordon { padding-top: 30px; padding-bottom: 30px; }
.belt--pulse .belt-h { color: #fff; }
.belt--pulse .belt-p { color: rgba(255, 255, 255, 0.88); }
.belt--pulse .act--dark { background: var(--ink); color: var(--snow); }
.belt--pulse .act--dark:hover { background: var(--ink-2); }

/* Legal pages */
.legal-flow h3 {
    font-family: var(--font-poster); font-weight: 700; text-transform: uppercase;
    font-size: 1.35rem; letter-spacing: 0.03em; margin: 34px 0 10px;
    padding-top: 22px; border-top: 1px solid var(--rule-stone);
}
.legal-flow h3:first-child { margin-top: 0; border-top: none; padding-top: 0; }
.legal-flow p { font-size: 0.95rem; color: var(--char-dim); margin-bottom: 12px; }
.legal-flow p b { color: var(--char); }
.legal-flow a { color: var(--flare-deep); border-bottom: 1px solid rgba(242, 106, 27, 0.4); }
.legal-flow a:hover { opacity: 0.8; }

/* Reviews page - platform summary cells */
.plat-set { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.plat-cell {
    position: relative; background: var(--paper); border: 1px solid var(--rule-stone);
    border-radius: var(--curve); padding: 22px;
}
.plat-dot { position: absolute; top: 22px; right: 22px; width: 12px; height: 12px; border-radius: 50%; background: var(--plat, var(--flare)); }
.plat-head { display: flex; align-items: baseline; gap: 10px; margin-bottom: 8px; }
.plat-head b { font-family: var(--font-poster); font-weight: 700; text-transform: uppercase; font-size: 1.15rem; letter-spacing: 0.04em; }
.plat-score { font-family: var(--font-mono); font-size: 1rem; color: var(--flare-deep); }
.plat-score small { font-size: 0.7rem; color: var(--char-dim); }
.plat-cell p { font-size: 0.85rem; color: var(--char-dim); }
.plat-count { display: inline-block; margin-top: 12px; font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--char-dim); }
@media (max-width: 1020px) { .plat-set { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .plat-set { grid-template-columns: 1fr; } }

/* Full-width dark cost panel (design_flow "how much" sections) */
.band--ink .cordon { grid-template-columns: 1fr; max-width: 900px; }
.band--ink .band-copy h2 { color: var(--snow); }
.band--ink .band-copy h3 { color: var(--snow); }
.belt-acts { display: flex; flex-wrap: wrap; gap: 12px; }

/* SEO content markers wrapper (content inserted verbatim later) */
.svc-flow h2, .svc-flow h3 { scroll-margin-top: 90px; }

/* Related services rail */
.kin-rail { display: grid; grid-template-columns: repeat(4, 1fr); gap: 13px; }
.kin-rail a {
    display: flex; align-items: center; gap: 10px;
    background: var(--paper); border: 1px solid var(--rule-stone);
    border-radius: 7px; padding: 13px 15px;
    font-size: 0.88rem; font-weight: 600;
    transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.kin-rail a:hover { border-color: rgba(242, 106, 27, 0.55); transform: translateY(-2px); }
.kin-rail a::before { content: ""; width: 6px; height: 6px; background: var(--flare); transform: rotate(45deg); flex-shrink: 0; }

/* ============================================================
   19. REVEAL UTILITIES
   ============================================================ */
.lift { opacity: 0; transform: translateY(24px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.lift.is-in { opacity: 1; transform: none; }

/* ============================================================
   20. RESPONSIVE
   ============================================================ */
@media (max-width: 1020px) {
    .watch-links { display: none; }
    .watch-right .watch-tel { display: none; }
    .burger { display: block; margin-left: auto; }
    .watch-right { margin-left: 0; }
    .watch-cta { display: none; }

    .flagline-set { grid-template-columns: repeat(2, 1fr); }
    .proof-set { grid-template-columns: repeat(2, 1fr); }
    .stage-set { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
    .tape-rail { display: none; }
    .stage-node { margin-top: 0; }
    .word-set { grid-template-columns: 1fr; }
    .reach-wrap { grid-template-columns: 1fr; }
    .verdict-set { grid-template-columns: 1fr; }
    .report-wrap { grid-template-columns: 1fr; }
    .kin-rail { grid-template-columns: repeat(2, 1fr); }
    .band .cordon { grid-template-columns: 1fr; }

    /* Duo splits stack: copy first, image below as a fixed-ratio strip */
    .duo-grid { grid-template-columns: 1fr; }
    .duo-copy, .duo--flip .duo-copy { order: 1; padding: 52px clamp(18px, 4vw, 40px) 40px; }
    .duo-visual, .duo--flip .duo-visual { order: 2; min-height: 0; aspect-ratio: 16 / 10; }
    .duo-scroll {
        max-height: none; overflow: visible; padding-right: 0; padding-bottom: 0;
        -webkit-mask-image: none; mask-image: none;
    }
    .duo-hint { display: none; }
}

@media (max-width: 820px) {
    .entry-rail .cordon { grid-template-columns: 1fr 1fr; }
    .rail-cell { border-right: none; border-bottom: 1px solid var(--rule-ink); padding-left: 0 !important; }
    .rail-cell:nth-child(3), .rail-cell:nth-child(4) { border-bottom: none; }

    .fork { grid-template-columns: 1fr; }

    .docket-row { grid-template-columns: 40px 1fr 20px; }
    .docket-chip, .docket-line { display: none; }

    .thumbbar { display: flex; }
    .float-quote { display: none; }
    body { padding-bottom: 64px; }
    .basefoot { padding-bottom: 12px; }
}

@media (max-width: 640px) {
    .watch-inner { min-height: 62px; }
    .brand-mark { width: 38px; height: 38px; }
    .brand-name { font-size: 1.15rem; }
    .entry-tel span { display: none; }
    .entry-tel { padding: 10px 12px; }
    .flagline-set { grid-template-columns: 1fr; }
    .stage-set { grid-template-columns: 1fr; }
    .proof-set { grid-template-columns: 1fr; }
    .reach-grid { grid-template-columns: 1fr; }
    .kin-rail { grid-template-columns: 1fr; }
    .verdict-body { padding-left: 18px; }
    .basefoot-grid { grid-template-columns: 1fr 1fr; }
    .report-duo { grid-template-columns: 1fr; }
    .report-tabs { grid-template-columns: 1fr; }
}

@media (max-width: 430px) {
    .basefoot-grid { grid-template-columns: 1fr; }
    .entry-h1 { font-size: 2.7rem; }
}

/* ============================================================
   21. REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .tape-pulse { display: none; }
    .tape-rail { background: linear-gradient(90deg, var(--flare), rgba(242, 106, 27, 0.15)); }
    .act--ring::after { animation: none; }
    .lift, .stage { opacity: 1; transform: none; transition: none; }
    .stage-node, .stage-node::after { transition: none; opacity: 1; transform: rotate(45deg) scale(1); border-color: var(--flare); }
    .stage-node::after { transform: scale(1); }
    .watch, .drawer, .drop-tray, .act, .flag-tag, .docket-row, .proof-cell, .float-quote { transition: none; }
}
