/* ══════════════════════════════════════════════════════════════════════════════
   Permits by Allie — permitsbyallie.com

   ── The idea ──────────────────────────────────────────────────────────────────
   The site is dressed as Allie's permit desk. Monospace field labels, § section
   numbers, permit-card stacks, an APPROVED stamp, blueprint grid lines on the dark
   bands. Everything a permit application looks like, because that is what she sells
   — and because a permit-expediting site that looks like a generic service template
   is indistinguishable from the fifty others in South Florida.

   ── Length ────────────────────────────────────────────────────────────────────
   The first build was ~9,800px of stacked sections. This one is ~4,000px, and the
   compression is structural, not squeezing: SERVICES and the 150-photo GALLERY are
   fused into one fixed-height two-pane panel (THE BOARD), and coverage + about are
   one band instead of two. Six sections, not ten.

   Mobile is the primary target — contractors on a phone at a jobsite who want to
   call. Hence the fixed bottom call bar and 44px+ tap targets throughout.
   ══════════════════════════════════════════════════════════════════════════════ */

:root{
  /* Palette is taken from Allie's logo — purple gables over grey — so purple is the
     brand and charcoal is the ink. */
  --violet:#A63CDA;
  --violet-lo:#CB80F0;
  --violet-hi:#7C27AA;
  --ink:#241E2C;             /* dark bands: charcoal pulled toward the purple */
  --ink-2:#1A1521;
  --wash:#F6EEFC;
  --line-v:rgba(166,60,218,.24);

  --text:#221F28;
  --body:#514D5B;
  --muted:#7C7686;
  --line:rgba(34,31,40,.13);
  --line-2:rgba(34,31,40,.07);
  --paper:#FFFFFF;
  --sand:#F8F6FA;
  --sand-2:#F0EBF5;

  --sans:'Inter',system-ui,-apple-system,'Segoe UI',sans-serif;
  --display:'Outfit',var(--sans);
  --mono:'JetBrains Mono',ui-monospace,SFMono-Regular,Menlo,monospace;
  --ease:cubic-bezier(.22,.9,.24,1);

  --rail:1240px;
  --gut:20px;
  --r:14px;
  --bar-h:0px;               /* mobile action bar height; set in the media query */
}

*,*::before,*::after{box-sizing:border-box}
html{-webkit-text-size-adjust:100%;scroll-behavior:smooth}
body{
  margin:0;background:var(--paper);color:var(--body);
  font-family:var(--sans);font-size:16.5px;line-height:1.6;
  -webkit-font-smoothing:antialiased;overflow-x:hidden;
}
img,svg{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
button{font:inherit;color:inherit;background:none;border:none;cursor:pointer}
h1,h2,h3,h4{font-family:var(--display);color:var(--text);margin:0;line-height:1.08;
  letter-spacing:-.022em;font-weight:700}
p{margin:0}
ul{margin:0;padding:0;list-style:none}
:focus-visible{outline:2.5px solid var(--violet);outline-offset:3px;border-radius:5px}
@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{animation-duration:.001ms!important;transition-duration:.001ms!important;
    scroll-behavior:auto!important}
}

.rail{width:100%;max-width:var(--rail);margin-inline:auto;padding-inline:var(--gut)}
.sr{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;
  clip:rect(0,0,0,0);white-space:nowrap;border:0}
.skip{position:absolute;left:-9999px;top:0;z-index:200;background:var(--violet);color:#fff;
  padding:11px 17px;border-radius:0 0 9px 0;font-weight:600}
.skip:focus{left:0}
[id]{scroll-margin-top:78px}

/* ── the permit-form voice: mono, tracked, small ─────────────────────────────── */
.mono{font-family:var(--mono);font-size:11.5px;letter-spacing:.09em;text-transform:uppercase;
  font-weight:500}

/* Section headers are one compact line — "§01 ── THE BOARD" — not the three-deep
   eyebrow/heading/lede stack that made the first build so tall. */
.shead{display:flex;align-items:center;gap:14px;margin-bottom:22px}
.shead__n{font-family:var(--mono);font-size:12px;font-weight:700;color:var(--violet);
  letter-spacing:.04em;flex:none}
.shead__t{font-family:var(--mono);font-size:11.5px;letter-spacing:.16em;text-transform:uppercase;
  color:var(--muted);font-weight:600;flex:none}
.shead::after{content:"";flex:1;height:1px;background:var(--line)}
.band--dark .shead__t{color:rgba(255,255,255,.5)}
.band--dark .shead::after{background:rgba(255,255,255,.16)}
.band--dark .shead__n{color:var(--violet-lo)}

.h2{font-size:clamp(27px,3.5vw,40px);max-width:24ch;text-wrap:balance}
.lede{font-size:clamp(16px,1.35vw,17.5px);max-width:52ch;color:var(--body);margin-top:12px}
.band--dark .lede{color:rgba(255,255,255,.68)}
.band--dark h2,.band--dark h3,.band--dark h4{color:#fff}
/* ...but NOT inside a light card that happens to sit on a dark band. The contact
   form's h3 inherited the white and vanished against its own white panel. Any future
   light surface dropped into a dark band needs adding here. */
.band--dark .form :is(h2,h3,h4){color:var(--text)}

.band{padding:clamp(44px,5vw,72px) 0}
.band--sand{background:var(--sand)}
.band--dark{background:var(--ink);color:rgba(255,255,255,.74);position:relative;isolation:isolate}
/* Blueprint grid — the texture that ties the dark bands to the permit-drawing idea.
   Two repeating gradients at 3% white, so it reads at a glance and never competes
   with the text on top of it. */
.band--dark::before{
  content:"";position:absolute;inset:0;z-index:-1;pointer-events:none;
  background-image:
    repeating-linear-gradient(to right,rgba(255,255,255,.035) 0 1px,transparent 1px 44px),
    repeating-linear-gradient(to bottom,rgba(255,255,255,.035) 0 1px,transparent 1px 44px);
  mask-image:radial-gradient(120% 90% at 50% 0%,#000 40%,transparent 92%);
  -webkit-mask-image:radial-gradient(120% 90% at 50% 0%,#000 40%,transparent 92%);
}

/* ── buttons ────────────────────────────────────────────────────────────────── */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:9px;
  min-height:50px;padding:0 24px;border-radius:10px;
  font-family:var(--display);font-weight:600;font-size:16px;letter-spacing:-.008em;
  transition:transform .16s var(--ease),box-shadow .16s var(--ease),background-color .16s,
    border-color .16s,color .16s;
  white-space:nowrap;
}
.btn svg{width:17px;height:17px;flex:none}
.btn:hover{transform:translateY(-2px)}
.btn:active{transform:none}
.btn--primary{background:var(--violet);color:#fff;box-shadow:0 10px 24px -12px rgba(166,60,218,.75)}
.btn--primary:hover{background:var(--violet-hi)}
.btn--ghost{border:1.5px solid var(--line);color:var(--text);background:var(--paper)}
.btn--ghost:hover{border-color:var(--violet);color:var(--violet-hi)}
.btn--dark{border:1.5px solid rgba(255,255,255,.28);color:#fff}
.btn--dark:hover{background:rgba(255,255,255,.09);border-color:rgba(255,255,255,.5)}
.btn--sm{min-height:42px;font-size:15px;padding:0 18px;border-radius:8px}

/* ══ HEADER ═════════════════════════════════════════════════════════════════ */
.hdr{position:sticky;top:0;z-index:60;background:rgba(255,255,255,.92);
  backdrop-filter:saturate(180%) blur(14px);-webkit-backdrop-filter:saturate(180%) blur(14px);
  border-bottom:1px solid transparent;transition:border-color .25s,box-shadow .25s}
.hdr.is-stuck{border-bottom-color:var(--line);box-shadow:0 5px 20px -18px rgba(36,30,44,.6)}
.hdr__in{display:flex;align-items:center;gap:16px;height:64px}
.brand{display:flex;align-items:center;gap:10px;margin-right:auto;min-width:0}
.brand img{height:40px;width:auto}
.brand b{font-family:var(--display);font-weight:700;font-size:17.5px;color:var(--text);
  letter-spacing:-.025em;white-space:nowrap}
/* 359px, not 399px: at 375px (the most common phone width) the wordmark still fits
   beside the logo and the burger, and dropping it leaves the header looking empty. */
@media (max-width:359px){.brand b{display:none}}

.nav{display:none;gap:2px;align-items:center}
@media (min-width:1010px){.nav{display:flex}}
.nav a{padding:8px 13px;border-radius:8px;font-size:15px;font-weight:500;color:var(--body);
  transition:background-color .16s,color .16s}
.nav a:hover{background:var(--wash);color:var(--violet-hi)}

.hdr__cta{display:none}
@media (min-width:600px){.hdr__cta{display:inline-flex}}

.burger{display:grid;place-items:center;width:44px;height:44px;border-radius:10px;
  border:1.5px solid var(--line);flex:none}
@media (min-width:1010px){.burger{display:none}}
.burger span{display:block;width:18px;height:1.8px;background:var(--text);border-radius:2px;
  transition:transform .2s var(--ease),opacity .14s}
.burger span+span{margin-top:4.4px}
body.menu-open .burger span:nth-child(1){transform:translateY(6.2px) rotate(45deg)}
body.menu-open .burger span:nth-child(2){opacity:0}
body.menu-open .burger span:nth-child(3){transform:translateY(-6.2px) rotate(-45deg)}

.sheet{position:fixed;inset:64px 0 0;z-index:55;background:var(--paper);
  padding:10px var(--gut) 40px;overflow-y:auto;
  opacity:0;visibility:hidden;transform:translateY(-8px);
  transition:opacity .2s,transform .2s var(--ease),visibility .2s}
body.menu-open .sheet{opacity:1;visibility:visible;transform:none}
body.menu-open{overflow:hidden}
.sheet a{display:flex;align-items:center;justify-content:space-between;
  padding:16px 4px;border-bottom:1px solid var(--line-2);
  font-family:var(--display);font-size:19px;font-weight:600;color:var(--text)}
.sheet a::after{content:"→";color:var(--violet);font-size:16px}
.sheet__cta{display:grid;gap:9px;margin-top:22px}
.sheet__cta .btn{width:100%}

/* ══ HERO ═══════════════════════════════════════════════════════════════════ */
.hero{position:relative;background:var(--ink);color:rgba(255,255,255,.76);overflow:hidden;
  isolation:isolate}
.hero__ph{position:absolute;inset:0;z-index:-3}
.hero__ph img{width:100%;height:100%;object-fit:cover;opacity:.2}
.hero__ph::after{content:"";position:absolute;inset:0;
  background:linear-gradient(180deg,rgba(36,30,44,.9),rgba(26,21,33,.96)),
             linear-gradient(100deg,rgba(124,39,170,.42),transparent 60%)}
/* same blueprint grid as the dark bands, over the photograph */
.hero::before{content:"";position:absolute;inset:0;z-index:-2;pointer-events:none;
  background-image:
    repeating-linear-gradient(to right,rgba(255,255,255,.04) 0 1px,transparent 1px 44px),
    repeating-linear-gradient(to bottom,rgba(255,255,255,.04) 0 1px,transparent 1px 44px)}

.hero__in{display:grid;gap:38px;padding-block:clamp(38px,4.6vw,64px) clamp(40px,4.6vw,66px)}
@media (min-width:1000px){
  .hero__in{grid-template-columns:minmax(0,1.06fr) minmax(340px,.94fr);gap:52px;align-items:center}
}
.hero__tag{display:inline-flex;align-items:center;gap:9px;color:#fff;
  background:rgba(255,255,255,.09);border:1px solid rgba(255,255,255,.15);
  padding:6px 13px;border-radius:7px;margin-bottom:18px}
.hero__tag i{width:6px;height:6px;border-radius:50%;background:#5BE39C;flex:none;
  box-shadow:0 0 0 3px rgba(91,227,156,.22)}
.tag-short{display:none}
@media (max-width:519px){.tag-long{display:none}.tag-short{display:inline}}
.hero h1{color:#fff;font-size:clamp(33px,5.4vw,58px);line-height:1.01;letter-spacing:-.032em;
  text-wrap:balance}
.hero h1 em{font-style:normal;color:var(--violet-lo)}
.hero__sub{margin-top:18px;font-size:clamp(16.5px,1.5vw,19px);color:rgba(255,255,255,.76);
  max-width:46ch;line-height:1.5}
.hero__btns{display:flex;flex-wrap:wrap;gap:10px;margin-top:26px}

/* the inline contact strip — replaces the old full-height contact card, so the phone
   number is above the fold without adding 300px of panel */
.hero__strip{display:flex;flex-wrap:wrap;gap:8px 26px;margin-top:26px;padding-top:22px;
  border-top:1px solid rgba(255,255,255,.15)}
.hero__strip a,.hero__strip span{display:flex;align-items:baseline;gap:9px;font-size:15px}
.hero__strip .mono{color:rgba(255,255,255,.44);flex:none}
.hero__strip b{color:#fff;font-weight:600;font-family:var(--display);font-size:16px}
.hero__strip a:hover b{color:var(--violet-lo)}

/* ── the permit card stack ──────────────────────────────────────────────────── */
/* Three document cards, fanned. This is the single most identity-carrying element
   on the page: it says "permits" before a word is read. */
/* Room at the top for the fanned ghost cards and at the bottom for the stamp, both of
   which sit outside the real card's box. */
.stack{position:relative;padding:26px 0 30px}
.pcard{
  background:var(--paper);border-radius:12px;padding:16px 18px;color:var(--text);
  box-shadow:0 24px 50px -26px rgba(0,0,0,.65),0 2px 6px -3px rgba(0,0,0,.3);
}
/* The two behind are clipped to a shallow strip and rotated, so all that shows is a
   sliver of card edge above the real one. Without the fixed height they render as
   full-size slabs poking out at an angle. */
.pcard--ghost{position:absolute;left:0;right:0;z-index:-1;height:54px;overflow:hidden;
  padding:14px 18px 0}
.pcard--g1{top:-11px;transform:rotate(-1.8deg) scale(.975);opacity:.42}
.pcard--g2{top:-21px;transform:rotate(1.6deg) scale(.945);opacity:.2}
.pcard__top{display:flex;align-items:center;justify-content:space-between;gap:10px;
  padding-bottom:11px;border-bottom:1.5px dashed var(--line)}
.pcard__id{font-family:var(--mono);font-size:11px;letter-spacing:.08em;color:var(--muted);
  font-weight:600}
.pcard__st{display:inline-flex;align-items:center;gap:6px;font-family:var(--mono);
  font-size:10.5px;letter-spacing:.1em;font-weight:700;color:#12764C;
  background:rgba(18,118,76,.1);border:1px solid rgba(18,118,76,.22);
  padding:3px 8px;border-radius:5px;text-transform:uppercase}
.pcard__st i{width:5px;height:5px;border-radius:50%;background:#12764C;flex:none;
  animation:blip 2.2s ease-in-out infinite}
@keyframes blip{0%,100%{opacity:1}50%{opacity:.32}}
.pcard__rows{margin-top:12px;display:grid;gap:0}
.prow{display:flex;align-items:baseline;gap:10px;padding:8px 0;
  border-bottom:1px solid var(--line-2)}
.prow:last-child{border-bottom:0}
.prow .mono{color:var(--muted);flex:none;font-size:10.5px}
/* the dotted leader between label and value — a form-like detail that costs nothing */
.prow s{flex:1;height:0;border-bottom:1px dotted var(--line);text-decoration:none;
  transform:translateY(-3px)}
.prow b{font-weight:600;color:var(--text);font-size:14.5px;text-align:right;flex:none}
/* On a phone the card is decoration competing with the call button for the fold, so
   it drops to the three rows that carry the point: who, what, done. */
@media (max-width:699px){
  .prow--trim{display:none}
  .stack{padding:22px 0 26px}
}

/* APPROVED stamp */
.stamp{
  /* Hangs off the card's bottom-right corner rather than sitting on top of the last
     row's text — a real stamp lands half on the paper and half off. */
  position:absolute;right:-12px;bottom:-16px;transform:rotate(-9deg);
  font-family:var(--mono);font-weight:700;font-size:12px;letter-spacing:.16em;
  color:var(--violet);text-transform:uppercase;
  padding:9px 14px;border:2.5px solid var(--violet);border-radius:7px;
  background:rgba(255,255,255,.9);opacity:.92;
  box-shadow:inset 0 0 0 1.5px rgba(166,60,218,.3);
}
.stamp span{display:block;font-size:8.5px;letter-spacing:.1em;color:var(--violet-hi);
  opacity:.75;margin-top:2px;font-weight:500}

/* ══ §01 THE BOARD — services + gallery in one panel ════════════════════════ */
.board{
  margin-top:26px;background:var(--paper);border:1px solid var(--line);border-radius:16px;
  overflow:hidden;box-shadow:0 26px 60px -40px rgba(36,30,44,.4);
  display:grid;grid-template-columns:minmax(0,1fr);
}
@media (min-width:940px){.board{grid-template-columns:288px minmax(0,1fr)}}

/* left rail — the permit-type index */
.board__rail{background:var(--sand);border-bottom:1px solid var(--line)}
@media (min-width:940px){.board__rail{border-bottom:0;border-right:1px solid var(--line)}}
.board__railhead{display:none}
@media (min-width:940px){
  .board__railhead{display:flex;align-items:center;justify-content:space-between;
    padding:14px 18px;border-bottom:1px solid var(--line);color:var(--muted)}
}
.board__list{display:flex;overflow-x:auto;gap:0;scroll-snap-type:x proximity;
  -ms-overflow-style:none;scrollbar-width:none;padding:10px}
.board__list::-webkit-scrollbar{display:none}
@media (min-width:940px){
  .board__list{display:block;overflow:visible;padding:6px}
}
.brow{
  flex:none;scroll-snap-align:start;display:flex;align-items:center;gap:10px;
  width:100%;min-height:44px;padding:9px 12px;border-radius:9px;text-align:left;
  transition:background-color .15s,color .15s;color:var(--body);
}
@media (max-width:939px){
  .brow{width:auto;white-space:nowrap;border:1.5px solid var(--line);background:var(--paper);
    margin-right:8px}
}
.brow:hover{background:var(--paper);color:var(--violet-hi)}
@media (min-width:940px){.brow:hover{background:rgba(166,60,218,.07)}}
.brow__n{font-family:var(--mono);font-size:10.5px;font-weight:700;color:var(--muted);
  letter-spacing:.04em;flex:none}
.brow__t{font-size:14.5px;font-weight:500;flex:1;min-width:0;letter-spacing:-.005em}
.brow__c{font-family:var(--mono);font-size:10.5px;font-weight:600;color:var(--muted);
  background:var(--sand-2);padding:2px 6px;border-radius:5px;flex:none;
  font-variant-numeric:tabular-nums}
.brow[aria-pressed="true"]{background:var(--ink);color:#fff}
.brow[aria-pressed="true"] .brow__n{color:var(--violet-lo)}
.brow[aria-pressed="true"] .brow__c{background:rgba(255,255,255,.16);color:#fff}
@media (max-width:939px){.brow[aria-pressed="true"]{border-color:var(--ink)}}

/* right pane */
.board__pane{padding:22px var(--gut) 20px;display:flex;flex-direction:column;min-width:0}
@media (min-width:940px){.board__pane{padding:26px 28px 24px}}
.pane__head{display:flex;flex-wrap:wrap;align-items:baseline;gap:6px 14px}
.pane__head h3{font-size:clamp(21px,2.2vw,27px)}
.pane__blurb{margin-top:10px;font-size:16px;color:var(--body);max-width:62ch;line-height:1.55}
.pane__checks{display:flex;flex-wrap:wrap;gap:7px;margin-top:16px}
.pane__checks li{display:inline-flex;align-items:center;gap:7px;font-size:13.5px;
  color:var(--body);background:var(--sand);border:1px solid var(--line-2);
  padding:6px 11px;border-radius:7px}
.pane__checks svg{width:13px;height:13px;color:var(--violet);flex:none}

.pane__shots{display:grid;gap:8px;margin-top:20px;grid-template-columns:repeat(2,minmax(0,1fr))}
@media (min-width:560px){.pane__shots{grid-template-columns:repeat(3,minmax(0,1fr))}}
@media (min-width:940px){.pane__shots{grid-template-columns:repeat(4,minmax(0,1fr));gap:9px}}
.pane__foot{display:flex;flex-wrap:wrap;align-items:center;gap:10px 16px;margin-top:18px;
  padding-top:16px;border-top:1px solid var(--line-2)}
.pane__foot .mono{color:var(--muted)}
.pane__more{margin-left:auto}

.shot{position:relative;margin:0;border-radius:9px;overflow:hidden;background:var(--sand-2);
  aspect-ratio:4/3;cursor:zoom-in;display:block;width:100%}
.shot img{width:100%;height:100%;object-fit:cover;transition:transform .45s var(--ease)}
.shot:hover img{transform:scale(1.06)}
.shot figcaption{position:absolute;inset:auto 0 0 0;padding:24px 10px 8px;
  font-size:12px;font-weight:500;color:#fff;line-height:1.3;
  background:linear-gradient(180deg,transparent,rgba(22,18,28,.88));
  opacity:0;transform:translateY(5px);transition:opacity .2s,transform .2s var(--ease)}
.shot:hover figcaption,.shot:focus-visible figcaption{opacity:1;transform:none}
@media (hover:none){.shot figcaption{opacity:1;transform:none;font-size:11.5px}}

/* ── lightbox ───────────────────────────────────────────────────────────────── */
.lb{position:fixed;inset:0;z-index:100;background:rgba(18,14,23,.96);
  /* minmax(0,1fr), not 1fr: a bare 1fr keeps a min-content floor, so a tall photo
     grows the middle row and pushes the caption off the bottom of the screen. */
  display:grid;grid-template-rows:auto minmax(0,1fr) auto;
  opacity:0;visibility:hidden;transition:opacity .22s,visibility .22s;
  backdrop-filter:blur(5px)}
.lb.is-open{opacity:1;visibility:visible}
.lb__top{display:flex;align-items:center;gap:14px;padding:13px 15px;color:rgba(255,255,255,.7)}
.lb__count{font-family:var(--mono);font-size:11.5px;letter-spacing:.08em;
  font-variant-numeric:tabular-nums}
.lb__x{margin-left:auto;width:42px;height:42px;border-radius:9px;display:grid;place-items:center;
  background:rgba(255,255,255,.1);color:#fff}
.lb__x:hover{background:rgba(255,255,255,.2)}
.lb__x svg{width:18px;height:18px}
.lb__stage{position:relative;display:grid;place-items:center;padding:0 8px;min-height:0}
.lb__stage img{max-width:100%;max-height:100%;width:auto;height:auto;object-fit:contain;
  border-radius:6px;box-shadow:0 28px 64px -28px rgba(0,0,0,.85)}
.lb__nav{position:absolute;top:50%;transform:translateY(-50%);width:48px;height:48px;
  border-radius:10px;background:rgba(255,255,255,.13);color:#fff;display:grid;place-items:center;
  backdrop-filter:blur(8px);transition:background-color .16s}
.lb__nav:hover{background:rgba(255,255,255,.26)}
.lb__nav svg{width:21px;height:21px}
.lb__nav--prev{left:8px}.lb__nav--next{right:8px}
@media (min-width:900px){.lb__nav--prev{left:24px}.lb__nav--next{right:24px}}
.lb__cap{padding:14px 20px 22px;text-align:center;color:rgba(255,255,255,.8);font-size:14.5px;
  max-width:68ch;margin-inline:auto}
.lb__cap b{display:block;font-family:var(--mono);font-size:10.5px;letter-spacing:.13em;
  text-transform:uppercase;color:var(--violet-lo);margin-bottom:5px;font-weight:700}

/* ══ §02 HOW IT MOVES — one horizontal rail ═════════════════════════════════ */
/* Four steps in a row, connected by a hairline. The old build stacked four tall
   cards; this is the same information at a third of the height. */
.flow{display:grid;gap:20px;margin-top:6px;position:relative}
/* 2×2 from 560px so big phones and tablets don't scroll through four stacked steps;
   4-across once there's room for it. */
@media (min-width:560px){.flow{grid-template-columns:repeat(2,minmax(0,1fr));gap:22px 26px}}
@media (min-width:820px){.flow{grid-template-columns:repeat(4,minmax(0,1fr));gap:26px}}
.step{position:relative;padding-top:26px}
/* the connecting rule + node */
.step::before{content:"";position:absolute;left:0;right:0;top:9px;height:1px;
  background:rgba(255,255,255,.18)}
.step:first-child::before{left:9px}
.step:last-child::before{right:calc(100% - 9px)}
/* The connecting rule only makes sense on the single 4-across row. In 2×2 or stacked
   it would draw a line to nowhere. */
@media (max-width:819px){.step::before{display:none}}
.step::after{content:"";position:absolute;left:0;top:4px;width:11px;height:11px;
  border-radius:50%;background:var(--ink);border:2px solid var(--violet-lo)}
@media (max-width:819px){.step::after{top:6px}}
@media (max-width:819px){.step{padding-top:0;padding-left:26px}
  .step::after{left:0;top:6px}}
.step__n{font-family:var(--mono);font-size:10.5px;letter-spacing:.13em;color:var(--violet-lo);
  font-weight:700;display:block;margin-bottom:7px}
.step h3{font-size:18px;margin-bottom:6px}
.step p{font-size:14.5px;color:rgba(255,255,255,.66);line-height:1.55}

/* ══ §03 WHERE & WHO — coverage + about in ONE band ═════════════════════════ */
.who{display:grid;gap:34px}
/* align-items:center, not the default stretch — the photo+quote column runs taller
   than the text column, and centring shares the leftover height between them instead
   of dumping it all under the right column. */
@media (min-width:900px){
  .who{grid-template-columns:minmax(0,.92fr) minmax(0,1.08fr);gap:52px;align-items:center}
}
.who__photo{border-radius:14px;overflow:hidden;aspect-ratio:5/4;background:var(--sand-2);
  box-shadow:0 26px 56px -34px rgba(36,30,44,.5);position:relative}
.who__photo img{width:100%;height:100%;object-fit:cover}
.who__quote{margin:18px 0 0;padding:16px 18px;border-left:2.5px solid var(--violet);
  background:var(--wash);border-radius:0 10px 10px 0;font-size:16px;color:var(--text);
  font-weight:500;line-height:1.55}

.cov{display:grid;gap:12px;margin-top:22px}
@media (min-width:620px){.cov{grid-template-columns:repeat(3,minmax(0,1fr))}}
.county{background:var(--paper);border:1px solid var(--line);border-radius:11px;padding:15px 16px}
.county h4{font-size:15.5px;display:flex;align-items:center;gap:7px;margin-bottom:8px}
.county h4 svg{width:15px;height:15px;color:var(--violet);flex:none}
.county p{font-size:13px;color:var(--muted);line-height:1.5}
.county p b{color:var(--body);font-weight:500}

/* ══ §04 QUESTIONS — two columns halves the height ═════════════════════════ */
.faq{display:grid;gap:9px;margin-top:6px;align-content:start}
@media (min-width:860px){.faq{grid-template-columns:repeat(2,minmax(0,1fr));gap:9px 18px}}
.faq details{border:1px solid var(--line);border-radius:11px;background:var(--paper);
  overflow:hidden;height:fit-content;transition:border-color .18s}
.faq details[open]{border-color:var(--line-v)}
.faq summary{list-style:none;cursor:pointer;padding:15px 46px 15px 17px;position:relative;
  font-family:var(--display);font-weight:600;font-size:16px;color:var(--text);line-height:1.35}
.faq summary::-webkit-details-marker{display:none}
.faq summary::after{content:"";position:absolute;right:18px;top:50%;width:9px;height:9px;
  border-right:2px solid var(--violet);border-bottom:2px solid var(--violet);
  transform:translateY(-70%) rotate(45deg);transition:transform .2s var(--ease)}
.faq details[open] summary::after{transform:translateY(-30%) rotate(225deg)}
.faq summary:hover{color:var(--violet-hi)}
.faq__a{padding:0 17px 17px;font-size:15px;line-height:1.62;color:var(--body)}
.faq__a p+p{margin-top:9px}
.faq__a a{color:var(--violet-hi);font-weight:600}

/* ══ §05 CONTACT ═══════════════════════════════════════════════════════════ */
.contact{display:grid;gap:28px}
@media (min-width:920px){.contact{grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr);gap:48px}}
.acts{display:grid;gap:9px;margin-top:22px}
.act{display:flex;align-items:center;gap:13px;padding:14px 16px;border-radius:11px;
  background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.14);
  transition:background-color .18s,border-color .18s,transform .18s var(--ease)}
.act:hover{background:rgba(255,255,255,.11);border-color:rgba(255,255,255,.3);
  transform:translateY(-2px)}
.act__i{flex:none;width:40px;height:40px;border-radius:9px;display:grid;place-items:center;
  background:var(--violet);color:#fff}
.act__i svg{width:18px;height:18px}
.act>span{display:block;min-width:0}
.act .mono{display:block;color:rgba(255,255,255,.5);margin-bottom:2px;font-size:10.5px}
.act b{display:block;color:#fff;font-family:var(--display);font-weight:600;font-size:17px;
  line-height:1.25;word-break:break-word}
.act__go{margin-left:auto;color:rgba(255,255,255,.38);flex:none}
.act:hover .act__go{color:var(--violet-lo)}
.act__go svg{width:17px;height:17px}

.form{background:var(--paper);border-radius:16px;padding:clamp(20px,2.8vw,28px);
  box-shadow:0 30px 66px -38px rgba(0,0,0,.6)}
.form h3{font-size:21px}
.form>p{font-size:14.5px;color:var(--muted);margin-top:6px}
.fields{display:grid;gap:13px;margin-top:18px}
@media (min-width:520px){.fields--2{grid-template-columns:repeat(2,minmax(0,1fr))}}
.field label{display:block;font-family:var(--mono);font-size:10.5px;letter-spacing:.09em;
  text-transform:uppercase;font-weight:600;color:var(--muted);margin-bottom:6px}
.field input,.field select,.field textarea{
  width:100%;font:inherit;font-size:16px;color:var(--text);background:var(--sand);
  border:1.5px solid var(--line);border-radius:9px;padding:12px 13px;min-height:48px;
  transition:border-color .16s,background-color .16s,box-shadow .16s;
  -webkit-appearance:none;appearance:none}
.field textarea{min-height:96px;resize:vertical;line-height:1.5}
.field select{
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237C7686' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat:no-repeat;background-position:right 14px center;background-size:11px;
  padding-right:38px}
.field input:focus,.field select:focus,.field textarea:focus{
  outline:none;background:var(--paper);border-color:var(--violet);
  box-shadow:0 0 0 3.5px rgba(166,60,218,.14)}
.field input::placeholder,.field textarea::placeholder{color:#ABA5B4}
.form .btn{width:100%;margin-top:16px}
.form__note{font-size:12.5px;color:var(--muted);margin-top:11px;text-align:center;line-height:1.5}
.form__note a{color:var(--violet-hi);font-weight:600}
.form__ok{display:none;margin-top:13px;padding:12px 14px;border-radius:9px;
  background:rgba(18,118,76,.08);border:1px solid rgba(18,118,76,.24);
  color:#12764C;font-size:14px;line-height:1.5}
.form__ok.is-on{display:block}

/* ══ FOOTER ═════════════════════════════════════════════════════════════════ */
.ftr{background:var(--ink-2);color:rgba(255,255,255,.56);
  padding:34px 0 calc(24px + var(--bar-h))}
.ftr__in{display:flex;flex-wrap:wrap;align-items:center;gap:16px 30px}
.ftr .brand b{color:#fff}
.ftr__links{display:flex;flex-wrap:wrap;gap:8px 18px;font-size:14px}
.ftr__links a:hover{color:var(--violet-lo)}
.ftr__legal{width:100%;display:flex;flex-wrap:wrap;gap:6px 20px;font-size:12.5px;
  padding-top:18px;border-top:1px solid rgba(255,255,255,.1);color:rgba(255,255,255,.42)}
.ftr__legal p:last-child{margin-left:auto}

/* ══ MOBILE ACTION BAR ══════════════════════════════════════════════════════ */
@media (max-width:859px){
  :root{--bar-h:68px}
  .actbar{display:grid;grid-template-columns:1fr 1fr;gap:8px;
    position:fixed;left:0;right:0;bottom:0;z-index:70;
    padding:9px 11px calc(9px + env(safe-area-inset-bottom));
    background:rgba(255,255,255,.95);
    backdrop-filter:saturate(180%) blur(14px);-webkit-backdrop-filter:saturate(180%) blur(14px);
    border-top:1px solid var(--line);box-shadow:0 -7px 24px -18px rgba(36,30,44,.55)}
  .actbar .btn{width:100%;min-height:48px;font-size:15.5px;padding:0 8px}
  body{padding-bottom:var(--bar-h)}
  body.menu-open .actbar{display:none}
}
@media (min-width:860px){.actbar{display:none}}

/* ── scroll reveal ──────────────────────────────────────────────────────────── */
/* Gated on .js, added by an inline script in <head>. Without that gate a script
   error leaves every section at opacity 0 and the page reads as blank. */
.js .rise{opacity:0;transform:translateY(14px);
  transition:opacity .55s var(--ease),transform .55s var(--ease)}
.js .rise.is-in{opacity:1;transform:none}
