/* =========================================================
   Design System & Homepage Styles
   ========================================================= */

/* ---------- Design Tokens ---------- */
/* Watson Repair LLC brand palette (per client logo + flyers):
     Watson Black  #141414  — primary brand color (logo mark, wordmark)
     Watson Green  #4CD100  — signature neon-green accent (logo + flyers)
     White         #FFFFFF  — base
   Color variable NAMES are generic (brand1/brand2, neutral1-6) rather than
   tied to a specific hue, so the palette can be re-themed later without
   renaming every usage across the CSS. Deeper/lighter variants below are
   derived from the two brand colors for hover states, section tints and
   accessible text contrast. */
:root {
  /* Brand */
  --color-brand1:        #141414; /* Watson Black — primary structural color (header/footer, links, outline buttons) */
  --color-brand1-deep:   #000000; /* true black — footer, deepest dark cards */
  --color-brand1-bright: #333333; /* lighter black-gray — hover states on dark elements */
  --color-brand2:        #4CD100; /* Watson Green — primary CTA / accent color, sampled from the logo */
  --color-brand2-warm:   #8CEB5C; /* lighter, warmer green — hover states */
  --color-brand2-deep:   #2B7A00; /* darker green — legible accent text/links on white */

  /* Neutrals */
  --color-white:       #FFFFFF;
  --color-neutral1:    #F1F1F1; /* light neutral tint for section bands */
  --color-neutral2:    #0A0A0A; /* near-black, headings/body text */
  --color-neutral3:    #3D3D3D; /* body copy, softer than pure black */
  --color-neutral4:    #5C5C5C; /* muted gray for secondary/meta text */
  --color-neutral5:    #D8D8D8; /* light-medium gray, borders/tints */
  --color-neutral6:    #F7F7F7; /* very light neutral tint */

  /* Functional */
  --color-line:        rgba(10, 10, 10, 0.10);
  --color-line-dark:   rgba(255, 255, 255, 0.14);
  --color-shadow:      rgba(0, 0, 0, 0.14);
  --color-shadow-lg:   rgba(0, 0, 0, 0.24);

  /* Typography — per client font spec: Barlow Condensed for headings/
     buttons/nav (all caps), Inter for body copy and small labels. */
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-heading: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Type scale */
  --fs-hero:   clamp(2.5rem, 5vw + 1rem, 4rem);
  --fs-h1:     clamp(2rem, 3.5vw + 1rem, 3.75rem);
  --fs-h2:     clamp(1.625rem, 2vw + 1rem, 2.5rem);
  --fs-h3:     clamp(1.25rem, 1vw + 0.875rem, 1.625rem);
  --fs-eyebrow: 0.8125rem;
  --fs-body:    1.0625rem;
  --fs-small:   0.9375rem;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.75rem;
  --space-lg:  3rem;
  --space-xl:  5rem;
  --space-2xl: 8rem;

  /* Layout */
  --container:  1360px;
  --container-narrow: 920px;
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  14px;

  /* Motion */
  --ease:    cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 180ms;
  --dur:      320ms;
  --dur-slow: 560ms;
}

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

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--color-neutral2);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: var(--color-brand1); text-decoration: none; transition: color var(--dur-fast) var(--ease); }
a:hover { color: var(--color-brand2-deep); }

button { font: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin: 0 0 var(--space-sm);
  color: var(--color-neutral2);
  text-transform: uppercase;
}

p { margin: 0 0 1em; }

::selection { background: var(--color-brand2); color: var(--color-brand1-deep); }

/* ---------- Utility ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2rem);
}

.container--narrow { max-width: var(--container-narrow); }

.eyebrow {
  font-family: var(--font-display);
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-brand2-deep);
  font-weight: 500;
  margin-bottom: var(--space-sm);
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--color-brand2);
}

.section { padding: var(--space-xl) 0; }
.section--lg { padding: var(--space-2xl) 0; }
.section--dark { background: var(--color-neutral1); color: var(--color-neutral2); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--color-neutral2); }
.section--neutral1 { background: var(--color-neutral1); }
.section--white { background: var(--color-white); }

.section-head { max-width: 760px; margin-bottom: var(--space-lg); }
.section-head h2 { font-size: var(--fs-h2); }
.section-head p { color: var(--color-neutral3); font-size: 1.125rem; max-width: 80ch; }
.section--dark .section-head p { color: var(--color-neutral3); }
.section--contact { padding: var(--space-2xl) 0 0 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.95rem 1.6rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  transition: all var(--dur) var(--ease);
  cursor: pointer;
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-brand2);
  color: var(--color-brand1-deep);
  border-color: var(--color-brand2);
}
.btn--primary:hover {
  background: var(--color-brand2-warm);
  border-color: var(--color-brand2-warm);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -10px rgba(76, 209, 0, 0.55);
  color: var(--color-brand1-deep);
}

.btn--outline {
  background: transparent;
  color: var(--color-brand1-deep);
  border-color: rgba(10, 10, 10, 0.3);
}
.btn--outline:hover {
  background: var(--color-brand1-deep);
  color: var(--color-white);
  border-color: var(--color-brand1-deep);
}

.btn--dark {
  background: var(--color-brand1);
  color: var(--color-white);
  border-color: var(--color-brand1);
}
.btn--dark:hover {
  background: var(--color-brand1-deep);
  border-color: var(--color-brand1-deep);
  color: var(--color-white);
  transform: translateY(-1px);
}

.btn .arrow {
  width: 18px; height: 18px;
  transition: transform var(--dur) var(--ease);
}
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Top utility strip ---------- */
.utility-bar {
  background: var(--color-brand1-deep);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}
.utility-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.55rem;
  padding-bottom: 0.55rem;
  gap: var(--space-md);
}
.utility-bar a { color: inherit; }
.utility-bar a:hover { color: var(--color-brand2-warm); }
.utility-bar__left, .utility-bar__right {
  display: flex; gap: var(--space-md); align-items: center;
}
.utility-bar__item {
  display: inline-flex; align-items: center; gap: 0.45rem;
}
.utility-bar__item svg { width: 14px; height: 14px; opacity: 0.85; }

@media (max-width: 720px) {
  .utility-bar__left .utility-bar__item:nth-child(n+2) { display: none; }
  .utility-bar__right { display: none; }
}

/* ---------- Header / Nav ---------- */

/* Reserve space for the header partial BEFORE it loads, so the page
   doesn't jump down when /partials/header.html gets injected by
   /js/include.js. Without this, the empty <div data-include="header">
   has zero height at first paint, the hero starts at the top of the
   viewport, then everything shifts down ~80px once the header arrives.

   Heights measured in browser at every breakpoint (see header_probe.py):
   - utility bar 40px + header 81px = 121px on most phones/tablets
   - utility bar 62px (wraps) + header 81px = 143px on <360px phones
   - utility bar 40px + header 82px = 122px on desktop

   We use the brand1-deep color so the reserved strip is invisible against
   the hero (which also starts dark) and matches the utility bar.

   `.site-header__placeholder` is used belt-and-suspenders style: by class
   if you add it (recommended), or by attribute selector as a fallback so
   existing pages benefit without any HTML changes. */
[data-include="header"]:empty,
.site-header__placeholder {
  display: block;
  min-height: 143px; /* worst case (320px-wide phones) */
  background: var(--color-brand1-deep);
}
@media (min-width: 360px) {
  [data-include="header"]:empty,
  .site-header__placeholder { min-height: 121px; }
}
@media (min-width: 1000px) {
  [data-include="header"]:empty,
  .site-header__placeholder { min-height: 122px; }
}

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-line);
  transition: box-shadow var(--dur) var(--ease);
}
.site-header.is-scrolled { box-shadow: 0 6px 24px -12px var(--color-shadow); }

/* Disable sticky on mobile — header scrolls away normally below 1000px,
   which is also where the desktop nav collapses into the hamburger menu.
   `position: static` is the explicit cancel for `position: sticky`. */
@media (max-width: 767px) {
  .site-header { position: static; }
}

.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 0.75rem; padding-bottom: 0.75rem;
  gap: var(--space-md);
}

.brand {
  display: inline-flex; align-items: center; gap: 0.75rem;
}
.brand__mark {
  height: 84px; width: auto;
}
.brand__text {
  display: none;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-brand1-deep);
  font-size: 0.95rem;
  line-height: 1.1;
}
.brand__text span {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.32em;
  color: var(--color-brand2-deep);
  margin-top: 2px;
}
@media (min-width: 900px) { .brand__text { display: block; } }
@media (max-width: 440px) {.brand__mark {height: 58px;width: auto;} }

.nav { display: none; }
@media (min-width: 1000px) {
  .nav { display: flex; gap: 0.25rem; align-items: center; }
}

.nav__item { position: relative; }
.nav__link {
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 10px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-neutral2);
  border-radius: var(--radius-sm);
  transition: all var(--dur-fast) var(--ease);
}
.nav__link:hover { color: var(--color-brand1); background: var(--color-neutral6); }
.nav__item--has-menu > .nav__link::after {
  content: "";
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform var(--dur) var(--ease);
}
.nav__item--has-menu:hover > .nav__link::after { transform: rotate(225deg) translate(-2px, -2px); }

/* Dropdown */
.nav__menu {
  position: absolute; top: 100%; left: 0;
  min-width: 260px;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-top: 3px solid var(--color-brand2);
  box-shadow: 0 24px 48px -16px var(--color-shadow-lg);
  padding: 0.5rem;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all var(--dur) var(--ease);
  list-style: none; margin: 0;
}
.nav__item--has-menu:hover .nav__menu,
.nav__item--has-menu:focus-within .nav__menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav__menu a {
  display: block;
  padding: 0.65rem 0.875rem;
  font-size: var(--fs-small);
  color: var(--color-neutral2);
  border-radius: var(--radius-sm);
}
.nav__menu a:hover { background: var(--color-neutral6); color: var(--color-brand1); }

/* Nested submenus inside the primary dropdown */
.nav__menu-item { position: relative; list-style: none; }
.nav__menu-item--has-sub > a {
  display: flex; align-items: center; justify-content: space-between;
  gap: 0.5rem;
}
.nav__menu-caret {
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(-45deg);
  transition: transform var(--dur) var(--ease);
  flex: 0 0 auto;
}
.nav__menu-item--has-sub:hover > a .nav__menu-caret,
.nav__menu-item--has-sub:focus-within > a .nav__menu-caret {
  transform: rotate(45deg);
}
.nav__submenu {
  position: absolute; top: -0.5rem; left: 100%;
  min-width: 240px;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-top: 3px solid var(--color-brand2);
  box-shadow: 0 24px 48px -16px var(--color-shadow-lg);
  padding: 0.5rem;
  opacity: 0; visibility: hidden; transform: translateX(-8px);
  transition: all var(--dur) var(--ease);
  list-style: none; margin: 0;
  z-index: 1;
}
.nav__menu-item--has-sub:hover > .nav__submenu,
.nav__menu-item--has-sub:focus-within > .nav__submenu {
  opacity: 1; visibility: visible; transform: translateX(0);
}
.nav__submenu li { list-style: none; }
.nav__submenu a {
  display: block;
  padding: 0.6rem 0.875rem;
  font-size: var(--fs-small);
  color: var(--color-neutral2);
  border-radius: var(--radius-sm);
}
.nav__submenu a:hover { background: var(--color-neutral6); color: var(--color-brand1); }

.header__cta { display: none; }
@media (min-width: 768px) { .header__cta { display: inline-flex; } }

/* Mobile toggle */
.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  background: transparent; border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  color: var(--color-brand1-deep);
}
@media (min-width: 1000px) { .nav-toggle { display: none; } }

.nav-toggle__bars {
  position: relative; width: 20px; height: 14px;
}
.nav-toggle__bars span {
  position: absolute; left: 0; right: 0;
  height: 2px; background: currentColor;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.nav-toggle__bars span:nth-child(1) { top: 0; }
.nav-toggle__bars span:nth-child(2) { top: 6px; }
.nav-toggle__bars span:nth-child(3) { top: 12px; }

.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile drawer */
.mobile-nav {
  display: none;
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(380px, 88vw);
  background: var(--color-brand1-deep);
  color: var(--color-white);
  padding: 5rem 1.75rem 2rem;
  overflow-y: auto;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform var(--dur-slow) var(--ease-out),
              visibility 0s linear var(--dur-slow);
  z-index: 60;
  box-shadow: -24px 0 48px -16px var(--color-shadow-lg);
}
.mobile-nav.is-open {
  transform: translateX(0);
  visibility: visible;
  transition: transform var(--dur-slow) var(--ease-out),
              visibility 0s linear 0s;
}
.mobile-nav__overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(2px);
  z-index: 55;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur) var(--ease);
}
.mobile-nav__overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 999px) {
  .mobile-nav, .mobile-nav__overlay { display: block; }
}
.mobile-nav ul { list-style: none; margin: 0; padding: 0; }
.mobile-nav__group { border-bottom: 1px solid var(--color-line-dark); padding: 0.5rem 0; }
.mobile-nav__group > a, .mobile-nav__group > summary {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.875rem 0;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-white);
  cursor: pointer;
  list-style: none;
}
.mobile-nav__group > summary::-webkit-details-marker { display: none; }
.mobile-nav__group > summary::after {
  content: "+";
  font-size: 1.4rem; color: var(--color-brand2);
  font-family: var(--font-body);
  transition: transform var(--dur) var(--ease);
}
.mobile-nav__group[open] > summary::after { transform: rotate(45deg); }
.mobile-nav__sub { padding: 0 0 0.5rem; }
.mobile-nav__sub a {
  display: block; padding: 0.55rem 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}
.mobile-nav__sub a:hover { color: var(--color-brand2-warm); }

/* Nested second-level submenu inside mobile drawer */
.mobile-nav__sub-group { list-style: none; }
.mobile-nav__nested {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 0.25rem;
  padding-top: 0.25rem;
}
.mobile-nav__sub-group:first-child .mobile-nav__nested {
  border-top: none; margin-top: 0; padding-top: 0;
}
.mobile-nav__nested > summary {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.65rem 0;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  list-style: none;
}
.mobile-nav__nested > summary::-webkit-details-marker { display: none; }
.mobile-nav__nested > summary::after {
  content: "+";
  font-size: 1.15rem;
  color: var(--color-brand2);
  font-family: var(--font-body);
  line-height: 1;
  transition: transform var(--dur) var(--ease);
}
.mobile-nav__nested[open] > summary::after { transform: rotate(45deg); }
.mobile-nav__nested-list {
  list-style: none; margin: 0;
  padding: 0.25rem 0 0.5rem 0.875rem;
  border-left: 1px solid rgba(76, 209, 0, 0.25);
}
.mobile-nav__nested-list li { list-style: none; }
.mobile-nav__nested-list a {
  display: block; padding: 0.45rem 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}
.mobile-nav__nested-list a:hover { color: var(--color-brand2-warm); }
.mobile-nav__cta { margin-top: 2rem; }

body.no-scroll { overflow: hidden; }

/* =========================================================
   HERO — full-width photo background
   ---------------------------------------------------------
   Every hero on the site uses a full-bleed real photo as its
   background (cover), with a dark scrim gradient over it for
   text legibility and white/green text on top.

   To add a new page hero:
     1. Drop the image into /images/work/
     2. Add a `.hero--pagename .hero__bg { background-image: ... }`
        block below, following the existing pattern.
     3. Add the matching class to <section class="hero ...">
   ========================================================= */
.hero {
  position: relative;
  color: var(--color-white);
  background: var(--color-brand1-deep);
  overflow: hidden;
  isolation: isolate;
}

.hero__bg {
  position: absolute; inset: 0;
  background-color: #101010;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -2;
}

/* Dark scrim over every hero photo so white text stays legible
   regardless of what's happening in the photo underneath. */
.hero__bg::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.72) 40%, rgba(0,0,0,0.40) 75%, rgba(0,0,0,0.20) 100%),
    linear-gradient(0deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.05) 35%, rgba(0,0,0,0.05) 70%, rgba(0,0,0,0.45) 100%);
}

.hero__grain {
  position: absolute; inset: 0;
  opacity: 0.08;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  z-index: -1;
  pointer-events: none;
  mix-blend-mode: overlay;
  will-change: transform;
  contain: strict;
}

/* =========================================================
   Per-page hero photos — each modifier class swaps only the
   photo; the scrim/overlay above stays consistent everywhere.
   ========================================================= */
.hero--home .hero__bg          { background-image: url("../images/work/shop-black-ram-service-truck.jpg"); }
.hero--about .hero__bg         { background-image: url("../images/work/truck-on-lift-gmc.jpg"); }
.hero--services .hero__bg      { background-image: url("../images/work/semi-teardown-parts-table.jpg"); }
.hero--service-area .hero__bg  { background-image: url("../images/work/mobile-service-truck-roadside.jpg"); }
.hero--contact .hero__bg       { background-image: url("../images/work/shop-interior-bay-doors.jpg"); }

.hero__layout {
  position: relative;
  display: grid;
  gap: var(--space-lg);
  align-items: center;
}

.hero__inner {
  position: relative;
  padding: clamp(5rem, 10vw, 5.5rem) 0 clamp(4rem, 10vw, 6rem);
  display: grid;
  gap: var(--space-lg);
}

.hero__badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(76, 209, 0, 0.5);
  border-radius: 999px;
  background: rgba(76, 209, 0, 0.12);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-brand2-warm);
  width: fit-content;
}
.hero__badge::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--color-brand2);
  box-shadow: 0 0 0 4px rgba(76, 209, 0, 0.25);
}

.hero h1 {
  font-size: var(--fs-hero);
  color: var(--color-white);
  line-height: 0.98;
  letter-spacing: 0.005em;
  max-width: 25ch;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.hero h1 .accent {
  color: var(--color-brand2);
  font-weight: 700;
  display: inline-block;
}

.hero__lede {
  font-size: clamp(1.05rem, 1vw + 0.85rem, 1.22rem);
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.82);
  max-width: 65ch;
  margin: 0;
}

.hero__cta-row {
  display: flex; flex-wrap: wrap; gap: 0.875rem;
  margin-top: var(--space-sm);
}

.hero__meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  max-width: 760px;
}
.hero__meta-item {
  display: flex; flex-direction: column; gap: 0.25rem;
}
.hero__meta-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-brand2);
  line-height: 1;
}
.hero__meta-label {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

/* Mobile hero — tighter padding, scaled type, simpler meta grid */
@media (max-width: 720px) {
  .hero__inner {
    padding: 2.5rem 0 2.75rem;
    gap: 1rem;
  }
  .hero__badge {
    font-size: 0.7rem;
    padding: 0.35rem 0.75rem;
    letter-spacing: 0.18em;
  }
  .hero h1 {
    font-size: clamp(2rem, 9vw, 2.75rem);
    line-height: 1.05;
    max-width: 100%;
    margin-bottom: 0.25rem;
  }
  .hero__lede {
    font-size: 1rem;
    line-height: 1.5;
  }
  .hero__cta-row {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    margin-top: 0.5rem;
  }
  .hero__cta-row .btn {
    width: 100%;
    justify-content: center;
  }
  .hero__meta {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
  }
  .hero__meta-num { font-size: 1.5rem; }
  .hero__meta-label { font-size: 0.7rem; letter-spacing: 0.1em; }
}

@media (max-width: 380px) {
  .hero__meta {
    grid-template-columns: 1fr 1fr;
    gap: 1rem 0.75rem;
  }
  .hero__meta-num { font-size: 1.35rem; }
}





/* =========================================================
   3-ICON CAPABILITY BAR (Collision / Diesel / Fleet)
   ========================================================= */
.cap-bar {
  background: var(--color-neutral6);
  border-bottom: 1px solid var(--color-line);
  margin-top: -1px; /* avoid hairline gap with hero */
}
.cap-bar .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.cap-bar__item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.5rem 1.25rem;
  text-decoration: none;
  color: var(--color-neutral2);
  border-right: 1px solid var(--color-line);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
  position: relative;
}
.cap-bar__item:last-child { border-right: none; }
.cap-bar__item::before {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--color-brand2); transform: scaleX(0);
  transform-origin: left; transition: transform var(--dur) var(--ease);
}
.cap-bar__item:hover { background: var(--color-neutral1); color: var(--color-brand1); }
.cap-bar__item:hover::before { transform: scaleX(1); }

.cap-bar__icon {
  flex: 0 0 auto;
  width: 48px; height: 48px;
  background: var(--color-brand1-deep);
  color: var(--color-brand2);
  display: grid; place-items: center;
  border-radius: var(--radius-sm);
  transition: background var(--dur) var(--ease);
}
.cap-bar__icon svg { width: 26px; height: 26px; }
.cap-bar__item:hover .cap-bar__icon { background: var(--color-brand1); }

.cap-bar__text { display: flex; flex-direction: column; min-width: 0; }
.cap-bar__eyebrow {
  font-family: var(--font-display);
  font-size: 0.72rem; letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-brand2-deep);
  margin-bottom: 0.15rem;
}
.cap-bar__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.1;
}

@media (max-width: 800px) {
  .cap-bar .container { grid-template-columns: 1fr; }
  .cap-bar__item {
    border-right: none;
    border-bottom: 1px solid var(--color-line);
    padding: 1.1rem 1.25rem;
  }
  .cap-bar__item:last-child { border-bottom: none; }
}

/* =========================================================
   FACILITY PROOF STRIP
   Drop into V3 styles.css (anywhere after the design tokens).
   Uses existing V3 tokens: --color-surface, --color-neutral4,
   --color-brand2, --font-mono, --font-display, --color-text-dim.
   ========================================================= */

.proof-strip {
  background: var(--color-surface);
  border-top: 1px solid var(--color-neutral4);
  border-bottom: 1px solid var(--color-neutral4);
  position: relative;
}
.proof-strip::before, .proof-strip::after {
  content: "";
  position: absolute; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-brand2-deep) 20%, var(--color-brand2) 50%, var(--color-brand2-deep) 80%, transparent);
  pointer-events: none;
}
.proof-strip::before { top: -1px; }
.proof-strip::after  { bottom: -1px; }

.proof-strip__header {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px dashed var(--color-neutral4);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-faint);
}
.proof-strip__header-label { color: var(--color-brand2); }
.proof-strip__header-label::before {
  content: "■";
  color: var(--color-brand2);
  margin-right: 0.5rem;
  font-size: 0.65em;
}
.proof-strip__header-ref { color: var(--color-text-faint); }
@media (max-width: 560px) {
  .proof-strip__header-ref { display: none; }
}

.proof-strip__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
@media (max-width: 1100px) { .proof-strip__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px)  { .proof-strip__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 440px)  { .proof-strip__grid { grid-template-columns: 1fr; } }

.proof-cell {
  padding: 1.4rem 1.25rem;
  border-right: 1px solid var(--color-neutral4);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  min-width: 0;
}
.proof-cell:nth-child(5n) { border-right: none; }
@media (max-width: 1100px) {
  .proof-cell:nth-child(5n) { border-right: 1px solid var(--color-neutral4); }
  .proof-cell:nth-child(3n) { border-right: none; }
  .proof-cell:nth-child(-n+3) { border-bottom: 1px solid var(--color-neutral4); }
}
@media (max-width: 720px) {
  .proof-cell:nth-child(3n) { border-right: 1px solid var(--color-neutral4); }
  .proof-cell:nth-child(2n) { border-right: none; }
  .proof-cell { border-bottom: 1px solid var(--color-neutral4); }
  .proof-cell:last-child { border-bottom: none; }
}
@media (max-width: 440px) {
  .proof-cell { border-right: none; border-bottom: 1px solid var(--color-neutral4); }
  .proof-cell:last-child { border-bottom: none; border-right:none;}
  .proof-cell:nth-child(3n) { border-right: none; }
}

.proof-cell__top {
  display: flex; align-items: center; gap: 0.5rem;
}
.proof-cell__icon {
  width: 18px; height: 18px;
  color: var(--color-brand2);
  flex: 0 0 auto;
}
.proof-cell__id {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  color: var(--color-text-faint);
  text-transform: uppercase;
}

.proof-cell__value {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1vw + 0.9rem, 1.6rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--color-text);
}
.proof-cell__value em {
  font-style: normal;
  color: var(--color-brand2);
  font-family: var(--font-mono);
  font-size: 0.7em;
  font-weight: 500;
  margin-left: 0.15em;
  letter-spacing: 0.04em;
}
.proof-cell__value .sep {
  color: var(--color-brand2-deep);
  font-weight: 400;
  margin: 0 0.2em;
}

.proof-cell__caption {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-dim);
  line-height: 1.4;
  margin-top: auto;
}

/* ---------- COMPACT VARIANT ---------- */
.proof-strip--compact { background: #06080B; }
.proof-strip--compact .proof-strip__header { display: none; }
.proof-strip--compact .proof-cell {
  padding: 1rem 1.1rem;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
}
.proof-strip--compact .proof-cell__top { display: none; }
.proof-strip--compact .proof-cell__inline-icon {
  width: 20px; height: 20px;
  color: var(--color-brand2);
  flex: 0 0 auto;
}
.proof-strip--compact .proof-cell__body {
  display: flex; flex-direction: column; gap: 0.15rem;
  min-width: 0;
}
.proof-strip--compact .proof-cell__value {
  font-size: clamp(0.92rem, 0.5vw + 0.85rem, 1.05rem);
  font-weight: 600;
  letter-spacing: -0.005em;
}
.proof-strip--compact .proof-cell__value em { font-size: 0.72em; }
.proof-strip--compact .proof-cell__caption {
  font-size: 0.64rem;
  letter-spacing: 0.14em;
}

/* =========================================================
   CAPABILITY OVERVIEW
   ========================================================= */
.cap-overview { background: var(--color-white); }
.cap-overview__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
@media (max-width: 900px) {
  .cap-overview__grid { grid-template-columns: 1fr; }
}

.cap-overview__intro h2 { font-size: var(--fs-h1); }
.cap-overview__intro h2 .accent {
  color: var(--color-brand2);
  /*font-style: italic;*/
  font-weight: 500;
  display: inline-block;
  }
  
.cap-overview__intro p { color: var(--color-neutral3); font-size: 1.125rem; line-height: 1.7; }

.cap-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 1rem;
}
.cap-list__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.25rem 1.25rem 1.25rem 1rem;
  background: var(--color-neutral1);
  border-left: 3px solid var(--color-brand2);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.cap-list__link {
  display: flex;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
  width: 100%;
  height: 100%;
}

.cap-list__link:hover {
   box-shadow: 0 24px 40px -20px var(--color-shadow-lg);
    border-color: 1px solid var(--color-brand2);
    color: inherit;
}
.cap-list__num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-brand2-deep);
  line-height: 1;
}
.cap-list__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-brand1-deep);
  margin-bottom: 0.25rem;
  font-weight: 600;
}
.cap-list__desc { font-size: 0.95rem; color: var(--color-neutral3); margin: 0; line-height: 1.55; }

/* =========================================================
   SERVICE TILES
   ========================================================= */
.services { background: var(--color-neutral1); }
.services-fleet-home { background: var(--color-neutral1); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.accent-bg {   
    background: var(--color-brand2-warm);
    padding: 10px;
    border-left: 10px solid var(--color-brand1);
    margin: 30px 0;
 }
 .accent-bg strong {
    color: var(--color-brand1);
 }

.tile {
  position: relative;
  display: flex; flex-direction: column;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
  isolation: isolate;
}
.tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 40px -20px var(--color-shadow-lg);
  border-color: var(--color-brand2);
  color: inherit;
}

.tile__media {
  position: relative;
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.05) 60%, rgba(0, 0, 0, 0.4) 100%),
    linear-gradient(135deg, #333333 0%, #141414 50%, #000000 100%);
  overflow: hidden;
}
/* SVG illustration sits inside for now — replace with real shop photography for production */
/*.tile__illustration {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  color: rgba(255, 255, 255, 0.85);
}*/
.tile__illustration {
  position: relative;
  overflow: hidden;
}

.tile__illustration img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

  transition:
    transform 0.5s ease,
    filter 0.5s ease;
}

/* Brand color tint */
.tile__illustration::before {
  content: "";
  position: absolute;
  inset: 0;

  background: #141414;
  opacity: 0.3;

  z-index: 1;
  pointer-events: none;

  transition: opacity 0.4s ease;
}

/* Subtle dark overlay */
.tile__illustration::after {
  content: "";
  position: absolute;
  inset: 0;

  background:
  linear-gradient(
    to top,
    rgba(0,0,0,0.35),
    rgba(0,0,0,0.05)
  );

  opacity: 0;
  transition: opacity 0.4s ease;

  pointer-events: none;
}

/* Hover Effects */
.tile:hover .tile__illustration img {
  transform: scale(1.05);
  filter: brightness(0.9);
}

.tile:hover .tile__illustration::after {
  opacity: 1;
}

.tile__illustration svg { width: 60%; height: 60%; max-width: 200px; }

.tile__photo-tag {
  position: absolute; top: 0.75rem; left: 0.75rem;
  background: rgba(0, 0, 0, 0.78);
  color: var(--color-brand2-warm);
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.3rem 0.55rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(76, 209, 0, 0.35);
  z-index:99;
}

.tile__priority {
  position: absolute; top: 0.75rem; right: 0.75rem;
  background: var(--color-brand2);
  color: var(--color-brand1-deep);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.3rem 0.55rem;
  border-radius: var(--radius-sm);
}

.tile__body {
  padding: 1.5rem 1.5rem 1.75rem;
  display: flex; flex-direction: column; flex: 1;
}
.tile__eyebrow {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-brand2-deep);
  margin-bottom: 0.5rem;
}
.tile__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  color: var(--color-brand1-deep);
}
.tile__desc { font-size: 0.95rem; color: var(--color-neutral3); margin-bottom: 1rem; }
.tile__more {
  margin-top: auto;
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-brand1);
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-weight: 500;
}
.tile__more::after {
  content: "→";
  transition: transform var(--dur) var(--ease);
}
.tile:hover .tile__more::after { transform: translateX(4px); }


/* =========================================================
   PATHS 
   ========================================================= */
.path { background: var(--color-neutral1); }
.path-fleet-home { background: var(--color-neutral1); }

.path-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

/* =========================================================
   SPRAY BOOTH DIFFERENTIATOR — FEATURE STRIP
   ========================================================= */
.feature-strip {
  background:     radial-gradient(circle at 30% 50%, rgba(76, 209, 0, 0.20), transparent 60%),
    linear-gradient(135deg, #F7F7F7, #FFFFFF);
  opacity: 0.9;
  color: var(--color-neutral2);
  position: relative;
  overflow: hidden;
}
.feature-strip::before {
  content: "";
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 45%;
  /* PLACEHOLDER: real spray-booth photography goes here for production */
  background:
}
.feature-strip__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}
@media (max-width: 900px) {
  .feature-strip__grid { grid-template-columns: 1fr; }
  .feature-strip::before { display: none; }
}

.feature-strip h2 {
  font-size: var(--fs-h1);
  color: var(--color-neutral2);
  max-width: 18ch;
}
.feature-strip h2 em {
  color: var(--color-brand1);
  font-style: normal;
  font-weight: 700;
}
.feature-strip p {
  font-size: 1.1rem;
  color: var(--color-neutral3);
  max-width: 50ch;
}

.spec-block {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: 2rem;
}
.spec-block__title {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-brand2-deep);
  margin-bottom: 1.25rem;
}
.spec-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 0.85rem 0;
  border-bottom: 1px dashed var(--color-line);
  gap: 1rem;
}
.spec-row:last-child { border-bottom: none; }
.spec-row__label {
  font-size: 0.92rem;
  color: var(--color-neutral3);
}
.spec-row__value {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-neutral2);
  letter-spacing: 0.02em;
}
.spec-row__value .unit {
  color: var(--color-brand2-deep);
  font-size: 0.9rem;
  margin-left: 0.25rem;
}

/* =========================================================
   FLEET — B2B BLOCK
   ========================================================= */
.fleet {
  background: var(--color-neutral1);
  position: relative;
}
.fleet__top {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  margin-bottom: var(--space-lg);
}
@media (max-width: 900px) {
  .fleet__top { grid-template-columns: 1fr; align-items: start; }
}
.fleet__top h2 { font-size: var(--fs-h1); margin: 0; }
.fleet__top p { color: var(--color-neutral3); font-size: 1.075rem; max-width: 52ch; margin: 0; }

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-neutral1);
}
.trust-stat {
  padding: 2rem 1.5rem;
  border-right: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  background: var(--color-white);
  text-align: left;
}
.trust-stat:last-child { border-right: none; }
@media (max-width: 700px) { .trust-stat { border-right: none; } }

.trust-stat__num {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 3vw + 1rem, 3.5rem);
  font-weight: 600;
  color: var(--color-brand1-deep);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.trust-stat__num .suffix {
  color: var(--color-brand2);
  font-size: 0.7em;
  margin-left: 0.1em;
}
.trust-stat__label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-neutral3);
  line-height: 1.3;
}

.fleet__inquiry {
  margin-top: var(--space);
  background: var(--color-neutral1);
  color: var(--color-neutral2);
  padding: clamp(2rem, 4vw, 3.5rem);
  border-radius: var(--radius-md);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-lg);
  align-items: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-line);
}
.fleet__inquiry::before {
  content: ""; position: absolute;
  top: -50%; right: -10%; width: 70%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(76, 209, 0, 0.18), transparent 65%);
  pointer-events: none;
}
@media (max-width: 800px) { .fleet__inquiry { grid-template-columns: 1fr; } }

.fleet__inquiry h3 {
  font-size: clamp(1.5rem, 2vw + 0.5rem, 2.25rem);
  color: var(--color-neutral2);
  margin-bottom: 0.5rem;
}
.fleet__inquiry h3 em {
  color: var(--color-brand2);
  font-style: normal;
  font-weight: 500;
}
.fleet__inquiry p {
  color: var(--color-neutral3);
  margin: 0;
  font-size: 1.05rem;
}
.fleet__inquiry-cta {
  display: flex; flex-direction: column; gap: 0.875rem;
  position: relative; z-index: 1;
}
.fleet__inquiry-cta .btn { width: 100%; justify-content: center; }
.fleet__inquiry-cta-phone {
  text-align: center;
  font-family: var(--font-display);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--color-neutral4);
}
.fleet__inquiry-cta-phone a {
  color: var(--color-brand2-deep);
  display: block;
  font-size: 1.5rem;
  margin-top: 0.25rem;
  letter-spacing: 0.05em;
}

/* =========================================================
   RV — PREMIUM POSITIONING
   ========================================================= */
.rv {
  background: var(--color-neutral1);
  color: var(--color-neutral2);
  position: relative;
  overflow: hidden;
}
.rv::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent 0,
      transparent 80px,
      rgba(76, 209, 0, 0.04) 80px,
      rgba(76, 209, 0, 0.04) 81px
    );
  pointer-events: none;
}
.rv__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
@media (max-width: 900px) {
  .rv__grid { grid-template-columns: 1fr; }
}

.rv__media {
  aspect-ratio: 5 / 4;
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2)),
    linear-gradient(160deg, #333333, #141414 60%, #000000);
  border: 1px solid rgba(76, 209, 0, 0.3);
  position: relative;
  overflow: hidden;
  display: grid; place-items: center;
}
.rv__media-tag {
  position: absolute; top: 1rem; left: 1rem;
  background: rgba(0, 0, 0, 0.78);
  color: var(--color-brand2-warm);
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(76, 209, 0, 0.35);
}
.rv__media svg { width: 70%; max-width: 360px; color: rgba(255, 255, 255, 0.9); }

.rv h2 {
  font-size: var(--fs-h1);
  color: var(--color-neutral2);
}
.rv h2 em {
  color: var(--color-brand2-deep);
  font-style: normal;
  font-weight: 500;
}
.rv__lede {
  font-size: 1.1rem;
  color: var(--color-neutral3);
  max-width: 50ch;
  margin-bottom: 1.5rem;
  line-height: 1.65;
}

.rv__points, .gov__points, .rv__points_dark, .gov__points_dark {
  list-style: none; padding: 0; margin: 0 0 2rem;
  display: grid; gap: 0.875rem;
}
.rv__points li {
  display: flex; gap: 0.875rem; align-items: flex-start;
  font-size: 1rem;
  color: var(--color-neutral3);
}

.gov__points li, .rv__points_dark li, .gov__points_dark li {
  display: flex; gap: 0.875rem; align-items: flex-start;
  font-size: 1rem;
  color: var(--color-neutral3);
}

.rv__points li::before, .gov__points li::before, .rv__points_dark li::before, .gov__points_dark li::before {
  content: "";
  flex: 0 0 auto;
  width: 8px; height: 8px;
  border: 2px solid var(--color-brand2);
  border-radius: 50%;
  margin-top: 0.55rem;
}

/* =========================================================
   VEHICLE TYPES — quick navigation grid
   ========================================================= */
.vehicle-types { background: var(--color-neutral1); }
.vehicle-types__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}
.vehicle-card {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  text-decoration: none;
  color: var(--color-brand1-deep);
  display: flex; flex-direction: column; align-items: flex-start; gap: 1rem;
  transition: all var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
}
.vehicle-card:hover {
  border-color: var(--color-brand2);
  transform: translateY(-3px);
  box-shadow: 0 18px 32px -16px var(--color-shadow);
  color: var(--color-brand1-deep);
}
.vehicle-card__icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: var(--color-neutral1);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  color: var(--color-brand1);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.vehicle-card:hover .vehicle-card__icon {
  background: var(--color-brand1-deep);
  color: var(--color-brand2);
}
.vehicle-card__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 2.5;
}
.vehicle-card__sub {
  font-size: 0.85rem;
  color: var(--color-neutral3);
  margin-top: -0.25rem;
  line-height: 1.2;
}
.vehicle-card__arrow {
  margin-top: auto;
  align-self: flex-end;
  color: var(--color-brand2-deep);
  transition: transform var(--dur) var(--ease);
}
.vehicle-card:hover .vehicle-card__arrow { transform: translate(4px, -4px); }


/*=========================================================
   CONTACT US
   ========================================================= */
#quote-form {}



/* =========================================================
  AREAS SERVICED
   ========================================================= */
.areas-strip {
  background: var(--color-neutral1);
  color: var(--color-neutral2);
  position: relative;
  overflow: hidden;
}

.areas-strip__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}
@media (max-width: 900px) {
  .areas-strip__grid { grid-template-columns: 1fr; }
  .areas-strip::before { display: none; }
}

.areas-strip h2 {
  font-size: var(--fs-h1);
  color: var(--color-neutral2);
  max-width: 18ch;
}
.areas-strip h2 em {
  color: var(--color-brand2-deep);
  font-style: normal;
  font-weight: 500;
}
.areas-strip p {
  font-size: 1.1rem;
  color: var(--color-neutral3);
  max-width: 50ch;
}

.spec-block {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: 2rem;
}
.spec-block__title {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-brand2-deep);
  margin-bottom: 1.25rem;
}
.spec-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 0.85rem 0;
  border-bottom: 1px dashed var(--color-line);
  gap: 1rem;
}
.spec-row:last-child { border-bottom: none; }
.spec-row__label {
  font-size: 0.92rem;
  color: var(--color-neutral3);
}
.spec-row__value {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-neutral2);
  letter-spacing: 0.02em;
}
.spec-row__value .unit {
  color: var(--color-brand2-deep);
  font-size: 0.9rem;
  margin-left: 0.25rem;
}


/* =========================================================
   WHO WE SERVE - ABOUT PAGE
   ========================================================= */
.who-types { background: var(--color-neutral1); }
.who-types__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}
.who-card {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  text-decoration: none;
  color: var(--color-brand1-deep);
  display: flex; flex-direction: column; align-items: flex-start; gap: 1rem;
  transition: all var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
}
.who-card:hover {
  border-color: var(--color-brand2);
  transform: translateY(-3px);
  box-shadow: 0 18px 32px -16px var(--color-shadow);
  color: var(--color-brand1-deep);
}
.who-card__icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: var(--color-neutral1);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  color: var(--color-brand1);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.wbo-card:hover .vehicle-card__icon {
  background: var(--color-brand1-deep);
  color: var(--color-brand2);
}
.who-card__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.2;
}
.who-card__sub {
  font-size: 0.85rem;
  color: var(--color-neutral3);
  margin-top: -0.25rem;
  line-height: 1.2;
}
.who-card__arrow {
  margin-top: auto;
  align-self: flex-end;
  color: var(--color-brand2-deep);
  transition: transform var(--dur) var(--ease);
}
.who-card:hover .who-card__arrow { transform: translate(4px, -4px); }



/* =========================================================
   FAQS ACCORDION STYLE
   ========================================================= */

  .faq__list {
    display: grid;
    gap: 0.75rem;
  }
  .faq__item {
    background: var(--color-white);
    border: 1px solid var(--color-line);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  }
  .faq__item[open] {
    border-color: var(--color-brand2);
    box-shadow: 0 10px 28px -18px var(--color-shadow);
  }
  .faq__q {
    list-style: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.15rem 1.35rem;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: none;
    color: var(--color-brand1-deep);
    line-height: 1.35;
    transition: background var(--dur-fast) var(--ease);
  }
  .faq__q::-webkit-details-marker { display: none; }
  .faq__q:hover { background: var(--color-neutral6); }
  .faq__item[open] .faq__q { background: var(--color-neutral6); }
 
  /* +/- icon, pure CSS, rotates on open */
  .faq__icon {
    position: relative;
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1.5px solid var(--color-brand2);
    transition: transform var(--dur) var(--ease), background var(--dur-fast) var(--ease);
  }
  .faq__icon::before,
  .faq__icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: var(--color-brand2-deep);
    transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
  }
  .faq__icon::before {
    width: 10px;
    height: 1.5px;
    transform: translate(-50%, -50%);
  }
  .faq__icon::after {
    width: 1.5px;
    height: 10px;
    transform: translate(-50%, -50%);
  }
  .faq__item[open] .faq__icon { transform: rotate(180deg); background: var(--color-brand2); }
  .faq__item[open] .faq__icon::after { opacity: 0; }
  .faq__item[open] .faq__icon::before { background: var(--color-brand1-deep); }
 
  .faq__a {
    padding: 0 1.35rem 1.35rem;
    color: var(--color-neutral3);
    font-size: 1rem;
    line-height: 1.65;
    border-top: 1px solid var(--color-line);
  }
  .faq__a p { margin: 1rem 0 0; }
  .faq__a p:last-child { margin-bottom: 0; }
 
  @media (max-width: 600px) {
    .faq__q { font-size: 0.98rem; padding: 1rem 1.1rem; }
    .faq__a { padding: 0 1.1rem 1.1rem; }
  }

/* =========================================================
   FLEET COLLISION SECTION
   ========================================================= */

  .fleet-collision {
    background: var(--color-neutral1);
    color: var(--color-neutral2);
    position: relative;
    overflow: hidden;
    isolation: isolate;
  }
  /* Subtle accent radial glow in the corner */
  .fleet-collision::before {
    content: "";
    position: absolute;
    top: -30%;
    right: -10%;
    width: 50%;
    aspect-ratio: 1;
    background: radial-gradient(circle, rgba(76, 209, 0, 0.10), transparent 65%);
    pointer-events: none;
    z-index: -1;
  }
 
  /* ---- Head: copy + image side by side ---- */
  .fleet-collision__head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: center;
    margin-bottom: 3rem;
  }
  @media (max-width: 800px) {
    .fleet-collision__head {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  }
 
  .fleet-collision__head-copy h2 {
    color: var(--color-neutral2);
    margin-bottom: 0.75rem;
    font-size: var(--fs-h1);
  }
  .fleet-collision__head-copy h2 em {
    color: var(--color-brand2-deep);
    font-style: normal;
  }
  .fleet-collision__head-copy p {
    color: var(--color-neutral3);
    max-width: 55ch;
    margin: 0 0 1.75rem;
  }
 
  /* Image: accent-color border on one corner, gentle hover lift */
  .fleet-collision__media {
    position: relative;
    margin: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 28px 60px -30px rgba(0, 0, 0, 0.25);
    border: 1px solid var(--color-line);
  }
  .fleet-collision__media::after {
    /* Decorative accent-color corner — bottom-left */
    content: "";
    position: absolute;
    bottom: -1px;
    left: -1px;
    width: 60px;
    height: 60px;
    border-left: 3px solid var(--color-brand2);
    border-bottom: 3px solid var(--color-brand2);
    border-bottom-left-radius: var(--radius-md);
    pointer-events: none;
  }
  .fleet-collision__media img {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center;
  }
 
  .fleet-collision__caption {
    position: absolute;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.85);
    color: rgba(255, 255, 255, 0.9);
    font-family: var(--font-display);
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 0.55rem 0.9rem;
    border-top-left-radius: var(--radius-sm);
  }
 
  /* ---- Differentiator cards (unchanged from prior version) ---- */
  .fleet-collision__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  @media (max-width: 800px) {
    .fleet-collision__grid { grid-template-columns: 1fr; }
  }
 
  .fc-card {
    background: var(--color-white);
    border: 1px solid var(--color-line);
    border-radius: var(--radius-md);
    padding: clamp(1.5rem, 2.5vw, 2rem);
    position: relative;
    transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease), background var(--dur) var(--ease);
  }
  .fc-card:hover {
    border-color: rgba(76, 209, 0, 0.5);
    background: var(--color-white);
    box-shadow: 0 18px 32px -16px var(--color-shadow);
    transform: translateY(-2px);
  }
 
  .fc-card__index {
    font-family: var(--font-display);
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    color: var(--color-brand2-deep);
    margin-bottom: 1rem;
    font-weight: 500;
  }
  .fc-card__title {
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 1.5vw + 0.5rem, 1.4rem);
    font-weight: 500;
    color: var(--color-neutral2);
    margin-bottom: 0.75rem;
    line-height: 1.25;
  }
  .fc-card__desc {
    color: var(--color-neutral3);
    font-size: 0.98rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
  }
  .fc-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid var(--color-line);
    padding-top: 1rem;
  }
  .fc-card__list li {
    color: var(--color-neutral3);
    font-size: 0.9rem;
    padding: 0.4rem 0 0.4rem 1.25rem;
    position: relative;
    line-height: 1.4;
  }
  .fc-card__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 8px;
    height: 4px;
    border-left: 1.5px solid var(--color-brand2);
    border-bottom: 1.5px solid var(--color-brand2);
    transform: rotate(-45deg);
  }
 
  /* Footer note */
  .fleet-collision__foot {
    margin-top: 2.5rem;
    padding-top: 1.75rem;
    border-top: 1px solid var(--color-line);
    text-align: center;
  }
  .fleet-collision__foot p {
    color: var(--color-neutral3);
    font-size: 1rem;
    max-width: 70ch;
    margin: 0 auto;
  }
  .fleet-collision__foot a {
    color: var(--color-brand2-deep);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    transition: color var(--dur-fast) var(--ease);
  }
  .fleet-collision__foot a:hover { color: var(--color-brand1); }

  /* =========================================================
     BEFORE / AFTER — two-photo comparison (roof-repair, and
     reusable on any service page: collision, paint, frame, etc.)
     ========================================================= */
  .before-after__pair {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
  }
  @media (max-width: 800px) {
    .before-after__pair {
      grid-template-columns: 1fr;
      gap: 1.25rem;
    }
  }

  .before-after__panel { margin: 0; }

  .before-after__frame {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    aspect-ratio: 4 / 3;
    box-shadow: 0 20px 40px -20px var(--color-shadow-lg);
  }
  .before-after__frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .before-after__tag {
    position: absolute;
    top: 0.9rem;
    left: 0.9rem;
    z-index: 2;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    color: var(--color-white);
  }
  .before-after__tag--before { background: rgba(10, 10, 10, 0.82); }
  .before-after__tag--after  { background: var(--color-brand2-deep); }

  .before-after__panel figcaption {
    margin-top: 0.85rem;
    font-size: 0.9375rem;
    color: var(--color-neutral4);
    line-height: 1.5;
  }

  .before-after__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-neutral1);
    border: 1px solid var(--color-line);
    color: var(--color-brand2-deep);
    flex-shrink: 0;
  }
  .before-after__arrow svg { width: 20px; height: 20px; }
  @media (max-width: 800px) {
    .before-after__arrow { transform: rotate(90deg); margin: 0 auto; }
  }

  /* =========================================================
     MINI MAP + "HOW FAR ARE YOU?" DISTANCE WIDGET
     Compact sidebar version of the map, meant to sit near the
     contact info instead of buried below a long form.
     ========================================================= */
  .mini-map {
    background: var(--color-white);
    border: 1px solid var(--color-line);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 18px 40px -24px var(--color-shadow);
  }
  .mini-map__frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
  }
  .mini-map__frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
  }
  .mini-map__body {
    padding: 1.1rem 1.25rem 1.35rem;
  }
  @media (min-width: 600px) {
    .mini-map__body { padding: 1.6rem 1.85rem 2rem; }
  }
  .mini-map__label {
    font-family: var(--font-display);
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-neutral3);
    font-weight: 500;
    display: block;
    margin-bottom: 0.6rem;
  }
  .mini-map__row {
    display: flex;
    gap: 0.5rem;
  }
  .mini-map__row input {
    flex: 1 1 auto;
    min-width: 0;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    padding: 0.6rem 0.75rem;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-sm);
    background: var(--color-white);
    color: var(--color-neutral2);
  }
  .mini-map__row input:focus {
    outline: none;
    border-color: var(--color-brand2);
    box-shadow: 0 0 0 3px rgba(76, 209, 0, 0.18);
  }
  .mini-map__row button {
    flex: 0 0 auto;
    font-family: var(--font-display);
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 600;
    padding: 0.6rem 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-brand1-deep);
    background: var(--color-brand1-deep);
    color: var(--color-white);
    cursor: pointer;
    transition: background var(--dur-fast) var(--ease);
  }
  .mini-map__row button:hover { background: var(--color-brand1); }
  .mini-map__row button:disabled { opacity: 0.6; cursor: default; }

  .mini-map__geo {
    display: inline-block;
    margin-top: 0.6rem;
    font-size: 0.85rem;
    color: var(--color-neutral4);
    text-decoration: underline;
    text-underline-offset: 2px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-family: var(--font-body);
  }
  .mini-map__geo:hover { color: var(--color-brand1-deep); }

  .mini-map__result {
    margin-top: 0.85rem;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--color-neutral3);
    display: none;
  }
  .mini-map__result.is-visible { display: block; }
  .mini-map__result.is-error { color: #a4392b; }
  .mini-map__result a { color: var(--color-brand2-deep); font-weight: 600; }

  /* btn--accent — reuses btn base, accent-on-dark contrast */
  .btn--accent {
    background: var(--color-brand2);
    color: var(--color-brand1-deep);
    border: 1px solid var(--color-brand2);
  }
  .btn--accent:hover {
    background: var(--color-brand2-warm);
    border-color: var(--color-brand2-warm);
    color: var(--color-brand1-deep);
  }

/* =========================================================
   FINAL CTA
   ========================================================= */
.final-cta {
  background: var(--color-neutral1);
  color: var(--color-neutral2);
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 4rem;
}
.final-cta::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(76, 209, 0, 0.14), transparent 60%),
    radial-gradient(ellipse at 50% 100%, rgba(0, 0, 0, 0.08), transparent 60%);
}
.final-cta .container { position: relative; }
.final-cta h2 {
  font-size: clamp(2rem, 4vw + 1rem, 4rem);
  color: var(--color-neutral2);
  max-width: 20ch;
  margin: 0 auto 1rem;
}
.final-cta h2 em { color: var(--color-brand1); font-style: normal; font-weight: 700; }
.final-cta p {
  font-size: 1.15rem;
  color: var(--color-neutral3);
  max-width: 50ch;
  margin: 0 auto 2rem;
}
.final-cta h3 {
    font-size: clamp(2rem, 2vw + 1rem, 2rem);
    color: var(--color-neutral2);
    max-width: 32ch;
    margin: 1rem auto 1rem;
}
.final-cta-sub {
    text-align: center;
    padding: 3rem;
    background: var(--color-brand2-warm);
}
.final-cta__row {
  display: flex; flex-wrap: wrap; gap: 0.875rem; justify-content: center;
}

/* Extra vertical breathing room on large screens — the fixed rem-based
   section padding above doesn't grow with viewport width, so this CTA
   can feel cramped relative to the wide-open space around it. */
@media (min-width: 1200px) {
  .final-cta { padding-block: 9rem; }
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--color-brand1-deep);
  color: rgba(255, 255, 255, 0.78);
  padding: var(--space-xl) 0 var(--space-sm);
  border-top: 4px solid var(--color-brand2);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand .brand__mark { height: 64px; }
.footer-brand p { font-size: 0.95rem; line-height: 1.7; max-width: 32ch; }

.footer-social {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-social li { list-style: none; }
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background var(--dur-fast) var(--ease),
              color var(--dur-fast) var(--ease),
              border-color var(--dur-fast) var(--ease),
              transform var(--dur-fast) var(--ease);
}
.footer-social a:hover,
.footer-social a:focus-visible {
  background: var(--color-brand2);
  color: var(--color-brand1-deep);
  border-color: var(--color-brand2);
  transform: translateY(-1px);
}
.footer-social svg {
  width: 18px;
  height: 18px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-brand2-warm);
  margin-bottom: 1rem;
  font-weight: 500;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.55rem; }
.footer-col a { color: rgba(255, 255, 255, 0.78); font-size: 0.95rem; }
.footer-col a:hover { color: var(--color-brand2-warm); }

.footer-contact-row {
  display: flex; align-items: center; gap: 0.625rem;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}
.footer-contact-row svg { width: 16px; height: 16px; color: var(--color-brand2); flex: 0 0 auto; }
.footer-contact-row a { color: rgba(255, 255, 255, 0.88); }

.footer-bottom {
  border-top: 1px solid var(--color-line-dark);
  padding-top: 1.25rem;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

/* =========================================================
   Mobile floating call/quote bar
   ========================================================= */
.mobile-cta-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 40;
  background: var(--color-brand1-deep);
  border-top: 1px solid rgba(76, 209, 0, 0.3);
  padding: 0.5rem;
  gap: 0.5rem;
}
.mobile-cta-bar a {
  flex: 1;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.85rem 0.75rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  min-height: 44px; /* thumb-accessible per scope */
}
.mobile-cta-bar a.call { background: var(--color-brand2); color: var(--color-brand1-deep); }
.mobile-cta-bar a.quote { background: transparent; color: var(--color-white); border: 1px solid rgba(255, 255, 255, 0.35); }

@media (max-width: 768px) {
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 64px; }
}

/* On larger phones/small tablets (still within the mobile-cta-bar's
   active range) the edge-to-edge 0.5rem padding reads as cramped —
   give it more breathing room and pull it in from the screen edges. */
@media (min-width: 480px) and (max-width: 768px) {
  .mobile-cta-bar {
    left: 0.75rem; right: 0.75rem; bottom: 0.75rem;
    padding: 0.75rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(76, 209, 0, 0.3);
    border-top: 1px solid rgba(76, 209, 0, 0.3);
    box-shadow: 0 12px 32px -12px var(--color-shadow-lg);
  }
  body { padding-bottom: 80px; }
}

/* ---------- Reveal-on-scroll utility ----------
   Sections animate up & in once they enter the viewport.
   JS toggles `.is-visible` via IntersectionObserver. */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
@media (max-width: 768px) {
.reveal { opacity: 1; transform: none; transition: none; }
}    

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute; top: -45px; left: 0;
  background: var(--color-brand2); color: var(--color-brand1-deep);
  padding: 0.5rem 1rem; font-family: var(--font-display);
  letter-spacing: 0.12em; text-transform: uppercase;
  z-index: 100;
}
.skip-link:focus { top: 0; }
/* =========================================================
   WORK GALLERY — real job-site / shop photos grid
   ========================================================= */
.work-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: var(--space-md);
}
.work-gallery__item {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 28px -18px var(--color-shadow-lg);
}
.work-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--dur-slow) var(--ease);
}
.work-gallery__item:hover img { transform: scale(1.06); }
@media (max-width: 900px) {
  .work-gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .work-gallery { grid-template-columns: 1fr 1fr; gap: 0.6rem; }
}

/* =========================================================
   SERVICE CATEGORY BANNER — used on the services page
   ========================================================= */
.svc-banner {
  width: 100%;
  aspect-ratio: 16 / 5;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-top: var(--space-md);
  box-shadow: 0 16px 32px -20px var(--color-shadow-lg);
}
@media (max-width: 700px) {
  .svc-banner { aspect-ratio: 4 / 3; }
}

/* =========================================================
   UTILITY BAR — "serving area" link + hours item
   ========================================================= */
.utility-bar__item--link {
  font-weight: 500;
}
.utility-bar__item--link .arrow-mini {
  width: 12px; height: 12px;
  transition: transform var(--dur-fast) var(--ease);
}
.utility-bar__item--link:hover .arrow-mini { transform: translateX(3px); }

/* =========================================================
   HOURS & LOCATION panel — used on the homepage and reused
   (via the same classes) inside the contact page's info card.
   ========================================================= */
.hours-location__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: stretch;
}
@media (max-width: 900px) { .hours-location__grid { grid-template-columns: 1fr; } }

.hours-panel {
  background: var(--color-brand1-deep);
  color: var(--color-white);
  border-radius: var(--radius-md);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.hours-panel::before {
  content: ""; position: absolute;
  top: -40%; right: -20%; width: 70%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(76, 209, 0, 0.18), transparent 65%);
  pointer-events: none;
}
.hours-panel > * { position: relative; z-index: 1; }
.hours-panel h3 {
  color: var(--color-white);
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.hours-row:last-of-type { border-bottom: none; }
.hours-row__label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-brand2-warm);
}
.hours-row__value {
  font-size: 1.02rem;
  text-align: right;
}
.hours-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(76, 209, 0, 0.22);
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  padding: 0.3rem 0.8rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hours-badge__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #6FCF97;
  box-shadow: 0 0 0 3px rgba(111, 207, 151, 0.25);
}
.hours-panel__address {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
}
.hours-panel__address a { color: var(--color-white); text-decoration: underline; text-underline-offset: 3px; }
.hours-panel__address a:hover { color: var(--color-brand2-warm); }
.hours-panel__cta { margin-top: 1.5rem; }

.map-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 18px 40px -24px var(--color-shadow);
  min-height: 280px;
  display: flex;
  flex-direction: column;
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: 0;
  display: block;
  flex: 1;
}

/* =========================================================
   TESTIMONIAL / REVIEW SLIDER
   ========================================================= */
.testimonials__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }

.testimonial-slider {
  position: relative;
  margin-top: var(--space-md);
}
.testimonial-slider .testimonial-track {
  display: flex;
  transition: transform var(--dur-slow) var(--ease-out);
}
.testimonial-card {
  flex: 0 0 100%;
  max-width: 100%;
  margin: 0;
  background: var(--color-neutral1);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4vw, 3rem);
  box-sizing: border-box;
}
.testimonial-card__stars {
  color: var(--color-brand2-deep);
  letter-spacing: 0.15em;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.testimonial-card__quote {
  margin: 0 0 1.5rem;
  font-size: clamp(1.05rem, 1.4vw + 0.6rem, 1.35rem);
  line-height: 1.55;
  color: var(--color-neutral2);
  font-family: var(--font-body);
  max-width: 70ch;
}
.testimonial-card__author {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.testimonial-card__name {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--color-brand1-deep);
}
.testimonial-card__meta {
  font-size: 0.85rem;
  color: var(--color-neutral4);
}
.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: var(--space-md);
}
.testimonial-arrow {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--color-line);
  background: var(--color-white);
  color: var(--color-brand1-deep);
  font-size: 1.4rem;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease);
  flex: none;
}
.testimonial-arrow:hover {
  background: var(--color-brand1-deep);
  color: var(--color-white);
  border-color: var(--color-brand1-deep);
}
.testimonial-dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.testimonial-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: var(--color-neutral5);
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease);
}
.testimonial-dot.is-active {
  background: var(--color-brand2-deep);
  width: 24px;
  border-radius: 999px;
}
.testimonials__cta {
  text-align: center;
  margin-top: var(--space-md);
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* =========================================================
   FAQ accordion (homepage)
   ========================================================= */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 880px;
}
.faq-item {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: 0;
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-neutral2);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  flex: none;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--color-neutral1);
  color: var(--color-brand1-deep);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  transition: transform var(--dur-fast) var(--ease);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  margin: 0;
  padding: 0 1.5rem 1.35rem;
  color: var(--color-neutral3);
  max-width: 70ch;
}

/* =========================================================
   SERVICE AREA page — compass grid
   ========================================================= */
.area-compass-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: var(--space-md);
}
.area-card {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  position: relative;
}
.area-card__direction {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-brand2-deep);
  background: var(--color-neutral1);
  border-radius: 999px;
  padding: 0.25rem 0.7rem;
  margin-bottom: 0.85rem;
}
.area-card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.area-card p { color: var(--color-neutral3); font-size: 0.95rem; margin-bottom: 0; }

.area-hub-card {
  background: var(--color-brand1-deep);
  color: var(--color-white);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  margin-top: var(--space-md);
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: space-between;
}
.area-hub-card p { margin: 0; color: rgba(255,255,255,0.85); max-width: 60ch; }
