/* ================================================================
   Monroe Brothers Paint & Body Shop - styles.css
   Demo by Foley Web Systems
   Plain CSS, mobile-first, no framework, no build step.
   Visual identity: "Collision Command Center"
   Deep navy base · metallic silver · red-orange & gold (from the shop logo)
   ================================================================ */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--ink);
  color: var(--silver-2);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; border-radius: 2px; }

/* ---------- Tokens (palette drawn from the shop logo) ---------- */
:root {
  --ink:        #0A1726;   /* deep navy-black base */
  --ink-2:      #0E2034;
  --ink-3:      #0B1A2B;
  --panel:      #12283E;
  --panel-2:    #173249;
  --panel-3:    #1F3E58;
  --line:       #244159;
  --line-2:     #325777;

  --silver:     #93A6BC;   /* muted */
  --silver-2:   #C2D0DE;   /* body */
  --silver-3:   #E4ECF4;   /* bright */
  --white:      #F5F9FC;

  --orange:     #E2431F;   /* logo red-orange, primary accent */
  --orange-2:   #F15A33;
  --orange-deep:#BF3413;
  --gold:       #F4B71E;   /* logo gold, secondary accent */
  --ice:        #58C2E8;   /* auto glass accent */
  --steel:      #B9C7D6;   /* mechanic accent */

  --maxw: 1200px;
  --pad: clamp(18px, 5vw, 40px);
  --radius: 4px;
  --shadow: 0 24px 60px -28px rgba(0,0,0,.85);

  --font-display: 'Archivo', system-ui, sans-serif;
  --font-mono: 'Space Mono', ui-monospace, monospace;
}

/* ---------- Layout helpers ---------- */
.wrap { width: min(var(--maxw), 100% - (var(--pad) * 2)); margin-inline: auto; }
.section { padding: clamp(56px, 9vw, 110px) 0; position: relative; }
.section-tight { padding: clamp(40px, 6vw, 72px) 0; }
.bg-ink2 { background: var(--ink-2); }
.bg-panel { background: linear-gradient(180deg, var(--ink-2), var(--ink)); }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--orange); color: #1a0a02; font-weight: 700;
  padding: 10px 16px; border-radius: var(--radius);
  transition: top .2s ease;
}
.skip-link:focus { top: 12px; }

/* ---------- Type utilities ---------- */
.kicker {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 18px;
}
.kicker::before {
  content: ""; width: 26px; height: 2px; background: var(--orange);
  display: inline-block;
}
.kicker.kicker-ice { color: var(--ice); }
.kicker.kicker-ice::before { background: var(--ice); }
.kicker.kicker-steel { color: var(--steel); }
.kicker.kicker-steel::before { background: var(--steel); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--white);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.section-head { max-width: 760px; margin-bottom: clamp(34px, 5vw, 56px); }
.section-head h2 { font-size: clamp(1.9rem, 4.6vw, 3.1rem); }
.section-head .intro { margin-top: 18px; color: var(--silver); font-size: 1.06rem; max-width: 620px; }
.center { text-align: center; margin-inline: auto; }
.center .kicker { justify-content: center; }

.dot { color: var(--gold); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .96rem;
  letter-spacing: .01em;
  padding: 15px 26px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease;
  line-height: 1;
  text-align: center;
}
.btn .ico { width: 18px; height: 18px; flex: none; }
.btn-primary {
  background: linear-gradient(180deg, var(--orange-2), var(--orange));
  color: #200c02;
  box-shadow: 0 10px 30px -12px rgba(226,67,31,.7);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 36px -12px rgba(226,67,31,.8); }
.btn-outline {
  background: transparent; color: var(--white);
  border-color: var(--line-2);
}
.btn-outline:hover { border-color: var(--orange); color: var(--white); transform: translateY(-2px); background: rgba(226,67,31,.06); }
.btn-ghost { background: var(--panel-2); color: var(--silver-3); border-color: var(--line); }
.btn-ghost:hover { background: var(--panel-3); transform: translateY(-2px); }
.btn-lg { padding: 18px 32px; font-size: 1.04rem; }
.btn-sm { padding: 11px 18px; font-size: .86rem; }
.btn-block { width: 100%; }

/* ================================================================
   DISPATCH COMMAND BAR (the signature: 3 phone lines up top)
   ================================================================ */
.dispatch {
  background: #06121F;
  border-bottom: 1px solid var(--line);
  position: relative; z-index: 60;
}
.dispatch-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}
.dispatch-line {
  background: #06121F;
  display: flex; align-items: center; gap: 12px;
  padding: 11px clamp(12px, 2vw, 22px);
  transition: background .18s ease;
  position: relative;
}
.dispatch-line:hover { background: #0C2236; }
.dispatch-ico {
  width: 34px; height: 34px; flex: none;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  color: var(--orange);
}
.dispatch-ico svg { width: 17px; height: 17px; }
.dispatch-line.is-glass .dispatch-ico { color: var(--ice); }
.dispatch-line.is-mech .dispatch-ico { color: var(--steel); }
.dispatch-meta { display: flex; flex-direction: column; line-height: 1.2; min-width: 0; }
.dispatch-label {
  font-family: var(--font-mono);
  font-size: .6rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--silver);
}
.dispatch-num {
  font-family: var(--font-mono);
  font-weight: 700; font-size: 1rem; color: var(--white);
  white-space: nowrap;
}
.dispatch-line.is-collision .dispatch-num:hover { color: var(--orange); }
.dispatch-line.is-glass .dispatch-num:hover { color: var(--ice); }
.dispatch-line.is-mech .dispatch-num:hover { color: var(--steel); }

/* ================================================================
   HEADER
   ================================================================ */
.site-header {
  position: sticky; top: 0; z-index: 70;
  background: rgba(10,23,38,.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.scrolled { box-shadow: 0 14px 40px -24px rgba(0,0,0,.9); background: rgba(7,17,30,.94); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 14px 0; }

/* Brand: the real logo seated on a clean white badge so the navy
   lettering stays legible on the dark navy UI. */
.brand { display: inline-flex; align-items: center; }
.brand-mark {
  flex: none; display: inline-flex; align-items: center;
  transition: transform .18s ease, opacity .18s ease;
}
.brand:hover .brand-mark { transform: translateY(-1px); opacity: .88; }
.brand-logo { height: 90px; width: auto; display: block; transition: height .3s ease; }
.site-header.scrolled .brand-logo { height: 60px; }
.brand-text { display: none; }
.site-footer .brand-mark { }
.site-footer .brand-logo { height: 70px; }

.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav a {
  font-family: var(--font-display); font-weight: 600; font-size: .92rem;
  color: var(--silver-2); padding: 9px 13px; border-radius: var(--radius);
  position: relative; transition: color .18s ease;
}
.site-nav a:hover { color: var(--white); }
.site-nav a.active { color: var(--white); }
.site-nav a.active::after {
  content: ""; position: absolute; left: 13px; right: 13px; bottom: 2px;
  height: 2px; background: var(--orange);
}
/* Active tab underline draws in from left to right as the page loads.
   Gated so reduced-motion users simply get the static line. */
@media (prefers-reduced-motion: no-preference) {
  .site-nav a.active::after {
    transform-origin: left center;
    animation: navUnderlineGrow .45s cubic-bezier(.22, .61, .36, 1) both;
  }
}
@keyframes navUnderlineGrow {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
.site-nav .btn { margin-left: 8px; }

.hamburger {
  display: none; background: var(--panel-2); border: 1px solid var(--line);
  width: 46px; height: 46px; border-radius: var(--radius);
  position: relative;
}
.hamburger span {
  position: absolute; left: 12px; right: 12px; height: 2px; background: var(--orange);
  transition: transform .25s ease, opacity .2s ease;
}
.hamburger span:nth-child(1) { top: 16px; }
.hamburger span:nth-child(2) { top: 22px; }
.hamburger span:nth-child(3) { top: 28px; }
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  display: none; flex-direction: column;
  position: fixed; inset: 0 0 0 auto; width: min(86vw, 360px);
  background: var(--ink-2); border-left: 1px solid var(--line);
  z-index: 90; padding: 88px 24px 28px;
  transform: translateX(100%); transition: transform .3s ease;
  overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  font-family: var(--font-display); font-weight: 600; font-size: 1.1rem;
  color: var(--silver-2); padding: 15px 4px; border-bottom: 1px solid var(--line);
}
.mobile-nav a.active { color: var(--orange); }
.mobile-nav-cta { display: grid; gap: 12px; margin-top: 22px; }
.nav-backdrop {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,.6);
  z-index: 80; opacity: 0; transition: opacity .3s ease;
}
.nav-backdrop.show { display: block; opacity: 1; }

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1100px 520px at 88% -10%, rgba(226,67,31,.16), transparent 60%),
    radial-gradient(900px 480px at 0% 110%, rgba(95,198,232,.07), transparent 55%),
    var(--ink);
}
.hero::before { /* faint blueprint grid */
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 54px 54px;
  -webkit-mask-image: radial-gradient(120% 100% at 50% 0%, #000 40%, transparent 85%);
          mask-image: radial-gradient(120% 100% at 50% 0%, #000 40%, transparent 85%);
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 4vw, 64px);
  align-items: center;
  padding: clamp(48px, 7vw, 96px) 0 clamp(56px, 7vw, 100px);
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-mono); font-size: .7rem; letter-spacing: .24em;
  text-transform: uppercase; color: var(--silver);
  border: 1px solid var(--line); border-radius: 100px; padding: 7px 14px;
  margin-bottom: 26px;
}
.hero-eyebrow .pin { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 4px rgba(226,67,31,.18); }
.hero h1 {
  font-size: clamp(2.6rem, 7vw, 5.1rem);
  font-weight: 900; line-height: .96; letter-spacing: -0.035em;
  text-transform: uppercase;
}
.hero h1 .ln { display: block; }
.hero h1 .muted { color: var(--silver); }
.hero-lead {
  margin-top: 24px; font-size: clamp(1.04rem, 1.6vw, 1.2rem);
  color: var(--silver); max-width: 520px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 34px;
  padding-top: 26px; border-top: 1px solid var(--line);
}
.hero-trust li {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--font-mono); font-size: .76rem; letter-spacing: .04em;
  color: var(--silver-2); text-transform: uppercase;
}
.hero-trust svg { width: 16px; height: 16px; color: var(--orange); flex: none; }

/* Hero media: angled frame + status badge */
.hero-media { position: relative; }
.hero-frame {
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 7% 100%, 0 86%);
  border: 1px solid var(--line-2);
  background: var(--panel);
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.hero-frame img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.02) contrast(1.03) brightness(.92); }
.hero-frame::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(160deg, transparent 40%, rgba(10,23,38,.7) 100%);
}
.hero-badge {
  position: absolute; left: -14px; bottom: 26px; z-index: 3;
  background: var(--panel-2); border: 1px solid var(--line-2);
  border-left: 3px solid var(--orange);
  padding: 14px 18px; box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 14px;
}
.hero-badge .big {
  font-family: var(--font-display); font-weight: 900; font-size: 1.7rem;
  color: var(--white); line-height: 1;
}
.hero-badge .lbl { font-family: var(--font-mono); font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; color: var(--silver); }
.hero-tag {
  position: absolute; top: 20px; right: 20px; z-index: 3;
  font-family: var(--font-mono); font-size: .62rem; letter-spacing: .18em; text-transform: uppercase;
  background: rgba(8,9,12,.78); border: 1px solid var(--line-2);
  padding: 8px 12px; color: var(--silver-3); backdrop-filter: blur(4px);
  display: inline-flex; align-items: center; gap: 8px;
}
.hero-tag .live { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 0 rgba(226,67,31,.6); animation: pulse 2.2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(226,67,31,.6);} 70% { box-shadow: 0 0 0 9px rgba(226,67,31,0);} 100% { box-shadow:0 0 0 0 rgba(226,67,31,0);} }

/* ================================================================
   SERVICE DISPATCH CARDS
   ================================================================ */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.svc-card {
  position: relative; background: var(--panel); border: 1px solid var(--line);
  padding: 32px 28px 28px; overflow: hidden;
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
  display: flex; flex-direction: column;
}
.svc-card::before { /* top accent tab */
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--orange);
}
.svc-card.is-glass::before { background: var(--ice); }
.svc-card.is-mech::before { background: var(--steel); }
.svc-card::after { /* corner number watermark */
  content: attr(data-num);
  position: absolute; right: 16px; top: 8px;
  font-family: var(--font-display); font-weight: 900; font-size: 4.4rem;
  color: rgba(255,255,255,.035); line-height: 1; pointer-events: none;
}
.svc-card:hover { transform: translateY(-6px); border-color: var(--line-2); background: var(--panel-2); }
.svc-ico {
  width: 54px; height: 54px; border: 1px solid var(--line-2); border-radius: var(--radius);
  display: grid; place-items: center; color: var(--orange); margin-bottom: 20px;
  background: var(--ink-2);
}
.svc-card.is-glass .svc-ico { color: var(--ice); }
.svc-card.is-mech .svc-ico { color: var(--steel); }
.svc-ico svg { width: 28px; height: 28px; }
.svc-card h3 { font-size: 1.42rem; margin-bottom: 12px; }
.svc-card p { color: var(--silver); font-size: .98rem; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 7px; margin: 18px 0 22px; }
.svc-tags span {
  font-family: var(--font-mono); font-size: .64rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--silver-2); background: var(--ink-2); border: 1px solid var(--line);
  padding: 5px 9px;
}
.svc-foot { margin-top: auto; display: flex; flex-direction: column; gap: 10px; }
.svc-call {
  font-family: var(--font-mono); font-weight: 700; font-size: 1rem; color: var(--white);
  display: inline-flex; align-items: center; gap: 9px;
}
.svc-call svg { width: 15px; height: 15px; color: var(--orange); }
.svc-card.is-glass .svc-call svg { color: var(--ice); }
.svc-card.is-mech .svc-call svg { color: var(--steel); }
.svc-link {
  font-family: var(--font-display); font-weight: 700; font-size: .9rem; color: var(--orange);
  display: inline-flex; align-items: center; gap: 7px;
}
.svc-card.is-glass .svc-link { color: var(--ice); }
.svc-link svg { width: 15px; height: 15px; transition: transform .2s ease; }
.svc-link:hover svg { transform: translateX(4px); }
.svc-card { cursor: pointer; }
.svc-card .svc-link,
.svc-card .svc-call { position: static; }
.svc-card .svc-link::after,
.svc-card .svc-call::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* ================================================================
   REPAIR PATH TIMELINE
   ================================================================ */
.path { position: relative; }
.path-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  position: relative;
}
.path-grid::before { /* base connector line */
  content: ""; position: absolute; top: 27px; left: 8%; right: 8%; height: 2px;
  background: var(--line);
}
.path-grid::after { /* animated fill line */
  content: ""; position: absolute; top: 27px; left: 8%; height: 2px;
  width: 0; background: linear-gradient(90deg, var(--orange), var(--orange-2));
  transition: width 1.3s ease .15s;
}
.path.drawn .path-grid::after { width: 84%; }
.path-step { position: relative; text-align: center; padding-top: 4px; }
.path-node {
  width: 54px; height: 54px; margin: 0 auto 18px; border-radius: 50%;
  background: var(--ink); border: 2px solid var(--line-2);
  display: grid; place-items: center; position: relative; z-index: 2;
  font-family: var(--font-mono); font-weight: 700; color: var(--silver);
  transition: border-color .3s ease, color .3s ease, background .3s ease;
}
.path-node svg { width: 24px; height: 24px; }
.path.drawn .path-step:nth-child(1) .path-node { border-color: var(--orange); color: var(--orange); transition-delay: .2s; }
.path.drawn .path-step:nth-child(2) .path-node { border-color: var(--orange); color: var(--orange); transition-delay: .5s; }
.path.drawn .path-step:nth-child(3) .path-node { border-color: var(--orange); color: var(--orange); transition-delay: .8s; }
.path.drawn .path-step:nth-child(4) .path-node { border-color: var(--orange); color: var(--orange); transition-delay: 1.1s; }
.path-step h3 { font-size: 1.12rem; margin-bottom: 8px; }
.path-step p { color: var(--silver); font-size: .9rem; }
.path-kx { font-family: var(--font-mono); font-size: .6rem; letter-spacing: .2em; color: var(--orange); text-transform: uppercase; display: block; margin-bottom: 6px; }

/* ================================================================
   STATS STRIP
   ================================================================ */
.stats { background: var(--ink-3); border-block: 1px solid var(--line); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.stat {
  background: var(--ink-3); padding: clamp(26px, 4vw, 42px) 22px; text-align: center;
}
.stat-num {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(2.2rem, 4.6vw, 3.3rem); color: var(--white); line-height: 1;
  letter-spacing: -0.02em;
}
.stat-num .suf { color: var(--gold); }
.stat-lbl { margin-top: 12px; font-family: var(--font-mono); font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--silver); }

/* ================================================================
   SPLIT FEATURE (why-us / content)
   ================================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 70px); align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-frame {
  position: relative; overflow: hidden; border: 1px solid var(--line-2);
  clip-path: polygon(0 0, 100% 0, 100% 92%, 93% 100%, 0 100%);
  aspect-ratio: 5 / 4;
}
.split-frame img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.04) brightness(.94); }
.split-stat {
  position: absolute; right: -10px; top: 24px; z-index: 2;
  background: var(--panel-2); border: 1px solid var(--line-2); border-top: 3px solid var(--orange);
  padding: 14px 18px; box-shadow: var(--shadow);
}
.split-stat .big { font-family: var(--font-display); font-weight: 900; font-size: 1.6rem; color: var(--white); line-height: 1; }
.split-stat .lbl { font-family: var(--font-mono); font-size: .58rem; letter-spacing: .14em; text-transform: uppercase; color: var(--silver); margin-top: 5px; }
.split-text h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
.split-text > p { color: var(--silver); margin-top: 18px; }

.feature-list { display: grid; gap: 16px; margin-top: 28px; }
.feature-list li { display: flex; gap: 15px; align-items: flex-start; }
.feature-list .fi-ico {
  width: 38px; height: 38px; flex: none; border-radius: var(--radius);
  background: var(--ink-2); border: 1px solid var(--line); display: grid; place-items: center; color: var(--orange);
}
.feature-list .fi-ico svg { width: 19px; height: 19px; }
.feature-list h4 { font-size: 1.04rem; color: var(--white); margin-bottom: 3px; }
.feature-list p { color: var(--silver); font-size: .93rem; margin: 0; }

/* ================================================================
   REVIEWS
   ================================================================ */
.rating-line { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-top: 8px; }
.stars { display: inline-flex; gap: 3px; color: var(--orange); }
.stars svg { width: 19px; height: 19px; }
.rating-meta { font-family: var(--font-mono); font-size: .8rem; color: var(--silver); letter-spacing: .04em; }

.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card {
  background: var(--panel); border: 1px solid var(--line); padding: 28px 26px;
  display: flex; flex-direction: column; position: relative;
  transition: transform .22s ease, border-color .22s ease;
}
.review-card:hover { transform: translateY(-5px); border-color: var(--line-2); }
.review-card .quote-mark {
  font-family: var(--font-display); font-weight: 900; font-size: 3.2rem; color: rgba(226,67,31,.22);
  line-height: .6; margin-bottom: 8px;
}
.review-card .stars { margin-bottom: 14px; }
.review-card p { color: var(--silver-2); font-size: .98rem; flex: 1; }
.review-by { margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--line); display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 40px; height: 40px; flex: none; border-radius: 50%;
  background: linear-gradient(150deg, var(--panel-3), var(--ink-2));
  border: 1px solid var(--line-2); display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; color: var(--silver-3);
}
.review-name { font-family: var(--font-display); font-weight: 700; color: var(--white); font-size: .98rem; }
.review-src { font-family: var(--font-mono); font-size: .64rem; letter-spacing: .1em; text-transform: uppercase; color: var(--silver); }

.reviews-cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 44px; }

/* ================================================================
   MAP / CONTACT BLOCK
   ================================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; align-items: stretch; }
.info-card {
  background: var(--panel); border: 1px solid var(--line); padding: clamp(26px, 3.5vw, 40px);
}
.info-rows { display: grid; gap: 22px; margin-top: 4px; }
.info-row { display: flex; gap: 16px; align-items: flex-start; }
.info-row .ir-ico {
  width: 42px; height: 42px; flex: none; border-radius: var(--radius);
  background: var(--ink-2); border: 1px solid var(--line); display: grid; place-items: center; color: var(--orange);
}
.info-row .ir-ico svg { width: 20px; height: 20px; }
.info-row .ir-label { font-family: var(--font-mono); font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; color: var(--silver); margin-bottom: 5px; }
.info-row a, .info-row span.val { color: var(--silver-3); font-size: 1rem; }
.info-row a:hover { color: var(--orange); }
.info-row .multi a { display: block; }
.info-row .multi .tiny { font-family: var(--font-mono); font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; color: var(--silver); }

.hours-list { display: grid; gap: 0; }
.hours-list li { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid var(--line); font-size: .95rem; }
.hours-list li:last-child { border-bottom: 0; }
.hours-list .day { color: var(--silver-2); }
.hours-list .hrs { font-family: var(--font-mono); color: var(--silver-3); font-size: .86rem; }
.hours-list .closed { color: var(--silver); }
.hours-list li.today { color: var(--white); }
.hours-list li.today .day { color: var(--orange); font-weight: 600; }

.map-frame {
  position: relative; min-height: 360px; height: 100%;
  border: 1px solid var(--line); overflow: hidden; background: var(--panel);
}
.map-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(.3) contrast(1.05); }
.map-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 12px; }

/* Facebook page feed embed (About page) */
.fb-embed { display: flex; justify-content: center; margin-top: 8px; }
.fb-embed iframe { width: 100%; max-width: 500px; border: 0; }
.fb-cta { text-align: center; margin-top: 22px; }

/* Contact page: info card + map stacked in one column. Don't let the column
   stretch to the tall form, and give the map a fixed height (the shared
   .map-frame height:100% would otherwise overflow past the section). */
.contact-grid > .form-card { align-self: start; }
.contact-side { align-self: start; }
.contact-side .map-frame { height: clamp(320px, 42vh, 460px); }

/* ================================================================
   PAGE HERO (inner pages)
   ================================================================ */
.page-hero {
  position: relative; overflow: hidden;
  padding: clamp(40px, 6vw, 78px) 0 clamp(36px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(900px 420px at 92% -20%, rgba(226,67,31,.16), transparent 60%),
    var(--ink);
}
.page-hero.has-photo { padding: clamp(56px, 8vw, 120px) 0 clamp(44px, 6vw, 80px); }
.page-hero-bg { position: absolute; inset: 0; z-index: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.34) contrast(1.05) saturate(.9); }
.page-hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,23,38,.95) 10%, rgba(10,23,38,.55) 60%, rgba(10,23,38,.85)); }
.page-hero .wrap { position: relative; z-index: 2; }
.crumbs { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .1em; color: var(--silver); margin-bottom: 18px; text-transform: uppercase; }
.crumbs a:hover { color: var(--orange); }
.crumbs .sep { color: var(--line-2); margin: 0 8px; }
.page-hero h1 { font-size: clamp(2.2rem, 5.6vw, 3.9rem); text-transform: uppercase; letter-spacing: -0.03em; }
.page-hero .lead { margin-top: 18px; color: var(--silver); font-size: 1.1rem; max-width: 600px; }
.page-hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 28px; }

/* ================================================================
   SERVICE DETAIL CONTENT
   ================================================================ */
.spec-list { display: grid; grid-template-columns: 1fr 1fr; gap: 13px 24px; margin-top: 26px; }
.spec-list li {
  display: flex; gap: 12px; align-items: flex-start; color: var(--silver-2); font-size: .98rem;
  padding: 13px 16px; background: var(--panel); border: 1px solid var(--line);
}
.spec-list li svg { width: 18px; height: 18px; flex: none; color: var(--orange); margin-top: 3px; }
.spec-list.ice li svg { color: var(--ice); }

.callout {
  background: linear-gradient(120deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line-2); border-left: 3px solid var(--orange);
  padding: clamp(24px, 3vw, 34px); display: flex; flex-wrap: wrap; gap: 20px;
  align-items: center; justify-content: space-between;
}
.callout.ice { border-left-color: var(--ice); }
.callout-text h3 { font-size: 1.4rem; margin-bottom: 6px; }
.callout-text p { color: var(--silver); margin: 0; }
.callout-num {
  font-family: var(--font-mono); font-weight: 700; font-size: 1.5rem; color: var(--white);
  display: inline-flex; align-items: center; gap: 12px; white-space: nowrap;
}
.callout-num svg { width: 22px; height: 22px; color: var(--orange); }
.callout.ice .callout-num svg { color: var(--ice); }

.proc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.proc-card { background: var(--panel); border: 1px solid var(--line); padding: 28px 24px; }
.proc-card .num { font-family: var(--font-mono); font-size: .78rem; letter-spacing: .14em; color: var(--orange); }
.proc-card h3 { font-size: 1.18rem; margin: 14px 0 9px; }
.proc-card p { color: var(--silver); font-size: .95rem; }

.media-band { position: relative; overflow: hidden; }
.media-band-img { position: absolute; inset: 0; z-index: 0; }
.media-band-img img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.3) saturate(.95); }
.media-band-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, var(--ink), rgba(10,23,38,.65), var(--ink)); }
.media-band .wrap { position: relative; z-index: 2; }

/* ================================================================
   ABOUT
   ================================================================ */
.about-team-figure { margin-top: 8px; }
.about-team-figure .frame { position: relative; overflow: hidden; border: 1px solid var(--line-2); clip-path: polygon(0 0, 100% 0, 100% 100%, 4% 100%, 0 94%); }
.about-team-figure img { width: 100%; height: clamp(280px, 42vw, 520px); object-fit: cover; filter: brightness(.92) contrast(1.03); }
.about-team-figure figcaption {
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: .1em; color: var(--silver);
  margin-top: 14px; display: flex; align-items: center; gap: 9px;
}
.about-team-figure figcaption svg { width: 15px; height: 15px; color: var(--orange); flex: none; }

.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.value-card { background: var(--panel); border: 1px solid var(--line); padding: 28px 26px; }
.value-card .v-ico { width: 46px; height: 46px; border: 1px solid var(--line-2); border-radius: var(--radius); display: grid; place-items: center; color: var(--orange); margin-bottom: 18px; background: var(--ink-2); }
.value-card .v-ico svg { width: 24px; height: 24px; }
.value-card h3 { font-size: 1.18rem; margin-bottom: 9px; }
.value-card p { color: var(--silver); font-size: .95rem; }

/* ================================================================
   CONTACT FORM
   ================================================================ */
.form-card { background: var(--panel); border: 1px solid var(--line); padding: clamp(26px, 3.5vw, 42px); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.field label { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--silver-2); }
.field label .req { color: var(--orange); }
.field input, .field textarea {
  background: var(--ink-2); border: 1px solid var(--line); color: var(--white);
  padding: 13px 15px; border-radius: var(--radius); font: inherit; font-size: .98rem;
  transition: border-color .18s ease, background .18s ease;
}
.field input::placeholder, .field textarea::placeholder { color: #5C7187; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--orange); background: #0D2236; }
.field textarea { resize: vertical; min-height: 130px; }
.field.invalid input, .field.invalid textarea { border-color: var(--orange-deep); }
.field-error { color: var(--orange-2); font-size: .8rem; font-family: var(--font-mono); display: none; }
.field.invalid .field-error { display: block; }

/* honeypot - hidden from real users */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.human-check { display: flex; align-items: flex-start; gap: 12px; margin: 4px 0 22px; }
.human-check input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--orange); flex: none; }
.human-check label { font-size: .92rem; color: var(--silver-2); }

.form-note { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .04em; color: var(--silver); margin-top: 16px; line-height: 1.6; }

.form-error {
  margin-top: 16px; padding: 14px 16px; border-radius: 8px;
  background: rgba(226,67,31,.10); border: 1px solid var(--orange);
  color: var(--silver-2); font-size: .92rem; line-height: 1.6;
}
.form-error[hidden] { display: none; }
.form-error a { color: var(--orange); font-weight: 700; }

.form-success {
  display: none; text-align: center; padding: 44px 24px;
}
.form-success.show { display: block; }
.form-success .check {
  width: 64px; height: 64px; margin: 0 auto 22px; border-radius: 50%;
  background: rgba(226,67,31,.12); border: 1px solid var(--orange); display: grid; place-items: center; color: var(--orange);
}
.form-success .check svg { width: 32px; height: 32px; }
.form-success h3 { font-size: 1.6rem; margin-bottom: 12px; }
.form-success p { color: var(--silver); max-width: 420px; margin: 0 auto; }

/* ================================================================
   FINAL CTA
   ================================================================ */
.final-cta { position: relative; overflow: hidden; text-align: center; }
.final-cta::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(800px 360px at 50% 0%, rgba(226,67,31,.18), transparent 60%);
}
.final-cta .wrap { position: relative; z-index: 2; }
.final-cta h2 { font-size: clamp(2rem, 5vw, 3.2rem); text-transform: uppercase; max-width: 800px; margin-inline: auto; }
.final-cta p { color: var(--silver); margin: 18px auto 32px; max-width: 540px; }
.final-cta .hero-actions { justify-content: center; }

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer { background: #06121F; border-top: 1px solid var(--line); padding: clamp(48px, 6vw, 80px) 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 36px; }
.footer-brand .brand { margin-bottom: 18px; }
.footer-brand p { color: var(--silver); font-size: .92rem; max-width: 320px; }
.footer-col h4 { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--silver-3); margin-bottom: 18px; }
.footer-links { display: grid; gap: 11px; }
.footer-links a, .footer-links span { color: var(--silver); font-size: .92rem; }
.footer-links a:hover { color: var(--orange); }
.footer-phone { font-family: var(--font-mono); }
.footer-phone .tiny { display: block; font-size: .58rem; letter-spacing: .14em; text-transform: uppercase; color: #5C7187; margin-bottom: 2px; }
.footer-bottom { border-top: 1px solid var(--line); margin-top: clamp(36px, 5vw, 56px); padding: 22px 0; display: flex; flex-wrap: wrap; gap: 10px 20px; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: .82rem; color: var(--silver); }

/* ================================================================
   STICKY MOBILE CTA
   ================================================================ */
.mobile-cta {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 75;
  background: #081421;
  border-top: 1px solid var(--line); box-shadow: 0 -10px 30px -16px rgba(0,0,0,.9);
  /* Keep the bar as ONE solid, composited layer. The divider is a real border
     (not a 1px gap over a light background) and the bar's own background is the
     same dark color as the buttons, so even if iOS skips a repaint frame during
     momentum scroll there is nothing lighter underneath to flash through. */
  -webkit-transform: translateZ(0); transform: translateZ(0);
  will-change: transform;
}
.mobile-cta a,
.mobile-cta button {
  flex: 1; background: #081421; display: flex; align-items: center; justify-content: center; gap: 9px;
  padding: 15px; font-family: var(--font-display); font-weight: 700; font-size: .92rem; color: var(--white);
  border: 0; cursor: pointer;
}
.mobile-cta .cta-dir { border-left: 1px solid var(--line); }
.mobile-cta a svg,
.mobile-cta button svg { width: 18px; height: 18px; }
.mobile-cta .cta-call { color: var(--orange); }
.mobile-cta .cta-dir { color: var(--silver-3); }

/* ================================================================
   ANIMATIONS (reveal)
   ================================================================ */
.anim .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.anim .reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .anim .reveal { opacity: 1; transform: none; }
  .path-grid::after { transition: none; }
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1000px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-media { max-width: 460px; margin-top: 8px; }
  .svc-grid { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .path-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 20px; }
  .path-grid::before, .path-grid::after { display: none; }
  .proc-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 860px) {
  .site-nav { display: none; }
  .hamburger { display: block; }
  .mobile-nav { display: flex; }
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .spec-list { grid-template-columns: 1fr; }
  .dispatch-inner { grid-template-columns: 1fr; gap: 1px; }
  .dispatch-label { font-size: .58rem; }
}
@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .stats-grid { grid-template-columns: 1fr; }
  .path-grid { grid-template-columns: 1fr; }
  .callout { flex-direction: column; align-items: flex-start; }
  .reviews-cta .btn, .page-hero-actions .btn, .hero-actions .btn { width: 100%; }
  .hero-badge { left: 0; }
}

@media (min-width: 861px) {
  .dispatch { position: sticky; top: 0; z-index: 71; }
  .site-header { top: 57px; }
}

/* ================================================================
   CALL CHOOSER MODAL
   ================================================================ */
.call-modal {
  position: fixed; inset: 0; z-index: 300;
  display: flex; align-items: flex-end; justify-content: center;
  pointer-events: none;
}
.call-modal[aria-hidden="false"] { pointer-events: auto; }
.call-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.65);
  opacity: 0; transition: opacity .25s ease;
}
.call-modal[aria-hidden="false"] .call-modal-backdrop { opacity: 1; }
.call-modal-sheet {
  position: relative; z-index: 1;
  background: var(--panel-2);
  border-radius: 20px 20px 0 0;
  padding: 20px 20px 32px;
  width: 100%; max-width: 520px;
  transform: translateY(100%);
  transition: transform .32s cubic-bezier(.32,1,.4,1);
  box-shadow: 0 -20px 60px -10px rgba(0,0,0,.7);
}
.call-modal[aria-hidden="false"] .call-modal-sheet { transform: translateY(0); }
@media (min-width: 560px) {
  .call-modal { align-items: center; }
  .call-modal-sheet {
    border-radius: 16px;
    max-width: 440px;
    transform: translateY(12px) scale(.97);
    opacity: 0;
    transition: transform .25s ease, opacity .25s ease;
  }
  .call-modal[aria-hidden="false"] .call-modal-sheet {
    transform: none; opacity: 1;
  }
}
.call-modal-handle {
  width: 40px; height: 4px; border-radius: 2px;
  background: var(--line-2); margin: 0 auto 18px;
}
@media (min-width: 560px) { .call-modal-handle { display: none; } }
.call-modal-title {
  font-family: var(--font-display); font-weight: 800;
  font-size: 1.1rem; color: var(--white);
  text-align: center; margin-bottom: 18px;
}
.call-opts { display: flex; flex-direction: column; gap: 10px; margin-bottom: 14px; }
.call-opt {
  display: flex; align-items: center; gap: 14px;
  background: var(--ink-2); border: 1px solid var(--line);
  border-radius: 12px; padding: 14px 16px;
  text-decoration: none; color: inherit;
  transition: background .15s ease, border-color .15s ease, transform .12s ease;
}
.call-opt:hover { background: var(--panel-3); transform: translateY(-1px); }
.call-opt:active { transform: none; }
.call-opt.is-collision { border-color: rgba(226,67,31,.3); }
.call-opt.is-glass    { border-color: rgba(88,194,232,.25); }
.call-opt.is-mech     { border-color: rgba(185,199,214,.2); }
.call-opt-ico {
  width: 42px; height: 42px; flex: none;
  display: grid; place-items: center; border-radius: 50%;
  border: 1px solid currentColor;
}
.call-opt-ico svg { width: 19px; height: 19px; }
.call-opt.is-collision .call-opt-ico { color: var(--orange); }
.call-opt.is-glass    .call-opt-ico { color: var(--ice); }
.call-opt.is-mech     .call-opt-ico { color: var(--steel); }
.call-opt-body { display: flex; flex-direction: column; gap: 1px; }
.call-opt-service {
  font-family: var(--font-mono); font-size: .62rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--silver);
}
.call-opt-num {
  font-family: var(--font-mono); font-size: 1.05rem;
  font-weight: 700; letter-spacing: .03em;
}
.call-opt.is-collision .call-opt-num { color: var(--orange-2); }
.call-opt.is-glass    .call-opt-num { color: var(--ice); }
.call-opt.is-mech     .call-opt-num { color: var(--steel); }
.call-opt-desc { font-size: .78rem; color: var(--silver); margin-top: 2px; }
.call-modal-cancel {
  width: 100%; padding: 13px; border-radius: 10px;
  background: transparent; border: 1px solid var(--line);
  color: var(--silver); font-family: var(--font-body); font-size: .9rem;
  cursor: pointer; transition: background .15s ease, color .15s ease;
}
.call-modal-cancel:hover { background: var(--ink-2); color: var(--white); }
