/* ============================================================
   Base design system — shared by all themes.
   Themes override the CSS custom properties + add personality.
   ============================================================ */
:root {
  --primary: #0b3d91;
  --accent: #1f7ae0;
  --bg: #ffffff;
  --bg-alt: #f6f8fb;
  --fg: #1a1f2c;
  --fg-muted: #515a6e;
  --border: #e3e7ee;
  --radius: 10px;
  --radius-sm: 7px;
  --max-width: 1160px;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: var(--font-body);
  --shadow-1: 0 1px 2px rgba(16, 24, 40, 0.05);
  --shadow-2: 0 1px 3px rgba(16, 24, 40, 0.06), 0 4px 12px rgba(16, 24, 40, 0.06);
  --shadow-3: 0 4px 8px rgba(16, 24, 40, 0.06), 0 12px 32px rgba(16, 24, 40, 0.10);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --header-h: 72px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--fg);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 2px; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  margin: 0 0 0.55em;
  line-height: 1.15;
  color: var(--fg);
  letter-spacing: -0.015em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.1rem, 4.5vw, 3.1rem); font-weight: 800; }
h2 { font-size: clamp(1.55rem, 2.6vw, 2.05rem); font-weight: 750; }
h3 { font-size: 1.16rem; font-weight: 650; }
p { margin: 0 0 1em; color: var(--fg-muted); }
.lead { font-size: 1.14rem; line-height: 1.65; }
ul { padding-left: 1.2em; margin: 0 0 1em; }
ul.bare { list-style: none; padding: 0; }
.muted { color: var(--fg-muted); }
.small { font-size: 0.88rem; }

.wrap { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: clamp(3.5rem, 7vw, 5.5rem) 0; }
.section.alt { background: var(--bg-alt); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  background: var(--primary); color: #fff;
  border-radius: var(--radius-sm); border: 1.5px solid var(--primary);
  font-weight: 600; font-size: 0.98rem; cursor: pointer;
  font-family: var(--font-body);
  box-shadow: var(--shadow-1);
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease),
              background 0.18s var(--ease), border-color 0.18s var(--ease), color 0.18s var(--ease);
}
.btn:hover {
  background: var(--accent); border-color: var(--accent); color: #fff;
  text-decoration: none; transform: translateY(-1px); box-shadow: var(--shadow-2);
}
.btn:active { transform: translateY(0); box-shadow: var(--shadow-1); }
.btn.secondary { background: transparent; color: var(--primary); box-shadow: none; }
.btn.secondary:hover { background: var(--primary); color: #fff; box-shadow: var(--shadow-2); }

/* ---------- Acquisition / announcement banner ---------- */
.acquisition-banner {
  display: block;
  background: linear-gradient(90deg, var(--primary) 0%, color-mix(in srgb, var(--primary) 70%, var(--accent)) 100%);
  color: #fff;
  text-decoration: none;
  font-size: 0.92rem;
  line-height: 1.2;
  border-bottom: 2px solid var(--accent);
  transition: filter 0.18s var(--ease);
  position: relative;
  z-index: 60;
}
.acquisition-banner:hover { text-decoration: none; filter: brightness(1.08); }
.acquisition-banner .wrap {
  display: flex; align-items: center; justify-content: center; gap: 0.95rem;
  padding: 0.7rem 1.5rem; flex-wrap: wrap; text-align: center;
}
.acquisition-banner .acq-text { font-weight: 600; letter-spacing: 0.005em; }
.acquisition-banner .acq-cta {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-weight: 700;
  padding: 0.22rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.32);
  font-size: 0.86rem;
}
.acquisition-banner svg {
  transition: transform 0.2s var(--ease);
}
.acquisition-banner:hover svg { transform: translateX(3px); }
@media (max-width: 540px) {
  .acquisition-banner .wrap { padding: 0.55rem 1rem; gap: 0.55rem; }
  .acquisition-banner .acq-text { font-size: 0.86rem; }
  .acquisition-banner .acq-cta { font-size: 0.78rem; }
}

/* ---------- Header (sticky, translucent) ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter: saturate(1.4) blur(12px);
  -webkit-backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid var(--border);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.25rem; min-height: var(--header-h);
}
.brand {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-weight: 750; font-size: 1.12rem; color: var(--primary);
  letter-spacing: -0.015em; flex: none;
}
.brand:hover { text-decoration: none; }
.brand-mark { display: inline-flex; }
.brand-mark svg { display: block; }
nav.primary ul { display: flex; gap: 1.75rem; margin: 0; padding: 0; list-style: none; }
nav.primary a {
  color: var(--fg); font-weight: 530; font-size: 0.97rem;
  padding: 0.35rem 0; position: relative; white-space: nowrap;
}
nav.primary a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px;
  background: var(--accent); transition: right 0.22s var(--ease);
}
nav.primary a:hover { color: var(--accent); text-decoration: none; }
nav.primary a:hover::after { right: 0; }
.header-cta { padding: 0.55rem 1.15rem; font-size: 0.92rem; flex: none; }

/* Header variant: classic — brand left, nav + CTA grouped on the right */
.head--classic .header-right { display: flex; align-items: center; gap: 1.9rem; }

/* Header variant: centered — brand left, nav centered, CTA right */
.head--centered .wrap { display: grid; grid-template-columns: 1fr auto 1fr; }
.head--centered .brand { justify-self: start; }
.head--centered nav.primary { justify-self: center; }
.head--centered .header-cta { justify-self: end; }

/* Header variant: center-brand — nav left, brand centered, CTA right */
.head--center-brand .wrap { display: grid; grid-template-columns: 1fr auto 1fr; }
.head--center-brand nav.primary { justify-self: start; }
.head--center-brand .brand { justify-self: center; }
.head--center-brand .header-cta { justify-self: end; }

/* Header variant: utility-bar — contact strip on top, main row beneath */
.head--utility-bar { padding: 0; }
.head--utility-bar .utility-strip {
  background: var(--primary); color: color-mix(in srgb, #fff 88%, var(--primary));
  font-size: 0.82rem;
}
.head--utility-bar .utility-strip .wrap {
  min-height: 0; display: flex; justify-content: flex-end; gap: 1.6rem;
  padding-top: 0.45rem; padding-bottom: 0.45rem;
}
.head--utility-bar .utility-strip a { color: inherit; }
.head--utility-bar .utility-strip a:hover { color: #fff; }
.head--utility-bar .util-hours { opacity: 0.85; }
.head--utility-bar .header-main {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.25rem; min-height: var(--header-h);
}
.head--utility-bar .header-right { display: flex; align-items: center; gap: 1.9rem; }
@media (max-width: 680px) { .head--utility-bar .utility-strip { display: none; } }

/* Header variant: boxed-nav — nav links inside a rounded pill */
.head--boxed-nav nav.primary ul {
  background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: 999px; padding: 0.35rem 0.6rem; gap: 0.4rem;
}
.head--boxed-nav nav.primary a { padding: 0.4rem 0.95rem; border-radius: 999px; }
.head--boxed-nav nav.primary a::after { display: none; }
.head--boxed-nav nav.primary a:hover {
  background: color-mix(in srgb, var(--accent) 14%, var(--bg));
  color: var(--accent);
}

/* Header variant: stacked — brand row + nav row, both centered */
.head--stacked .wrap.stack {
  flex-direction: column; gap: 0.6rem; min-height: 0;
  padding-top: 0.95rem; padding-bottom: 0.85rem;
}
.head--stacked .brand { font-size: 1.22rem; }
.head--stacked nav.primary ul { gap: 2.2rem; }

@media (max-width: 760px) {
  .header-cta { display: none; }
  nav.primary ul { gap: 1.1rem; }
  .head--centered .wrap,
  .head--center-brand .wrap { display: flex; }
  .head--center-brand .brand { order: -1; }
}

/* ---------- Header STYLE variants (overlay layout variants) ---------- */
/* translucent is the default (already styled above) */
.site-header.hstyle--solid { background: var(--bg); backdrop-filter: none; -webkit-backdrop-filter: none; }
.site-header.hstyle--shadow {
  background: var(--bg); border-bottom: 0; backdrop-filter: none; -webkit-backdrop-filter: none;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 6px 18px rgba(0,0,0,0.05);
}
.site-header.hstyle--accent-bar {
  background: var(--bg); border-bottom: 4px solid var(--accent);
  backdrop-filter: none; -webkit-backdrop-filter: none;
}
.site-header.hstyle--thick-rule {
  background: var(--bg); border-bottom: 3px solid var(--primary);
  backdrop-filter: none; -webkit-backdrop-filter: none;
}
.site-header.hstyle--dotted {
  background: var(--bg); border-bottom: 2px dotted var(--fg-muted);
  backdrop-filter: none; -webkit-backdrop-filter: none;
}
.site-header.hstyle--static { position: static; }

/* ---------- Brand format variants ---------- */
.brand--icon-only .brand-text { display: none; }
.brand--icon-only .brand-mark svg { width: 28px; height: 28px; }
.brand--text-only { gap: 0; }
.brand--text-tagline { align-items: center; gap: 0.7rem; }
.brand--text-tagline .brand-text {
  display: inline-flex; flex-direction: column; line-height: 1.1;
}
.brand--text-tagline .brand-tagline {
  font-size: 0.7rem; font-weight: 500; color: var(--fg-muted);
  text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.18rem;
}

/* ---------- Right-side variants ---------- */
.header-phone {
  display: inline-flex; flex-direction: column; align-items: flex-end;
  line-height: 1.1; text-decoration: none; color: var(--fg);
  font-weight: 600; font-size: 0.96rem; padding: 0.3rem 0;
}
.header-phone:hover { color: var(--accent); text-decoration: none; }
.header-phone .header-phone-label {
  font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--fg-muted); font-weight: 700; margin-bottom: 0.18rem;
}
.header-phone .header-phone-num { font-variant-numeric: tabular-nums; }
.header-contact {
  display: inline-flex; flex-direction: column; align-items: flex-end;
  font-size: 0.9rem; gap: 0.15rem; line-height: 1.2;
}
.header-contact .header-phone-num { color: var(--fg); font-weight: 600; font-variant-numeric: tabular-nums; }
.header-contact .header-email { color: var(--fg-muted); font-size: 0.85rem; }
@media (max-width: 760px) {
  .header-phone, .header-contact { display: none; }
}

/* ---------- Nav link separators ---------- */
.nav--sep-pipe ul li { position: relative; }
.nav--sep-pipe ul li + li::before {
  content: ""; position: absolute; left: calc(-0.9rem); top: 50%;
  width: 1px; height: 14px; background: var(--border); transform: translateY(-50%);
}
.nav--sep-pipe ul { gap: 1.6rem; }
.nav--sep-dot ul li { position: relative; }
.nav--sep-dot ul li + li::before {
  content: ""; position: absolute; left: calc(-0.85rem); top: 50%;
  width: 3px; height: 3px; border-radius: 50%; background: var(--fg-muted);
  transform: translateY(-50%);
}
.nav--sep-dot ul { gap: 1.45rem; }

/* When the nav is inside the boxed pill, separators look wrong — disable */
.head--boxed-nav .nav--sep-pipe ul li + li::before,
.head--boxed-nav .nav--sep-dot ul li + li::before { display: none; }

/* ---------- Eyebrow + section heads ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  text-transform: uppercase; letter-spacing: 0.12em;
  font-size: 0.76rem; font-weight: 740;
  color: var(--accent); margin: 0 0 0.9em;
}
.eyebrow::before {
  content: ""; width: 22px; height: 2px; background: var(--accent);
  display: inline-block; border-radius: 2px;
}
.section-head { margin-bottom: clamp(1.8rem, 3.5vw, 2.8rem); max-width: 62ch; }
.section-head .lead { margin-top: 0.5rem; margin-bottom: 0; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  padding: clamp(4rem, 9vw, 6.5rem) 0 clamp(3.5rem, 7vw, 5.5rem);
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.hero-grid { display: grid; gap: 3rem; align-items: center; grid-template-columns: 1fr; }
.hero h1 { max-width: 21ch; margin-bottom: 0.45em; }
.hero .lead {
  font-size: clamp(1.08rem, 1.7vw, 1.22rem); max-width: 56ch;
  color: var(--fg-muted); line-height: 1.65;
}
.hero .cta-row { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-top: 1.8rem; }
.hero .supporting {
  margin-top: 1.4rem; font-size: 0.88rem; color: var(--fg-muted);
  display: flex; align-items: center; gap: 0.5rem;
}
.hero .supporting::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); flex: none;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 18%, transparent);
}

/* Hero — split */
.hero--split .hero-grid { grid-template-columns: 1.12fr 0.88fr; }
.hero--split .hero-illo {
  color: var(--primary);
  filter: drop-shadow(0 12px 28px color-mix(in srgb, var(--primary) 22%, transparent));
}
@media (max-width: 880px) {
  .hero--split .hero-grid { grid-template-columns: 1fr; }
  .hero--split .hero-illo { max-width: 420px; margin: 0 auto; }
}

/* Hero — centered */
.hero--centered { text-align: center; }
.hero--centered .hero-grid {
  grid-template-columns: 1fr; max-width: 760px;
  margin-left: auto; margin-right: auto; position: relative;
}
.hero--centered .hero-illo--bg {
  position: absolute; inset: -10% -16%; z-index: 0;
  opacity: 0.14; pointer-events: none; color: var(--accent);
}
.hero--centered .hero-text { position: relative; z-index: 1; }
.hero--centered h1, .hero--centered .lead { margin-left: auto; margin-right: auto; }
.hero--centered .cta-row { justify-content: center; }
.hero--centered .supporting { justify-content: center; }

/* Hero — bgimage */
.hero--bgimage { color: #fff; border-bottom: 0; }
.hero--bgimage .hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero--bgimage .hero-bg-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(110deg, rgba(5, 9, 18, 0.88) 0%, rgba(5, 9, 18, 0.62) 55%, rgba(5, 9, 18, 0.38) 100%);
}
.hero--bgimage .wrap { position: relative; z-index: 2; }
.hero--bgimage h1 { color: #fff; }
.hero--bgimage .lead { color: rgba(255, 255, 255, 0.88); }
.hero--bgimage .supporting { color: rgba(255, 255, 255, 0.78); }
.hero--bgimage .eyebrow { color: #fff; }
.hero--bgimage .eyebrow::before { background: #fff; }
/* High specificity on purpose: themes restyle .btn.secondary for light
   backgrounds; on a photo hero the buttons must stay light regardless. */
.hero.hero--bgimage .hero-text .btn.secondary {
  background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.65); box-shadow: none;
}
.hero.hero--bgimage .hero-text .btn.secondary:hover { background: #fff; color: #111; border-color: #fff; }
.hero.hero--bgimage .hero-text .supporting { color: rgba(255, 255, 255, 0.78); }
.hero.hero--bgimage .hero-text h1 { color: #fff; }
.hero.hero--bgimage .hero-text .lead { color: rgba(255, 255, 255, 0.88); }

/* Hero — stat-strip */
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; margin-top: 2.4rem; }
.hero-stat {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.5rem 1.4rem; text-align: left; box-shadow: var(--shadow-1);
}
.hero-stat .num {
  display: block; font-size: 2rem; font-weight: 800; color: var(--accent);
  letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 0.3rem;
  font-variant-numeric: tabular-nums;
}
.hero-stat .label { font-size: 0.88rem; color: var(--fg-muted); line-height: 1.45; }
@media (max-width: 720px) { .hero-stats { grid-template-columns: 1fr; } }

/* Hero — page-level */
.hero--page { padding: clamp(3rem, 6vw, 4.5rem) 0 clamp(2.5rem, 5vw, 3.5rem); }
.hero--page h1 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); max-width: 26ch; }

/* ---------- Grids + cards ---------- */
.grid { display: grid; gap: 1.4rem; }
.grid.cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 980px) { .grid.cols-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 900px) { .grid.cols-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 620px) {
  .grid.cols-2, .grid.cols-3, .grid.cols-4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.7rem 1.6rem;
  box-shadow: var(--shadow-1);
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease), border-color 0.22s var(--ease);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-3); }
.card h3 { color: var(--fg); margin-bottom: 0.4em; }
.card p:last-child { margin-bottom: 0; }

/* Icon chip — icon sits in a tinted rounded square */
.icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 58px; height: 58px; flex: none;
  border-radius: calc(var(--radius) + 2px);
  background: color-mix(in srgb, var(--accent) 10%, var(--bg));
  border: 1px solid color-mix(in srgb, var(--accent) 22%, var(--bg));
  color: var(--primary);
  margin-bottom: 1.05rem;
}
.icon svg { width: 32px; height: 32px; }
.icon.big { width: 72px; height: 72px; }
.icon.big svg { width: 42px; height: 42px; }

/* VP — alternating rows */
.vp-alt { display: flex; flex-direction: column; gap: 1.1rem; }
.vp-alt-item {
  display: grid; grid-template-columns: 84px 1fr; align-items: center;
  gap: 1.6rem; padding: 1.6rem 1.7rem; border: 1px solid var(--border);
  border-radius: var(--radius); background: var(--bg); box-shadow: var(--shadow-1);
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease);
}
.vp-alt-item:hover { transform: translateX(4px); box-shadow: var(--shadow-2); }
.vp-alt-item .icon { margin-bottom: 0; }
.vp-alt-item h3 { margin-bottom: 0.3em; }
.vp-alt-item p { margin-bottom: 0; }
@media (max-width: 600px) { .vp-alt-item { grid-template-columns: 1fr; } }

/* VP — numbered feature list */
.vp-list { list-style: none; padding: 0; margin: 0; }
.vp-list li {
  display: grid; grid-template-columns: 56px 70px 1fr; gap: 1.3rem;
  padding: 1.7rem 0; border-bottom: 1px solid var(--border); align-items: center;
}
.vp-list li:last-child { border-bottom: 0; }
.vp-list .num {
  font-size: 1.05rem; font-weight: 800; color: var(--accent);
  font-variant-numeric: tabular-nums;
  width: 44px; height: 44px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  border: 2px solid color-mix(in srgb, var(--accent) 45%, transparent);
}
.vp-list .icon { margin-bottom: 0; }
.vp-list h3 { margin-bottom: 0.25em; }
.vp-list p { margin-bottom: 0; }
@media (max-width: 640px) {
  .vp-list li { grid-template-columns: 56px 1fr; }
  .vp-list .icon { display: none; }
}

/* Features — numbered */
.features-numbered { list-style: none; padding: 0; margin: 0; }
.features-numbered li {
  display: grid; grid-template-columns: 92px 1fr; gap: 1.6rem;
  padding: 1.8rem 0; border-bottom: 1px solid var(--border);
}
.features-numbered li:last-child { border-bottom: 0; }
.features-numbered .num {
  font-size: 2.4rem; font-weight: 800; line-height: 1;
  color: color-mix(in srgb, var(--accent) 75%, var(--fg));
  font-variant-numeric: tabular-nums; letter-spacing: -0.03em;
  opacity: 0.85;
}
.features-numbered h3 { margin-bottom: 0.3em; }
.features-numbered p { margin-bottom: 0; }

/* Features — side strip */
.features-strip { display: flex; flex-direction: column; gap: 0.9rem; }
.strip-row {
  display: grid; grid-template-columns: 76px 1fr; gap: 1.5rem; align-items: center;
  padding: 1.45rem 1.6rem; background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow-1);
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease);
}
.strip-row:hover { transform: translateY(-2px); box-shadow: var(--shadow-2); }
.strip-row .icon { margin-bottom: 0; }
.strip-row h3 { margin-bottom: 0.25em; }
.strip-row p { margin-bottom: 0; }

/* ---------- Local section ---------- */
.local-grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: 3rem; align-items: start; }
@media (max-width: 880px) { .local-grid { grid-template-columns: 1fr; } }
.local-side { display: flex; flex-direction: column; gap: 1.1rem; }
.local-photo { margin: 0; position: relative; }
.local-photo img {
  width: 100%; height: 240px; object-fit: cover;
  border-radius: var(--radius); border: 1px solid var(--border);
  box-shadow: var(--shadow-2);
  background: linear-gradient(135deg, var(--primary), var(--accent));
}
.local-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.local-stat {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 1.1rem 1.15rem; box-shadow: var(--shadow-1);
}
.local-stat .num {
  display: block; font-size: 1.45rem; font-weight: 800; color: var(--accent);
  letter-spacing: -0.02em; font-variant-numeric: tabular-nums; margin-bottom: 0.15rem;
}
.local-stat .label { font-size: 0.84rem; color: var(--fg-muted); line-height: 1.4; }

/* ---------- Carrier-neutral ---------- */
.carriers-grid {
  display: grid; grid-template-columns: 1.35fr 1fr; gap: 3rem;
  align-items: center; margin-bottom: 2.4rem;
}
@media (max-width: 880px) { .carriers-grid { grid-template-columns: 1fr; } }
.carriers-photo img {
  width: 100%; height: 280px; object-fit: cover;
  border-radius: var(--radius); border: 1px solid var(--border);
  box-shadow: var(--shadow-2);
  background: linear-gradient(135deg, var(--bg-alt), var(--accent));
}
.carrier-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem;
}
@media (max-width: 880px) { .carrier-list { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .carrier-list { grid-template-columns: 1fr; } }
.carrier-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.35rem 1.4rem; display: flex; flex-direction: column; gap: 0.35rem;
  position: relative; overflow: hidden; box-shadow: var(--shadow-1);
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease);
}
.carrier-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}
.carrier-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); }
.carrier-name { font-weight: 750; font-size: 1.08rem; color: var(--fg); letter-spacing: -0.01em; }
.carrier-tag { font-size: 0.86rem; color: var(--fg-muted); line-height: 1.5; }

/* ---------- Pricing teaser / tier callouts ---------- */
.tier-cards .tier-callout { position: relative; }
.tier-callout h3 { color: var(--primary); }

/* ---------- FAQ ---------- */
.faq { max-width: 56rem; }
.faq details {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 0; margin-bottom: 0.75rem;
  overflow: hidden; transition: border-color 0.2s var(--ease);
}
.faq details[open] { border-color: color-mix(in srgb, var(--accent) 45%, var(--border)); }
.faq summary {
  cursor: pointer; font-weight: 620; color: var(--fg);
  padding: 1.05rem 3rem 1.05rem 1.3rem; position: relative;
  list-style: none; user-select: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 1.2rem; top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem; font-weight: 400; color: var(--accent); line-height: 1;
  transition: transform 0.2s var(--ease);
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p { margin: 0; padding: 0 1.3rem 1.2rem; color: var(--fg-muted); }

/* ---------- Testimonials ---------- */
.test-cards .card { position: relative; padding-top: 2.4rem; }
.test-cards .card::before {
  content: "\201C"; position: absolute; top: 0.4rem; left: 1.3rem;
  font-size: 3.4rem; line-height: 1; color: var(--accent); opacity: 0.35;
  font-family: Georgia, serif;
}
.test-cards .card .quote { font-size: 1.04rem; line-height: 1.6; color: var(--fg); }
.test-cards .card .attribution { color: var(--fg-muted); margin: 0.8rem 0 0; font-size: 0.92rem; }
.feature-quote {
  border-left: 4px solid var(--accent); padding: 2rem 2.4rem;
  font-size: clamp(1.15rem, 2vw, 1.4rem); line-height: 1.55; margin: 0;
  background: var(--bg-alt); border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--fg); max-width: 60rem;
}
.feature-quote p { color: var(--fg); margin-bottom: 0; }
.feature-quote footer { font-size: 0.95rem; color: var(--fg-muted); margin-top: 1.2rem; }
.test-wall { gap: 1.4rem; }
.test-snippet {
  border-top: 3px solid var(--accent); padding: 1.4rem 0 0;
}
.test-snippet p:first-child { font-size: 0.97rem; color: var(--fg); line-height: 1.6; }
.test-snippet .attribution { color: var(--fg-muted); margin-top: 0.6rem; font-size: 0.88rem; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden;
  background: linear-gradient(120deg, var(--primary) 0%, color-mix(in srgb, var(--primary) 55%, var(--accent)) 100%);
  color: #fff; padding: clamp(3.5rem, 7vw, 5rem) 0; text-align: center;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0; opacity: 0.14;
  background-image: radial-gradient(circle at 18% 28%, #fff 1.5px, transparent 1.5px),
                    radial-gradient(circle at 78% 70%, #fff 1.5px, transparent 1.5px);
  background-size: 56px 56px, 72px 72px;
}
.cta-band .wrap { position: relative; }
.cta-band h2, .cta-band p { color: #fff; }
.cta-band p { max-width: 56ch; margin-left: auto; margin-right: auto; opacity: 0.92; }
.cta-band .btn { background: #fff; color: var(--primary); border-color: #fff; font-size: 1.02rem; padding: 0.9rem 1.9rem; }
.cta-band .btn:hover { background: transparent; color: #fff; }

/* ---------- Pricing page ---------- */
.pricing-intro-grid { display: grid; grid-template-columns: 1.9fr 1fr; gap: 3rem; align-items: start; }
@media (max-width: 880px) { .pricing-intro-grid { grid-template-columns: 1fr; } }
.pricing-summary {
  background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.6rem; position: sticky; top: calc(var(--header-h) + 1rem);
}
.pricing-summary h3 { color: var(--primary); margin-bottom: 0.8em; }
.pricing-summary ul.bare li {
  padding: 0.5rem 0 0.5rem 1.7rem; border-bottom: 1px dashed var(--border);
  position: relative; font-size: 0.95rem; color: var(--fg);
}
.pricing-summary ul.bare li:last-child { border-bottom: 0; }
.pricing-summary ul.bare li::before {
  content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 700;
}
.pricing-summary .small { margin: 0.8rem 0 0; }

.tiers { display: grid; gap: 1.4rem; grid-template-columns: repeat(3, 1fr); align-items: start; }
@media (max-width: 900px) { .tiers { grid-template-columns: 1fr; } }
.tier {
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.9rem 1.7rem; background: var(--bg); box-shadow: var(--shadow-1);
  display: flex; flex-direction: column;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease);
}
.tier:hover { transform: translateY(-3px); box-shadow: var(--shadow-3); }
.tier .name { font-size: 1.18rem; font-weight: 750; color: var(--primary); letter-spacing: -0.01em; }
.tier .tier-desc { margin: 0.5rem 0 0.9rem; min-height: 3em; font-size: 0.95rem; }
.tier .indicator {
  font-size: 1.55rem; margin: 0 0 1.1rem; color: var(--fg); font-weight: 750;
  letter-spacing: -0.02em; font-variant-numeric: tabular-nums;
}
.tier ul { list-style: none; padding: 0; margin: 0 0 1.4rem; }
.tier li {
  padding: 0.5rem 0 0.5rem 1.6rem; border-bottom: 1px solid var(--border);
  font-size: 0.93rem; color: var(--fg); position: relative;
}
.tier li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.tier li:last-child { border-bottom: 0; }
.tier .btn { margin-top: auto; align-self: stretch; }
.tier.featured {
  border-color: var(--accent); border-width: 2px;
  box-shadow: var(--shadow-3); position: relative;
}
.tier.featured::before {
  content: "Most common"; position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff; font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 0.25rem 0.9rem; border-radius: 99px; white-space: nowrap;
}

/* Pricing — table */
.tier-table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-1);
}
.tier-table th, .tier-table td {
  padding: 1rem 1.15rem; text-align: left; border-bottom: 1px solid var(--border);
  vertical-align: top; font-size: 0.95rem;
}
.tier-table thead th {
  font-size: 1.04rem; color: var(--primary); font-weight: 750;
  background: var(--bg-alt); border-bottom: 2px solid var(--primary);
}
.tier-table .row-indicator td {
  font-size: 1.12rem; color: var(--accent); font-weight: 750;
  font-variant-numeric: tabular-nums;
}
.tier-table tbody tr:last-child th, .tier-table tbody tr:last-child td { border-bottom: 0; }
.tier-table .row-cta { background: var(--bg-alt); }
.tier-table tbody th { color: var(--fg); font-weight: 620; }
@media (max-width: 760px) {
  .tier-table { display: block; overflow-x: auto; }
}

/* Pricing — quote callout */
.quote-callout-box {
  background: var(--bg-alt);
  border: 1px solid color-mix(in srgb, var(--accent) 40%, var(--border));
  border-top: 4px solid var(--accent);
  border-radius: var(--radius); padding: clamp(1.8rem, 4vw, 2.8rem);
  box-shadow: var(--shadow-2);
}
.quote-callout-box h3 { color: var(--primary); font-size: 1.35rem; }
.quote-tiers { margin-top: 1.6rem; }
.quote-tier {
  background: var(--bg); padding: 1.4rem; border: 1px solid var(--border);
  border-radius: var(--radius-sm); box-shadow: var(--shadow-1);
}
.quote-tier .name { font-weight: 750; color: var(--primary); margin-bottom: 0.4rem; font-size: 1.05rem; }
.quote-tier ul.bare li { padding: 0.3rem 0; font-size: 0.88rem; color: var(--fg-muted); }

/* Plan cards */
.plan-cards .plan-card { display: flex; flex-direction: column; }
.plan-card .plan-tag { color: var(--fg-muted); margin: 0 0 0.4rem; font-size: 0.92rem; }
.plan-card .plan-price {
  color: var(--accent); font-weight: 800; font-size: 1.3rem; margin: 0.3rem 0 1rem;
  letter-spacing: -0.02em; font-variant-numeric: tabular-nums;
}
.plan-card ul.plan-includes { list-style: none; padding: 0; margin: 0 0 1.4rem; }
.plan-card ul.plan-includes li {
  padding: 0.45rem 0 0.45rem 1.6rem; border-bottom: 1px solid var(--border);
  font-size: 0.92rem; position: relative; color: var(--fg);
}
.plan-card ul.plan-includes li::before {
  content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 700;
}
.plan-card ul.plan-includes li:last-child { border-bottom: 0; }
.plan-card ul.plan-includes.small li { font-size: 0.85rem; padding: 0.35rem 0 0.35rem 1.5rem; }
.plan-card .btn { margin-top: auto; align-self: stretch; }
.plan-card--shared .plan-head {
  display: grid; grid-template-columns: auto 1fr auto; gap: 1.1rem; align-items: center;
  margin-bottom: 1rem;
}
.plan-card--shared .plan-head .icon { margin-bottom: 0; }
.plan-card--shared .plan-head .plan-price { margin: 0; }
.plan-card--shared h3 { margin-bottom: 0.15rem; }
.plan-card--shared .plan-tag { margin-bottom: 0; }
.addon-card h3 { font-size: 1.06rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: 3.5rem; align-items: start; }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-methods li {
  display: grid; grid-template-columns: 92px 1fr; gap: 0.8rem;
  padding: 0.65rem 0; border-bottom: 1px dashed var(--border); align-items: baseline;
}
.contact-methods li:last-child { border-bottom: 0; }
.contact-methods .lbl {
  color: var(--fg-muted); font-size: 0.8rem; text-transform: uppercase;
  letter-spacing: 0.08em; font-weight: 700;
}
.contact-methods .val { color: var(--fg); font-size: 0.97rem; }
.contact-form-side {
  background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: var(--radius); padding: clamp(1.6rem, 3.5vw, 2.4rem);
  box-shadow: var(--shadow-1);
}
form.contact-form { display: grid; gap: 1rem; }
form.contact-form label {
  font-weight: 620; font-size: 0.9rem; color: var(--fg);
  display: grid; gap: 0.4rem;
}
form.contact-form input, form.contact-form textarea, form.contact-form select {
  font: inherit; font-size: 0.97rem; padding: 0.75rem 0.9rem;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  background: var(--bg); color: var(--fg);
  transition: border-color 0.18s var(--ease), box-shadow 0.18s var(--ease);
}
form.contact-form input:focus, form.contact-form textarea:focus, form.contact-form select:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 18%, transparent);
}
form.contact-form textarea { min-height: 130px; resize: vertical; }
form.contact-form .btn { justify-self: start; padding: 0.85rem 2rem; }

.service-area-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.7rem;
  list-style: none; padding: 0; margin: 1.2rem 0 0;
}
.service-area-grid li {
  padding: 0.7rem 1rem; background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-sm); font-size: 0.93rem; color: var(--fg);
  display: flex; align-items: center; gap: 0.55rem;
}
.service-area-grid li::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent); flex: none;
}
@media (max-width: 600px) { .service-area-grid { grid-template-columns: 1fr 1fr; } }

/* ---------- Dividers ---------- */
.divider { display: block; width: 100%; height: 60px; color: var(--accent); margin: 0; }

/* ---------- Footer ---------- */
footer.site-footer {
  background: var(--bg-alt); border-top: 1px solid var(--border);
  padding: clamp(2.5rem, 5vw, 4rem) 0 2rem; color: var(--fg-muted);
}
footer .columns { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; }
@media (max-width: 800px) { footer .columns { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { footer .columns { grid-template-columns: 1fr; } }
footer h4 {
  font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.09em;
  color: var(--fg); margin-bottom: 1em;
}
footer ul { list-style: none; padding: 0; }
footer li { padding: 0.3rem 0; }
footer a { color: var(--fg-muted); }
footer a:hover { color: var(--accent); }
footer address { line-height: 1.7; font-size: 0.94rem; }
footer .legal {
  margin-top: 2.5rem; padding-top: 1.2rem; border-top: 1px solid var(--border);
  font-size: 0.84rem;
}
footer .brand-mark { margin-right: 0.1rem; }
footer .brand { display: inline-flex; align-items: center; gap: 0.5rem; color: inherit; font-size: 1.08rem; font-weight: 750; margin-bottom: 0.8rem; }

footer.foot-stacked-band { padding: 0; background: transparent; border-top: 0; }
.footer-band {
  background: linear-gradient(120deg, var(--primary), color-mix(in srgb, var(--primary) 70%, #000));
  color: rgba(255, 255, 255, 0.92);
  padding: clamp(2.6rem, 5vw, 3.6rem) 0; text-align: center;
}
.footer-band h3 { color: #fff; font-size: 1.55rem; margin-bottom: 0.4em; }
.footer-band .footer-about { color: rgba(255, 255, 255, 0.82); max-width: 58ch; margin: 0 auto 1.3rem; }
.footer-band .footer-nap { font-size: 0.93rem; color: rgba(255, 255, 255, 0.78); }
.footer-band a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.footer-rule { background: var(--bg-alt); padding: 1.3rem 0; border-top: 1px solid var(--border); }
.footer-rule .wrap { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-rule .footer-links { display: flex; gap: 1.6rem; list-style: none; padding: 0; margin: 0; font-size: 0.9rem; }
.footer-rule .legal { margin: 0; padding: 0; border: 0; font-size: 0.84rem; }

footer.foot-minimal { background: var(--bg-alt); padding: 1.6rem 0; border-top: 1px solid var(--border); }
.footer-minimal { display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: space-between; align-items: center; }
.footer-minimal .footer-links { list-style: none; padding: 0; margin: 0; display: flex; gap: 1.3rem; font-size: 0.9rem; }
.footer-minimal .legal { margin: 0; padding: 0; border: 0; font-size: 0.84rem; }
.footer-minimal .left { font-size: 0.92rem; }

/* ---------- 404 ---------- */
.notfound { text-align: center; padding: clamp(4rem, 9vw, 7rem) 0; }
.notfound h1 {
  font-size: clamp(4.5rem, 11vw, 7rem); margin-bottom: 0.1em;
  background: linear-gradient(120deg, var(--primary), var(--accent));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.notfound h2 { font-size: 1.5rem; }
.notfound p { max-width: 48ch; margin-left: auto; margin-right: auto; }
.notfound-illo { max-width: 300px; margin: 0 auto 0.5rem; opacity: 0.55; color: var(--accent); }

/* ---------- Stats (legacy block) ---------- */
.stats { display: flex; flex-wrap: wrap; gap: 2rem; margin-top: 1.5rem; }
.stats .stat { min-width: 140px; }
.stats .stat .num { font-size: 1.8rem; font-weight: 800; color: var(--primary); display: block; }
.stats .stat .label { color: var(--fg-muted); font-size: 0.92rem; }

/* ---------- Scroll reveal (progressive enhancement; JS adds .in) ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
  .reveal.in { opacity: 1; transform: none; }
}

