/* ============================================================
   FITZ WEB DEV
   Warm paper, a hard wide grotesk, red as a second ink.
   Rebuilt 2026-08-22: Clash Display replaces Fraunces, and every
   section that used to be a stack of paragraphs is now an object
   with an edge — cards, tiles, a pinned dial, a wall of phones.

   Fraunces is gone. Do not re-add it: the display face is a single
   token (--disp) and swapping it swaps all 21 pages.

   CONSTRAINTS THIS FILE HAS TO KEEP (site/verify.py fails otherwise)
     - every a/button/summary/input is >= 44px tall
     - text contrast >= 4.5:1 (3:1 at >=24px), measured on its OWN rect
     - nothing overflows at 1440 or 390
     - decorative numerals/wordmarks must NOT be in
       p,h1,h2,h3,li,summary,td,th,a,span,em,strong,label,output —
       the contrast checker reads those. Use a div or a pseudo-element.
   ============================================================ */

@font-face {
  font-family: 'Clash';
  src: url('/fonts/ClashDisplay-Variable.woff2') format('woff2');
  font-weight: 200 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Switzer';
  src: url('/fonts/Switzer-Variable.woff2') format('woff2');
  font-weight: 100 900; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Fragment Mono';
  src: url('/fonts/FragmentMono-Regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}

:root {
  --paper:   #F7F5F1;
  --paper-2: #EFEBE2;
  --card:    #FFFEFB;
  --ink:     #17160F;
  --ink-2:   #55524A;
  --ink-3:   #6B6759;   /* measured: 4.71:1 on --paper-2, the worst ground it sits on */
  --rule:    rgba(23, 22, 15, 0.14);
  --rule-2:  rgba(23, 22, 15, 0.09);
  --red:     #C1121F;
  --red-ink: #8E0D17;
  --on-dark:   #E4E1D8;
  --on-dark-2: #A8A498;

  --disp:  'Clash', 'Switzer', Georgia, serif;
  --text:  'Switzer', -apple-system, 'Helvetica Neue', Arial, sans-serif;
  --mono:  'Fragment Mono', ui-monospace, 'Courier New', monospace;

  --r-lg: 22px; --r-md: 14px; --r-sm: 9px; --r-pill: 999px;
  --sh-1: 0 1px 2px rgba(23,22,15,.05);
  --sh-2: 0 1px 2px rgba(23,22,15,.05), 0 14px 30px -20px rgba(23,22,15,.34);
  --sh-3: 0 2px 4px rgba(23,22,15,.06), 0 30px 60px -28px rgba(23,22,15,.42);
  --ease: cubic-bezier(.16, 1, .3, 1);
  --hh: 66px;           /* masthead height — anchors clear it */
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--text);
  background: var(--paper); color: var(--ink);
  font-size: 17px; line-height: 1.6; font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
::selection { background: var(--red); color: #fff; }
:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }

/* paper grain — one inline SVG, no request */
body::before {
  content: ''; position: fixed; inset: 0; z-index: 1; pointer-events: none;
  opacity: .5; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3CfeColorMatrix values='0 0 0 0 .09 0 0 0 0 .086 0 0 0 0 .06 0 0 0 .055 0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 30px; position: relative; z-index: 2; }
.narrow { max-width: 720px; }
.mono { font-family: var(--mono); letter-spacing: 0.06em; }

/* ============================================================
   MOTION — reveal on scroll
   The hidden state only exists once JS has set html.js-anim, so a
   JS failure ships a visible page instead of 13 invisible blocks.
   Reduced motion keeps the state change and drops the transition
   (HERO-ENGINE: never gate a reveal entirely behind the query).
   ============================================================ */
html.js-anim [data-rv] { opacity: 0; transform: translateY(26px); }
html.js-anim [data-rv].rv-in {
  opacity: 1; transform: none;
  transition: opacity .75s var(--ease) var(--d, 0s),
              transform .75s var(--ease) var(--d, 0s);
}
html.js-anim [data-rv="left"]  { transform: translateX(-26px); }
html.js-anim [data-rv="right"] { transform: translateX(26px); }
/* Below the breakpoint these blocks are stacked, so a sideways slide says
   nothing - and its resting offset pushed the card 26px past the right edge,
   which is document overflow at 390 whatever body's overflow-x says. */
@media (max-width: 900px) {
  html.js-anim [data-rv="left"], html.js-anim [data-rv="right"] { transform: translateY(26px); }
}
html.js-anim [data-rv="scale"] { transform: scale(.965) translateY(20px); }

@keyframes ping {
  0%, 70%, 100% { box-shadow: 0 0 0 0 rgba(193,18,31,.45); }
  35%           { box-shadow: 0 0 0 6px rgba(193,18,31,0); }
}
@keyframes drift-up   { from { transform: translateY(0); } to { transform: translateY(-50%); } }
@keyframes drift-down { from { transform: translateY(-50%); } to { transform: translateY(0); } }
@keyframes marq       { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes line-in    { from { transform: translateY(105%); } to { transform: translateY(0); } }

/* ============================================================
   MASTHEAD — transparent at rest, frosted once you move
   ============================================================ */
.masthead {
  position: sticky; top: 0; z-index: 60;
  background: transparent;
  transition: background .3s ease, box-shadow .3s ease;
}
.masthead::after {                    /* scroll progress, hairline, red */
  content: ''; position: absolute; left: 0; bottom: -1px; height: 2px; width: 100%;
  background: var(--red); transform: scaleX(var(--prog, 0)); transform-origin: 0 50%;
  opacity: 0; transition: opacity .3s ease;
}
.masthead.is-stuck {
  background: rgba(247, 245, 241, 0.78);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  backdrop-filter: blur(14px) saturate(1.4);
  box-shadow: 0 1px 0 var(--rule-2), 0 10px 30px -24px rgba(23,22,15,.5);
}
.masthead.is-stuck::after { opacity: 1; }

.mast-in {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; height: var(--hh);
}
.mark {
  font-family: var(--disp); font-weight: 600; font-size: 1.3rem;
  letter-spacing: -0.035em; color: var(--ink); text-decoration: none;
  display: inline-flex; align-items: center; min-height: 44px; white-space: nowrap;
}
.mark em { font-style: normal; color: var(--red); }
.mark:hover em { color: var(--ink); transition: color .2s ease; }

.mast-nav { display: flex; align-items: center; gap: 4px; }
.mast-nav a {
  position: relative; display: inline-flex; align-items: center; min-height: 44px;
  padding: 0 14px; font-size: 0.9rem; font-weight: 500; color: var(--ink-2);
  text-decoration: none; border-radius: var(--r-pill); transition: color .2s ease;
}
.mast-nav a::after {
  content: ''; position: absolute; left: 14px; right: 14px; bottom: 11px; height: 1.5px;
  background: var(--red); transform: scaleX(0); transform-origin: 0 50%;
  transition: transform .32s var(--ease);
}
.mast-nav a:hover { color: var(--ink); }
.mast-nav a:hover::after { transform: scaleX(1); }

.mast-actions { display: flex; align-items: center; gap: 10px; }
.mast-tel {
  display: inline-flex; align-items: center; gap: 8px; min-height: 44px; padding: 0 12px;
  font-size: 0.84rem; font-weight: 500; color: var(--ink); text-decoration: none;
  white-space: nowrap; border-radius: var(--r-pill); transition: background .2s ease;
}
.mast-tel:hover { background: var(--paper-2); }
.mast-tel svg { width: 14px; height: 14px; fill: var(--red); flex: 0 0 auto; }

/* ============================================================
   BUTTONS — pill, with a fill that sweeps up from the floor
   ============================================================ */
.btn {
  position: relative; overflow: hidden; isolation: isolate;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--text); font-weight: 600; font-size: 0.95rem;
  text-decoration: none; padding: 15px 28px; min-height: 50px;
  border: 1px solid var(--ink); border-radius: var(--r-pill);
  letter-spacing: -0.005em; white-space: nowrap;
  transition: color .28s ease, border-color .28s ease, transform .28s var(--ease),
              box-shadow .28s var(--ease);
}
.btn::before {
  content: ''; position: absolute; inset: 0; z-index: -1; background: var(--red);
  transform: translateY(101%); transition: transform .38s var(--ease);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--sh-2); }
.btn:hover::before { transform: translateY(0); }
.btn-solid { background: var(--ink); color: var(--paper); }
.btn-solid:hover { color: #fff; border-color: var(--red); }
.btn-line { background: transparent; color: var(--ink); }
.btn-line:hover { color: #fff; border-color: var(--red); }
.btn-sm { padding: 10px 18px; min-height: 44px; font-size: 0.85rem; }
.btn svg { width: 15px; height: 15px; fill: currentColor; }

/* ============================================================
   TYPE
   ============================================================ */
/* the eyebrow — a pill with a live red dot. Was a dash-and-caps label. */
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 17px 8px 13px; margin-bottom: 24px;
  background: var(--card); border: 1px solid var(--rule-2);
  border-radius: var(--r-pill); box-shadow: var(--sh-1);
  font-family: var(--mono); font-size: 0.65rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--ink); line-height: 1;
}
.kicker::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--red);
  flex: 0 0 auto; animation: ping 2.8s ease-out infinite;
}

h1.head {
  font-family: var(--disp); font-weight: 600;
  font-size: clamp(2.25rem, 4.6vw, 3.6rem); line-height: 0.96;
  letter-spacing: -0.038em; text-wrap: balance;
}
h2.head {
  font-family: var(--disp); font-weight: 600;
  font-size: clamp(1.75rem, 3.2vw, 2.6rem); line-height: 1.02;
  letter-spacing: -0.032em; text-wrap: balance;
}
h3.sub {
  font-family: var(--disp); font-weight: 600; font-size: 1.28rem;
  letter-spacing: -0.02em; margin-bottom: 8px;
}

/* per-line reveal — each line rides up out of its own slot */
.lines { display: block; }
.lines > .ln { display: block; overflow: hidden; padding-bottom: 0.06em; }
.lines > .ln > i { display: block; font-style: inherit; }
html.js-anim .lines > .ln > i { transform: translateY(105%); }
html.js-anim .rv-in .lines > .ln > i,
html.js-anim .lines.rv-in > .ln > i {
  animation: line-in .9s var(--ease) forwards;
  animation-delay: calc(var(--d, 0s) + var(--ln, 0) * 90ms);
}

.sect { padding: clamp(56px, 6.2vw, 88px) 0; position: relative; scroll-margin-top: var(--hh); }

.answer { font-size: clamp(1.14rem, 1.9vw, 1.36rem); line-height: 1.55; color: var(--ink-2); }
.answer strong { font-weight: 600; color: var(--ink); }
.answer + .answer { margin-top: 20px; }
.lede { margin-top: 20px; font-size: 1.1rem; color: var(--ink-2); max-width: 60ch; }
p + p { margin-top: 16px; }

.stat-line {
  font-family: var(--disp); font-weight: 600;
  font-size: clamp(1.3rem, 2.2vw, 1.8rem); line-height: 1.15;
  letter-spacing: -0.03em; margin-top: 22px;
}
.stat-line .n { color: var(--red); }

/* section head — heading left, a line of supporting mono right */
.shead { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: end; }
.shead-note {
  font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink-3); text-align: right; line-height: 1.9;
  padding-bottom: 6px;
}

/* ============================================================
   CARD — the primitive nearly everything below is made of
   ============================================================ */
.card {
  background: var(--card); border: 1px solid var(--rule-2); border-radius: var(--r-lg);
  box-shadow: var(--sh-2); padding: 30px 28px 32px; position: relative; overflow: hidden;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease),
              border-color .45s var(--ease);
}
.card-hover:hover { transform: translateY(-6px); box-shadow: var(--sh-3); border-color: var(--rule); }

/* ============================================================
   HERO — copy left, a wall of real phones drifting on the right
   ============================================================ */
.hero { padding-top: clamp(18px, 2.4vw, 34px); padding-bottom: clamp(44px, 5vw, 70px); }
.hero::before {                       /* warm bloom behind the headline */
  content: ''; position: absolute; left: -18%; top: -10%; width: 86%; height: 116%;
  background: radial-gradient(44% 44% at 40% 52%, rgba(193,18,31,.055), transparent 70%);
  pointer-events: none; z-index: 0;
}
.hero-grid {
  display: grid; grid-template-columns: minmax(0, 1.06fr) minmax(0, .94fr);
  gap: clamp(32px, 4vw, 68px); align-items: center;
}
.hero-copy { position: relative; z-index: 2; }
.hero .answer { margin-top: 22px; max-width: 46ch; }
.hero .cta-row { justify-content: flex-start; margin-top: 26px; }

/* the mono utility strip, borrowed straight from the reference's GMT-7 row */
.hero-meta {
  margin-top: clamp(26px, 3vw, 34px); padding-top: 18px;
  border-top: 1px solid var(--rule-2);
  display: flex; flex-wrap: wrap; gap: 10px 34px;
}
.hero-meta div {
  font-family: var(--mono); font-size: 0.67rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink-3);
}
.hero-meta div b { color: var(--ink); font-weight: 400; }

/* --- the phone wall --- */
.pw-frame { position: relative; }
.pw {
  position: relative; height: clamp(420px, 44vw, 570px); overflow: hidden;
  --fade: linear-gradient(180deg, transparent 0%, #000 13%, #000 84%, transparent 100%);
  -webkit-mask-image: var(--fade); mask-image: var(--fade);
}
.pw-track { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; height: 100%; }
.pw-col { display: flex; flex-direction: column; will-change: transform; }
.pw-col-a { animation: drift-up 46s linear infinite; }
.pw-col-b { animation: drift-down 46s linear infinite; }
.pw-item {
  flex: 0 0 auto; margin-bottom: 20px; border-radius: 16px; overflow: hidden;
  border: 1px solid var(--rule-2); background: var(--card);
  box-shadow: 0 2px 3px rgba(23,22,15,.05), 0 22px 44px -26px rgba(23,22,15,.5);
}
.pw-item img { width: 100%; height: auto; }
.pw:hover .pw-col { animation-play-state: paused; }
.pw-tag {                             /* a div, never a span — contrast checker */
  position: absolute; left: 50%; bottom: -14px; transform: translateX(-50%); z-index: 3;
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  padding: 8px 15px; border-radius: var(--r-pill);
  background: rgba(23,22,15,.9); color: #fff;
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase;
}
.pw-tag::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%; background: #55E38A;
  animation: ping 2.8s ease-out infinite;
}

/* ============================================================
   MARQUEE — decorative only. No links in here: they would fail
   the 44px tap check and add nothing a real link grid doesn't.
   ============================================================ */
.marq {
  overflow: hidden; padding: 20px 0; position: relative; z-index: 2;
  border-top: 1px solid var(--rule-2); border-bottom: 1px solid var(--rule-2);
  background: var(--paper-2);
  --fade: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: var(--fade); mask-image: var(--fade);
}
.marq-in { display: flex; width: max-content; animation: marq 46s linear infinite; }
.marq-i {
  display: flex; align-items: center; gap: 22px; padding-right: 22px;
  font-family: var(--disp); font-weight: 500; font-size: 1.06rem;
  letter-spacing: -0.01em; color: var(--ink-2); white-space: nowrap;
}
.marq-i::after {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--red); opacity: .55; flex: 0 0 auto;
}

/* ============================================================
   SPEC CARDS — "why it matters". These three had NO css at all
   before this rebuild, which is most of why the page read flat.
   ============================================================ */
.specs {
  margin-top: clamp(38px, 4vw, 56px);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.spec { background: var(--card); border: 1px solid var(--rule-2); border-radius: var(--r-lg);
        box-shadow: var(--sh-2); padding: 32px 28px 34px; position: relative; overflow: hidden;
        transition: transform .45s var(--ease), box-shadow .45s var(--ease); }
.spec:hover { transform: translateY(-6px); box-shadow: var(--sh-3); }
.spec::after {                        /* ghost numeral, pseudo-element so it is not measured */
  content: attr(data-n); position: absolute; right: 12px; bottom: -22px;
  font-family: var(--disp); font-weight: 600; font-size: 7rem; line-height: 1;
  color: var(--ink); opacity: .045; pointer-events: none;
}
.spec-n {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 16px;
  font-family: var(--mono); font-size: 0.63rem; letter-spacing: 0.14em; color: var(--red-ink);
}
.spec-n::before { content: ''; width: 18px; height: 1px; background: var(--red); }
.spec h3 { font-family: var(--disp); font-weight: 600; font-size: 1.3rem;
           letter-spacing: -0.022em; margin-bottom: 10px; }
.spec p { font-size: 0.96rem; color: var(--ink-2); position: relative; z-index: 1; }

/* ============================================================
   THE DIAL — "how it works", pinned, with a rotating index.
   Desktop only. Below 900px it unpins into plain stacked cards.
   ============================================================ */
.dial-wrap { position: relative; }
.dial-stick {
  position: sticky; top: 0; min-height: 100vh;
  display: grid; grid-template-columns: 300px minmax(0, 1fr); align-items: center;
  gap: clamp(30px, 4vw, 70px);
}
.dial {
  position: relative; height: 460px; align-self: center;
  display: flex; align-items: center;
}
.dial-ring {
  position: absolute; left: -330px; top: 50%; width: 640px; height: 640px;
  margin-top: -320px; border: 1px solid var(--rule-2); border-radius: 50%;
  transition: transform .7s var(--ease); transform: rotate(calc(var(--step, 0) * -26deg));
}
.dial-n {                             /* a div: not read by the contrast checker */
  position: absolute; left: 50%; top: 50%; width: 300px; height: 0;
  transform-origin: 0 0;
  transform: rotate(calc((var(--i) - 1.5) * 26deg));
}
.dial-n span {
  position: absolute; left: 290px; top: -22px;
  display: flex; align-items: center; gap: 12px;
  font-family: var(--disp); font-weight: 500; font-size: 2.2rem; line-height: 1;
  color: var(--ink-3); opacity: .38;
  transform: rotate(calc(var(--step, 0) * 26deg - (var(--i) - 1.5) * 26deg));
  transition: opacity .6s var(--ease), color .6s var(--ease), font-size .6s var(--ease);
  white-space: nowrap;
}
.dial-n.is-on span { color: var(--ink); opacity: 1; font-size: 2.9rem; }
.dial-n.is-on span::before {
  content: ''; width: 9px; height: 9px; border-radius: 50%; background: var(--red);
  margin-right: 2px;
}

.dial-panels { position: relative; }
.dial-panel {
  opacity: 0; visibility: hidden; transform: translateY(18px);
  transition: opacity .42s var(--ease), transform .42s var(--ease), visibility .42s;
}
.dial-panel:not(:first-child) { position: absolute; inset: 0; }
.dial-panel.is-on { opacity: 1; visibility: visible; transform: none; }
.dial-panel h3 {
  font-family: var(--disp); font-weight: 600; letter-spacing: -0.032em;
  font-size: clamp(1.8rem, 3.2vw, 2.7rem); line-height: 1.02; margin-bottom: 18px;
}
.dial-panel p { font-size: 1.08rem; color: var(--ink-2); max-width: 46ch; }
.dial-when {
  display: inline-flex; align-items: center; gap: 9px; margin-top: 26px;
  padding: 9px 17px; border-radius: var(--r-pill);
  background: var(--card); border: 1px solid var(--rule-2); box-shadow: var(--sh-1);
  font-family: var(--mono); font-size: 0.65rem; letter-spacing: 0.13em;
  text-transform: uppercase; color: var(--ink);
}
.dial-when::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--red); }
.dial-bar { display: flex; gap: 6px; margin-top: 36px; }
.dial-bar i { width: 44px; height: 3px; border-radius: 2px; background: var(--rule);
              transition: background .5s var(--ease); }
.dial-bar i.is-on { background: var(--red); }

/* ============================================================
   TILES — "what you get"
   ============================================================ */
.gets { margin-top: clamp(38px, 4vw, 56px);
        display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.get {
  background: var(--card); border: 1px solid var(--rule-2); border-radius: var(--r-lg);
  padding: 28px 26px 30px; box-shadow: var(--sh-1);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.get:hover { transform: translateY(-5px); box-shadow: var(--sh-2); }
.get-ic {
  width: 42px; height: 42px; border-radius: 12px; margin-bottom: 18px;
  display: flex; align-items: center; justify-content: center;
  background: var(--paper-2); border: 1px solid var(--rule-2);
}
.get-ic svg { width: 19px; height: 19px; fill: none; stroke: var(--red); stroke-width: 1.7;
              stroke-linecap: round; stroke-linejoin: round; }
.get h3 { font-family: var(--disp); font-weight: 600; font-size: 1.16rem;
          letter-spacing: -0.02em; margin-bottom: 8px; }
.get p { font-size: 0.94rem; color: var(--ink-2); }

/* ============================================================
   FINDING -> INSTRUCTION rows (sub-pages)
   ============================================================ */
.rules { margin-top: 36px; display: grid; gap: 14px; }
.rule-row {
  display: grid; grid-template-columns: 76px 1fr; gap: 22px; align-items: start;
  padding: 26px 28px; background: var(--card); border: 1px solid var(--rule-2);
  border-radius: var(--r-md); box-shadow: var(--sh-1);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.rule-row:hover { transform: translateY(-3px); box-shadow: var(--sh-2); }
.rule-n {
  font-family: var(--disp); font-weight: 600; font-size: 1.9rem; color: var(--red);
  line-height: 1; letter-spacing: -0.03em;
}
.rule-row p { color: var(--ink-2); font-size: 0.97rem; }

/* ============================================================
   WORK — the real sites, as objects you want to click
   ============================================================ */
.work { margin-top: clamp(38px, 4vw, 54px);
        display: grid; grid-template-columns: repeat(6, 1fr); gap: 22px; }
.wk {
  grid-column: span 2; text-decoration: none; color: inherit; display: block;
  border-radius: var(--r-lg); overflow: hidden; background: var(--card);
  border: 1px solid var(--rule-2); box-shadow: var(--sh-2);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.work .wk:first-child:nth-last-child(5),
.work .wk:first-child:nth-last-child(5) ~ .wk:nth-child(2) { grid-column: span 3; }
.wk:hover { transform: translateY(-7px); box-shadow: var(--sh-3); }
.wk-img { aspect-ratio: 16/10; overflow: hidden; background: var(--paper-2); position: relative; }
.wk-img img { width: 100%; height: 100%; object-fit: cover; object-position: top center;
              transition: transform .7s var(--ease); }
.wk:hover .wk-img img { transform: scale(1.045); }
.wk-img::after {                      /* "visit" chip, slides up on hover */
  content: 'Open it \2197'; position: absolute; right: 14px; bottom: 14px;
  padding: 9px 15px; border-radius: var(--r-pill);
  background: rgba(23,22,15,.92); color: #fff;
  font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase;
  transform: translateY(14px); opacity: 0; transition: all .38s var(--ease);
}
.wk:hover .wk-img::after { transform: none; opacity: 1; }
.wk-meta { padding: 18px 22px 22px; display: flex; flex-direction: column;
           align-items: flex-start; gap: 6px; }
.wk-meta strong { display: block; font-family: var(--disp); font-weight: 600;
                  font-size: 1.1rem; letter-spacing: -0.022em; }
.wk-meta span { font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.1em;
                color: var(--ink-3); text-transform: uppercase; }
.wk:hover .wk-meta span { color: var(--red-ink); }

/* ============================================================
   PRICE — a dark slab that floats off the paper
   ============================================================ */
.price-band { padding: clamp(64px, 8vw, 110px) 0; }
.price-slab {
  background: var(--ink); color: var(--on-dark); border-radius: clamp(20px, 2.4vw, 34px);
  padding: clamp(40px, 5vw, 72px) clamp(28px, 4vw, 62px) clamp(44px, 5vw, 70px);
  position: relative; overflow: hidden; box-shadow: var(--sh-3);
}
.price-slab::before {
  content: ''; position: absolute; right: -14%; top: -34%; width: 62%; height: 128%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(193,18,31,.34), transparent 70%);
  pointer-events: none;
}
.price-slab > * { position: relative; z-index: 1; }
.price-band .kicker { background: #2A2820; border-color: rgba(255,255,255,.16);
                      color: #fff; box-shadow: none; }
.price-band h2.head { color: #fff; }
.price-huge {
  font-family: var(--disp); font-weight: 600; line-height: 0.86;
  font-size: clamp(5rem, 16vw, 11rem); letter-spacing: -0.055em; color: #fff;
  display: flex; align-items: flex-start;
}
.price-huge sup { font-size: 0.3em; line-height: 1.25; margin-right: 0.04em; }
.price-huge small { font-size: 0.15em; letter-spacing: 0; font-family: var(--text);
                    font-weight: 500; align-self: flex-end; margin-bottom: 0.5em;
                    margin-left: 0.3em; color: var(--on-dark-2); }
.price-cols { margin-top: 44px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.price-cols > div { background: #201F17; border: 1px solid rgba(255,255,255,.11);
                    border-radius: var(--r-md); padding: 28px 26px 30px; }
.price-cols h3 {
  font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--on-dark-2); margin-bottom: 18px; padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.price-cols ul { list-style: none; }
.price-cols li { padding: 8px 0 8px 24px; position: relative; font-size: 0.95rem;
                 color: var(--on-dark); }
.price-cols li::before { content: '\2713'; position: absolute; left: 0; color: #6FD68F; }
/* a plus, not a cross: these are extras with their own quote, not refusals */
.price-cols .out li::before { content: '+'; color: #D8B25E; font-weight: 600; }
.price-band .btn-solid { background: #fff; color: var(--ink); border-color: #fff; }
.price-band .btn-line { color: #fff; border-color: rgba(255,255,255,.4); }
.price-note { color: var(--on-dark-2); font-size: 0.9rem; margin-top: 18px; }

/* ============================================================
   PULL QUOTE
   ============================================================ */
.pull { background: var(--paper-2); padding: clamp(48px, 5vw, 74px) 0; }
.pull-q {
  font-family: var(--disp); font-weight: 600;
  font-size: clamp(1.9rem, 4vw, 3.1rem); line-height: 1.04; letter-spacing: -0.038em;
  max-width: 18ch;
}
.pull-q em { font-style: italic; color: var(--red); }
.pull-sub { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.14em;
            text-transform: uppercase; color: var(--ink-3); margin-top: 24px; }

/* ============================================================
   THE CALCULATOR
   ============================================================ */
.calc { margin-top: clamp(38px, 4.6vw, 58px); display: grid;
        grid-template-columns: 1.1fr 1fr; gap: clamp(24px, 3vw, 44px); align-items: stretch; }
.calc-controls { display: grid; gap: 28px; align-content: center;
                 background: var(--card); border: 1px solid var(--rule-2);
                 border-radius: var(--r-lg); padding: 34px 32px; box-shadow: var(--sh-1); }
.cf-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 10px; }
.cf-label { font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.13em;
            text-transform: uppercase; color: var(--ink-3); }
.cf-val { font-family: var(--disp); font-weight: 600; font-size: 1.55rem; color: var(--ink);
          letter-spacing: -0.03em; }
input[type=range] {
  /* 44px hit area, 3px visible track: the gradient the JS sets is painted as a
     thin band centred in a tall box, so a thumb-sized tap still lands. */
  -webkit-appearance: none; appearance: none; width: 100%; height: 44px;
  /* the track is a background IMAGE, not a colour — a colour fills the whole
     44px box and background-size cannot constrain it. */
  background-color: transparent;
  background-image: linear-gradient(var(--rule), var(--rule));
  background-repeat: no-repeat;
  background-size: 100% 3px; background-position: 0 50%;
  border-radius: 0; outline: none; margin: 0; cursor: pointer;
}
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none; width: 26px; height: 26px; border-radius: 50%;
  background: var(--red); cursor: pointer; border: 3px solid var(--card);
  box-shadow: 0 1px 5px rgba(23,22,15,.3);
  transition: transform .2s var(--ease);
}
input[type=range]:active::-webkit-slider-thumb { transform: scale(1.15); }
input[type=range]::-moz-range-thumb {
  width: 26px; height: 26px; border-radius: 50%; background: var(--red); cursor: pointer;
  border: 3px solid var(--card); box-shadow: 0 1px 5px rgba(23,22,15,.3);
}
input[type=range]:focus-visible { outline: 2px solid var(--red); outline-offset: 4px; }
.cf-scale { display: flex; justify-content: space-between; font-family: var(--mono);
            font-size: 0.6rem; color: var(--ink-3); margin-top: 2px; }
.calc-out {
  background: var(--ink); color: var(--on-dark); border-radius: var(--r-lg);
  padding: 36px 32px 32px; box-shadow: var(--sh-3);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: center;
}
.calc-out::before {
  content: ''; position: absolute; left: -20%; bottom: -50%; width: 90%; height: 130%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(193,18,31,.32), transparent 70%);
}
.calc-out > * { position: relative; z-index: 1; }
.co-label { font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.14em;
            text-transform: uppercase; color: var(--on-dark-2); }
.co-big { font-family: var(--disp); font-weight: 600; line-height: 1;
          font-size: clamp(3.2rem, 7vw, 4.8rem); letter-spacing: -0.05em; margin: 12px 0 10px;
          color: #fff; }
.co-sub { color: var(--on-dark); font-size: 0.98rem; }
.co-year { color: #fff; font-weight: 600; }
.co-foot { font-family: var(--mono); font-size: 0.63rem; letter-spacing: 0.1em;
           color: var(--on-dark-2); margin-top: 22px; padding-top: 16px;
           border-top: 1px solid rgba(255,255,255,.16); }
.math-note { margin-top: 26px; font-size: 0.88rem; color: var(--ink-3); max-width: 66ch;
             padding-left: 16px; border-left: 2px solid var(--rule); }

/* ============================================================
   THE CATCH — set as a letter, because that is what it is
   ============================================================ */
.letter {
  margin-top: clamp(34px, 4vw, 50px); background: var(--card);
  border: 1px solid var(--rule-2); border-radius: var(--r-lg);
  box-shadow: var(--sh-2); padding: clamp(32px, 4vw, 54px) clamp(26px, 3.4vw, 52px);
  max-width: 760px; position: relative;
}
.letter::before {
  content: ''; position: absolute; left: 0; top: 26px; bottom: 26px; width: 3px;
  background: var(--red); border-radius: 0 3px 3px 0;
}
.letter p { color: var(--ink-2); font-size: 1.02rem; }
.letter h3.sub { margin-top: 30px; }
.letter > h3.sub:first-child { margin-top: 0; }
.letter p strong { color: var(--ink); font-weight: 600; }
.letter-sign {
  margin-top: 30px; padding-top: 22px; border-top: 1px solid var(--rule-2);
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
}
.letter-sign div {
  font-family: var(--mono); font-size: 0.65rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-3);
}

/* ============================================================
   CALLOUT (sub-pages)
   ============================================================ */
.callout {
  margin-top: 34px; padding: 28px 30px; background: var(--card);
  border: 1px solid var(--rule-2); border-left: 3px solid var(--red);
  border-radius: 0 var(--r-md) var(--r-md) 0; box-shadow: var(--sh-1);
}
.callout p { color: var(--ink-2); }
.callout p:first-child { color: var(--ink); font-size: 1.05rem; }

/* ============================================================
   LINK GRIDS — towns / trades
   ============================================================ */
.linkgrid {
  margin-top: clamp(30px, 3.4vw, 44px);
  display: grid; grid-template-columns: repeat(auto-fill, minmax(212px, 1fr)); gap: 12px;
}
.lg-item {
  background: var(--card); border: 1px solid var(--rule-2); border-radius: var(--r-md);
  padding: 16px 20px; min-height: 60px; box-shadow: var(--sh-1);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  text-decoration: none; color: var(--ink); font-size: 0.98rem; font-weight: 500;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), color .3s ease;
}
.lg-item::after {
  content: '\2192'; color: var(--ink-3); font-size: 0.95rem;
  transform: translateX(-4px); opacity: 0; transition: all .3s var(--ease);
}
.lg-item:hover, .lg-item:focus-visible {
  transform: translateY(-3px); box-shadow: var(--sh-2); color: var(--red-ink);
}
.lg-item:hover::after, .lg-item:focus-visible::after {
  opacity: 1; transform: none; color: var(--red);
}
.explore-gap { margin-top: clamp(56px, 7vw, 96px); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { margin-top: 34px; display: grid; gap: 12px; }
.faq details {
  background: var(--card); border: 1px solid var(--rule-2); border-radius: var(--r-md);
  box-shadow: var(--sh-1); overflow: hidden;
  transition: box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.faq details[open] { box-shadow: var(--sh-2); border-color: var(--rule); }
.faq summary {
  list-style: none; cursor: pointer; padding: 21px 62px 21px 26px; position: relative;
  font-family: var(--disp); font-weight: 600; font-size: 1.12rem; letter-spacing: -0.022em;
  min-height: 44px; display: flex; align-items: center;
  transition: color .2s ease;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--red-ink); }
.faq summary::after {
  content: ''; position: absolute; right: 22px; top: 50%; width: 26px; height: 26px;
  margin-top: -13px; border: 1px solid var(--rule); border-radius: 50%;
  background:
    linear-gradient(var(--red), var(--red)) center / 10px 1.5px no-repeat,
    linear-gradient(var(--red), var(--red)) center / 1.5px 10px no-repeat;
  transition: transform .35s var(--ease), background-color .3s ease;
}
.faq details[open] summary::after { transform: rotate(135deg); }
.faq .a { padding: 0 46px 26px 26px; }
.faq .a p { color: var(--ink-2); font-size: 0.99rem; max-width: 68ch; }

/* ============================================================
   CTA — dark slab, form inside
   ============================================================ */
.cta { padding-bottom: clamp(64px, 8vw, 110px); }
.cta-slab {
  background: var(--ink); color: var(--on-dark); border-radius: clamp(20px, 2.4vw, 34px);
  padding: clamp(42px, 5vw, 76px) clamp(28px, 4vw, 62px);
  position: relative; overflow: hidden; box-shadow: var(--sh-3);
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 460px);
  gap: clamp(32px, 4vw, 60px); align-items: center;
}
.cta-slab::before {
  content: ''; position: absolute; left: -10%; bottom: -60%; width: 60%; height: 150%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(193,18,31,.3), transparent 70%);
  pointer-events: none;
}
.cta-slab > * { position: relative; z-index: 1; }
.cta .kicker { background: #2A2820; border-color: rgba(255,255,255,.16);
               color: #fff; box-shadow: none; }
.cta h2.head { color: #fff; }
.cta-sub { margin-top: 20px; max-width: 44ch; color: var(--on-dark); font-size: 1.06rem; }
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-mini {
  margin-top: 30px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.16);
  display: flex; gap: 10px 30px; flex-wrap: wrap;
}
.cta-mini div { font-family: var(--mono); font-size: 0.65rem; letter-spacing: 0.11em;
                text-transform: uppercase; color: var(--on-dark-2); }

/* ---- the form ---- */
.ask { background: #201F17; border: 1px solid rgba(255,255,255,.13);
       border-radius: var(--r-lg); padding: 32px 30px 34px; }
.ask h3 { font-family: var(--disp); font-weight: 600; font-size: 1.4rem;
          letter-spacing: -0.028em; margin-bottom: 6px; color: #fff; }
.ask > p { font-size: 0.94rem; color: var(--on-dark-2); margin-bottom: 22px; }
.field { margin-bottom: 14px; }
.field label { display: block; font-family: var(--mono); font-size: 0.61rem;
               letter-spacing: 0.13em; text-transform: uppercase; color: var(--on-dark-2);
               margin-bottom: 7px; }
.field input {
  width: 100%; font-family: var(--text); font-size: 1rem; color: #fff;
  background: #2B2A21; border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--r-sm); padding: 13px 15px; min-height: 48px;
}
.field input::placeholder { color: #8E8A7E; }
.field input:focus { outline: 2px solid var(--red); outline-offset: 1px; border-color: var(--red); }
.ask .btn { width: 100%; margin-top: 10px; }
.ask .btn-solid { background: #fff; color: var(--ink); border-color: #fff; }
.ask-note { margin-top: 15px; font-size: 0.8rem; color: var(--on-dark-2); }
.ask-alt { margin-top: 14px; font-size: 0.87rem; color: var(--on-dark); }
.ask-alt a { color: #fff; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.35);
             display: inline-flex; align-items: center; min-height: 44px; }
.ask-alt a:hover { border-bottom-color: var(--red); }
.updated { font-family: var(--mono); font-size: 0.65rem; color: var(--ink-3); margin-top: 30px;
           text-align: center; }

/* ============================================================
   PROOF STRIP
   ============================================================ */
.proof-strip {
  border-top: 1px solid var(--rule-2); border-bottom: 1px solid var(--rule-2);
  padding: 18px 0; font-size: 0.93rem; color: var(--ink-2);
}
.proof-strip strong { color: var(--ink); font-weight: 600; }

/* ============================================================
   FOOTER — with the wordmark blown up behind it
   ============================================================ */
.foot { border-top: 1px solid var(--rule-2); padding: 44px 0 26px; position: relative; }
.foot-in { display: flex; justify-content: space-between; gap: 26px; flex-wrap: wrap;
           align-items: flex-end; }
.foot a { color: var(--ink-2); text-decoration: none; }
.foot a:hover { color: var(--red-ink); }
.foot-contact { font-family: var(--mono); font-size: 0.74rem; display: flex; gap: 10px;
                flex-wrap: wrap; align-items: center; }
.foot-contact a { min-height: 44px; display: inline-flex; align-items: center; }
.foot-legal { font-family: var(--mono); font-size: 0.63rem; color: var(--ink-3);
              text-align: right; line-height: 2; }
.foot-links { display: flex; gap: 22px; margin-top: 8px; }
.foot-links a {
  font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink-3); text-decoration: none;
  display: inline-flex; align-items: center; min-height: 44px;
}
.foot-links a:hover { color: var(--red-ink); }

.ghost {                              /* a div + aria-hidden: never measured, never read */
  font-family: var(--disp); font-weight: 600; letter-spacing: -0.05em; line-height: 0.78;
  font-size: min(17.4vw, 216px); color: var(--ink); opacity: .055;
  margin-top: 30px; user-select: none; pointer-events: none; white-space: nowrap;
  overflow: hidden;
}

/* ============================================================
   STICKY MOBILE BAR
   ============================================================ */
.bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  display: none; gap: 1px; background: var(--ink);
  transform: translateY(100%); transition: transform .3s var(--ease);
}
.bar.up { transform: translateY(0); }
.bar a { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
         min-height: 58px; text-decoration: none; font-weight: 600; font-size: 0.95rem; }
.bar .b-text { background: var(--red); color: #fff; }
.bar .b-call { background: var(--ink); color: var(--paper); }
.bar svg { width: 15px; height: 15px; fill: currentColor; }

/* ============================================================
   SUB-PAGE FURNITURE — crumbs, data table, dot matrix, steps
   ============================================================ */
.crumbs { padding: 20px 0 0; font-size: 0.7rem; color: var(--ink-3); }
.crumbs a { color: var(--ink-2); text-decoration: none; display: inline-flex;
            align-items: center; min-height: 44px; }
.crumbs a:hover { color: var(--red-ink); }
.crumbs span { margin: 0 8px; }

.tbl-wrap { overflow-x: auto; margin-top: 34px; background: var(--card);
            border: 1px solid var(--rule-2); border-radius: var(--r-md);
            box-shadow: var(--sh-1); padding: 4px 24px 10px; }
table.data { width: 100%; border-collapse: collapse; font-size: 0.98rem; }
table.data th, table.data td {
  text-align: left; padding: 15px 14px 15px 0; border-bottom: 1px solid var(--rule-2);
  vertical-align: baseline;
}
table.data tr:last-child td { border-bottom: 0; }
table.data thead th {
  font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.13em;
  text-transform: uppercase; color: var(--ink-3); padding-top: 16px; padding-bottom: 12px;
  border-bottom: 1px solid var(--rule);
}
table.data td.num {
  font-family: var(--disp); font-weight: 600; font-size: 1.55rem; letter-spacing: -0.03em;
  color: var(--red); white-space: nowrap; width: 1%; padding-right: 22px;
}
table.data tr.muted td.num { color: var(--ink-3); }
table.data td.n2 { font-family: var(--mono); font-size: 0.78rem; color: var(--ink-3);
                   white-space: nowrap; }
.method { margin-top: 16px; font-size: 0.8rem; color: var(--ink-3); max-width: 66ch;
          padding-left: 16px; border-left: 2px solid var(--rule); }

.dv-wrap { margin: 34px 0 0; max-width: 560px; background: var(--card);
           border: 1px solid var(--rule-2); border-radius: var(--r-md);
           box-shadow: var(--sh-1); padding: 26px 26px 22px; }
.dotviz { width: 100%; height: auto; display: block; overflow: visible; }
.dv-lab { font-family: var(--mono); font-size: 10px; letter-spacing: 0.11em; fill: var(--ink-3); }
.dv-num { font-family: var(--disp); font-weight: 600; font-size: 21px; fill: var(--ink-3); }
.dv-num.dv-red { fill: var(--red); }
.dv-cap { margin-top: 16px; font-size: 0.85rem; color: var(--ink-2); max-width: 52ch; }

/* "what happens next" — used by every generated page */
.next { margin-top: 36px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.next-step {
  background: var(--card); border: 1px solid var(--rule-2); border-radius: var(--r-md);
  padding: 26px 22px 28px; box-shadow: var(--sh-1);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.next-step:hover { transform: translateY(-5px); box-shadow: var(--sh-2); }
.next-n { font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.14em;
          color: var(--red-ink); display: block; margin-bottom: 14px; }
.next-step h3 { font-family: var(--disp); font-weight: 600; font-size: 1.14rem;
                letter-spacing: -0.022em; margin-bottom: 7px; }
.next-step p { font-size: 0.92rem; color: var(--ink-2); }
.next-step em { font-style: normal; font-family: var(--mono); font-size: 0.7rem;
                color: var(--ink-3); display: block; margin-top: 12px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .work { grid-template-columns: repeat(2, 1fr); }
  .work .wk, .work .wk:first-child:nth-last-child(5),
  .work .wk:first-child:nth-last-child(5) ~ .wk:nth-child(2) { grid-column: span 1; }
  .gets { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 980px) {
  .mast-nav { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .pw { height: 400px; }
  .specs { grid-template-columns: 1fr; }
  .next { grid-template-columns: 1fr 1fr; }
  .cta-slab { grid-template-columns: 1fr; }
  .shead { grid-template-columns: 1fr; }
  .shead-note { text-align: left; padding-bottom: 0; }
}
@media (max-width: 900px) {
  /* the dial unpins: four plain cards, no rotation, nothing hidden */
  .dial-stick { position: static; min-height: 0; grid-template-columns: 1fr; gap: 0; }
  .dial { display: none; }
  .dial-panels { display: grid; gap: 16px; }
  .dial-panel, .dial-panel:not(:first-child) {
    position: static; inset: auto; opacity: 1; visibility: visible; transform: none;
    background: var(--card); border: 1px solid var(--rule-2); border-radius: var(--r-lg);
    box-shadow: var(--sh-1); padding: 28px 26px 30px;
  }
  .dial-panel h3 { font-size: 1.6rem; }
  .dial-bar { display: none; }
}
@media (max-width: 860px) {
  .calc { grid-template-columns: 1fr; }
  .price-cols { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .bar { display: flex; }
  body { padding-bottom: 58px; }
  .work { grid-template-columns: 1fr; }
  .next { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  /* the card gets short and narrow here, so a 7rem numeral crosses the body copy */
  .spec::after { font-size: 4.6rem; right: 6px; bottom: -14px; }
  .wrap { padding: 0 20px; }
  .gets { grid-template-columns: 1fr; }
  .linkgrid { grid-template-columns: 1fr 1fr; }
  .rule-row { grid-template-columns: 1fr; gap: 10px; padding: 22px 22px 24px; }
  .mast-tel span { display: none; }
  .mast-tel { width: 44px; padding: 0; justify-content: center; }
  .foot-legal { text-align: left; }
  table.data td.num { font-size: 1.25rem; padding-right: 14px; }
  .tbl-wrap { padding: 4px 16px 10px; }
  .hero-meta { gap: 8px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
  html.js-anim .lines > .ln > i { transform: none; }
}
