/* ==========================================================================
   BRANTLEY & SONS PLUMBERS LLC — GLOBAL STYLESHEET
   Design direction: "Field Schematic" — blueprint-paper base, ink-navy text,
   aged-copper accents, safety-red reserved for call actions only.
   Signature motifs: pressure-gauge stat dials, pipe-route section dividers.
   ========================================================================== */

/* ---------- DESIGN TOKENS ---------- */
:root {
  /* Color */
  --ink: #12212E;            /* primary text, dark bands */
  --ink-soft: #2E4356;       /* secondary text on light */
  --paper: #F1F4F3;          /* page background */
  --paper-alt: #E4E9E7;      /* card / alt section background */
  --paper-white: #FFFFFF;
  --copper: #B5713C;         /* accent — dividers, icons, borders */
  --copper-dark: #8C5525;
  --copper-light: #D9A876;
  --teal: #1D6B6B;           /* secondary accent — links, water motif */
  --teal-dark: #123F3F;
  --urgent: #C81E3A;         /* safety-red — call actions ONLY */
  --urgent-dark: #9A1329;
  --urgent-light: #E8536B;
  --line: #C9D2CE;           /* hairline / joint-dot color on light */
  --line-dark: #3A5164;      /* hairline on dark ink bands */

  /* Type */
  --font-display: 'Zilla Slab', Georgia, 'Times New Roman', serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-mono: ui-monospace, 'SF Mono', Menlo, Consolas, 'Liberation Mono', monospace;

  --fs-h1: clamp(2rem, 5.5vw, 3.4rem);
  --fs-h2: clamp(1.5rem, 3.6vw, 2.35rem);
  --fs-h3: clamp(1.15rem, 2.4vw, 1.5rem);
  --fs-lead: clamp(1.05rem, 2vw, 1.25rem);
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --fs-gauge: clamp(1.6rem, 4vw, 2.1rem);

  /* Spacing scale */
  --sp-1: 0.5rem;
  --sp-2: 0.75rem;
  --sp-3: 1rem;
  --sp-4: 1.5rem;
  --sp-5: 2rem;
  --sp-6: 3rem;
  --sp-7: 4.5rem;
  --sp-8: 6rem;

  /* Layout */
  --container: 1180px;
  --radius-s: 4px;
  --radius-m: 8px;
  --radius-l: 14px;
  --shadow-card: 0 2px 10px rgba(18, 33, 46, 0.08);
  --shadow-lift: 0 10px 30px rgba(18, 33, 46, 0.16);

  --header-h: 72px;
  --sticky-cta-h: 60px;
}

/* ---------- RESET / BASE ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-bottom: var(--sticky-cta-h);
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--teal); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 var(--sp-3);
  font-weight: 700;
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
p { margin: 0 0 var(--sp-3); }
ul, ol { padding-left: 1.25rem; }
li { margin-bottom: var(--sp-2); }
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--sp-4); }
section { padding: var(--sp-7) 0; }
.section-alt { background: var(--paper-alt); }
.section-ink { background: var(--ink); color: var(--paper); }
.section-ink h2, .section-ink h3 { color: var(--paper-white); }
.section-ink p { color: #C7D3D9; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
:focus-visible { outline: 3px solid var(--copper); outline-offset: 2px; }

/* ---------- EYEBROW / LABELS ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-family: var(--font-mono);
  font-size: var(--fs-small);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--copper-dark);
  margin-bottom: var(--sp-2);
}
.section-ink .eyebrow { color: var(--copper-light); }
.eyebrow::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--copper); display: inline-block; }

/* ---------- PIPE-ROUTE DIVIDER (signature motif) ---------- */
.pipe-divider {
  width: 100%;
  height: 28px;
  margin: 0 auto var(--sp-6);
  display: block;
}
.pipe-divider path { fill: none; stroke: var(--line); stroke-width: 2; }
.pipe-divider circle { fill: var(--paper); stroke: var(--copper); stroke-width: 2; }
.section-ink .pipe-divider path { stroke: var(--line-dark); }
.section-ink .pipe-divider circle { fill: var(--ink); stroke: var(--copper-light); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.9rem 1.6rem;
  border-radius: var(--radius-m);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  text-decoration: none;
  line-height: 1.2;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-call {
  background: var(--urgent);
  color: #fff;
  box-shadow: 0 6px 18px rgba(200, 30, 58, 0.35);
  position: relative;
}
.btn-call:hover { background: var(--urgent-dark); box-shadow: 0 8px 22px rgba(200, 30, 58, 0.45); }
.btn-call .num { font-family: var(--font-mono); letter-spacing: 0.02em; }
.btn-outline {
  background: transparent;
  border-color: var(--copper);
  color: var(--ink);
}
.section-ink .btn-outline { border-color: var(--copper-light); color: var(--paper-white); }
.btn-outline:hover { background: var(--copper); color: #fff; }
.btn-lg { padding: 1.1rem 2rem; font-size: 1.1rem; }

@keyframes pulseRing {
  0% { box-shadow: 0 0 0 0 rgba(200, 30, 58, 0.55); }
  70% { box-shadow: 0 0 0 14px rgba(200, 30, 58, 0); }
  100% { box-shadow: 0 0 0 0 rgba(200, 30, 58, 0); }
}
.btn-call.pulse { animation: pulseRing 2.4s infinite; }

/* ---------- BADGE ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  background: var(--ink);
  color: var(--paper-white);
  font-family: var(--font-mono);
  font-size: var(--fs-small);
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--copper);
}
.badge::before { content: "●"; color: #5FBF6C; font-size: 0.6em; }

/* ---------- HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper-white);
  border-bottom: 1px solid var(--line);
  height: var(--header-h);
}
.site-header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink);
}
.brand .brand-mark { color: var(--copper); font-size: 1.4rem; line-height: 1; }
.brand small { display: block; font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.05em; color: var(--ink-soft); font-weight: 400; }
.main-nav { display: none; }
.main-nav ul { display: flex; list-style: none; padding: 0; margin: 0; gap: var(--sp-5); }
.main-nav > ul > li { position: relative; }
.main-nav a { color: var(--ink); font-weight: 600; font-size: 0.95rem; }
.main-nav a:hover { color: var(--teal); }
.main-nav .has-dropdown > a::after { content: "\25BE"; font-size: 0.65em; margin-left: 0.3em; color: var(--copper); }
.main-nav .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--paper-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-lift);
  min-width: 270px;
  padding: 0.5rem 0;
  z-index: 60;
  list-style: none;
  margin: var(--sp-2) 0 0;
  gap: 0;
}
.main-nav .has-dropdown:hover .dropdown,
.main-nav .has-dropdown:focus-within .dropdown { display: block; }
.main-nav .dropdown li { margin: 0; }
.main-nav .dropdown a {
  display: block;
  padding: 0.6rem 1rem;
  font-weight: 500;
  font-size: 0.88rem;
  white-space: nowrap;
}
.main-nav .dropdown a::after { content: none; }
.main-nav .dropdown a:hover { background: var(--paper-alt); color: var(--teal); }
.header-call { display: none; }
.nav-toggle {
  background: none;
  border: 2px solid var(--ink);
  border-radius: var(--radius-s);
  width: 42px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 20px; height: 2px; background: var(--ink); position: relative;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }
.mobile-nav {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--paper-white);
  z-index: 49;
  overflow-y: auto;
  padding: var(--sp-5) var(--sp-4);
}
.mobile-nav.open { display: block; }
.mobile-nav ul { list-style: none; padding: 0; margin: 0; }
.mobile-nav li { border-bottom: 1px solid var(--line); }
.mobile-nav a { display: block; padding: var(--sp-3) 0; font-weight: 600; color: var(--ink); font-size: 1.05rem; }
.mobile-nav .btn-call { width: 100%; margin-top: var(--sp-4); }

@media (min-width: 900px) {
  .main-nav { display: block; }
  .header-call { display: inline-flex; }
  .nav-toggle { display: none; }
  .mobile-nav { display: none !important; }
}

/* ---------- STICKY MOBILE CTA BAR ---------- */
.sticky-cta-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: var(--sticky-cta-h);
  background: var(--urgent);
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.2);
}
.sticky-cta-bar a {
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  width: 100%;
  height: 100%;
  justify-content: center;
}
.sticky-cta-bar .num { font-family: var(--font-mono); }
@media (min-width: 900px) {
  .sticky-cta-bar { display: none; }
  body { padding-bottom: 0; }
}

/* ---------- HERO ---------- */
.hero {
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-alt) 100%);
  padding: var(--sp-7) 0 var(--sp-6);
  position: relative;
  overflow: hidden;
}
.hero-grid { display: grid; gap: var(--sp-6); align-items: center; }
.hero-copy .badge { margin-bottom: var(--sp-3); }
.hero h1 { margin-bottom: var(--sp-3); }
.hero .lead { font-size: var(--fs-lead); color: var(--ink-soft); margin-bottom: var(--sp-4); max-width: 46ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-bottom: var(--sp-4); }
.hero-meta { display: flex; flex-wrap: wrap; gap: var(--sp-4); font-size: var(--fs-small); color: var(--ink-soft); }
.hero-meta strong { color: var(--ink); font-family: var(--font-mono); }
.hero-media { border-radius: var(--radius-l); overflow: hidden; box-shadow: var(--shadow-lift); border: 6px solid var(--paper-white); }
@media (min-width: 860px) {
  .hero-grid { grid-template-columns: 1.1fr 0.9fr; }
}

/* ---------- ANSWER-FIRST / AIO BLOCK ---------- */
.answer-block {
  background: var(--paper-white);
  border-left: 5px solid var(--copper);
  border-radius: var(--radius-m);
  padding: var(--sp-4) var(--sp-5);
  box-shadow: var(--shadow-card);
  margin: calc(-1 * var(--sp-6)) auto var(--sp-6);
  max-width: var(--container);
  position: relative;
  z-index: 2;
}
.answer-block .eyebrow { color: var(--teal); }
.answer-block .eyebrow::before { background: var(--teal); }
.answer-block p:last-child { margin-bottom: 0; }
@media (max-width: 640px) { .answer-block { margin-top: var(--sp-5); } }

/* ---------- CTA BANDS (Hormozi) ---------- */
.cta-band {
  border-radius: var(--radius-l);
  padding: var(--sp-5);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
}
.cta-band.hook {
  background: var(--paper-white);
  border: 2px solid var(--copper);
}
.cta-band.close {
  background: var(--ink);
  color: var(--paper-white);
}
.cta-band.close .eyebrow { color: var(--copper-light); }
.cta-band p { margin: 0; max-width: 60ch; font-size: 1.05rem; }
.cta-band.close p { color: #DCE5E3; }
.cta-band .btn { flex-shrink: 0; }

/* ---------- GAUGE STATS (signature element) ---------- */
.gauge-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-5);
}
@media (min-width: 720px) { .gauge-row { grid-template-columns: repeat(4, 1fr); } }
.gauge {
  text-align: center;
}
.gauge svg { width: 92px; height: 92px; margin: 0 auto var(--sp-2); }
.gauge .dial-track { fill: none; stroke: var(--line-dark); stroke-width: 8; }
.gauge .dial-fill { fill: none; stroke: var(--copper); stroke-width: 8; stroke-linecap: round; transition: stroke-dashoffset 1.4s ease; }
.gauge .dial-value { font-family: var(--font-mono); font-size: 1.1rem; fill: var(--paper-white); font-weight: 700; }
.gauge .gauge-label { font-size: var(--fs-small); color: #C7D3D9; letter-spacing: 0.02em; }

/* ---------- CARD GRIDS ---------- */
.card-grid { display: grid; gap: var(--sp-4); grid-template-columns: 1fr; }
@media (min-width: 640px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); } .card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: var(--paper-white);
  border-radius: var(--radius-m);
  padding: var(--sp-4);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--line);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.card h3 { font-size: 1.15rem; margin-bottom: var(--sp-2); }
.card p { color: var(--ink-soft); font-size: 0.95rem; flex-grow: 1; }
.card .card-link { font-weight: 700; margin-top: var(--sp-2); display: inline-block; }
.card .card-icon { color: var(--copper); font-size: 1.6rem; margin-bottom: var(--sp-2); }

/* ---------- WHY CHOOSE / FEATURE LIST ---------- */
.feature-list { list-style: none; padding: 0; display: grid; gap: var(--sp-4); grid-template-columns: 1fr; }
@media (min-width: 720px) { .feature-list { grid-template-columns: repeat(2, 1fr); } }
.feature-list li {
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
  margin-bottom: 0;
}
.feature-list .icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--copper);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-weight: 700;
}

/* ---------- FAQ ACCORDION ---------- */
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: var(--sp-4) 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-3);
}
.faq-question .plus { font-family: var(--font-mono); font-size: 1.3rem; color: var(--copper); transition: transform 0.2s ease; flex-shrink: 0; }
.faq-question[aria-expanded="true"] .plus { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer p { padding-bottom: var(--sp-4); color: var(--ink-soft); }

/* ---------- SERVICE AREA LIST ---------- */
.area-list { display: flex; flex-wrap: wrap; gap: var(--sp-2); list-style: none; padding: 0; }
.area-list a {
  display: inline-block;
  background: var(--paper-white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
}
.area-list a:hover { border-color: var(--copper); color: var(--copper-dark); text-decoration: none; }

/* ---------- BREADCRUMBS ---------- */
.breadcrumbs { padding: var(--sp-3) 0; font-size: var(--fs-small); }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 0.4rem; padding: 0; margin: 0; }
.breadcrumbs li:not(:last-child)::after { content: "/"; margin-left: 0.4rem; color: var(--copper); }
.breadcrumbs a { color: var(--ink-soft); }
.breadcrumbs [aria-current="page"] { color: var(--ink); font-weight: 600; }

/* ---------- FOOTER ---------- */
.site-footer { background: var(--ink); color: #C7D3D9; padding: var(--sp-7) 0 var(--sp-5); }
.footer-grid { display: grid; gap: var(--sp-5); grid-template-columns: 1fr; margin-bottom: var(--sp-6); }
@media (min-width: 780px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr 1fr; } }
.footer-grid h4 { color: var(--paper-white); font-size: 1rem; margin-bottom: var(--sp-3); }
.footer-grid ul { list-style: none; padding: 0; }
.footer-grid a { color: #A9BAC3; }
.footer-grid a:hover { color: var(--copper-light); }
.footer-brand .brand { color: var(--paper-white); }
.footer-brand .brand small { color: #8FA3AD; }
.footer-nap { margin-top: var(--sp-3); font-size: 0.9rem; }
.footer-bottom { border-top: 1px solid var(--line-dark); padding-top: var(--sp-4); font-size: var(--fs-small); display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--sp-2); color: #8FA3AD; }
.footer-map { margin-bottom: var(--sp-5); border-radius: var(--radius-m); overflow: hidden; border: 1px solid var(--line-dark); }
.footer-map iframe { display: block; width: 100%; height: 320px; }

/* ---------- SCROLL REVEAL ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- TECH PANEL (hero dispatch-status readout) ---------- */
.tech-panel { background: var(--ink); border-radius: var(--radius-l); padding: var(--sp-5); color: var(--paper-white); max-width: 520px; }
.hero-media .tech-panel, .hero-media .manifest-panel, .hero-media .coverage-panel { max-width: none; }
.tech-panel .tp-eyebrow { display: flex; align-items: center; gap: 0.5em; font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--copper-light); margin-bottom: var(--sp-4); }
.tech-panel .tp-eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: #5FBF6C; display: inline-block; }
.tech-panel .tp-eyebrow .dot.pulse { animation: pulseDot 1.8s infinite; }
@keyframes pulseDot { 0% { box-shadow: 0 0 0 0 rgba(95,191,108,.6); } 70% { box-shadow: 0 0 0 8px rgba(95,191,108,0); } 100% { box-shadow: 0 0 0 0 rgba(95,191,108,0); } }
.tech-panel .tp-readout { font-family: var(--font-mono); font-size: clamp(2.2rem, 6vw, 3rem); font-weight: 700; color: var(--paper-white); line-height: 1; }
.tech-panel .tp-readout-label { font-size: 0.8rem; color: #A9BAC3; margin-top: 0.35rem; }
.tech-panel .tp-divider { height: 1px; background: var(--line-dark); margin: var(--sp-4) 0; position: relative; }
.tech-panel .tp-divider::before, .tech-panel .tp-divider::after { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--copper); position: absolute; top: 50%; transform: translateY(-50%); }
.tech-panel .tp-divider::before { left: 20%; }
.tech-panel .tp-divider::after { left: 80%; }
.tech-panel .tp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-3); }
.tech-panel .tp-stat { text-align: center; }
.tech-panel .tp-stat strong { display: block; font-family: var(--font-mono); color: var(--paper-white); font-size: 1rem; }
.tech-panel .tp-stat span { font-size: 0.72rem; color: #A9BAC3; }

/* ---------- MANIFEST PANEL (equipment list, replaces toolkit illustration) ---------- */
.manifest-panel { background: var(--paper-white); border: 1px solid var(--line); border-radius: var(--radius-l); padding: var(--sp-5); box-shadow: var(--shadow-card); max-width: 520px; }
.manifest-panel .mp-eyebrow { font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--copper-dark); margin-bottom: var(--sp-4); display: block; border-bottom: 1px dashed var(--line); padding-bottom: var(--sp-3); }
.manifest-panel ul { list-style: none; padding: 0; margin: 0; }
.manifest-panel li { display: flex; align-items: flex-start; gap: 0.75rem; padding: 0.6rem 0; border-bottom: 1px dotted var(--line); }
.manifest-panel li:last-child { border-bottom: none; }
.manifest-panel .mp-icon { width: 10px; height: 10px; background: var(--copper); flex-shrink: 0; margin-top: 0.4rem; transform: rotate(45deg); }
.manifest-panel .mp-name { font-weight: 700; font-size: 0.92rem; display: block; }
.manifest-panel .mp-spec { font-family: var(--font-mono); font-size: 0.78rem; color: var(--ink-soft); display: block; }

/* ---------- COVERAGE PANEL (service-area index, replaces map illustration) ---------- */
.coverage-panel { background: var(--ink); border-radius: var(--radius-l); padding: var(--sp-5); color: var(--paper-white); max-width: 520px; }
.coverage-panel .cp-eyebrow { font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--copper-light); margin-bottom: var(--sp-4); display: block; }
.coverage-panel .cp-hub { font-family: var(--font-display); font-size: 1.3rem; color: var(--paper-white); margin-bottom: var(--sp-3); padding-bottom: var(--sp-3); border-bottom: 1px solid var(--line-dark); }
.coverage-panel .cp-hub small { display: block; font-family: var(--font-mono); font-size: 0.7rem; color: #8FA3AD; font-weight: 400; }
.coverage-panel ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.6rem; }
.coverage-panel li { display: flex; justify-content: space-between; align-items: center; font-size: 0.9rem; padding: 0.4rem 0; border-bottom: 1px dotted var(--line-dark); }
.coverage-panel li:last-child { border-bottom: none; }
.coverage-panel .cp-tag { font-family: var(--font-mono); font-size: 0.7rem; color: var(--copper-light); background: rgba(181,113,60,0.15); padding: 0.15rem 0.5rem; border-radius: 999px; }

/* ---------- UTILITIES ---------- */
.text-center { text-align: center; }
.max-prose { max-width: 68ch; }
.mt-0 { margin-top: 0; }
.section-head { max-width: 62ch; margin-bottom: var(--sp-5); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
