/* =========================================================
   Firebreak Brothers Mitigation
   Design system: Strobert-inspired layout, deep red + black
   Headings: Titillium Web  |  Body: Raleway
   ========================================================= */

:root {
  /* brand */
  --red:        #C1121F;   /* primary */
  --red-dark:   #8A0C16;   /* hover / deep */
  --red-bright: #E12B22;   /* highlight on dark */
  --ink:        #141414;
  --ink-2:      #1a1a1a;   /* dark section background */
  --ink-3:      #262626;
  --gold:       #F2B01E;   /* warm accent, ties to flame logo */

  --white:  #ffffff;
  --paper:  #f6f5f4;
  --paper-2:#efece9;
  --line:   #e2ddd9;
  --text:   #43403d;       /* body copy */
  --heading:#181614;
  --muted:  #7a736d;

  --tag-bg:   #f7e3e2;
  --tag-text: #98121b;

  --shadow-sm: 0 1px 2px rgba(20,10,10,.06), 0 3px 10px rgba(20,10,10,.06);
  --shadow-md: 0 10px 30px rgba(20,10,10,.12);
  --shadow-lg: 0 24px 60px rgba(20,10,10,.20);

  --wrap: 1180px;
  --radius: 16px;
  --radius-lg: 28px;

  --font-head: "Titillium Web", "Arial Narrow", system-ui, sans-serif;
  --font-body: "Raleway", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 17px;
  font-weight: 400;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--heading);
  line-height: 1.12;
  margin: 0 0 .5em;
  font-weight: 700;
  letter-spacing: -.005em;
}
h1 { font-size: clamp(2.1rem, 4.8vw, 3.25rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.05rem; text-transform: uppercase; letter-spacing: .06em; }

.headline-accent { color: var(--red); }
.section--ink .headline-accent,
.hero .headline-accent { color: var(--gold); }

p { margin: 0 0 1rem; }
ul, ol { margin: 0 0 1rem; padding-left: 1.2rem; }
li { margin-bottom: .4rem; }

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: 22px; }

.section { padding: clamp(52px, 8vw, 104px) 0; }
.section--paper { background: var(--paper); }
.section--ink { background: var(--ink-2); color: #d9d4d0; }
.section--red { background: var(--red); color: #fff; }
.section--ink h1, .section--ink h2, .section--ink h3, .section--ink h4,
.section--red h1, .section--red h2, .section--red h3, .section--red h4 { color: #fff; }

/* eyebrow pill-tag (Strobert-style) */
.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .72rem;
  color: var(--tag-text);
  background: var(--tag-bg);
  padding: 7px 14px;
  border-radius: 999px;
  margin: 0 0 1rem;
}
.section--ink .eyebrow,
.hero .eyebrow,
.page-hero .eyebrow,
.cta-band .eyebrow { color: #ffd9c9; background: rgba(255,255,255,.12); }
.section--red .eyebrow { color: #fff; background: rgba(255,255,255,.18); }

.lead { font-size: 1.17rem; color: var(--text); max-width: 62ch; }
.section--ink .lead { color: #cdc7c2; }
.center { text-align: center; }
.center .lead, .center .eyebrow { margin-inline: auto; }
.center .lead { text-align: center; }

.prose > :last-child { margin-bottom: 0; }
.prose h2 { margin-top: 1.7em; }
.prose h3 { margin-top: 1.4em; }
.prose--lg p { font-size: 1.08rem; }

/* ---------- skip link ---------- */
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 999; background: var(--ink); color: #fff; padding: 12px 18px; border-radius: 0 0 8px 0; }
.skip-link:focus { left: 0; }

/* ---------- buttons (pills) ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem;
  letter-spacing: .01em;
  padding: 14px 28px; border-radius: 999px;
  border: 2px solid var(--red); background: var(--red); color: #fff;
  cursor: pointer; box-shadow: var(--shadow-sm);
  transition: transform .12s ease, box-shadow .12s ease, background-color .12s ease, border-color .12s ease, color .12s ease;
}
.btn:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); text-decoration: none; color: #fff; }
.btn--lg { font-size: 1.08rem; padding: 16px 34px; }
.btn--ghost { background: transparent; color: var(--heading); border-color: currentColor; box-shadow: none; }
.btn--ghost:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn--gold { background: var(--gold); border-color: var(--gold); color: #201400; }
.btn--gold:hover { background: #dd9c12; border-color: #dd9c12; color: #201400; }
.section--ink .btn--ghost, .hero .btn--ghost, .page-hero .btn--ghost, .section--red .btn--ghost, .cta-band .btn--ghost { color: #fff; border-color: rgba(255,255,255,.75); }
.section--ink .btn--ghost:hover, .hero .btn--ghost:hover, .page-hero .btn--ghost:hover, .section--red .btn--ghost:hover, .cta-band .btn--ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.center .btn-row { justify-content: center; }

/* ---------- top bar ---------- */
.topbar {
  background: var(--red); color: #fff;
  font-family: var(--font-head); font-weight: 600; font-size: .84rem;
  letter-spacing: .02em;
}
.topbar .wrap { display: flex; justify-content: center; gap: 8px 28px; padding-block: 9px; flex-wrap: wrap; text-align: center; }
.topbar a { color: #fff; display: inline-flex; align-items: center; gap: 6px; }
.topbar a:hover { color: #ffe1d6; text-decoration: none; }

/* ---------- header ---------- */
.site-header { position: sticky; top: 0; z-index: 100; background: #fff; border-bottom: 1px solid var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 92px; }
.brand { display: flex; align-items: center; }
.brand img { height: 74px; width: auto; }
@media (max-width: 760px) { .brand img { height: 58px; } .header-inner { min-height: 74px; } }

.nav-toggle { display: none; background: none; border: 2px solid var(--line); color: var(--heading); border-radius: 10px; padding: 9px 12px; font-family: var(--font-head); font-weight: 600; cursor: pointer; }

.main-nav ul { display: flex; align-items: center; gap: 0; list-style: none; margin: 0; padding: 0; }
.main-nav a {
  display: block; color: var(--heading); font-family: var(--font-head); font-weight: 600;
  font-size: .95rem; padding: 10px 11px; border-radius: 8px; letter-spacing: .005em; white-space: nowrap;
}
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--red); background: var(--paper); text-decoration: none; }
.main-nav .btn { color: #fff; padding: 11px 20px; margin-left: 10px; border-radius: 999px; }
@media (max-width: 1180px) and (min-width: 761px) { .main-nav a { padding: 9px 8px; font-size: .9rem; } .brand img { height: 62px; } }
.main-nav .btn:hover { color: #fff; }

.has-sub { position: relative; }
.has-sub > a::after { content: " \25BE"; font-size: .62em; opacity: .65; vertical-align: middle; }
.has-sub > .sub {
  position: absolute; left: 0; top: 100%; min-width: 270px;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow-lg); padding: 8px; margin-top: 8px; display: none;
}
.has-sub::after { content: ""; position: absolute; left: 0; right: 0; top: 100%; height: 14px; display: none; }
.has-sub:hover::after { display: block; }
.has-sub:hover > .sub, .has-sub:focus-within > .sub, .has-sub.open > .sub { display: block; }
.has-sub > .sub a { color: var(--text); font-weight: 500; font-size: .95rem; padding: 9px 12px; }
.has-sub > .sub a:hover { background: var(--paper); color: var(--red); }

/* ---------- hero ---------- */
.hero {
  position: relative; color: #fff; overflow: hidden;
  background: var(--ink);
  /* paths here are relative to THIS file (/assets/css/), so ../img/... = /assets/img/...
     To change the hero photo, swap the filename below and rebuild. */
  background-image:
    linear-gradient(180deg, rgba(14,11,11,.52) 0%, rgba(14,11,11,.50) 42%, rgba(14,11,11,.86) 100%),
    var(--hero-image, url("../img/work/job-01.jpg"));
  background-size: cover; background-position: center 38%;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(1200px 700px at 50% 45%, transparent 0%, rgba(0,0,0,.42) 100%);
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(115deg, rgba(255,255,255,.028) 0 2px, transparent 2px 24px);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; padding: clamp(56px, 9vw, 116px) 0 0; max-width: 820px; margin-inline: auto; text-align: center; }
.hero h1 { color: #fff; text-shadow: 0 2px 20px rgba(0,0,0,.4); }
.hero-tagline {
  font-family: var(--font-head); font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; font-size: clamp(.95rem, 2vw, 1.15rem);
  color: var(--gold); margin: -.2rem 0 1rem;
}
.hero p.hero-sub { font-size: 1.2rem; color: #ececec; max-width: 56ch; margin-inline: auto; }
.hero .btn-row { margin-top: 24px; justify-content: center; }
.hero-trust { margin-top: 26px; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 22px; font-family: var(--font-head); font-weight: 600; font-size: .92rem; color: #e6e0dc; }
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust span::before { content: "\2713"; color: var(--gold); font-weight: 700; }

/* quote ribbon along bottom of hero */
.hero-ribbon {
  position: relative; z-index: 1; margin-top: clamp(40px, 7vw, 84px);
  background: rgba(0,0,0,.34); border-top: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(2px);
}
.hero-ribbon .wrap { padding-block: 18px; display: flex; align-items: center; justify-content: center; text-align: center; gap: 8px 14px; flex-wrap: wrap; }
.hero-ribbon .stars { color: var(--gold); letter-spacing: 2px; }
.hero-ribbon p { margin: 0; color: #f2eeeb; font-style: italic; }
.hero-ribbon cite { color: #cfc8c3; font-style: normal; font-weight: 600; font-family: var(--font-head); }

/* interior page hero */
.page-hero { position: relative; background: var(--ink); color: #fff; overflow: hidden; padding: clamp(48px, 7vw, 92px) 0 clamp(52px, 7vw, 84px); }
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(760px 360px at 85% -20%, rgba(193,18,31,.5), transparent 62%),
              repeating-linear-gradient(115deg, rgba(255,255,255,.03) 0 2px, transparent 2px 24px);
}
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; max-width: 20ch; }
.page-hero p { color: #e4dedb; max-width: 60ch; font-size: 1.12rem; }
.page-hero--center { text-align: center; }
.page-hero--center .wrap { max-width: 780px; }
.page-hero--center h1, .page-hero--center p { margin-inline: auto; }
.page-hero--center .btn-row { justify-content: center; }

.crumbs { font-family: var(--font-head); font-weight: 600; font-size: .82rem; letter-spacing: .03em; margin-bottom: 14px; color: #b9b1ac; }
.crumbs a { color: var(--gold); }
.crumbs span { margin: 0 7px; opacity: .5; }

/* ---------- generic grid / cards ---------- */
.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm);
  transition: transform .14s ease, box-shadow .14s ease, border-color .14s ease;
  display: flex; flex-direction: column;
}
a.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #e6b9ba; text-decoration: none; }
.card .icon { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: var(--red); color: #fff; margin-bottom: 14px; flex: none; }
.card .icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: .35rem; }
.card p { color: var(--muted); font-size: .98rem; margin-bottom: 1rem; }
.card .more { margin-top: auto; font-family: var(--font-head); font-weight: 700; color: var(--red); font-size: .95rem; }
a.card:hover .more { text-decoration: underline; }

/* ---------- service list (Strobert-style simple list) ---------- */
.service-list { display: grid; gap: 4px; }
.service-list .row { padding: 22px 0; border-bottom: 1px solid var(--line); }
.service-list .row:last-child { border-bottom: 0; }
.service-list h3 { margin: 0 0 .25rem; }
.service-list p { margin: 0 0 .5rem; color: var(--muted); max-width: 68ch; }
.service-list .more { font-family: var(--font-head); font-weight: 700; color: var(--red); font-size: .95rem; display: inline-flex; align-items: center; gap: 6px; }
.service-list .row:hover .more { gap: 10px; }

/* ---------- check grid ("why trust us") ---------- */
.check-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px 40px; }
.check-item { display: grid; grid-template-columns: 44px 1fr; gap: 16px; align-items: start; }
.check-item .tick { width: 44px; height: 44px; border-radius: 999px; background: var(--red); color: #fff; display: grid; place-items: center; font-weight: 700; font-size: 1.15rem; flex: none; }
.check-item h3 { font-size: 1.2rem; margin: 2px 0 .3rem; }
.check-item p { margin: 0; color: var(--muted); font-size: .98rem; }
.section--ink .check-item p { color: #c3bcb7; }

/* checklist */
.checks { list-style: none; padding: 0; margin: 0; }
.checks li { position: relative; padding-left: 30px; margin-bottom: .6rem; }
.checks li::before { content: "\2713"; position: absolute; left: 0; top: .05em; color: #fff; background: var(--red); width: 20px; height: 20px; border-radius: 6px; display: grid; place-items: center; font-size: .75rem; font-weight: 700; }
.section--ink .checks li::before { background: var(--gold); color: #201400; }

/* ---------- split (text + media) ---------- */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.split--reverse { grid-template-columns: .95fr 1.05fr; }
.split .media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); background: var(--paper); }

/* ---------- stat card + collage ---------- */
.stat-band { display: grid; grid-template-columns: 320px 1fr; gap: 26px; align-items: stretch; }
.stat-card { background: var(--red); color: #fff; border-radius: var(--radius); padding: 34px 28px; display: flex; flex-direction: column; justify-content: center; text-align: center; }
.stat-card .num { font-family: var(--font-head); font-weight: 700; font-size: clamp(2.2rem, 5vw, 3rem); line-height: 1; }
.stat-card .label { font-family: var(--font-head); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; font-size: .9rem; margin-top: 8px; color: #ffdcd8; }
.collage { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.collage img, .collage .ph { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); width: 100%; height: 100%; object-fit: cover; min-height: 150px; }

/* legacy .stats (still used on some pages) */
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; text-align: center; }
.stats .stat { background: rgba(255,255,255,.04); border: 1px solid rgba(0,0,0,.08); border-radius: 14px; padding: 22px 14px; }
.section--ink .stats .stat { border-color: rgba(255,255,255,.10); }
.stat .num { display: block; font-family: var(--font-head); font-weight: 700; font-size: clamp(1.7rem, 4vw, 2.4rem); color: var(--red); line-height: 1; margin-bottom: 6px; }
.section--ink .stat .num { color: var(--gold); }
.stat .label { display: block; font-family: var(--font-head); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; font-size: .8rem; color: var(--muted); }

/* ---------- promo panels (rounded, Strobert-style) ---------- */
.promo {
  background: var(--ink-2); color: #e7e2de; border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 46px); position: relative; overflow: hidden;
}
.promo--red { background: var(--red); color: #fff; }
.promo--paper { background: var(--paper); color: var(--text); border: 1px solid var(--line); }
.promo h2, .promo h3 { color: inherit; }
.promo .promo-body { position: relative; z-index: 1; max-width: 60ch; }
.promo .flame-mark { position: absolute; right: -30px; bottom: -30px; width: 220px; opacity: .10; z-index: 0; }
.promo--paper .flame-mark { opacity: .06; }

/* two big panels: residential / commercial */
.split-panels { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.panel {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  min-height: 300px; display: flex; flex-direction: column; justify-content: flex-end;
  align-items: flex-start;
  padding: 34px; color: #fff; background: var(--ink-2);
  background-size: cover; background-position: center;
  box-shadow: var(--shadow-md);
}
.panel .eyebrow { align-self: flex-start; }
.panel::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,14,14,.15), rgba(20,14,14,.86)); z-index: 0; }
.panel > * { position: relative; z-index: 1; }
.panel .eyebrow { color: #fff; background: rgba(255,255,255,.18); }
.panel h3 { color: #fff; font-size: 1.7rem; margin-bottom: .3rem; }
.panel p { color: #ece7e4; margin-bottom: 1rem; }
.panel .more { font-family: var(--font-head); font-weight: 700; color: #fff; display: inline-flex; gap: 8px; align-items: center; }
.panel:hover { text-decoration: none; }
.panel:hover .more { gap: 12px; }

/* partner cards */
.partner-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.partner-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.partner-card .icon { width: 54px; height: 54px; border-radius: 14px; background: var(--tag-bg); color: var(--red); display: grid; place-items: center; margin-bottom: 16px; }
.partner-card .icon svg { width: 28px; height: 28px; }
.partner-card h3 { margin-bottom: .4rem; }
.partner-card p { color: var(--muted); font-size: .97rem; }
.partner-card .more { margin-top: auto; font-family: var(--font-head); font-weight: 700; color: var(--red); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; background: var(--red); color: #fff; text-align: center; padding: clamp(48px, 7vw, 84px) 0; overflow: hidden; }
.cta-band .flame-mark { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 520px; opacity: .08; }
.cta-band .wrap { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.94); font-size: 1.12rem; max-width: 54ch; margin-inline: auto; }
.cta-band .btn { background: var(--ink); border-color: var(--ink); }
.cta-band .btn:hover { background: #000; border-color: #000; }
.cta-phone { display: inline-block; margin-top: 6px; font-family: var(--font-head); font-weight: 700; font-size: clamp(1.9rem, 5vw, 2.9rem); color: #fff; }
.cta-phone:hover { text-decoration: none; color: var(--gold); }

/* motto strip */
.motto { background: var(--ink); color: #fff; text-align: center; padding: 34px 0; font-family: var(--font-head); }
.motto .big { display: block; font-size: clamp(1.3rem, 3.2vw, 1.95rem); font-weight: 700; }
.motto strong { color: var(--gold); }

/* ---------- FAQ (pill accordion) ---------- */
.faq { max-width: 860px; margin-inline: auto; }
.faq details { background: var(--paper); border: 1px solid var(--line); border-radius: 14px; padding: 2px 22px; margin-bottom: 12px; }
.faq details[open] { background: #fff; box-shadow: var(--shadow-sm); border-color: #e6b9ba; }
.faq summary { cursor: pointer; list-style: none; padding: 18px 0; font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; color: var(--heading); display: flex; justify-content: space-between; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "\203A"; transform: rotate(90deg); color: var(--red); font-size: 1.5rem; line-height: 1; transition: transform .15s ease; }
.faq details[open] summary::after { transform: rotate(-90deg); }
.faq details p { padding-bottom: 18px; margin: 0; color: var(--text); }
.section--paper .faq details { background: #fff; }

/* ---------- full-width cover banner (community cleanup) ---------- */
.cover-banner { background: var(--ink); }
.cover-banner img { display: block; width: 100%; height: auto; max-height: 62vh; object-fit: contain; margin-inline: auto; }

/* ---------- centered hero box (community cleanup) ---------- */
/* the banner + dark hero are constrained to a centered column with the
   page background showing as gutters on the left and right */
.hero-box {
  max-width: 1120px;
  margin: 28px auto 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.hero-box .cover-banner img { max-height: 46vh; }
.hero-box .page-hero { padding-bottom: clamp(38px, 5vw, 60px); }
@media (max-width: 1180px) {
  .hero-box { max-width: none; margin: 0; border-radius: 0; box-shadow: none; }
  .hero-box .cover-banner img { max-height: 62vh; }
}

/* ---------- embedded map ---------- */
.map-embed {
  position: relative; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-md); border: 1px solid var(--line);
  aspect-ratio: 16 / 9; background: var(--paper);
}
.map-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.map-caption { margin: 12px 0 0; font-size: .9rem; color: var(--muted); text-align: center; }
@media (max-width: 760px) { .map-embed { aspect-ratio: 4 / 3; } }

/* ---------- price list ---------- */
.price-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 44px; max-width: 920px; margin-inline: auto; }
.price-list .prow { display: flex; justify-content: space-between; gap: 18px; align-items: baseline; padding: 15px 0; border-bottom: 1px solid var(--line); font-family: var(--font-head); font-weight: 600; }
.price-list .prow span:first-child { color: var(--heading); }
.price-list .prow .amt { color: var(--red); font-weight: 700; white-space: nowrap; }
@media (max-width: 760px) { .price-list { grid-template-columns: 1fr; } }

/* ---------- service area town links ---------- */
.town-links { columns: 3; column-gap: 30px; font-family: var(--font-head); font-weight: 600; }
.town-links a { display: block; padding: 7px 0; color: var(--heading); border-bottom: 1px solid var(--line); break-inside: avoid; }
.town-links a:hover { color: var(--red); text-decoration: none; }

/* ---------- testimonials ---------- */
.quote-card { background: var(--paper); border-left: 4px solid var(--red); border-radius: 0 14px 14px 0; padding: 26px 28px; }
.quote-card p { font-size: 1.12rem; font-style: italic; color: var(--heading); margin-bottom: .6rem; }
.quote-card cite { font-style: normal; font-family: var(--font-head); font-weight: 700; color: var(--muted); }

/* owner card */
.owner-card { margin: 0 auto; max-width: 440px; width: 100%; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); background: #fff; border: 1px solid var(--line); }
.owner-card img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center 20%; background: var(--paper); }
.owner-card figcaption { padding: 20px 24px 24px; }
.owner-card figcaption strong { display: block; font-family: var(--font-head); font-size: 1.25rem; color: var(--heading); }
.owner-card figcaption span { display: block; font-family: var(--font-head); font-weight: 600; font-size: .8rem; text-transform: uppercase; letter-spacing: .05em; color: var(--red); margin: 3px 0 12px; }
.owner-card figcaption p { margin: 0; font-style: italic; color: var(--muted); font-size: .98rem; }

/* trust badge row */
.trust-badges { display: flex; flex-wrap: wrap; gap: 12px 26px; align-items: center; font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: var(--muted); }
.trust-badges span { display: inline-flex; align-items: center; gap: 8px; }
.trust-badges span::before { content: "\2713"; color: var(--red); font-weight: 700; }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); }
.contact-card .row { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 18px; }
.contact-card .row svg { width: 24px; height: 24px; color: var(--red); flex: none; margin-top: 3px; }
.contact-card .row strong { display: block; font-family: var(--font-head); font-weight: 700; text-transform: uppercase; letter-spacing: .05em; font-size: .82rem; color: var(--muted); }
.contact-card .row a, .contact-card .row span { font-size: 1.08rem; color: var(--heading); }

form label { display: block; font-family: var(--font-head); font-weight: 600; font-size: .86rem; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); margin-bottom: 6px; }
form input, form textarea, form select { width: 100%; padding: 13px 15px; border: 1px solid var(--line); border-radius: 10px; font: inherit; margin-bottom: 16px; background: #fff; color: var(--text); }
form input:focus, form textarea:focus, form select:focus { outline: 3px solid rgba(193,18,31,.28); border-color: var(--red); }

/* visible keyboard focus for links, buttons, and other controls (WCAG 2.4.7) */
a:focus-visible, button:focus-visible, summary:focus-visible, [tabindex]:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 3px;
}
.btn:focus-visible { outline-color: #fff; }
.site-header .btn:focus-visible, .cta-band .btn:focus-visible { outline-color: var(--gold); }

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: #b3aca7; padding: 56px 0 26px; font-size: .95rem; }
.site-footer .foot-h { color: var(--gold); margin: 0 0 .8rem; font-family: var(--font-head); font-weight: 700; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-min { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; }
.site-footer a { color: #cdc6c1; }
.site-footer a:hover { color: #fff; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .45rem; }
.footer-brand img { margin-bottom: 14px; }
.footer-brand p { margin: 0 0 .4rem; max-width: 42ch; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 40px; padding-top: 20px; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: .84rem; color: #8b837e; }

/* ---------- utility ---------- */
.tag { display: inline-block; font-family: var(--font-head); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; font-size: .72rem; background: var(--tag-bg); color: var(--tag-text); padding: 5px 11px; border-radius: 999px; }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* ---------- responsive ---------- */
@media (max-width: 1000px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .partner-cards { grid-template-columns: 1fr; }
  .split, .split--reverse { grid-template-columns: 1fr; }
  .stat-band { grid-template-columns: 1fr; }
  .split-panels { grid-template-columns: 1fr; }
  .check-grid { grid-template-columns: 1fr; }
  .town-links { columns: 2; }
  .footer-min { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  /* mobile hero: same fallen-tree photo, positioned so the root ball fills the narrow frame */
  .hero { background-position: 66% 42%; }
  .hero-inner { padding-top: 38px; }
  .hero-ribbon { margin-top: 30px; }
  .footer-min { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { justify-content: flex-start; }
  .nav-toggle { display: inline-flex; }
  .main-nav { position: absolute; top: 100%; left: 0; right: 0; background: #fff; border-bottom: 3px solid var(--red); padding: 10px 20px 20px; display: none; max-height: 78vh; overflow-y: auto; box-shadow: var(--shadow-lg); }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 2px; }
  .main-nav a { padding: 14px 12px; border-bottom: 1px solid var(--line); }
  .has-sub > a::after { content: ""; }
  .has-sub > .sub { position: static; display: block; box-shadow: none; border: none; background: var(--paper); margin: 4px 0 8px; }
  .main-nav .btn { margin: 10px 0 0; justify-content: center; }
  .grid--4, .grid--3, .grid--2 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .collage { grid-template-columns: 1fr 1fr; }
  .town-links { columns: 1; }
  .topbar .wrap { justify-content: center; }
  body { font-size: 16px; }
}
@media (prefers-reduced-motion: reduce) { * { animation: none !important; transition: none !important; scroll-behavior: auto !important; } }
