/* ======================================
   Brand Tokens
   ====================================== */
:root {
  --color-primary:      #171513;
  --color-accent:       #f2b13c;
  --color-accent-dark:  #c98718;
  --color-accent-soft:  #fbe9c6;
  --color-text:         #2b2926;
  --color-muted:        #6f6860;
  --color-bg:           #ffffff;
  --color-surface:      #f8f5ee;
  --color-border:       #e4ded2;
  --color-ink:          #0f1114;
  --color-green:        #1d6b4f;

  /* Elevation system */
  --shadow-xs:          0 1px 2px rgba(23,21,19,0.06);
  --shadow-sm:          0 4px 14px rgba(23,21,19,0.07);
  --shadow-md:          0 12px 32px rgba(23,21,19,0.10);
  --shadow-lg:          0 24px 60px rgba(23,21,19,0.16);
  --shadow-soft:        0 18px 50px rgba(23,21,19,0.12);

  /* Accent gradient */
  --grad-accent:        linear-gradient(135deg, #f7c25a 0%, #e89c1f 100%);
  --grad-ink:           linear-gradient(135deg, #1c1a17 0%, #0d0f12 100%);

  /* Radii */
  --radius-sm:          8px;
  --radius:             14px;
  --radius-lg:          20px;

  --font-display: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* ======================================
   Reset
   ====================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-accent); text-decoration: none; }
a:hover { color: var(--color-accent-dark); text-decoration: underline; }
ul, ol { padding-left: 1.5rem; }
address { font-style: normal; }

/* ======================================
   Typography
   ====================================== */
h1, h2, h3, h4, h5, h6 {
  color: var(--color-primary);
  line-height: 1.18;
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(1.95rem, 4.2vw, 2.85rem);  margin-bottom: 1rem; font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3.2vw, 2.1rem); margin-bottom: 0.75rem; font-weight: 800; }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.4rem); margin-bottom: 0.5rem; }
h4 { font-size: 1.0625rem; margin-bottom: 0.5rem; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* Decorative accent rule under centered section headers */
.section-header h2 { position: relative; display: inline-block; }
.section-header h2::after {
  content: '';
  display: block;
  width: 56px;
  height: 4px;
  border-radius: 999px;
  background: var(--grad-accent);
  margin: 0.9rem auto 0;
}

/* ======================================
   Layout
   ====================================== */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 768px)  { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

.section     { padding: 3rem 0; }
.section-alt { background-color: var(--color-surface); }
@media (min-width: 768px)  { .section { padding: 4rem 0; } }
@media (min-width: 1024px) { .section { padding: 5rem 0; } }

.section-header { text-align: center; margin-bottom: 2.5rem; }
.section-header p { color: var(--color-muted); max-width: 600px; margin: 0 auto; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-accent-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

/* ======================================
   Buttons
   ====================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.6rem;
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: -0.01em;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.2s, color 0.2s, border-color 0.2s;
  line-height: 1.4;
  min-height: 50px;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-cta {
  background: var(--grad-accent);
  color: var(--color-primary) !important;
  border-color: transparent;
  box-shadow: 0 8px 22px rgba(232,156,31,0.35);
}
.btn-cta:hover {
  background: var(--grad-accent);
  box-shadow: 0 12px 30px rgba(232,156,31,0.45);
  text-decoration: none;
}
.btn-outline {
  background-color: transparent;
  color: var(--color-accent);
  border-color: var(--color-accent);
}
.btn-outline:hover {
  background-color: var(--color-accent);
  color: var(--color-primary);
  text-decoration: none;
}
.btn-white {
  background-color: #fff;
  color: var(--color-primary) !important;
  border-color: #fff;
}
.btn-white:hover {
  background-color: var(--color-surface);
  border-color: var(--color-surface);
  text-decoration: none;
}
.btn-dark {
  background-color: var(--color-primary);
  color: #fff !important;
  border-color: var(--color-primary);
}
.btn-dark:hover {
  background-color: #333;
  border-color: #333;
  text-decoration: none;
}

/* ======================================
   Hamburger / Nav Toggle (pure CSS)
   ====================================== */
#nav-toggle {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ======================================
   Header
   ====================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(255,255,255,0.96);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow 0.2s;
  backdrop-filter: blur(14px);
}
.site-header.scrolled { box-shadow: 0 2px 12px rgba(0,0,0,0.1); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.2;
  flex-shrink: 0;
}
.site-logo-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 6px;
  background: var(--color-primary);
  color: var(--color-accent);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  box-shadow: 0 8px 24px rgba(0,0,0,0.14);
}
.site-logo-text {
  display: flex;
  flex-direction: column;
  color: var(--color-primary);
}
.site-logo-text strong {
  color: var(--color-accent-dark);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.site-logo:hover { text-decoration: none; color: var(--color-primary); }

.header-phone {
  display: none;
  text-align: right;
  flex-shrink: 0;
}
.header-phone-label {
  display: block;
  font-size: 0.75rem;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.header-phone a {
  font-size: 1.22rem;
  font-weight: 800;
  color: var(--color-primary);
}
.header-phone a:hover { color: var(--color-accent); text-decoration: none; }
@media (min-width: 768px) { .header-phone { display: block; } }

/* Hamburger label */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px; height: 42px;
  padding: 8px;
  cursor: pointer;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background-color: var(--color-primary);
  transition: transform 0.25s, opacity 0.25s;
  transform-origin: center;
}

/* Animate hamburger to X when checked */
#nav-toggle:checked ~ .site-header .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#nav-toggle:checked ~ .site-header .hamburger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
#nav-toggle:checked ~ .site-header .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ======================================
   Primary Navigation
   ====================================== */
.primary-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: var(--color-bg);
  z-index: 99;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  padding: 5.5rem 1.25rem 2.5rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

/* Show mobile nav when checkbox is checked. The header (with the hamburger that
   morphs into an X) stays on top as the close control. */
#nav-toggle:checked ~ .primary-nav { display: flex; }
body:has(#nav-toggle:checked) { overflow: hidden; }

/* Close button inside the panel is redundant on mobile (the header X closes it)
   and hidden on desktop. */
.nav-close { display: none; }

.primary-nav > ul {
  list-style: none;
  padding: 0;
  text-align: left;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}
.primary-nav > ul > li { margin: 0; border-bottom: 1px solid var(--color-border); }
.primary-nav > ul > li:last-child { border-bottom: none; padding-top: 0.75rem; }
.primary-nav > ul > li > a {
  font-size: 1.15rem;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--color-primary);
  display: block;
  padding: 0.9rem 0.5rem;
  border-radius: 6px;
}
.primary-nav > ul > li > a:hover,
.primary-nav > ul > li > a.active { color: var(--color-accent-dark); text-decoration: none; }

/* Dropdowns */
.dropdown { position: relative; }

/* Mobile: dropdown sub-items are shown inline (tappable), indented under parent */
.dropdown-menu {
  list-style: none;
  padding: 0 0 0.65rem;
  margin: 0 0 0.35rem 0.6rem;
  border-left: 2px solid var(--color-accent-soft);
  text-align: left;
}

.dropdown-menu li a {
  display: block;
  padding: 0.6rem 0.9rem;
  color: var(--color-muted);
  font-size: 0.98rem;
  transition: color 0.15s;
}
.dropdown-menu li a:hover { color: var(--color-accent); text-decoration: none; }
.dropdown-view-all a { font-weight: 600; color: var(--color-accent) !important; }

/* Desktop navigation */
@media (min-width: 1024px) {
  .hamburger  { display: none; }
  .nav-close  { display: none; }

  .primary-nav {
    display: flex !important;
    position: static;
    flex-direction: row;
    padding: 0;
    background: none;
    justify-content: flex-end;
    align-items: center;
    overflow: visible;
    flex: 1;
  }

  .primary-nav > ul {
    display: flex;
    align-items: center;
    gap: 0.125rem;
    text-align: left;
    max-width: none;
  }
  .primary-nav > ul > li { margin: 0; border-bottom: none; }
  .primary-nav > ul > li:last-child { padding-top: 0; }
  .primary-nav > ul > li > a {
    font-size: 0.9375rem;
    font-family: var(--font-body);
    font-weight: 600;
    padding: 0.5rem 0.75rem;
    white-space: nowrap;
  }
  .primary-nav > ul > li > a:hover {
    background-color: var(--color-surface);
  }

  /* Desktop: dropdowns are hidden flyouts revealed on hover/focus */
  .dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    min-width: 230px;
    margin: 0;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    z-index: 200;
    border: 1px solid var(--color-border);
    border-left: 1px solid var(--color-border);
    border-radius: 6px;
    background: var(--color-bg);
    text-align: left;
    padding: 0.5rem 0;
  }
  .dropdown:hover .dropdown-menu,
  .dropdown:focus-within .dropdown-menu { display: block; }
  .dropdown-menu li a { padding: 0.5rem 1.25rem; white-space: nowrap; color: var(--color-text); }

  .nav-book-btn { margin-left: 0.5rem; }
}

/* ======================================
   Hero
   ====================================== */
.hero {
  background-color: var(--color-ink);
  color: #fff;
  padding: 4.5rem 0;
  text-align: center;
  position: relative;
}
@media (min-width: 768px)  { .hero { padding: 6rem 0; } }
@media (min-width: 1024px) { .hero { padding: 8rem 0; } }

.hero h1 { color: #fff; margin-bottom: 1rem; }
.hero .subhead {
  font-size: clamp(1rem, 2vw, 1.1875rem);
  color: rgba(255,255,255,0.82);
  margin-bottom: 2rem;
  max-width: 620px;
  margin-left: auto; margin-right: auto;
}
.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 480px) { .hero-cta { flex-direction: row; justify-content: center; } }

.hero-phone { font-size: clamp(1.75rem, 5vw, 2.5rem); font-weight: 800; color: var(--color-accent); line-height: 1.1; margin-bottom: 0.75rem; }
.hero-phone a { color: var(--color-accent); }
.hero-phone a:hover { color: var(--color-accent-dark); text-decoration: none; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  padding: 0.375rem 1rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.5rem;
}

.hero-premium {
  min-height: calc(100vh - 138px);
  display: flex;
  align-items: center;
  text-align: left;
  overflow: hidden;
}
.hero-premium .container {
  position: relative;
  z-index: 2;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.72fr); }
}
.hero-premium h1 {
  max-width: 780px;
  font-size: clamp(2.35rem, 5.8vw, 5.35rem);
  line-height: 0.98;
  letter-spacing: 0;
}
.hero-premium .subhead {
  margin-left: 0;
  margin-right: 0;
  max-width: 670px;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}
.hero-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.35rem 0 2rem;
}
.proof-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  background: rgba(255,255,255,0.09);
  color: rgba(255,255,255,0.9);
  font-size: 0.92rem;
  font-weight: 700;
}
.hero-call-card {
  background: rgba(255,255,255,0.96);
  color: var(--color-primary);
  border-radius: 8px;
  padding: 1.4rem;
  box-shadow: var(--shadow-soft);
}
.hero-call-card h2 {
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
}
.hero-call-number {
  display: block;
  color: var(--color-primary);
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  font-weight: 900;
  line-height: 1;
  margin: 0.85rem 0 1rem;
}
.hero-call-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}
.hero-call-list li {
  display: flex;
  gap: 0.55rem;
  padding: 0.55rem 0;
  border-top: 1px solid var(--color-border);
  color: var(--color-muted);
  font-size: 0.94rem;
}
.hero-call-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-green);
  flex: 0 0 auto;
  margin-top: 0.58rem;
}

/* ======================================
   Page Hero (inner pages)
   ====================================== */
.page-hero {
  background-color: var(--color-primary);
  color: #fff;
  padding: 3rem 0;
}
@media (min-width: 768px) { .page-hero { padding: 4rem 0; } }
.page-hero h1 { color: #fff; margin-bottom: 0.5rem; }
.page-hero .page-intro {
  color: rgba(255,255,255,0.8);
  font-size: 1.0625rem;
  max-width: 680px;
  margin-bottom: 0;
}

/* ======================================
   Services Grid
   ====================================== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px)  { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }

.service-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--grad-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(232,160,32,0.45);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card .card-icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.service-card p { color: var(--color-muted); font-size: 0.9375rem; margin-bottom: 1.25rem; }

/* SVG icon medallion (service cards, value props) */
.icon-medallion {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.15rem;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--color-accent-soft);
  color: var(--color-accent-dark);
  box-shadow: inset 0 0 0 1px rgba(201,135,24,0.18);
  transition: transform 0.22s ease, background 0.22s ease;
}
.icon-medallion svg { width: 30px; height: 30px; stroke-width: 1.9; }
.service-card:hover .icon-medallion { transform: translateY(-2px) scale(1.04); }

/* ======================================
   Areas Grid
   ====================================== */
.areas-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
@media (min-width: 480px)  { .areas-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .areas-grid { grid-template-columns: repeat(3, 1fr); } }

.area-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 1rem 1.15rem;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 600;
  box-shadow: var(--shadow-xs);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}
.area-card .pin {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--color-accent-soft);
  color: var(--color-accent-dark);
  flex-shrink: 0;
  transition: background 0.18s ease, color 0.18s ease;
}
.area-card .pin svg { width: 16px; height: 16px; }
.area-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(232,160,32,0.55);
  color: var(--color-primary);
  text-decoration: none;
}
.area-card:hover .pin { background: var(--color-accent); color: #fff; }
.area-card .arrow { margin-left: auto; opacity: 0.4; transition: transform 0.18s ease, opacity 0.18s ease; }
.area-card:hover .arrow { opacity: 1; transform: translateX(3px); color: var(--color-accent-dark); }

/* ======================================
   Breadcrumb
   ====================================== */
.breadcrumb {
  background-color: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  padding: 0.625rem 0;
  font-size: 0.875rem;
  color: var(--color-muted);
}
.breadcrumb ol {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  align-items: center;
}
.breadcrumb li + li::before {
  content: '›';
  margin-right: 0.25rem;
  color: var(--color-border);
}
.breadcrumb a { color: var(--color-muted); }
.breadcrumb a:hover { color: var(--color-accent); text-decoration: underline; }
.breadcrumb [aria-current="page"] { color: var(--color-text); }

/* ======================================
   FAQ Accordion
   ====================================== */
.faq-block { margin: 0; }
.faq-block details {
  border: 1px solid var(--color-border);
  border-radius: 6px;
  margin-bottom: 0.5rem;
  overflow: hidden;
}
.faq-block summary {
  padding: 1rem 1.25rem;
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--color-surface);
  user-select: none;
}
.faq-block summary::-webkit-details-marker { display: none; }
.faq-block summary::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-left: 1rem;
  font-weight: 400;
}
.faq-block details[open] summary::after { content: '\2212'; }
.faq-block details[open] summary { border-bottom: 1px solid var(--color-border); }
.faq-answer { padding: 1rem 1.25rem; background: var(--color-bg); }
.faq-answer p { margin-bottom: 0; }

/* ======================================
   CTA Bar
   ====================================== */
.cta-bar {
  background:
    linear-gradient(120deg, rgba(23,21,19,0.94), rgba(23,21,19,0.78)),
    url('/assets/images/electrical-connector-diagnosis-austin.jpg') center/cover;
  padding: 4rem 0;
  text-align: center;
}
.cta-bar h2 { color: #fff; margin-bottom: 0.5rem; }
.cta-bar .cta-phone {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
  display: block;
}
.cta-bar .cta-phone a { color: var(--color-accent); }
.cta-bar .cta-phone a:hover { text-decoration: underline; }
.cta-bar .cta-sub { color: rgba(255,255,255,0.78); margin-bottom: 1.5rem; font-size: 1rem; }
.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  justify-content: center;
  align-items: center;
}
@media (min-width: 560px) {
  .cta-actions { flex-direction: row; }
}

/* ======================================
   Footer
   ====================================== */
.site-footer {
  background-color: var(--color-primary);
  color: rgba(255,255,255,0.75);
  padding: 3.5rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.75fr 1fr 1fr 1fr; }
}
.footer-logo {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.875rem;
  display: block;
}
.footer-logo span { color: var(--color-accent); }
.footer-logo:hover { text-decoration: none; }
.footer-address { font-size: 0.9375rem; line-height: 1.7; margin-bottom: 0.75rem; }
.footer-phone { margin-bottom: 0.5rem; }
.footer-phone a {
  color: var(--color-accent);
  font-size: 1.125rem;
  font-weight: 700;
}
.footer-phone a:hover { text-decoration: underline; }
.footer-hours { font-size: 0.875rem; color: rgba(255,255,255,0.5); margin-bottom: 1rem; }

.footer-col h4 {
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9375rem;
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--color-accent); text-decoration: none; }

.footer-social { display: flex; gap: 1rem; margin-top: 1rem; }
.footer-social a {
  color: rgba(255,255,255,0.65);
  font-weight: 600;
  font-size: 0.875rem;
  transition: color 0.15s;
}
.footer-social a:hover { color: var(--color-accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
}

/* ======================================
   Testimonials
   ====================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px)  { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem 1.5rem;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-card::before {
  content: '\201C';
  font-size: 5rem;
  color: var(--color-accent);
  position: absolute;
  top: -0.75rem;
  left: 1.25rem;
  line-height: 1;
  font-family: Georgia, 'Times New Roman', serif;
  opacity: 0.6;
}
.testimonial-stars { color: var(--color-accent); font-size: 1rem; letter-spacing: 0.1em; margin-bottom: 0.625rem; }
.testimonial-text { font-style: italic; margin-bottom: 1rem; color: var(--color-text); font-size: 0.9375rem; }
.testimonial-author { font-weight: 700; font-size: 0.9375rem; color: var(--color-primary); }
.testimonial-location { font-size: 0.875rem; color: var(--color-muted); }

/* ======================================
   Content page layouts
   ====================================== */
.content-section { padding: 3rem 0; }
@media (min-width: 768px) { .content-section { padding: 4rem 0; } }

.content-2col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .content-2col { grid-template-columns: 2fr 1fr; gap: 3rem; align-items: start; }
}

.sub-services-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.625rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 480px) { .sub-services-list { grid-template-columns: repeat(2, 1fr); } }

.sub-services-list li {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  font-size: 0.9375rem;
}
.sub-services-list li::before {
  content: '✓';
  color: var(--color-accent);
  font-weight: 700;
  flex-shrink: 0;
}

.areas-link-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.areas-link-list a {
  display: inline-block;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 0.375rem 1rem;
  font-size: 0.875rem;
  color: var(--color-text);
  transition: background-color 0.15s, border-color 0.15s;
}
.areas-link-list a:hover {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-primary);
  text-decoration: none;
}

/* Sidebar */
.sidebar-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.sidebar-card h3 { font-size: 1.0625rem; margin-bottom: 0.875rem; }
.sidebar-card ul { list-style: none; padding: 0; }
.sidebar-card li {
  padding: 0.375rem 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.9375rem;
}
.sidebar-card li:last-child { border-bottom: none; }
.sidebar-card a { color: var(--color-text); }
.sidebar-card a:hover { color: var(--color-accent); }

.sidebar-phone-card {
  background: var(--color-accent);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
}
.sidebar-phone-card h3 { color: var(--color-primary); margin-bottom: 0.375rem; font-size: 1rem; }
.sidebar-phone-card .big-phone {
  font-size: 1.375rem;
  font-weight: 800;
  display: block;
  margin-bottom: 1rem;
}
.sidebar-phone-card .big-phone a { color: var(--color-primary); }

/* About / badges */
.about-section { background: var(--color-surface); }
.about-content { max-width: 760px; margin: 0 auto; text-align: center; }
.about-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
.badge {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 0.75rem 1.25rem;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ======================================
   Legal / policy pages
   ====================================== */
.legal-content { max-width: 800px; margin: 0 auto; padding: 3rem 0; }
.legal-content h2 { margin-top: 2rem; margin-bottom: 0.75rem; font-size: 1.25rem; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content ul { margin-bottom: 1rem; }

/* ======================================
   Book Online / Form
   ====================================== */
.booking-section { padding: 3rem 0; }
.booking-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 1024px) { .booking-grid { grid-template-columns: 3fr 2fr; gap: 3rem; align-items: start; } }

.booking-form {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 2rem;
}

.conversion-band {
  background: var(--color-primary);
  color: #fff;
  padding: 1.1rem 0;
}
.conversion-band-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  align-items: center;
}
@media (min-width: 760px) {
  .conversion-band-inner { grid-template-columns: 1fr auto; }
}
.conversion-band strong {
  color: var(--color-accent);
}
.conversion-band p {
  margin: 0;
  color: rgba(255,255,255,0.78);
}

.why-call-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 760px) {
  .why-call-grid { grid-template-columns: repeat(3, 1fr); }
}
.why-call-item {
  border-top: 3px solid var(--color-accent);
  background: #fff;
  padding: 1.5rem;
  box-shadow: 0 12px 36px rgba(23,21,19,0.08);
}
.why-call-item h3 {
  font-size: 1.05rem;
}

.featured-proof {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 860px) {
  .featured-proof { grid-template-columns: 0.9fr 1.1fr; }
}
.featured-proof img {
  border-radius: 8px;
  width: 100%;
  aspect-ratio: 5/4;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}
.proof-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}
.proof-list li {
  padding: 1rem;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  background: var(--color-surface);
  font-weight: 650;
}
.booking-form h2 { margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.375rem;
  font-size: 0.9375rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(232,160,32,0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; padding: 1rem; font-size: 1.0625rem; }
.form-note { font-size: 0.875rem; color: var(--color-muted); margin-top: 0.75rem; }

/* ======================================
   Blog
   ====================================== */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px)  { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }

.blog-card {
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.blog-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.08); }
.blog-card-body { padding: 1.5rem; }
.blog-card-meta { font-size: 0.875rem; color: var(--color-muted); margin-bottom: 0.5rem; }
.blog-card h3 { font-size: 1.0625rem; margin-bottom: 0.5rem; }
.blog-card h3 a { color: var(--color-primary); }
.blog-card h3 a:hover { color: var(--color-accent); text-decoration: none; }
.blog-card p { font-size: 0.9375rem; color: var(--color-muted); }

/* ======================================
   404
   ====================================== */
.error-page { text-align: center; padding: 6rem 0; }
.error-code {
  font-size: clamp(5rem, 15vw, 9rem);
  font-weight: 900;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 1rem;
  display: block;
}

/* ======================================
   Hub / index pages
   ====================================== */
.hub-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px)  { .hub-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .hub-grid { grid-template-columns: repeat(3, 1fr); } }

.hub-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.85rem 1.6rem;
  box-shadow: var(--shadow-xs);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.hub-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(232,160,32,0.4);
}
.hub-card h3 { margin-bottom: 0.5rem; }
.hub-card p { color: var(--color-muted); font-size: 0.9375rem; margin-bottom: 1rem; }

/* ======================================
   Hero Background Image
   ====================================== */
.hero-bg-image {
  background-image:
    linear-gradient(rgba(0,0,0,0.62), rgba(0,0,0,0.62)),
    url('/assets/images/mobile-mechanic-car-on-jacks-austin.jpg');
  background-size: cover;
  background-position: center;
}

/* ======================================
   Stats Bar
   ====================================== */
.stats-bar {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  padding: 1.75rem 0;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 1rem;
}
@media (min-width: 768px) {
  .stats-inner { grid-template-columns: repeat(4, 1fr); }
  .stats-inner .stat-item + .stat-item { border-left: 1px solid var(--color-border); }
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--color-primary);
  display: block;
  line-height: 1;
}
.stat-number .accent { color: var(--color-accent-dark); }
.stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-muted);
  display: block;
  margin-top: 0.45rem;
}

/* ======================================
   Photo Gallery Grid
   ====================================== */
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.625rem;
}
@media (min-width: 768px) { .photo-gallery { grid-template-columns: repeat(3, 1fr); } }
.photo-gallery img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 6px;
  display: block;
  transition: opacity 0.2s;
}
.photo-gallery img:hover { opacity: 0.88; }

/* ======================================
   Service Card Image
   ====================================== */
.service-card-img {
  margin: -2rem -1.5rem 1.25rem;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
}
.service-card-img img {
  width: 100%;
  height: 175px;
  object-fit: cover;
  display: block;
}

/* ======================================
   Service Feature Image (full-width strip)
   ====================================== */
.service-feature-img {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
  display: block;
  object-position: center;
}

/* ======================================
   About Split Layout
   ====================================== */
.about-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 768px) {
  .about-split { grid-template-columns: 1fr 1fr; }
}
.about-split-img img {
  border-radius: 8px;
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  object-position: top;
  display: block;
}
.about-split-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* ======================================
   Sidebar Van/Portrait Image
   ====================================== */
.sidebar-img {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.sidebar-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ======================================
   Utilities
   ====================================== */
.text-center { text-align: center; }
.text-muted { color: var(--color-muted); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ======================================
   Sticky Mobile Call Button
   ====================================== */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 500;
  background-color: var(--color-accent);
  border-top: 2px solid var(--color-accent-dark);
  box-shadow: 0 -4px 16px rgba(0,0,0,0.18);
}
@media (max-width: 1023px) {
  .sticky-cta { display: block; }
  body { padding-bottom: 64px; }
}
.sticky-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.875rem 1.5rem;
  color: var(--color-primary);
  text-decoration: none;
  width: 100%;
}
.sticky-cta-btn:hover {
  background-color: var(--color-accent-dark);
  color: var(--color-primary);
  text-decoration: none;
}
.sticky-cta-icon { font-size: 1.375rem; flex-shrink: 0; }
.sticky-cta-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}
.sticky-cta-label {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.8;
}
.sticky-cta-number {
  font-size: 1.125rem;
  font-weight: 800;
}

/* ======================================
   Form Feedback
   ====================================== */
.form-success {
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  border-radius: 6px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
}
.form-success p { margin-bottom: 0.5rem; color: #2e7d32; }
.form-success p:last-child { margin-bottom: 0; }
.form-success a { color: #1b5e20; text-decoration: underline; }

.form-errors {
  background: #fff3e0;
  border: 1px solid #ffcc80;
  border-radius: 6px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
}
.form-errors p { margin-bottom: 0.5rem; color: #e65100; }
.form-errors ul { margin-bottom: 0; padding-left: 1.25rem; }
.form-errors li { color: #bf360c; font-size: 0.9375rem; }

/* ======================================
   Article / Blog Post Layout
   ====================================== */
.article-body { max-width: 740px; }
.article-body h2 { margin-top: 2rem; }
.article-body h2:first-child { margin-top: 0; }
.article-body h3 { margin-top: 1.5rem; }
.article-meta {
  font-size: 0.875rem;
  color: var(--color-muted);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
}
.article-meta span + span::before { content: ' · '; }

/* ======================================
   Premium Enhancements
   ====================================== */

/* Eyebrow as a subtle pill */
.eyebrow {
  background: var(--color-accent-soft);
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(201,135,24,0.18);
}
.eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-accent-dark);
  display: inline-block;
}

/* Inner page hero — gradient + texture */
.page-hero {
  background: var(--grad-ink);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: -40%; right: -10%;
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(242,177,60,0.16) 0%, rgba(242,177,60,0) 70%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }

/* CTA bar rounded inset feel */
.cta-bar { border-radius: 0; }

/* Sidebar phone card — gradient + depth */
.sidebar-phone-card {
  background: var(--grad-accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.sidebar-card { border-radius: var(--radius); }

/* Conversion band — add subtle top/bottom hairline */
.conversion-band {
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.2);
}

/* Sub-services list: lift on hover when linked */
.sub-services-list li { transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease; }
.sub-services-list li:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); border-color: rgba(232,160,32,0.4); }

/* Prose call-out box for content pages */
.callout {
  background: var(--color-accent-soft);
  border-left: 4px solid var(--color-accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.15rem 1.35rem;
  margin: 1.5rem 0;
}
.callout p:last-child { margin-bottom: 0; }
.callout strong { color: var(--color-primary); }

/* Pricing / info table for content pages */
.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.95rem;
  box-shadow: var(--shadow-xs);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.info-table th, .info-table td {
  text-align: left;
  padding: 0.8rem 1rem;
  border-bottom: 1px solid var(--color-border);
}
.info-table thead th {
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.info-table tbody tr:nth-child(even) { background: var(--color-surface); }
.info-table tbody tr:last-child td { border-bottom: none; }

/* Process / numbered steps */
.steps { list-style: none; padding: 0; margin: 1.5rem 0; display: grid; gap: 1rem; counter-reset: step; }
.steps li {
  position: relative;
  padding: 0 0 0 3.4rem;
  min-height: 2.4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0; top: 0;
  width: 2.4rem; height: 2.4rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--grad-accent);
  color: var(--color-primary);
  font-family: var(--font-display);
  font-weight: 800;
  box-shadow: var(--shadow-sm);
}
.steps li strong { color: var(--color-primary); font-family: var(--font-display); }

/* ======================================
   Page-type modules: AREA pages (local signature)
   ====================================== */
/* At-a-glance facts strip */
.facts-strip {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
}
.facts-strip-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--color-border);
}
@media (min-width: 768px) { .facts-strip-inner { grid-template-columns: repeat(4, 1fr); } }
.fact-item {
  background: var(--color-surface);
  padding: 1.25rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.fact-ico {
  width: 40px; height: 40px;
  flex: 0 0 auto;
  display: grid; place-items: center;
  border-radius: 10px;
  background: var(--color-accent-soft);
  color: var(--color-accent-dark);
}
.fact-ico svg { width: 20px; height: 20px; }
.fact-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--color-muted); font-weight: 600; }
.fact-value { font-family: var(--font-display); font-weight: 700; color: var(--color-primary); line-height: 1.2; font-size: 0.98rem; }

/* Local map band */
.local-band { background: var(--color-surface); }
.local-band-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 900px) { .local-band-grid { grid-template-columns: 1.1fr 0.9fr; } }
.local-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  line-height: 0;
}
.local-map iframe { width: 100%; height: 340px; border: 0; display: block; filter: grayscale(0.15); }
.landmark-chips { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1rem 0 0; }
.landmark-chips li {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text);
}
.landmark-chips li::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--color-accent); flex: 0 0 auto;
}

/* ======================================
   Page-type modules: SERVICE pages
   ====================================== */
/* Key-benefits strip under service hero */
.service-bar { background: var(--color-ink); color: #fff; }
.service-bar-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem 1rem;
  padding: 1.5rem 0;
}
@media (min-width: 860px) { .service-bar-inner { grid-template-columns: repeat(4, 1fr); } }
.service-bar-item { display: flex; align-items: center; gap: 0.7rem; }
.service-bar-item svg { width: 24px; height: 24px; color: var(--color-accent); flex: 0 0 auto; }
.service-bar-item span { font-size: 0.92rem; font-weight: 600; color: rgba(255,255,255,0.9); }

/* Process band (numbered steps in a row) */
.process-band { background: var(--color-surface); }
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  counter-reset: pstep;
}
@media (min-width: 760px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }
.process-step { position: relative; padding-top: 0.5rem; }
.process-step .num {
  width: 2.6rem; height: 2.6rem;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--grad-accent);
  color: var(--color-primary);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  box-shadow: var(--shadow-sm);
}
.process-step h3 { font-size: 1.02rem; margin-bottom: 0.35rem; }
.process-step p { font-size: 0.9rem; color: var(--color-muted); }

/* Category accent on page-hero (service categories) */
.page-hero.cat-residential::after { background: radial-gradient(circle, rgba(242,177,60,0.16) 0%, rgba(242,177,60,0) 70%); }
.page-hero.cat-commercial::after  { background: radial-gradient(circle, rgba(75,140,200,0.18) 0%, rgba(75,140,200,0) 70%); }
.page-hero.cat-automotive::after  { background: radial-gradient(circle, rgba(70,180,140,0.18) 0%, rgba(70,180,140,0) 70%); }
.page-hero.cat-emergency::after   { background: radial-gradient(circle, rgba(220,90,70,0.20) 0%, rgba(220,90,70,0) 70%); }
.page-hero .hero-kicker {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.6rem;
}

/* ======================================
   About page: story timeline + numbers
   ====================================== */
.story-timeline { list-style: none; padding: 0; margin: 0; position: relative; }
.story-timeline::before {
  content: ''; position: absolute; left: 18px; top: 6px; bottom: 6px;
  width: 2px; background: var(--color-border);
}
.story-timeline li { position: relative; padding: 0 0 1.6rem 3.2rem; }
.story-timeline li:last-child { padding-bottom: 0; }
.story-timeline li::before {
  content: ''; position: absolute; left: 10px; top: 4px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--grad-accent);
  box-shadow: 0 0 0 4px var(--color-bg);
}
.story-timeline h3 { font-size: 1.05rem; margin-bottom: 0.25rem; }
.story-timeline p { color: var(--color-muted); margin: 0; }
.bignum-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
}
@media (min-width: 760px) { .bignum-grid { grid-template-columns: repeat(4, 1fr); } }
.bignum { text-align: center; }
.bignum .n { font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem,4vw,2.8rem); color: var(--color-primary); line-height: 1; letter-spacing: -0.03em; }
.bignum .l { display: block; margin-top: 0.5rem; font-size: 0.85rem; color: var(--color-muted); font-weight: 600; }

/* ======================================
   Quick Request (expanding inline form)
   ====================================== */
.quick-request { width: 100%; }
.quick-request-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.quick-request-toggle .qr-toggle-caret { transition: transform 0.25s ease; font-size: 0.8em; }
.quick-request.is-open .quick-request-toggle .qr-toggle-caret { transform: rotate(180deg); }

.quick-request-form {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 1.1rem;
  margin-top: 0.75rem;
  text-align: left;
}
.quick-request-lead {
  font-size: 0.9rem;
  color: var(--color-muted);
  margin: 0 0 0.85rem;
}
.qr-field { margin-bottom: 0.7rem; }
.qr-field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
  letter-spacing: 0.01em;
}
.qr-field input,
.qr-field select {
  width: 100%;
  padding: 0.6rem 0.7rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
}
.qr-field input:focus,
.qr-field select:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(242,177,60,0.18);
}
.quick-request-note {
  font-size: 0.82rem;
  color: var(--color-muted);
  margin: 0.7rem 0 0;
  text-align: center;
}
/* Animated reveal when JS toggles [hidden] off */
.quick-request-form:not([hidden]) { animation: qrIn 0.25s ease; }
@keyframes qrIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* Scroll reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .btn:hover, .service-card:hover, .hub-card:hover, .area-card:hover, .testimonial-card:hover { transform: none; }
}
