/* =============================================================
   JV Mitigation & Restoration - Site Styles
   Hand-coded. No frameworks. Mobile-first.
   Palette pulled from the phoenix logo: red (urgency) + blue (trust)
   on a bright, near-white canvas.
   ============================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* Brand */
  --red:        #E4141C;   /* phoenix red - urgency, emergency */
  --red-btn:    #D41018;   /* slightly deeper for AA text contrast */
  --red-dark:   #A50D13;
  --blue:       #0E4C8F;   /* phoenix blue - trust, secondary */
  --blue-bright:#1466B8;   /* icons, links */
  --blue-dark:  #0A3A6E;

  /* Neutrals */
  --ink:    #0C1116;       /* near-black - text & footer only */
  --bg:     #FFFFFF;
  --bg-soft:#F4F7FB;       /* faint blue-gray wash */
  --bg-tint:#EEF4FB;
  --line:   #E1E7EF;
  --muted:  #56616F;
  --muted-2:#7C8895;

  /* Type */
  --sans: "Barlow", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --display: "Barlow Condensed", "Barlow", system-ui, sans-serif;

  /* Rhythm */
  --wrap: 1200px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 4px;
  --shadow-sm: 0 1px 2px rgba(12,17,22,.06), 0 2px 8px rgba(12,17,22,.05);
  --shadow-md: 0 10px 30px rgba(12,17,22,.10);
  --shadow-lg: 0 24px 60px rgba(10,58,110,.16);
  --ease: cubic-bezier(.2,.7,.2,1);
}

/* ---------- Reset-ish ---------- */
*,*::before,*::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--blue-bright); text-decoration: none; }
a:hover { text-decoration: underline; }
button { font-family: inherit; }
h1,h2,h3,h4 { margin: 0 0 .4em; line-height: 1.04; font-weight: 700; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; }
li { list-style: none; }
:focus-visible { outline: 3px solid var(--blue-bright); outline-offset: 2px; border-radius: 2px; }

/* ---------- Layout helpers ---------- */
.wrap { width: min(100% - (var(--gutter) * 2), var(--wrap)); margin-inline: auto; }
.wrap-wide { width: min(100% - (var(--gutter) * 2), 1360px); margin-inline: auto; }
.section { padding-block: clamp(56px, 8vw, 112px); }
.section--soft { background: var(--bg-soft); }
.section--tint { background: var(--bg-tint); }
.stack > * + * { margin-top: 1rem; }
.center { text-align: center; }

/* Kicker / eyebrow label */
.kicker {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 600;
  font-size: .82rem;
  color: var(--blue);
  margin-bottom: 1rem;
}
.kicker::before {
  content: ""; width: 26px; height: 3px; background: var(--red); display: inline-block;
}
.kicker--light { color: #cfe0f2; }
.kicker--light::before { background: var(--red); }

/* Display headings */
.display {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -.01em;
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  line-height: .96;
  text-transform: uppercase;
}
.h-xl { font-family: var(--display); text-transform: uppercase; font-weight: 700; font-size: clamp(2rem, 4.6vw, 3.4rem); line-height: 1; letter-spacing: -.005em; }
.h-lg { font-family: var(--display); text-transform: uppercase; font-weight: 700; font-size: clamp(1.6rem, 3.2vw, 2.3rem); }
.lede { font-size: clamp(1.1rem, 1.6vw, 1.32rem); color: var(--muted); max-width: 56ch; }
.eyebrow-red { color: var(--red); font-weight: 700; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--red-btn);
  --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 600;
  font-size: 1.02rem;
  padding: .95rem 1.6rem;
  color: var(--btn-fg);
  background: var(--btn-bg);
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform .15s var(--ease), box-shadow .2s var(--ease), background .2s;
  text-decoration: none;
  line-height: 1;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn--red { --btn-bg: var(--red-btn); }
.btn--red:hover { background: var(--red-dark); }
.btn--blue { --btn-bg: var(--blue); }
.btn--blue:hover { background: var(--blue-dark); }
.btn--ghost {
  background: transparent; color: var(--blue); border-color: var(--blue);
}
.btn--ghost:hover { background: var(--blue); color: #fff; }
.btn--onDark {
  background: #fff; color: var(--ink);
}
.btn--onDark:hover { background: #f0f3f7; }
.btn--lg { font-size: 1.12rem; padding: 1.1rem 2rem; }
.btn .ico { width: 20px; height: 20px; }

/* Text link with arrow */
.link-arrow {
  font-family: var(--display); text-transform: uppercase; letter-spacing: .06em;
  font-weight: 600; color: var(--blue); display: inline-flex; align-items: center; gap: .4rem;
}
.link-arrow:hover { text-decoration: none; color: var(--red); }
.link-arrow svg { width: 18px; height: 18px; transition: transform .2s var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---------- Emergency banner ---------- */
.emergency {
  background: var(--red);
  color: #fff;
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.emergency__inner {
  display: flex; align-items: center; justify-content: center; gap: 1rem 1.4rem;
  flex-wrap: wrap;
  padding: .5rem var(--gutter);
  font-size: .92rem; font-weight: 600; text-align: center;
}
.emergency a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.emergency .pulse {
  width: 9px; height: 9px; border-radius: 50%; background: #fff; flex: none;
  box-shadow: 0 0 0 0 rgba(255,255,255,.7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,255,255,.6); }
  70% { box-shadow: 0 0 0 10px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .7rem var(--gutter);
}
.brand { display: inline-flex; align-items: center; gap: .7rem; text-decoration: none; }
.brand:hover { text-decoration: none; }
.brand__logo { width: 46px; height: auto; flex: none; }
.brand__name {
  font-family: var(--display); text-transform: uppercase; line-height: .92;
  font-weight: 700; color: var(--ink); font-size: 1.18rem; letter-spacing: .01em;
}
.brand__name span { color: var(--red); }
.brand__name small { display: block; font-size: .62rem; letter-spacing: .22em; color: var(--muted); font-weight: 600; }

.nav { display: flex; align-items: center; gap: .3rem; }
.nav a {
  font-family: var(--display); text-transform: uppercase; letter-spacing: .05em;
  font-weight: 600; font-size: 1rem; color: var(--ink);
  padding: .5rem .8rem; border-radius: var(--radius);
}
.nav a:hover { color: var(--blue); text-decoration: none; background: var(--bg-soft); }
.nav a[aria-current="page"] { color: var(--red); }

.header__actions { display: flex; align-items: center; gap: .6rem; }
.icon-btn {
  width: 42px; height: 42px; display: inline-grid; place-items: center;
  border: 1px solid var(--line); border-radius: var(--radius); color: var(--blue);
  background: #fff;
}
.icon-btn:hover { border-color: var(--blue); color: var(--blue-dark); text-decoration: none; }
.icon-btn svg { width: 20px; height: 20px; }

.nav-toggle {
  display: none; width: 46px; height: 42px; border: 1px solid var(--line);
  background: #fff; border-radius: var(--radius); cursor: pointer; color: var(--ink);
}
.nav-toggle svg { width: 24px; height: 24px; margin: auto; }

/* ---------- Hero (home) - asymmetric split ---------- */
.hero { position: relative; overflow: hidden; background: var(--bg); }
.hero__grid {
  display: grid; grid-template-columns: 1fr; gap: 2.5rem;
  padding-block: clamp(40px, 6vw, 88px);
  align-items: center;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--red);
  padding: .45rem .85rem; font-family: var(--display); text-transform: uppercase;
  letter-spacing: .1em; font-weight: 600; font-size: .82rem; color: var(--ink);
  box-shadow: var(--shadow-sm); border-radius: 2px;
}
.hero__eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); }
.hero h1 { margin-top: 1.1rem; }
.hero h1 .accent { color: var(--red); }
.hero__lede { margin-top: .4rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.7rem; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 1.2rem 2rem; margin-top: 2rem; padding-top: 1.6rem; border-top: 1px solid var(--line); }
.hero__trust-item { display: flex; align-items: center; gap: .6rem; font-size: .92rem; color: var(--muted); font-weight: 500; }
.hero__trust-item svg { width: 22px; height: 22px; color: var(--blue-bright); flex: none; }

/* Hero art panel */
.hero__art {
  position: relative; align-self: stretch; min-height: 320px;
  border-radius: 6px; overflow: hidden;
  background:
    radial-gradient(120% 120% at 80% -10%, #163a63 0%, #0c2745 55%, #0a1e36 100%);
  box-shadow: var(--shadow-lg);
}
.hero__art::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 55%, rgba(228,20,28,.28) 120%);
}
.hero__art .phoenix { position: absolute; inset: 0; margin: auto; width: min(78%, 320px); opacity: .96; }
/* Logo reveal video. The clip is 16:9 and the logo sweeps across 94% of its
   width, so it can't be cropped narrower - instead the panel takes the clip's
   aspect and the video fills it edge to edge. */
.hero__video {
  position: absolute; inset: 0; margin: auto; z-index: 1;
  width: 100%; height: auto; aspect-ratio: 900 / 744;
  object-fit: cover; display: block;
  box-shadow: 0 18px 44px rgba(4,14,28,.55);
  opacity: 0; transition: opacity .6s var(--ease);
}
.hero__video.is-on { opacity: 1; }
.hero__art.has-video .phoenix { display: none; }
.hero__badge {
  position: absolute; left: -14px; bottom: 21px; z-index: 2;
  background: var(--red); color: #fff; padding: .7rem 1.1rem;
  font-family: var(--display); text-transform: uppercase; letter-spacing: .05em;
  font-weight: 700; box-shadow: var(--shadow-md); border-radius: 3px;
}
.hero__badge b { font-size: 1.5rem; display: block; line-height: 1; }
.hero__stat {
  position: absolute; right: -12px; top: 26px; z-index: 2;
  background: #fff; color: var(--ink); padding: .7rem 1rem; border-radius: 3px;
  box-shadow: var(--shadow-md); border-left: 4px solid var(--blue);
  font-size: .8rem; font-weight: 600;
}
.hero__stat b { font-family: var(--display); font-size: 1.6rem; color: var(--blue); display: block; line-height: 1; }

/* Diagonal red rule used as accent divider */
.rule-red { height: 4px; width: 64px; background: var(--red); border: 0; margin: 0 0 1.3rem; }

/* ---------- Marquee strip (service areas ticker) ---------- */
.strip {
  background: var(--ink); color: #fff; overflow: hidden; white-space: nowrap;
  border-top: 3px solid var(--red);
}
.strip__track {
  display: inline-flex; gap: 2.5rem; padding: .8rem 0; align-items: center;
  font-family: var(--display); text-transform: uppercase; letter-spacing: .1em; font-weight: 600;
  animation: marquee 26s linear infinite;
}
.strip__track span { display: inline-flex; align-items: center; gap: 2.5rem; }
.strip__track b { color: var(--red); }
.strip .sep { color: var(--blue-bright); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .strip__track { animation: none; } }

/* ---------- Section header block ---------- */
.sec-head { max-width: 62ch; margin-bottom: clamp(2rem, 4vw, 3.2rem); }
.sec-head.center { margin-inline: auto; }
.sec-head p { color: var(--muted); font-size: 1.08rem; }

/* ---------- Services: numbered editorial rows ---------- */
.svc-list { display: grid; gap: 0; border-top: 1px solid var(--line); }
.svc-row {
  display: grid; grid-template-columns: auto 1fr; gap: 1.4rem 2rem;
  padding: clamp(1.8rem, 4vw, 3rem) 0; border-bottom: 1px solid var(--line);
  align-items: start;
}
.svc-row__num {
  font-family: var(--display); font-weight: 700; font-size: 2.4rem; line-height: 1;
  color: var(--bg-tint); -webkit-text-stroke: 1.5px var(--blue); color: transparent;
  min-width: 2.6ch;
}
.svc-row__body h3 { font-family: var(--display); text-transform: uppercase; font-size: clamp(1.5rem, 2.6vw, 2rem); }
.svc-row__body .ico-tag { display: inline-flex; align-items: center; gap: .5rem; color: var(--red); font-family: var(--display); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; font-size: .82rem; margin-bottom: .5rem; }
.svc-row__body .ico-tag svg { width: 20px; height: 20px; }
.svc-cols { display: grid; grid-template-columns: 1fr; gap: 1.4rem; margin-top: 1.2rem; }
.svc-cols h4 { font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; color: var(--blue); font-family: var(--display); font-weight: 600; margin-bottom: .5rem; }
.check-list li { position: relative; padding-left: 1.7rem; margin-bottom: .5rem; color: var(--ink); }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: .5em; width: 12px; height: 7px;
  border-left: 2.5px solid var(--red); border-bottom: 2.5px solid var(--red);
  transform: rotate(-45deg);
}

/* ---------- Feature cards (varied, NOT default rounded grid) ---------- */
.feat-grid { display: grid; grid-template-columns: 1fr; gap: 1.2rem; }
.feat {
  position: relative; background: #fff; border: 1px solid var(--line);
  padding: 1.6rem 1.5rem 1.5rem; border-radius: var(--radius);
  border-top: 3px solid var(--blue);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s;
}
.feat:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-top-color: var(--red); }
.feat__icon {
  width: 52px; height: 52px; display: grid; place-items: center; margin-bottom: 1rem;
  background: var(--bg-tint); border-radius: var(--radius); color: var(--blue);
}
.feat__icon svg { width: 28px; height: 28px; }
.feat--photo { padding: 0; overflow: hidden; }
.feat__photo {
  width: 100%; height: auto; aspect-ratio: 16 / 10; object-fit: cover; display: block;
  background: var(--bg-tint);
}
.feat--photo .feat__body { padding: 1.3rem 1.5rem 1.5rem; }
.feat h3 { font-size: 1.2rem; font-family: var(--display); text-transform: uppercase; letter-spacing: .01em; }
.feat p { color: var(--muted); font-size: .96rem; margin: 0; }

/* ---------- Split feature (offset image/text) ---------- */
.split { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center; }
.split--flip .split__media { order: -1; }
.split__media {
  position: relative; border-radius: 6px; min-height: 300px; overflow: hidden;
  background: radial-gradient(120% 120% at 20% 0%, #12457c 0%, #0b2c4f 70%);
  box-shadow: var(--shadow-lg); display: grid; place-items: center; color: #fff;
}
.split__media svg { width: 60%; opacity: .95; }
.split__panel { background: #fff; }

/* ---------- Stat band ---------- */
.stats {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
}
.stat { background: #fff; padding: 1.6rem 1.3rem; }
.stat b { font-family: var(--display); font-size: clamp(2rem, 5vw, 3rem); color: var(--blue); line-height: 1; display: block; }
.stat span { color: var(--muted); font-weight: 600; font-size: .9rem; text-transform: uppercase; letter-spacing: .06em; }

/* ---------- Process steps (horizontal on desktop) ---------- */
.steps { display: grid; grid-template-columns: 1fr; gap: 1.4rem; counter-reset: step; }
.step { position: relative; padding-left: 3.4rem; }
.step::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 0; top: -4px; width: 2.4rem; height: 2.4rem;
  display: grid; place-items: center; background: var(--red); color: #fff;
  font-family: var(--display); font-weight: 700; font-size: 1.2rem; border-radius: 50%;
}
.step h3 { font-size: 1.15rem; font-family: var(--display); text-transform: uppercase; }
.step p { color: var(--muted); font-size: .95rem; margin: 0; }

/* ---------- Testimonials ---------- */
.quotes { display: grid; grid-template-columns: 1fr; gap: 1.3rem; }
.quote {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.7rem 1.6rem; position: relative; border-left: 4px solid var(--red);
}
.quote::before { content: "\201C"; font-family: var(--display); font-size: 3.4rem; color: var(--bg-tint); position: absolute; top: .2rem; right: 1rem; line-height: 1; }
.quote p { font-size: 1.05rem; font-style: italic; color: var(--ink); }
.quote .cite { display: flex; align-items: center; gap: .7rem; margin-top: 1rem; font-style: normal; }
.quote .avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--blue); color: #fff; display: grid; place-items: center; font-family: var(--display); font-weight: 700; }
.quote .cite b { display: block; font-size: .95rem; }
.quote .cite span { color: var(--muted-2); font-size: .82rem; }
.placeholder-note {
  font-size: .8rem; color: var(--muted-2); background: var(--bg-soft);
  border: 1px dashed var(--line); padding: .5rem .8rem; border-radius: var(--radius);
  display: inline-block; margin-top: 1rem;
}

/* ---------- Area cards / rows ---------- */
.area-row {
  display: grid; grid-template-columns: 1fr; gap: 1.6rem; align-items: center;
  padding: clamp(2rem, 5vw, 3.4rem) 0; border-bottom: 1px solid var(--line);
}
.area-row:last-child { border-bottom: 0; }
.area-map {
  position: relative; border-radius: 6px; min-height: 220px; overflow: hidden;
  aspect-ratio: 4 / 3;
  background: linear-gradient(140deg, #0f427a, #0a2c52); display: grid; place-items: center;
  box-shadow: var(--shadow-md);
}
.area-map svg { width: 62%; color: #fff; opacity: .95; }
.area-map img {
  grid-area: 1 / 1; place-self: stretch; display: block;
  width: 100%; height: 100%; min-height: 220px; object-fit: cover;
}
.area-map::after {
  content: ""; grid-area: 1 / 1; place-self: stretch; pointer-events: none;
  background: linear-gradient(to top, rgba(8,24,40,.6), rgba(8,24,40,0) 48%);
}
.area-map .pin-label {
  position: absolute; bottom: 12px; left: 12px; background: var(--red); color: #fff;
  font-family: var(--display); text-transform: uppercase; letter-spacing: .05em; font-weight: 600;
  padding: .35rem .7rem; border-radius: 3px; font-size: .82rem;
}
.area-body h3 { font-family: var(--display); text-transform: uppercase; font-size: clamp(1.5rem, 3vw, 2.1rem); }
.area-body .chips { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1rem 0; }
.chip { font-size: .78rem; font-weight: 600; color: var(--blue); background: var(--bg-tint); padding: .3rem .7rem; border-radius: 40px; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--blue-dark), var(--blue));
  color: #fff; border-radius: 8px; padding: clamp(2rem, 5vw, 3.4rem);
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; right: -60px; top: -60px; width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(228,20,28,.35), transparent 70%);
}
.cta-band h2 { font-family: var(--display); text-transform: uppercase; font-size: clamp(1.8rem, 4vw, 2.8rem); position: relative; }
.cta-band p { color: #d7e4f2; position: relative; max-width: 54ch; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.4rem; position: relative; }

/* ---------- Forms ---------- */
.form { display: grid; gap: 1.1rem; }
/* honeypot: parked off-screen rather than display:none so naive bots still "see" it */
.form .hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.form .row2 { display: grid; grid-template-columns: 1fr; gap: 1.1rem; }
.field { display: grid; gap: .4rem; }
.field label { font-family: var(--display); text-transform: uppercase; letter-spacing: .06em; font-weight: 600; font-size: .82rem; color: var(--ink); }
.field label .req { color: var(--red); }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 1rem; color: var(--ink);
  padding: .8rem .9rem; border: 1px solid var(--line); border-radius: var(--radius);
  background: #fff; width: 100%; transition: border-color .15s, box-shadow .15s;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(20,102,184,.15);
}
.form__note { font-size: .82rem; color: var(--muted-2); }
.form__status { font-size: .95rem; font-weight: 600; padding: .7rem .9rem; border-radius: var(--radius); display: none; }
.form__status.show { display: block; }
.form__status.ok { background: #eaf6ee; color: #14663a; border: 1px solid #bfe3ce; }
.form__panel { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: clamp(1.4rem, 3vw, 2.2rem); box-shadow: var(--shadow-sm); }

/* ---------- Contact detail list ---------- */
.contact-list { display: grid; gap: 1rem; }
.contact-item { display: flex; gap: .9rem; align-items: flex-start; }
.contact-item .ico { width: 44px; height: 44px; flex: none; display: grid; place-items: center; background: var(--bg-tint); color: var(--blue); border-radius: var(--radius); }
.contact-item .ico svg { width: 22px; height: 22px; }
.contact-item b { font-family: var(--display); text-transform: uppercase; letter-spacing: .04em; display: block; font-size: .92rem; }
.contact-item a, .contact-item span { color: var(--muted); }

.map-embed { border: 1px solid var(--line); border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-sm); }
.map-embed iframe { width: 100%; height: 340px; border: 0; display: block; }

/* ---------- Breadcrumb / page header ---------- */
.page-head { background: var(--bg-soft); border-bottom: 1px solid var(--line); }
.page-head__inner { padding-block: clamp(2.4rem, 5vw, 4rem); }
.crumbs { font-size: .85rem; color: var(--muted-2); margin-bottom: 1rem; font-weight: 600; }
.crumbs a { color: var(--blue); }
.crumbs span { color: var(--muted-2); }

/* ---------- Pull / callout ---------- */
.callout {
  border-left: 4px solid var(--red); background: var(--bg-soft);
  padding: 1.2rem 1.4rem; border-radius: 0 var(--radius) var(--radius) 0;
}
.callout p { margin: 0; }
.callout strong { color: var(--blue-dark); }

/* ---------- Two-column prose ---------- */
.prose-2 { display: grid; grid-template-columns: 1fr; gap: 1.6rem; }
.prose-2 p { color: var(--muted); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #c9d3de; }
.footer__top {
  display: grid; grid-template-columns: 1fr; gap: 2.2rem;
  padding-block: clamp(2.8rem, 6vw, 4.2rem);
}
.footer__brand .brand__name { color: #fff; }
.footer__brand p { color: #97a4b2; font-size: .95rem; max-width: 34ch; margin-top: 1rem; }
.footer h4 { font-family: var(--display); text-transform: uppercase; letter-spacing: .08em; color: #fff; font-size: .92rem; margin-bottom: 1rem; }
.footer ul li { margin-bottom: .55rem; }
.footer a { color: #c9d3de; font-size: .95rem; }
.footer a:hover { color: #fff; }
.footer__contact a { display: inline-flex; align-items: center; gap: .5rem; }
.footer__social { display: flex; gap: .6rem; margin-top: 1rem; }
.footer__social a { width: 40px; height: 40px; border: 1px solid #26313d; border-radius: var(--radius); display: grid; place-items: center; color: #c9d3de; }
.footer__social a:hover { border-color: var(--red); color: #fff; }
.footer__social svg { width: 20px; height: 20px; }
.footer__call {
  display: inline-flex; align-items: center; gap: .5rem; background: var(--red);
  color: #fff; font-family: var(--display); text-transform: uppercase; font-weight: 600;
  padding: .7rem 1.1rem; border-radius: var(--radius); margin-top: .5rem;
  white-space: nowrap;
}
.footer__call svg { width: 20px; height: 20px; flex: none; }
.footer__call:hover { background: var(--red-dark); color: #fff; }
.footer__bottom {
  border-top: 1px solid #1c2731; padding-block: 1.3rem; display: flex; flex-wrap: wrap;
  gap: .6rem 1.4rem; justify-content: space-between; align-items: center;
  font-size: .82rem; color: #7d8a97;
}
.footer__bottom a { color: #7d8a97; }

/* ---------- Floating mobile call button ---------- */
.float-call {
  position: fixed; z-index: 70; right: 16px; bottom: 16px;
  display: inline-flex; align-items: center; gap: .55rem;
  background: var(--red); color: #fff; padding: .95rem 1.2rem;
  border-radius: 60px; font-family: var(--display); text-transform: uppercase;
  font-weight: 700; letter-spacing: .04em; box-shadow: 0 10px 24px rgba(228,20,28,.4);
}
.float-call:hover { color: #fff; text-decoration: none; background: var(--red-dark); }
.float-call svg { width: 22px; height: 22px; }

/* ---------- Utility ---------- */
.text-blue { color: var(--blue); }
.text-red { color: var(--red); }
.mt-0 { margin-top: 0; }
.muted { color: var(--muted); }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--ink); color: #fff;
  padding: .7rem 1rem; z-index: 100;
}
.skip-link:focus { left: 8px; top: 8px; }

/* =============================================================
   RESPONSIVE - mobile-first breakpoints
   ============================================================= */
@media (max-width: 860px) {
  .nav { display: none; }
  .nav-toggle { display: grid; place-items: center; }
  .site-header.open .nav {
    display: flex; position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md);
    padding: .5rem var(--gutter) 1rem;
  }
  .site-header.open .nav a { padding: .85rem .4rem; border-bottom: 1px solid var(--line); border-radius: 0; }
  .header__actions .header-call-text { display: none; }
}

@media (min-width: 680px) {
  .svc-cols { grid-template-columns: 1fr 1fr; }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(4, 1fr); }
  .quotes { grid-template-columns: repeat(2, 1fr); }
  .form .row2 { grid-template-columns: 1fr 1fr; }
  .prose-2 { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .hero__grid { grid-template-columns: 1.15fr .85fr; gap: 3.5rem; }
  .split { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .split--flip .split__media { order: 0; }
  .feat-grid--3 { grid-template-columns: repeat(3, 1fr); }
  .area-row { grid-template-columns: .8fr 1.2fr; gap: 3rem; }
  .area-row--flip { grid-template-columns: 1.2fr .8fr; }
  .area-row--flip .area-map { order: 2; }
  .steps { grid-template-columns: repeat(4, 1fr); }
  .footer__top { grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 3rem; }
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
  .float-call { display: none; } /* desktop uses header call button */
}

@media (min-width: 1100px) {
  .feat-grid--4 { grid-template-columns: repeat(4, 1fr); }
}

/* Hide floating button only on larger screens; keep on mobile/tablet */
@media (max-width: 899px) {
  .float-call { display: inline-flex; }
  /* Hero art panel is desktop-only. Stacked under the text on a phone it just
     repeats the header logo and pushes the content down. */
  .hero__art { display: none; }
}

@media print {
  .site-header, .emergency, .float-call, .site-footer { display: none; }
}
