/* ============================================================
   Westbrook Plumbing Co. — Bold demo
   Get Found Guy / plumber-bold
   ============================================================ */

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

:root {
  /* GFG base tokens (locked - shared across all 36 demos) */
  --cream: #faf7f2;
  --cream2: #f3ede3;
  --white: #ffffff;
  --navy: #1a2744;
  --orange: #f4622a;

  /* Bold demo palette - dark mode, hot orange */
  --bg: #0a0e1a;
  --bg2: #131826;
  --bg3: #1c2233;
  --line: #252b3d;
  --line2: #323a52;
  --text: #ffffff;
  --text2: #a8b0c4;
  --text3: #6b7388;
  --hot: var(--orange);
  --hot2: #ff7a45;
  --hot-glow: rgba(244,98,42,0.40);
  --hot-dark: rgba(244,98,42,0.12);
  --hot-mid: rgba(244,98,42,0.25);

  /* Per-demo aliases (mechanical conversion target) */
  --primary: var(--hot);
  --secondary: var(--navy);
  --bg-page: var(--bg);
  --bg-text: var(--text);

  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* ============================================================
   DEMO BAR  (consistent across all 36 GFG demos)
   Orange bg, white text, white pill CTA, "DEMO SITE" pill badge.
   ============================================================ */
.demo-bar {
  background: var(--orange);
  color: var(--white);
  padding: 0 24px;
  position: sticky;
  top: 0;
  z-index: 1100;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.demo-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 0;
}
.demo-bar-badge {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--white);
  padding: 7px 16px;
  border: 1.5px solid rgba(255,255,255,0.55);
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
}
.demo-bar-text {
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--white);
  flex: 1;
  text-align: left;
  padding-left: 4px;
  min-width: 0;
}
.demo-bar-cta {
  background: var(--white);
  color: var(--navy);
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: transform 0.15s, box-shadow 0.2s, background 0.15s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.demo-bar-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
  background: #fff8f4;
}

/* ============================================================
   SITE HEADER (Westbrook's own nav)
   ============================================================ */
.site-header {
  background: rgba(10,14,26,0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  padding: 18px 24px;
  position: sticky;
  top: 52px;
  z-index: 1000;
}
.site-header-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.site-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.site-logo-mark {
  width: 44px; height: 44px;
  background: var(--orange);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-family: var(--serif);
  font-weight: 800;
  font-size: 1.5rem;
  box-shadow: 0 0 24px var(--hot-glow);
}
.site-logo-text { display: flex; flex-direction: column; line-height: 1.05; }
.site-logo-name {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.20rem;
  color: var(--white);
  letter-spacing: -0.01em;
}
.site-logo-sub {
  font-size: 0.66rem;
  color: var(--text3);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-top: 3px;
}
.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav a {
  color: var(--text2);
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.15s;
}
.site-nav a:hover { color: var(--hot); }
.site-nav a.active { color: var(--white); }
.site-nav-cta {
  background: var(--hot);
  color: var(--white) !important;
  padding: 12px 18px;
  border-radius: 6px;
  font-size: 0.84rem;
  font-weight: 700 !important;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.15s, transform 0.15s;
  box-shadow: 0 0 24px var(--hot-glow);
}
.site-nav-cta:hover { background: var(--hot2); transform: translateY(-1px); }

/* mobile menu button */
.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line2);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 6px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.8rem;
  cursor: pointer;
}

/* ============================================================
   COMMON SECTION + CONTAINER
   ============================================================ */
section.block, section.page-head {
  padding: 96px 24px;
  position: relative;
}
.container {
  max-width: 1120px;
  margin: 0 auto;
  position: relative;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--hot);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--hot);
}
h2.section-h {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2.0rem, 4.4vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 22px;
}
h2.section-h .hot { color: var(--hot); }
.section-lead {
  font-size: 1.05rem;
  color: var(--text2);
  line-height: 1.65;
  max-width: 640px;
}

/* ============================================================
   HERO (homepage)
   ============================================================ */
.hero {
  background: var(--bg);
  padding: 80px 24px 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%; left: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, var(--hot-dark), transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(244,98,42,0.07), transparent 60%);
  pointer-events: none;
}
.hero-inner { max-width: 1120px; margin: 0 auto; position: relative; z-index: 1; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--hot-dark);
  border: 1px solid var(--hot-mid);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--hot);
  margin-bottom: 32px;
}
.hero-tag-dot {
  width: 7px; height: 7px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(74,222,128,0.25);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2.6rem, 6.4vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin-bottom: 32px;
  max-width: 1000px;
  color: var(--white);
}
.hero h1 .hot { color: var(--hot); display: block; }

.hero-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: end;
  margin-bottom: 56px;
}
.hero-sub {
  font-size: 1.12rem;
  color: var(--text2);
  line-height: 1.65;
  max-width: 540px;
}
.hero-sub strong { color: var(--white); font-weight: 700; }

.hero-actions { display: flex; flex-direction: column; gap: 12px; }
.btn-hot {
  background: var(--hot);
  color: var(--white);
  padding: 20px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.98rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  transition: background 0.15s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 0 32px var(--hot-glow);
  font-family: var(--sans);
}
.btn-hot:hover { background: var(--hot2); transform: translateY(-2px); box-shadow: 0 0 48px var(--hot-glow); }
.btn-hot .btn-arrow { font-size: 1.2rem; }

.btn-call-bold {
  background: transparent;
  border: 2px solid var(--line2);
  color: var(--white);
  padding: 16px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: border-color 0.15s, background 0.15s;
}
.btn-call-bold:hover { border-color: var(--hot); background: var(--hot-dark); }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  padding-top: 44px;
}
.hero-stat { padding: 0 28px; border-right: 1px solid var(--line); }
.hero-stat:first-child { padding-left: 0; }
.hero-stat:last-child { border-right: none; padding-right: 0; }
.hero-stat-num {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2.0rem, 4vw, 3.0rem);
  color: var(--white);
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin-bottom: 10px;
}
.hero-stat-num .hot { color: var(--hot); }
.hero-stat-lbl {
  font-size: 0.72rem;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  line-height: 1.4;
}

/* ============================================================
   SERVICES grid (homepage + services page)
   ============================================================ */
.services-block { background: var(--bg2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 56px;
  background: var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.service-card {
  background: var(--bg);
  padding: 38px 30px;
  text-decoration: none;
  color: var(--white);
  transition: background 0.2s;
  display: flex;
  flex-direction: column;
  position: relative;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 0;
  background: var(--hot);
  transition: height 0.25s;
}
.service-card:hover { background: var(--bg3); }
.service-card:hover::before { height: 4px; }
.service-num {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--hot);
  margin-bottom: 16px;
}
.service-card h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 12px;
  letter-spacing: -0.015em;
}
.service-card p {
  font-size: 0.92rem;
  color: var(--text2);
  line-height: 1.6;
  margin-bottom: 22px;
  flex-grow: 1;
}
.service-card-arrow {
  font-size: 0.78rem;
  color: var(--hot);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ============================================================
   WHY US — numbered list
   ============================================================ */
.why-block { background: var(--bg); }
.why-head { max-width: 720px; margin-bottom: 64px; }
.why-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}
.why-item {
  display: grid;
  grid-template-columns: 130px 1fr auto;
  gap: 36px;
  padding: 38px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
  transition: padding 0.2s;
}
.why-item:hover { padding-left: 14px; }
.why-num-big {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 3.6rem;
  color: var(--hot);
  line-height: 0.85;
  letter-spacing: -0.04em;
}
.why-text h4 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 8px;
  letter-spacing: -0.015em;
}
.why-text p {
  font-size: 0.98rem;
  color: var(--text2);
  line-height: 1.6;
  max-width: 580px;
}
.why-arrow {
  font-size: 1.6rem;
  color: var(--text3);
  transition: color 0.2s, transform 0.2s;
}
.why-item:hover .why-arrow { color: var(--hot); transform: translateX(6px); }

/* ============================================================
   PROOF / stat strip
   ============================================================ */
.proof-block {
  background: var(--bg2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 110px 24px;
}
.proof-head { text-align: center; max-width: 760px; margin: 0 auto 72px; }
.proof-head .eyebrow { justify-content: center; }
.proof-head h2 { text-align: center; }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.proof-stat { text-align: center; padding: 0 22px; border-right: 1px solid var(--line); }
.proof-stat:last-child { border-right: none; }
.proof-stat-num {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2.6rem, 5.2vw, 4.6rem);
  color: var(--white);
  line-height: 0.9;
  letter-spacing: -0.035em;
  margin-bottom: 14px;
}
.proof-stat-num .hot { color: var(--hot); }
.proof-stat-lbl {
  font-size: 0.78rem;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  line-height: 1.5;
  max-width: 200px;
  margin: 0 auto;
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-block { background: var(--bg); }
.reviews-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 52px;
  flex-wrap: wrap;
  gap: 28px;
}
.reviews-rating-box {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 28px;
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.reviews-rating-num {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 2.6rem;
  color: var(--hot);
  line-height: 0.9;
}
.reviews-rating-stars { color: #fbbf24; font-size: 1.05rem; letter-spacing: 0.08em; margin-bottom: 6px; }
.reviews-rating-meta {
  font-size: 0.7rem;
  color: var(--text3);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.review-card {
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}
.review-card:hover { border-color: var(--hot); transform: translateY(-3px); }
.review-stars { color: #fbbf24; font-size: 1.0rem; letter-spacing: 0.08em; margin-bottom: 16px; }
.review-text {
  font-size: 0.94rem;
  color: var(--white);
  line-height: 1.65;
  margin-bottom: 22px;
  flex-grow: 1;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.review-avatar {
  width: 42px; height: 42px;
  border-radius: 8px;
  background: var(--hot-dark);
  border: 1.5px solid var(--hot-mid);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-weight: 700;
  color: var(--hot);
  font-size: 0.95rem;
  flex-shrink: 0;
}
.review-author-info { display: flex; flex-direction: column; line-height: 1.25; }
.review-author-name {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--white);
}
.review-author-meta { font-size: 0.72rem; color: var(--text3); margin-top: 3px; font-weight: 600; }

/* ============================================================
   AREAS
   ============================================================ */
.areas-block { background: var(--bg2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.areas-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}
.areas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 36px; }
.area-pill {
  padding: 20px 18px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 6px;
  text-decoration: none;
  color: var(--white);
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.92rem;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.area-pill:hover { border-color: var(--hot); background: var(--bg3); transform: translateY(-2px); }
.area-pill::after { content: '→'; color: var(--hot); opacity: 0; transition: opacity 0.2s; }
.area-pill:hover::after { opacity: 1; }

/* ============================================================
   CTA STRIP — emergency call
   ============================================================ */
.cta-strip {
  background: var(--bg);
  padding: 100px 24px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
}
.cta-strip::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 1100px; height: 1100px;
  background: radial-gradient(circle, var(--hot-dark), transparent 60%);
  pointer-events: none;
}
.cta-strip-inner { max-width: 1120px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.cta-strip h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2.2rem, 5.2vw, 4.4rem);
  color: var(--white);
  line-height: 1.0;
  margin-bottom: 22px;
  letter-spacing: -0.03em;
}
.cta-strip h2 .hot { color: var(--hot); }
.cta-strip p {
  font-size: 1.12rem;
  color: var(--text2);
  max-width: 620px;
  margin: 0 auto 44px;
  line-height: 1.6;
}
.cta-strip-phone {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2.0rem, 4.4vw, 3.2rem);
  color: var(--white);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 22px 44px;
  background: var(--hot);
  border-radius: 10px;
  transition: background 0.15s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 0 64px var(--hot-glow);
  letter-spacing: -0.01em;
}
.cta-strip-phone:hover { background: var(--hot2); transform: translateY(-3px); }
.cta-strip-meta {
  margin-top: 26px;
  font-size: 0.84rem;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

/* ============================================================
   FOOTER (injected by nav.js)
   ============================================================ */
.site-footer {
  background: #060912;
  color: var(--text2);
  padding: 72px 24px 32px;
  border-top: 1px solid var(--line);
}
.footer-inner { max-width: 1120px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--line);
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.65;
  margin-top: 16px;
  max-width: 320px;
  color: var(--text3);
}
.footer-col h5 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col a {
  color: var(--text3);
  font-size: 0.86rem;
  text-decoration: none;
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--hot); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 26px;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text3);
  font-weight: 600;
}
.footer-bottom .footer-license { text-transform: uppercase; letter-spacing: 0.08em; }

/* ============================================================
   PAGE HEADER (interior pages)
   ============================================================ */
.page-head {
  background: var(--bg);
  padding: 88px 24px 60px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.page-head::before {
  content: '';
  position: absolute;
  top: -40%; right: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, var(--hot-dark), transparent 60%);
  pointer-events: none;
}
.page-head-inner { max-width: 1120px; margin: 0 auto; position: relative; z-index: 1; }
.crumbs {
  font-size: 0.74rem;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  margin-bottom: 22px;
}
.crumbs a { color: var(--text3); text-decoration: none; }
.crumbs a:hover { color: var(--hot); }
.crumbs span { color: var(--hot); }
.page-head h1 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2.4rem, 5.4vw, 4.4rem);
  color: var(--white);
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
  max-width: 900px;
}
.page-head h1 .hot { color: var(--hot); }
.page-head .lead {
  font-size: 1.12rem;
  color: var(--text2);
  line-height: 1.65;
  max-width: 680px;
}

/* ============================================================
   PROSE / content blocks (about, service pages)
   ============================================================ */
.prose-block { background: var(--bg); padding: 88px 24px; }
.prose-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
  align-items: start;
}
.prose {
  max-width: 720px;
  font-size: 1.05rem;
  color: var(--text2);
  line-height: 1.75;
}
.prose h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.9rem;
  color: var(--white);
  letter-spacing: -0.02em;
  margin: 44px 0 16px;
  line-height: 1.15;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--white);
  margin: 32px 0 12px;
  letter-spacing: -0.01em;
}
.prose p { margin-bottom: 18px; }
.prose strong { color: var(--white); font-weight: 700; }
.prose ul { padding-left: 22px; margin-bottom: 22px; }
.prose ul li { margin-bottom: 10px; }
.prose ul li::marker { color: var(--hot); }

/* sidebar info card */
.info-card {
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 28px 26px;
  position: sticky;
  top: 130px;
}
.info-card h4 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.info-card-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
  font-size: 0.88rem;
}
.info-card-row .lbl {
  font-size: 0.7rem;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}
.info-card-row .val { color: var(--white); }
.info-card .btn-hot { width: 100%; justify-content: center; margin-top: 8px; }

/* photo placeholder */
.photo-ph {
  background: linear-gradient(135deg, var(--bg2), var(--bg3));
  border: 1px solid var(--line);
  border-radius: 10px;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  color: var(--text3);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  position: relative;
  overflow: hidden;
}
.photo-ph::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(45deg, transparent 48%, var(--line) 48%, var(--line) 52%, transparent 52%),
    linear-gradient(-45deg, transparent 48%, var(--line) 48%, var(--line) 52%, transparent 52%);
  background-size: 28px 28px;
  opacity: 0.35;
}
.photo-ph span { position: relative; z-index: 1; }

/* ============================================================
   SERVICES OVERVIEW (services.html)
   ============================================================ */
.services-list-block { background: var(--bg); padding: 88px 24px; }
.services-list { display: flex; flex-direction: column; gap: 2px; background: var(--line); border-radius: 8px; overflow: hidden; }
.service-row {
  background: var(--bg2);
  padding: 36px 32px;
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 28px;
  align-items: center;
  text-decoration: none;
  color: var(--white);
  transition: background 0.2s;
}
.service-row:hover { background: var(--bg3); }
.service-row-num {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--hot);
  line-height: 0.9;
  letter-spacing: -0.03em;
}
.service-row-text h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.015em;
}
.service-row-text p { color: var(--text2); font-size: 0.95rem; line-height: 1.6; }
.service-row-arrow { font-size: 1.4rem; color: var(--text3); }
.service-row:hover .service-row-arrow { color: var(--hot); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-block { background: var(--bg); padding: 88px 24px; }
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-form {
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 36px 32px;
}
.contact-form h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.015em;
}
.contact-form .form-sub {
  color: var(--text2);
  font-size: 0.94rem;
  margin-bottom: 26px;
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--text2);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 15px;
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.95rem;
  transition: border-color 0.15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--hot);
}
.field textarea { resize: vertical; min-height: 120px; }
.contact-form .btn-hot { width: 100%; justify-content: center; margin-top: 8px; cursor: pointer; border: none; font-family: var(--sans); }

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.info-tile {
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 24px 26px;
}
.info-tile h4 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 6px;
}
.info-tile p, .info-tile a { color: var(--text2); font-size: 0.92rem; line-height: 1.55; text-decoration: none; }
.info-tile a:hover { color: var(--hot); }
.info-tile .big-phone {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.7rem;
  color: var(--hot);
  display: block;
  margin-top: 4px;
  letter-spacing: -0.01em;
}

.map-ph {
  background: linear-gradient(135deg, var(--bg2), var(--bg3));
  border: 1px solid var(--line);
  border-radius: 10px;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text3);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  position: relative;
  overflow: hidden;
}
.map-ph::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(244,98,42,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244,98,42,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
}
.map-ph span { position: relative; z-index: 1; }

/* ============================================================
   FAQ (service pages)
   ============================================================ */
.faq-block { background: var(--bg2); padding: 88px 24px; border-top: 1px solid var(--line); }
.faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 44px; }
.faq-item {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 26px 28px;
}
.faq-item h4 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.faq-item p { color: var(--text2); font-size: 0.96rem; line-height: 1.65; }

/* ============================================================
   DEMO PRICING CTA — cream sales section
   "You're looking at a demo" - sits above the dark CTA strip
   ============================================================ */
.demo-cta-block {
  background: var(--cream);
  padding: 110px 24px;
  border-bottom: 1px solid var(--cream2);
  position: relative;
  overflow: hidden;
}
.demo-cta-inner {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.demo-cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1.5px solid rgba(244,98,42,0.25);
  color: var(--orange);
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 12px 24px;
  border-radius: 999px;
  margin-bottom: 32px;
  box-shadow: 0 4px 16px rgba(244,98,42,0.08);
}
.demo-cta-pill::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 3px rgba(244,98,42,0.20);
}
.demo-cta-block h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2.2rem, 5.0vw, 4.0rem);
  color: var(--navy);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
.demo-cta-block h2 .accent {
  color: var(--orange);
  font-style: italic;
}
.demo-cta-lead {
  font-size: 1.08rem;
  color: #4a5470;
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto 56px;
}
.demo-cta-lead strong { color: var(--navy); font-weight: 700; }
.demo-cta-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 52px;
  text-align: left;
}
.demo-cta-card {
  background: var(--white);
  border: 1px solid var(--cream2);
  border-radius: 14px;
  padding: 36px 32px;
  box-shadow: 0 6px 24px rgba(26,39,68,0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}
.demo-cta-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(26,39,68,0.10);
}
.demo-cta-price {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 3.0rem;
  color: var(--navy);
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.demo-cta-price .unit {
  font-family: var(--serif);
  font-size: 1.0rem;
  font-weight: 600;
  color: #6b7388;
  letter-spacing: 0;
}
.demo-cta-period {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 18px;
}
.demo-cta-card p {
  font-size: 0.94rem;
  color: #4a5470;
  line-height: 1.6;
}
.demo-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--orange);
  color: var(--white);
  padding: 22px 38px;
  border-radius: 10px;
  font-family: var(--sans);
  font-size: 1.02rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.15s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 8px 28px rgba(244,98,42,0.30);
}
.demo-cta-btn:hover {
  background: #d9501e;
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(244,98,42,0.40);
}
.demo-cta-btn .arrow { font-size: 1.15rem; }

/* ============================================================
   AFFILIATIONS / BADGES (about page)
   ============================================================ */
.affil-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.affil-card {
  background: var(--white);
  border: 1px solid var(--cream2);
  border-radius: 14px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 6px 24px rgba(26,39,68,0.05);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.affil-card:hover {
  transform: translateY(-3px);
  border-color: var(--orange);
  box-shadow: 0 12px 32px rgba(244,98,42,0.12);
}
.affil-mark {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(244,98,42,0.10), rgba(26,39,68,0.06));
  border: 1.5px solid rgba(244,98,42,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--orange);
  letter-spacing: -0.02em;
}
.affil-card h4 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  line-height: 1.2;
}
.affil-card p {
  font-size: 0.84rem;
  color: #6b7388;
  line-height: 1.5;
}

/* ============================================================
   GUARANTEE BAND (services page) — dark
   ============================================================ */
.guarantee-block {
  background: var(--bg);
  padding: 96px 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.guarantee-block::before {
  content: '';
  position: absolute;
  top: -30%; left: 50%;
  transform: translateX(-50%);
  width: 1100px; height: 700px;
  background: radial-gradient(ellipse, var(--hot-dark), transparent 60%);
  pointer-events: none;
}
.guarantee-head {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 60px;
  position: relative;
}
.guarantee-head .eyebrow { justify-content: center; }
.guarantee-head h2 { text-align: center; }
.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  position: relative;
}
.guarantee-card {
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 36px 30px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
}
.guarantee-card:hover {
  border-color: var(--hot);
  background: var(--bg3);
  transform: translateY(-3px);
}
.guarantee-seal {
  width: 84px;
  height: 84px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--hot-dark);
  border: 2px solid var(--hot);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 700;
  color: var(--hot);
  font-size: 1.8rem;
  box-shadow: 0 0 32px var(--hot-glow);
  line-height: 1;
}
.guarantee-card h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--white);
  letter-spacing: -0.015em;
  margin-bottom: 12px;
  line-height: 1.2;
}
.guarantee-card p {
  font-size: 0.93rem;
  color: var(--text2);
  line-height: 1.65;
}

/* ============================================================
   RECENT JOBS / RECENT CALLS (service-area + emergency pages)
   ============================================================ */
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.job-card {
  background: var(--white);
  border: 1px solid var(--cream2);
  border-radius: 14px;
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 6px 24px rgba(26,39,68,0.05);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.job-card:hover {
  transform: translateY(-3px);
  border-color: var(--orange);
  box-shadow: 0 12px 32px rgba(244,98,42,0.10);
}
.job-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--cream2);
}
.job-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(244,98,42,0.10);
  border: 1px solid rgba(244,98,42,0.30);
  color: var(--orange);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 12px;
  border-radius: 999px;
}
.job-when {
  font-size: 0.74rem;
  color: #6b7388;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.job-card h4 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.18rem;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  line-height: 1.25;
}
.job-card p {
  font-size: 0.9rem;
  color: #4a5470;
  line-height: 1.6;
  flex-grow: 1;
}
.job-foot {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--cream2);
  font-size: 0.78rem;
  color: #6b7388;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.job-foot strong { color: var(--navy); font-weight: 700; }

/* ============================================================
   INCLUDED CHECKLIST (water heater page)
   ============================================================ */
.included-wrap {
  background: var(--white);
  border: 1px solid var(--cream2);
  border-radius: 14px;
  padding: 44px 44px 36px;
  box-shadow: 0 6px 24px rgba(26,39,68,0.05);
}
.included-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 36px;
}
.included-item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  align-items: start;
}
.included-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(22,163,74,0.12);
  border: 1.5px solid rgba(22,163,74,0.40);
  color: #16a34a;
  font-size: 0.8rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  flex-shrink: 0;
}
.included-item h4 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.0rem;
  color: var(--navy);
  margin-bottom: 3px;
  letter-spacing: -0.01em;
}
.included-item p {
  font-size: 0.86rem;
  color: #4a5470;
  line-height: 1.55;
}
.included-foot {
  margin-top: 32px;
  padding-top: 26px;
  border-top: 1px solid var(--cream2);
  text-align: center;
  font-size: 0.92rem;
  color: #4a5470;
}
.included-foot strong { color: var(--navy); font-weight: 700; }

/* ============================================================
   INTERIOR PAGE — shared cream + dark patterns
   ============================================================ */

/* Generic cream block wrapper for interior pages */
.cream-block {
  background: var(--cream);
  padding: 96px 24px;
  border-top: 1px solid var(--cream2);
  border-bottom: 1px solid var(--cream2);
}
.cream-block.cream2 {
  background: var(--cream2);
  border-top-color: #e6dfd0;
  border-bottom-color: #e6dfd0;
}
.cream-block .container { position: relative; }
.cream-block .eyebrow { color: var(--orange); }
.cream-block .eyebrow::before { background: var(--orange); }
.cream-block h2.section-h { color: var(--navy); }
.cream-block h2.section-h .hot { color: var(--orange); }
.cream-block .section-lead { color: #4a5470; }
.cream-block-head { max-width: 760px; margin-bottom: 56px; }
.cream-block-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.cream-block-head.center .eyebrow { justify-content: center; }
.cream-block-head.center h2.section-h { text-align: center; }
.cream-block-head.center .section-lead { margin-left: auto; margin-right: auto; }

/* Crew grid (about page) */
.crew-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.crew-card {
  background: var(--white);
  border: 1px solid var(--cream2);
  border-radius: 14px;
  padding: 26px 22px;
  text-align: center;
  box-shadow: 0 6px 24px rgba(26,39,68,0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}
.crew-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(26,39,68,0.10); }
.crew-photo {
  aspect-ratio: 1;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--cream2), #e8e0d0);
  margin-bottom: 18px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.crew-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(45deg, transparent 48%, rgba(26,39,68,0.08) 48%, rgba(26,39,68,0.08) 52%, transparent 52%),
    linear-gradient(-45deg, transparent 48%, rgba(26,39,68,0.08) 48%, rgba(26,39,68,0.08) 52%, transparent 52%);
  background-size: 24px 24px;
}
.crew-photo span {
  position: relative;
  z-index: 1;
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #6b7388;
  padding: 8px;
  text-align: center;
}
.crew-name {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.18rem;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.crew-role {
  font-size: 0.74rem;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  margin-bottom: 10px;
}
.crew-meta {
  font-size: 0.85rem;
  color: #4a5470;
  line-height: 1.5;
}

/* Cream stat band (about page) */
.stat-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--white);
  border: 1px solid var(--cream2);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(26,39,68,0.05);
}
.stat-band-item {
  padding: 44px 30px;
  text-align: center;
  border-right: 1px solid var(--cream2);
}
.stat-band-item:last-child { border-right: none; }
.stat-band-num {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2.4rem, 4.6vw, 3.6rem);
  color: var(--navy);
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.stat-band-num .accent { color: var(--orange); }
.stat-band-lbl {
  font-size: 0.72rem;
  color: #6b7388;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  line-height: 1.5;
}

/* Pricing transparency (services + emergency pages) */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pricing-card {
  background: var(--white);
  border: 1px solid var(--cream2);
  border-radius: 14px;
  padding: 34px 30px;
  box-shadow: 0 6px 24px rgba(26,39,68,0.05);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.pricing-card:hover { transform: translateY(-3px); border-color: var(--orange); box-shadow: 0 12px 32px rgba(244,98,42,0.12); }
.pricing-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(244,98,42,0.10);
  border: 1.5px solid rgba(244,98,42,0.30);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}
.pricing-card h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  line-height: 1.2;
}
.pricing-card .price-line {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--orange);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.pricing-card p {
  font-size: 0.93rem;
  color: #4a5470;
  line-height: 1.6;
}

/* Comparison table (water heater page) */
.compare-table {
  background: var(--white);
  border: 1px solid var(--cream2);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(26,39,68,0.05);
}
.compare-table table {
  width: 100%;
  border-collapse: collapse;
}
.compare-table th, .compare-table td {
  padding: 20px 24px;
  text-align: left;
  border-bottom: 1px solid var(--cream2);
  font-size: 0.92rem;
  color: #3a4258;
  vertical-align: top;
}
.compare-table thead th {
  background: #f7f1e6;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  letter-spacing: -0.01em;
  border-bottom: 2px solid var(--cream2);
}
.compare-table thead th:first-child { color: #6b7388; font-family: var(--sans); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.14em; }
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody td:first-child {
  font-weight: 700;
  color: var(--navy);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: #fbf6ec;
  width: 180px;
}
.compare-table .check { color: #16a34a; font-weight: 800; }
.compare-table .x { color: #c44545; font-weight: 800; }

/* Response time table (service area) */
.response-table {
  background: var(--white);
  border: 1px solid var(--cream2);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(26,39,68,0.05);
}
.response-table .row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  padding: 22px 28px;
  border-bottom: 1px solid var(--cream2);
  align-items: center;
  gap: 18px;
}
.response-table .row:last-child { border-bottom: none; }
.response-table .row.head {
  background: #f7f1e6;
  font-family: var(--sans);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  color: #6b7388;
}
.response-table .town {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.response-table .time {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--orange);
  letter-spacing: -0.01em;
}
.response-table .row.head .town,
.response-table .row.head .time { font-family: var(--sans); font-size: 0.7rem; color: #6b7388; font-weight: 800; }
.response-table .miles {
  font-size: 0.86rem;
  color: #6b7388;
  font-weight: 600;
}

/* Process steps (contact page expectations) */
.process-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.process-card {
  background: var(--white);
  border: 1px solid var(--cream2);
  border-radius: 14px;
  padding: 32px 28px;
  position: relative;
}
.process-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 4px 16px rgba(244,98,42,0.30);
}
.process-card h4 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.18rem;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.process-card p {
  font-size: 0.92rem;
  color: #4a5470;
  line-height: 1.6;
}

/* Dark inline truck strip (services page) */
.truck-strip-block {
  background: var(--bg2);
  padding: 72px 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.truck-strip-block::before {
  content: '';
  position: absolute;
  top: -30%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--hot-dark), transparent 60%);
  pointer-events: none;
}
.truck-strip-inner { position: relative; }
.truck-strip-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
}
.truck-strip-text h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.truck-strip-text h3 .hot { color: var(--hot); }
.truck-strip-text p {
  font-size: 1.0rem;
  color: var(--text2);
  line-height: 1.65;
  max-width: 520px;
}
.truck-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.truck-tag {
  background: var(--bg);
  border: 1px solid var(--line2);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 12px 16px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.truck-tag .dot { color: var(--hot); }

/* Honest scope strip (service area) */
.scope-strip {
  background: var(--bg);
  padding: 88px 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.scope-strip::before {
  content: '';
  position: absolute;
  bottom: -30%; left: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, var(--hot-dark), transparent 60%);
  pointer-events: none;
}
.scope-strip-inner { position: relative; max-width: 820px; margin: 0 auto; text-align: center; }
.scope-strip h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.9rem, 4vw, 3.0rem);
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 22px;
}
.scope-strip h2 .hot { color: var(--hot); }
.scope-strip p {
  font-size: 1.05rem;
  color: var(--text2);
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto 20px;
}
.scope-strip p strong { color: var(--white); }

/* Or-call dark strip (contact page) */
.or-call-strip {
  background: var(--bg2);
  padding: 88px 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.or-call-strip::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 1100px; height: 700px;
  background: radial-gradient(ellipse, var(--hot-dark), transparent 60%);
  pointer-events: none;
}
.or-call-inner {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.or-call-eyebrow {
  font-size: 0.74rem;
  color: var(--hot);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
  margin-bottom: 18px;
}
.or-call-strip h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.9rem, 4vw, 3.0rem);
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 22px;
}
.or-call-strip h2 .hot { color: var(--hot); }
.or-call-strip p {
  font-size: 1.05rem;
  color: var(--text2);
  line-height: 1.65;
  max-width: 580px;
  margin: 0 auto 36px;
}

/* ============================================================
   TIMELINE — How an emergency call goes
   ============================================================ */
.timeline-block {
  background: var(--bg2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.timeline-block::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 1200px; height: 600px;
  background: radial-gradient(ellipse, var(--hot-dark), transparent 65%);
  pointer-events: none;
}
.timeline-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
  position: relative;
}
.timeline-head .eyebrow { justify-content: center; }
.timeline-head h2 { text-align: center; }
.timeline-head .section-lead { margin: 0 auto; }
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  align-items: start;
}
.timeline-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--hot) 12%, var(--hot) 88%, transparent);
  z-index: 0;
}
.timeline-step {
  text-align: center;
  padding: 0 14px;
  position: relative;
  z-index: 1;
}
.timeline-dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg3);
  border: 2px solid var(--hot);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--hot);
  box-shadow: 0 0 32px var(--hot-glow);
  position: relative;
}
.timeline-step h4 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.timeline-step p {
  font-size: 0.85rem;
  color: var(--text2);
  line-height: 1.55;
}
.timeline-step .time-tag {
  display: inline-block;
  font-size: 0.68rem;
  color: var(--hot);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 8px;
  padding: 4px 10px;
  background: var(--hot-dark);
  border-radius: 4px;
}

/* ============================================================
   OWNER STRIP — Meet Mike
   ============================================================ */
.owner-block {
  background: var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.owner-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 64px;
  align-items: center;
}
.owner-photo-wrap {
  position: relative;
}
.owner-photo {
  background: linear-gradient(135deg, var(--bg2), var(--bg3));
  border: 1px solid var(--line2);
  border-radius: 12px;
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  padding: 24px;
  color: var(--text3);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  position: relative;
  overflow: hidden;
}
.owner-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(45deg, transparent 48%, var(--line) 48%, var(--line) 52%, transparent 52%),
    linear-gradient(-45deg, transparent 48%, var(--line) 48%, var(--line) 52%, transparent 52%);
  background-size: 32px 32px;
  opacity: 0.30;
}
.owner-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 35%, var(--hot-dark), transparent 60%);
}
.owner-photo span { position: relative; z-index: 1; }
.owner-photo-tag {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--hot);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 10px 18px;
  border-radius: 6px;
  white-space: nowrap;
  box-shadow: 0 6px 24px var(--hot-glow);
}
.owner-text .eyebrow { margin-bottom: 14px; }
.owner-text h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}
.owner-text h2 .hot { color: var(--hot); }
.owner-text p {
  font-size: 1.02rem;
  color: var(--text2);
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 580px;
}
.owner-meta {
  display: flex;
  gap: 32px;
  margin-top: 28px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.owner-meta-item .lbl {
  font-size: 0.68rem;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  margin-bottom: 4px;
}
.owner-meta-item .val {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 700;
}

/* ============================================================
   ON THE TRUCK — inventory grid
   ============================================================ */
.truck-block {
  background: var(--bg2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.truck-block::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--hot-dark), transparent 60%);
  pointer-events: none;
}
.truck-head {
  max-width: 720px;
  margin-bottom: 56px;
  position: relative;
}
.truck-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  position: relative;
}
.truck-item {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
}
.truck-item:hover {
  border-color: var(--hot);
  transform: translateY(-3px);
  background: var(--bg3);
}
.truck-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--hot-dark);
  border: 1.5px solid var(--hot-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 6px;
}
.truck-item h4 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.truck-item p {
  font-size: 0.82rem;
  color: var(--text2);
  line-height: 1.55;
}
.truck-foot {
  margin-top: 36px;
  text-align: center;
  font-size: 0.86rem;
  color: var(--text3);
  font-weight: 600;
}
.truck-foot .hot { color: var(--hot); font-weight: 700; }

/* ============================================================
   REVIEWS — CREAM "BREATH" SECTION (overrides dark reviews-block)
   ============================================================ */
.reviews-block.cream {
  background: var(--cream);
  border-top: 1px solid var(--cream2);
  border-bottom: 1px solid var(--cream2);
}
.reviews-block.cream h2.section-h { color: var(--navy); }
.reviews-block.cream h2.section-h .hot { color: var(--orange); }
.reviews-block.cream .eyebrow { color: var(--orange); }
.reviews-block.cream .eyebrow::before { background: var(--orange); }
.reviews-block.cream .section-lead { color: #4a5470; }
.reviews-block.cream .reviews-rating-box {
  background: var(--white);
  border: 1px solid var(--cream2);
  box-shadow: 0 4px 24px rgba(26,39,68,0.06);
}
.reviews-block.cream .reviews-rating-num { color: var(--orange); }
.reviews-block.cream .reviews-rating-meta { color: #6b7388; }
.reviews-block.cream .review-card {
  background: var(--white);
  border: 1px solid var(--cream2);
  box-shadow: 0 4px 20px rgba(26,39,68,0.05);
}
.reviews-block.cream .review-card:hover {
  border-color: var(--orange);
  box-shadow: 0 8px 32px rgba(244,98,42,0.12);
}
.reviews-block.cream .review-text { color: var(--navy); }
.reviews-block.cream .review-author { border-top: 1px solid var(--cream2); }
.reviews-block.cream .review-avatar {
  background: rgba(244,98,42,0.10);
  border-color: rgba(244,98,42,0.30);
  color: var(--orange);
}
.reviews-block.cream .review-author-name { color: var(--navy); }
.reviews-block.cream .review-author-meta { color: #6b7388; }

/* ============================================================
   FAQ — homepage accordion
   ============================================================ */
.faq-home-block {
  background: var(--cream2);
  border-bottom: 1px solid #e6dfd0;
  padding: 96px 24px;
}
.faq-home-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.faq-home-head .eyebrow {
  color: var(--orange);
  justify-content: center;
}
.faq-home-head .eyebrow::before { background: var(--orange); }
.faq-home-head h2 {
  color: var(--navy);
  text-align: center;
}
.faq-home-head h2 .hot { color: var(--orange); }
.faq-home-head .section-lead { color: #4a5470; margin: 0 auto; }
.faq-accordion {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-accordion details {
  background: var(--white);
  border: 1px solid #e6dfd0;
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-accordion details[open] {
  border-color: var(--orange);
  box-shadow: 0 6px 28px rgba(244,98,42,0.10);
}
.faq-accordion summary {
  padding: 24px 28px;
  cursor: pointer;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
  letter-spacing: -0.01em;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  line-height: 1.3;
}
.faq-accordion summary::-webkit-details-marker { display: none; }
.faq-accordion summary::after {
  content: '+';
  font-family: var(--sans);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--orange);
  flex-shrink: 0;
  transition: transform 0.2s;
  line-height: 1;
}
.faq-accordion details[open] summary::after {
  content: '−';
  transform: scale(1.1);
}
.faq-accordion .faq-answer {
  padding: 0 28px 26px;
  font-size: 0.98rem;
  color: #3a4258;
  line-height: 1.7;
}
.faq-accordion .faq-answer strong { color: var(--navy); font-weight: 700; }

/* ============================================================
   WHAT WE DON'T DO — honest scope section
   ============================================================ */
.dont-block {
  background: var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.dont-block::before {
  content: '';
  position: absolute;
  bottom: -30%; left: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(244,98,42,0.06), transparent 60%);
  pointer-events: none;
}
.dont-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
  position: relative;
}
.dont-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: var(--line);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.dont-item {
  background: var(--bg2);
  padding: 22px 26px;
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 18px;
  align-items: start;
}
.dont-x {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255,90,90,0.12);
  border: 1.5px solid rgba(255,90,90,0.40);
  color: #ff7a7a;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.dont-item h4 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.dont-item p {
  font-size: 0.88rem;
  color: var(--text3);
  line-height: 1.55;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .site-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--bg2); flex-direction: column; align-items: stretch; gap: 0; padding: 12px 24px; border-bottom: 1px solid var(--line); }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .site-nav a:last-child { border-bottom: none; }
  .menu-toggle { display: inline-flex; }
  .site-header { padding: 14px 20px; top: 48px; }
  .hero { padding: 56px 20px 80px; }
  .hero-row { grid-template-columns: 1fr; gap: 32px; align-items: start; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 24px; }
  .hero-stat { padding: 18px 14px; border-right: none; border-bottom: 1px solid var(--line); }
  .hero-stat:nth-child(odd) { border-right: 1px solid var(--line); }
  section.block, section.page-head, .prose-block, .services-list-block, .contact-block, .faq-block { padding: 64px 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-item { grid-template-columns: 70px 1fr; gap: 22px; padding: 30px 0; }
  .why-arrow { display: none; }
  .why-num-big { font-size: 2.6rem; }
  .why-text h4 { font-size: 1.25rem; }
  .proof-grid { grid-template-columns: 1fr 1fr; gap: 36px 0; }
  .proof-stat { border-right: none; padding: 18px 14px; }
  .proof-stat:nth-child(odd) { border-right: 1px solid var(--line); }
  .reviews-grid { grid-template-columns: 1fr; }
  .areas-layout { grid-template-columns: 1fr; gap: 28px; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .cta-strip { padding: 64px 20px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .prose-grid { grid-template-columns: 1fr; gap: 40px; }
  .info-card { position: static; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .service-row { grid-template-columns: 70px 1fr; gap: 20px; padding: 28px 24px; }
  .service-row-arrow { display: none; }
  .service-row-num { font-size: 1.9rem; }
  /* new sections */
  .timeline-grid { grid-template-columns: 1fr 1fr; gap: 36px 12px; }
  .timeline-grid::before { display: none; }
  .owner-grid { grid-template-columns: 1fr; gap: 56px; }
  .owner-photo { max-width: 320px; margin: 0 auto; aspect-ratio: 4 / 4; }
  .truck-grid { grid-template-columns: 1fr 1fr; }
  .dont-grid { grid-template-columns: 1fr; gap: 36px; }
  .faq-home-block { padding: 64px 20px; }
  .demo-cta-block { padding: 72px 20px; }
  .demo-cta-cards { grid-template-columns: 1fr; gap: 14px; }
  .demo-cta-card { padding: 28px 26px; }
  .demo-cta-price { font-size: 2.4rem; }
  /* interior page patterns */
  .cream-block { padding: 64px 20px; }
  .crew-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .stat-band { grid-template-columns: 1fr 1fr; }
  .stat-band-item { border-right: none; border-bottom: 1px solid var(--cream2); padding: 30px 20px; }
  .stat-band-item:nth-child(odd) { border-right: 1px solid var(--cream2); }
  .stat-band-item:nth-last-child(-n+2) { border-bottom: none; }
  .pricing-cards { grid-template-columns: 1fr; gap: 14px; }
  .compare-table th, .compare-table td { padding: 14px 16px; font-size: 0.85rem; }
  .compare-table tbody td:first-child { width: 110px; font-size: 0.7rem; }
  .response-table .row { grid-template-columns: 1fr 1fr; gap: 12px; padding: 18px 20px; }
  .response-table .miles { display: none; }
  .process-row { grid-template-columns: 1fr; gap: 14px; }
  .truck-strip-grid { grid-template-columns: 1fr; gap: 36px; }
  .truck-strip-block { padding: 56px 20px; }
  .scope-strip { padding: 64px 20px; }
  .or-call-strip { padding: 64px 20px; }
  /* replacement sections */
  .affil-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .affil-card { padding: 26px 18px; }
  .affil-mark { width: 60px; height: 60px; font-size: 1.2rem; }
  .guarantee-block { padding: 64px 20px; }
  .guarantee-grid { grid-template-columns: 1fr; gap: 14px; }
  .guarantee-card { padding: 30px 24px; }
  .jobs-grid { grid-template-columns: 1fr; gap: 14px; }
  .included-wrap { padding: 32px 26px 26px; }
  .included-grid { grid-template-columns: 1fr; gap: 16px; }
}
@media (max-width: 600px) {
  .demo-bar { padding: 0 14px; }
  .demo-bar-inner { gap: 12px; min-height: 48px; }
  .demo-bar-text { display: none; }
  .demo-bar-badge { font-size: 0.62rem; padding: 6px 12px; }
  .demo-bar-cta { font-size: 0.78rem; padding: 9px 18px; }
  .hero h1 { font-size: 2.4rem; }
  .areas-grid { grid-template-columns: 1fr; }
  .cta-strip-phone { font-size: 1.7rem; padding: 18px 26px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; padding-bottom: 36px; }
  .site-logo-sub { display: none; }
  .timeline-grid { grid-template-columns: 1fr; gap: 32px; }
  .truck-grid { grid-template-columns: 1fr; }
  .owner-meta { gap: 22px; }
  .faq-accordion summary { font-size: 1rem; padding: 20px 22px; }
  .faq-accordion .faq-answer { padding: 0 22px 22px; }
}
