/* =========================================================================
   Helical Piers Florida — Brand theme override
   Chrome blue + safety orange + near-black industrial palette
   ========================================================================= */

:root, :root[data-theme="helical"] {
  /* Brand colors */
  --accent:        #FF6A13;          /* Safety orange — CTA */
  --accent-ink:    #FFFFFF;
  --accent-hover:  #E55A05;
  --accent-soft:   #FFE8D6;

  --brand-blue:    #0099D8;          /* Chrome blue (logo ring) */
  --brand-blue-2:  #00B5F2;
  --brand-blue-soft: #DEF1FB;
  --steel:         #C0C5CC;          /* Brushed silver accent */
  --steel-2:       #8A929B;

  --ink:           #0A0A0A;          /* Near-black header */
  --ink-2:         #1F2227;
  --ink-3:         #4F555E;
  --ink-4:         #8A929B;

  --surface:       #FFFFFF;
  --surface-2:     #F5F7FA;
  --surface-3:     #E9EDF2;

  --line:          rgba(10, 10, 10, 0.10);
  --line-strong:   rgba(10, 10, 10, 0.20);

  --success:       #2E8B57;
  --danger:        #C42121;
  --warning:       #E8A13A;

  /* Type — engineering/industrial */
  --font-display:  'Barlow Condensed', 'Oswald', 'Arial Narrow', sans-serif;
  --font-body:     'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-accent:   'Barlow', 'Inter', sans-serif;

  --header-h:      88px;
}

/* Page background */
body { background: var(--surface); color: var(--ink); }

/* ---------------------------------------------------------- Top utility strip
   Black bar with chrome-blue divider line; license + phone */
.utility-strip {
  background: var(--ink);
  color: #fff;
  border-bottom: 1px solid var(--brand-blue);
}
.utility-strip-inner { min-height: 36px; font-size: 12px; letter-spacing: 0.02em; }
.utility-item--phone { color: var(--brand-blue); font-weight: 700; }
.utility-item--phone:hover { color: var(--accent); }
.utility-license {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.utility-license b { color: #fff; letter-spacing: 0.04em; }
.utility-strip a:hover { color: var(--accent); }

/* ---------------------------------------------------------- Header
   White → black? Spec: dark logo background. We do near-black header. */
.site-header {
  background: var(--ink);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.site-header.is-scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 18px rgba(0,0,0,0.5);
}
.site-header .nav-link { color: rgba(255,255,255,0.85); }
.site-header .nav-link:hover { color: var(--accent); }
.site-header .phone-block { color: #fff; }
.site-header .phone-block-num { color: #fff; }
.site-header .phone-block-hours { color: var(--brand-blue); }
.site-header .phone-block-icon { background: var(--brand-blue); color: #fff; }
.site-header .phone-block:hover .phone-block-num { color: var(--accent); }

/* ---------------------------------------------------------- Logo
   Chrome blue ring + black plate metallic feel, drawn in CSS. */
.logo-lockup {
  display: inline-flex; align-items: center; gap: 14px;
  text-decoration: none; color: #fff;
}
.logo-mark-helical {
  width: 56px; height: 56px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, #4FC4ED 0%, #0099D8 40%, #006A99 80%, #003E5C 100%);
  position: relative;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.6),
    inset 0 -8px 14px rgba(0,0,0,0.45),
    0 2px 8px rgba(0,0,0,0.5);
  display: grid; place-items: center;
  flex: 0 0 auto;
}
.logo-mark-helical::before {
  content: '';
  position: absolute; inset: 5px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 30%, #2A2A2E 0%, #0a0a0a 100%);
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.8), inset 0 -1px 0 rgba(255,255,255,0.05);
}
.logo-mark-helical svg {
  position: relative; z-index: 2;
  filter: drop-shadow(0 0 6px rgba(0, 153, 216, 0.6));
}
.logo-text-stack {
  display: flex; flex-direction: column; line-height: 0.95;
}
.logo-text-top {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}
.logo-text-top em {
  font-style: normal;
  background: linear-gradient(180deg, #4FC4ED 0%, #0099D8 60%, #006A99 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.logo-text-bot {
  font-family: var(--font-body);
  font-size: 9.5px;  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--steel);
  margin-top: 4px;
  white-space: nowrap;
}

/* Image-based logo (uploaded brand mark) */
.logo-lockup--image {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 4px 0;
}
.logo-image {
  display: block;
  height: 52px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
}
.site-header.is-scrolled .logo-image { height: 44px; }
.site-footer .logo-image { height: 64px; max-width: 280px; filter: none; opacity: 1; }
@media (max-width: 720px) {
  .logo-image { height: 42px; }
}

/* ---------------------------------------------------------- Hero */
.hero {
  background: var(--ink);
  padding: 0;
  min-height: 680px;
}
.hero-media-wrap {
  position: absolute; inset: 0;
  overflow: hidden;
}
.hero-media {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-gradient {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(10,10,10,0.96) 0%, rgba(10,10,10,0.85) 35%, rgba(10,10,10,0.45) 65%, rgba(10,10,10,0.2) 100%),
    linear-gradient(180deg, rgba(10,10,10,0.4) 0%, transparent 30%, transparent 70%, rgba(10,10,10,0.6) 100%);
}
.hero-grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0, 153, 216, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 153, 216, 0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 30%, #000 70%, transparent 100%);
}
.hero-inner { padding: 64px 0 80px; }
.hero-eyebrow-row {
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 24px;
  padding: 8px 14px 8px 8px;
  background: rgba(0, 153, 216, 0.12);
  border: 1px solid rgba(0, 153, 216, 0.4);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
}
.hero-eyebrow-row .dot {
  width: 22px; height: 22px;
  background: var(--brand-blue);
  border-radius: 50%;
  display: grid; place-items: center;
}
.hero-eyebrow-row .dot svg { color: #fff; }
.hero-title { color: #fff; font-weight: 800; }
.hero-title .accent { color: var(--brand-blue); }
.hero-title .underline {
  position: relative; display: inline-block;
}
.hero-title .underline::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -6px;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-blue) 0%, var(--accent) 100%);
}
.hero-sub {
  font-size: 19px; line-height: 1.55;
  color: rgba(255,255,255,0.78);
  max-width: 580px;
  margin: 28px 0 36px;
}
.hero-cta-row {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-bottom: 36px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  max-width: 720px;
}
.hero-stat { padding-right: 18px; border-right: 1px solid rgba(255,255,255,0.08); }
.hero-stat:last-child { border-right: none; padding-right: 0; }
.hero-stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 36px;
  line-height: 1;
  color: var(--brand-blue);
  margin-bottom: 4px;
}
.hero-stat-num small { font-size: 18px; color: var(--steel); }
.hero-stat-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  font-weight: 600;
}

/* Hero side card — engineer consult */
.hero-card {
  background: linear-gradient(180deg, #0F1115 0%, #0A0A0A 100%);
  border: 1px solid rgba(0, 153, 216, 0.4);
  border-radius: var(--r-lg);
  padding: 28px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-blue) 0%, var(--accent) 100%);
}
.hero-card-pin {
  width: 56px; height: 56px;
  background: var(--brand-blue);
  color: #fff;
  border-radius: var(--r-md);
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.hero-card-eyebrow {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--brand-blue);
  margin-bottom: 6px;
}
.hero-card-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  line-height: 1.05;
  margin-bottom: 10px;
}
.hero-card-sub {
  font-size: 14px; line-height: 1.55;
  color: rgba(255,255,255,0.72);
  margin-bottom: 20px;
}
.hero-card .field input,
.hero-card .field select {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  padding: 12px 14px;
  border-radius: var(--r-md);
  font-size: 14px;
  font-family: var(--font-body);
  width: 100%;
}
.hero-card .field input:focus,
.hero-card .field select:focus {
  outline: none; border-color: var(--brand-blue);
  background: rgba(0, 153, 216, 0.08);
}
.hero-card .field input::placeholder { color: rgba(255,255,255,0.4); }
.hero-card .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 10px; }
.hero-card .field-full { margin-bottom: 10px; }
.hero-card-disclaimer {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  margin-top: 12px;
  line-height: 1.4;
}

/* Hero video box (right side of hero) */
.hero-video {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.7), 0 0 0 1px rgba(0,153,216,0.15) inset;
  background: #0F1115;
}
.hero-video-el {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  background: #0F1115;
  display: block;
}
.hero-video-frame {
  position: absolute; inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.06),
    inset 0 -80px 100px -40px rgba(0,0,0,0.65);
}
.hero-video-badge {
  position: absolute; left: 14px; top: 14px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 12px;
  background: rgba(10,10,10,0.72);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
  z-index: 2;
}
.hero-video-badge svg { color: var(--brand-blue); }
.hero-video-placeholder {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, #0F1115 0%, #0A0A0A 100%);
  display: grid; place-items: center;
  overflow: hidden;
}
.hero-video-placeholder-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,153,216,0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,153,216,0.18) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(circle at center, #000 0%, transparent 75%);
  opacity: 0.5;
}
.hero-video-placeholder-content {
  position: relative;
  text-align: center;
  padding: 28px;
  max-width: 360px;
}
.hero-video-placeholder-icon {
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--brand-blue);
  display: grid; place-items: center;
  color: #fff;
  box-shadow: 0 0 0 8px rgba(0,153,216,0.15);
}
.hero-video-placeholder-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.hero-video-placeholder-sub {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255,255,255,0.65);
}
.hero-video-placeholder-sub code {
  display: inline-block;
  background: rgba(0,153,216,0.12);
  border: 1px solid rgba(0,153,216,0.3);
  color: var(--brand-blue);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 4px;
  margin: 0 2px;
}

/* ---------------------------------------------------------- Hero right column (video + quick form) */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.hero-quick-form {
  background: rgba(10, 10, 10, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 153, 216, 0.25);
  border-radius: var(--radius-lg);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.7);
}
.hero-quick-form-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--brand-blue);
}
.hero-quick-form-row {
  display: grid;
  grid-template-columns: 1.6fr 1.4fr 0.9fr;
  gap: 8px;
}
.hero-quick-form input[type="text"],
.hero-quick-form input[type="tel"] {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 10px 12px;
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  transition: border-color 0.15s, background 0.15s;
}
.hero-quick-form input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}
.hero-quick-form input:focus,
.hero-quick-form-message:focus {
  outline: none;
  border-color: var(--brand-blue);
  background: rgba(0, 153, 216, 0.08);
}
.hero-quick-form-message {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 10px 12px;
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.45;
  resize: vertical;
  min-height: 60px;
  transition: border-color 0.15s, background 0.15s;
}
.hero-quick-form-message::placeholder {
  color: rgba(255, 255, 255, 0.45);
}
.hero-quick-form .btn {
  width: 100%;
  justify-content: center;
}
@media (max-width: 720px) {
  .hero-quick-form-row { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------- Buttons override */
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 0 rgba(0,0,0,0.2), 0 6px 14px rgba(255, 106, 19, 0.3);
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 5px 0 rgba(0,0,0,0.2), 0 10px 18px rgba(255, 106, 19, 0.4);
}
.btn-blue {
  background: var(--brand-blue);
  color: #fff;
  border: none;
  box-shadow: 0 4px 0 rgba(0,0,0,0.2), 0 6px 14px rgba(0, 153, 216, 0.3);
}
.btn-blue:hover { background: #007AB0; transform: translateY(-1px); }
.btn-ghost-light {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.3);
  color: #fff;
}
.btn-ghost-light:hover { border-color: var(--brand-blue); color: var(--brand-blue); }

/* ---------------------------------------------------------- Trust strip
   Industrial certifications */
.cert-strip {
  background: var(--ink);
  color: #fff;
  padding: 28px 0;
  border-top: 1px solid rgba(0, 153, 216, 0.2);
}
.cert-strip-inner {
  display: grid;
  grid-template-columns: auto repeat(5, 1fr);
  gap: 24px;
  align-items: center;
}
.cert-strip-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--steel);
  line-height: 1.3;
  border-right: 1px solid rgba(255,255,255,0.1);
  padding-right: 24px;
}
.cert-strip-label b { color: #fff; display: block; font-size: 13px; letter-spacing: 0.1em; }
.cert-badge {
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  line-height: 1.3;
  gap: 8px;
}
.cert-badge-mark {
  height: 36px;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--brand-blue);
  line-height: 1;
}

/* ---------------------------------------------------------- Section heads */
.section { padding: 96px 0; }
.section-head { max-width: 760px; }
.section-head--center { margin: 0 auto var(--s-7); text-align: center; }
.eyebrow { color: var(--brand-blue); }

/* ---------------------------------------------------------- Services / Solutions */
.solutions-section { background: var(--surface-2); }
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.solution-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 0;
  display: flex; flex-direction: column;
  text-decoration: none;
  color: var(--ink);
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
  transition: all 220ms cubic-bezier(0.2, 0.7, 0.2, 1);
  overflow: hidden;
}
.solution-card:hover {
  border-color: var(--brand-blue);
  box-shadow: 0 12px 28px rgba(0, 153, 216, 0.18);
  transform: translateY(-3px);
}
.solution-card-media {
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center;
  position: relative;
  border-bottom: 3px solid var(--brand-blue);
}
.solution-card-tag {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--ink);
  color: var(--brand-blue);
  font-size: 10px; font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: var(--r-sm);
  border: 1px solid rgba(0, 153, 216, 0.4);
}
.solution-card-body { padding: 24px 28px 28px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.solution-card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.1;
  margin: 0;
}
.solution-card-text {
  font-size: 14px; line-height: 1.55;
  color: var(--ink-3);
  margin: 0;
  flex: 1;
}
.solution-card-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--accent);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ---------------------------------------------------------- Symptom checker section */
.symptom-section { background: var(--ink); color: #fff; position: relative; overflow: hidden; }
.symptom-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--brand-blue) 50%, transparent 100%);
}
.symptom-section h2 { color: #fff; }
.symptom-section .lead { color: rgba(255,255,255,0.7); }
.symptom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.symptom-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  padding: 24px;
  display: flex; gap: 16px;
  align-items: flex-start;
  transition: all 200ms ease;
  cursor: pointer;
}
.symptom-card:hover {
  border-color: var(--brand-blue);
  background: rgba(0, 153, 216, 0.06);
}
.symptom-card-icon {
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  background: rgba(255, 106, 19, 0.15);
  border: 1px solid rgba(255, 106, 19, 0.3);
  color: var(--accent);
  display: grid; place-items: center;
  flex: 0 0 auto;
}
.symptom-card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  margin: 0 0 6px;
}
.symptom-card-text {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,0.65);
  margin: 0;
}

/* ---------------------------------------------------------- Process timeline */
.process-section { background: var(--surface); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute; top: 28px; left: 12.5%; right: 12.5%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--brand-blue) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; }
.process-step-num {
  width: 56px; height: 56px;
  background: var(--surface);
  border: 2px solid var(--brand-blue);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--brand-blue);
  margin: 0 auto 18px;
}
.process-step-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  margin: 0 0 6px;
}
.process-step-text {
  font-size: 13px; line-height: 1.55;
  color: var(--ink-3);
}

/* ---------------------------------------------------------- Florida soil callout */
.soil-section {
  background: linear-gradient(135deg, #0A0A0A 0%, #0F2235 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.soil-section::after {
  content: '';
  position: absolute; right: -10%; top: 50%; transform: translateY(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0, 153, 216, 0.18) 0%, transparent 70%);
  pointer-events: none;
}
.soil-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.soil-section h2 { color: #fff; }
.soil-list { display: grid; gap: 14px; margin-top: 28px; }
.soil-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 3px solid var(--brand-blue);
  border-radius: var(--r-md);
}
.soil-item-icon {
  flex: 0 0 auto;
  width: 36px; height: 36px;
  background: rgba(0, 153, 216, 0.15);
  color: var(--brand-blue);
  border-radius: var(--r-sm);
  display: grid; place-items: center;
}
.soil-item b {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: #fff;
  margin-bottom: 2px;
}
.soil-item span {
  font-size: 13px; line-height: 1.5;
  color: rgba(255,255,255,0.7);
}

/* Pier diagram */
.pier-diagram {
  position: relative;
  aspect-ratio: 4/5;
  background: linear-gradient(180deg, transparent 0%, transparent 35%, #2B1810 35%, #1A0F08 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.pier-diagram-sky {
  position: absolute; top: 0; left: 0; right: 0; height: 35%;
  background: linear-gradient(180deg, #1B2C44 0%, #0F1B2C 100%);
}
.pier-diagram-house {
  position: absolute; top: 18%; left: 12%; right: 12%; height: 22%;
  background: #2A2D34;
  border: 1px solid #4A4E58;
  border-radius: 4px 4px 0 0;
}
.pier-diagram-house::before {
  content: '';
  position: absolute; top: -20px; left: -8px; right: -8px;
  height: 28px;
  background: var(--ink);
  clip-path: polygon(8% 100%, 50% 0%, 92% 100%);
}
.pier-diagram-ground {
  position: absolute; left: 0; right: 0; top: 35%;
  height: 2px;
  background: var(--brand-blue);
  box-shadow: 0 0 10px var(--brand-blue);
}
.pier-diagram-pier {
  position: absolute;
  left: 50%; transform: translateX(-50%);
  top: 32%;
  width: 14px; bottom: 8%;
  background: linear-gradient(90deg, #6A7079 0%, #C0C5CC 50%, #6A7079 100%);
  border-radius: 2px;
}
.pier-diagram-helix {
  position: absolute;
  left: 50%; transform: translateX(-50%);
  width: 56px; height: 14px;
  background: linear-gradient(180deg, #C0C5CC 0%, #6A7079 100%);
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
.pier-diagram-label {
  position: absolute;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-blue);
  display: flex; align-items: center; gap: 8px;
}
.pier-diagram-label::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--brand-blue);
}

/* ---------------------------------------------------------- Reviews override */
.reviews-section { background: var(--surface-2); }
.reviews-head-right { background: #fff; border: 1px solid var(--line); }
.review-card { border-color: var(--line); }
.review-avatar { background: var(--brand-blue); color: #fff; }

/* ---------------------------------------------------------- Service area map */
.service-area-section {
  background: var(--surface);
  border-top: 1px solid var(--line);
}
.metro-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 36px;
}
.metro-card {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px;
  text-decoration: none;
  color: var(--ink);
  display: flex; flex-direction: column; gap: 10px;
  transition: all 200ms ease;
}
.metro-card:hover {
  border-color: var(--brand-blue);
  background: var(--brand-blue-soft);
  transform: translateY(-2px);
}
.metro-card-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  margin: 0;
}
.metro-card-phone {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--brand-blue);
  letter-spacing: 0.02em;
}
.metro-card-cities {
  font-size: 12px;
  color: var(--ink-3);
  line-height: 1.5;
}
.metro-card-link {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent);
}

/* ---------------------------------------------------------- Vendor strip */
.vendor-strip {
  background: var(--surface-2);
  padding: 40px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.vendor-strip-label {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 700;
  margin-bottom: 24px;
}
.vendor-row {
  display: flex; justify-content: space-around; align-items: center;
  flex-wrap: wrap; gap: 32px;
}
.vendor-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.02em;
  color: var(--ink-3);
  filter: grayscale(1);
  opacity: 0.7;
  transition: all 200ms ease;
  text-transform: uppercase;
  border: 1.5px solid var(--ink-3);
  padding: 10px 18px;
  border-radius: var(--r-sm);
}
.vendor-logo:hover { filter: none; opacity: 1; color: var(--ink); border-color: var(--ink); }
.vendor-logo small { display: block; font-size: 9px; letter-spacing: 0.16em; font-weight: 600; }

/* ---------------------------------------------------------- Lead form override */
.lead-section {
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.lead-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0, 153, 216, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 153, 216, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
}
.lead-section .container { position: relative; z-index: 2; }
.lead-section .eyebrow { color: var(--brand-blue); }
.lead-form .field input,
.lead-form .field select,
.lead-form .field textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
}
.lead-form .field input:focus,
.lead-form .field select:focus,
.lead-form .field textarea:focus {
  border-color: var(--brand-blue);
  background: rgba(0, 153, 216, 0.06);
}
.exclusion-notice {
  margin-top: 16px;
  padding: 12px 14px;
  background: rgba(255, 106, 19, 0.08);
  border: 1px solid rgba(255, 106, 19, 0.3);
  border-radius: var(--r-md);
  font-size: 12px;
  color: rgba(255,255,255,0.85);
  display: flex; align-items: center; gap: 10px;
}
.exclusion-notice svg { color: var(--accent); flex: 0 0 auto; }

/* ---------------------------------------------------------- Footer override */
.site-footer { background: var(--ink); color: #fff; border-top: 4px solid var(--brand-blue); }
.footer-cta {
  background: var(--accent);
  color: #fff;
}
.footer-cta-inner h2 { color: #fff; }
.footer-cta .eyebrow--light { color: rgba(255,255,255,0.85); }
.footer-cta .footer-phone { color: #fff; }
.footer-body { background: var(--ink); border-bottom-color: rgba(255,255,255,0.08); }
.footer-col-heading { color: #fff; border-bottom-color: var(--brand-blue); }
.footer-col a { color: rgba(255,255,255,0.65); }
.footer-col a:hover { color: var(--brand-blue); }
.footer-contact-item { color: rgba(255,255,255,0.7); }
.footer-contact-item svg { color: var(--brand-blue); }
.footer-col--brand .small { color: rgba(255,255,255,0.55); }
.footer-social { border-color: rgba(255,255,255,0.15); color: rgba(255,255,255,0.65); }
.footer-social:hover { background: var(--brand-blue); border-color: var(--brand-blue); color: #fff; }
.footer-license-row {
  background: #000;
  padding: 18px 0;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.55);
  text-align: center;
  line-height: 1.7;
}
.footer-license-row b { color: #fff; }
.footer-license-row .pipe { color: var(--brand-blue); margin: 0 10px; }
.footer-legal { background: #000; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-legal-inner { color: rgba(255,255,255,0.4); }
.footer-legal-links a { color: rgba(255,255,255,0.5); }

/* ---------------------------------------------------------- Page subhead (subpages) */
.page-hero {
  background: var(--ink);
  color: #fff;
  padding: 72px 0 56px;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid var(--brand-blue);
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0, 153, 216, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 153, 216, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 100%);
}
.page-hero-inner { position: relative; z-index: 2; max-width: 920px; }
.breadcrumb {
  display: flex; gap: 8px; align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 18px;
  letter-spacing: 0.04em;
}
.breadcrumb a { color: var(--brand-blue); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { color: rgba(255,255,255,0.3); }
.page-hero h1 { color: #fff; font-size: clamp(36px, 5vw, 60px); }
.page-hero .lead { color: rgba(255,255,255,0.78); max-width: 720px; margin-top: 16px; }
.page-hero-meta {
  display: flex; gap: 24px; flex-wrap: wrap;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.page-hero-meta-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
}
.page-hero-meta-item svg { color: var(--brand-blue); flex: 0 0 auto; }
.page-hero-meta-item b { color: #fff; }

/* ---------------------------------------------------------- Two-column body layout */
.body-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 56px;
  align-items: flex-start;
}
.body-main h2 { font-size: 32px; margin-top: 40px; }
.body-main h2:first-child { margin-top: 0; }
.body-main h3 { font-size: 22px; margin-top: 28px; }
.body-main p { font-size: 16px; line-height: 1.7; color: var(--ink-2); margin-bottom: 16px; }
.body-main ul { margin: 16px 0; padding-left: 0; list-style: none; }
.body-main ul li {
  position: relative;
  padding: 10px 0 10px 32px;
  font-size: 16px;
  line-height: 1.55;
  border-bottom: 1px solid var(--line);
}
.body-main ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 16px;
  width: 18px; height: 18px;
  background: var(--brand-blue);
  border-radius: 4px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}
.callout {
  background: var(--brand-blue-soft);
  border-left: 4px solid var(--brand-blue);
  padding: 20px 24px;
  border-radius: 0 var(--r-md) var(--r-md) 0;
  margin: 24px 0;
}
.callout b { color: var(--brand-blue); display: block; font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 6px; }

/* Sticky sidebar quote box */
.sidebar-quote {
  position: sticky; top: 120px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--r-lg);
  padding: 28px;
  border: 1px solid rgba(0, 153, 216, 0.4);
  border-top: 4px solid var(--brand-blue);
}
.sidebar-quote h3 {
  color: #fff;
  font-size: 22px;
  margin: 0 0 6px;
}
.sidebar-quote p {
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  margin-bottom: 18px;
}
.sidebar-quote .field { margin-bottom: 10px; }
.sidebar-quote .field input,
.sidebar-quote .field select,
.sidebar-quote .field textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  width: 100%;
  padding: 11px 12px;
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: 13px;
}
.sidebar-quote .field input:focus,
.sidebar-quote .field select:focus,
.sidebar-quote .field textarea:focus {
  outline: none;
  border-color: var(--brand-blue);
}
.sidebar-quote-phone {
  display: block;
  text-align: center;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}
.sidebar-quote-phone b {
  display: block;
  font-family: var(--font-display);
  color: var(--brand-blue);
  font-size: 22px;
  margin-top: 4px;
}

/* ---------------------------------------------------------- Tweaks */
.tweaks-fab { background: var(--brand-blue); color: #fff; }

/* ---------------------------------------------------------- Responsive */
@media (max-width: 1100px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .body-layout { grid-template-columns: 1fr; }
  .sidebar-quote { position: static; }}
@media (max-width: 960px) {
  .solutions-grid, .symptom-grid, .process-steps, .metro-grid { grid-template-columns: repeat(2, 1fr); }
  .soil-grid { grid-template-columns: 1fr; }
  .cert-strip-inner { grid-template-columns: 1fr 1fr 1fr; }
  .cert-strip-label { grid-column: span 3; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 0 0 16px; }
}
@media (max-width: 640px) {
  .solutions-grid, .symptom-grid, .process-steps, .metro-grid { grid-template-columns: 1fr; }
  .process-steps::before { display: none; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .vendor-row { gap: 16px; }
  .vendor-logo { font-size: 16px; padding: 8px 12px; }
}

/* ---------------------------------------------------------- FAQ accordion (combo pages) */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0 32px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--ink-5, rgba(0,0,0,0.08));
  border-radius: 10px;
  padding: 0;
  overflow: hidden;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.faq-item[open] {
  border-color: rgba(0, 153, 216, 0.4);
  box-shadow: 0 8px 24px -16px rgba(0, 153, 216, 0.4);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 50px 16px 20px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink-1, #0A0A0A);
  position: relative;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: 400;
  color: var(--brand-blue, #0099D8);
  line-height: 1;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after {
  content: '×';
  transform: translateY(-50%) rotate(0deg);
  font-size: 28px;
}
.faq-item summary:hover { color: var(--brand-blue, #0099D8); }
.faq-item p {
  margin: 0;
  padding: 0 20px 18px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-2, rgba(10,10,10,0.78));
}

/* ---------------------------------------------------------- HQ map (above footer) */
.footer-map {
  background: var(--ink, #0A0A0A);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 72px 0;
}
.footer-map-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 48px;
  align-items: center;
}
.footer-map-info { color: rgba(255, 255, 255, 0.85); }
.footer-map-info .eyebrow--light { color: var(--brand-blue); }
.footer-map-info h3 { color: #fff; }
.footer-map-address { margin-top: 22px; display: flex; flex-direction: column; gap: 10px; }
.footer-map-address .footer-contact-item { color: rgba(255, 255, 255, 0.78); font-size: 14px; }
.footer-map-address .footer-contact-item svg { color: var(--brand-blue); flex: 0 0 auto; }
.footer-map-frame {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.7);
}
.footer-map-frame iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
  filter: contrast(0.94);
}
@media (max-width: 860px) {
  .footer-map { padding: 48px 0; }
  .footer-map-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-map-frame { aspect-ratio: 4 / 3; }
}

/* ---------------------------------------------------------- Gallery page */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.gallery-tile {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 6px;
  border: 0;
  padding: 0;
  cursor: zoom-in;
  background-color: #0F1115;
  background-size: cover;
  background-position: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.gallery-tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -10px rgba(0, 0, 0, 0.4);
}
.gallery-tile:hover img { transform: scale(1.04); }
@media (max-width: 960px) { .gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; } }
@media (max-width: 640px) { .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 6px; } }

/* Lightbox overlay for full-size viewing */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, 0.92);
  display: grid;
  place-items: center;
  z-index: 9999;
  cursor: zoom-out;
}
.lightbox-img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  cursor: default;
  border-radius: 4px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
}
.lightbox-close {
  position: absolute;
  top: 16px; right: 24px;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 40px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 12px;
  border-radius: 999px;
}
.lightbox-close:hover { background: rgba(255, 255, 255, 0.1); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 40px;
  line-height: 1;
  width: 56px; height: 56px;
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
  padding-bottom: 4px;
}
.lightbox-nav:hover { background: rgba(255, 255, 255, 0.18); }
.lightbox-nav--prev { left: 24px; }
.lightbox-nav--next { right: 24px; }
.lightbox-counter {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-family: var(--font-body);
}
@media (max-width: 640px) {
  .lightbox-nav { width: 44px; height: 44px; font-size: 32px; }
  .lightbox-nav--prev { left: 8px; }
  .lightbox-nav--next { right: 8px; }
}

/* ---------------------------------------------------------- Videos page */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.video-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--ink-5, rgba(0, 0, 0, 0.08));
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.video-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 153, 216, 0.45);
  box-shadow: 0 18px 40px -22px rgba(0, 0, 0, 0.45);
}
.video-card-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #0F1115;
  overflow: hidden;
}
.video-card-frame iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
.video-card-poster {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  background-color: #0F1115;
  border: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: filter 0.2s ease;
}
.video-card-poster::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.05) 0%, rgba(10,10,10,0.55) 100%);
  pointer-events: none;
}
.video-card-poster:hover { filter: brightness(1.05); }
.video-card-play {
  position: relative;
  z-index: 1;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--accent, #FF6A13);
  display: grid;
  place-items: center;
  box-shadow: 0 6px 20px rgba(255, 106, 19, 0.4), 0 0 0 6px rgba(255, 106, 19, 0.18);
  transition: transform 0.2s ease;
}
.video-card-poster:hover .video-card-play { transform: scale(1.08); }
.video-card-play svg { margin-left: 3px; }
.video-card-meta {
  padding: 16px 18px 18px;
  display: flex; flex-direction: column; gap: 10px;
  flex: 1;
}
.video-card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  line-height: 1.3;
  margin: 0;
  color: var(--ink-1, #0A0A0A);
}
.video-card-row {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px;
  color: var(--ink-3, rgba(10,10,10,0.6));
  margin-top: auto;
}
.video-card-date { display: inline-flex; align-items: center; gap: 6px; }
.video-card-yt {
  display: inline-flex; align-items: center; gap: 4px;
  color: var(--brand-blue, #0099D8);
  text-decoration: none;
  font-weight: 600;
}
.video-card-yt:hover { text-decoration: underline; }
@media (max-width: 960px) { .video-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; } }
@media (max-width: 600px) { .video-grid { grid-template-columns: 1fr; gap: 18px; } }

/* Belt-and-suspenders: kill any tiny horizontal overflow caused by full-bleed
   sections, inline grids, or oversized images. */
html, body { overflow-x: hidden; max-width: 100%; }

/* Mobile: collapse the hero + lead-form 2-column grids into a single stack.
   These rules use !important to override inline `style` props set in JSX. */
@media (max-width: 860px) {
  /* Header: drop the dropdown nav and the phone block on mobile so the row
     fits the viewport. Logo + Free-Estimate button only. */
  .site-header .nav-menu,
  .site-header .phone-block { display: none !important; }
  .site-header-inner { gap: 12px; }
  .site-header-actions .btn { padding: 10px 14px; font-size: 13px; }
  .hero-inner {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
    padding: 48px 0 64px !important;
  }
  .hero-title { font-size: clamp(36px, 9vw, 56px) !important; }
  .hero-cta-row { flex-wrap: wrap; gap: 12px; }
  .hero-cta-row .btn { width: 100%; justify-content: center; }
  .hero-right { gap: 14px; }
  .hero-quick-form { padding: 14px; }
  .hero-quick-form-row { grid-template-columns: 1fr !important; }

  .lead-section > .container {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  .lead-form { grid-template-columns: repeat(2, 1fr) !important; }
  .lead-form .field[style*="span 6"] { grid-column: span 2 !important; }
  .lead-form .field[style*="span 4"] { grid-column: span 2 !important; }
  .lead-form .field[style*="span 3"] { grid-column: span 2 !important; }
  .lead-form .field[style*="span 2"] { grid-column: span 2 !important; }
  .lead-form > div[style*="span 6"] { grid-column: span 2 !important; }

  .body-layout { grid-template-columns: 1fr !important; gap: 32px !important; }
  .container { padding-left: 20px; padding-right: 20px; }
}

/* Smallest phones: keep "HELICAL PIERS FLORIDA" wordmark visible but drop
   the "By Solid Foundations · Since 2003" subtitle and tighten everything
   so the logo image + wordmark + CTA fit cleanly. */
@media (max-width: 480px) {
  .logo-text-bot { display: none; }
  .logo-text-top { font-size: 16px; letter-spacing: 0.02em; }
  .logo-lockup--image { gap: 8px; }
  .site-header-actions .btn { padding: 9px 12px; font-size: 12px; }
  .site-header-actions .btn svg { display: none; }
  .utility-license { display: none; }
}
