/* ============================================================
   DaKa — Permit & License Specialists
   Design system: warm paper, ink, blueprint blue, stamp red.
   Serif display (Charter stack) · system sans body · mono labels.
   Motion: drawn linework + scroll reveals; reduced-motion safe.
   ============================================================ */

:root {
  --paper: #F7F5F0;
  --paper-deep: #EFEBE1;
  --card: #FCFBF7;
  --ink: #1C2733;
  --ink-soft: #46535F;
  --muted: #6E7883;
  --blue: #2E5E8C;
  --blue-deep: #1F3F5E;
  --stamp: #B23B2A;
  --line: #DCD6C9;
  --line-soft: #E7E2D6;
  --amber: #A97F24;
  --amber-soft: #F4E7C8;
  --blue-soft: #E2ECF5;
  --blue-mid: #A9C9E4;
  --red-soft: #F5E2DC;
  --wash: #EDF3F8;
  --serif: Charter, 'Iowan Old Style', Palatino, Georgia, serif;
  --sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Inter, Roboto, Helvetica, Arial, sans-serif;
  --mono: ui-monospace, 'SF Mono', SFMono-Regular, Menlo, Consolas, monospace;
  --maxw: 1080px;
  --r: 10px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
/* Inline SVGs carry intrinsic viewBox widths (520/975px) — cap them and zero
   grid/flex min-content so scenes can never force a page wider than a phone. */
svg { max-width: 100%; }
.hero-grid > *, .split > *, .grid2 > *, .grid3 > *, .grid4 > *,
.stats > *, .steps > *, .phases > *, .proofrow > * { min-width: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans); color: var(--ink); background: var(--paper);
  font-size: 16.5px; line-height: 1.6;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-deep); }
::selection { background: var(--blue); color: var(--paper); }

.skip { position: absolute; left: -9999px; top: 0; background: var(--ink); color: var(--paper); padding: 8px 14px; z-index: 99; }
.skip:focus { left: 8px; top: 8px; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

/* ---- header ---- */
.hdr { position: sticky; top: 0; z-index: 50; background: color-mix(in srgb, var(--paper) 92%, transparent);
       backdrop-filter: blur(10px); border-bottom: 1px solid var(--line-soft); }
.hdr-in { display: flex; align-items: center; gap: 26px; padding: 9px 22px; max-width: var(--maxw); margin: 0 auto; }
.brand { display: flex; align-items: center; }
.brand .logo { height: 68px; width: auto; display: block; }
@media (max-width: 860px) { .brand .logo { height: 54px; } }
nav.main { display: flex; gap: 20px; margin-left: auto; }
nav.main a { color: var(--ink-soft); font-size: 14.5px; font-weight: 500; padding: 6px 2px; border-bottom: 2px solid transparent; }
nav.main a:hover, nav.main a[aria-current] { color: var(--ink); border-bottom-color: var(--blue); }
.call-btn { display: inline-flex; align-items: center; gap: 9px; background: var(--blue-deep); color: #fff;
            font-weight: 600; font-size: 14.5px; padding: 9px 16px; border-radius: 999px;
            box-shadow: 0 1px 0 rgba(31,63,94,.25); white-space: nowrap; transition: transform .15s ease, background .15s ease; }
.call-btn:hover { background: var(--blue); color: #fff; transform: translateY(-1px); }
.call-btn svg { width: 15px; height: 15px; }
.menu-btn { display: none; background: none; border: 1px solid var(--line); border-radius: 9px;
            width: 42px; height: 42px; color: var(--ink); cursor: pointer; padding: 8px; }
.menu-btn svg { width: 100%; height: 100%; }
.menu-btn[aria-expanded="true"] { background: var(--blue-deep); color: #fff; border-color: var(--blue-deep); }
.mnav { display: none; }
@media (max-width: 860px) {
  nav.main { display: none; }
  .hdr-in { justify-content: space-between; gap: 12px; }
  .menu-btn { display: block; flex: 0 0 auto; }
  .call-btn span { display: none; }           /* icon-only call pill on phones */
  .call-btn { padding: 11px 13px; }
  .mnav { display: block; position: absolute; left: 0; right: 0; top: 100%;
          background: var(--paper); border-bottom: 1px solid var(--line);
          box-shadow: 0 14px 28px rgba(28,39,51,.12); padding: 8px 22px 16px; }
  .mnav[hidden] { display: none; }
  .mnav a { display: block; padding: 13px 4px; font-size: 16.5px; font-weight: 500;
            color: var(--ink); border-bottom: 1px solid var(--line-soft); }
  .mnav a:last-child { border-bottom: none; }
  .mnav-call { display: flex !important; align-items: center; gap: 10px; margin-top: 10px;
               background: var(--blue-deep); color: #fff !important; border-radius: 10px;
               justify-content: center; font-weight: 600; border-bottom: none !important; }
  .mnav-call svg { width: 16px; height: 16px; }
  .hdr { position: sticky; }
}

/* ---- type roles ---- */
.kicker { font-family: var(--mono); font-size: 11.5px; font-weight: 600; letter-spacing: 0.18em;
          text-transform: uppercase; color: var(--blue); margin-bottom: 14px; }
h1 { font-family: var(--serif); font-weight: 700; font-size: clamp(34px, 5.2vw, 54px); line-height: 1.08;
     letter-spacing: -0.01em; color: var(--ink); margin-bottom: 18px; }
h2 { font-family: var(--serif); font-weight: 700; font-size: clamp(26px, 3.4vw, 34px); line-height: 1.15; margin-bottom: 14px; }
h3 { font-family: var(--serif); font-weight: 700; font-size: 20px; line-height: 1.25; margin-bottom: 8px; }
.lede { font-size: clamp(17px, 2vw, 19.5px); line-height: 1.55; color: var(--ink-soft); max-width: 62ch; }
p { margin-bottom: 12px; }
.mono-label { font-family: var(--mono); font-size: 10.5px; font-weight: 600; letter-spacing: 0.15em;
              text-transform: uppercase; color: var(--muted); }

/* ---- sections ---- */
section { padding: 64px 0; }
section.tight { padding: 44px 0; }
section.band { background: var(--blue-deep); color: var(--paper); }
section.band h2 { color: #fff; }
section.band .lede { color: #C8D6E4; }
section.deep { background: var(--paper-deep); }
.rule-top { border-top: 1px solid var(--line); }

/* ---- hero ---- */
.hero { padding: 74px 0 60px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: center; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } .hero-art { order: -1; max-width: 420px; } }
.hero .phone-line { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 26px; }
.phone-big { display: inline-flex; align-items: center; gap: 12px; font-family: var(--serif); font-weight: 700;
             font-size: clamp(22px, 3vw, 30px); color: #fff; background: var(--blue-deep);
             padding: 14px 26px; border-radius: 14px; letter-spacing: 0.01em;
             box-shadow: 0 6px 22px rgba(31,63,94,.22); transition: transform .15s ease, box-shadow .15s ease; }
.phone-big:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(31,63,94,.3); color: #fff; }
.phone-big svg { width: 22px; height: 22px; }
.phone-sub { font-size: 14px; color: var(--ink-soft); max-width: 34ch; line-height: 1.45; }
.serve-line { margin-top: 20px; font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.08em;
              text-transform: uppercase; color: var(--muted); }

/* blueprint art */
.blueprint { width: 100%; height: auto; }
.blueprint .draw { fill: none; stroke: var(--blue); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.blueprint .thin { stroke-width: 1.1; opacity: .55; }
.blueprint .grid-line { stroke: var(--line); stroke-width: 1; }
.stamp-mark { transform-origin: center; }
.stamp-mark .ring { fill: none; stroke: var(--stamp); stroke-width: 2.4; stroke-dasharray: 4 5; }
.stamp-mark .tick { fill: none; stroke: var(--stamp); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
/* Three presentation families for the monoline scenes (owner note 2026-08-27:
   variety, but bounded): .anim-draw = the line draws itself (heroes + county
   outlines only); .anim-rise = pieces rise into place, staggered; .plate =
   instant still-life on a tinted panel, at most one looping heartbeat. */
@media (prefers-reduced-motion: no-preference) {
  .js .blueprint.anim-draw .draw { stroke-dasharray: var(--len, 600); stroke-dashoffset: var(--len, 600);
    animation: draw 1.6s cubic-bezier(.6,0,.3,1) forwards; animation-delay: var(--d, 0s); }
  .js .stamp-mark { opacity: 0; animation: stamp .5s cubic-bezier(.2,1.4,.4,1) forwards; animation-delay: 1.7s; }
  @keyframes draw { to { stroke-dashoffset: 0; } }
  @keyframes stamp { 0% { opacity: 0; transform: scale(1.9) rotate(-14deg); }
                     100% { opacity: 1; transform: scale(1) rotate(-8deg); } }

  .js .reveal .anim-rise path, .js .reveal .anim-rise circle, .js .reveal .anim-rise text { opacity: 0; }
  .js .reveal.in .anim-rise path, .js .reveal.in .anim-rise circle, .js .reveal.in .anim-rise text {
    transform: translateY(9px);
    animation: rise .55s cubic-bezier(.2,.7,.3,1) forwards;
    animation-delay: calc(0.15s + var(--i, 0) * 0.08s);
  }
  @keyframes rise { to { opacity: 1; transform: none; } }

  .js .plate .bubble { animation: bubble 5.5s ease-in-out infinite; }
  @keyframes bubble { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(9px); } }
}

.plate .plate-bg { fill: var(--blue-soft); }
.plate.plate-amber .plate-bg { fill: var(--amber-soft); }
.plate.plate-paper .plate-bg { fill: var(--paper-deep); }
.plate .bubble { fill: var(--amber); }

/* ---- reveals ---- */
@media (prefers-reduced-motion: no-preference) {
  .js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
  .js .reveal.in { opacity: 1; transform: none; }
}

/* (the scrolling ticker was removed 2026-08-27 — owner call) */

/* soft blue section wash — color between the paper sections */
section.wash { background: var(--wash); }

/* ---- cards & grids ---- */
.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.grid4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 900px) { .grid3, .grid4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .grid2, .grid3, .grid4, .stats { grid-template-columns: 1fr; } }
.card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r);
        padding: 22px 22px 20px; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
a.card { color: var(--ink); display: block; }
.card:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(28,39,51,.07); border-color: #CEC7B6; }
.card .icon { display: flex; align-items: center; justify-content: center; width: 42px; height: 42px;
              margin-bottom: 14px; background: var(--blue-soft); border-radius: 10px; }
.card .icon svg { width: 24px; height: 24px; stroke: var(--blue); fill: none; stroke-width: 1.7;
                  stroke-linecap: round; stroke-linejoin: round; }
/* color rotation on card rows — blue, amber, stamp */
.grid3 .card:nth-child(3n+2) .icon { background: var(--amber-soft); }
.grid3 .card:nth-child(3n+2) .icon svg { stroke: var(--amber); }
.grid3 .card:nth-child(3n+3) .icon { background: var(--red-soft); }
.grid3 .card:nth-child(3n+3) .icon svg { stroke: var(--stamp); }
.grid2 .card:nth-child(2n) .icon { background: var(--amber-soft); }
.grid2 .card:nth-child(2n) .icon svg { stroke: var(--amber); }
.card p { font-size: 14.5px; color: var(--ink-soft); margin-bottom: 0; }
.card .go { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase;
            color: var(--blue); margin-top: 12px; display: inline-block; }

/* object list (two-col services) */
.objlist { list-style: none; }
.objlist li { padding: 7px 0 7px 24px; position: relative; font-size: 15px; color: var(--ink-soft);
              border-bottom: 1px dashed var(--line-soft); }
.objlist li:last-child { border-bottom: none; }
.objlist li::before { content: ''; position: absolute; left: 2px; top: 15px; width: 12px; height: 12px;
  border: 1.6px solid var(--blue); border-radius: 3px; }
.objlist li b { color: var(--ink); font-weight: 600; }

/* chips */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { display: inline-block; border: 1px solid var(--line); background: var(--card); color: var(--ink);
        font-size: 13.5px; font-weight: 500; padding: 7px 14px; border-radius: 999px;
        transition: border-color .15s ease, transform .15s ease; }
.chip:hover { border-color: var(--blue); color: var(--blue-deep); transform: translateY(-1px); }

/* ---- steps (the guide) ---- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; counter-reset: step; position: relative; }
@media (max-width: 720px) { .steps { grid-template-columns: 1fr; } }
.step { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: 22px; position: relative; }
.step::before { counter-increment: step; content: counter(step);
  font-family: var(--serif); font-weight: 700; font-size: 15px; color: #fff;
  background: var(--amber); width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.step p { font-size: 14.5px; color: var(--ink-soft); margin: 0; }

/* ---- quote / refusal ---- */
.pull { border-left: 3px solid var(--stamp); padding: 4px 0 4px 18px; margin: 24px 0; max-width: 60ch; }
.pull .q { font-family: var(--serif); font-style: italic; font-size: 19px; line-height: 1.45; color: var(--blue-deep); }

/* ---- faq ---- */
.faq details { border-bottom: 1px solid var(--line); padding: 4px 0; }
.faq summary { cursor: pointer; font-weight: 600; font-size: 16px; padding: 12px 30px 12px 0; list-style: none; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ''; position: absolute; right: 6px; top: 19px; width: 9px; height: 9px;
  border-right: 2px solid var(--blue); border-bottom: 2px solid var(--blue); transform: rotate(45deg); transition: transform .2s ease; }
.faq details[open] summary::after { transform: rotate(-135deg); }
.faq .a { padding: 0 0 14px; color: var(--ink-soft); font-size: 15px; max-width: 68ch; }

/* ---- CTA band ---- */
.cta-band { text-align: center; }
.cta-band .phone-big { background: #fff; color: var(--blue-deep); margin-top: 18px; }
.cta-band .phone-big:hover { color: var(--blue-deep); }
.cta-band .phone-sub { color: #C8D6E4; margin: 14px auto 0; }

/* ---- breadcrumbs / meta ---- */
.crumbs { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
          color: var(--muted); margin-bottom: 18px; }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--blue); }

/* ---- jurisdiction grid ---- */
.jur-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(215px, 1fr)); gap: 10px; }
.jur-grid a { border: 1px solid var(--line); background: var(--card); border-radius: 8px; padding: 10px 14px;
              font-size: 14px; color: var(--ink); display: flex; justify-content: space-between; gap: 8px;
              transition: border-color .12s ease; }
.jur-grid a:hover { border-color: var(--blue); color: var(--blue-deep); }
.jur-grid .t { font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.08em; text-transform: uppercase;
               color: var(--muted); align-self: center; white-space: nowrap; }

/* ---- footer ---- */
footer { background: var(--blue-deep); color: #DCE7F1; padding: 46px 0 30px; margin-top: 20px; }
.ft-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 26px; }
@media (max-width: 800px) { .ft-grid { grid-template-columns: 1fr 1fr; } }
footer .wordmark { font-family: var(--serif); font-weight: 700; font-size: 21px; color: #fff; }
footer .wordmark .ka { color: var(--blue-mid); }
.logo-ft { height: 140px; width: auto; display: block; }
footer p { font-size: 13.5px; color: #B9CCDD; }
footer a { font-size: 13.5px; color: #DCE7F1; }
footer a:hover { color: #fff; }
footer a b { color: #fff; }
footer .mono-label { color: var(--blue-mid); }
footer .col a { display: block; padding: 3px 0; }
footer .legal { margin-top: 30px; padding-top: 16px; border-top: 1px solid rgba(220,231,241,.22);
                display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between; }
footer .legal span { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.1em;
                     text-transform: uppercase; color: #8FA9C2; }

/* ---- sticky mobile call bar ---- */
.callbar { display: none; }
@media (max-width: 720px) {
  .callbar { display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 60;
             background: var(--blue-deep); color: #fff; align-items: center; justify-content: center;
             gap: 10px; padding: 13px 16px; font-weight: 600; font-size: 16px;
             box-shadow: 0 -4px 18px rgba(28,39,51,.18); }
  .callbar svg { width: 17px; height: 17px; }
  body { padding-bottom: 52px; }
}

/* ---- geography (Census shapes: US map → state → county) ---- */
.geo { margin: 22px 0 4px; }
.geo svg { width: 100%; height: auto; display: block; }
.geo path { fill: var(--card); stroke: #C6BFAE; stroke-width: 1;
            transition: fill .16s ease, stroke .16s ease; }
.geo a { cursor: pointer; outline: none; }
.geo a:hover path, .geo a:focus-visible path { fill: var(--amber-soft); stroke: var(--amber); }
.usgeo path.st.home { fill: var(--blue-mid); stroke: var(--blue-deep); }
.usgeo a:hover path.st.home, .usgeo a:focus-visible path.st.home { fill: #8FB9DC; stroke: var(--blue-deep); }
.stgeo svg { max-height: 440px; margin-inline: auto; width: auto; max-width: 100%; }
.geo-cap { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.1em;
           text-transform: uppercase; color: var(--muted); margin-top: 12px; }
.geo-cap a { color: var(--blue); }

.jur-art { text-align: center; }
.countyline { width: min(300px, 80%); margin-inline: auto; height: auto; }
.countyline .draw { stroke: var(--blue); stroke-width: 2; fill: var(--blue); fill-opacity: 0; }
@media (prefers-reduced-motion: no-preference) {
  .js .countyline .draw { stroke-dasharray: var(--len, 900); stroke-dashoffset: var(--len, 900);
    animation: draw 1.3s cubic-bezier(.6,0,.3,1) forwards, fillin .7s ease forwards 1.35s; }
  @keyframes fillin { to { fill-opacity: 0.07; } }
}
@media (prefers-reduced-motion: reduce) { .countyline .draw { fill-opacity: 0.07; } }

.stshape { display: block; width: 46px; height: 36px; margin-bottom: 10px; }
.stshape svg { width: 100%; height: 100%; display: block; }
.stshape path { fill: #D5E3EF; stroke: var(--blue); stroke-width: 1;
                transition: fill .16s ease; }
.card:hover .stshape path { fill: #BFD7EA; }

/* ---- micro-interactions (the polish pass) ---- */
nav.main a { position: relative; border-bottom: none; padding-bottom: 4px; }
nav.main a::after { content: ''; position: absolute; left: 0; right: 100%; bottom: 0;
                    height: 2px; background: var(--blue); transition: right .18s ease; }
nav.main a:hover::after, nav.main a[aria-current]::after { right: 0; }
.card .go { display: inline-block; transition: transform .16s ease, color .16s ease; }
.card:hover .go { transform: translateX(4px); color: var(--blue-deep); }
.chip:hover { background: #EAF1F7; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.step { transition: transform .18s ease, box-shadow .18s ease; }
.step:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(28,39,51,.07); }
.jur-grid a { transition: border-color .12s ease, transform .12s ease, background .12s ease; }
.jur-grid a:hover { transform: translateX(2px); background: #F3F7FB; }
.objlist li::after { content: ''; position: absolute; left: 5.5px; top: 16px; width: 4px; height: 8px;
  border-right: 2px solid var(--blue); border-bottom: 2px solid var(--blue);
  transform: rotate(45deg); opacity: 0; transition: opacity .15s ease; }
.objlist li:hover::after { opacity: 1; }

/* counter scene sign text */
.counter-scene .sign-small { font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em;
  fill: var(--blue); }
.counter-scene .sign-big { font-family: var(--serif); font-weight: 700; font-size: 30px;
  fill: var(--blue-deep); }
@media (prefers-reduced-motion: no-preference) {
  .js .counter-scene text { opacity: 0; animation: fadein .5s ease forwards 1.7s; }
  @keyframes fadein { to { opacity: 1; } }
}

/* unverified jurisdiction pages render one card, not the cloned pair */
.grid2.solo { grid-template-columns: 1fr; max-width: 640px; }

/* ---- split layouts (content + scene art) ---- */
.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 42px; align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } .split-art { max-width: 420px; margin-inline: auto; } }
.steps-col { grid-template-columns: 1fr; gap: 12px; margin-top: 22px; }
.steps-col .step { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: start; padding: 15px 18px; }
.steps-col .step::before { margin-bottom: 0; margin-top: 2px; }
.steps-col .step h3 { font-size: 17px; margin-bottom: 4px; }
.blueprint .fill-amber { fill: var(--amber); stroke: none; }
.guide-num { font-family: var(--sans); font-weight: 600; font-size: 14px; fill: #fff; text-anchor: middle; }

/* ---- photo bands (AI/stock imagery — renders only when the file exists) ---- */
.photo-band { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper-deep); }
.photo-band img { width: 100%; max-height: 430px; object-fit: cover; display: block;
                  filter: saturate(0.92) contrast(0.98); }

/* ---- proof row (hero): real numbers, client-supplied ---- */
.proofrow { display: flex; flex-wrap: wrap; gap: 12px 34px; margin-top: 24px;
            border-top: 1px solid var(--line-soft); padding-top: 16px; }
.proofrow .pf { display: flex; flex-direction: column; gap: 2px; }
.proofrow .n { font-family: var(--serif); font-weight: 700; font-size: 24px; color: var(--blue-deep); }
.proofrow .pf:nth-child(2) .n { color: var(--amber); }
.proofrow .l { font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.1em;
               text-transform: uppercase; color: var(--muted); max-width: 21ch; line-height: 1.5; }

/* ---- person block (why-daka) ---- */
.person { display: grid; grid-template-columns: 220px 1fr; gap: 28px; align-items: start;
          background: var(--card); border: 1px solid var(--line); border-radius: 12px;
          padding: 26px; max-width: 760px; }
@media (max-width: 640px) { .person { grid-template-columns: 1fr; } .person img { max-width: 220px; } }
.person img { width: 100%; height: auto; border-radius: 10px; border: 1px solid var(--line); }
.person h3 { font-size: 23px; }
.person-title { font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em;
                text-transform: uppercase; color: var(--blue); margin: 3px 0 12px; }
.person p { font-size: 14.5px; color: var(--ink-soft); }
.person .pull { border-left-color: var(--amber); padding-left: 14px; }
.person .pull .q { font-size: 16.5px; }

/* stamp-red accent strokes inside scenes (Grok pen, etc.) */
.blueprint .draw.accent { stroke: var(--stamp); }

/* ---- drill-down (state pages): search + frequently-worked + collapsed A–Z ---- */
.drill { margin-top: 20px; }
.jur-search { width: min(420px, 100%); font-size: 15.5px; padding: 11px 14px;
  border: 1.5px solid var(--line); border-radius: 10px; background: var(--card); color: var(--ink);
  font-family: var(--sans); }
.jur-search:focus { outline: 2px solid var(--blue); border-color: var(--blue); }
.all-jur { margin-top: 18px; border-top: 1px solid var(--line-soft); }
.all-jur summary { cursor: pointer; list-style: none; font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue); padding: 13px 0; }
.all-jur summary::-webkit-details-marker { display: none; }
.all-jur summary::before { content: '+ '; color: var(--amber); }
.all-jur[open] summary::before { content: '− '; }
.all-jur .jur-grid a { transition: border-color .12s ease; }
.all-jur .jur-grid a:hover { transform: none; background: var(--card); border-color: var(--blue); }

/* faint blueprint grid behind heroes — life, not noise */
.hero { background-image:
    linear-gradient(rgba(28,39,51,0.038) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28,39,51,0.038) 1px, transparent 1px);
  background-size: 30px 30px; background-position: center top; }

/* ---- small-screen polish ---- */
@media (max-width: 620px) {
  .hero { padding: 44px 0 40px; }
  section { padding: 44px 0; }
  .proofrow { gap: 10px 22px; }
  .proofrow .n { font-size: 20px; }
  .phone-big { font-size: 20px; padding: 12px 20px; }
  .person { padding: 20px; }
  .stgeo svg { max-height: 300px; }
  .countyline { width: min(240px, 76%); }
  h2 { font-size: 23px; }
  .pull .q { font-size: 16.5px; }
}

/* ---- prose (state framework paragraphs) ---- */
.prose p { max-width: 68ch; color: var(--ink-soft); font-size: 16px; }
.prose p:first-of-type { color: var(--ink); }
.quirks { list-style: none; margin: 14px 0; max-width: 70ch; }
.quirks li { padding: 8px 0 8px 26px; position: relative; color: var(--ink-soft); font-size: 15px; }
.quirks li::before { content: ''; position: absolute; left: 0; top: 16px; width: 14px; height: 2px; background: var(--stamp); }
