/* =========================================================
   Longhorn Septic Service — styles.css
   Page-level styles for the city subdomain template.
   Consumes tokens from colors_and_type.css (inlined here
   for production deploy: the design system file is
   duplicated below so this CSS works standalone).
   ========================================================= */

/* ----- FONTS ------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,500;12..96,600;12..96,700;12..96,800&family=Manrope:wght@400;500;600;700;800&family=JetBrains+Mono:wght@500;700&display=swap");

/* ----- TOKENS ------------------------------------------ */
:root {
  --bone:#F5EEDF; --bone-soft:#FBF7EE; --paper:#FFFFFF; --sand:#E6DBC4;
  --hide:#2A1F17; --soot:#1A130E; --leather:#3C2A1E;
  --rust-50:#FBEDE6; --rust-100:#F5D5C5; --rust-300:#E8987A;
  --rust-500:#C24E27; --rust-600:#A53E1B; --rust-700:#7E2D12; --rust-900:#4A1707;
  --tan-100:#F0E1C0; --tan-300:#D7B782; --tan-500:#B8924F; --tan-700:#7E5F28;
  --emergency:#D43F2E; --emergency-deep:#9F2818;
  --success:#2E6B3D; --success-soft:#DCEBDB;
  --info:#1E5A78; --warning:#C78A1A;
  --fg-1:#1A130E; --fg-2:#3D2E22; --fg-3:#6B5645; --fg-4:#97836E;
  --fg-on-dark-1:#F5EEDF; --fg-on-dark-2:#D9CDB6; --fg-on-dark-3:#A89377;
  --line-1:rgba(26,19,14,.10); --line-2:rgba(26,19,14,.18); --line-strong:rgba(26,19,14,.32);
  --line-on-dark:rgba(245,238,223,.16);
  --font-display:"Bricolage Grotesque","Arial Narrow",system-ui,sans-serif;
  --font-body:"Manrope",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;
  --font-mono:"JetBrains Mono",ui-monospace,Menlo,monospace;
  --fs-display-1:clamp(2.5rem,1.4rem + 4.6vw,5.25rem);
  --fs-display-2:clamp(2rem,1.2rem + 3.3vw,4rem);
  --fs-h1:clamp(2rem,1.3rem + 3vw,3.5rem);
  --fs-h2:clamp(1.625rem,1.1rem + 2.3vw,2.5rem);
  --fs-h3:clamp(1.25rem,1.05rem + .9vw,1.625rem);
  --fs-h4:clamp(1.125rem,1rem + .5vw,1.25rem);
  --fs-lede:clamp(1.0625rem,.95rem + .6vw,1.25rem);
  --fs-body:1.0625rem; --fs-sm:.9375rem; --fs-xs:.8125rem;
  --lh-tight:1.05; --lh-snug:1.2; --lh-normal:1.55; --lh-relaxed:1.7;
  --tracking-tight:-.02em; --tracking-wide:.06em; --tracking-eyebrow:.14em;
  --space-1:4px; --space-2:8px; --space-3:12px; --space-4:16px; --space-5:24px;
  --space-6:32px; --space-7:48px; --space-8:64px; --space-9:96px; --space-10:128px;
  --section-y:clamp(56px,6vw,112px);
  --container:1200px; --container-wide:1320px; --container-tight:880px;
  --r-1:2px; --r-2:4px; --r-3:8px; --r-4:14px; --r-5:22px; --r-pill:999px;
  --shadow-0:0 1px 0 rgba(26,19,14,.04);
  --shadow-1:0 2px 6px rgba(60,42,30,.06),0 1px 2px rgba(60,42,30,.08);
  --shadow-2:0 6px 18px rgba(60,42,30,.10),0 2px 6px rgba(60,42,30,.06);
  --shadow-3:0 18px 42px rgba(40,24,14,.18),0 6px 16px rgba(40,24,14,.10);
  --shadow-cta:0 10px 26px rgba(194,78,39,.32),0 2px 6px rgba(194,78,39,.24);
  --ease-out:cubic-bezier(.16,1,.3,1);
  --ease-spring:cubic-bezier(.34,1.56,.64,1);
  --dur-1:120ms; --dur-2:220ms; --dur-3:360ms; --dur-4:600ms;
  --focus:0 0 0 3px rgba(194,78,39,.35);
}

/* ----- RESET / BASE ------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 120px; }
body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-normal);
  color: var(--fg-1);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: 0; background: 0; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: var(--tracking-tight);
  line-height: var(--lh-tight);
  color: var(--fg-1);
  text-wrap: balance;
  margin: 0;
}
h1 { font-size: var(--fs-display-1); font-weight: 800; line-height: 1.02; }
h2 { font-size: var(--fs-h2); font-weight: 700; }
h3 { font-size: var(--fs-h3); font-weight: 700; line-height: var(--lh-snug); }
h4 { font-size: var(--fs-h4); font-weight: 600; line-height: var(--lh-snug); }
p  { margin: 0; line-height: var(--lh-relaxed); text-wrap: pretty; }

a {
  color: var(--rust-600);
  text-decoration: none;
  transition: color var(--dur-1) var(--ease-out);
}
a:hover { color: var(--rust-700); }
:focus-visible { outline: 0; box-shadow: var(--focus); border-radius: var(--r-2); }

/* ----- LAYOUT ------------------------------------------ */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-tight { max-width: var(--container-tight); }
.container-wide { max-width: var(--container-wide); }

.section { padding: var(--section-y) 0; position: relative; }
.section + .section { border-top: 1px solid var(--line-1); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 700;
  font-size: var(--fs-xs); letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase; color: var(--rust-600);
}
.eyebrow::before {
  content: ""; width: 22px; height: 2px; background: currentColor; display: inline-block;
}

.lede { font-size: var(--fs-lede); color: var(--fg-2); max-width: 64ch; }

/* =========================================================
   ANNOUNCEMENT BAR
   ========================================================= */
.announce {
  background: var(--soot);
  color: var(--fg-on-dark-1);
  font-size: var(--fs-xs);
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  position: relative;
  overflow: hidden;
}
.announce::before {
  content: ""; position: absolute; inset: 0;
  background:
    repeating-linear-gradient(45deg,
      transparent 0 12px,
      rgba(194, 78, 39, 0.10) 12px 14px);
  pointer-events: none;
}
.announce__inner {
  position: relative;
  display: flex; align-items: center; justify-content: center; gap: 18px;
  padding: 9px 24px;
  flex-wrap: wrap;
}
.announce__pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--emergency); flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(212, 63, 46, 0.7);
  animation: pulse 2.2s var(--ease-out) infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0   rgba(212, 63, 46, 0.7); }
  70%  { box-shadow: 0 0 0 10px rgba(212, 63, 46, 0); }
  100% { box-shadow: 0 0 0 0   rgba(212, 63, 46, 0); }
}
.announce strong { color: var(--bone); font-weight: 700; }
.announce a { color: var(--bone); text-decoration: underline; text-underline-offset: 3px; }
.announce a:hover { color: var(--rust-300); }
.announce__sep {
  width: 4px; height: 4px; border-radius: 50%; background: var(--fg-on-dark-3);
  flex-shrink: 0;
}

/* =========================================================
   HEADER
   ========================================================= */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(245, 238, 223, 0.86);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-2) var(--ease-out),
              background var(--dur-2) var(--ease-out),
              box-shadow var(--dur-2) var(--ease-out);
}
.header.is-scrolled {
  border-bottom-color: var(--line-1);
  background: rgba(245, 238, 223, 0.95);
  box-shadow: 0 1px 0 rgba(26, 19, 14, 0.04), 0 8px 24px rgba(26, 19, 14, 0.06);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--container-wide); margin: 0 auto; gap: 24px;
}

/* Logo (wordmark) */
.logo {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--fg-1);
}
.logo__mark {
  width: 36px; height: 36px; flex-shrink: 0;
  display: grid; place-items: center;
  background: var(--soot); color: var(--bone);
  border-radius: var(--r-2);
  box-shadow: var(--shadow-1);
}
.logo__mark svg { width: 22px; height: 22px; }
.logo__word {
  display: flex; flex-direction: column; line-height: 1;
}
.logo__word .name {
  font-family: var(--font-display);
  font-weight: 800; font-size: 1.125rem;
  letter-spacing: -0.02em;
  color: var(--fg-1);
}
.logo__word .sub {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--rust-600);
  font-weight: 700;
  margin-top: 3px;
}

/* Nav */
.nav { display: flex; align-items: center; gap: 6px; }
.nav__link {
  position: relative;
  padding: 10px 14px;
  font-size: var(--fs-sm); font-weight: 600;
  color: var(--fg-2);
  border-radius: var(--r-2);
  transition: color var(--dur-1) var(--ease-out), background var(--dur-1) var(--ease-out);
}
.nav__link::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px;
  height: 2px; background: var(--rust-500);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur-3) var(--ease-out);
}
.nav__link:hover { color: var(--fg-1); }
.nav__link:hover::after { transform: scaleX(1); }

.header__cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  background: var(--rust-500); color: var(--bone);
  font-weight: 700; font-size: var(--fs-sm);
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-1);
  transition: transform var(--dur-1) var(--ease-out),
              background var(--dur-2) var(--ease-out),
              box-shadow var(--dur-2) var(--ease-out);
}
.header__cta:hover { background: var(--rust-600); color: var(--bone); transform: translateY(-1px); box-shadow: var(--shadow-2); }
.header__cta:active { transform: translateY(0); }
.header__cta svg { width: 16px; height: 16px; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: var(--r-2);
  align-items: center; justify-content: center;
}
.nav-toggle svg { width: 22px; height: 22px; color: var(--fg-1); }

@media (max-width: 880px) {
  .nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .header__cta .header__cta-label { display: none; }
  .header__cta { padding: 10px 12px; }

  .header__inner.is-open ~ .nav-mobile,
  .nav-mobile.is-open {
    display: block;
  }
}

/* Mobile nav drawer */
.nav-mobile {
  display: none;
  position: absolute; top: 100%; left: 0; right: 0;
  background: var(--bone-soft);
  border-bottom: 1px solid var(--line-1);
  box-shadow: var(--shadow-2);
  padding: 8px 16px 18px;
}
.nav-mobile.is-open { display: block; animation: drawer-in var(--dur-3) var(--ease-out); }
@keyframes drawer-in {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.nav-mobile a {
  display: block; padding: 14px 12px;
  font-size: 1.0625rem; font-weight: 600;
  color: var(--fg-1);
  border-bottom: 1px solid var(--line-1);
}
.nav-mobile a:last-child { border-bottom: 0; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  padding: clamp(56px, 6vw, 96px) 0 clamp(40px, 5vw, 80px);
  background:
    radial-gradient(ellipse 80% 60% at 80% 0%, rgba(194, 78, 39, 0.10), transparent 60%),
    radial-gradient(ellipse 100% 70% at 0% 100%, rgba(184, 146, 79, 0.14), transparent 55%),
    var(--bone);
  overflow: hidden;
}
/* Subtle topographic line motif (CSS only - no image) */
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(circle at 90% 30%, rgba(26, 19, 14, 0.05) 0, rgba(26, 19, 14, 0.05) 1px, transparent 1px),
    radial-gradient(circle at 12% 80%, rgba(26, 19, 14, 0.03) 0, rgba(26, 19, 14, 0.03) 1px, transparent 1px);
  background-size: 24px 24px, 32px 32px;
  opacity: 0.7;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.hero__inner {
  position: relative; z-index: 1;
  max-width: var(--container); margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
@media (max-width: 920px) { .hero__inner { grid-template-columns: 1fr; } }

.hero__copy h1 {
  margin: 14px 0 18px;
  letter-spacing: -0.025em;
}
.hero__copy h1 .accent {
  background: linear-gradient(120deg, var(--rust-600), var(--rust-500) 60%, var(--tan-500));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  white-space: nowrap;
}
.hero__lede {
  margin: 0 0 12px;
  font-size: var(--fs-lede);
  color: var(--fg-2);
  max-width: 56ch;
}
.hero__urgency {
  display: flex; align-items: center; gap: 10px;
  margin: 8px 0 28px;
  padding: 12px 16px;
  background: rgba(212, 63, 46, 0.08);
  border-left: 3px solid var(--emergency);
  border-radius: var(--r-2);
  color: var(--fg-1);
  font-weight: 500;
  font-size: var(--fs-sm);
}
.hero__urgency svg { width: 18px; height: 18px; color: var(--emergency); flex-shrink: 0; }

.cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin: 0 0 28px; }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 26px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.005em;
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: transform var(--dur-1) var(--ease-out),
              background var(--dur-2) var(--ease-out),
              box-shadow var(--dur-2) var(--ease-out),
              color var(--dur-2) var(--ease-out);
  white-space: nowrap;
  overflow: hidden;
}
.btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--rust-500);
  color: var(--bone);
  box-shadow: var(--shadow-cta);
}
.btn--primary:hover { background: var(--rust-600); color: var(--bone); box-shadow: 0 14px 32px rgba(194, 78, 39, 0.40); }
.btn--primary::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.20) 50%, transparent 70%);
  transform: translateX(-110%); transition: transform var(--dur-4) var(--ease-out);
}
.btn--primary:hover::before { transform: translateX(110%); }

.btn--secondary {
  background: transparent;
  color: var(--fg-1);
  box-shadow: inset 0 0 0 2px var(--fg-1);
}
.btn--secondary:hover { background: var(--fg-1); color: var(--bone); }

.btn--ghost {
  background: transparent;
  color: var(--fg-1);
  box-shadow: inset 0 0 0 1.5px var(--line-2);
}
.btn--ghost:hover { box-shadow: inset 0 0 0 1.5px var(--fg-1); }

.btn--emergency {
  background: var(--emergency);
  color: var(--bone);
  box-shadow: 0 10px 26px rgba(212, 63, 46, 0.32);
}
.btn--emergency:hover { background: var(--emergency-deep); color: var(--bone); }

.btn--block { display: flex; width: 100%; }
.btn--sm { padding: 10px 18px; font-size: var(--fs-sm); }

/* =========================================================
   TRUST STRIP (under hero CTAs)
   ========================================================= */
.trust-strip {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  padding: 16px;
  background: var(--bone-soft);
  border: 1px solid var(--line-1);
  border-radius: var(--r-4);
  box-shadow: var(--shadow-1);
}
@media (max-width: 720px) { .trust-strip { grid-template-columns: repeat(2, 1fr); } }
.trust-strip__item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 6px;
}
.trust-strip__icon {
  width: 36px; height: 36px; flex-shrink: 0;
  display: grid; place-items: center;
  background: var(--rust-50); color: var(--rust-600);
  border-radius: var(--r-3);
}
.trust-strip__icon svg { width: 20px; height: 20px; }
.trust-strip__text {
  display: flex; flex-direction: column; line-height: 1.2; gap: 2px;
  min-width: 0;
}
.trust-strip__label {
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em;
  font-weight: 700; color: var(--fg-3);
}
.trust-strip__value {
  font-size: var(--fs-sm); font-weight: 700; color: var(--fg-1);
}

/* =========================================================
   HERO BENEFIT BULLETS (right column)
   ========================================================= */
.differentiators {
  display: flex; flex-direction: column; gap: 14px;
  padding: clamp(20px, 2vw, 28px);
  background: var(--paper);
  border: 1px solid var(--line-1);
  border-radius: var(--r-5);
  box-shadow: var(--shadow-2);
  position: relative;
  overflow: hidden;
}
.differentiators::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--rust-500), var(--tan-500));
}
.differentiators__title {
  font-family: var(--font-display);
  font-size: 1.0625rem; font-weight: 700;
  color: var(--fg-1);
  display: flex; align-items: center; gap: 10px;
  padding: 4px 0 12px;
  border-bottom: 1px solid var(--line-1);
}
.differentiators__title .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--success);
}
.diff-item {
  display: grid; grid-template-columns: 40px 1fr; align-items: start;
  gap: 14px;
  padding: 6px 4px;
}
.diff-item__icon {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: var(--rust-50); color: var(--rust-600);
  border-radius: var(--r-3);
}
.diff-item__icon svg { width: 22px; height: 22px; }
.diff-item__title {
  font-weight: 700; font-size: 0.95rem; color: var(--fg-1); margin: 4px 0 2px;
}
.diff-item__body { color: var(--fg-3); font-size: var(--fs-sm); line-height: 1.5; }

/* =========================================================
   INTERSTITIAL: STATS COUNTER BAR
   ========================================================= */
.interstitial { position: relative; }

.stats-bar {
  background: var(--soot);
  color: var(--fg-on-dark-1);
  padding: clamp(36px, 4vw, 64px) 0;
  position: relative;
  overflow: hidden;
}
.stats-bar::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 90% 50%, rgba(194, 78, 39, 0.18), transparent 60%),
    radial-gradient(ellipse 50% 80% at 10% 50%, rgba(184, 146, 79, 0.10), transparent 60%);
  pointer-events: none;
}
.stats-bar__inner {
  position: relative;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  max-width: var(--container); margin: 0 auto; padding: 0 24px;
}
@media (max-width: 760px) { .stats-bar__inner { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
.stat { text-align: left; }
.stat__num {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--bone);
  display: flex; align-items: baseline; gap: 2px;
}
.stat__num .suffix { color: var(--rust-300); font-size: 0.6em; margin-left: 4px; }
.stat__label {
  margin-top: 8px;
  font-size: var(--fs-sm);
  color: var(--fg-on-dark-3);
  text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600;
}

/* =========================================================
   SERVICES OVERVIEW
   ========================================================= */
.services-intro {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
  align-items: end; margin-bottom: 40px;
}
@media (max-width: 720px) { .services-intro { grid-template-columns: 1fr; } }

.service-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
@media (max-width: 900px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .service-grid { grid-template-columns: 1fr; } }

.service-card {
  position: relative;
  display: flex; flex-direction: column;
  padding: 22px;
  background: var(--paper);
  border: 1px solid var(--line-1);
  border-radius: var(--r-4);
  transition: transform var(--dur-2) var(--ease-out),
              box-shadow var(--dur-2) var(--ease-out),
              border-color var(--dur-2) var(--ease-out);
  overflow: hidden;
}
.service-card::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--rust-500);
  transform: scaleY(0); transform-origin: top;
  transition: transform var(--dur-3) var(--ease-out);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
  border-color: var(--line-2);
}
.service-card:hover::before { transform: scaleY(1); }

.service-card__icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: var(--rust-50); color: var(--rust-600);
  border-radius: var(--r-3);
  margin-bottom: 16px;
  transition: background var(--dur-2) var(--ease-out);
}
.service-card:hover .service-card__icon { background: var(--rust-100); }
.service-card__icon svg { width: 24px; height: 24px; }
.service-card__title {
  font-family: var(--font-display);
  font-size: 1.125rem; font-weight: 700;
  color: var(--fg-1);
  margin-bottom: 8px;
  line-height: 1.25;
}
.service-card__body {
  color: var(--fg-3); font-size: var(--fs-sm); line-height: 1.55;
  margin-bottom: 18px; flex: 1;
}
.service-card__cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 16px;
  background: var(--soot); color: var(--bone);
  font-size: var(--fs-sm); font-weight: 700;
  border-radius: var(--r-pill);
  transition: background var(--dur-2) var(--ease-out), transform var(--dur-1) var(--ease-out);
  align-self: flex-start;
}
.service-card__cta:hover { background: var(--rust-500); color: var(--bone); transform: translateY(-1px); }
.service-card__cta svg { width: 14px; height: 14px; }

/* =========================================================
   INTERSTITIAL: PROCESS STRIP ("How it works")
   ========================================================= */
.process {
  padding: clamp(48px, 5vw, 80px) 0;
  background: var(--bone-soft);
  border-block: 1px solid var(--line-1);
}
.process__title {
  text-align: center; margin-bottom: 40px;
}
.process__steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  max-width: var(--container); margin: 0 auto; padding: 0 24px;
  position: relative;
}
@media (max-width: 880px) { .process__steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .process__steps { grid-template-columns: 1fr; } }

.step {
  text-align: left;
  padding: 24px 20px;
  background: var(--paper);
  border-radius: var(--r-4);
  border: 1px solid var(--line-1);
  position: relative;
  transition: transform var(--dur-2) var(--ease-out), box-shadow var(--dur-2) var(--ease-out);
}
.step:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); }
.step__num {
  font-family: var(--font-display);
  font-weight: 800; font-size: 2.5rem;
  line-height: 1;
  color: var(--rust-500);
  letter-spacing: -0.04em;
  display: block;
  margin-bottom: 14px;
  opacity: 0.85;
}
.step__title { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--fg-1); margin-bottom: 6px; }
.step__body { font-size: var(--fs-sm); color: var(--fg-3); line-height: 1.55; }

/* =========================================================
   "WE SOLVE" SECTIONS (Pumping / Repair / Installation / ATU)
   ========================================================= */
.solution {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
}
@media (max-width: 880px) { .solution { grid-template-columns: 1fr; } }

.solution__lede { color: var(--fg-2); font-size: var(--fs-lede); margin: 12px 0 18px; }
.solution__body { color: var(--fg-2); margin: 0 0 24px; }

.solve-card {
  padding: clamp(20px, 2.5vw, 28px);
  background: var(--paper);
  border-radius: var(--r-4);
  border: 1px solid var(--line-1);
  box-shadow: var(--shadow-1);
}
.solve-card__title {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 1.0625rem; font-weight: 700;
  color: var(--fg-1);
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-1);
}
.solve-card__title .badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px;
  background: var(--rust-50); color: var(--rust-600);
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.solve-list { display: flex; flex-direction: column; gap: 10px; }
.solve-list__item {
  display: grid; grid-template-columns: 22px 1fr; gap: 10px; align-items: start;
  font-size: var(--fs-sm);
  color: var(--fg-2);
  line-height: 1.5;
}
.solve-list__item .check {
  width: 22px; height: 22px;
  display: grid; place-items: center;
  background: var(--rust-50); color: var(--rust-600);
  border-radius: var(--r-pill);
  flex-shrink: 0; margin-top: 1px;
}
.solve-list__item .check svg { width: 12px; height: 12px; stroke-width: 3; }

/* =========================================================
   INTERSTITIAL: BANNER CTA
   ========================================================= */
.banner-cta {
  background:
    radial-gradient(ellipse 50% 80% at 90% 0%, rgba(216, 142, 92, 0.30), transparent 60%),
    linear-gradient(120deg, var(--rust-700), var(--rust-600));
  color: var(--bone);
  border-radius: var(--r-5);
  padding: clamp(32px, 4vw, 56px);
  display: grid; grid-template-columns: minmax(0, 1.4fr) auto; gap: 24px;
  align-items: center;
  box-shadow: var(--shadow-3);
  position: relative; overflow: hidden;
}
@media (max-width: 720px) { .banner-cta { grid-template-columns: 1fr; } }

.banner-cta::after {
  content: ""; position: absolute; right: -40px; top: -40px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(245, 238, 223, 0.12), transparent 65%);
  pointer-events: none;
}
.banner-cta__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 12px;
  background: rgba(245, 238, 223, 0.15);
  border-radius: var(--r-pill);
  font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--bone);
  margin-bottom: 14px;
}
.banner-cta h3 {
  color: var(--bone); font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin: 0 0 8px; line-height: 1.1; letter-spacing: -0.02em;
}
.banner-cta p { color: var(--fg-on-dark-2); font-size: var(--fs-sm); max-width: 56ch; }
.banner-cta__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.banner-cta .btn--primary { background: var(--bone); color: var(--rust-700); }
.banner-cta .btn--primary:hover { background: var(--paper); color: var(--rust-900); }
.banner-cta .btn--ghost { color: var(--bone); box-shadow: inset 0 0 0 1.5px rgba(245, 238, 223, 0.5); }
.banner-cta .btn--ghost:hover { box-shadow: inset 0 0 0 1.5px var(--bone); background: rgba(245, 238, 223, 0.08); }

/* =========================================================
   CREDENTIALS GRID
   ========================================================= */
.cred-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 28px; }
@media (max-width: 880px) { .cred-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .cred-grid { grid-template-columns: 1fr; } }

.cred {
  display: flex; flex-direction: column; gap: 12px;
  padding: 22px;
  background: var(--paper); border: 1px solid var(--line-1); border-radius: var(--r-4);
  transition: transform var(--dur-2) var(--ease-out), border-color var(--dur-2) var(--ease-out);
}
.cred:hover { transform: translateY(-3px); border-color: var(--success); }
.cred__icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: var(--success-soft); color: var(--success);
  border-radius: var(--r-3);
}
.cred__icon svg { width: 24px; height: 24px; }
.cred__title { font-family: var(--font-display); font-size: 1.0625rem; font-weight: 700; color: var(--fg-1); }
.cred__body { font-size: var(--fs-sm); color: var(--fg-3); line-height: 1.55; }

/* =========================================================
   SERVICE AREAS
   ========================================================= */
.areas {
  background:
    linear-gradient(180deg, transparent, rgba(245, 238, 223, 0)) 0 / 100% 60% no-repeat,
    var(--bone);
}
.areas__inner {
  display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
@media (max-width: 880px) { .areas__inner { grid-template-columns: 1fr; } }

.area-tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0 24px; }
.area-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px;
  background: var(--paper);
  border: 1px solid var(--line-1);
  border-radius: var(--r-pill);
  font-size: var(--fs-sm); font-weight: 600;
  color: var(--fg-1);
  transition: all var(--dur-1) var(--ease-out);
}
.area-tag:hover { border-color: var(--rust-500); color: var(--rust-600); transform: translateY(-2px); }
.area-tag svg { width: 14px; height: 14px; color: var(--rust-500); }

/* Decorative map (CSS only — abstract roads/grid) */
.map-card {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--soot);
  border-radius: var(--r-4);
  overflow: hidden;
  box-shadow: var(--shadow-3);
}
.map-card::before, .map-card::after {
  content: ""; position: absolute; inset: 0;
}
.map-card::before {
  background:
    linear-gradient(90deg, transparent 49%, rgba(216, 142, 92, 0.35) 50%, transparent 51%) 0 / 80px 100%,
    linear-gradient(180deg, transparent 49%, rgba(216, 142, 92, 0.18) 50%, transparent 51%) 0 / 100% 60px,
    radial-gradient(circle at 30% 40%, rgba(194, 78, 39, 0.25), transparent 60%),
    radial-gradient(circle at 70% 65%, rgba(184, 146, 79, 0.20), transparent 60%);
  opacity: 0.7;
}
.map-card__pin {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center;
}
.map-card__pin .dot {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--rust-500); border: 4px solid var(--bone);
  box-shadow: 0 4px 14px rgba(194, 78, 39, 0.5);
  position: relative;
}
.map-card__pin .dot::before {
  content: ""; position: absolute; inset: -12px; border-radius: 50%;
  border: 2px solid var(--rust-300);
  animation: ping 2.2s var(--ease-out) infinite;
}
@keyframes ping {
  0%   { transform: scale(0.6); opacity: 0.8; }
  100% { transform: scale(1.8); opacity: 0; }
}
.map-card__pin .label {
  margin-top: 14px;
  padding: 8px 14px;
  background: var(--bone); color: var(--soot);
  border-radius: var(--r-2);
  font-family: var(--font-body);
  font-size: var(--fs-sm); font-weight: 700;
  box-shadow: var(--shadow-2);
  white-space: nowrap;
}
.map-card__corner {
  position: absolute; top: 16px; left: 16px;
  padding: 6px 12px;
  background: rgba(26, 19, 14, 0.6);
  backdrop-filter: blur(8px);
  border-radius: var(--r-pill);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--bone);
  letter-spacing: 0.05em;
  z-index: 2;
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.reviews { background: var(--bone-soft); border-block: 1px solid var(--line-1); }
.reviews__header { text-align: center; margin-bottom: 36px; }

.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
@media (max-width: 880px) { .reviews-grid { grid-template-columns: 1fr; } }

.review {
  display: flex; flex-direction: column;
  padding: 28px;
  background: var(--paper);
  border-radius: var(--r-4);
  border: 1px solid var(--line-1);
  box-shadow: var(--shadow-1);
  position: relative;
  transition: transform var(--dur-3) var(--ease-out), box-shadow var(--dur-3) var(--ease-out);
}
.review:hover { transform: translateY(-4px); box-shadow: var(--shadow-3); }
.review__quote-mark {
  font-family: var(--font-display); font-weight: 800;
  font-size: 4rem; line-height: 0.7;
  color: var(--rust-500); opacity: 0.18;
  margin-bottom: 6px;
}
.review__body {
  font-size: 1rem; color: var(--fg-2); line-height: 1.65;
  margin-bottom: 20px; flex: 1;
}
.review__stars { display: inline-flex; gap: 2px; margin-bottom: 14px; }
.review__stars svg { width: 18px; height: 18px; color: var(--tan-500); fill: currentColor; }
.review__author { display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid var(--line-1); }
.review__avatar {
  width: 40px; height: 40px;
  background: var(--rust-500); color: var(--bone);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 0.9rem;
  flex-shrink: 0;
}
.review__name { font-size: var(--fs-sm); font-weight: 700; color: var(--fg-1); }
.review__role { font-size: var(--fs-xs); color: var(--fg-3); }

/* =========================================================
   FINAL CTA (Schedule)
   ========================================================= */
.final-cta {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(194, 78, 39, 0.18), transparent 60%),
    var(--soot);
  color: var(--fg-on-dark-1);
  text-align: center;
  padding: clamp(64px, 7vw, 120px) 24px;
  position: relative; overflow: hidden;
}
.final-cta::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(245, 238, 223, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  pointer-events: none;
}
.final-cta__inner { position: relative; max-width: 760px; margin: 0 auto; }
.final-cta h2 { color: var(--bone); font-size: clamp(2rem, 4vw, 3.25rem); margin-bottom: 14px; letter-spacing: -0.025em; }
.final-cta .lede { color: var(--fg-on-dark-2); margin: 0 auto 14px; max-width: 56ch; }
.final-cta__urge { color: var(--rust-300); font-size: var(--fs-sm); margin: 6px 0 28px; font-weight: 600; }
.final-cta .cta-row { justify-content: center; }
.final-cta .btn--secondary { color: var(--bone); box-shadow: inset 0 0 0 2px rgba(245,238,223,.5); }
.final-cta .btn--secondary:hover { background: var(--bone); color: var(--soot); }

/* =========================================================
   CONTACT
   ========================================================= */
.contact-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
  margin-top: 32px;
}
@media (max-width: 720px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-card {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line-1);
  border-radius: var(--r-4);
  transition: transform var(--dur-2) var(--ease-out), box-shadow var(--dur-2) var(--ease-out);
}
.contact-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-2); }
.contact-card__icon {
  width: 48px; height: 48px; flex-shrink: 0;
  display: grid; place-items: center;
  background: var(--rust-50); color: var(--rust-600);
  border-radius: var(--r-3);
}
.contact-card__icon svg { width: 24px; height: 24px; }
.contact-card__label {
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--fg-3); font-weight: 700;
  margin-bottom: 4px;
}
.contact-card__value {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 700;
  color: var(--fg-1); line-height: 1.2;
  margin-bottom: 4px; word-break: break-word;
}
.contact-card__value a { color: inherit; }
.contact-card__value a:hover { color: var(--rust-600); }
.contact-card__note { font-size: var(--fs-sm); color: var(--fg-3); }

/* =========================================================
   CITIES SECTION  (region page — {{CITIES_SECTION}})
   ========================================================= */
.cities {
  background: var(--bone-soft);
}

.cities__header {
  max-width: 68ch;
  margin-bottom: clamp(32px, 4vw, 52px);
}

/* Grid: auto-fill gives ~8 cols at 1200px, ~6 at 900px,
   ~4 at 640px, ~2-3 at mobile — adapts to any city count.
   Override .reveal opacity/transform here: the grid can be
   thousands of pixels tall (1000+ cities), so the shared
   IntersectionObserver threshold of 0.12 (12% visible) may
   never be satisfied and the container stays invisible.
   The section heading above already provides the reveal
   effect; the grid itself just needs to be always visible. */
.cities__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
  gap: 6px 8px;
  opacity: 1 !important;
  transform: none !important;
}

/* Each injected city link */
.cities__grid a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 12px;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--fg-2);
  background: var(--paper);
  border: 1px solid var(--line-1);
  border-radius: var(--r-3);
  text-decoration: none;
  line-height: 1.3;
  transition:
    color var(--dur-1) var(--ease-out),
    border-color var(--dur-1) var(--ease-out),
    background var(--dur-1) var(--ease-out),
    box-shadow var(--dur-1) var(--ease-out),
    transform var(--dur-1) var(--ease-out);
}

/* Small map-pin icon before city name via CSS — optional
   but adds visual texture without touching the HTML */
.cities__grid a::before {
  content: "";
  display: inline-block;
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rust-300);
  opacity: 0.65;
  transition: opacity var(--dur-1) var(--ease-out),
              background var(--dur-1) var(--ease-out);
}

.cities__grid a:hover {
  color: var(--rust-600);
  background: var(--rust-50);
  border-color: var(--rust-100);
  box-shadow: var(--shadow-1);
  transform: translateY(-1px);
}

.cities__grid a:hover::before {
  background: var(--rust-500);
  opacity: 1;
}

/* Tighter columns on tablet */
@media (max-width: 860px) {
  .cities__grid {
    grid-template-columns: repeat(auto-fill, minmax(136px, 1fr));
    gap: 5px 6px;
  }
}

/* 2-column minimum on narrow mobile, full-width labels */
@media (max-width: 480px) {
  .cities__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
  }
  .cities__grid a {
    padding: 8px 10px;
    font-size: var(--fs-xs);
  }
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--soot);
  color: var(--fg-on-dark-2);
  padding: clamp(56px, 5vw, 96px) 0 0;
  position: relative;
  margin-top: 0;
}
.footer__states {
  border-bottom: 1px solid var(--line-on-dark);
  padding-bottom: 40px; margin-bottom: 40px;
}
.footer__states-title {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 700;
  color: var(--bone);
  margin-bottom: 6px;
}
.footer__states-sub {
  font-size: var(--fs-sm); color: var(--fg-on-dark-3); margin-bottom: 22px;
}
.state-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 4px 12px;
}
.state-grid a {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 4px;
  color: var(--fg-on-dark-2);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--r-2);
  transition: color var(--dur-1) var(--ease-out), transform var(--dur-1) var(--ease-out);
}
.state-grid a:hover { color: var(--rust-300); transform: translateX(2px); }
.state-grid a .abbr {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--fg-on-dark-3);
  font-weight: 700;
  padding: 2px 5px;
  background: rgba(245, 238, 223, 0.06);
  border-radius: 3px;
}
.state-grid a:hover .abbr { color: var(--rust-300); background: rgba(232, 152, 122, 0.12); }

.footer__main {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line-on-dark);
}
@media (max-width: 720px) { .footer__main { grid-template-columns: 1fr; gap: 32px; } }

.footer__brand { max-width: 340px; }
.footer__brand .logo__word .name { color: var(--bone); }
.footer__brand .logo__word .sub { color: var(--rust-300); }
.footer__desc {
  margin-top: 16px;
  font-size: var(--fs-sm);
  color: var(--fg-on-dark-3);
  line-height: 1.6;
}
.footer__col h4 {
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  margin-bottom: 14px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 8px; }
.footer__col a, .footer__col li {
  color: var(--fg-on-dark-2);
  font-size: var(--fs-sm); line-height: 1.5;
  transition: color var(--dur-1) var(--ease-out);
}
.footer__col a:hover { color: var(--rust-300); }
.footer__col .contact-line {
  display: flex; align-items: center; gap: 8px;
}
.footer__col .contact-line svg { width: 16px; height: 16px; color: var(--rust-300); flex-shrink: 0; }

.footer__bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 26px 0 110px;
  flex-wrap: wrap; gap: 12px;
}
.footer__copy { font-size: var(--fs-xs); color: var(--fg-on-dark-3); }
.footer__bottom a { color: var(--fg-on-dark-2); font-size: var(--fs-xs); }
.footer__bottom a:hover { color: var(--rust-300); }
.footer__legal { display: inline-flex; gap: 22px; }

/* =========================================================
   STICKY CALL BAR (all devices)
   ========================================================= */
.sticky-call {
  position: fixed; left: 0; right: 0; bottom: 0;
  z-index: 60;
  background: var(--soot);
  border-top: 1px solid var(--line-on-dark);
  box-shadow: 0 -6px 28px rgba(0, 0, 0, 0.25);
  padding: 10px 16px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  transform: translateY(0);
  transition: transform var(--dur-3) var(--ease-out);
}
.sticky-call.is-hidden { transform: translateY(100%); }
.sticky-call__label {
  display: flex; flex-direction: column; line-height: 1.1; min-width: 0;
}
.sticky-call__label .top {
  font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--fg-on-dark-3); font-weight: 700;
}
.sticky-call__label .bot {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.05rem; color: var(--bone); margin-top: 1px;
}
.sticky-call__btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 18px;
  background: var(--rust-500); color: var(--bone);
  border-radius: var(--r-pill);
  font-weight: 700; font-size: var(--fs-sm);
  transition: background var(--dur-1) var(--ease-out), transform var(--dur-1) var(--ease-out);
  white-space: nowrap;
}
.sticky-call__btn:hover { background: var(--rust-600); color: var(--bone); transform: translateY(-1px); }
.sticky-call__btn svg { width: 18px; height: 18px; }

/* =========================================================
   ANIMATIONS / REVEAL
   ========================================================= */
.reveal {
  opacity: 0; transform: translateY(18px);
  transition: opacity var(--dur-4) var(--ease-out), transform var(--dur-4) var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 80ms; }
.reveal.delay-2 { transition-delay: 160ms; }
.reveal.delay-3 { transition-delay: 240ms; }
.reveal.delay-4 { transition-delay: 320ms; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* =========================================================
   PRINT
   ========================================================= */
@media print {
  .announce, .sticky-call, .header__cta, .nav-toggle, .banner-cta__actions, .cta-row { display: none !important; }
  body { background: white; color: black; }
  .section { padding: 24px 0; page-break-inside: avoid; }
}
