/* ============================================================
   Ridge & Iron Roofing — styles.css  v2 — Premium Refinement
   Dark charcoal / slate / copper — industrial premium
   ============================================================ */

/* ── RESET ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --copper:        #8E1F26;
  --copper-light:  #A82530;
  --copper-pale:   #D4959A;
  --copper-dark:   #6F171D;
  --copper-dim:    rgba(192, 98, 46, 0.15);
  --charcoal:      #1B1D21;
  --charcoal-mid:  #222428;
  --charcoal-light:#263040;
  --slate:         #8A9098;
  --slate-mid:     #8A9098;
  --slate-light:   #A0A8B0;
  --white:         #ffffff;
  --off-white:     #F5F1EB;
  --warm-white:    #EDE8DE;
  --stone:         #E9E4DC;
  --light-border:  #d0ccc4;
  --border:        #D0CAC0;
  --text:          #17191C;
  --text-muted:    #666A70;
  --ink:           #121315;

  --font-display:  'Barlow Condensed', Impact, sans-serif;
  --font-body:     'Barlow', system-ui, sans-serif;

  --container:     1200px;
  --radius:        3px;
  --radius-lg:     6px;
  --ease:          cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --dur:           0.2s;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background: var(--off-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }
button { cursor: pointer; background: none; border: none; font: inherit; }

:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ── SKIP LINK ────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  padding: 0.75rem 1.5rem;
  background: var(--copper);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius);
  z-index: 999;
  transition: top var(--dur);
}
.skip-link:focus { top: 1rem; }

/* ── CONTAINER ────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
}

/* ── TYPOGRAPHY ───────────────────────────────────────────── */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(3rem, 7.5vw, 6rem); text-transform: uppercase; }
h2 { font-size: clamp(2.1rem, 5vw, 3.5rem); text-transform: uppercase; }
h3 { font-size: clamp(1.05rem, 2.5vw, 1.35rem); text-transform: uppercase; letter-spacing: 0.03em; }
em { font-style: italic; color: var(--copper-light); }
p  { max-width: 65ch; line-height: 1.72; }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.9rem 2.25rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: background var(--dur), color var(--dur),
              border-color var(--dur), box-shadow var(--dur), transform var(--dur);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--copper);
  color: var(--white);
  border-color: var(--copper);
  box-shadow: 0 4px 20px rgba(142, 31, 38, 0.4);
}
.btn-primary:hover {
  background: var(--copper-light);
  border-color: var(--copper-light);
  box-shadow: 0 8px 32px rgba(142, 31, 38, 0.55);
}

.btn-secondary {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn-secondary:hover { background: var(--charcoal); color: var(--white); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.9);
}

.btn-lg { padding: 1.1rem 2.75rem; font-size: 0.9375rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── SECTION SHARED ───────────────────────────────────────── */
.section { padding-block: clamp(5rem, 9vw, 8rem); }

.section-header {
  max-width: 700px;
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
}
.section-header h2 { margin-block: 0.6rem 1.1rem; }
.section-header p { color: var(--text-muted); font-size: 1.0625rem; line-height: 1.72; }
.section-header p.light { color: rgba(255,255,255,0.55); }
h2.light { color: var(--white); }

/* Section label — copper rule left */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--slate-mid);
}
.section-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: currentColor;
  flex-shrink: 0;
}
.section-label--copper { color: var(--copper); }
.section-label--light  { color: rgba(255,255,255,0.45); }

/* ── HEADER ───────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: box-shadow var(--dur);
}
.site-header.scrolled .header-main {
  box-shadow: 0 6px 32px rgba(0,0,0,0.45);
}


.header-emergency {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--copper-light);
  transition: color var(--dur);
}
.header-emergency:hover { color: var(--copper-pale); }

/* Main bar */
.header-main {
  background: var(--charcoal);
  border-bottom: 3px solid var(--copper);
  transition: box-shadow var(--dur);
}
.header-main-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 74px;
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
  color: var(--white);
  transition: opacity var(--dur);
}
.brand:hover { opacity: 0.85; }
.brand-icon { width: 38px; height: 32px; color: var(--copper); flex-shrink: 0; }
.brand-icon svg { width: 100%; height: 100%; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
}
.brand-sub {
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--copper);
  margin-top: 2px;
}

/* Nav */
.primary-nav { flex: 1; display: flex; justify-content: center; }
.primary-nav ul { display: flex; gap: 0; }
.primary-nav a {
  color: rgba(255,255,255,0.65);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 0.9rem;
  position: relative;
  transition: color var(--dur);
}
.primary-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0.9rem; right: 0.9rem;
  height: 2px;
  background: var(--copper);
  transform: scaleX(0);
  transition: transform 0.25s var(--ease);
}
.primary-nav a:hover { color: var(--white); }
.primary-nav a:hover::after { transform: scaleX(1); }

/* Header CTA */
.header-cta { display: flex; align-items: center; gap: 1.5rem; flex-shrink: 0; }
.header-phone {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--copper-light);
  letter-spacing: 0.04em;
  transition: color var(--dur);
}
.header-phone:hover { color: var(--copper-pale); }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
  transition: transform var(--dur), opacity var(--dur);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--charcoal);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1rem clamp(1.25rem, 4vw, 3rem) 2rem;
}
.mobile-nav ul { display: flex; flex-direction: column; margin-bottom: 1.25rem; }
.mobile-nav li a {
  display: block;
  padding: 0.9rem 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color var(--dur);
}
.mobile-nav li a:hover { color: var(--copper-light); }
.mobile-nav .btn { margin-bottom: 1rem; }
.mobile-emergency {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--copper-light);
  text-align: center;
  letter-spacing: 0.04em;
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 0;
}

.hero-photo-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-photo-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.hero-photo-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(18, 19, 21, 0.97) 0%,
    rgba(18, 19, 21, 0.90) 38%,
    rgba(18, 19, 21, 0.55) 62%,
    rgba(18, 19, 21, 0.1) 100%
  ),
  linear-gradient(
    to top,
    rgba(18, 19, 21, 0.55) 0%,
    transparent 45%
  );
}
.hero-content-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-block: clamp(4rem, 8vw, 7rem);
}
.hero-left-panel {
  max-width: 620px;
}

/* Grain texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
  opacity: 0.4;
  mix-blend-mode: overlay;
}

/* Strong copper bottom edge */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--copper-dark), var(--copper) 40%, var(--copper-light) 60%, var(--copper-dark));
  z-index: 3;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding-block: 4rem;
}

/* Alert pill */
.hero-alert {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper-light);
  background: rgba(192, 98, 46, 0.14);
  border: 1px solid rgba(192, 98, 46, 0.45);
  padding: 0.5rem 1.1rem;
  border-radius: 2px;
  margin-bottom: 2rem;
}

.hero-alert-dot {
  display: inline-block;
  width: 7px; height: 7px;
  background: var(--copper);
  border-radius: 50%;
  animation: pulse 1.8s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(1.5); }
}

.hero-title {
  color: var(--white);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 48px rgba(0,0,0,0.6);
  line-height: 0.98;
}

.hero-subtitle {
  color: rgba(255,255,255,0.68);
  font-size: clamp(1rem, 2vw, 1.175rem);
  font-weight: 300;
  max-width: 540px;
  margin-bottom: 1.75rem;
  line-height: 1.72;
}

/* Clickable phone in hero */
.hero-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--copper-light);
  margin-bottom: 2.25rem;
  transition: color var(--dur);
  border-bottom: 1px solid rgba(192,98,46,0.3);
  padding-bottom: 0.25rem;
}
.hero-phone:hover { color: var(--copper-pale); border-bottom-color: var(--copper-light); }

.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ── TRUST BAR ────────────────────────────────────────────── */
.trust-bar {
  background: var(--charcoal);
  border-top: none;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
}
/* Copper top rule */
.trust-bar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--copper-dark), var(--copper) 50%, var(--copper-dark));
}

.trust-bar-inner {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  text-align: center;
  flex: 1;
  min-width: 130px;
  padding: 1.75rem 1rem;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.trust-item:last-child { border-right: none; }

.trust-item strong {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--copper-light);
  line-height: 1;
  letter-spacing: 0.02em;
}
.trust-item span {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
}
.trust-divider { display: none; }

/* ── SERVICES ─────────────────────────────────────────────── */
.section-services {
  background: #E9E4DC;
  position: relative;
}
.section-services::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--light-border) 20%, var(--light-border) 80%, transparent);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--light-border);
  border: 1.5px solid var(--light-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 6px 40px rgba(0,0,0,0.1), 0 1px 4px rgba(0,0,0,0.06);
}

.service-card {
  background: var(--white);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  position: relative;
  border-right: 1px solid var(--light-border);
  border-bottom: 1px solid var(--light-border);
  transition: background var(--dur);
}
.service-card:hover { background: var(--warm-white); }

/* Copper reveal on hover */
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 3px;
  background: var(--copper);
  transition: width 0.35s var(--ease);
}
.service-card:hover::after { width: 100%; }

/* Featured large card */
.service-card--featured {
  grid-column: span 2;
  background: var(--charcoal);
  border-color: transparent;
}
.service-card--featured:hover { background: var(--charcoal-mid); }
.service-card--featured h3 { color: var(--white); }
.service-card--featured p { color: rgba(255,255,255,0.6); }
.service-card--featured .service-card-icon { color: var(--copper); }
.service-card--featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--copper);
}

.service-card-icon { width: 44px; height: 44px; color: var(--copper); }
.service-card-icon svg { width: 100%; height: 100%; }

.service-card h3 { font-size: 1.05rem; color: var(--charcoal); }
.service-card p  { font-size: 0.9rem; color: var(--text-muted); line-height: 1.68; flex: 1; }

.service-features {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.service-features li {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.52);
  padding-left: 1.2rem;
  position: relative;
  line-height: 1.5;
}
.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--copper);
  font-size: 0.72rem;
  top: 0.1em;
}

.service-link {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper);
  align-self: flex-start;
  transition: color var(--dur), gap var(--dur);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.25rem;
}
.service-link:hover { color: var(--copper-dark); gap: 0.65rem; }
.service-link--urgent { color: var(--copper-light); }

/* ── STORM SECTION ────────────────────────────────────────── */
.section-storm {
  background: #1B1D21;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

/* Diagonal texture stripe */
.section-storm::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--copper);
}

/* Background pattern */
.section-storm::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,0.012) 40px,
    rgba(255,255,255,0.012) 80px
  );
  pointer-events: none;
}

.storm-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.storm-content { display: flex; flex-direction: column; gap: 1.5rem; }
.storm-content h2 { color: var(--white); }

.storm-lead {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.82);
  font-weight: 400;
  line-height: 1.68;
}
.storm-content > p:not(.storm-lead) {
  color: rgba(255,255,255,0.56);
  font-size: 0.9375rem;
}

.storm-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  overflow: hidden;
}

.storm-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background var(--dur);
}
.storm-step:last-child { border-bottom: none; }
.storm-step:hover { background: rgba(255,255,255,0.04); }

.storm-step-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--copper);
  line-height: 1;
  flex-shrink: 0;
  min-width: 2.25rem;
  opacity: 0.85;
}
.storm-step strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.storm-step p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  max-width: none;
  margin: 0;
  line-height: 1.6;
}

/* Storm stat cards */
.storm-visual { display: flex; justify-content: center; align-items: center; }

.storm-card-stack {
  position: relative;
  width: 300px;
  height: 300px;
}

.storm-stat-card {
  position: absolute;
  background: var(--charcoal-mid);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.storm-stat-card strong {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--copper-light);
  line-height: 1;
  letter-spacing: 0.02em;
}
.storm-stat-card span {
  font-size: 0.775rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.45;
  font-weight: 400;
}
.storm-stat-card--1 { top: 0; left: 0; width: 155px; border-top: 3px solid var(--copper); }
.storm-stat-card--2 { top: 35px; right: 0; width: 145px; }
.storm-stat-card--3 { bottom: 55px; left: 15px; width: 150px; }

.storm-badge {
  position: absolute;
  bottom: 0; right: 5px;
  width: 85px; height: 85px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  color: var(--copper);
}
.storm-badge svg { width: 52px; height: 52px; }
.storm-badge span {
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  text-align: center;
  line-height: 1.3;
}

/* ── WHY US ───────────────────────────────────────────────── */
.section-why { background: var(--warm-white); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.why-card {
  background: var(--white);
  border: 1px solid var(--light-border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  position: relative;
  transition: transform var(--dur), box-shadow var(--dur), border-color var(--dur);
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 1.5rem; right: 1.5rem;
  height: 0;
  background: var(--copper);
  transition: height 0.25s var(--ease);
  border-radius: 0 0 2px 2px;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
  border-color: var(--copper);
}
.why-card:hover::before { height: 3px; }

.why-icon { width: 40px; height: 40px; color: var(--copper); }
.why-icon svg { width: 100%; height: 100%; }
.why-card h3 { font-size: 0.95rem; color: var(--charcoal); }
.why-card p  { font-size: 0.875rem; color: var(--text-muted); line-height: 1.72; }

/* ── PROJECTS ─────────────────────────────────────────────── */
.section-projects { background: var(--ink); }
.section-projects .section-label--light::before { background: rgba(255,255,255,0.3); }

.projects-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.project-card {
  background: var(--charcoal-mid);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--dur), border-color var(--dur), box-shadow var(--dur);
}
.project-card:hover {
  transform: translateY(-4px);
  border-color: rgba(192, 98, 46, 0.5);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}
.project-card--large { grid-column: 1 / -1; }

.project-img { overflow: hidden; position: relative; }
.project-img::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 35%;
  background: linear-gradient(to top, rgba(12,16,24,0.6), transparent);
  pointer-events: none;
}
.project-img svg {
  width: 100%; height: auto; display: block;
  transition: transform 0.5s var(--ease);
}
.project-card:hover .project-img svg { transform: scale(1.03); }

.project-info {
  padding: clamp(1.1rem, 2.5vw, 1.6rem);
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.project-tag {
  font-family: var(--font-display);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper);
}
.project-info h3 { font-size: 1.05rem; color: var(--white); }
.project-info p  { font-size: 0.875rem; color: rgba(255,255,255,0.48); line-height: 1.62; }

/* ── REVIEWS ──────────────────────────────────────────────── */
.section-reviews {
  background: #F5F1EB;
  position: relative;
}
.section-reviews::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--copper-dark) 20%, var(--copper) 50%, var(--copper-dark) 80%, transparent);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--light-border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 2.5vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  transition: transform var(--dur), box-shadow var(--dur);
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(0,0,0,0.09);
}

/* Featured review */
.review-card--featured {
  grid-column: 1 / -1;
  background: var(--charcoal);
  border: none;
  border-left: 5px solid var(--copper);
}
.review-card--featured blockquote p {
  color: rgba(255,255,255,0.82);
  font-size: clamp(1rem, 2vw, 1.15rem);
}
.review-card--featured cite strong { color: var(--white); }
.review-card--featured cite { border-top-color: rgba(255,255,255,0.1); }
.review-card--featured cite span { color: rgba(255,255,255,0.38); }

/* Quote mark */
.review-card::before {
  content: '\201C';
  position: absolute;
  top: 0.5rem; right: 1.25rem;
  font-family: Georgia, serif;
  font-size: 5.5rem;
  line-height: 1;
  color: var(--stone);
  pointer-events: none;
}
.review-card--featured::before { color: rgba(255,255,255,0.05); }

.review-stars { color: var(--copper); font-size: 0.875rem; letter-spacing: 0.12em; }

blockquote p {
  font-size: clamp(0.9rem, 1.8vw, 0.9875rem);
  color: var(--text-muted);
  line-height: 1.72;
  max-width: none;
  font-style: italic;
}

cite {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-style: normal;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--stone);
}
cite strong {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal);
}
cite span { font-size: 0.775rem; color: var(--text-muted); }

/* ── SERVICE AREA ─────────────────────────────────────────── */
.section-area { background: #E9E4DC; }

.area-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.area-content { display: flex; flex-direction: column; gap: 1.25rem; }
.area-content > p { color: var(--text-muted); font-size: 0.9375rem; line-height: 1.72; }

.area-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem 1.5rem;
}
.area-list li {
  font-size: 0.9375rem;
  color: var(--text);
  padding-left: 1.15rem;
  position: relative;
}
.area-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--copper);
  font-size: 0.7rem;
  top: 0.35em;
}

.area-note { font-size: 0.875rem; color: var(--text-muted); font-style: italic; }

.area-map-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.14);
  border: 1px solid var(--light-border);
}
.area-map-card svg { width: 100%; height: auto; display: block; }

/* ── FAQ ──────────────────────────────────────────────────── */
.section-faq { background: var(--off-white); }

.faq-list {
  max-width: 800px;
  border-top: 2px solid var(--charcoal);
}
.faq-item { border-bottom: 1px solid var(--light-border); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 1.4rem;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--charcoal);
  transition: color var(--dur);
}
.faq-question:hover { color: var(--copper); }

.faq-icon {
  width: 22px; height: 22px;
  border: 2px solid var(--light-border);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  transition: border-color var(--dur), transform var(--dur);
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 8px; height: 2px;
  background: var(--slate-mid);
  transform: translate(-50%, -50%);
  transition: transform var(--dur), opacity var(--dur);
}
.faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-question[aria-expanded="true"] .faq-icon {
  border-color: var(--copper);
  transform: rotate(45deg);
}
.faq-question[aria-expanded="true"] .faq-icon::after { opacity: 0; }
.faq-question[aria-expanded="true"] { color: var(--copper); }

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s var(--ease);
}
.faq-answer > div { overflow: hidden; }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-answer p {
  padding-bottom: 1.5rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 660px;
}

/* ── CONTACT ──────────────────────────────────────────────── */
.section-contact {
  background: #1B1D21;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.section-contact::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--copper);
}
/* Background diagonal */
.section-contact::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 60px,
    rgba(255,255,255,0.01) 60px,
    rgba(255,255,255,0.01) 120px
  );
  pointer-events: none;
}

.contact-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 1.75rem; }
.contact-info h2 { color: var(--white); }
.contact-info > p { color: rgba(255,255,255,0.62); font-size: 0.9375rem; line-height: 1.75; }

.contact-details { display: flex; flex-direction: column; gap: 1.1rem; }
.contact-detail { display: flex; flex-direction: column; gap: 0.25rem; }
.contact-detail-label {
  font-family: var(--font-display);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  font-weight: 700;
}
.contact-detail a,
.contact-detail address,
.contact-detail span {
  color: rgba(255,255,255,0.78);
  font-size: 0.9375rem;
  line-height: 1.55;
}
.contact-detail a:hover { color: var(--white); }
.emergency-link { color: var(--copper-light) !important; font-weight: 600; }
.emergency-link:hover { color: var(--copper-pale) !important; }

.contact-trust {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.contact-trust span {
  font-size: 0.825rem;
  color: rgba(255,255,255,0.48);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 3.5vw, 3rem);
  box-shadow: 0 32px 80px rgba(0,0,0,0.4);
  border-top: 4px solid var(--copper);
}

.form-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--charcoal);
}
label span { color: var(--copper); }

input, select, textarea {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--charcoal);
  background: var(--off-white);
  border: 1.5px solid var(--light-border);
  border-radius: var(--radius);
  padding: 0.8rem 1rem;
  width: 100%;
  transition: border-color var(--dur), box-shadow var(--dur), background var(--dur);
  appearance: none;
}
input::placeholder, textarea::placeholder { color: var(--text-muted); opacity: 0.55; }
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--copper);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(192, 98, 46, 0.12);
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2358564e' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

textarea { resize: vertical; min-height: 90px; }

.form-note {
  font-size: 0.775rem;
  color: var(--text-muted);
  text-align: center;
  max-width: none;
  line-height: 1.55;
}

.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  padding: 2.5rem 1rem;
}
.form-success svg { width: 52px; height: 52px; color: var(--copper); }
.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--charcoal);
}
.form-success p { font-size: 0.9375rem; color: var(--text-muted); max-width: 360px; }

/* ── FOOTER ───────────────────────────────────────────────── */
.site-footer {
  background: #121315;
  color: rgba(255,255,255,0.42);
  border-top: 3px solid var(--copper-dark);
}

.footer-upper {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: clamp(3rem, 5vw, 5rem);
  padding-block: clamp(3.5rem, 5vw, 5rem);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand .brand--footer { margin-bottom: 1.1rem; }
.brand--footer .brand-icon { color: var(--copper); }
.footer-brand p { font-size: 0.875rem; line-height: 1.7; max-width: 280px; }
.footer-phone {
  display: inline-block;
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--copper-light);
  letter-spacing: 0.04em;
  transition: color var(--dur);
}
.footer-phone:hover { color: var(--copper-pale); }

.footer-nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1.1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col li { font-size: 0.8125rem; line-height: 1.5; }
.footer-col a { color: rgba(255,255,255,0.38); transition: color var(--dur); }
.footer-col a:hover { color: rgba(255,255,255,0.82); }

.footer-lower {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-block: 1.5rem;
  font-size: 0.775rem;
}

/* ── EMERGENCY BAR ────────────────────────────────────────── */
.emergency-bar {
  background: #6F171D;
  padding-block: 0.6rem;
}
.emergency-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.emergency-bar-dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--copper-pale);
  border-radius: 50%;
  animation: pulse 1.8s ease-in-out infinite;
  flex-shrink: 0;
}
.emergency-bar-text {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
}
.emergency-bar-cta {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--copper-pale);
  border: 1px solid rgba(242, 200, 152, 0.45);
  padding: 0.25rem 0.9rem;
  border-radius: 2px;
  transition: background var(--dur), color var(--dur);
  white-space: nowrap;
}
.emergency-bar-cta:hover {
  background: rgba(242, 200, 152, 0.15);
  color: var(--white);
}

/* ── HERO 2-COLUMN ────────────────────────────────────────── */
.hero-left { display: flex; flex-direction: column; }
.hero-house-svg {
  width: 100%;
  max-width: 480px;
  height: auto;
  filter: drop-shadow(0 24px 64px rgba(0,0,0,0.65));
}
.hero-proof {
  display: flex;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 2rem;
}
.hero-proof-item { display: flex; flex-direction: column; gap: 0.2rem; }
.hero-proof-item strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--copper-light);
  letter-spacing: 0.02em;
  line-height: 1;
}
.hero-proof-item span {
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
}

/* ── SITUATION SECTION ────────────────────────────────────── */
.section-situation {
  background: #F5F1EB;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.section-situation::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--copper);
}
.section-situation .section-header h2 { color: var(--white); }
.section-situation .section-header p  { color: rgba(255,255,255,0.55); }

.situation-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.situation-card {
  background: var(--charcoal-mid);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 2.5vw, 2.25rem);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--dur), border-color var(--dur), box-shadow var(--dur);
}
.situation-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--copper);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease);
}
.situation-card:hover {
  transform: translateY(-4px);
  border-color: rgba(192, 98, 46, 0.45);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.situation-card:hover::after { transform: scaleX(1); }

.situation-icon { width: 48px; height: 48px; color: var(--copper); }
.situation-icon svg { width: 100%; height: 100%; }
.situation-card h3 { font-size: 1.05rem; color: var(--white); }
.situation-card p  { font-size: 0.875rem; color: rgba(255,255,255,0.55); line-height: 1.68; flex: 1; }

.situation-cta {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper);
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.25rem;
  transition: color var(--dur), gap var(--dur);
}
.situation-cta:hover { color: var(--copper-light); gap: 0.65rem; }
.situation-cta--urgent { color: var(--copper-light); }

/* ── PROCESS SECTION ──────────────────────────────────────── */
.section-process {
  background: #1B1D21;
  position: relative;
}
.section-process::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--light-border) 20%, var(--light-border) 80%, transparent);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::after {
  content: '';
  position: absolute;
  top: 2.6rem;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--copper-dark), var(--copper) 50%, var(--copper-dark));
  opacity: 0.22;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 clamp(0.75rem, 2vw, 1.75rem);
  position: relative;
}
.process-step:first-child { padding-left: 0; }
.process-step:last-child  { padding-right: 0; }

.process-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--copper);
  line-height: 1;
  margin-bottom: 1.25rem;
  opacity: 0.85;
  position: relative;
  z-index: 1;
}

.process-content h3 { font-size: 1rem; color: var(--charcoal); margin-bottom: 0.6rem; }
.process-content p  { font-size: 0.875rem; color: var(--text-muted); line-height: 1.72; }

/* ── WHAT HAPPENS NEXT ────────────────────────────────────── */
.what-happens-next {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.what-happens-next h4 {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.32);
  margin-bottom: 1rem;
}
.next-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  counter-reset: next-counter;
}
.next-steps li {
  counter-increment: next-counter;
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.55;
}
.next-steps li::before {
  content: counter(next-counter);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--copper);
  background: rgba(192, 98, 46, 0.14);
  border: 1px solid rgba(192, 98, 46, 0.35);
  min-width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ── SCROLL ANIMATIONS ────────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .fade-up {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.58s var(--ease), transform 0.58s var(--ease);
  }
  .fade-up.visible { opacity: 1; transform: none; }
  .fade-up:nth-child(2) { transition-delay: 0.07s; }
  .fade-up:nth-child(3) { transition-delay: 0.14s; }
  .fade-up:nth-child(4) { transition-delay: 0.21s; }
  .fade-up:nth-child(5) { transition-delay: 0.28s; }
  .fade-up:nth-child(6) { transition-delay: 0.35s; }
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .storm-layout,
  .area-layout,
  .contact-layout { grid-template-columns: 1fr; }
  .storm-visual { display: none; }
  .area-visual  { display: none; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .footer-upper { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-card--featured { grid-column: span 1; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .situation-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::after { display: none; }
}

@media (max-width: 768px) {
  .header-top { display: none; }
  .primary-nav { display: none; }
  .header-cta .header-phone,
  .header-cta .btn { display: none; }
  .nav-toggle { display: flex; }
  .mobile-nav[aria-hidden="false"] { display: flex; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-proof { gap: 1.25rem; }
  .situation-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .project-card--large { grid-column: auto; }
  .why-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card--featured { grid-column: auto; }
  .trust-bar-inner { justify-content: center; gap: 0; }
  .trust-item { min-width: 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); padding: 1.25rem 1rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-nav { grid-template-columns: 1fr 1fr; }
  .footer-lower { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .area-list { grid-template-columns: 1fr; }
  .footer-nav { grid-template-columns: 1fr; }
  .trust-item { min-width: 100%; }
  .hero-phone { font-size: 1.1rem; }
}

/* Hero trust row */
.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
  margin-bottom: 1.75rem;
  padding: 0.875rem 1.25rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 3px;
}
.hero-trust-item {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.72);
  font-weight: 400;
  white-space: nowrap;
}
.hero-trust-item strong {
  color: var(--copper-light);
  font-weight: 700;
}
.hero-trust-sep {
  color: rgba(255,255,255,0.2);
  font-size: 0.75rem;
}

/* Larger problem cards */
.problem-card--large {
  padding: 2.25rem 2rem;
}
.problem-card--large .problem-card-icon {
  width: 52px;
  height: 52px;
}
.problem-card--large h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}
.problem-card--large p {
  font-size: 0.9375rem;
  line-height: 1.68;
}
.problem-intro {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.55);
  margin-top: 0.75rem;
  max-width: 560px;
}

/* Storm section full width */
.storm-layout.single-col {
  grid-template-columns: 1fr;
  max-width: 760px;
}

/* Storm photo */
.storm-photo-wrap {
  margin-top: 1.5rem;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}
.storm-photo {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.8) contrast(1.1);
}

/* Process photo mini */
.process-photo-mini {
  margin-top: 1rem;
  border-radius: 3px;
  overflow: hidden;
}
.process-photo-mini img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
  filter: brightness(0.85);
}

/* Crew band */
.crew-band {
  position: relative;
  margin-top: 3rem;
  overflow: hidden;
  border-radius: 4px;
}
.crew-photo {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: brightness(0.65) saturate(0.7);
}
.crew-band-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.3);
}
.crew-band-text {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 3vw, 1.75rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  text-align: center;
  padding: 0 2rem;
  text-shadow: 0 2px 16px rgba(0,0,0,0.5);
}

.area-counties-simple {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.area-county-block strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--copper-light);
  margin-bottom: 0.3rem;
}
.area-county-block span {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.52);
  line-height: 1.6;
}
.reviews-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

/* ── CONTRAST OVERRIDES ───────────────────────────────────── */

/* Service area */
.section-area h2 { color: #17191C; }
.section-area .section-label { color: #8E1F26; }
.section-area .section-label::before { background: #8E1F26; }
.section-area > .container > .area-layout > .area-content > p { color: #444850; }
.area-county-block strong { color: #8E1F26; }
.area-county-block span { color: #444850; }
.area-note { color: #666A70; }
.area-list li { color: #333640; }
.area-list li::before { color: #8E1F26; }

/* Storm section */
.section-storm .storm-content > p:not(.storm-lead) { color: #B8BEC6; }
.storm-step p { color: #A8B0B8; }
.storm-lead { color: #E0E4E8; }

/* Process section */
.process-step-content p { color: #B0B8C0; }

/* Contact section */
.contact-left > p { color: #C0C6CE; }
.contact-detail a,
.contact-detail address,
.contact-detail span { color: #C8CDD4; }
.contact-trust span { color: #A0A8B0; }

/* Footer */
.footer-brand p { color: #909298; }
.footer-col li { color: #808890; }
.footer-col a { color: #808890; }
.footer-base { color: #606870; }

/* Project cards */
.proof-details p { color: #A8B0B8; }
.proof-location { color: #808890; }
.proof-tags span { color: #808890; }

/* Reviews section */
.section-reviews h2 { color: #17191C; }
.section-reviews .section-label { color: #8E1F26; }
.section-reviews .section-label::before { background: #8E1F26; }
.review-item p { color: #444850; }
.review-item cite { color: #666A70; }
.review-item cite strong { color: #17191C; }
.reviews-rating-block strong { color: #17191C; }
.reviews-rating-block span { color: #666A70; }

/* Problem selector section */
.section-problem h2 { color: #17191C; }
.section-problem .problem-header p { color: #444850; }
.problem-card h3 { color: #17191C; }
.problem-card p { color: #444850; }
.problem-footer-note { color: #666A70; }

/* Services section */
.section-services h2 { color: #17191C; }
.services-header p { color: #444850; }
.svc-item h3 { color: #17191C; }
.svc-item p { color: #444850; }
.services-note { color: #666A70; }

/* ── NUCLEAR AREA FIX — wins all cascade ──────────────────── */
.section-area,
.section-area .area-layout,
.section-area .area-content {
  background-color: #E9E4DC !important;
}

.section-area h2,
.section-area h3,
.section-area h4 {
  color: #17191C !important;
  opacity: 1 !important;
}

.section-area p,
.section-area li,
.section-area span,
.section-area address {
  color: #3A3D42 !important;
  opacity: 1 !important;
}

.section-area .section-label {
  color: #8E1F26 !important;
  opacity: 1 !important;
}

.section-area .section-label::before {
  background: #8E1F26 !important;
  opacity: 1 !important;
}

.section-area .area-county-block strong {
  color: #8E1F26 !important;
  opacity: 1 !important;
}

.section-area .area-county-block span,
.section-area .area-counties-simple span {
  color: #3A3D42 !important;
  opacity: 1 !important;
}

.section-area .area-note {
  color: #666A70 !important;
  opacity: 1 !important;
}
