/* Boston House — main stylesheet.
   Design-DNA tokens come from inline <style id="ns-palette"> in <head>.
   This file is the layout + components layer. Ledger constraints baked in:
   - inputs font-size:16px (#15 iOS zoom)
   - object-fit:cover + aspect-ratio container on every image slot (#5)
   - hero overlay max .40 (well under .55 cap #6)
   - eager hero / lazy below-fold is applied at template level (#13)
*/

*,*::before,*::after{box-sizing:border-box}
html{-webkit-text-size-adjust:100%;scroll-behavior:smooth}
body{
  margin:0; background:var(--c-bg); color:var(--c-text);
  font-family:var(--f-body); font-size:var(--ts-base); line-height:1.55;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden; /* Mobile safety — prevent horizontal scroll from any element overflow */
}
html{scroll-padding-top:70px} /* Offset anchor jumps past sticky header height */
img,svg{display:block;max-width:100%;height:auto}
a{color:var(--c-main);text-underline-offset:2px}
a:hover{color:var(--c-main-dk)}

h1,h2,h3,h4{font-family:var(--f-heading);font-weight:700;line-height:1.18;letter-spacing:-.005em;margin:0 0 .6em}
h1{font-size:var(--ts-1)} h2{font-size:var(--ts-2)} h3{font-size:var(--ts-3); font-weight:700}
p{margin:0 0 1em}

/* Visually-hidden skip link, revealed on focus */
.sr-only{position:absolute!important;width:1px;height:1px;overflow:hidden;clip:rect(0 0 0 0);clip-path:inset(50%);white-space:nowrap;padding:0;margin:-1px;border:0}
a.sr-only:focus{position:fixed!important;top:8px;left:8px;width:auto;height:auto;clip:auto;clip-path:none;background:var(--c-main);color:#fff;padding:.6rem 1rem;border-radius:var(--radius);z-index:1000}

.container{max-width:var(--container);margin:0 auto;padding:0 var(--spacing)}
section{padding:clamp(2.5rem,4vw,4rem) 0}
section.alt{background:var(--c-bg-alt)}
/* 4-tier section weight scale: hero/feature sections get more padding, secondary sections less */
section[data-panel="hero"]{padding:clamp(2rem,3vw,3.25rem) 0 clamp(2.5rem,3.5vw,3.5rem)}
section[data-panel="services"], section[data-panel="reviews"], section[data-panel="faq"]{padding:clamp(3rem,5vw,5.5rem) 0}
section[data-panel="trust"]{padding:1.6rem 0}
section[data-panel="cta"]{padding:clamp(2rem,3vw,3rem) 0}
section[data-panel="areas"], section[data-panel="routes-preview"]{padding:clamp(2.5rem,4vw,4rem) 0}
/* Adjacent same-tone sections: add a subtle divider so the cream→cream boundary is visible */
section.alt + section.alt, section:not(.alt) + section:not(.alt){border-top:1px solid rgba(31,26,20,0.06)}
/* First H2 in a section shouldn't double-pad (section pt + h2 mt) */
section > .container > h2:first-child, section > .container > .eyebrow + h2{margin-top:0}
/* Last section → footer transition: tighter */
main > section:last-child{padding-bottom:clamp(2rem,3vw,3rem)}
.eyebrow{display:inline-block;font-size:.78rem;font-weight:600;letter-spacing:.12em;text-transform:uppercase;color:var(--c-mid);margin-bottom:.6rem}
/* Accent-colored small text uses --c-accent-text (4.5:1+) instead of --c-accent (3.5:1) — Designer iter-6 WCAG fix */
.accent-text{color:var(--c-accent-text,var(--c-accent))}

/* ----- Buttons ----- */
.btn{
  display:inline-block;padding:.95em 1.5em;border-radius:8px;
  font-weight:600;font-size:1rem;letter-spacing:.02em;
  text-decoration:none;border:1px solid transparent;cursor:pointer;
  transition:transform .12s ease, background-color .12s ease;
}
.btn-primary{background:var(--c-main);color:#fff}
.btn-primary:hover{background:var(--c-main-dk);color:#fff;transform:translateY(-1px)}
.btn-accent{background:var(--c-accent);color:#1F1A14}
.btn-accent:hover{background:var(--c-accent-dk);color:#1F1A14;transform:translateY(-1px)}
.btn-ghost{background:transparent;color:var(--c-text);border-color:var(--c-border)}
.btn-ghost:hover{background:var(--c-bg-alt);color:var(--c-text);border-color:var(--c-text-muted)}
/* Focus-visible on ALL interactive elements — a11y gap flagged by Architect critic */
.btn:focus-visible,.btn-outline:focus-visible{outline:2px solid var(--c-accent);outline-offset:2px}
.tab:focus-visible{outline:2px solid var(--c-accent);outline-offset:1px}
a:focus-visible{outline:2px solid var(--c-accent);outline-offset:2px;border-radius:2px}
.zone-grid a:focus-visible{outline-offset:1px}

/* ----- Forms (ledger #15: 16px inputs, labels, autocomplete) ----- */
.ns-form label{display:block;font-weight:600;font-size:.9rem;margin-bottom:.3rem;color:var(--c-text)}
.ns-form .row{display:grid;gap:.85rem;grid-template-columns:1fr 1fr;margin-bottom:.9rem}
.ns-form .row:last-of-type{margin-bottom:0}
.ns-form .row.one{grid-template-columns:1fr}
@media (max-width:640px){.ns-form .row{grid-template-columns:1fr}}
.ns-form input, .ns-form select, .ns-form textarea{
  width:100%; font-size:16px; line-height:1.4; padding:.7em .85em;
  border:1px solid var(--c-border); border-radius:var(--radius); background:#fff;
  font-family:inherit; color:var(--c-text);
}
.ns-form input:focus, .ns-form select:focus, .ns-form textarea:focus{
  outline:2px solid var(--c-accent); outline-offset:1px; border-color:var(--c-accent-dk);
}
.ns-form .sr-only{position:absolute!important;clip:rect(0 0 0 0);width:1px;height:1px;overflow:hidden}
.ns-form .submit-row{margin-top:1.6rem}
.ns-form .submit-row button{width:100%;padding:.95em 1.6em}
.ns-form .reassure{font-size:.84rem;color:var(--c-text-muted);margin-top:.55rem}

/* ----- Header ----- */
.site-header{position:sticky;top:0;z-index:50;background:var(--c-bg);border-bottom:1px solid var(--c-border)}
/* Header inner: vertical padding only here; horizontal comes from .container's --pad.
   iter-5 bug: `padding:.85rem 0` was zeroing OUT container's horizontal padding (more
   specific selector wins) → logo/CTA touched viewport edges on narrow widths. */
.site-header .inner{display:flex;align-items:center;justify-content:space-between;padding-block:.85rem;padding-inline:var(--spacing);gap:1rem}
/* Brand-mark layout — logo SVG + 2-line text. Logo + text-stack are flex-row siblings;
   text is column-stacked. Larger l1 (brand name) + smaller l2 (city) with breathing room
   between lines fixes the cluttered brand-name text
   that user flagged as overlapping. */
.brand-mark{display:flex;align-items:center;line-height:1;color:var(--c-text);text-decoration:none}
.brand-mark .brand-logo{flex:0 0 auto;height:63px;width:auto;display:block}
@media (max-width:640px){.brand-mark .brand-logo{height:50px}}
/* Mobile header adapt (≤760px): hide brand-name text + hide Free-quote button.
   On narrow widths the full header (logo + brand-text + phone + Free-quote + burger)
   overflowed/squeezed. User direction iter-5: keep logo + phone-link + burger only;
   brand identity carried by the logo, primary action is the phone tap (real conversion). */
@media (max-width:760px){
  .header-cta .btn-ghost{display:none}
}
.primary-nav > ul, .primary-nav .menu{display:flex;gap:1.35rem;margin:0;padding:0;list-style:none;font-weight:500}
.primary-nav a{color:var(--c-text);text-decoration:none}
.primary-nav a:hover, .primary-nav .current-menu-item > a{color:var(--c-main)}
/* Dropdown submenu (depth=2) — appears on hover/focus of parent li with .menu-item-has-children.
   PM critic iter-5: flat nav forced users to land on /services/ /service-areas/ /routes/ index
   before drilling to specific pages. Mega-dropdown lets them jump direct in 1 click. */
.primary-nav .menu-item-has-children{position:relative}
.primary-nav .menu-item-has-children > a::after{content:" ▾";font-size:.7em;color:var(--c-text-muted);margin-left:.15em}
.primary-nav .sub-menu{display:none;position:absolute;top:100%;left:-1rem;min-width:200px;background:var(--c-bg);border:1px solid var(--c-border);border-radius:var(--radius);padding:.5rem 0;margin:0;list-style:none;box-shadow:0 8px 24px -8px rgba(31,26,20,.15);z-index:50;flex-direction:column;gap:0}
.primary-nav .menu-item-has-children:hover > .sub-menu,
.primary-nav .menu-item-has-children:focus-within > .sub-menu{display:flex}
.primary-nav .sub-menu li{margin:0}
.primary-nav .sub-menu a{display:block;padding:.55rem 1.1rem;font-size:.94rem;color:var(--c-text);white-space:nowrap}
.primary-nav .sub-menu a:hover{background:var(--c-bg-alt);color:var(--c-main)}
/* Mobile drawer: submenu inline under parent, indented */
@media (max-width:900px){
  .primary-nav .sub-menu{display:flex !important;position:static;border:0;box-shadow:none;background:transparent;padding:.2rem 0 .2rem 1rem;min-width:0}
  .primary-nav .menu-item-has-children > a::after{display:none}
  .primary-nav .sub-menu a{padding:.35rem 0;font-size:.9rem;color:var(--c-text-muted)}
}
.header-cta{display:flex;gap:.6rem;align-items:center}
.header-phone{font-weight:700;color:var(--c-main);text-decoration:none;white-space:nowrap}
.header-quote-btn{padding:.55em 1em;font-size:.9rem}
.nav-toggle{display:none;background:none;border:0;font-size:1.5rem;color:var(--c-text);padding:.6rem .75rem;cursor:pointer;min-width:44px;min-height:44px;line-height:1}
.nav-toggle[aria-expanded="true"]{font-size:1.6rem}
@media (max-width:900px){
  .primary-nav{display:none}
  .nav-toggle{display:inline-block}
  .primary-nav.open{display:block;position:absolute;top:100%;right:0;background:var(--c-bg);border:1px solid var(--c-border);border-top:0;padding:1rem;min-width:240px;max-height:calc(100vh - 70px);overflow-y:auto;-webkit-overflow-scrolling:touch}
  .primary-nav.open ul{flex-direction:column;gap:.85rem}
}

/* ----- Hero (split photo/form — ledger HARD rule first-screen form) ----- */
.hero{position:relative;background:var(--c-bg)}
.hero .grid{
  display:grid;gap:2rem;align-items:start;
  grid-template-columns: 1.05fr .95fr;
  padding:0;
}
.hero .copy, .hero > .container > .grid > div{padding-top:.5rem}
@media (max-width:900px){.hero .grid{grid-template-columns:1fr}}
/* Hero mobile: a touch more padding-inline-start so H1/eyebrow don't crowd the
   left edge on phones (user iter-5: "в hero сделай отступ на мобильном чуток слева"). */
@media (max-width:640px){.hero > .container{padding-inline-start:1.6rem}}
.hero h1{margin-top:0}
.hero .hook{font-size:1.1rem;color:var(--c-text-muted);max-width:46ch}
.hero .photo{
  position:relative;aspect-ratio:16/9;overflow:hidden;border-radius:var(--radius-lg);
  background:#1F1A14;
}
.hero .photo img{width:100%;height:100%;object-fit:cover;display:block}
.hero .photo::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(180deg,rgba(0,0,0,0) 55%,rgba(0,0,0,.4) 100%);
}
/* Home hero lead-card sticky on desktop — keeps the primary conversion CTA in viewport
   while user scrolls the long home page. Mobile: position:static (form already at top
   on collapsed single-col layout). iter-5 PM critic: "sticky form fails on home —
   position:static, scrolls away with hero". */
@media (min-width:980px){.hero > .container > .grid > div:has(> .lead-card){align-self:start}.hero .lead-card{position:sticky;top:1.2rem}}
.hero .lead-card{
  background:#fff;border:1px solid var(--c-border);border-radius:var(--radius-lg);
  padding:clamp(1.1rem,2.2vw,1.6rem) clamp(1.1rem,2.2vw,1.8rem);
  box-shadow:0 12px 30px -18px rgba(31,26,20,.25);
}
.hero .lead-card h2{font-size:1.25rem;margin-bottom:.35rem}
.hero .lead-card .reassure-row{display:flex;gap:1rem;font-size:.82rem;color:var(--c-text-muted);margin-top:.65rem}

/* ----- Trust strip ----- */
.badge-row{background:var(--c-bg-alt);padding:2.5rem 0;border-block:1px solid var(--c-border)}
.badge-row .row{display:flex;flex-wrap:wrap;align-items:center;justify-content:center;gap:2rem 3rem}
.badge-row .heading{
  font-family:var(--f-body);font-weight:600;font-size:.8rem;letter-spacing:.14em;text-transform:uppercase;
  color:var(--c-text-muted);margin-bottom:1.25rem;text-align:center;
}
.badge-row a{display:inline-flex;align-items:center;justify-content:center;text-decoration:none;height:28px}
/* width:100px (fixed, not max-width) + object-fit:contain → every logo occupies
   the same 100×22 slot regardless of its natural aspect. With max-width:100px
   alone, wide logos (Nextdoor ~180px → capped at 100px) looked dominant while
   narrow logos (Thumbtack ~40px → stayed 40px) looked invisible by comparison.
   Now they all anchor to the same box with internal whitespace as needed.
   Iter-5 Designer flag: "Nextdoor dominates, Thumbtack is tiny." */
/* Round 2 Designer: opacity .55 + grayscale 100% read as "broken/faded assets",
   not "vetted-by". Bumped to .85 opacity + partial grayscale (.4) — logos still
   read as background context (not dominating) but no longer look broken. */
.badge-row img{height:26px;width:120px;max-height:26px;object-fit:contain;opacity:.85;filter:grayscale(20%) brightness(.95);transition:opacity .15s, filter .15s}
.badge-row a:hover img,.badge-row img:hover{opacity:.95;filter:grayscale(0%) brightness(1)}

/* ----- Services grid (also used for facts / svc-mix / what's-included) ----- */
.services-grid{display:flex;flex-wrap:wrap;gap:1.1rem;justify-content:center;align-items:stretch}
.services-grid > *{flex:1 1 260px;max-width:calc(33.333% - 0.733rem);min-width:240px}
@media (max-width:780px){.services-grid > *{max-width:calc(50% - 0.55rem)}}
@media (max-width:560px){.services-grid > *{max-width:100%}}
.offer-block{
  background:#fff;border:1px solid var(--c-border);border-radius:var(--radius);
  padding:1.4rem 1.4rem 1.5rem;display:flex;flex-direction:column;gap:.6rem;
  text-decoration:none;color:var(--c-text);
  transition:transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}
.offer-block:hover{transform:translateY(-2px);box-shadow:0 8px 20px -14px rgba(31,26,20,.2);border-color:var(--c-main)}
.offer-block .ic{
  width:46px;height:46px;display:grid;place-items:center;
  background:var(--c-bg-alt);border-radius:var(--radius);color:var(--c-main);
  flex:0 0 auto;
}
.offer-block .ic svg{width:24px;height:24px;display:block}
.offer-block h3{margin:.4rem 0 .5rem;font-size:1.35rem;font-weight:700;line-height:1.25;color:var(--c-text)}
.offer-block p{margin:0;color:var(--c-text-muted);font-size:1rem;line-height:1.5}
.offer-block .more{margin-top:auto;color:var(--c-main);font-weight:600;text-decoration:none;font-size:.95rem}
.offer-block:hover .more{text-decoration:underline;text-underline-offset:3px}

/* ----- Owner block ----- */
.founder-section{display:grid;gap:2.5rem;grid-template-columns:.65fr 1fr;align-items:center;padding:1.25rem 0;min-width:0}
.founder-section > *{min-width:0;max-width:100%}
@media (max-width:780px){.founder-section{grid-template-columns:1fr}}
.founder-section .ph{aspect-ratio:4/5;overflow:hidden;border-radius:12px;border:1px solid var(--c-border);box-shadow:0 1px 2px rgba(31,26,20,.04),0 16px 36px -22px rgba(31,26,20,.2)}
.founder-section .ph img{width:100%;height:100%;object-fit:cover;object-position:center 25%}
.founder-section blockquote{margin:0 0 .8rem;font-family:var(--f-heading);font-size:1.35rem;line-height:1.4;color:var(--c-text);border-left:3px solid var(--c-mid);padding-left:1.1rem;font-style:italic;overflow-wrap:break-word;hyphens:auto}
.founder-section blockquote, .founder-section p{max-width:60ch}

/* ----- Process steps ----- */
.steps{display:grid;gap:1.5rem;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));counter-reset:s;margin-top:2.5rem}
.step{padding:4.2rem 1.7rem 1.7rem;background:#fff;border:1px solid var(--c-border);border-radius:var(--radius);position:relative;box-shadow:0 1px 2px rgba(31,26,20,.04),0 8px 24px -16px rgba(31,26,20,.08)}
.step::before{counter-increment:s;content:counter(s);position:absolute;top:1.2rem;left:1.7rem;background:var(--c-accent);color:#1F1A14;width:38px;height:38px;display:grid;place-items:center;border-radius:50%;font-weight:700;font-size:1.05rem}
.step h3{font-size:1.2rem;margin:0 0 .5rem}
.step p{margin:0;color:var(--c-text-muted);font-size:1rem;line-height:1.55}

/* ----- Reviews ----- */
/* Masonry reviews grid — cards of varying height, Pinterest-style columns */
.reviews-grid{columns:3 280px;column-gap:1.1rem}
.reviews-grid .voice-item{break-inside:avoid;margin-bottom:1.1rem;display:inline-block;width:100%}
@media (max-width:640px){.reviews-grid{columns:1}}
.voice-item{background:#fff;border:1px solid var(--c-border);border-radius:var(--radius);padding:1.25rem;display:flex;flex-direction:column;gap:.55rem}
.voice-item .who{display:flex;gap:.7rem;align-items:center}
.voice-item .av{width:56px;height:56px;border-radius:50%;overflow:hidden;flex:0 0 auto;background:var(--c-bg-alt)}
.voice-item .av img{width:100%;height:100%;object-fit:cover}
.voice-item .meta{display:flex;flex-direction:column;line-height:1.25}
.voice-item .meta .nm{font-weight:600}
.voice-item .meta .sub{font-size:.82rem;color:var(--c-text-muted)}
.voice-item .stars{color:var(--c-accent);letter-spacing:.06em}
.voice-item .body{color:var(--c-text)}
.voice-item .src{font-size:.78rem;color:var(--c-text-muted);text-transform:uppercase;letter-spacing:.08em;margin-top:auto}

/* ----- Service Areas Strip ----- */
section[data-panel="areas"] h2{max-width:680px;margin-left:auto;margin-right:auto}
.zone-grid{display:flex;flex-wrap:wrap;gap:.5rem .7rem;justify-content:center}
.zone-grid a{display:inline-block;padding:.7rem 1rem;background:#fff;border:1px solid var(--c-border);border-radius:8px;text-decoration:none;color:var(--c-text);font-weight:500;font-size:.95rem;min-height:44px;transition:border-color .12s, background-color .12s, color .12s}
.zone-grid a:hover{border-color:var(--c-main);color:var(--c-main);background:var(--c-bg-alt)}

/* ----- CTA band ----- */
.action-strip{background:var(--c-main-dk);color:#F8F5F0}
.action-strip .inner{display:grid;gap:1.5rem;grid-template-columns:1fr auto;align-items:center}
@media (max-width:780px){.action-strip .inner{grid-template-columns:1fr;text-align:center}}
.action-strip h2{color:#fff;margin:0}
.action-strip p{color:rgba(248,245,240,.88);margin:.3rem 0 0}

/* ----- FAQ ----- */
.faq details{background:#fff;border:1px solid var(--c-border);border-radius:var(--radius);padding:1rem 1.1rem;margin-bottom:.6rem}
.faq summary{cursor:pointer;font-weight:600;list-style:none;display:flex;justify-content:space-between;gap:1rem;align-items:center;min-height:44px;padding:.35rem 0} /* 44px tap target — Mobile critic */
.faq summary::-webkit-details-marker{display:none}
.faq summary::after{content:"+";font-size:1.4rem;color:var(--c-main);line-height:1}
.faq details[open] summary::after{content:"−"}
.faq details > div{padding-top:.65rem;color:var(--c-text-muted)}

/* ----- Footer ----- */
.site-footer{background:#1F1A14;color:#D7CEC0;padding-block:2.5rem 1.2rem;margin-top:0}
.site-footer a{color:#F8F5F0;text-decoration:none}
.site-footer a:hover{text-decoration:underline;text-underline-offset:3px}
.site-footer .grid{display:grid;gap:2rem;grid-template-columns:1.3fr 1fr 1fr .6fr}
@media (max-width:900px){.site-footer .grid{grid-template-columns:1fr 1fr}}
@media (max-width:600px){.site-footer .grid{grid-template-columns:1fr}}
.site-footer h4{color:#F8F5F0;font-family:var(--f-heading);font-size:1.05rem;margin:0 0 .5rem}
.site-footer ul{margin:0;padding:0;list-style:none;display:grid;gap:0}
.site-footer li a{display:block;padding:0;font-size:.88rem;line-height:1.85}
@media (max-width:640px){.site-footer li a{padding:.15rem 0;min-height:44px;line-height:44px}}
.site-footer .footer-logo{height:88px;width:auto;margin-bottom:.8rem}
/* Service areas column: 2-col grid on desktop to keep footer short */
.site-footer .areas-col ul{display:block;columns:2;column-gap:1.5rem}
.site-footer .areas-col li{break-inside:avoid}
.site-footer .creds{font-size:.85rem;line-height:1.55;color:#B8A99A}
.site-footer .bottom{display:flex;flex-wrap:wrap;justify-content:center;align-items:center;gap:.5rem 1.5rem;padding-top:1.5rem;margin-top:2rem;border-top:1px solid #3a322a;font-size:.85rem;color:#B8A99A;text-align:center}
.site-footer .bottom a{display:inline-block;padding:.45rem .3rem;min-height:44px;line-height:calc(44px - .9rem)} /* 44px tap target for footer utility links — Mobile critic */
.site-footer .bottom > *{flex:0 1 auto}

/* ----- Generic page intro hero (non-home) ----- */
.page-hero{background:var(--c-bg-alt);padding:clamp(2rem,4vw,3rem) 0 0;border-bottom:1px solid var(--c-border)}
/* align-items:start so the LEFT column (H1+intro, short) starts at top of row
   instead of being pulled to the BOTTOM by the much-taller RIGHT column (form
   with 6-8 inputs, ~620px). With align-items:end the page-hero rendered a
   500px cream void ABOVE the H1 on /about/, /reviews/, /faq/, /contact/, /quote/.
   See references/css-rules.md "Page-hero grid". */
.page-hero .grid{display:grid;gap:2rem;grid-template-columns:1.1fr .9fr;align-items:start;padding-bottom:clamp(1.5rem,3vw,2.5rem)}
@media (max-width:900px){.page-hero .grid{grid-template-columns:1fr}}
/* H1 cap — Round 2 Designer measured 5-line wraps still on /services/apartment/, suburb,
   route pages. Tightened max-width 18ch → 14ch + clamp pegged to smaller range. Applies
   to both `.page-hero h1` (about/faq/contact/quote/reviews) AND `.hero h1`
   (home/services/suburb/route) — both templates had long-title overflow. */
.page-hero h1,.hero h1{margin-bottom:.45rem;max-width:14ch;font-size:clamp(1.9rem,1.2rem + 1.7vw,2.5rem);line-height:1.15}
@media (max-width:640px){.page-hero h1,.hero h1{max-width:16ch}}
.page-hero .breadcrumb{font-size:.82rem;color:var(--c-text-muted);margin-bottom:.5rem;text-transform:uppercase;letter-spacing:.08em}

/* ----- Benefits grid (home #benefits section, 4×2 → 2×4 → 1col responsive) ----- */
.why-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:1.5rem}
@media (max-width:980px){.why-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:1.2rem}}
@media (max-width:520px){.why-grid{grid-template-columns:1fr;gap:1rem}}
.why-box{display:flex;flex-direction:column;gap:.55rem}
.why-box .why-icon{width:40px;height:40px;display:inline-flex;align-items:center;justify-content:center;color:var(--c-main);background:#fff;border:1px solid var(--c-border);border-radius:50%;flex:0 0 auto}
.why-box .why-icon svg{width:22px;height:22px}
.why-box h3{font-family:var(--f-heading);font-size:1.05rem;font-weight:600;margin:0;color:var(--c-text);line-height:1.25}
.why-box p{font-size:.92rem;color:var(--c-text-muted);line-height:1.5;margin:0}

/* ----- Recent-work gallery (home #recent-work section) ----- */
.gallery-row{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:1.1rem}
@media (max-width:980px){.gallery-row{grid-template-columns:repeat(3,minmax(0,1fr))}}
@media (max-width:640px){.gallery-row{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media (max-width:420px){.gallery-row{grid-template-columns:1fr}}
.work-card{margin:0;display:flex;flex-direction:column;gap:.45rem}
.work-card .portfolio-img{aspect-ratio:4/3;overflow:hidden;border-radius:var(--radius);background:var(--c-bg-alt)}
/* Unified photo treatment — iter-5 Designer flagged: home mixed B&W silhouettes,
   colour stock, sepia portraits side-by-side. Apply consistent warm-desaturated
   filter to ALL people/work photos so they read as one visual voice. */
.work-card .portfolio-img img,
.voice-item .av img,
.team-grid img,
.founder-section img,
.hero-owner-photo img{
  width:100%;height:100%;object-fit:cover;display:block;
  transition:transform .3s ease, filter .25s ease;
  filter:saturate(.85) sepia(.08) brightness(.96) contrast(1.03);
}
.work-card:hover .portfolio-img img{filter:saturate(.95) sepia(.05) brightness(1) contrast(1.05);transform:scale(1.04)}
.work-card figcaption{font-size:.85rem;color:var(--c-text-muted);line-height:1.4;padding:0 .15rem}

/* ----- Aspect helpers ----- */
.aspect-16-9{aspect-ratio:16/9;overflow:hidden;border-radius:var(--radius)}
.aspect-4-5{aspect-ratio:4/5;overflow:hidden;border-radius:var(--radius)}
.aspect-3-2{aspect-ratio:3/2;overflow:hidden;border-radius:var(--radius)}
.aspect-1-1{aspect-ratio:1/1;overflow:hidden;border-radius:var(--radius)}
.aspect-16-10{aspect-ratio:16/10;overflow:hidden;border-radius:var(--radius)}
.aspect-16-9 img,.aspect-4-5 img,.aspect-3-2 img,.aspect-1-1 img,.aspect-16-10 img{width:100%;height:100%;object-fit:cover}

/* ----- Generic content layout ----- */
.page-body{display:grid;gap:2.5rem;grid-template-columns:1fr 320px;align-items:start}
.page-body > .main{min-width:0}
.page-body > aside{align-self:start}
/* aside-stretch — for pages where article >> aside-stack (notably /about/). Overrides
   `align-self: start` so the aside container stretches to the row's height, and its
   existing .sidebar-lead bg/border (`#fdfaf4`) fills the column below the cards. Result:
   right column looks like a tall tinted card with content at top, no visible cream
   void where the form ends. Safer than `position: sticky` (which re-introduces the
   1600-2200px dead-zone bug — see ".sidebar-lead is NOT position: sticky" rule). */
.page-body > aside.aside-stretch{align-self:stretch}
/* Aside-form compact variant — visually differentiates the sticky sidebar form
   from the hero form. Designer-critic #1 flagged "Two stacked nearly identical
   lead forms... reads as a templating tell." Same fields submit-wise (CRM payload
   unchanged), just compacter typography + secondary button color so the eye reads
   them as DIFFERENT conversion paths, not duplicates. */
.sidebar-lead .ns-form{font-size:.92rem}
.sidebar-lead .ns-form label{font-size:.8rem;margin-bottom:.2rem}
.sidebar-lead .ns-form input,.sidebar-lead .ns-form select{font-size:16px;padding:.5rem .65rem}
.sidebar-lead .ns-form .row{gap:.55rem;margin-bottom:.55rem}
.sidebar-lead .ns-form button[type="submit"]{
  background:var(--c-mid);  /* olive secondary instead of primary brick-red */
  font-size:.95rem;
  padding:.7em 1em;
  margin-top:.4rem;
}
.sidebar-lead .ns-form button[type="submit"]:hover{background:#243A2A}  /* darker olive on hover */
.sidebar-lead .tcpa-text,.sidebar-lead .form-reassure{font-size:.76rem}
/* aside-sticky — wrapper around the form-section inside sidebar-lead that follows
   scroll. Applied ONLY to the lead-card area, NOT the whole aside (whole-aside
   sticky breaks when aside > viewport, the Round-5 dead-zone bug). z-index lifts
   form above call/ticker siblings during scroll-collision so the form visually
   covers them; same aside-bg color prevents harsh edges. Disabled on mobile
   (single column = no benefit, would just stick at top of stack). */
.page-body > aside .aside-sticky{position:sticky;top:1.2rem;z-index:2;background:#fdfaf4}
@media (max-width:980px){.page-body > aside .aside-sticky{position:static}}
@media (max-width:980px){.page-body{grid-template-columns:1fr}}
.page-body .main p{margin-bottom:1em}
.page-body .main h2{margin-top:1.6em}
.page-body .main h3{margin-top:1.4em}

/* Callout / info-box in article content */
.callout{background:var(--c-bg-alt);border-left:4px solid var(--c-accent);padding:1rem 1.25rem;margin:1.5rem 0;border-radius:var(--radius)}
.callout strong{color:var(--c-text)}

/* Tables in blog posts / article content */
.main table{width:100%;border-collapse:collapse;margin:1.5rem 0;font-size:.95rem}
.main table th,.main table td{padding:.65rem .8rem;text-align:left;border-bottom:1px solid var(--c-border)}
.main table thead th{background:var(--c-main);color:#fff;font-weight:600;font-family:var(--f-heading);letter-spacing:.02em}
.main table tbody tr:nth-child(even){background:var(--c-bg-alt)}
.main table tbody tr:hover{background:rgba(42,81,128,.06)}
@media(max-width:640px){.main table{font-size:.88rem;display:block;overflow-x:auto}.main table th,.main table td{white-space:nowrap}}
/* Aside scrolls naturally — sticky caused 1600+px dead zones on long content pages */
.sidebar-lead{background:#fdfaf4;border:1px solid var(--c-border);border-radius:var(--radius);padding:1.4rem;box-shadow:0 1px 2px rgba(31,26,20,.04),0 4px 14px -10px rgba(31,26,20,.12)}
.sidebar-lead h3{margin-top:0}

/* ----- Utility ----- */
.text-center{text-align:center}
.mt-2{margin-top:2rem}
.mb-2{margin-bottom:2rem}
.muted{color:var(--c-text-muted)}
.accent{color:var(--c-accent)}

/* ----- Dark Hero (landing-hero) — video bg + form card right ----- */
.landing-hero{
  position:relative;background-color:var(--c-main-dk);
  padding:clamp(3rem,5vw,5rem) 0 0;overflow:hidden;
}
.landing-hero .hero-video{
  position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:0;
  pointer-events:none;
}
.landing-hero::before{
  content:"";position:absolute;inset:0;
  background:linear-gradient(135deg,rgba(14,29,48,.88) 0%,rgba(14,29,48,.72) 50%,rgba(14,29,48,.55) 100%);
  z-index:1;
}
.landing-hero > .container{position:relative;z-index:2}

.landing-row{
  display:grid;grid-template-columns:1.15fr .85fr;gap:clamp(1.5rem,3vw,3rem);
  align-items:start;padding-bottom:clamp(2rem,3vw,3rem);
}
@media (max-width:900px){.landing-row{grid-template-columns:1fr;gap:1.5rem}}

.landing-copy{color:#fff;padding-top:clamp(.5rem,2vw,1.5rem)}
.landing-copy h1{
  color:#fff;font-size:clamp(2rem,1.3rem + 2.6vw,3.2rem);line-height:1.08;
  margin-bottom:.45rem;max-width:16ch;
}
.hero-tagline{
  color:rgba(255,255,255,.92);font-size:clamp(1.15rem,1rem + .8vw,1.55rem);
  font-family:var(--f-heading);font-weight:600;line-height:1.25;margin-bottom:.65rem;
}
.hero-sub{
  color:rgba(255,255,255,.72);font-size:1.05rem;line-height:1.5;max-width:44ch;margin:0;
}
/* Hero CTA row on dark hero — override ghost btn colors for white-on-dark */
.landing-copy .hero-cta-row{margin-top:1.4rem}
.landing-copy .hero-call-btn{color:#fff;border-color:rgba(255,255,255,.4)}
.landing-copy .hero-call-btn:hover{background:rgba(255,255,255,.12);color:#fff;border-color:rgba(255,255,255,.65)}

/* Hero review — left column, white on dark */
.hero-review{display:flex;gap:.75rem;align-items:flex-start;margin-top:1.6rem;padding-top:1.4rem;border-top:1px solid rgba(255,255,255,.15);max-width:480px}
.hero-review-av{width:44px;height:44px;border-radius:50%;object-fit:cover;flex:0 0 auto;border:2px solid rgba(255,255,255,.3)}
.hero-review-body{color:rgba(255,255,255,.82);font-size:.92rem;line-height:1.45}
.hero-review-stars{color:var(--c-accent);font-size:1rem;letter-spacing:.04em;display:block;margin-bottom:.2rem}
.hero-review-body strong{color:#fff;font-weight:600}

/* Hero association logos — mover industry badges */
.hero-assoc{display:flex;gap:1.2rem;align-items:center;margin-top:1.2rem;flex-wrap:wrap}
.hero-assoc img{height:22px;width:auto;opacity:.55;filter:brightness(10);transition:opacity .15s}
.hero-assoc img:hover{opacity:.85}

.landing-card{
  background:#fff;border-radius:var(--radius-lg);
  padding:clamp(1.2rem,2.4vw,1.8rem) clamp(1.2rem,2.4vw,2rem);
  box-shadow:0 16px 48px -16px rgba(0,0,0,.35);
}
.landing-card h2{font-size:1.3rem;margin-bottom:.25rem;color:var(--c-text)}
.landing-card-sub{margin-bottom:.6rem;font-size:.92rem}

/* Stats bar — 4 counters in a full-width strip below hero */
.stats-bar{background:var(--c-main);padding:1.6rem 0;border-bottom:3px solid var(--c-accent)}
.stats-bar .container{display:grid;grid-template-columns:repeat(4,1fr);gap:1rem;text-align:center}
.stats-bar .stat-item .stat-num{
  font-family:var(--f-heading);font-weight:800;font-size:clamp(1.6rem,2.5vw,2.4rem);
  color:#fff;line-height:1.1;
}
.stats-bar .stat-item .stat-label{
  font-size:.82rem;color:rgba(255,255,255,.72);text-transform:uppercase;
  letter-spacing:.08em;margin-top:.25rem;font-weight:500;
}
@media (max-width:640px){.stats-bar .container{grid-template-columns:repeat(2,1fr);gap:1rem .5rem}}
@media (max-width:420px){.stats-bar .container{grid-template-columns:1fr 1fr;gap:.8rem}}

/* Legacy stat-pill kept for compatibility with non-home templates */
.landing-stats{display:flex;justify-content:flex-start;gap:clamp(1.5rem,3vw,3rem);padding:clamp(1rem,2vw,1.5rem) 0 clamp(1.2rem,2vw,1.8rem)}
.stat-pill{display:flex;align-items:center;gap:.7rem}
.stat-dot{width:clamp(52px,6vw,64px);height:clamp(52px,6vw,64px);border-radius:50%;background:var(--c-accent);color:#fff;font-family:var(--f-heading);font-weight:800;font-size:clamp(1.1rem,1.5vw,1.35rem);display:flex;align-items:center;justify-content:center;flex:0 0 auto;line-height:1}
.stat-pill > span{color:rgba(255,255,255,.85);font-size:.88rem;font-weight:500;line-height:1.3}

/* ----- Vertical timeline (how-it-works) ----- */
.timeline{position:relative;padding-left:3rem;max-width:640px}
.timeline::before{content:"";position:absolute;left:14px;top:8px;bottom:8px;width:2px;background:var(--c-border)}
.timeline-step{position:relative;padding-bottom:2rem}
.timeline-step:last-child{padding-bottom:0}
.timeline-step .step-marker{
  position:absolute;left:-3rem;top:0;width:30px;height:30px;
  border-radius:50%;background:var(--c-accent);color:#fff;
  font-family:var(--f-heading);font-weight:700;font-size:.85rem;
  display:flex;align-items:center;justify-content:center;
  z-index:2;box-shadow:0 0 0 4px var(--c-bg);
}
section.alt .timeline-step .step-marker{box-shadow:0 0 0 4px var(--c-bg-alt)}
.timeline-step h3{font-size:1.1rem;margin-bottom:.25rem}
.timeline-step p{color:var(--c-text-muted);font-size:.95rem;margin:0;line-height:1.5}
@media (max-width:640px){.timeline{padding-left:2.5rem}.timeline-step .step-marker{left:-2.5rem;width:26px;height:26px;font-size:.78rem}}

/* ----- Price calculator ----- */
.calc-card{
  background:#fff;border:2px solid var(--c-accent);border-radius:var(--radius-lg);
  padding:clamp(1.5rem,3vw,2.5rem);max-width:520px;margin:0 auto;
  box-shadow:0 12px 40px -12px rgba(22,43,68,.1);
}
.calc-card h3{font-size:1.2rem;margin-bottom:1rem;text-align:center}
.calc-row{display:flex;gap:.8rem;margin-bottom:1rem;align-items:end}
.calc-row > div{flex:1}
.calc-row label{display:block;font-size:.85rem;font-weight:600;color:var(--c-text);margin-bottom:.3rem}
.calc-row select{
  width:100%;padding:.7rem .8rem;border:1px solid var(--c-border);border-radius:var(--radius);
  font-size:16px;font-family:var(--f-body);background:#fff;color:var(--c-text);
  appearance:none;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23586478' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat:no-repeat;background-position:right .8rem center;
}
.calc-result{
  text-align:center;padding:1.2rem;background:var(--c-bg-alt);border-radius:var(--radius);
  margin-top:1rem;
}
.calc-result .calc-range{
  font-family:var(--f-heading);font-weight:800;font-size:clamp(1.6rem,2.5vw,2.2rem);
  color:var(--c-accent);line-height:1.1;
}
.calc-result .calc-note{font-size:.84rem;color:var(--c-text-muted);margin-top:.4rem}
.calc-result .btn{margin-top:.8rem}
@media (max-width:520px){.calc-row{flex-direction:column;gap:.5rem}}

/* ----- Pricing table ----- */
.pricing-banner{
  display:flex;align-items:center;justify-content:center;gap:.9rem;
  background:var(--c-main);color:#fff;border-radius:var(--radius);
  padding:.85rem 1.5rem;margin:1.5rem auto 2rem;max-width:620px;
  font-size:1.02rem;font-weight:500;line-height:1.35;
}
.pricing-badge{
  flex:0 0 auto;display:inline-flex;align-items:baseline;gap:.15rem;
  background:var(--c-accent);color:#fff;border-radius:50%;
  width:52px;height:52px;justify-content:center;
  font-family:var(--f-heading);font-weight:800;font-size:1.25rem;line-height:1;
}
.pricing-badge small{font-size:.6rem;font-weight:600;margin-left:.1rem}

.pricing-table{
  display:grid;grid-template-columns:1fr 1fr;gap:1.5rem;
  max-width:820px;margin:0 auto;text-align:left;
}
@media (max-width:700px){.pricing-table{grid-template-columns:1fr;gap:1.2rem}}

.pricing-col{
  background:#fff;border:1px solid var(--c-border);border-radius:var(--radius-lg);
  padding:clamp(1.3rem,2.5vw,2rem) clamp(1.3rem,2.5vw,2rem);
}
.pricing-col h3{
  font-size:1.15rem;font-weight:700;color:var(--c-main);margin-bottom:.6rem;
  padding-bottom:.6rem;border-bottom:2px solid var(--c-accent);
}
.pricing-sub{font-size:.88rem;color:var(--c-text-muted);margin:-.2rem 0 .8rem}

.pricing-line{
  display:flex;justify-content:space-between;align-items:center;
  padding:.55rem 0;border-bottom:1px solid var(--c-border);
  font-size:.95rem;color:var(--c-text);
}
.pricing-line:last-of-type{border-bottom:0}
.pricing-line strong{font-weight:700;color:var(--c-main);font-size:1rem}
.pricing-line.main-rate{
  flex-direction:column;align-items:flex-start;gap:.1rem;border-bottom:0;
  padding:.2rem 0 .8rem;
}
.pricing-line.main-rate span{font-size:.85rem;color:var(--c-text-muted);text-transform:uppercase;letter-spacing:.06em}
.pricing-line.main-rate strong{font-size:clamp(2rem,3vw,2.8rem);color:var(--c-accent);line-height:1.1}
.pricing-line.main-rate strong small{font-size:.5em;font-weight:600;color:var(--c-text-muted)}
.pricing-note{font-size:.84rem;color:var(--c-text-muted);line-height:1.45;margin:.6rem 0 1.1rem}

.pricing-col .btn{width:100%;text-align:center;margin-top:.8rem}
/* Featured pricing tier — visual emphasis on the recommended option (Designer iter-6 #3) */
.pricing-col.featured{border:2px solid var(--c-accent);position:relative;box-shadow:0 8px 28px -10px rgba(22,43,68,.12)}
.pricing-col.featured::before{content:'Most Popular';position:absolute;top:-13px;left:50%;transform:translateX(-50%);background:var(--c-accent);color:#fff;padding:.2em 1em;border-radius:20px;font-size:.78rem;font-weight:600;letter-spacing:.02em;white-space:nowrap}

/* ----- Service photo cards (3 cards with colored overlays) ----- */
.service-cards-row{
  display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1.2rem;
}
@media (max-width:780px){.service-cards-row{grid-template-columns:1fr;max-width:420px;margin:0 auto}}

.svc-photo-card{
  position:relative;display:block;aspect-ratio:3/2;overflow:hidden;
  border-radius:var(--radius-lg);text-decoration:none;
}
.svc-photo-card img{
  width:100%;height:100%;object-fit:cover;display:block;
  transition:transform .35s ease;
}
.svc-photo-card:hover img{transform:scale(1.06)}
.svc-photo-card::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(180deg,transparent 30%,var(--overlay,#2A5180) 100%);
  opacity:.78;transition:opacity .2s ease;
}
.svc-photo-card:hover::after{opacity:.88}

.svc-photo-label{
  position:absolute;bottom:0;left:0;right:0;z-index:2;
  padding:1.1rem 1.2rem;color:#fff;
}
.svc-photo-label h3{
  font-size:clamp(1.05rem,1.2vw,1.3rem);color:#fff;margin:0;
  font-weight:700;text-shadow:0 1px 3px rgba(0,0,0,.25);
}

/* ----- Services intro text block ----- */
.services-text{max-width:72ch;font-size:1.02rem;line-height:1.6;color:var(--c-text)}
.services-text p{margin-bottom:1em}
.services-text p:last-child{margin-bottom:0}

/* ----- Review tabs + summary (Trustpilot-style) ----- */
.review-tabs{
  display:flex;gap:.5rem;margin-bottom:1.2rem;flex-wrap:wrap;
}
.tab{
  display:inline-block;padding:.7rem 1.1rem;border-radius:6px;min-height:44px;
  border:1px solid var(--c-border);background:#fff;color:var(--c-text);
  font-family:var(--f-body);font-size:.9rem;font-weight:500;
  cursor:pointer;transition:all .15s ease;
}
.tab:hover{border-color:var(--c-main);color:var(--c-main)}
.tab.active{background:var(--c-main);color:#fff;border-color:var(--c-main)}

.review-summary{
  display:flex;align-items:center;gap:.8rem;flex-wrap:wrap;
  margin-bottom:.5rem;
}
.review-badge{
  display:inline-block;background:var(--c-success);color:#fff;
  padding:.35rem .9rem;border-radius:4px;font-weight:700;font-size:.92rem;
  letter-spacing:.02em;
}
.stars-big{color:var(--c-accent);font-size:1.3rem;letter-spacing:.04em;line-height:1}
.review-count{color:var(--c-text-muted);font-size:.92rem}

/* ----- Tradition / USP section ----- */
.tradition-row{
  display:grid;grid-template-columns:1.1fr .9fr;gap:clamp(2rem,4vw,3.5rem);
  align-items:center;
}
@media (max-width:780px){.tradition-row{grid-template-columns:1fr;gap:1.5rem}}

.tradition-copy .eyebrow{margin-bottom:.5rem}
.tradition-copy h2{margin-bottom:1.2rem}

.usp-list{
  list-style:none;padding:0;margin:0;display:grid;gap:.65rem;
}
.usp-list li{
  display:flex;align-items:flex-start;gap:.7rem;
  font-size:.98rem;line-height:1.5;color:var(--c-text);
}
.usp-list li::before{
  content:"✓";flex:0 0 auto;display:inline-flex;align-items:center;justify-content:center;
  width:24px;height:24px;border-radius:50%;
  background:var(--c-accent);color:#fff;font-size:.72rem;font-weight:700;
  margin-top:.15rem;
}
.usp-list li strong{font-weight:600;color:var(--c-text)}

.tradition-img{border-radius:var(--radius-lg);overflow:hidden;aspect-ratio:4/3}
.tradition-img img{width:100%;height:100%;object-fit:cover;display:block}

/* ----- Outline button variant ----- */
.btn-outline{
  display:inline-block;padding:.8em 1.3em;border-radius:8px;
  font-weight:600;font-size:.95rem;text-decoration:none;
  background:transparent;color:var(--c-main);
  border:1.5px solid var(--c-main);cursor:pointer;
  transition:all .15s ease;
}
.btn-outline:hover{background:var(--c-main);color:#fff}

/* ----- Review filter tabs JS ----- */
.voice-item[data-source]{transition:opacity .15s ease}
.voice-item.review-hidden{display:none}

/* ----- Footer credential items (extracted from inline styles) ----- */
.cred-item{display:flex;gap:.6rem;align-items:flex-start}
.cred-item .cred-check{color:var(--c-accent);font-weight:700;flex:0 0 auto;line-height:1.4}

/* ----- Sticky mobile CTA bar ----- */
.mobile-cta-bar{
  display:none;position:fixed;bottom:0;left:0;right:0;z-index:49;
  background:var(--c-main-dk);padding:.65rem 1rem;
  box-shadow:0 -4px 16px rgba(0,0,0,.2);
  border-top:1px solid rgba(255,255,255,.1);
}
.mobile-cta-bar .inner{
  display:flex;gap:.7rem;align-items:center;justify-content:center;
  max-width:var(--container);margin:0 auto;
}
.mobile-cta-bar .btn{padding:.7em 1.2em;font-size:.92rem;flex:1;text-align:center;max-width:200px}
@media (max-width:900px){
  .mobile-cta-bar{display:block}
  /* Pad body bottom so content isn't hidden behind sticky bar */
  body{padding-bottom:68px}
}
@media (min-width:901px){.mobile-cta-bar{display:none !important}}

/* ----- Micro-testimonial in hero card ----- */
.micro-review{margin-top:.8rem;padding-top:.7rem;border-top:1px solid var(--c-border);display:flex;gap:.6rem;align-items:center}
.micro-review .micro-av{border-radius:50%;flex:0 0 auto}
.micro-review .micro-body{font-size:.82rem;color:var(--c-text-muted);line-height:1.35}
.micro-review .micro-stars{color:var(--c-accent)}
.micro-review .micro-name{color:var(--c-text)}

/* ----- Utility spacing ----- */
.mt-1-5{margin-top:1.5rem}
.max-w-60{max-width:60ch}
.mx-auto{margin-left:auto;margin-right:auto}
.faq-section{padding-bottom:2.5rem}

/* ----- Hero stats (extracted from inline — Architect iter-4 #1) ----- */
.hero-stats{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1.1rem;margin-top:1.6rem;padding-top:1.2rem;border-top:1px solid var(--c-border)}
.hero-stats .stat-big{font-family:var(--f-heading);font-size:1.18rem;font-weight:600;line-height:1.2;color:var(--c-text)}
.hero-stats .stat-sm{font-size:.84rem;color:var(--c-text-muted);line-height:1.45;margin-top:.25rem}
@media (max-width:640px){.hero-stats{grid-template-columns:1fr}}

/* ----- Hero process (extracted from inline — Architect iter-4 #2) ----- */
.hero-process{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1.1rem;margin-top:1.4rem;padding-top:1.2rem;border-top:1px solid var(--c-border)}
.hero-process .step-head{display:flex;align-items:center;gap:.5rem;margin-bottom:.3rem}
.hero-process .step-num{display:inline-flex;align-items:center;justify-content:center;width:24px;height:24px;border-radius:50%;background:var(--c-main);color:#fff;font-size:.78rem;font-weight:700;font-family:var(--f-body)}
.hero-process .step-title{font-family:var(--f-heading);font-size:1rem;font-weight:600;color:var(--c-text);line-height:1.2}
.hero-process .step-desc{font-size:.84rem;color:var(--c-text-muted);line-height:1.45}
@media (max-width:640px){.hero-process{grid-template-columns:1fr}}

/* ----- Aside ticker (extracted from inline) ----- */
.aside-ticker{background:#fff;border:1px solid var(--c-border);border-radius:var(--radius);padding:1.2rem;margin-top:1.2rem;box-shadow:0 1px 2px rgba(31,26,20,.04),0 4px 14px -10px rgba(31,26,20,.12)}
.aside-ticker h3{margin:0 0 .35rem;font-size:1.05rem}
.aside-ticker .ticker-sub{margin:0 0 .8rem;font-size:.82rem}
.aside-ticker .ticker-rows{font-size:.88rem;font-family:var(--f-body);line-height:1.7}
.aside-ticker .ticker-row{display:flex;justify-content:space-between;border-bottom:1px dashed var(--c-border);padding:.3rem 0}
.aside-ticker .ticker-day{color:var(--c-text-muted);font-weight:600;letter-spacing:.04em}
.aside-ticker .ticker-val{color:var(--c-text)}
.aside-ticker .ticker-updated{margin:.7rem 0 0;font-size:.76rem;text-align:right}

/* ----- Aside call card (extracted from inline) ----- */
.aside-call{background:#fff;border:1px solid var(--c-border);border-radius:var(--radius);padding:1.2rem;margin-top:1.2rem;box-shadow:0 1px 2px rgba(31,26,20,.04),0 4px 14px -10px rgba(31,26,20,.12)}
.aside-call h3{margin:0 0 .35rem;font-size:1.05rem}
.aside-call .call-intro{margin:0 0 .8rem;font-size:.88rem}
.aside-call .call-number{display:block;font-family:var(--f-heading);font-size:1.35rem;font-weight:600;color:var(--c-main);text-decoration:none;line-height:1.1}
.aside-call .call-addr{font-size:.83rem;color:var(--c-text-muted);margin-top:.5rem;line-height:1.55}

/* ----- CTA band button area (extracted from inline) ----- */
.action-strip .cta-right{text-align:right}
@media (max-width:780px){.action-strip .cta-right{text-align:center}}
.action-strip .cta-btn{font-size:1.05rem;padding:1.1em 1.8em}
.action-strip .cta-tagline{font-size:.82rem;color:rgba(248,245,240,.75);margin-top:.55rem}

/* ----- Form helpers (extracted from inline) ----- */
.label-optional{font-weight:400;color:var(--c-text-muted);font-size:.78rem}
.tcpa-consent{font-size:.78rem;color:var(--c-text-muted);margin-top:.4rem}
.tcpa-consent .tcpa-check{color:var(--c-success)}

/* ----- Footer credential list + nav (extracted from inline) ----- */
.creds-list{list-style:none;padding:0;margin:.85rem 0 0;display:grid;gap:.45rem}
.creds-nav{margin-top:.85rem}

/* ----- Template helpers (extracted from inline) ----- */
.hero-cta-row{margin-top:1.2rem}
.form-intro{margin-bottom:.6rem}
.clean-list{list-style:none;padding:0;margin:0}
.mb-0{margin:0}
.max-w-62{max-width:62ch}
.section-footer{margin-top:1.2rem;text-align:center}
.spec-value{margin:.2rem 0 0}
.zone-start{justify-content:flex-start}
.band-rate{margin:.2rem 0 0;font-size:1.15rem;font-weight:600}
.band-note{margin:.3rem 0 0;font-size:.88rem}
.reviews-main{max-width:780px;margin:0 auto 2.5rem}
.mb-1-5{margin-bottom:1.5rem}
