/* =====================================================================
   RDG ROOFING — MASTER STYLESHEET
   Brand: RDG Red #EC1D22 + RDG Blue #0F5AA0
   Aesthetic: Modern American craftsman — bold, trustworthy, refined
===================================================================== */

:root {
  /* Brand colors (sampled from logo) */
  --rdg-red: #EC1D22;
  --rdg-red-dark: #C8161B;
  --rdg-red-soft: #FBE9EA;
  --rdg-blue: #0F5AA0;
  --rdg-blue-dark: #0A4380;
  --rdg-blue-darker: #062E5C;
  --rdg-blue-soft: #E8F0F8;

  /* Neutrals */
  --ink: #0F1419;
  --ink-2: #1A1F26;
  --ink-3: #2A3038;
  --slate: #4A5260;
  --muted: #6E7682;
  --line: #E5E7EB;
  --line-light: #F0F2F5;
  --line-dark: rgba(255,255,255,0.12);

  /* Backgrounds */
  --bg: #FAFAF7;
  --bg-2: #F2F1EC;
  --paper: #FFFFFF;
  --cream: #FAF7F0;

  /* Typography scale */
  --font-display: 'Bricolage Grotesque', 'Fraunces', Georgia, serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  /* Spacing */
  --container: 1280px;
  --gutter: 32px;
  --section: 120px;
  --section-sm: 80px;

  /* Effects */
  --shadow-sm: 0 1px 2px rgba(15,20,25,0.05);
  --shadow-md: 0 8px 24px rgba(15,20,25,0.08);
  --shadow-lg: 0 24px 60px rgba(15,20,25,0.12);
  --shadow-red: 0 12px 28px rgba(236,29,34,0.25);
  --shadow-blue: 0 12px 28px rgba(15,90,160,0.25);
  --radius: 4px;
  --radius-sm: 2px;
  --transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

button { font-family: inherit; cursor: pointer; }

/* =====================================================================
   TYPOGRAPHY
===================================================================== */
.display {
  font-family: var(--font-display);
  font-variation-settings: "wdth" 100, "opsz" 32;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 0.98;
  color: var(--ink);
}

.display em {
  font-style: italic;
  font-variation-settings: "wdth" 90, "opsz" 32;
  color: var(--rdg-red);
  font-weight: 500;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rdg-red);
  font-weight: 500;
}

.eyebrow.blue { color: var(--rdg-blue); }

.eyebrow-line {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow-line::before {
  content: '';
  width: 32px;
  height: 1px;
  background: currentColor;
}

h1.display { font-size: clamp(40px, 6.5vw, 88px); }
h2.display { font-size: clamp(34px, 4.6vw, 60px); }
h3.display { font-size: clamp(24px, 2.8vw, 36px); }

p { line-height: 1.6; }

/* =====================================================================
   LAYOUT
===================================================================== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
}

.container-narrow {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
}

section {
  padding: var(--section) 0;
}
section.compact { padding: var(--section-sm) 0; }

@media (max-width: 720px) {
  :root { --gutter: 20px; --section: 80px; --section-sm: 60px; }
}

/* =====================================================================
   TOP BAR
===================================================================== */
.topbar {
  background: var(--ink);
  color: var(--bg);
  font-size: 13px;
  letter-spacing: 0.02em;
  padding: 10px 0;
  position: relative;
  z-index: 50;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar-msg {
  display: flex;
  align-items: center;
  gap: 10px;
}
.topbar-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--rdg-red);
  box-shadow: 0 0 0 0 rgba(236,29,34,0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(236,29,34,0.6); }
  70%  { box-shadow: 0 0 0 8px rgba(236,29,34,0); }
  100% { box-shadow: 0 0 0 0 rgba(236,29,34,0); }
}
.topbar-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  opacity: 0.7;
  text-transform: uppercase;
}

@media (max-width: 720px) {
  .topbar { font-size: 12px; }
  .topbar-meta { display: none; }
}

/* =====================================================================
   HEADER / NAV
===================================================================== */
header.site {
  position: sticky;
  top: 0;
  background: rgba(250, 250, 247, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  z-index: 40;
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo img {
  height: 48px;
  width: auto;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-text strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--rdg-blue);
}
.logo-text small {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 4px;
  font-weight: 500;
}
@media (max-width: 720px) {
  .logo img { height: 40px; }
  .logo-text { display: none; }
}

nav.primary {
  display: flex;
  gap: 30px;
}
nav.primary > a,
nav.primary > .has-submenu > a {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2);
  transition: color 0.2s;
  position: relative;
  padding: 8px 0;
  display: inline-block;
}
nav.primary a:hover { color: var(--rdg-red); }
nav.primary a.active { color: var(--rdg-red); }

/* Dropdown */
.has-submenu {
  position: relative;
}
.has-submenu > a::after {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  margin-left: 6px;
  opacity: 0.6;
}
.submenu {
  position: absolute;
  top: 100%;
  left: -16px;
  background: var(--paper);
  min-width: 240px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
}
.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.submenu a {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  color: var(--ink-2) !important;
}
.submenu a:hover {
  background: var(--rdg-blue-soft);
  color: var(--rdg-blue) !important;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 18px;
}
.phone-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--rdg-blue);
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -0.01em;
}
.phone-link svg {
  width: 16px;
  height: 16px;
  color: var(--rdg-red);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
}

@media (max-width: 1080px) {
  nav.primary { display: none; }
  .menu-toggle { display: block; }
  .nav-cta .btn { display: none; }
}
@media (max-width: 720px) {
  .phone-link span.label { display: none; }
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--ink);
  color: var(--bg);
  z-index: 100;
  padding: 24px;
  display: none;
  flex-direction: column;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.mobile-menu-close {
  background: none;
  border: 1px solid var(--line-dark);
  color: var(--bg);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: auto;
}
.mobile-menu nav a {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-dark);
  letter-spacing: -0.02em;
}
.mobile-menu nav a:hover { color: var(--rdg-red); }
.mobile-menu-foot {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line-dark);
}
.mobile-menu-foot .btn { width: 100%; justify-content: center; }
.mobile-menu-foot .phone-link { color: var(--bg); margin-bottom: 16px; font-size: 24px; }

/* =====================================================================
   BUTTONS
===================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.01em;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  border-radius: var(--radius-sm);
  text-decoration: none;
  white-space: nowrap;
}
.btn svg { width: 14px; height: 14px; }
.btn-primary {
  background: var(--rdg-red);
  color: white;
}
.btn-primary:hover {
  background: var(--rdg-red-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}
.btn-blue {
  background: var(--rdg-blue);
  color: white;
}
.btn-blue:hover {
  background: var(--rdg-blue-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
}
.btn-dark {
  background: var(--ink);
  color: white;
}
.btn-dark:hover { background: var(--ink-3); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-outline:hover {
  background: var(--ink);
  color: white;
}
.btn-cream {
  background: var(--bg);
  color: var(--ink);
}
.btn-cream:hover { background: white; }

/* =====================================================================
   HERO
===================================================================== */
.hero {
  padding: 64px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 60%;
  background: radial-gradient(ellipse at top right, rgba(15,90,160,0.04), transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow { margin-bottom: 28px; }
h1.hero-title { margin-bottom: 28px; }
.hero-sub {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-3);
  max-width: 480px;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

/* Trust strip */
.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1px 0;
}
.trust-item {
  background: var(--bg);
  padding: 18px 16px;
}
.trust-num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 28px;
  color: var(--rdg-blue);
  letter-spacing: -0.02em;
  line-height: 1;
}
.trust-num em {
  color: var(--rdg-red);
  font-style: normal;
}
.trust-label {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 6px;
  font-weight: 600;
}
.trust-stars {
  color: var(--rdg-red);
  font-size: 13px;
  letter-spacing: 1px;
}

/* Hero visual */
.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  width: 100%;
}
.hero-img {
  position: absolute;
  inset: 0;
  background-image:
    url("https://images.unsplash.com/photo-1632935190312-a6dee64862c7?w=1200&auto=format&fit=crop&q=80"),
    linear-gradient(135deg, var(--rdg-blue) 0%, var(--rdg-blue-darker) 100%);
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-sm);
  filter: saturate(0.9) contrast(1.05);
}
.hero-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15,20,25,0.65));
}

/* Hero background video — fades in only when loaded.
   If videos/hero-drone.mp4 isn't present, this stays invisible
   and the gradient/image fallback shows through. */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-sm);
  opacity: 0;
  transition: opacity 0.8s ease-out;
  pointer-events: none;
}
.hero-video.loaded {
  opacity: 1;
}
.hero-visual::after {
  /* Always-on dark gradient at bottom for caption legibility */
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15,20,25,0.55));
  border-radius: var(--radius-sm);
  pointer-events: none;
  z-index: 1;
}
.hero-tag, .hero-badge {
  z-index: 2;
}

@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }
}
.hero-tag {
  position: absolute;
  bottom: 24px; left: 24px;
  color: white;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-tag::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--rdg-red);
}
.hero-badge {
  position: absolute;
  top: -28px; right: -28px;
  width: 156px; height: 156px;
  background: var(--rdg-red);
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  transform: rotate(-8deg);
  z-index: 3;
  box-shadow: var(--shadow-red);
  transition: transform 0.4s ease;
}
.hero-badge:hover { transform: rotate(0deg) scale(1.05); }
.hero-badge .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 38px;
  line-height: 1;
  display: block;
}
.hero-badge small {
  display: block;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 6px;
}
.vertical-est {
  display: none; /* Decorative only — shows on ultra-wide screens */
  position: absolute;
  left: -80px; top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: center;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
@media (min-width: 1500px) { .vertical-est { display: block; } }

@media (max-width: 960px) {
  .hero { padding: 40px 0 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { aspect-ratio: 3/4; max-height: 480px; max-width: 100%; }
  .vertical-est { display: none; }
  .hero-badge { width: 120px; height: 120px; top: -16px; right: -10px; }
  .hero-badge .num { font-size: 30px; }
  .trust-row { grid-template-columns: repeat(2, 1fr); }
}

/* =====================================================================
   PAGE HEADER (for non-home pages)
===================================================================== */
.page-header {
  padding: 80px 0 60px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(15,90,160,0.06), transparent 70%);
  pointer-events: none;
}
.page-header .breadcrumbs {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.breadcrumbs a:hover { color: var(--rdg-red); }
.breadcrumbs .sep { opacity: 0.4; }
.page-header h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: -0.025em;
  line-height: 1.0;
  margin-bottom: 20px;
}
.page-header .lead {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-3);
  max-width: 640px;
}

/* =====================================================================
   STAT STRIP
===================================================================== */
.stat-strip {
  background: var(--rdg-blue);
  color: white;
  padding: 28px 0;
  overflow: hidden;
}
.stat-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.stat-strip-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  font-weight: 500;
}
.stat-strip-item svg {
  width: 22px;
  height: 22px;
  color: white;
  opacity: 0.9;
  flex-shrink: 0;
}

/* =====================================================================
   SECTION HEAD
===================================================================== */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}
.section-head h2 { max-width: 720px; }
.section-head .lead {
  font-size: 16px;
  color: var(--ink-3);
  max-width: 360px;
  line-height: 1.6;
}

/* =====================================================================
   SERVICES GRID
===================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.service {
  background: var(--bg);
  padding: 36px 28px 32px;
  transition: background 0.3s;
  cursor: pointer;
  position: relative;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.service:hover { background: var(--rdg-blue); color: white; }
.service:hover .service-num,
.service:hover .service-arrow { color: white; }
.service:hover .service-meta { color: rgba(255,255,255,0.7); }
.service:hover .service-icon { color: white; }
.service-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--rdg-red);
  margin-bottom: 28px;
  transition: color 0.3s;
}
.service-icon {
  width: 36px;
  height: 36px;
  color: var(--rdg-blue);
  margin-bottom: 24px;
  transition: color 0.3s;
}
.service h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 14px;
}
.service p {
  font-size: 14px;
  line-height: 1.55;
  opacity: 0.85;
  margin-bottom: 22px;
}
.service-foot {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.service-meta {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s;
}
.service-arrow {
  width: 20px;
  height: 20px;
  color: var(--ink);
  transition: transform 0.3s, color 0.3s;
}
.service:hover .service-arrow { transform: translateX(4px); }

@media (max-width: 960px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* =====================================================================
   WHY US (image + content split)
===================================================================== */
.split-section { background: var(--paper); }
.split-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.split-grid.reverse { grid-template-columns: 1.1fr 0.9fr; }
.split-grid.reverse .split-visual { order: 2; }
.split-visual {
  position: relative;
  aspect-ratio: 4/5;
}
.split-visual .img {
  position: absolute;
  inset: 0;
  background-image:
    url("https://images.unsplash.com/photo-1632935190312-a6dee64862c7?w=1000&auto=format&fit=crop&q=80"),
    linear-gradient(160deg, var(--rdg-blue) 0%, var(--rdg-blue-darker) 100%);
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-sm);
}
.split-visual .frame {
  position: absolute;
  bottom: -28px; right: -28px;
  width: 60%; height: 60%;
  border: 2px solid var(--rdg-red);
  border-radius: var(--radius-sm);
  z-index: -1;
}
.split-stat {
  position: absolute;
  top: -28px; left: -28px;
  background: var(--rdg-red);
  color: white;
  padding: 22px 26px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-red);
}
.split-stat .big {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}
.split-stat .lbl {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 6px;
  opacity: 0.95;
}
.split-content .eyebrow { margin-bottom: 18px; }
.split-content h2 { margin-bottom: 24px; }
.split-content > p {
  font-size: 17px;
  color: var(--ink-3);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 540px;
}
.feature-list { list-style: none; margin-bottom: 36px; }
.feature-list li {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  align-items: flex-start;
}
.feature-list li:last-child { border-bottom: 1px solid var(--line); }
.feature-list .num {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--rdg-red);
  flex-shrink: 0;
  width: 32px;
  padding-top: 2px;
  font-weight: 600;
}
.feature-list strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.feature-list span {
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.5;
}

@media (max-width: 960px) {
  .split-grid, .split-grid.reverse { grid-template-columns: 1fr; gap: 60px; }
  .split-grid.reverse .split-visual { order: 0; }
  .split-visual { max-width: 460px; aspect-ratio: 4/5; }
}

/* =====================================================================
   PROCESS (dark section with numbered steps)
===================================================================== */
.dark-section {
  background: var(--ink);
  color: var(--bg);
  position: relative;
  overflow: hidden;
}
.dark-section .eyebrow { color: var(--rdg-red); }
.dark-section h2 { color: var(--bg); margin-bottom: 60px; max-width: 720px; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.step {
  padding: 36px 28px 28px 0;
  border-top: 1px solid var(--line-dark);
  position: relative;
}
.step-num {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 600;
  color: var(--rdg-red);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 28px;
}
.step h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.step p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.7;
}

@media (max-width: 960px) { .process-grid { grid-template-columns: repeat(2, 1fr); gap: 0 24px; } }
@media (max-width: 540px) { .process-grid { grid-template-columns: 1fr; } }

/* =====================================================================
   STORM RESPONSE / CTA section
===================================================================== */
.cta-red {
  background: var(--rdg-red);
  color: white;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.cta-red .eyebrow { color: rgba(255,255,255,0.85); }
.cta-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 60px;
  align-items: center;
}
.cta-red h2 { color: white; margin-bottom: 24px; }
.cta-red h2 em {
  color: white;
  font-style: italic;
  font-variation-settings: "wdth" 90, "opsz" 32;
}
.cta-red p {
  font-size: 17px;
  line-height: 1.65;
  max-width: 560px;
  margin-bottom: 32px;
  opacity: 0.95;
}
.cta-stats {
  display: grid;
  gap: 1px;
  background: rgba(255,255,255,0.18);
  border-top: 1px solid rgba(255,255,255,0.18);
  border-bottom: 1px solid rgba(255,255,255,0.18);
}
.cta-stat {
  background: var(--rdg-red);
  padding: 24px 0;
}
.cta-stat .big {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}
.cta-stat .lbl {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-top: 8px;
}
@media (max-width: 960px) { .cta-grid { grid-template-columns: 1fr; gap: 40px; } }

/* =====================================================================
   REVIEWS / TESTIMONIALS
===================================================================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.review {
  background: var(--paper);
  padding: 36px 32px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}
.review:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.review-stars {
  color: var(--rdg-red);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 22px;
}
.review-quote {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 19px;
  line-height: 1.45;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  color: var(--ink);
}
.review-foot {
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.review-name {
  font-weight: 700;
  font-size: 14px;
}
.review-name span {
  display: block;
  font-weight: 500;
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}
.review-source {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
@media (max-width: 960px) { .reviews-grid { grid-template-columns: 1fr; } }

/* =====================================================================
   AWARDS BAR
===================================================================== */
.awards {
  background: var(--paper);
  padding: 60px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.awards-grid {
  display: grid;
  grid-template-columns: auto repeat(4, 1fr);
  gap: 40px;
  align-items: center;
}
.awards-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.4;
}
.award {
  text-align: center;
  padding: 16px;
  border-left: 1px solid var(--line);
}
.award:first-of-type { border-left: none; }
.award-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--rdg-blue);
  line-height: 1.2;
  margin-bottom: 4px;
}
.award-sub {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
}
@media (max-width: 960px) {
  .awards-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .awards-label { grid-column: 1 / -1; text-align: center; }
  .award { border-left: none; }
}

/* =====================================================================
   SERVICE AREA / LOCAL
===================================================================== */
.area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.area-content h2 { margin-bottom: 22px; }
.area-content > p {
  font-size: 16px;
  color: var(--ink-3);
  margin-bottom: 32px;
  max-width: 460px;
  line-height: 1.6;
}
.city-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-bottom: 32px;
}
.city {
  padding: 14px 0;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  transition: color 0.2s;
}
.city:hover { color: var(--rdg-red); }
.city:nth-last-child(-n+2) { border-bottom: 1px solid var(--line); }
.city svg {
  width: 14px;
  height: 14px;
  color: var(--rdg-red);
  flex-shrink: 0;
}
.area-map {
  position: relative;
  aspect-ratio: 1/1;
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.area-map svg { width: 100%; height: 100%; }

@media (max-width: 960px) {
  .area-grid { grid-template-columns: 1fr; gap: 60px; }
  .area-map { max-width: 460px; }
}

/* =====================================================================
   CONTACT
===================================================================== */
.contact-section {
  background: var(--ink);
  color: var(--bg);
}
.contact-section .eyebrow { color: var(--rdg-red); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-left h2 { color: var(--bg); margin-bottom: 28px; }
.contact-left > p {
  font-size: 17px;
  line-height: 1.65;
  opacity: 0.85;
  margin-bottom: 48px;
  max-width: 460px;
}
.contact-info { display: grid; gap: 28px; }
.info-item {
  display: flex;
  gap: 18px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line-dark);
}
.info-item:last-child { border-bottom: none; }
.info-item svg {
  width: 22px;
  height: 22px;
  color: var(--rdg-red);
  flex-shrink: 0;
  margin-top: 4px;
}
.info-item .label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 6px;
}
.info-item .val {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.info-item .val a:hover { color: var(--rdg-red); }
.info-item .val span {
  display: block;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  opacity: 0.7;
  margin-top: 4px;
}

/* FORM */
.form-card {
  background: var(--bg);
  color: var(--ink);
  padding: 44px 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.form-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 26px;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.form-card .sub {
  font-size: 14px;
  color: var(--ink-3);
  margin-bottom: 28px;
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
  font-weight: 600;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s, background 0.2s;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--rdg-blue);
}
.field textarea { min-height: 100px; resize: vertical; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-card .btn-primary {
  width: 100%;
  justify-content: center;
  padding: 15px;
  margin-top: 6px;
}
.form-meta {
  margin-top: 16px;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}

@media (max-width: 960px) {
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .form-card { padding: 32px 24px; }
}

/* =====================================================================
   GALLERY
===================================================================== */
.gallery-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.filter-btn {
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink-3);
  border-radius: 100px;
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover { border-color: var(--rdg-blue); color: var(--rdg-blue); }
.filter-btn.active {
  background: var(--rdg-blue);
  color: white;
  border-color: var(--rdg-blue);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--bg-2);
  cursor: pointer;
  border: 1px solid var(--line);
}
.gallery-item .placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 13px;
  font-family: var(--font-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(15,20,25,0.9));
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: white;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rdg-red);
  margin-bottom: 4px;
}
.gallery-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* Before/After slider */
.ba-slider {
  position: relative;
  aspect-ratio: 16/10;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: ew-resize;
  background: var(--bg-2);
  user-select: none;
}
.ba-slider .ba-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.ba-slider .ba-after {
  background-image: linear-gradient(135deg, var(--rdg-blue), var(--rdg-blue-darker));
}
.ba-slider .ba-before {
  background-image: linear-gradient(135deg, #6B6B6B, #3A3A3A);
  clip-path: inset(0 50% 0 0);
}
.ba-slider .ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 4px;
  background: white;
  transform: translateX(-2px);
  pointer-events: none;
}
.ba-slider .ba-handle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: var(--shadow-md);
}
.ba-slider .ba-label {
  position: absolute;
  top: 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(15,20,25,0.85);
  color: white;
  padding: 6px 12px;
  border-radius: 100px;
  font-weight: 600;
}
.ba-slider .ba-label.before { left: 16px; }
.ba-slider .ba-label.after { right: 16px; }

@media (max-width: 960px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .gallery-grid { grid-template-columns: 1fr; } }

/* =====================================================================
   BLOG / VIDEOS
===================================================================== */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.video-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.video-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.video-thumb {
  aspect-ratio: 16/9;
  position: relative;
  background: var(--bg-2);
  overflow: hidden;
}
.video-thumb img { width: 100%; height: 100%; object-fit: cover; }
.video-thumb .placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--rdg-blue), var(--rdg-blue-darker));
  color: white;
}
.video-thumb .play {
  position: absolute;
  top: 50%; left: 50%;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--rdg-red);
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s;
}
.video-card:hover .play { transform: translate(-50%, -50%) scale(1.1); }
.video-thumb .play svg { width: 22px; height: 22px; color: white; margin-left: 3px; }
.video-meta {
  padding: 24px;
}
.video-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rdg-red);
  margin-bottom: 12px;
  font-weight: 600;
}
.video-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin-bottom: 10px;
}
.video-card p {
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.5;
  margin-bottom: 12px;
}
.video-date {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--muted);
}

@media (max-width: 960px) { .video-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .video-grid { grid-template-columns: 1fr; } }

/* Empty state */
.empty-state {
  background: var(--paper);
  border: 1.5px dashed var(--line);
  border-radius: var(--radius);
  padding: 80px 40px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.empty-state .icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--rdg-blue-soft);
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  color: var(--rdg-blue);
}
.empty-state .icon svg { width: 28px; height: 28px; }
.empty-state h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.empty-state p {
  color: var(--ink-3);
  margin-bottom: 24px;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}

/* =====================================================================
   FOOTER
===================================================================== */
footer.site {
  background: var(--ink);
  color: var(--bg);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line-dark);
}
.footer-brand .logo { color: white; margin-bottom: 18px; }
.footer-brand .logo-text strong { color: white; }
.footer-brand .logo-text small { color: rgba(255,255,255,0.55); }
.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.7;
  max-width: 280px;
  margin-bottom: 20px;
}
.footer-licenses {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  line-height: 1.7;
}
.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rdg-red);
  margin-bottom: 22px;
  font-weight: 600;
}
.footer-col ul {
  list-style: none;
  display: grid;
  gap: 12px;
}
.footer-col a {
  font-size: 14px;
  opacity: 0.78;
  transition: opacity 0.2s, color 0.2s;
}
.footer-col a:hover { opacity: 1; color: var(--rdg-red); }
.footer-col li {
  font-size: 14px;
  opacity: 0.78;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  flex-wrap: wrap;
  gap: 18px;
}
.footer-bottom small {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.55;
}
.footer-social {
  display: flex;
  gap: 14px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--rdg-red);
  border-color: var(--rdg-red);
}
.footer-social svg { width: 14px; height: 14px; }

@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* =====================================================================
   ANIMATIONS / UTILITIES
===================================================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Reveal-on-scroll: ALWAYS visible by default. JS opts in to the
   animation by adding .will-reveal, then .in-view triggers the fade-up.
   If JS fails or doesn't run, content is still 100% visible. */
.will-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.will-reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .will-reveal { opacity: 1; transform: none; transition: none; }
}

.text-center { text-align: center; }
.mt-md { margin-top: 24px; }
.mt-lg { margin-top: 48px; }

/* Generic content prose */
.prose {
  max-width: 720px;
  margin: 0 auto;
}
.prose h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 3.6vw, 42px);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 56px 0 20px;
}
.prose h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.02em;
  margin: 40px 0 16px;
}
.prose p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-2);
  margin-bottom: 18px;
}
.prose strong { color: var(--ink); font-weight: 700; }
.prose ul, .prose ol {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-2);
  margin: 18px 0 18px 24px;
}
.prose li { margin-bottom: 8px; }
.prose blockquote {
  border-left: 3px solid var(--rdg-red);
  padding: 4px 0 4px 24px;
  margin: 32px 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--ink);
  font-style: italic;
}
