@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=IBM+Plex+Sans:wght@400;500;600;700&family=IBM+Plex+Mono:wght@500;600&display=swap');

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --primary:        #EC1C24;
  --accent:         #E34E55;
  --canvas:         #FFFFFF;
  --surface:        #F2F0EB;
  --ink:            #0C0C0F;
  --muted:          #5A5852;
  --border:         rgba(12,12,15,0.14);
  --border-solid:   #0C0C0F;
  --surface-2:      #E8E6E1;
  --red-dark:       #C21019;
  --red-mid:        #E34E55;
  --ink-10:         rgba(12,12,15,0.10);
  --ink-20:         rgba(12,12,15,0.20);
  --white-70:       rgba(255,255,255,0.70);
  --white-90:       rgba(255,255,255,0.90);

  --header-height:  72px;
  --container:      1360px;
  --section-pad:    clamp(72px, 9vh, 112px);

  --font-display:   'Archivo Black', sans-serif;
  --font-body:      'IBM Plex Sans', sans-serif;
  --font-mono:      'IBM Plex Mono', monospace;
  --radius:         0px;
}

@media (max-width: 900px) {
  :root { --header-height: 60px; }
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--ink);
  background: var(--canvas);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* Universal image cap — no <img> may overflow its container, ever */
img { max-width: 100%; height: auto; display: block; }

section img:not(.hero-bg):not([class*="full-bleed"]):not([class*="fullbleed"]) {
  max-height: 640px;
  object-fit: cover;
}

.nav img, header img, .header img, .nav-logo img, .logo img {
  max-height: 44px !important;
  max-width: 200px !important;
  width: auto !important;
  align-self: flex-start !important;
  object-fit: contain !important;
  flex: 0 0 auto !important;
}

.footer img, footer img {
  max-height: 48px !important;
  max-width: 200px !important;
  width: auto !important;
  align-self: flex-start !important;
  object-fit: contain !important;
  flex: 0 0 auto !important;
}

.hero { position: relative; overflow: hidden; }
.hero-bg, .hero > img:first-of-type {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero-inner, .hero > :not(img):not(.hero-bg):not(.hero-overlay) {
  position: relative; z-index: 2;
}
.hero-overlay { position: absolute; inset: 0; z-index: 1; pointer-events: none; }

.page-header, [class*="page-header"], .about-feature, .about-hero {
  position: relative; overflow: hidden; max-height: 64vh;
}
.page-header > img, [class*="page-header"] > img,
.page-header-bg, .about-feature > img:first-of-type,
.about-hero-bg, .page-header img:first-of-type {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
section > img:first-child:not([class*="logo"]):not(.nav-logo) {
  max-height: 64vh; object-fit: cover;
}
section img:not(.hero-bg):not(.page-header-bg):not([class*="full-bleed"]):not([class*="logo"]) {
  max-height: 720px;
}

[class*="gallery-grid"] > [class*="gallery-tile"],
[class*="gallery-grid"] > a,
[class*="gallery-grid"] > figure {
  grid-column: auto; width: auto; max-width: 100%; height: auto; min-height: 0;
}
[class*="gallery-tile"] { aspect-ratio: 4 / 3; overflow: hidden; }
[class*="gallery-tile"] > img { width: 100%; height: 100%; object-fit: cover; }

/* Headings inside anchors stay heading-styled */
h1 a, h2 a, h3 a, .hero-title a, .hero-eyebrow a, .hero-sub a {
  color: inherit; text-decoration: none; border-bottom: 0;
}

/* Base anchor */
a { transition: color 150ms; color: var(--ink); text-decoration: none; }
a:hover { color: var(--primary); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 4px; }

/* ============================================================
   CONTAINERS
   ============================================================ */
.container { max-width: var(--container); margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }
.wide-container { max-width: 1400px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }

/* ============================================================
   SCROLL PROGRESS
   ============================================================ */
#scroll-progress, #scrollProgress, .scroll-progress, .scroll-bar, #scrollBar, #scroll-bar {
  position: fixed; top: 0; left: 0; right: 0;
  height: 3px; background: var(--primary);
  transform-origin: left; transform: scaleX(0);
  z-index: 9999; transition: transform 0ms;
}

/* ============================================================
   SITE HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 900;
  background: var(--canvas);
  border-bottom: 1px solid rgba(12,12,15,0.08);
}

.top-nav {
  height: var(--header-height);
  max-width: 1320px; margin: 0 auto;
  padding: 0 28px;
  display: flex; align-items: center; gap: 32px;
}

.nav-logo { flex: 0 0 auto; display: flex; align-items: center; }
.nav-logo img { max-height: 44px !important; max-width: 200px !important; }

.nav-pages {
  flex: 1;
  display: flex; justify-content: center;
  list-style: none; padding: 0; margin: 0;
  gap: 28px; align-items: center;
}

.nav-pages a {
  display: inline-block; padding: 6px 0;
  font-family: var(--font-mono);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--ink); text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color 150ms, border-color 150ms;
}
.nav-pages a:hover { color: var(--primary); text-decoration: none; border-bottom-color: var(--primary); }
.nav-pages a[aria-current="page"] { color: var(--primary); border-bottom-color: var(--primary); }

.nav-cta {
  flex: 0 0 auto;
  display: flex; align-items: center; gap: 8px;
  background: var(--primary); color: #fff;
  padding: 10px 20px; border-radius: 0;
  font-family: var(--font-mono); font-size: 12px;
  font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; text-decoration: none;
  white-space: nowrap; transition: filter 150ms;
}
.nav-cta:hover { filter: brightness(0.88); color: #fff; text-decoration: none; }
.nav-cta svg { width: 16px; height: 16px; flex-shrink: 0; }

.nav-toggle {
  display: none; flex: 0 0 auto;
  width: 44px; height: 44px;
  background: transparent; border: none;
  color: var(--ink); font-size: 24px;
  cursor: pointer; align-items: center; justify-content: center;
}

@media (max-width: 900px) {
  .nav-pages {
    display: none; flex-direction: column;
    position: absolute; top: 60px; left: 0; right: 0;
    background: var(--canvas);
    padding: 24px; gap: 4px;
    border-bottom: 1px solid rgba(12,12,15,0.08);
    z-index: 800; justify-content: flex-start;
  }
  .nav-pages.open { display: flex; }
  .nav-pages li { width: 100%; }
  .nav-pages a { display: block; padding: 12px 0; font-size: 14px; }
  .nav-toggle { display: flex; }
  .nav-cta span { display: none; }
  .nav-cta { padding: 10px 14px; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100svh;
  display: grid; grid-template-rows: 1fr;
}

.hero > img:first-of-type,
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}

.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    115deg,
    rgba(12,12,15,0.88) 0%,
    rgba(12,12,15,0.72) 45%,
    rgba(12,12,15,0.28) 100%
  );
}

.hero-ribbon {
  position: absolute; top: 0; left: 0; right: 0;
  height: 56px; background: var(--ink);
  z-index: 3; display: flex; align-items: center;
  padding: 0 clamp(20px, 4vw, 48px);
}

.hero-inner {
  position: relative; z-index: 2;
  max-width: var(--container);
  margin: 0 auto; width: 100%;
  padding: calc(56px + clamp(64px, 8vw, 96px)) clamp(20px, 4vw, 48px) clamp(64px, 8vw, 96px);
  display: flex; flex-direction: column;
  justify-content: flex-end;
  min-height: 100svh;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: clamp(11px, 1.2vw, 14px);
  font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--primary);
  margin-bottom: 16px;
}

.hero-title, h1.hero-title {
  font-family: var(--font-display);
  font-size: clamp(64px, 8.5vw, 132px);
  font-weight: 900; line-height: 0.92;
  letter-spacing: -0.02em; text-transform: uppercase;
  color: #fff; max-width: 16ch;
  margin-bottom: 24px;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.6vw, 19px);
  font-weight: 500; color: var(--white-90);
  max-width: 52ch; margin-bottom: 36px; line-height: 1.55;
}

.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn,
.btn-primary,
.btn-cta-primary,
.btn-banner-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary); color: #fff;
  font-family: var(--font-mono); font-size: 13px;
  font-weight: 700; letter-spacing: 0.10em;
  text-transform: uppercase; text-decoration: none;
  padding: 18px 32px; border-radius: 0;
  border: 2px solid var(--primary);
  cursor: pointer; transition: background 150ms, color 150ms, border-color 150ms;
  white-space: nowrap;
}
.btn:hover, .btn-primary:hover, .btn-cta-primary:hover, .btn-banner-primary:hover {
  background: var(--red-dark); border-color: var(--red-dark); color: #fff; text-decoration: none;
}

.btn-outline,
.btn-cta-outline,
.btn-banner-secondary,
.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: #fff;
  font-family: var(--font-mono); font-size: 13px;
  font-weight: 700; letter-spacing: 0.10em;
  text-transform: uppercase; text-decoration: none;
  padding: 16px 30px; border-radius: 0;
  border: 2px solid rgba(255,255,255,0.70);
  cursor: pointer; transition: border-color 150ms, background 150ms, color 150ms;
  white-space: nowrap;
}
.btn-outline:hover, .btn-cta-outline:hover, .btn-banner-secondary:hover, .btn-white:hover {
  border-color: #fff; color: #fff; text-decoration: none;
  background: rgba(255,255,255,0.10);
}

.btn-phone {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--primary);
  font-family: var(--font-mono); font-size: 13px;
  font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; text-decoration: none;
  padding: 16px 30px; border-radius: 0;
  border: 2px solid var(--primary);
  cursor: pointer; transition: background 150ms, color 150ms;
}
.btn-phone:hover { background: var(--primary); color: #fff; text-decoration: none; }

.btn-service {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--ink);
  font-family: var(--font-mono); font-size: 11px;
  font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; text-decoration: none;
  padding: 12px 20px; border-radius: 0;
  border: 2px solid var(--ink);
  cursor: pointer; transition: background 150ms, color 150ms;
  margin-top: 16px;
}
.btn-service:hover { background: var(--ink); color: #fff; text-decoration: none; }
.btn-service svg { width: 14px; height: 14px; }

.btn-submit {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--primary); color: #fff;
  font-family: var(--font-mono); font-size: 13px;
  font-weight: 700; letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 18px 36px; border-radius: 0;
  border: 2px solid var(--primary);
  cursor: pointer; transition: background 150ms;
}
.btn-submit:hover { background: var(--red-dark); }
.btn-submit svg { width: 16px; height: 16px; }

/* ============================================================
   HERO TRUST CHIPS
   ============================================================ */
.hero-trust-chips {
  display: flex; flex-wrap: wrap; gap: 0;
  list-style: none; padding: 0; margin: 0;
  border: 2px solid var(--border-solid);
  width: fit-content;
}
.trust-chip {
  padding: 10px 18px;
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: #fff; border-right: 1px solid rgba(255,255,255,0.25);
  white-space: nowrap;
}
.trust-chip:last-child { border-right: none; }
.trust-chip strong { display: block; color: #fff; }

@media (max-width: 640px) {
  .hero-trust-chips { flex-direction: column; width: 100%; max-width: 320px; border: none; gap: 6px; }
  .trust-chip { border: 2px solid rgba(255,255,255,0.35); border-right: 2px solid rgba(255,255,255,0.35); }
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--surface);
  border-top: 1px solid var(--border-solid);
  border-bottom: 1px solid var(--border-solid);
  padding: 28px 0;
}
.trust-strip-inner {
  max-width: var(--container); margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: flex; flex-wrap: wrap; gap: 0;
  align-items: stretch;
}
.trust-badge {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 24px;
  border-right: 1px solid var(--border-solid);
  flex: 1 1 180px;
}
.trust-badge:last-child { border-right: none; }
.trust-badge svg { width: 28px; height: 28px; flex-shrink: 0; color: var(--primary); }
.trust-badge div { display: flex; flex-direction: column; }
.trust-badge strong {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--ink); line-height: 1.3;
}

/* on gallery.html */
.trust-chip-item {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 20px;
  border-right: 1px solid var(--border-solid);
}
.trust-chip-item:last-child { border-right: none; }
.trust-chip-item svg { width: 20px; height: 20px; color: var(--primary); }
.trust-chip-label {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--ink);
}

/* about.html trust-chip */
div.trust-chip {
  padding: 10px 20px;
  border: 2px solid var(--border-solid);
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--ink);
}
div.trust-chip strong { display: inline; color: var(--ink); }

/* ============================================================
   CLAIM BAND (full-bleed brand-color type band)
   ============================================================ */
.claim-band {
  background: var(--primary);
  overflow: hidden;
  padding: clamp(40px, 5vw, 72px) 0;
}
.claim-band-inner {
  max-width: var(--container); margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}
.claim-band-inner h2,
.claim-band-inner > * {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 120px);
  font-weight: 900; line-height: 0.92;
  letter-spacing: -0.02em; text-transform: uppercase;
  color: #fff; max-width: 20ch;
}
.claim-band-inner h2 span { color: #fff; }

/* claim-band-track (gallery.html) */
.claim-band-track {
  display: flex; overflow: hidden;
  white-space: nowrap; animation: marquee 30s linear infinite;
}
.claim-item {
  display: flex; align-items: center; gap: 32px;
  flex-shrink: 0; padding: 0 16px;
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 900; line-height: 0.92;
  letter-spacing: -0.02em; text-transform: uppercase;
  color: #fff;
}
.claim-sep {
  width: 8px; height: 8px;
  background: rgba(255,255,255,0.50);
  border-radius: 50%; flex-shrink: 0;
}

/* ============================================================
   SERVICE AREAS MARQUEE
   ============================================================ */
.service-areas-marquee {
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid var(--border-solid);
  border-bottom: 1px solid var(--border-solid);
  background: var(--canvas);
  max-height: 64px; position: relative; z-index: 1;
}
.marquee-track {
  display: flex; gap: 48px;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
}
.service-areas-marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  font-family: var(--font-mono);
  font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: clamp(13px, 1.4vw, 16px);
  color: var(--ink); line-height: 1.2;
  flex-shrink: 0;
}
.marquee-item + .marquee-item::before {
  content: '\2022';
  color: var(--primary);
  margin-right: 48px;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   SERVICES BENTO
   ============================================================ */
.services {
  background: var(--canvas);
  padding: var(--section-pad) 0;
}
.services-inner {
  max-width: var(--container); margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}
.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 16px;
}
.section-title, .section-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 900; line-height: 0.92;
  letter-spacing: -0.02em; text-transform: uppercase;
  color: var(--ink); max-width: 18ch;
  margin-bottom: 48px;
}
.section-label {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 16px;
}

.services-bento {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  gap: 2px;
}

/* Flagship service */
.service-flagship {
  grid-column: 1 / 2; grid-row: 1 / 2;
  display: grid; grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border-solid);
  overflow: hidden;
  transition: box-shadow 250ms ease-out;
}
.service-flagship:hover { box-shadow: 0 0 0 2px var(--primary); }

.service-flagship-img {
  position: relative; overflow: hidden;
  min-height: 380px;
}
.service-flagship-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; max-height: none;
}
.service-flagship-body {
  padding: 32px; background: var(--surface);
  display: flex; flex-direction: column; justify-content: space-between;
}
.service-flagship-body h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 900; line-height: 0.95;
  letter-spacing: -0.02em; text-transform: uppercase;
  color: var(--ink); margin-bottom: 16px;
}
.service-flagship-body p {
  font-size: 15px; color: var(--muted); line-height: 1.6; margin-bottom: 12px;
}

/* Emergency service card */
.service-emergency {
  grid-column: 2 / 3; grid-row: 1 / 2;
  position: relative; overflow: hidden;
  min-height: 380px;
  border: 1px solid var(--border-solid);
  transition: box-shadow 250ms ease-out;
}
.service-emergency:hover { box-shadow: 0 0 0 2px var(--primary); }
.service-emergency > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; max-height: none;
}
.service-emergency-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,12,15,0.20) 0%, rgba(12,12,15,0.80) 100%);
  z-index: 1;
}
.service-emergency-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 28px; z-index: 2;
}
.service-emergency-body h3 {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 900; line-height: 0.95;
  letter-spacing: -0.02em; text-transform: uppercase;
  color: #fff; margin-bottom: 8px;
}
.service-emergency-body p { font-size: 13px; color: var(--white-90); }
.service-emergency-badge {
  display: inline-block;
  background: var(--primary); color: #fff;
  font-family: var(--font-mono); font-size: 10px;
  font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; padding: 4px 10px;
  margin-bottom: 12px;
}

/* Compact grid (4 cards below flagship) */
.services-compact {
  grid-column: 1 / 3; grid-row: 2 / 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

/* Row 3 (3+ cards) */
.services-row3 {
  grid-column: 1 / 3; grid-row: 3 / 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 2px;
}

/* Service card (compact) */
.service-card {
  border: 1px solid var(--border-solid);
  overflow: hidden; background: var(--canvas);
  display: flex; flex-direction: column;
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
  cursor: pointer;
}
.service-card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -16px rgba(0,0,0,0.18); }
.service-card > img {
  width: 100%; height: 220px;
  object-fit: cover; display: block; max-height: 220px;
}
.service-card-body {
  padding: 20px 24px; flex: 1;
  display: flex; flex-direction: column; justify-content: space-between;
}
.service-card-body h3 {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 900; line-height: 0.95;
  letter-spacing: -0.02em; text-transform: uppercase;
  color: var(--ink); margin-bottom: 8px;
}
.service-card-body p { font-size: 13px; color: var(--muted); line-height: 1.5; }

.service-num, .service-card-num {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 8px;
}

@media (max-width: 900px) {
  .services-bento { grid-template-columns: 1fr; }
  .service-flagship { grid-column: 1; grid-row: auto; grid-template-columns: 1fr; }
  .service-flagship-img { min-height: 260px; }
  .service-emergency { grid-column: 1; grid-row: auto; min-height: 280px; }
  .services-compact { grid-column: 1; grid-row: auto; grid-template-columns: repeat(2, 1fr); }
  .services-row3 { grid-column: 1; grid-row: auto; grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .services-compact, .services-row3 { grid-template-columns: 1fr; }
}

/* ============================================================
   SPIDER BAND (about / CTA feature strip)
   ============================================================ */
.spider-band {
  background: var(--ink);
  padding: var(--section-pad) 0;
}
.spider-band-inner {
  max-width: var(--container); margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center;
}
.spider-band-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 900; line-height: 0.92;
  letter-spacing: -0.02em; text-transform: uppercase;
  color: #fff; margin-bottom: 20px;
}
.spider-band-inner h2 em { color: var(--primary); font-style: normal; }
.spider-band-inner p { color: rgba(255,255,255,0.75); font-size: 15px; margin-bottom: 24px; }
.spider-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.spider-spec { border-top: 1px solid rgba(255,255,255,0.15); padding-top: 16px; }
.spider-spec-label {
  font-family: var(--font-mono); font-size: 10px;
  font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.45);
  margin-bottom: 6px;
}
.spider-spec-value {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 900; color: #fff; line-height: 1;
}
.spider-eyebrow, .spider-headline {
  font-family: var(--font-mono); font-size: 11px;
  font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--primary); margin-bottom: 12px;
}
.spider-body { color: rgba(255,255,255,0.75); font-size: 15px; margin-bottom: 24px; }
.spider-visual { display: flex; flex-direction: column; align-items: center; justify-content: center; }
.spider-big-num {
  font-family: var(--font-display);
  font-size: clamp(80px, 12vw, 160px);
  font-weight: 900; color: var(--primary);
  line-height: 0.85; letter-spacing: -0.03em;
}
.spider-big-label {
  font-family: var(--font-mono); font-size: 13px;
  font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.60);
  margin-top: 12px; text-align: center;
}
.spider-feature { background: var(--ink); padding: var(--section-pad) 0; }
.spider-feature-inner {
  max-width: var(--container); margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}

@media (max-width: 900px) {
  .spider-band-inner, .spider-feature-inner { grid-template-columns: 1fr; gap: 40px; }
  .spider-visual { margin-top: 32px; }
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews {
  background: var(--surface);
  padding: var(--section-pad) 0;
}
.reviews-inner {
  max-width: var(--container); margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}
.reviews-header {
  display: flex; flex-wrap: wrap;
  justify-content: space-between; align-items: flex-end;
  gap: 24px; margin-bottom: 48px;
}
.reviews-header h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 60px);
  font-weight: 900; line-height: 0.92;
  letter-spacing: -0.02em; text-transform: uppercase;
  color: var(--ink);
}
.google-badge {
  display: flex; flex-direction: column; align-items: flex-end; gap: 6px;
}
.google-badge-rating {
  font-family: var(--font-display);
  font-size: 48px; font-weight: 900;
  color: var(--ink); line-height: 1;
}
.google-badge-label {
  font-family: var(--font-mono); font-size: 11px;
  font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted);
}
.google-badge svg { color: var(--primary); width: 20px; height: 20px; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.review-card {
  padding: 28px; background: var(--canvas);
  border: 1px solid var(--border-solid);
}
.review-stars {
  display: flex; gap: 4px; margin-bottom: 14px;
}
.review-stars svg { width: 18px; height: 18px; color: var(--primary); flex-shrink: 0; }
.review-quote {
  font-family: var(--font-display);
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 900; line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--ink); font-style: italic;
  margin: 14px 0; max-width: 40ch;
}
.review-attribution {
  font-family: var(--font-mono); font-size: 11px;
  font-weight: 600; letter-spacing: 0.10em;
  text-transform: uppercase; color: var(--muted);
  display: flex; align-items: center; gap: 8px;
}
.review-attribution strong { color: var(--ink); }
.review-verified {
  display: inline-flex; align-items: center; gap: 4px;
  color: var(--primary);
}
.review-verified svg { width: 14px; height: 14px; }

@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ============================================================
   GALLERY (index.html inline)
   ============================================================ */
.gallery {
  background: var(--canvas);
  padding: var(--section-pad) 0;
}
.gallery-inner {
  max-width: var(--container); margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}
.gallery-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 60px);
  font-weight: 900; line-height: 0.92;
  letter-spacing: -0.02em; text-transform: uppercase;
  color: var(--ink); margin-bottom: 36px; margin-top: 8px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 2px;
}
.gallery-tile {
  position: relative; overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--border-solid);
  cursor: pointer;
}
.gallery-tile-tall {
  grid-row: span 2;
  aspect-ratio: auto;
  min-height: 420px;
}
.gallery-tile img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 400ms ease-out; max-height: none;
}
.gallery-tile:hover img { transform: scale(1.04); }
.gallery-tile-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(12,12,15,0.70));
  padding: 32px 16px 12px;
  font-family: var(--font-mono); font-size: 10px;
  font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: #fff;
}
.gallery-inner > div { margin-top: 32px; }

@media (max-width: 900px) { .gallery-grid { grid-template-columns: 1fr 1fr; } .gallery-tile-tall { grid-row: span 1; min-height: 0; aspect-ratio: 4/3; } }
@media (max-width: 640px) { .gallery-grid { grid-template-columns: 1fr; } }

/* ============================================================
   GALLERY PAGE (gallery.html)
   ============================================================ */
.gallery-section { background: var(--canvas); padding: var(--section-pad) 0; }
.gallery-section-inner {
  max-width: var(--container); margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}
.gallery-top-row {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 32px; gap: 20px;
}
.gallery-hed {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 900; line-height: 0.92;
  letter-spacing: -0.02em; text-transform: uppercase; color: var(--ink);
}
.gallery-hed em { color: var(--primary); font-style: normal; }
.gallery-count-label {
  font-family: var(--font-mono); font-size: 11px;
  font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted);
  white-space: nowrap;
}
.filter-strip {
  display: flex; flex-wrap: wrap; gap: 2px; margin-bottom: 32px;
}
.filter-btn {
  font-family: var(--font-mono); font-size: 11px;
  font-weight: 700; letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 10px 18px; border-radius: 0;
  border: 1px solid var(--border-solid);
  background: transparent; color: var(--ink);
  cursor: pointer; transition: background 150ms, color 150ms;
}
.filter-btn:hover, .filter-btn.is-active { background: var(--ink); color: #fff; }

#galleryGrid.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.gallery-card {
  border: 1px solid var(--border-solid);
  overflow: hidden; background: var(--surface);
}
.gallery-card-img {
  position: relative; aspect-ratio: 4/3; overflow: hidden;
}
.gallery-card-img img {
  width: 100%; height: 100%;
  object-fit: cover; max-height: none;
  transition: transform 400ms ease-out;
}
.gallery-card:hover .gallery-card-img img { transform: scale(1.04); }
.card-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--primary); color: #fff;
  font-family: var(--font-mono); font-size: 9px;
  font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; padding: 3px 8px; z-index: 2;
}
.card-cat {
  position: absolute; bottom: 12px; right: 12px;
  background: var(--ink); color: #fff;
  font-family: var(--font-mono); font-size: 9px;
  font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 3px 8px; z-index: 2;
}
.gallery-card-body { padding: 20px 20px 24px; }
.gallery-card-body h3 {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 900;
  letter-spacing: -0.01em; text-transform: uppercase;
  color: var(--ink); margin-bottom: 8px; line-height: 1;
}
.card-location {
  font-family: var(--font-mono); font-size: 11px;
  font-weight: 600; letter-spacing: 0.10em;
  text-transform: uppercase; color: var(--muted);
  display: flex; align-items: center; gap: 4px; margin-bottom: 8px;
}
.card-location svg { width: 12px; height: 12px; }
.card-desc { font-size: 13px; color: var(--muted); line-height: 1.5; margin-bottom: 12px; }
.card-meta { display: flex; flex-wrap: wrap; gap: 6px; }
.meta-item {
  font-family: var(--font-mono); font-size: 9px;
  font-weight: 600; letter-spacing: 0.10em;
  text-transform: uppercase; color: var(--ink);
  border: 1px solid var(--border-solid); padding: 3px 8px;
}
.meta-lbl, .meta-val { display: inline; }

@media (max-width: 900px) { #galleryGrid.gallery-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { #galleryGrid.gallery-grid { grid-template-columns: 1fr; } }

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  background: var(--surface);
  padding: var(--section-pad) 0;
}
.faq-inner {
  max-width: var(--container); margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}
.faq-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 60px);
  font-weight: 900; line-height: 0.92;
  letter-spacing: -0.02em; text-transform: uppercase;
  color: var(--ink); margin-bottom: 48px; margin-top: 8px;
}
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 48px; }

details.faq-item {
  border-bottom: 1px solid var(--border-solid);
  padding: 18px 0;
}
details.faq-item > summary {
  cursor: pointer; font-weight: 700;
  font-family: var(--font-body); font-size: 16px;
  list-style: none; display: flex;
  justify-content: space-between; align-items: center;
  color: var(--ink); user-select: none;
}
details.faq-item > summary::-webkit-details-marker { display: none; }
.faq-chevron {
  font-family: var(--font-mono); font-size: 20px;
  font-weight: 300; color: var(--muted);
  transition: transform 200ms, color 200ms;
  flex-shrink: 0; margin-left: 16px;
}
details.faq-item[open] .faq-chevron { transform: rotate(45deg); color: var(--primary); }
.faq-answer { margin-top: 12px; line-height: 1.65; color: var(--muted); font-size: 15px; }

@media (max-width: 900px) { .faq-grid { grid-template-columns: 1fr; } }

/* ============================================================
   TEAM CTA
   ============================================================ */
.team-cta {
  background: var(--primary);
  padding: 56px 0;
}
.team-cta-inner {
  max-width: var(--container); margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: flex; flex-wrap: wrap;
  justify-content: space-between; align-items: center;
  gap: 24px;
}
.team-cta-inner p {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 48px);
  font-weight: 900; line-height: 0.95;
  letter-spacing: -0.02em; text-transform: uppercase;
  color: #fff; max-width: 28ch;
}

/* ============================================================
   CONTACT (index.html)
   ============================================================ */
.contact {
  background: var(--canvas);
  padding: var(--section-pad) 0;
}
.contact-inner {
  max-width: var(--container); margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: start;
}
.contact-form-col h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900; line-height: 0.92;
  letter-spacing: -0.02em; text-transform: uppercase;
  color: var(--ink); margin-bottom: 8px; margin-top: 8px;
}
.contact-info-col h2 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 900; line-height: 0.95;
  letter-spacing: -0.02em; text-transform: uppercase;
  color: var(--ink); margin-bottom: 24px;
}
.contact-info-block {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.contact-info-block:last-child { border-bottom: none; }
.contact-info-label {
  display: block; font-family: var(--font-mono);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 6px;
}
.contact-info-value {
  font-size: 16px; font-weight: 600; color: var(--ink);
}
.contact-phone-big {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 900; color: var(--primary);
  letter-spacing: -0.02em;
}

@media (max-width: 900px) { .contact-inner { grid-template-columns: 1fr; gap: 48px; } }

/* ============================================================
   CONTACT PAGE (contact.html)
   ============================================================ */
.contact-section {
  background: var(--canvas);
  padding: var(--section-pad) 0;
}
.contact-section-inner {
  max-width: var(--container); margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: start;
}
.contact-form-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 900; line-height: 0.92;
  letter-spacing: -0.02em; text-transform: uppercase;
  color: var(--ink); margin-bottom: 32px; margin-top: 8px;
}
.info-block { padding: 20px 0; border-bottom: 1px solid var(--border); }
.info-block:last-child { border-bottom: none; }
.info-block-label {
  font-family: var(--font-mono); font-size: 10px;
  font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--primary); margin-bottom: 8px;
}
.info-block-value { font-size: 16px; font-weight: 600; color: var(--ink); }
.primary-phone { font-family: var(--font-display); font-size: clamp(24px, 3vw, 36px); font-weight: 900; color: var(--primary); }
.info-divider { height: 1px; background: var(--border); }
.emergency-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--primary); color: #fff;
  font-family: var(--font-mono); font-size: 10px;
  font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; padding: 4px 10px;
  margin-top: 8px;
}
.dot { display: inline-block; width: 6px; height: 6px; background: #fff; border-radius: 50%; }
.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 12px; margin-top: 8px; }
.hours-day { font-family: var(--font-mono); font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.hours-time { font-family: var(--font-mono); font-size: 12px; font-weight: 600; color: var(--ink); }
.service-area-pills { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.area-pill {
  font-family: var(--font-mono); font-size: 10px;
  font-weight: 600; letter-spacing: 0.10em;
  text-transform: uppercase; color: var(--ink);
  border: 1px solid var(--border-solid);
  padding: 4px 10px;
}

@media (max-width: 900px) { .contact-section-inner { grid-template-columns: 1fr; gap: 48px; } }

/* ============================================================
   FORMS
   ============================================================ */
.contact-form, form { display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label {
  font-family: var(--font-mono); font-size: 10px;
  font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted);
}
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body); font-size: 15px;
  font-weight: 500; color: var(--ink);
  background: var(--surface); border: 1px solid var(--border-solid);
  border-radius: 0; padding: 13px 16px;
  transition: border-color 150ms; outline: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--primary); }
.form-field textarea { min-height: 120px; resize: vertical; }
.form-field.full-width { grid-column: 1 / -1; }
.form-submit-row { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.form-note { font-family: var(--font-mono); font-size: 10px; font-weight: 600; letter-spacing: 0.10em; text-transform: uppercase; color: var(--muted); }

@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }

/* ============================================================
   BRAND BAND (contact.html)
   ============================================================ */
.brand-band {
  background: var(--primary);
  padding: clamp(32px, 4vw, 56px) 0;
}
.brand-band-inner {
  max-width: var(--container); margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: flex; flex-wrap: wrap;
  justify-content: space-between; align-items: center;
  gap: 24px;
}
.brand-band-claim {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 900; line-height: 0.95;
  letter-spacing: -0.02em; text-transform: uppercase;
  color: #fff; max-width: 24ch;
}
.brand-band-phone {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; color: var(--primary);
  font-family: var(--font-mono); font-size: 13px;
  font-weight: 700; letter-spacing: 0.10em;
  text-transform: uppercase; padding: 16px 28px;
  border-radius: 0; text-decoration: none;
  transition: background 150ms; white-space: nowrap;
}
.brand-band-phone:hover { background: var(--surface); color: var(--primary); text-decoration: none; }
.brand-band-phone svg { width: 18px; height: 18px; }

/* ============================================================
   RED BAND (about.html)
   ============================================================ */
.red-band {
  background: var(--primary);
  padding: clamp(32px, 4vw, 56px) clamp(20px, 4vw, 48px);
  overflow: hidden;
}
.red-band-claim {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 88px);
  font-weight: 900; line-height: 0.92;
  letter-spacing: -0.02em; text-transform: uppercase;
  color: #fff; max-width: var(--container);
  margin: 0 auto;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--ink);
  padding: var(--section-pad) 0;
}
.cta-banner-inner {
  max-width: var(--container); margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: flex; flex-wrap: wrap;
  justify-content: space-between; align-items: center;
  gap: 32px;
}
.cta-banner-text { flex: 1 1 400px; }
.cta-banner-eyebrow, .cta-eyebrow {
  font-family: var(--font-mono); font-size: 11px;
  font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--primary);
  margin-bottom: 12px;
}
.cta-banner-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 60px);
  font-weight: 900; line-height: 0.92;
  letter-spacing: -0.02em; text-transform: uppercase;
  color: #fff; max-width: 20ch;
}
.cta-banner-headline span { color: var(--primary); }
.cta-banner-label, .cta-banner-sub {
  font-size: 15px; color: rgba(255,255,255,0.70);
  max-width: 44ch; margin-top: 12px;
}
.cta-banner-phone {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900; color: var(--primary);
  letter-spacing: -0.02em;
}
.cta-banner-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* gallery.html cta-banner variant */
.cta-left { flex: 1 1 300px; }
.cta-left h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900; line-height: 0.92;
  letter-spacing: -0.02em; text-transform: uppercase; color: #fff;
  margin-bottom: 8px;
}
.cta-hours { font-size: 14px; color: rgba(255,255,255,0.65); }
.cta-right { display: flex; flex-direction: column; gap: 12px; }
.cta-phone { font-family: var(--font-display); font-size: clamp(20px, 2.5vw, 32px); font-weight: 900; color: var(--primary); letter-spacing: -0.02em; }
.cta-title { font-family: var(--font-display); font-size: clamp(28px, 4vw, 48px); font-weight: 900; text-transform: uppercase; letter-spacing: -0.02em; color: #fff; }

/* ============================================================
   PAGE HEADER (sub-pages)
   ============================================================ */
.page-header {
  min-height: clamp(280px, 45vw, 520px);
  max-height: 64vh;
  display: grid; grid-template-rows: 1fr;
  background: var(--ink);
}
.page-header > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0; max-height: none;
}
.page-header-overlay, .page-header-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(115deg, rgba(12,12,15,0.80) 0%, rgba(12,12,15,0.50) 100%);
}
.page-header-inner {
  position: relative; z-index: 2;
  max-width: var(--container); margin: 0 auto;
  width: 100%; padding: clamp(48px, 7vw, 96px) clamp(20px, 4vw, 48px);
  display: flex; flex-direction: column; justify-content: flex-end;
}
.page-header-eyebrow, .ph-eyebrow {
  font-family: var(--font-mono); font-size: 11px;
  font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--primary); margin-bottom: 12px;
}
.page-header-title, .ph-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 900; line-height: 0.92;
  letter-spacing: -0.02em; text-transform: uppercase;
  color: #fff; max-width: 18ch;
}
.page-header-sub, .ph-sub {
  font-size: 16px; color: var(--white-90);
  max-width: 52ch; margin-top: 16px; line-height: 1.55;
}

/* ============================================================
   SERVICES DETAIL PAGE (services.html)
   ============================================================ */
.services-detail {
  max-width: var(--container); margin: 0 auto;
  padding: var(--section-pad) clamp(20px, 4vw, 48px);
}
.service-row {
  display: grid; grid-template-columns: 480px 1fr; gap: 48px;
  align-items: start; margin-bottom: 64px;
  padding-bottom: 64px; border-bottom: 1px solid var(--border);
}
.service-row:last-child { border-bottom: none; }
.service-row:nth-child(even) { grid-template-columns: 1fr 480px; }
.service-row:nth-child(even) .service-photo { order: 2; }
.service-row:nth-child(even) .service-body { order: 1; }

.service-photo { position: relative; overflow: hidden; }
.service-photo img {
  width: 100%; height: 360px;
  object-fit: cover; display: block; max-height: 360px;
}
.service-index-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--primary); color: #fff;
  font-family: var(--font-display); font-size: 24px;
  font-weight: 900; line-height: 1;
  padding: 8px 14px; letter-spacing: -0.02em;
}
.service-body { padding-top: 4px; }
.service-body h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 900; line-height: 0.92;
  letter-spacing: -0.02em; text-transform: uppercase;
  color: var(--ink); margin-bottom: 20px;
}
.service-eyebrow {
  font-family: var(--font-mono); font-size: 11px;
  font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--primary); margin-bottom: 12px;
}
.service-desc { font-size: 15px; color: var(--muted); line-height: 1.65; margin-bottom: 12px; }
.service-bullets { padding-left: 20px; margin-bottom: 20px; }
.service-bullets li { font-size: 15px; color: var(--muted); line-height: 1.65; margin-bottom: 6px; }
.service-row.emergency { background: var(--surface); padding: 40px; border: 2px solid var(--primary); border-radius: 0; }

@media (max-width: 900px) {
  .service-row, .service-row:nth-child(even) { grid-template-columns: 1fr; }
  .service-row:nth-child(even) .service-photo { order: -1; }
  .service-row:nth-child(even) .service-body { order: 1; }
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-story {
  padding: var(--section-pad) 0;
  background: var(--canvas);
}
.about-story-grid {
  max-width: var(--container); margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid; grid-template-columns: 3fr 2fr; gap: 64px; align-items: start;
}
.about-eyebrow {
  font-family: var(--font-mono); font-size: 11px;
  font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--primary); margin-bottom: 16px;
}
.about-story-text h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 900; line-height: 0.92;
  letter-spacing: -0.02em; text-transform: uppercase;
  color: var(--ink); margin-bottom: 28px;
}
.about-story-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900; line-height: 0.95;
  letter-spacing: -0.02em; text-transform: uppercase;
  color: var(--ink); margin-bottom: 24px;
}
.about-story-body p { font-size: 16px; color: var(--muted); line-height: 1.70; margin-bottom: 16px; }
.about-divider { width: 80px; height: 4px; background: var(--primary); margin: 28px 0; }
.about-trust-row { display: flex; flex-wrap: wrap; gap: 8px; }
.about-trust-chip {
  display: inline-block; padding: 8px 16px;
  border: 2px solid var(--border-solid);
  font-family: var(--font-mono); font-size: 10px;
  font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink);
}
.about-story-photo { position: relative; }
.about-story-photo img { width: 100%; object-fit: cover; max-height: 640px; border: 1px solid var(--border-solid); }
.about-photo-caption {
  font-family: var(--font-mono); font-size: 10px;
  font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted);
  margin-top: 12px;
}
@media (max-width: 900px) { .about-story-grid { grid-template-columns: 1fr; } }

/* VALUES */
.values { background: var(--surface); padding: var(--section-pad) 0; }
.values-inner {
  max-width: var(--container); margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}
.values-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 900; line-height: 0.92;
  letter-spacing: -0.02em; text-transform: uppercase;
  color: var(--ink); margin-bottom: 40px; margin-top: 8px;
}
.values-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
}
.value-card {
  background: var(--canvas); border: 1px solid var(--border-solid);
  padding: 28px 24px;
}
.value-num {
  font-family: var(--font-display);
  font-size: 64px; font-weight: 900;
  color: var(--primary); line-height: 0.85;
  letter-spacing: -0.03em; margin-bottom: 20px;
}
.value-card h3 {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 900; line-height: 0.95;
  letter-spacing: -0.01em; text-transform: uppercase;
  color: var(--ink); margin-bottom: 12px;
}
.value-body { font-size: 14px; color: var(--muted); line-height: 1.65; }
.value-title { font-family: var(--font-display); font-size: 20px; font-weight: 900; text-transform: uppercase; letter-spacing: -0.01em; color: var(--ink); margin-bottom: 10px; }
@media (max-width: 900px) { .values-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .values-grid { grid-template-columns: 1fr; } }

/* TIMELINE */
.timeline { background: var(--canvas); padding: var(--section-pad) 0; }
.timeline-inner {
  max-width: var(--container); margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}
.timeline-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 900; line-height: 0.92;
  letter-spacing: -0.02em; text-transform: uppercase;
  color: var(--ink); margin-bottom: 48px; margin-top: 8px;
}
.timeline-track {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px; position: relative;
}
.timeline-step {
  border: 1px solid var(--border-solid);
  padding: 28px 24px; background: var(--surface);
  position: relative;
}
.timeline-dot {
  width: 10px; height: 10px;
  background: var(--primary); margin-bottom: 16px;
}
.timeline-year {
  font-family: var(--font-display); font-size: 36px;
  font-weight: 900; color: var(--primary);
  line-height: 1; margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.timeline-title {
  font-family: var(--font-display); font-size: 18px;
  font-weight: 900; text-transform: uppercase;
  letter-spacing: -0.01em; color: var(--ink); margin-bottom: 10px;
}
.timeline-body { font-size: 13px; color: var(--muted); line-height: 1.65; }
@media (max-width: 900px) { .timeline-track { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .timeline-track { grid-template-columns: 1fr; } }

/* CREW STRIP */
.crew-strip { background: var(--surface); padding: var(--section-pad) 0; }
.crew-strip-inner {
  max-width: var(--container); margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}
.crew-strip-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 900; line-height: 0.92;
  letter-spacing: -0.02em; text-transform: uppercase;
  color: var(--ink); margin-bottom: 40px; margin-top: 8px;
}
.crew-photo-row {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 32px; align-items: start;
}
.crew-photo-cell { position: relative; }
.crew-photo-cell img { width: 100%; object-fit: cover; max-height: 480px; border: 1px solid var(--border-solid); }
.crew-photo-label {
  font-family: var(--font-mono); font-size: 10px;
  font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted);
  margin-top: 10px;
}
.crew-stat-col { display: flex; flex-direction: column; gap: 28px; }
.crew-stat { border-top: 2px solid var(--border-solid); padding-top: 16px; }
.crew-stat-num {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900; color: var(--primary);
  line-height: 0.85; letter-spacing: -0.02em;
}
.crew-stat-label {
  font-family: var(--font-mono); font-size: 10px;
  font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted); margin-top: 8px;
}
@media (max-width: 900px) { .crew-photo-row { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .crew-photo-row { grid-template-columns: 1fr; } }

/* ============================================================
   FOOTER
   ============================================================ */
.footer, .site-footer {
  background: var(--ink);
  padding: clamp(56px, 6vw, 80px) 0 0;
}
.footer-inner {
  max-width: var(--container); margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr 1.2fr;
  gap: 48px; margin-bottom: 56px;
}
.footer-brand { grid-column: 1; }
.footer-brand img { margin-bottom: 16px; }
.footer-brand p, .footer-tagline {
  font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.65; max-width: 30ch;
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 900;
  letter-spacing: -0.01em; text-transform: uppercase;
  color: #fff; margin-bottom: 8px;
}
.footer-brand-col { grid-column: 1; }
.footer-brand-email, .footer-brand-phone { font-size: 13px; color: rgba(255,255,255,0.65); margin-top: 8px; }
.footer-col h4, .footer-col-title, .footer-col-head {
  font-family: var(--font-mono); font-size: 10px;
  font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(255,255,255,0.40);
  margin-bottom: 16px; display: block;
}
.footer-links, .footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-links li, .footer-col-links li { margin-bottom: 10px; }
.footer-links a, .footer-col-links a {
  font-size: 14px; color: rgba(255,255,255,0.65);
  transition: color 150ms; text-decoration: none;
}
.footer-links a:hover, .footer-col-links a:hover { color: var(--primary); text-decoration: none; }
.footer-address {
  font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.80;
}
.footer-areas { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.70; }
.footer-areas-text { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.70; }
.footer-hours-text { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.70; }
.footer-contact-item {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 10px;
}
.footer-contact-item svg { width: 14px; height: 14px; color: var(--primary); flex-shrink: 0; }
.footer-contact-item a, .footer-contact-item span { font-size: 13px; color: rgba(255,255,255,0.65); }
.footer-contact-line { font-size: 13px; color: rgba(255,255,255,0.65); margin-bottom: 8px; }
.footer-contact-line a { color: rgba(255,255,255,0.65); }
.footer-contact-line a:hover { color: var(--primary); text-decoration: none; }
.footer-phone-link { color: rgba(255,255,255,0.85) !important; font-weight: 600; }
.footer-email-link { color: rgba(255,255,255,0.65); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex; flex-wrap: wrap;
  justify-content: space-between; align-items: center;
  gap: 16px;
}
.footer-copy { font-family: var(--font-mono); font-size: 10px; font-weight: 600; letter-spacing: 0.10em; text-transform: uppercase; color: rgba(255,255,255,0.30); }
.footer-badges, .footer-trust-row { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-badge, .footer-trust-chip {
  font-family: var(--font-mono); font-size: 9px;
  font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.40);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 5px 10px;
}

@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-brand, .footer-brand-col { grid-column: 1 / -1; } }
@media (max-width: 640px) { .footer-grid { grid-template-columns: 1fr; } }

/* ============================================================
   MOBILE CALL PILL / STICKY CTA
   ============================================================ */
.mobile-call-btn, .mobile-call-pill, .mobile-cta-pill, .mobile-sticky-cta {
  position: fixed; bottom: 18px; right: 18px; z-index: 999;
  display: flex; align-items: center; gap: 10px;
  background: var(--primary); color: #fff;
  font-family: var(--font-mono); font-size: 13px;
  font-weight: 700; letter-spacing: 0.10em;
  text-transform: uppercase; text-decoration: none;
  padding: 14px 22px; border-radius: 999px;
  box-shadow: 0 18px 40px -10px rgba(0,0,0,0.45);
  transition: background 150ms, transform 150ms;
}
.mobile-call-btn:hover, .mobile-call-pill:hover, .mobile-cta-pill:hover, .mobile-sticky-cta:hover {
  background: var(--red-dark); transform: translateY(-2px); color: #fff; text-decoration: none;
}
.mobile-call-btn svg, .mobile-call-pill svg, .mobile-cta-pill svg, .mobile-sticky-cta svg {
  width: 18px; height: 18px; flex-shrink: 0;
}
.mobile-sticky-cta a {
  display: flex; align-items: center; gap: 10px;
  color: #fff; text-decoration: none;
  font-family: var(--font-mono); font-size: 13px;
  font-weight: 700; letter-spacing: 0.10em; text-transform: uppercase;
}
.mobile-sticky-cta a svg { width: 18px; height: 18px; }

@media (min-width: 900px) {
  .mobile-call-btn, .mobile-call-pill, .mobile-cta-pill, .mobile-sticky-cta { display: none; }
}

/* ============================================================
   ANIMATION UTILITIES
   ============================================================ */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 600ms ease-out, transform 600ms ease-out; }
.fade-up.visible { opacity: 1; transform: none; }

.fade-left { opacity: 0; transform: translateX(-28px); transition: opacity 600ms ease-out, transform 600ms ease-out; }
.fade-left.visible { opacity: 1; transform: none; }

.fade-right { opacity: 0; transform: translateX(28px); transition: opacity 600ms ease-out, transform 600ms ease-out; }
.fade-right.visible { opacity: 1; transform: none; }

.scale-in { opacity: 0; transform: scale(0.94); transition: opacity 500ms ease-out, transform 500ms ease-out; }
.scale-in.visible { opacity: 1; transform: none; }

.stagger > * { opacity: 0; transform: translateY(20px); transition: opacity 500ms ease-out, transform 500ms ease-out; }
.stagger.visible > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0ms; }
.stagger.visible > *:nth-child(2) { opacity: 1; transform: none; transition-delay: 80ms; }
.stagger.visible > *:nth-child(3) { opacity: 1; transform: none; transition-delay: 160ms; }
.stagger.visible > *:nth-child(4) { opacity: 1; transform: none; transition-delay: 240ms; }
.stagger.visible > *:nth-child(5) { opacity: 1; transform: none; transition-delay: 320ms; }
.stagger.visible > *:nth-child(6) { opacity: 1; transform: none; transition-delay: 400ms; }
.stagger.visible > *:nth-child(7) { opacity: 1; transform: none; transition-delay: 480ms; }
.stagger.visible > *:nth-child(8) { opacity: 1; transform: none; transition-delay: 560ms; }
.stagger.visible > *:nth-child(n+9) { opacity: 1; transform: none; transition-delay: 640ms; }

/* ============================================================
   MISC UTILITIES
   ============================================================ */
.full-width { grid-column: 1 / -1; }
.full-bleed { width: 100vw; margin-left: calc(-50vw + 50%); }

/* Nav id override */
#nav { position: relative; }

/* Readable table cells */
thead .col-service,
thead .col-desc,
thead .col-timeline,
thead .col-price {
  background: var(--ink); color: #fff;
}
tbody .col-service,
tbody .col-desc,
tbody .col-timeline,
tbody .col-price {
  background: var(--canvas); color: var(--ink);
}

/* ============================================================
   SCROLLBAR STYLING
   ============================================================ */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--primary); }

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .site-header, .mobile-call-btn, .mobile-call-pill, .mobile-cta-pill, .mobile-sticky-cta { display: none; }
}


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.hero-bg { grid-column: 1 / -1; }
.hero-overlay { grid-column: 1 / -1; }
.hero-ribbon { grid-column: 1 / -1; }
.hero-inner { grid-column: 1 / -1; }
.service-flagship-img { grid-column: 1 / -1; }
.service-flagship-body { grid-column: 1 / -1; }
.spider-spec { grid-column: 1 / -1; }
.form-field { grid-column: 1 / -1; }
.footer-col { grid-column: 1 / -1; }
.page-header-bg { grid-column: 1 / -1; }
.page-header-overlay { grid-column: 1 / -1; }
.page-header-inner { grid-column: 1 / -1; }
.service-photo { grid-column: 1 / -1; }
.about-story-text { grid-column: 1 / -1; }
.about-story-photo { grid-column: 1 / -1; }
.value-card { grid-column: 1 / -1; }
.timeline-step { grid-column: 1 / -1; }
.crew-photo-cell { grid-column: 1 / -1; }
.crew-stat-col { grid-column: 1 / -1; }
.spider-visual { grid-column: 1 / -1; }
.hours-day { grid-column: 1 / -1; }
.hours-time { grid-column: 1 / -1; }
/* validator patch: hero must never crop its headline */
#hero, .hero { overflow: visible !important; }
:where(#hero, .hero) { padding-top: max(var(--header-height, 72px), 72px); }
/* validator patch: keep the hero photo visible, no smothering dark band */
.hero-overlay { background: linear-gradient(to top, rgba(0,0,0,0.66), rgba(0,0,0,0.34) 38%, rgba(0,0,0,0.12) 68%, rgba(0,0,0,0) 100%), linear-gradient(to right, rgba(0,0,0,0.30), rgba(0,0,0,0) 58%) !important; }
