/* =============================================================
   Arlington Water Restoration — Shared Stylesheet
   Design language adapted from a Bootstrap-based contractor theme
   (sticky header, video/image hero with overlay + "jumbo" H1,
   bold condensed headings, pill buttons, card grids, dark navy
   footer). All brand values live in the tokens below so the whole
   site can be re-skinned by editing only :root.
   ============================================================= */

/* ---------- 1. DESIGN TOKENS ---------- */
:root {
  /* Brand palette — blue + navy forward, matching the reference screenshot.
     (Reference CTA buttons, service-area map, and accents are all blue.)
     For an "emergency orange" CTA instead, set --color-accent:#F2882A;
     --color-accent-dark:#D9741A; — nothing else needs to change. */
  --color-navy:          #0B2A4A;   /* darkest — footer, dark sections */
  --color-navy-2:        #10395F;   /* dark surface variant */
  --color-primary:       #0E6BB2;   /* primary blue — links, nav, buttons */
  --color-primary-dark:  #0A4F86;   /* hover/pressed blue */
  --color-primary-darker:#083D68;
  --color-cyan:          #16A3C7;   /* lighter highlight — accent heading word */
  --color-accent:        #1585E0;   /* brighter azure — CTA / call buttons */
  --color-accent-dark:   #0F6BB8;

  /* Neutrals */
  --color-ink:      #14202B;        /* headings / near-black text */
  --color-body:     #3F4A56;        /* body copy */
  --color-muted:    #6B7683;        /* secondary text */
  --color-line:     #E2E8EF;        /* borders / dividers */
  --color-surface:  #F4F8FC;        /* light tinted section bg */
  --color-surface-2:#EAF2F9;        /* alt tinted bg */
  --color-white:    #FFFFFF;
  --color-success:  #1E8E5A;

  /* RGB helpers (for translucent overlays) */
  --navy-rgb: 11, 42, 74;
  --primary-rgb: 14, 107, 178;

  /* Typography — Poppins (bold, normal-width display) + Inter body,
     matching the reference's clean geometric headings. */
  --font-display: "Poppins", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --fs-jumbo:  clamp(2.5rem, 6vw, 4.75rem);
  --fs-h1:     clamp(2rem, 4.5vw, 3.25rem);
  --fs-h2:     clamp(1.65rem, 3.5vw, 2.5rem);
  --fs-h3:     clamp(1.25rem, 2vw, 1.6rem);
  --fs-h4:     1.15rem;
  --fs-body:   1.0625rem;
  --fs-small:  0.9375rem;
  --lh-tight:  1.08;
  --lh-snug:   1.3;
  --lh-body:   1.65;

  /* Spacing scale (4px base) */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;
  --section-y: clamp(3.5rem, 8vw, 7rem);

  /* Radius, shadow, layout */
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --btn-radius: 999px;              /* pill buttons, per reference */
  --shadow-sm: 0 2px 8px rgba(11, 42, 74, 0.06);
  --shadow: 0 12px 30px rgba(11, 42, 74, 0.10);
  --shadow-lg: 0 24px 60px rgba(11, 42, 74, 0.16);
  --container: 1200px;
  --container-narrow: 820px;
  --header-h: 84px;
  --transition: 0.25s ease;
}

/* ---------- 2. RESET / BASE ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--color-body);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, picture, video, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--color-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-primary-dark); }
ul, ol { padding-left: 1.25rem; }
strong { color: var(--color-ink); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--color-ink);
  line-height: var(--lh-tight);
  font-weight: 700;
  letter-spacing: -0.015em;
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); line-height: var(--lh-snug); }
h4 { font-size: var(--fs-h4); font-family: var(--font-body); font-weight: 700; }
p { margin-bottom: var(--space-4); }
p:last-child { margin-bottom: 0; }

/* ---------- 3. LAYOUT HELPERS ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}
.container--narrow { max-width: var(--container-narrow); }
.section { padding-block: var(--section-y); }
.section--tint { background: var(--color-surface); }
.section--tint2 { background: var(--color-surface-2); }
.section--navy { background: var(--color-navy); color: #cfe0f0; }
.section--navy h2, .section--navy h3 { color: #fff; }
.text-center { text-align: center; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}
.section--navy .eyebrow { color: var(--color-cyan); }
.section--navy .lead, .section--navy p { color: #cfe0f0; }
.section-head { max-width: 760px; margin-bottom: var(--space-7); }
.section-head.text-center { margin-inline: auto; }
.lead { font-size: 1.15rem; color: var(--color-muted); }

/* Big bold display heading utility (Title Case, per reference) */
.jumbo {
  font-family: var(--font-display);
  font-size: var(--fs-jumbo);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.025em;
}
.jumbo span { color: var(--color-cyan); }

/* ---------- 4. 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;
  line-height: 1;
  padding: 0.95rem 1.75rem;
  border-radius: var(--btn-radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  white-space: nowrap;
}
.btn--primary { background: var(--color-primary); color: #fff; }
.btn--primary:hover { background: var(--color-primary-dark); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--accent { background: var(--color-accent); color: #fff; }
.btn--accent:hover { background: var(--color-accent-dark); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.6); }
.btn--ghost:hover { background: #fff; color: var(--color-navy); border-color: #fff; }
.btn--outline { background: transparent; color: var(--color-primary); border-color: var(--color-primary); }
.btn--outline:hover { background: var(--color-primary); color: #fff; }
.btn--call { background: var(--color-accent); color: #fff; }
.btn--call:hover { background: var(--color-accent-dark); color: #fff; }
.btn--lg { padding: 1.1rem 2.25rem; font-size: 1.0625rem; }
.btn--block { width: 100%; }

/* ---------- 5. HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--color-line);
}
.site-header__bar { display: none; }
@media (min-width: 992px) {
  .site-header__bar {
    display: block;
    background: var(--color-navy);
    color: #cfe0f0;
    font-size: 0.85rem;
  }
  .site-header__bar .container { display: flex; justify-content: space-between; align-items: center; min-height: 40px; }
  .site-header__bar a { color: #cfe0f0; }
  .site-header__bar a:hover { color: #fff; }
  .site-header__bar .bar-trust span { margin-right: 1.25rem; }
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--header-h);
}
.brand { display: flex; align-items: center; gap: 0.65rem; font-family: var(--font-display); font-weight: 800; letter-spacing: -0.02em; color: var(--color-navy); line-height: 1.05; }
.brand:hover { color: var(--color-navy); }
.brand__mark {
  height: 52px; width: auto; flex: none;
  object-fit: contain;
}
.site-header .brand__mark { height: 58px; }
.brand__text { display: flex; flex-direction: column; }
.brand__text b { font-size: 1.25rem; letter-spacing: 0.02em; }
.brand__text small { font-family: var(--font-body); font-weight: 600; font-size: 0.62rem; letter-spacing: 0.18em; color: var(--color-muted); text-transform: uppercase; }

.main-nav { display: none; }
@media (min-width: 992px) {
  .main-nav { display: block; }
  .main-nav ul { display: flex; align-items: center; gap: 1.5rem; list-style: none; margin: 0; padding: 0; }
  .main-nav a { font-family: var(--font-body); font-weight: 600; color: var(--color-ink); font-size: 0.98rem; }
  .main-nav a:hover { color: var(--color-primary); }
  .main-nav .has-sub { position: relative; }
  .main-nav .sub-menu {
    position: absolute; top: 100%; left: 0; min-width: 250px;
    background: #fff; box-shadow: var(--shadow); border-radius: var(--radius-sm);
    border: 1px solid var(--color-line);
    padding: 0.5rem; list-style: none; margin: 0.5rem 0 0;
    display: flex; flex-direction: column; gap: 0;
    opacity: 0; visibility: hidden; transform: translateY(8px);
    transition: all var(--transition);
  }
  .main-nav .has-sub:hover .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
  .main-nav .sub-menu a { display: block; padding: 0.55rem 0.75rem; border-radius: var(--radius-sm); font-weight: 500; }
  .main-nav .sub-menu a:hover { background: var(--color-surface); }
}
.header-actions { display: flex; align-items: center; gap: 0.75rem; }
.header-actions .btn--call { display: none; }
@media (min-width: 992px) { .header-actions .btn--call { display: inline-flex; } }

/* Mobile nav toggle */
.nav-toggle {
  display: inline-flex; flex-direction: column; gap: 5px;
  background: none; border: 0; cursor: pointer; padding: 8px;
}
.nav-toggle span { width: 26px; height: 3px; background: var(--color-navy); border-radius: 2px; transition: var(--transition); }
@media (min-width: 992px) { .nav-toggle { display: none; } }

/* Mobile menu (CSS-only via :target) */
.mobile-menu {
  position: fixed; inset: 0 0 0 auto; width: min(88vw, 360px);
  background: #fff; z-index: 200; padding: 1.5rem;
  transform: translateX(100%); transition: transform 0.3s ease;
  box-shadow: var(--shadow-lg); overflow-y: auto;
}
.mobile-menu:target { transform: translateX(0); }
.mobile-menu__close { display: flex; justify-content: flex-end; }
.mobile-menu__close a { font-size: 2rem; color: var(--color-navy); line-height: 1; }
.mobile-menu nav ul { list-style: none; padding: 0; margin: 1rem 0; }
.mobile-menu nav > ul > li { border-bottom: 1px solid var(--color-line); }
.mobile-menu nav a { display: block; padding: 0.85rem 0; font-family: var(--font-body); font-weight: 600; color: var(--color-ink); }
.mobile-menu nav .sub-menu { margin: 0 0 0.5rem; }
.mobile-menu nav .sub-menu a { padding: 0.45rem 0 0.45rem 1rem; font-weight: 500; color: var(--color-muted); }
.mobile-menu .btn { margin-top: 1rem; }
.mobile-only-call { display: inline-flex; }
@media (min-width: 992px) { .mobile-only-call { display: none; } }

/* ---------- 6. HERO ---------- */
.hero {
  position: relative;
  color: #fff;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-2) 52%, var(--color-primary-dark) 100%);
}
/* Faint diagonal line motif echoing the reference's banner graphics */
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image: repeating-linear-gradient(115deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 46px);
}
.hero::after {
  content: ""; position: absolute; z-index: 1; pointer-events: none;
  width: 640px; height: 640px; right: -180px; top: -220px; border-radius: 50%;
  background: radial-gradient(circle, rgba(22,163,199,0.25), transparent 62%);
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img, .hero__media video { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(120deg, rgba(var(--navy-rgb), 0.92) 0%, rgba(var(--navy-rgb), 0.78) 45%, rgba(10, 79, 134, 0.55) 100%);
}
.hero .container { position: relative; z-index: 2; }
.hero__grid {
  display: grid; gap: 2.5rem; align-items: center;
  padding-block: clamp(3rem, 7vw, 6rem);
}
@media (min-width: 992px) { .hero__grid { grid-template-columns: 1.15fr 0.85fr; } }
.hero h1 { color: #fff; margin-bottom: 1.25rem; }
.hero__sub { font-size: 1.2rem; color: #d7e6f5; max-width: 44ch; margin-bottom: 1.75rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.85rem; align-items: center; }
.hero__phone { font-family: var(--font-display); font-weight: 700; font-size: 1.35rem; color: #fff; }
.hero__phone span { display: block; font-family: var(--font-body); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-cyan); }

/* ---------- 7. QUOTE FORM CARD ---------- */
.quote-card {
  background: #fff; color: var(--color-body);
  border-radius: var(--radius-lg); padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: var(--shadow-lg);
}
.quote-card h2, .quote-card h3 { font-size: 1.5rem; margin-bottom: 0.35rem; }
.quote-card p.small { color: var(--color-muted); font-size: var(--fs-small); margin-bottom: 1.25rem; }
.form-field { margin-bottom: 0.9rem; }
.form-field label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--color-ink); margin-bottom: 0.35rem; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--color-ink);
  padding: 0.8rem 0.95rem; border: 1.5px solid var(--color-line);
  border-radius: var(--radius-sm); background: var(--color-surface);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.15); background: #fff;
}
.form-field textarea { min-height: 110px; resize: vertical; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-note { font-size: 0.8rem; color: var(--color-muted); margin-top: 0.75rem; }

/* ---------- 8. TRUST STRIP ---------- */
.trust-strip { background: var(--color-primary); color: #fff; }
.trust-strip .container { display: grid; gap: 1rem; grid-template-columns: 1fr; padding-block: 1.25rem; }
@media (min-width: 768px) { .trust-strip .container { grid-template-columns: repeat(3, 1fr); } }
.trust-strip__item { display: flex; align-items: center; justify-content: center; gap: 0.6rem; font-weight: 700; font-family: var(--font-body); text-align: center; }
.trust-strip__item .ico { font-size: 1.4rem; }

/* ---------- 9. CARDS / GRIDS ---------- */
.grid { display: grid; gap: 1.5rem; }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid--2 { grid-template-columns: repeat(2, 1fr); } .grid--3 { grid-template-columns: repeat(2, 1fr); } .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .grid--3 { grid-template-columns: repeat(3, 1fr); } .grid--4 { grid-template-columns: repeat(4, 1fr); } }

.card {
  background: #fff; border: 1px solid var(--color-line);
  border-radius: var(--radius); padding: 1.75rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  height: 100%;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.card__icon {
  width: 56px; height: 56px; border-radius: 12px; display: grid; place-items: center;
  background: var(--color-surface-2); color: var(--color-primary); font-size: 1.6rem; margin-bottom: 1rem;
}
.card h3 { margin-bottom: 0.5rem; }
.card p { color: var(--color-muted); font-size: var(--fs-small); }
.card__link { display: inline-flex; align-items: center; gap: 0.35rem; margin-top: 1rem; font-weight: 700; font-size: 0.95rem; }
.card__link::after { content: "→"; transition: transform var(--transition); }
.card:hover .card__link::after { transform: translateX(4px); }

/* Service card (with image placeholder) */
.service-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.service-card .img-ph { border-radius: 0; aspect-ratio: 16/10; }
.service-card__body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.service-card__body .card__link { margin-top: auto; }

/* Image placeholders */
.img-ph {
  display: flex; align-items: center; justify-content: center; text-align: center;
  background: repeating-linear-gradient(45deg, var(--color-surface-2), var(--color-surface-2) 12px, var(--color-surface) 12px, var(--color-surface) 24px);
  color: var(--color-muted); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.03em;
  border-radius: var(--radius); min-height: 200px; padding: 1rem;
}
.img-ph--wide { aspect-ratio: 16/9; }

/* Placeholder content note */
.placeholder {
  background: #fff6e9; border: 1px dashed var(--color-accent);
  color: #8a5a1a; border-radius: var(--radius-sm);
  padding: 1rem 1.25rem; font-size: 0.9rem; margin-block: 1rem;
}
.placeholder::before { content: "✎ "; }

/* ---------- 10. LISTS / SIGNS / PROCESS ---------- */
.check-list { list-style: none; padding: 0; display: grid; gap: 0.85rem; }
.check-list li { position: relative; padding-left: 2rem; }
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  width: 1.4rem; height: 1.4rem; background: var(--color-success); color: #fff;
  border-radius: 50%; display: grid; place-items: center; font-size: 0.8rem; font-weight: 700;
}
@media (min-width: 768px) { .check-list--2col { grid-template-columns: repeat(2, 1fr); gap: 0.85rem 2rem; } }

.steps { list-style: none; padding: 0; display: grid; gap: 1.5rem; counter-reset: step; }
@media (min-width: 768px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .steps--4 { grid-template-columns: repeat(4, 1fr); } }
.step { position: relative; background: #fff; border: 1px solid var(--color-line); border-radius: var(--radius); padding: 1.75rem 1.5rem 1.5rem; }
.step::before {
  counter-increment: step; content: counter(step);
  position: absolute; top: -18px; left: 1.5rem;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--color-primary); color: #fff;
  font-family: var(--font-display); font-weight: 800; font-size: 1.25rem;
  display: grid; place-items: center; box-shadow: var(--shadow-sm);
}
.step h3 { margin: 0.75rem 0 0.5rem; }
.step p { color: var(--color-muted); font-size: var(--fs-small); }

/* Why choose us feature row */
.feature { display: flex; gap: 1rem; align-items: flex-start; }
.feature .ico { flex: none; width: 48px; height: 48px; border-radius: 12px; background: var(--color-navy); color: #fff; display: grid; place-items: center; font-size: 1.3rem; }
.feature h3 { margin-bottom: 0.35rem; }
.feature p { color: var(--color-muted); font-size: var(--fs-small); }

/* Split (two-column text + media) */
.split { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 992px) { .split { grid-template-columns: 1fr 1fr; } .split--media-left .split__media { order: -1; } }

/* ---------- 11. FAQ (details/summary) ---------- */
.faq { display: grid; gap: 0.85rem; max-width: 860px; margin-inline: auto; }
.faq details { background: #fff; border: 1px solid var(--color-line); border-radius: var(--radius-sm); overflow: hidden; }
.faq summary {
  cursor: pointer; list-style: none; padding: 1.15rem 1.35rem;
  font-family: var(--font-body); font-weight: 700; color: var(--color-ink);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--color-primary); transition: transform var(--transition); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 1.35rem 1.25rem; color: var(--color-muted); }

/* ---------- 12. CTA BAND ---------- */
.cta-band { background: linear-gradient(120deg, var(--color-navy), var(--color-primary-dark)); color: #fff; }
.cta-band h2 { color: #fff; }
.cta-band .split { align-items: center; }
.cta-band .hero__phone { color: #fff; }

/* ---------- 13. FOOTER ---------- */
.site-footer { background: var(--color-navy); color: #a9c0d6; font-size: var(--fs-small); }
.site-footer a { color: #cfe0f0; }
.site-footer a:hover { color: #fff; }
.site-footer__top { padding-block: var(--space-8); }
.site-footer__grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .site-footer__grid { grid-template-columns: 1.4fr 1fr 1fr; } }
@media (min-width: 992px) { .site-footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1.4fr; } }
.site-footer h4 { color: #fff; font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.04em; font-size: 1.1rem; margin-bottom: 1.1rem; }
.site-footer ul { list-style: none; padding: 0; display: grid; gap: 0.55rem; }
.footer-brand .brand { color: #fff; margin-bottom: 1rem; }
.footer-brand .brand__mark { height: 64px; width: auto; background: #fff; border-radius: 11px; padding: 6px; }
.footer-brand .brand__text small { color: var(--color-cyan); }
.footer-brand p { color: #a9c0d6; }
.footer-quote .form-field input, .footer-quote .form-field select, .footer-quote .form-field textarea { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.18); color: #fff; }
.footer-quote .form-field input::placeholder, .footer-quote .form-field textarea::placeholder { color: #8fa8c0; }
.footer-quote label { color: #cfe0f0; }
.site-footer__bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-block: 1.5rem; }
.site-footer__bottom .container { display: flex; flex-wrap: wrap; gap: 0.75rem 1.5rem; justify-content: space-between; align-items: center; }
.nap { font-weight: 600; color: #cfe0f0; }

/* ---------- 14. BREADCRUMB / PAGE HERO ---------- */
.page-hero { position: relative; background: var(--color-navy); color: #fff; overflow: hidden; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(var(--navy-rgb),0.6), rgba(10,79,134,0.35)); z-index: 0; }
.page-hero .container { position: relative; z-index: 1; padding-block: clamp(2.5rem, 6vw, 4.5rem); }
.page-hero h1 { color: #fff; margin-bottom: 0.5rem; }
.page-hero p { color: #d7e6f5; max-width: 60ch; }
.breadcrumb { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 0.4rem; font-size: 0.85rem; color: #9fb8d0; margin-bottom: 1rem; }
.breadcrumb a { color: #cfe0f0; }
.breadcrumb li::after { content: "/"; margin-left: 0.4rem; color: #5f7c99; }
.breadcrumb li:last-child::after { content: ""; }

/* ---------- 15. PROSE (blog / legal) ---------- */
.prose { max-width: 760px; }
.prose h2 { margin-top: 2.25rem; margin-bottom: 0.85rem; }
.prose h3 { margin-top: 1.75rem; margin-bottom: 0.6rem; }
.prose p, .prose li { color: var(--color-body); }
.prose ul, .prose ol { margin-bottom: 1.25rem; display: grid; gap: 0.5rem; }

/* Blog list */
.post-card { display: flex; flex-direction: column; overflow: hidden; padding: 0; }
.post-card .img-ph { aspect-ratio: 16/9; border-radius: 0; }
.post-card__body { padding: 1.5rem; }
.post-card__meta { font-size: 0.8rem; color: var(--color-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.5rem; }

/* ---------- 15b. MAP BAND (navy service-area w/ state map) ---------- */
.map-band { position: relative; overflow: hidden; }
.map-band::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: repeating-linear-gradient(115deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 46px);
}
.map-band .container { position: relative; z-index: 1; }
.map-band__map { display: flex; align-items: center; justify-content: center; }
.map-band__map svg { width: 100%; max-width: 460px; height: auto; filter: drop-shadow(0 18px 40px rgba(0,0,0,0.35)); }
.map-band__map .state { fill: rgba(255,255,255,0.06); stroke: var(--color-cyan); stroke-width: 6; }
.map-band__map .pin { fill: var(--color-accent); }
.map-band__map .pin-ring { fill: none; stroke: var(--color-accent); stroke-width: 4; opacity: 0.5; }
.map-band__map .pin-label { fill: #fff; font-family: var(--font-display); font-weight: 700; font-size: 30px; }

/* Numbered "reasons"/points list for dark sections */
.reasons { list-style: none; padding: 0; display: grid; gap: 1.1rem; counter-reset: reason; margin-top: 1.5rem; }
.reasons li { position: relative; padding-left: 3.25rem; min-height: 2.25rem; color: #cfe0f0; }
.reasons li strong { display: block; color: #fff; font-size: 1.05rem; margin-bottom: 0.15rem; }
.reasons li::before {
  counter-increment: reason; content: counter(reason);
  position: absolute; left: 0; top: 0; width: 2.25rem; height: 2.25rem; border-radius: 50%;
  background: var(--color-accent); color: #fff; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; font-size: 1.05rem;
}

/* Recent posts intro row */
.recent-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1rem; margin-bottom: var(--space-6); }
.recent-head .divider { margin-top: 0.75rem; }

/* ---------- 16. UTILITIES ---------- */
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.mt-4 { margin-top: var(--space-4); } .mt-6 { margin-top: var(--space-6); }
.stack > * + * { margin-top: var(--space-4); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.divider { height: 4px; width: 64px; background: var(--color-accent); border-radius: 2px; margin-block: 1.25rem; }
.section-head.text-center .divider { margin-inline: auto; }
