/* ==========================================================================
   Timeless Electric — Stylesheet v2
   Electric red brand colors. All sans-serif. No navy blue.
   Colors pulled from the official logo SVG.
   ========================================================================== */

/* -------------------------- Tokens -------------------------- */
:root {
  /* Brand colors — from the official Horiisontal_logo.svg */
  --red:            #ec1c24;          /* Primary electric red */
  --red-deep:       #c5121a;          /* Hover / pressed */
  --red-darker:     #9d0c13;          /* Deep variant for text on white */
  --orange:         #f9a11b;          /* Logo orange */
  --orange-soft:    #fbb94b;          /* Lighter orange */
  --yellow:         #fff100;          /* Accent yellow — use sparingly */

  /* Neutrals — warm, never blue */
  --ink:            #1a1a1a;          /* Near-black — primary text */
  --ink-soft:       #555555;          /* Secondary text */
  --ink-dim:        #858585;          /* Tertiary text / muted */
  --paper:          #ffffff;          /* Pure white background */
  --paper-warm:     #faf7f2;          /* Warm off-white for alternating sections */
  --paper-red:      #fef3f4;          /* Very soft red tint — barely there */
  --card:           #ffffff;
  --line:           #e8e4dc;          /* Subtle divider */
  --line-strong:    #d1ccc2;

  /* Dark sections — charcoal instead of navy */
  --dark:           #1a1a1a;
  --dark-soft:      #2a2a2a;

  /* Type scale */
  --step--2:        clamp(0.75rem, 0.73rem + 0.10vw, 0.82rem);
  --step--1:        clamp(0.875rem, 0.85rem + 0.12vw, 0.95rem);
  --step-0:         clamp(1.00rem, 0.97rem + 0.15vw, 1.10rem);
  --step-1:         clamp(1.125rem, 1.08rem + 0.22vw, 1.25rem);
  --step-2:         clamp(1.3rem, 1.22rem + 0.38vw, 1.55rem);
  --step-3:         clamp(1.55rem, 1.43rem + 0.60vw, 1.90rem);
  --step-4:         clamp(1.85rem, 1.65rem + 0.95vw, 2.40rem);
  --step-5:         clamp(2.20rem, 1.90rem + 1.45vw, 3.00rem);
  --step-6:         clamp(2.60rem, 2.15rem + 2.15vw, 3.75rem);
  --step-7:         clamp(3.00rem, 2.35rem + 3.10vw, 4.70rem);

  /* Spacing */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 3rem;
  --sp-8: 4rem;
  --sp-9: 6rem;
  --sp-10: 8rem;

  /* Layout */
  --container-max: 1280px;
  --narrow-max: 760px;
  --wide-max: 1440px;
  --radius-sm: 4px;
  --radius: 10px;
  --radius-lg: 16px;

  /* Motion */
  --ease: cubic-bezier(0.2, 0.6, 0.2, 1);
}

/* -------------------------- Reset & Base -------------------------- */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: 'Manrope', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: var(--step-0);
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg, video { max-width: 100%; display: block; }

a {
  color: var(--red);
  text-decoration: none;
  transition: color 0.18s var(--ease);
}
a:hover { color: var(--red-deep); }

p { margin: 0 0 var(--sp-4); }

ul, ol { padding-left: 1.25em; }
li { margin-bottom: var(--sp-2); }

hr {
  border: 0;
  height: 1px;
  background: var(--line);
  margin: var(--sp-7) 0;
}

strong { font-weight: 700; color: var(--ink); }

/* -------------------------- Typography -------------------------- */
h1, h2, h3, h4, h5 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 var(--sp-4);
}

h1 { font-size: var(--step-6); letter-spacing: -0.03em; line-height: 1.08; }
h2 { font-size: var(--step-5); letter-spacing: -0.025em; line-height: 1.1; }
h3 { font-size: var(--step-3); }
h4 { font-size: var(--step-2); }
h5 { font-size: var(--step-1); }

.eyebrow {
  font-family: 'Manrope', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--red);
  display: inline-block;
  margin-bottom: var(--sp-4);
}
.eyebrow--ink { color: var(--ink-soft); }
.eyebrow--light { color: rgba(255,255,255,0.8); }

.lede {
  font-size: var(--step-2);
  font-weight: 500;
  line-height: 1.4;
  color: var(--ink);
  margin: 0 0 var(--sp-5);
  letter-spacing: -0.01em;
}

.subhead {
  font-size: var(--step-1);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 62ch;
  margin-bottom: var(--sp-5);
  font-weight: 400;
}

/* -------------------------- Layout Primitives -------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--sp-5);
}
@media (min-width: 768px)  { .container { padding-inline: var(--sp-6); } }
@media (min-width: 1100px) { .container { padding-inline: var(--sp-7); } }

.narrow { max-width: var(--narrow-max); margin-inline: auto; }
.wide   { max-width: var(--wide-max); margin-inline: auto; }

.section { padding-block: var(--sp-8); }
@media (min-width: 768px) { .section { padding-block: var(--sp-9); } }

.section--warm { background: var(--paper-warm); }
.section--red-soft { background: var(--paper-red); }

.section--dark {
  background: var(--dark);
  color: #f0ece5;
  position: relative;
}
.section--dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(236, 28, 36, 0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 100%, rgba(249, 161, 27, 0.12) 0%, transparent 50%);
  pointer-events: none;
}
.section--dark > * { position: relative; }
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4,
.section--dark .lede { color: #fff; }
.section--dark a { color: #f0ece5; }
.section--dark a:hover { color: var(--orange); }

/* -------------------------- Buttons -------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.9em 1.7em;
  border: 2px solid transparent;
  border-radius: 999px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: var(--step-0);
  letter-spacing: 0;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}

.btn--primary {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  box-shadow: 0 4px 16px -6px rgba(236, 28, 36, 0.4);
}
.btn--primary:hover {
  background: var(--red-deep);
  border-color: var(--red-deep);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 28px -8px rgba(236, 28, 36, 0.55);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover {
  background: var(--ink);
  color: #fff;
}

.btn--ghost-red {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}
.btn--ghost-red:hover {
  background: var(--red);
  color: #fff;
}

.btn--ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn--ghost-light:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}

.btn--large {
  padding: 1.05em 2em;
  font-size: var(--step-1);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  align-items: center;
}

/* -------------------------- Emergency Banner -------------------------- */
.emergency-banner {
  background: linear-gradient(95deg, var(--red) 0%, var(--orange) 100%);
  color: #fff;
  padding: 0.7rem var(--sp-4);
  text-align: center;
  font-weight: 600;
  font-size: 0.93rem;
  letter-spacing: 0.01em;
}
@media (max-width: 560px) {
  .emergency-banner { font-size: 0.82rem; padding: 0.55rem var(--sp-3); }
}
.emergency-banner a {
  color: #fff;
  border-bottom: 1.5px solid rgba(255,255,255,0.55);
  font-weight: 700;
}
.emergency-banner a:hover {
  border-bottom-color: #fff;
  color: #fff;
}

/* -------------------------- Header / Nav -------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
  padding-block: var(--sp-4);
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}
.brand img, .brand svg {
  height: 40px;
  width: auto;
  max-width: 100%;
}
@media (min-width: 560px) {
  .brand img, .brand svg { height: 46px; }
}
@media (min-width: 768px) {
  .brand img, .brand svg { height: 54px; }
}

.nav-menu {
  display: none;
  gap: var(--sp-6);
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu > li { margin: 0; position: relative; }
.nav-menu a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  position: relative;
  display: inline-block;
  padding: 0.25em 0;
}
.nav-menu a:hover { color: var(--red); }
.nav-menu a.is-active { color: var(--red); }
.nav-menu a.is-active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}

.has-dropdown::after {
  content: "▾";
  margin-left: 0.3em;
  font-size: 0.75em;
  opacity: 0.65;
}

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: var(--sp-3);
  padding: var(--sp-3);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 48px -10px rgba(0,0,0,0.15);
  min-width: 260px;
  list-style: none;
}
.dropdown li { margin: 0; }
.dropdown a {
  display: block;
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
}
.dropdown a:hover {
  background: var(--paper-red);
  color: var(--red);
}
.has-dropdown:hover > .dropdown,
.has-dropdown:focus-within > .dropdown { display: block; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-shrink: 0;
}
.nav-phone {
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  white-space: nowrap;
}
.nav-phone:hover { color: var(--red); }
@media (max-width: 900px) {
  .nav-phone { display: none; }
}

/* Hide the "Free Estimate" button on narrow mobile (it's in the hamburger menu) */
@media (max-width: 560px) {
  .nav-cta .btn--primary { display: none; }
}

.nav-toggle {
  display: block;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0.4rem;
  color: var(--ink);
}
.nav-toggle svg { width: 28px; height: 28px; }

@media (min-width: 1024px) {
  .nav-menu { display: flex; }
  .nav-toggle { display: none; }
}

/* -------------------------- Mobile Menu (Full-screen drawer) -------------------------- */
/* Backdrop overlay behind the drawer */
.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 26, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s var(--ease);
  z-index: 90;
}
.mobile-menu-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* The drawer itself — slides in from the right, fills the viewport height */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(92vw, 420px);
  max-width: 100vw;
  height: 100vh;                /* fallback for browsers without dvh */
  height: 100dvh;               /* dynamic viewport height — correct on iOS Safari, overrides above */
  background: var(--paper);
  box-shadow: -12px 0 40px -10px rgba(0, 0, 0, 0.25);
  transform: translateX(100%);
  transition: transform 0.3s var(--ease);
  z-index: 100;
  display: flex;
  flex-direction: column;
  overflow: hidden;             /* container doesn't scroll — inner list does */
  visibility: hidden;           /* keeps it out of tab order when closed */
}
.mobile-menu.is-open {
  transform: translateX(0);
  visibility: visible;
}

/* Menu header — close button sits here */
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-4) var(--sp-5);
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}
.mobile-menu-header img {
  height: 38px;
  width: auto;
}
.mobile-menu-close {
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0.4rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.18s var(--ease);
}
.mobile-menu-close:hover { background: var(--paper-red); color: var(--red); }
.mobile-menu-close svg { width: 26px; height: 26px; }

/* Scrollable list area — THIS is the key fix: items can always scroll into view */
.mobile-menu-body {
  flex: 1 1 auto;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding: var(--sp-3) var(--sp-5) var(--sp-5);
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-menu li {
  margin: 0;
  border-bottom: 1px solid var(--line);
}
.mobile-menu li:last-child { border-bottom: 0; }
.mobile-menu a {
  display: block;
  padding: var(--sp-4) 0;
  font-size: var(--step-1);
  font-weight: 600;
  color: var(--ink);
}
.mobile-menu a:hover,
.mobile-menu a:active { color: var(--red); }
.mobile-menu .sub {
  padding-left: var(--sp-5);
  font-size: 0.98rem;
  font-weight: 400;
  color: var(--ink-soft);
  padding-block: var(--sp-3);
}
.mobile-menu .sub::before {
  content: "›";
  display: inline-block;
  margin-right: 0.5em;
  color: var(--red);
  font-weight: 700;
}

/* CTA block pinned at the bottom of the drawer */
.mobile-cta {
  padding: var(--sp-4) var(--sp-5);
  padding-bottom: max(var(--sp-4), env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  background: var(--paper-warm);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  flex-shrink: 0;
}
.mobile-cta .btn,
.mobile-menu .mobile-cta a.btn {
  display: inline-flex;
  align-items: center;
  width: 100%;
  justify-content: center;
  text-align: center;
  padding: 0.9em 1.7em;
  font-size: var(--step-0);
}

/* Animated hamburger → X transformation on the toggle button */
.nav-toggle svg line {
  transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
  transform-origin: center;
}
.nav-toggle[aria-expanded="true"] svg line:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] svg line:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] svg line:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

/* Lock body scroll while the drawer is open */
body.menu-open {
  overflow: hidden;
  touch-action: none;
}

/* On desktop, the drawer is never shown */
@media (min-width: 1024px) {
  .mobile-menu,
  .mobile-menu-backdrop { display: none !important; }
}

/* -------------------------- Hero -------------------------- */
.hero {
  position: relative;
  padding-block: var(--sp-8) var(--sp-9);
  overflow: hidden;
  background: var(--paper);
}
@media (min-width: 768px) {
  .hero { padding-block: var(--sp-9) var(--sp-10); }
}
.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 140%;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(236, 28, 36, 0.10) 0%, transparent 55%),
    radial-gradient(ellipse at 40% 60%, rgba(249, 161, 27, 0.08) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; }

.hero h1 {
  font-size: var(--step-7);
  max-width: 18ch;
  margin-bottom: var(--sp-5);
  letter-spacing: -0.035em;
  line-height: 1.02;
}
.hero h1 .red {
  color: var(--red);
}
.hero-subhead {
  font-size: var(--step-1);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 60ch;
  margin-bottom: var(--sp-7);
  font-weight: 400;
}
.hero-trust {
  margin-top: var(--sp-7);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-5);
  font-size: 0.82rem;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}
.hero-trust span { display: flex; align-items: center; gap: 0.5em; }
.hero-trust .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--red);
}

.hero--compact { padding-block: var(--sp-8) var(--sp-8); }
.hero--compact h1 { font-size: var(--step-6); }

/* -------------------------- Service Cards -------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
}
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  text-decoration: none;
  color: inherit;
  transition: all 0.22s var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.service-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px -14px rgba(236, 28, 36, 0.22);
  color: inherit;
}
.service-card:hover::after { transform: scaleX(1); }
.service-card h3 {
  font-size: var(--step-2);
  margin-bottom: var(--sp-3);
  font-weight: 700;
}
.service-card p {
  color: var(--ink-soft);
  font-size: 0.98rem;
  margin-bottom: var(--sp-4);
  flex: 1;
}
.service-card .arrow {
  color: var(--red);
  font-weight: 700;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
  transition: gap 0.2s var(--ease);
}
.service-card:hover .arrow { gap: 0.6em; }

/* -------------------------- Splits -------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-7);
  align-items: start;
}
@media (min-width: 900px) { .split { grid-template-columns: 5fr 7fr; gap: var(--sp-8); } }

/* -------------------------- Feature/Check lists -------------------------- */
.feature-list { list-style: none; padding: 0; margin: 0; }
.feature-list li {
  position: relative;
  padding-left: 1.8em;
  margin-bottom: var(--sp-3);
  line-height: 1.55;
}
.feature-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}

.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li {
  position: relative;
  padding-left: 1.9em;
  margin-bottom: var(--sp-3);
  line-height: 1.55;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.02em;
  color: #fff;
  background: var(--red);
  width: 1.3em; height: 1.3em;
  border-radius: 50%;
  font-size: 0.8em;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
}

/* -------------------------- Price Table -------------------------- */
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-block: var(--sp-5);
  font-size: 0.97rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.price-table th,
.price-table td {
  padding: var(--sp-4) var(--sp-5);
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.price-table th {
  background: var(--paper-warm);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.price-table td:last-child {
  font-weight: 700;
  color: var(--red);
  white-space: nowrap;
}
.price-table tr:last-child td { border-bottom: 0; }
.price-table tr:hover td { background: var(--paper-warm); }

/* -------------------------- Stats -------------------------- */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-5);
  padding: var(--sp-6) 0;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}
@media (min-width: 768px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat .num {
  font-size: var(--step-5);
  font-weight: 800;
  color: var(--red);
  display: block;
  line-height: 1;
  margin-bottom: var(--sp-2);
  letter-spacing: -0.02em;
}
.stat .label {
  font-size: 0.82rem;
  color: var(--ink-soft);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

/* -------------------------- FAQ -------------------------- */
.faq { border-top: 1px solid var(--line); }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: var(--sp-5) 0;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-4);
  font-size: var(--step-1);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.6rem;
  color: var(--red);
  font-weight: 300;
  transition: transform 0.2s var(--ease);
  flex-shrink: 0;
  line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body {
  margin-top: var(--sp-4);
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 70ch;
}

/* -------------------------- Process -------------------------- */
.process {
  counter-reset: step;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
}
@media (min-width: 768px)  { .process { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .process { grid-template-columns: repeat(5, 1fr); gap: var(--sp-4); } }
.process-step {
  counter-increment: step;
  position: relative;
  padding-top: var(--sp-5);
  border-top: 2px solid var(--red);
}
.process-step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: -0.15em;
  right: 0;
  font-size: var(--step-4);
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  opacity: 0.4;
  background: var(--paper);
  padding-left: var(--sp-2);
}
.section--warm .process-step::before { background: var(--paper-warm); }
.process-step h4 {
  font-size: var(--step-1);
  margin-bottom: var(--sp-2);
}
.process-step p {
  font-size: 0.93rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* -------------------------- Location Pills -------------------------- */
.location-pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-block: var(--sp-4);
}
.location-pill {
  display: inline-flex;
  padding: 0.5em 1em;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  transition: all 0.18s var(--ease);
}
.location-pill:hover {
  border-color: var(--red);
  color: var(--red);
}
.location-pill--link {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  font-weight: 700;
}
.location-pill--link:hover {
  background: var(--red-deep);
  border-color: var(--red-deep);
  color: #fff;
}

/* -------------------------- Callout -------------------------- */
.callout {
  background: var(--dark);
  color: #f0ece5;
  border-radius: var(--radius-lg);
  padding: var(--sp-7) var(--sp-6);
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) { .callout { padding: var(--sp-8); } }
.callout::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 20%, rgba(236, 28, 36, 0.25) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 90%, rgba(249, 161, 27, 0.18) 0%, transparent 55%);
  pointer-events: none;
}
.callout > * { position: relative; }
.callout h2, .callout h3 { color: #fff; max-width: 22ch; }
.callout p.callout-lede {
  color: #d9d2c4;
  max-width: 54ch;
  font-size: var(--step-1);
  margin-bottom: var(--sp-6);
  line-height: 1.5;
}

/* -------------------------- Reviews -------------------------- */
.reviews-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: end;
  gap: var(--sp-5);
  margin-bottom: var(--sp-6);
}
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  background: #fff;
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
}
.google-badge .stars {
  color: #fbbc04;
  letter-spacing: 0.1em;
  font-size: 1.1rem;
}
.google-badge strong { font-weight: 700; }

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
}
@media (min-width: 720px)  { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }

.review-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  transition: all 0.22s var(--ease);
}
.review-card:hover {
  border-color: var(--line-strong);
  box-shadow: 0 10px 30px -12px rgba(236, 28, 36, 0.18);
}
.review-stars {
  color: #fbbc04;
  letter-spacing: 0.12em;
  font-size: 1.05rem;
}
.review-snippet {
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ink);
  font-weight: 500;
  margin: 0;
  flex: 1;
}
.review-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: var(--sp-3);
  border-top: 1px solid var(--line);
  gap: var(--sp-3);
}
.review-author {
  font-weight: 700;
  color: var(--ink);
  font-size: 0.95rem;
}
.review-author .place {
  font-weight: 400;
  color: var(--ink-soft);
  font-size: 0.85rem;
}
.review-service {
  font-size: 0.78rem;
  color: var(--ink-dim);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}

.reviews-cta {
  text-align: center;
  margin-top: var(--sp-7);
}

/* -------------------------- Forms -------------------------- */
.form { display: grid; gap: var(--sp-4); max-width: 560px; }
.form-row { display: grid; grid-template-columns: 1fr; gap: var(--sp-4); }
@media (min-width: 600px) { .form-row { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: var(--sp-2); }
.field label {
  font-size: 0.78rem;
  color: var(--ink-soft);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
}
.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-size: var(--step-0);
  padding: 0.85em 1em;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--card);
  color: var(--ink);
  transition: border-color 0.18s var(--ease), box-shadow 0.18s var(--ease);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(236, 28, 36, 0.15);
}
.field textarea { min-height: 140px; resize: vertical; font-family: inherit; }
.field .hint {
  font-size: 0.82rem;
  color: var(--ink-dim);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

.form-status {
  padding: var(--sp-4);
  border-radius: var(--radius);
  font-size: 0.95rem;
  margin: 0;
}
.form-status.success {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
}
.form-status.error {
  background: var(--paper-red);
  border: 1px solid #fca5a5;
  color: var(--red-darker);
}

/* -------------------------- Social Icons -------------------------- */
.social-row {
  display: flex;
  gap: var(--sp-2);
  margin-top: var(--sp-4);
  align-items: center;
}
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #e8e3d6;
  transition: all 0.2s var(--ease);
}
.social-link:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  transform: translateY(-1px);
}
.social-link svg {
  width: 14px;
  height: 14px;
}

/* -------------------------- Footer -------------------------- */
.site-footer {
  background: var(--dark);
  color: #cfc9bd;
  padding-block: var(--sp-8) var(--sp-5);
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red) 0%, var(--orange) 100%);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-7);
  margin-bottom: var(--sp-7);
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; gap: var(--sp-7); } }

.footer-brand-block img {
  height: 54px;
  width: auto;
  filter: brightness(1.1);
  margin-bottom: var(--sp-4);
}
.footer-tagline {
  color: #9d9588;
  font-size: 0.95rem;
  max-width: 34ch;
  margin-bottom: var(--sp-5);
  line-height: 1.55;
}
.footer-contact {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #d9d2c4;
}
.footer-contact a { color: #fff; font-weight: 600; }
.footer-contact a:hover { color: var(--orange); }

.site-footer h5 {
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--sp-4);
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: var(--sp-2); line-height: 1.4; }
.site-footer a { color: #cfc9bd; font-size: 0.95rem; transition: color 0.18s var(--ease); }
.site-footer a:hover { color: var(--orange); }

/* Service area block — cleaner layout */
.service-area-block .cities {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2) var(--sp-3);
  margin-bottom: var(--sp-3);
}
.service-area-block .cities a {
  display: inline-block;
  padding: 0.3em 0.75em;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  transition: all 0.18s var(--ease);
}
.service-area-block .cities a:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.service-area-block .surrounding {
  font-size: 0.88rem;
  color: #9d9588;
  line-height: 1.6;
  margin: 0;
}

.footer-bottom {
  padding-top: var(--sp-5);
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--sp-3);
  font-size: 0.85rem;
  color: #9d9588;
}
.footer-bottom .credentials {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

/* -------------------------- Utilities -------------------------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero h1, .hero .hero-subhead, .hero .btn-row, .hero .hero-trust {
  animation: fade-up 0.7s var(--ease) both;
}
.hero h1 { animation-delay: 0.05s; }
.hero .hero-subhead { animation-delay: 0.18s; }
.hero .btn-row { animation-delay: 0.28s; }
.hero .hero-trust { animation-delay: 0.4s; }

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

/* Recent work gallery (added 2026-08-13) */
.work-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
}
@media (min-width: 640px) { .work-gallery { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .work-gallery { grid-template-columns: 1fr 1fr 1fr; } }
.work-gallery figure { margin: 0; }
.work-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}
.work-gallery figcaption {
  margin-top: var(--sp-2);
  font-size: var(--step--1);
  color: var(--soft, #6b6259);
}

/* Sticky mobile call bar (added 2026-08-31) */
.call-bar {
  display: none;
}
@media (max-width: 760px) {
  .call-bar {
    display: flex;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 999;
    background: var(--ink, #1F1B16);
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    gap: 10px;
    box-shadow: 0 -4px 18px rgba(0,0,0,.25);
  }
  .call-bar a {
    flex: 1;
    text-align: center;
    padding: 12px 10px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    line-height: 1.2;
  }
  .call-bar__call { background: var(--accent, #C8342A); color: #fff; }
  .call-bar__quote { background: rgba(255,255,255,.12); color: #fff; }
  body { padding-bottom: 76px; }
}
