
/* =====================================================
   WATERDAMAGE-GEORGIA.COM — v2
   Direction: Emergency Operations Center
   Dark, tense, authoritative. Not a directory site.
   Fonts: Barlow Condensed (display) + Barlow (body)
   ===================================================== */

:root {
  --ink:        #060d18;
  --navy:       #0a1628;
  --navy-2:     #0f2040;
  --slate:      #162840;
  --red:        #d62828;
  --red-2:      #f43f3f;
  --red-glow:   rgba(214,40,40,0.18);
  --amber:      #e8a020;
  --amber-dim:  rgba(232,160,32,0.15);
  --white:      #ffffff;
  --mist:       #f4f7fb;
  --steel:      #94a3b8;
  --dim:        rgba(255,255,255,0.38);
  --line:       rgba(255,255,255,0.07);
  --radius:     8px;
}

*, *::before, *::after { box-sizing: border-box; margin:0; padding:0; }
html { font-size:16px; scroll-behavior:smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--white);
  color: #1e293b;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── KEYFRAMES ── */
@keyframes scanline {
  0%   { transform: translateY(-100%); }
  100% { transform: translateY(100vh); }
}
@keyframes ripple {
  0%   { transform:scale(1); opacity:.6; }
  100% { transform:scale(2.4); opacity:0; }
}
@keyframes fadeSlideUp {
  from { opacity:0; transform:translateY(30px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes tick {
  0%,49% { opacity:1; }
  50%,100%{ opacity:0; }
}
@keyframes countUp {
  from { opacity:0; transform:translateY(8px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}

/* ── STICKY HEADER ── */
header {
  position: fixed; top:0; left:0; right:0; z-index:1000;
  height: 62px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 36px;
  background: rgba(6,13,24,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(214,40,40,0.5);
  box-shadow: 0 2px 32px rgba(0,0,0,0.6), 0 1px 0 rgba(214,40,40,0.3);
}

.logo {
  display: flex; flex-direction: column; gap: 1px;
  text-decoration: none;
}
.logo-main {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.25rem; font-weight: 900;
  color: var(--white); text-transform: uppercase; letter-spacing: 2px;
  line-height: 1;
}
.logo-main span { color: var(--red-2); }
.logo-sub {
  font-size: 0.58rem; font-weight: 600; letter-spacing: 3.5px;
  color: var(--steel); text-transform: uppercase;
}

.hnav { display:flex; align-items:center; gap:28px; }
.hnav a {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 1.2px;
  color: rgba(255,255,255,0.5); text-decoration: none;
  text-transform: uppercase; transition: color .2s;
}
.hnav a:hover { color: var(--white); }

/* STATUS PILL — live indicator */
.status-pill {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 16px 6px 12px;
  border: 1px solid rgba(214,40,40,0.4);
  border-radius: 100px;
  background: rgba(214,40,40,0.08);
}
.status-dot {
  position: relative; width:8px; height:8px; flex-shrink:0;
}
.status-dot::before, .status-dot::after {
  content:''; position:absolute; inset:0; border-radius:50%;
}
.status-dot::before { background: var(--red-2); }
.status-dot::after {
  background: var(--red-2); opacity:0.6;
  animation: ripple 1.8s ease-out infinite;
}

/* HEADER CTA */
.hcta {
  display: flex; align-items: center; gap: 10px;
  background: var(--red); color: white; text-decoration: none;
  padding: 9px 22px; border-radius: 5px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: background .15s, transform .1s;
  white-space: nowrap;
}
.hcta:hover { background: #b91c2a; transform: translateY(-1px); }

.status-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 1.5px;
  color: var(--red-2); text-transform: uppercase;
}

body { padding-top: 62px; }

/* ── HERO ── */
.hero {
  position: relative;
  background: var(--ink);
  overflow: hidden;
  min-height: calc(100vh - 62px);
  display: flex; align-items: center;
}

/* SCANLINE effect */
.hero-scanline {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  overflow: hidden;
}
.hero-scanline::after {
  content: '';
  position: absolute; left:0; right:0; height: 2px;
  background: linear-gradient(to bottom, transparent, rgba(214,40,40,0.06) 50%, transparent);
  animation: scanline 8s linear infinite;
}

/* GRID OVERLAY */
.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 100%);
}

/* PHOTO PANEL — right side asymmetric */
.hero-img-wrap {
  position: absolute; top:0; right:0; bottom:0;
  width: 50%;
  z-index: 0;
}
.hero-img-wrap img {
  width:100%; height:100%; object-fit:cover;
  filter: brightness(0.38) saturate(0.6);
  display: block;
}
/* Dark gradient over photo */
.hero-img-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--ink) 0%, rgba(6,13,24,0.7) 55%, transparent 100%);
}

/* RED GLOW spot */
.hero-glow {
  position: absolute; top: -100px; left: -100px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(214,40,40,0.12) 0%, transparent 65%);
  z-index: 1; pointer-events: none;
}

.hero-inner {
  position: relative; z-index: 2;
  max-width: 1120px; margin: 0 auto; width: 100%;
  padding: 72px 36px;
  display: grid; grid-template-columns: 1fr 360px; gap: 72px; align-items: center;
}

/* EYEBROW */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 4px;
  color: var(--steel); text-transform: uppercase;
  animation: fadeSlideUp .5s ease both;
}
.eyebrow::before {
  content: '';
  display: block; width: 28px; height: 2px; background: var(--red);
}

/* H1 — emotional, urgent */
.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3rem, 5.5vw, 5.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin-bottom: 28px;
  animation: fadeSlideUp .55s .08s ease both;
}
.hero h1 .line-1 { display: block; }
.hero h1 .line-2 {
  display: block;
  color: var(--red-2);
  /* Slight skew for tension */
  transform: skewX(-2deg);
  display: inline-block;
}
.hero h1 .line-3 {
  display: block;
  font-size: .52em; font-weight: 600; letter-spacing: 2px;
  color: var(--steel); margin-bottom: 6px;
  text-transform: uppercase;
}

.hero-sub {
  font-size: 1.05rem; font-weight: 300;
  color: rgba(255,255,255,0.58); max-width: 480px;
  line-height: 1.78; margin-bottom: 40px;
  animation: fadeSlideUp .55s .18s ease both;
}
.hero-sub strong { color: rgba(255,255,255,0.85); font-weight: 600; }

/* MAIN CTA */
.cta-group {
  display: flex; flex-direction: column; gap: 12px; max-width: 420px;
  animation: fadeSlideUp .55s .28s ease both;
}
.btn-emergency {
  position: relative; overflow: hidden;
  display: flex; align-items: center; gap: 16px;
  background: var(--red); color: white; text-decoration: none;
  padding: 20px 32px; border-radius: var(--radius);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.65rem; font-weight: 800; letter-spacing: 2px;
  text-transform: uppercase;
  transition: background .15s, transform .1s;
  box-shadow: 0 0 0 1px rgba(214,40,40,0.5), 0 12px 48px rgba(214,40,40,0.4);
}
.btn-emergency::after {
  content: '';
  position: absolute; top:0; left:-100%; width:60%; height:100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  animation: shimmer 2.8s infinite;
}
.btn-emergency:hover { background: #b91c2a; transform: translateY(-2px); }
.btn-emergency:active { transform: translateY(0); }
.btn-emergency .ph { font-size: 1.2em; }
.btn-emergency .num {
  display: flex; flex-direction: column; line-height: 1;
}
.btn-emergency .num-label {
  font-size: .38em; letter-spacing: 3px; font-weight: 600;
  color: rgba(255,255,255,0.65); margin-bottom: 3px;
}

.cta-badges {
  display: flex; gap: 18px; flex-wrap: wrap;
}
.cbadge {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.73rem; font-weight: 600; letter-spacing: 0.5px;
  color: rgba(255,255,255,0.4); text-transform: uppercase;
}
.cbadge::before { content: '✓'; color: var(--amber); font-size: 0.85rem; }

/* ── CLOCK WIDGET ── */
.clock-widget {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: 12px; padding: 28px;
  position: relative; overflow: hidden;
  animation: fadeSlideUp .55s .35s ease both;
}
.clock-widget::before {
  content: '';
  position: absolute; top:0; left:0; right:0; height:2px;
  background: linear-gradient(to right, var(--red), var(--amber));
}
.cw-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 4px;
  color: var(--steel); text-transform: uppercase; margin-bottom: 18px;
}
.cw-clock {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem; color: var(--white); line-height: 1;
  letter-spacing: 4px; margin-bottom: 6px;
}
.cw-colon { animation: tick 1s step-end infinite; }
.cw-date {
  font-size: 0.72rem; color: var(--steel); letter-spacing: 1.5px;
  text-transform: uppercase; margin-bottom: 24px;
}
.cw-divider {
  height: 1px; background: var(--line); margin: 20px 0;
}

.cred-list { display: flex; flex-direction: column; gap: 14px; }
.cred-item { display: flex; align-items: center; gap: 12px; }
.cred-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--amber); flex-shrink: 0;
}
.cred-text {
  font-size: 0.82rem; font-weight: 500; color: rgba(255,255,255,0.6);
  letter-spacing: 0.3px;
}
.cred-text strong { color: var(--white); font-weight: 700; }

.cw-call-small {
  margin-top: 22px;
  display: flex; align-items: center; justify-content: center;
  gap: 10px;
  background: rgba(214,40,40,0.12);
  border: 1px solid rgba(214,40,40,0.3);
  border-radius: 6px; padding: 12px;
  text-decoration: none; color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: background .2s;
}
.cw-call-small:hover { background: rgba(214,40,40,0.22); }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  padding: 16px 36px;
}
.trust-bar-inner {
  max-width: 1120px; margin: 0 auto;
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 10px;
}
.tpill {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.82rem; font-weight: 700; letter-spacing: 1.5px;
  color: rgba(255,255,255,0.55); text-transform: uppercase;
}
.tpill .ck { color: var(--amber); }

/* ── SECTION COMMONS ── */
.section-kicker {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.68rem; font-weight: 800; letter-spacing: 4px;
  color: var(--red); text-transform: uppercase; margin-bottom: 10px;
  display: flex; align-items: center; gap: 10px;
}
.section-kicker::before { content:''; display:block; width:20px; height:2px; background:var(--red); }

.section-h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 900;
  line-height: 1.0; text-transform: uppercase;
  letter-spacing: -0.3px; margin-bottom: 12px;
}
.section-h2 em { color: var(--red); font-style: normal; }

/* ── SERVICES ── */
.services {
  padding: 96px 36px;
  background: var(--mist);
}
.services-inner { max-width: 1120px; margin: 0 auto; }
.section-h2 { color: var(--navy); }

.svc-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-top: 52px;
}
.svc-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 10px; padding: 30px 26px;
  position: relative; overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.svc-card::after {
  content: '';
  position: absolute; bottom:0; left:0; right:0; height:3px;
  background: linear-gradient(to right, var(--red), var(--amber));
  transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.svc-card:hover { transform: translateY(-5px); box-shadow: 0 12px 48px rgba(0,0,0,0.1); }
.svc-card:hover::after { transform: scaleX(1); }

.svc-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem; line-height: 1; color: rgba(0,0,0,0.05);
  position: absolute; top: 16px; right: 18px; pointer-events: none;
}
.svc-ico { font-size: 1.8rem; margin-bottom: 14px; }
.svc-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem; font-weight: 800; color: var(--navy);
  text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 8px;
}
.svc-card p { font-size: 0.875rem; color: var(--steel); line-height: 1.7; }

/* ── GALLERY ── */
.gallery {
  padding: 96px 36px; background: var(--white);
}
.gallery-inner { max-width: 1120px; margin: 0 auto; }

.gallery-grid {
  display: grid;
  /* Asymmetric: large left, two stacked right */
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
  margin-top: 52px;
}
.gal-main { grid-row: 1 / 3; }
.gal-item {
  position: relative; border-radius: 10px; overflow: hidden;
  background: var(--navy);
}
.gal-main img { width:100%; height:100%; min-height:360px; object-fit:cover; display:block; }
.gal-item img { width:100%; height:200px; object-fit:cover; display:block; }

/* Image overlay on hover */
.gal-overlay {
  position: absolute; inset:0;
  background: linear-gradient(to top, rgba(6,13,24,0.85) 0%, transparent 55%);
  opacity: 0; transition: opacity .35s;
  display: flex; align-items: flex-end; padding: 18px;
}
.gal-item:hover .gal-overlay { opacity:1; }
.gal-overlay-text {
  font-size: 0.78rem; color: rgba(255,255,255,0.8); font-style: italic; line-height:1.5;
}

/* STATIC caption (required disclaimer) */
.gal-cap {
  padding: 9px 14px;
  font-size: 0.68rem; color: var(--steel); font-style: italic;
  background: var(--mist);
  border-radius: 0 0 10px 10px;
}


/* Gallery row 2 — 3 colonnes égales */
.gallery-grid-3 {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.gallery-grid-3 .gal-item img { height: 200px; }
/* Stack pour colonne droite asymétrique */
.gal-stack { display: flex; flex-direction: column; }
.gal-stack .gal-item { flex: 1; }
.gal-stack .gal-item img { height: 100%; min-height: 160px; }
@media (max-width: 768px) {
  .gallery-grid-3 { grid-template-columns: 1fr; }
  .gal-stack { flex-direction: column; }
}

/* ── PROCESS ── */
.process {
  padding: 96px 36px;
  background: var(--navy);
  position: relative; overflow: hidden;
}
.process::after {
  content: '';
  position: absolute; top:0; right:0; bottom:0; width: 40%;
  background: radial-gradient(ellipse at right center, rgba(214,40,40,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.process-inner { max-width: 1120px; margin: 0 auto; }
.process .section-kicker { color: var(--amber); }
.process .section-kicker::before { background: var(--amber); }
.process .section-h2 { color: var(--white); }

.proc-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  margin-top: 56px; position: relative;
}
/* Horizontal connector */
.proc-grid::before {
  content: '';
  position: absolute; top: 44px; left: calc(12.5% + 20px); right: calc(12.5% + 20px);
  height: 1px;
  background: linear-gradient(to right, rgba(214,40,40,0.6), rgba(232,160,32,0.6), rgba(214,40,40,0.6));
  z-index: 0;
}

.proc-step { text-align: center; padding: 0 16px; position: relative; z-index: 1; }
.proc-num-wrap {
  width: 88px; height: 88px; margin: 0 auto 24px;
  border-radius: 50%; border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  background: var(--navy);
  position: relative;
}
.proc-num-wrap::before {
  content: '';
  position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid rgba(214,40,40,0.3);
}
.proc-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem; color: var(--red-2); line-height: 1;
}
.proc-step h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem; font-weight: 800; color: var(--white);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px;
}
.proc-step p { font-size: 0.82rem; color: rgba(255,255,255,0.42); line-height: 1.7; }

/* ── CTA BAND ── */
.cta-band {
  background: var(--red);
  padding: 72px 36px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -50deg, transparent, transparent 22px,
    rgba(255,255,255,0.028) 22px, rgba(255,255,255,0.028) 23px
  );
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem); font-weight: 900;
  color: white; text-transform: uppercase; letter-spacing: -0.3px;
  line-height: 0.95; margin-bottom: 12px;
}
.cta-band p { color: rgba(255,255,255,0.75); font-size: 1.05rem; margin-bottom: 36px; }

.btn-white {
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--white); color: var(--red); text-decoration: none;
  padding: 20px 44px; border-radius: var(--radius);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.65rem; font-weight: 900; letter-spacing: 2px;
  text-transform: uppercase;
  transition: transform .15s, box-shadow .2s;
  box-shadow: 0 12px 48px rgba(0,0,0,0.28);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 18px 60px rgba(0,0,0,0.36); }
.cta-micro { margin-top: 18px; font-size: 0.78rem; color: rgba(255,255,255,0.55); letter-spacing: 0.5px; }

/* ── COUNTIES ── */
.counties { padding: 96px 36px; background: var(--mist); }
.counties-inner { max-width: 1120px; margin: 0 auto; }

.county-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  margin-top: 52px;
}
.county-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 10px; padding: 26px 22px;
  transition: transform .2s, box-shadow .2s;
}
.county-card:hover { transform: translateY(-3px); box-shadow: 0 8px 36px rgba(0,0,0,0.09); }
.county-tag {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.62rem; font-weight: 800; letter-spacing: 3px;
  color: var(--red); text-transform: uppercase;
  border-bottom: 2px solid var(--red);
  padding-bottom: 2px; margin-bottom: 14px;
}
.county-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem; font-weight: 900; color: var(--navy);
  text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 16px;
}
.county-cities { list-style: none; }
.county-cities li {
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding: 5px 0;
}
.county-cities li:last-child { border-bottom: none; }
.county-cities a {
  font-size: 0.875rem; color: #334155; text-decoration: none; font-weight: 500;
  display: flex; align-items: center; justify-content: space-between;
  transition: color .15s;
}
.county-cities a:hover { color: var(--red); }
.county-cities a::after { content: '→'; opacity: 0; transition: opacity .15s; font-size: 0.75rem; }
.county-cities a:hover::after { opacity: 1; }

/* ── SEO TEXT ── */
.seo-block { padding: 96px 36px; background: var(--white); }
.seo-block-inner { max-width: 860px; margin: 0 auto; }
.seo-block .section-h2 { color: var(--navy); margin-bottom: 36px; }

.seo-block h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem; font-weight: 800; color: var(--navy);
  text-transform: uppercase; letter-spacing: 0.5px;
  margin: 40px 0 14px;
  padding-left: 14px;
  border-left: 3px solid var(--red);
}
.seo-block p {
  font-size: 0.96rem; color: #475569; line-height: 1.84; margin-bottom: 14px;
}
.seo-block a { color: var(--red); font-weight: 600; text-decoration: none; }
.seo-block a:hover { text-decoration: underline; }

/* ── FAQ ── */
.faq { padding: 96px 36px; background: var(--navy); }
.faq-inner { max-width: 800px; margin: 0 auto; }
.faq .section-kicker { color: var(--amber); justify-content: center; }
.faq .section-kicker::before { background: var(--amber); }
.faq .section-h2 { color: var(--white); text-align: center; margin-bottom: 52px; }
.faq .section-h2::before { display: none; }

.faq-item {
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.faq-btn {
  width: 100%; background: none; border: none;
  padding: 22px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem; font-weight: 700; color: rgba(255,255,255,0.75);
  text-transform: uppercase; letter-spacing: 0.5px;
  cursor: pointer; text-align: left;
  transition: color .15s;
}
.faq-btn:hover { color: var(--white); }
.faq-item.open .faq-btn { color: var(--white); }
.faq-ico {
  font-size: 1.3rem; color: var(--red-2); flex-shrink: 0;
  transition: transform .3s; font-style: normal;
}
.faq-item.open .faq-ico { transform: rotate(45deg); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-body { max-height: 280px; }
.faq-body p {
  padding: 0 0 22px;
  font-size: 0.9rem; color: rgba(255,255,255,0.5); line-height: 1.78;
}
.faq-body a { color: var(--red-2); font-weight: 600; text-decoration: none; }

/* ── FINAL CTA ── */
.final-cta {
  background: var(--ink); padding: 80px 36px; text-align: center;
  position: relative; overflow: hidden;
  border-top: 1px solid rgba(214,40,40,0.35);
}
.final-cta::before {
  content: '';
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 800px; height: 400px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(214,40,40,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.final-cta > * { position: relative; z-index: 1; }
.final-cta h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem,4vw,3.5rem); font-weight: 900;
  color: var(--white); text-transform: uppercase; line-height: 1.0;
  margin-bottom: 12px;
}
.final-cta p { color: var(--steel); margin-bottom: 36px; }

/* ── FOOTER ── */
footer {
  background: var(--ink);
  border-top: 2px solid rgba(214,40,40,0.4);
  padding: 64px 36px 32px;
}
.footer-inner { max-width: 1120px; margin: 0 auto; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  margin-bottom: 52px;
}
.footer-brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem; font-weight: 900; color: var(--white);
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px;
}
.footer-brand span { color: var(--red-2); }
.footer-desc { font-size: 0.83rem; color: rgba(255,255,255,0.35); line-height: 1.75; margin-bottom: 24px; }
.footer-tel {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--white); text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem; font-weight: 700; letter-spacing: 1.5px;
  transition: color .2s;
}
.footer-tel:hover { color: var(--red-2); }
.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.68rem; font-weight: 800; letter-spacing: 3.5px;
  color: var(--amber); text-transform: uppercase; margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 7px; }
.footer-col a {
  font-size: 0.83rem; color: rgba(255,255,255,0.4); text-decoration: none;
  transition: color .15s;
}
.footer-col a:hover { color: var(--white); }

.footer-disclaimer {
  font-size: 0.7rem; color: rgba(255,255,255,0.25); line-height: 1.8;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  margin-bottom: 20px;
}
.footer-disclaimer strong { color: rgba(255,255,255,0.4); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.7rem; color: rgba(255,255,255,0.18);
  border-top: 1px solid var(--line); padding-top: 18px;
  flex-wrap: wrap; gap: 8px;
}

/* ── MOBILE ── */
.mobile-bar { display: none; }

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-img-wrap { opacity: 0.3; }
  .clock-widget { display: none; }
  .proc-grid { grid-template-columns: repeat(2,1fr); }
  .proc-grid::before { display: none; }
}

@media (max-width: 768px) {
  header { padding: 0 16px; }
  .hnav { display: none; }
  .status-pill { display: none; }
  .hcta { padding: 9px 14px; font-size: .95rem; }
  .hero { min-height: auto; }
  .hero-inner { padding: 52px 20px 64px; gap: 36px; }
  .hero h1 { font-size: 3rem; }
  .btn-emergency { font-size: 1.3rem; padding: 17px 24px; }
  .svc-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gal-main { grid-row: auto; }
  .gal-main img { min-height: 240px; height: 240px; }
  .county-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .mobile-bar {
    display: block !important;
    position: fixed; bottom:0; left:0; right:0; z-index:999;
    background: var(--red);
    padding: 14px 20px calc(14px + env(safe-area-inset-bottom, 0px));
    box-shadow: 0 -4px 28px rgba(0,0,0,0.4);
  }
  .mobile-bar a {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    color: white; text-decoration: none;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.25rem; font-weight: 800; letter-spacing: 1.5px;
    text-transform: uppercase;
  }
  body { padding-bottom: 72px; }
}

/* ── HEADER RIGHT GROUP (v2 fix) ── */
.header-right { display:flex;align-items:center;gap:12px; }

/* ── DEFENSIVE: Orphan content inside <main> ──
   Catches any h3, p, table that ends up between sections
   without a .seo-block wrapper. Should never happen, but
   this prevents unstyled content if it does. */
main > h3,
main > p,
main > table {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 36px;
  padding-right: 36px;
}
main > h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem; font-weight: 800; color: var(--navy);
  text-transform: uppercase; letter-spacing: 0.5px;
  margin-top: 40px; margin-bottom: 14px;
  padding-left: 50px;
  border-left: 3px solid var(--red);
}
main > p {
  font-size: 0.96rem; color: #475569; line-height: 1.84;
  margin-bottom: 14px;
}
main > p a { color: var(--red); font-weight: 600; text-decoration: none; }
main > p a:hover { text-decoration: underline; }
main > p strong.stat { color: var(--red-2); }

/* ── CLOCK AM/PM LABEL ── */
.cw-ampm {
  font-size: 0.45em;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--amber);
  vertical-align: super;
  margin-left: 4px;
}
