/* ═══════════════════════════════════════════════════════════════════
   KEY LARGO COLLISION CENTER — Auto Body & Collision Repair
   Brand system: yellow + red on black, Anton (display) + Inter (body)
   Inspired by their actual business card (yellow text, red sports cars)
   ═══════════════════════════════════════════════════════════════════ */

:root {
  --bg-0: #0a0a0a;
  --bg-1: #131313;
  --bg-2: #1a1a1a;
  --bg-light: #f6f6f4;
  --bg-card: #ffffff;

  /* Primary accent: their logo yellow */
  --yellow: #FFD60A;
  --yellow-hover: #ffe04a;
  --yellow-deep: #c9a800;
  --yellow-glow: rgba(255, 214, 10, 0.28);

  /* Secondary accent: their car-illustration red */
  --red: #E11D2E;
  --red-hover: #f23645;
  --red-deep: #a81421;
  --red-glow: rgba(225, 29, 46, 0.28);

  --text-hi: #ffffff;
  --text: #e8e8e8;
  --text-mute: #9a9a9a;
  --text-dark: #111111;
  --text-dark-mute: #555555;

  --border-dark: rgba(255, 214, 10, 0.22);
  --border-hairline: rgba(255, 255, 255, 0.08);
  --border-light: rgba(0, 0, 0, 0.08);

  --font-display: 'Anton', 'Bebas Neue', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 12px 44px rgba(0, 0, 0, 0.45);
  --shadow-glow: 0 0 0 1px var(--border-dark), 0 22px 56px -12px var(--yellow-glow);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body); color: var(--text-dark);
  background: var(--bg-light); overflow-x: hidden;
}

/* ─── Utilities ────────────────────────────────────────────── */

.container { max-width: 1240px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 6rem 0; position: relative; }
.section-alt { background: #ffffff; }
.section-dark { background: var(--bg-0); color: var(--text); }
.section-dark::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(900px 320px at 18% 0%, rgba(255, 214, 10, 0.07), transparent 60%),
    radial-gradient(700px 280px at 90% 100%, rgba(225, 29, 46, 0.08), transparent 60%);
}
.section-dark > * { position: relative; z-index: 1; }

.label {
  display: inline-block; font-size: 0.72rem; font-weight: 700;
  color: var(--yellow-deep); text-transform: uppercase;
  letter-spacing: 0.26em; margin-bottom: 0.9rem;
  font-family: var(--font-body);
}
.label.light { color: var(--yellow); }

.heading {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: var(--text-dark); margin-bottom: 2.5rem; line-height: 1.0;
  letter-spacing: 0.005em; text-transform: uppercase;
}
.heading.light { color: var(--text-hi); }
.heading em { font-style: normal; color: var(--red); }
.section-dark .heading em { color: var(--yellow); }

.section-sub {
  font-size: 1.05rem; color: var(--text-dark-mute);
  max-width: 660px; margin: -1.5rem 0 2.5rem; line-height: 1.6;
}
.section-dark .section-sub { color: var(--text-mute); }

.section-lead {
  font-size: 1.1rem; color: var(--text); line-height: 1.75;
  max-width: 820px; margin: -1.5rem 0 3rem; font-weight: 400;
}
.section-lead::before {
  content: ''; display: block; width: 44px; height: 3px;
  background: var(--yellow); margin-bottom: 1.25rem;
}

/* ─── Fade-in ────────────────────────────────────────────── */

.fade-in {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; transition: none; }
  .scroll-indicator .scroll-line::after { animation: none; }
}

/* ─── Header ──────────────────────────────────────────────── */

.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.25rem 2rem;
  transition: background 0.3s, padding 0.3s, backdrop-filter 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(10, 10, 10, 0.82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  padding: 0.8rem 2rem;
  border-bottom-color: var(--border-hairline);
}
.site-header nav {
  display: flex; align-items: center; gap: 2rem;
  max-width: 1400px; margin: 0 auto;
}
.nav-logo {
  display: inline-flex; align-items: center; gap: 0.7rem;
  color: var(--yellow); text-decoration: none; white-space: nowrap;
  margin-right: auto;
}
.nav-logo-mark { height: 26px; width: auto; color: var(--red); flex-shrink: 0; }
.nav-logo-text {
  font-family: var(--font-display); font-size: 1.15rem; line-height: 1;
  display: flex; flex-direction: column; gap: 2px;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.nav-logo-text .brand-key { font-weight: 400; color: var(--yellow); font-size: 0.78rem; letter-spacing: 0.18em; }
.nav-logo-text .brand-collision { font-weight: 400; color: var(--text-hi); font-size: 1rem; letter-spacing: 0.05em; }

.nav-links { display: flex; gap: 1.85rem; align-items: center; }
.nav-links a {
  font-size: 0.78rem; font-weight: 600; color: rgba(255, 255, 255, 0.78);
  text-decoration: none; text-transform: uppercase; letter-spacing: 0.1em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--yellow); }

.nav-phone {
  font-size: 0.85rem; font-weight: 600; color: var(--text-hi);
  text-decoration: none; letter-spacing: 0.02em; white-space: nowrap;
  transition: color 0.2s;
}
.nav-phone:hover { color: var(--yellow); }

.nav-cta {
  background: var(--red); color: var(--text-hi);
  padding: 0.7rem 1.5rem; border-radius: 4px; font-weight: 700;
  font-size: 0.78rem; text-decoration: none; text-transform: uppercase;
  letter-spacing: 0.1em; transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  white-space: nowrap; box-shadow: 0 4px 18px var(--red-glow);
  border: 1px solid var(--red);
}
.nav-cta:hover { background: var(--red-hover); transform: translateY(-1px); box-shadow: 0 6px 26px var(--red-glow); }

/* Hamburger */
.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  padding: 6px; z-index: 200;
}
.hamburger span {
  display: block; width: 24px; height: 2px; background: var(--yellow);
  margin: 5px 0; transition: transform 0.3s, opacity 0.3s; border-radius: 2px;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu Overlay */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 150;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 1.75rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display); font-weight: 400; font-size: 1.8rem;
  color: var(--text-hi); text-decoration: none; transition: color 0.2s;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.mobile-menu a:hover { color: var(--yellow); }
.mobile-phone {
  color: var(--yellow) !important; font-family: var(--font-body) !important;
  font-size: 1.15rem !important; font-weight: 600; letter-spacing: 0.04em;
  text-transform: none !important;
}

/* ─── Hero ────────────────────────────────────────────────── */

.hero {
  position: relative; width: 100%; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: var(--bg-0);
  padding-top: 80px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(1100px 600px at 20% 30%, rgba(255, 214, 10, 0.12), transparent 60%),
    radial-gradient(900px 500px at 85% 70%, rgba(225, 29, 46, 0.16), transparent 60%),
    linear-gradient(180deg, #0a0a0a 0%, #131313 100%);
}
.hero-grid {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 214, 10, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 214, 10, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 30%, transparent 80%);
}
.hero-content {
  position: relative; z-index: 2; text-align: center;
  padding: 0 1.5rem 5rem; max-width: 960px;
}
.hero-label {
  display: inline-block; font-size: 0.72rem; font-weight: 700;
  color: var(--yellow); text-transform: uppercase;
  letter-spacing: 0.34em; margin-bottom: 1.2rem;
  padding: 0.45rem 1rem; border: 1px solid var(--border-dark);
  border-radius: 999px; background: rgba(255, 214, 10, 0.06);
  backdrop-filter: blur(4px);
}
.hero-heading {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(3rem, 9vw, 7rem);
  color: var(--text-hi); line-height: 0.92; margin-bottom: 1.25rem;
  letter-spacing: 0.005em; text-transform: uppercase;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.55);
}
.hero-heading em {
  font-style: normal; color: var(--yellow);
  text-shadow: 0 0 30px rgba(255, 214, 10, 0.4);
}
.hero-tagline {
  font-size: clamp(0.85rem, 1.3vw, 1rem);
  color: rgba(255, 255, 255, 0.78); letter-spacing: 0.18em;
  text-transform: uppercase; margin-bottom: 1.6rem; font-weight: 500;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.55rem 1.1rem; margin-bottom: 2rem;
  background: rgba(0, 0, 0, 0.55); border: 1px solid var(--border-dark);
  border-radius: 999px; backdrop-filter: blur(6px);
}
.hero-badge-star { color: var(--yellow); letter-spacing: 0.08em; font-size: 0.85rem; }
.hero-badge-text { color: var(--text-hi); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em; }

.hero-ctas { display: flex; gap: 0.9rem; justify-content: center; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 1rem 2rem; background: var(--red); color: var(--text-hi);
  text-decoration: none; font-weight: 700; font-size: 0.82rem;
  text-transform: uppercase; letter-spacing: 0.12em;
  border-radius: 4px; border: 1px solid var(--red);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 30px var(--red-glow);
}
.btn-primary:hover { background: var(--red-hover); transform: translateY(-2px); box-shadow: 0 12px 40px var(--red-glow); }

.btn-secondary {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 1rem 2rem; background: rgba(0, 0, 0, 0.4); color: var(--yellow);
  text-decoration: none; font-weight: 700; font-size: 0.82rem;
  text-transform: uppercase; letter-spacing: 0.12em; border-radius: 4px;
  border: 1px solid var(--yellow);
  transition: border-color 0.2s, transform 0.2s, color 0.2s, background 0.2s;
}
.btn-secondary:hover { background: var(--yellow); color: #0a0a0a; transform: translateY(-2px); }

/* Scroll Indicator */
.scroll-indicator {
  position: absolute; bottom: 1.75rem; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
}
.scroll-indicator span {
  font-size: 0.6rem; color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase; letter-spacing: 0.22em; font-weight: 600;
}
.scroll-line {
  width: 1px; height: 44px; background: rgba(255, 255, 255, 0.18);
  position: relative; overflow: hidden;
}
.scroll-line::after {
  content: ''; position: absolute; top: -100%; left: 0;
  width: 100%; height: 100%; background: var(--yellow);
  animation: scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollPulse {
  0% { top: -100%; } 50% { top: 100%; } 100% { top: 100%; }
}

/* ─── Stats Bar ───────────────────────────────────────────── */

.stats-bar {
  background: var(--bg-0); padding: 2.75rem 1.5rem;
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}
.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem; text-align: center;
}
.stat-item { padding: 0.5rem; }
.stat-val {
  display: block; font-family: var(--font-display); font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.2rem); color: var(--yellow);
  letter-spacing: 0.005em; line-height: 1; text-transform: uppercase;
}
.stat-lbl {
  font-size: 0.72rem; color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase; letter-spacing: 0.12em; margin-top: 0.6rem;
  display: block; font-weight: 600;
}

/* ─── About ───────────────────────────────────────────────── */

.about-grid {
  display: grid; grid-template-columns: 1.55fr 1fr;
  gap: 4rem; align-items: start;
}
.about-text p {
  font-size: 1.02rem; line-height: 1.8; color: var(--text-dark-mute);
  margin-bottom: 1.25rem;
}
.about-text p strong { color: var(--text-dark); }
.about-note {
  margin-top: 0.5rem; padding: 1rem 1.25rem; background: #fdf7d8;
  border-left: 3px solid var(--yellow-deep); border-radius: 8px;
  font-size: 0.95rem !important; color: var(--text-dark) !important;
}

.info-card {
  background: linear-gradient(160deg, #131313 0%, #0a0a0a 100%);
  border: 1px solid var(--border-dark); border-radius: var(--radius-lg);
  padding: 2.25rem; text-align: center;
  box-shadow: var(--shadow-glow); position: relative; overflow: hidden;
}
.info-card::before {
  content: ''; position: absolute; inset: -2px;
  background: conic-gradient(from 0deg, transparent 0deg, var(--yellow) 100deg, transparent 200deg);
  opacity: 0.16; z-index: 0; pointer-events: none;
}
.info-frame { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 0.6rem; }
.info-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; color: var(--yellow);
  background: rgba(255, 214, 10, 0.1); border-radius: 50%;
  border: 1px solid var(--border-dark); margin-bottom: 0.5rem;
}
.info-icon svg { width: 26px; height: 26px; }
.info-title {
  font-family: var(--font-display); font-weight: 400;
  font-size: 1.5rem; color: var(--text-hi); letter-spacing: 0.02em;
  text-transform: uppercase;
}
.info-sub {
  font-size: 0.92rem; color: var(--text-mute); line-height: 1.55;
  max-width: 280px; margin-bottom: 0.75rem;
}
.info-list {
  list-style: none; display: flex; flex-wrap: wrap; gap: 0.4rem; justify-content: center;
}
.info-list li {
  font-size: 0.74rem; font-weight: 600; color: var(--yellow);
  padding: 0.35rem 0.7rem; background: rgba(255, 214, 10, 0.08);
  border: 1px solid var(--border-dark); border-radius: 999px;
  letter-spacing: 0.02em;
}

/* ─── Services ────────────────────────────────────────────── */

.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}

.card {
  padding: 1.85rem; background: var(--bg-card);
  border: 1px solid var(--border-light); border-radius: var(--radius);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex; flex-direction: column; gap: 0.25rem;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.10);
  border-color: var(--red);
}
.card-icon {
  width: 48px; height: 48px; color: var(--red);
  background: #fff5f5; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.card-icon svg { width: 24px; height: 24px; }
.card h3 {
  font-family: var(--font-display); font-weight: 400;
  font-size: 1.4rem; color: var(--text-dark); margin-bottom: 0.45rem;
  letter-spacing: 0.02em; text-transform: uppercase;
}
.card p {
  font-size: 0.92rem; color: var(--text-dark-mute);
  line-height: 1.55; margin-bottom: 0.9rem;
}
.card-list {
  list-style: none; display: flex; flex-wrap: wrap; gap: 0.4rem;
  margin-top: auto;
}
.card-list li {
  font-size: 0.76rem; font-weight: 500; color: var(--text-dark);
  padding: 0.35rem 0.75rem; background: #f2f2ef; border-radius: 999px;
  letter-spacing: 0.02em;
}

/* CTA card variant */
.card-cta {
  background: var(--bg-0); color: var(--text); border-color: var(--border-dark);
  position: relative; overflow: hidden;
}
.card-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(80% 80% at 0% 0%, rgba(255, 214, 10, 0.14), transparent 60%);
  pointer-events: none;
}
.card-cta * { position: relative; z-index: 1; }
.card-cta:hover { border-color: var(--yellow); box-shadow: 0 20px 60px rgba(255, 214, 10, 0.18); }
.card-cta .card-icon { color: var(--yellow); background: rgba(255, 214, 10, 0.12); }
.card-cta h3 { color: var(--text-hi); }
.card-cta p { color: var(--text-mute); }
.card-cta-link {
  display: inline-block; color: var(--yellow); text-decoration: none;
  font-size: 0.85rem; font-weight: 700; letter-spacing: 0.04em; margin-top: auto;
}
.card-cta-link:hover { color: var(--yellow-hover); }

/* ─── Why Us (Pillars) ───────────────────────────────────── */

.pillars-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2.25rem; }
.pillar { padding: 0; }
.pillar-num {
  font-family: var(--font-display); font-weight: 400;
  font-size: 3.2rem; color: var(--red);
  margin-bottom: 0.75rem; line-height: 1; letter-spacing: 0.005em;
  text-shadow: 0 0 30px rgba(225, 29, 46, 0.3);
}
.pillar h3 {
  font-family: var(--font-display); font-weight: 400;
  font-size: 1.4rem; color: var(--text-hi); margin-bottom: 0.65rem;
  letter-spacing: 0.02em; text-transform: uppercase;
}
.pillar p { font-size: 0.94rem; color: var(--text-mute); line-height: 1.7; }

/* ─── Service Area ────────────────────────────────────────── */

.service-area-content { text-align: center; max-width: 900px; margin: 0 auto; }
.service-area-sub {
  font-size: 1rem; color: var(--text-dark-mute); margin: -1.5rem 0 2.5rem;
}
.area-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem; }
.area-tag {
  display: inline-block; padding: 0.65rem 1.15rem;
  background: #ffffff; color: var(--text-dark);
  border: 1px solid var(--border-light);
  border-radius: 999px; font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.02em;
}
.area-tag.is-home {
  background: #0a0a0a; color: var(--yellow); border-color: var(--yellow);
  box-shadow: 0 0 0 1px var(--yellow) inset, 0 6px 24px var(--yellow-glow);
}

/* ─── FAQ accordion ─────────────────────────────────────── */

.faq-container { max-width: 820px; }
.faq-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  background: var(--bg-1); border: 1px solid var(--border-dark);
  border-radius: var(--radius); overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.faq-item[open] {
  border-color: var(--yellow); box-shadow: 0 0 0 1px var(--yellow) inset;
}
.faq-q {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.1rem 1.25rem;
  font-family: var(--font-display); font-weight: 400;
  font-size: 1.15rem; color: var(--text); user-select: none;
  transition: color 0.2s ease; letter-spacing: 0.02em; text-transform: uppercase;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q:hover { color: var(--yellow); }
.faq-item[open] .faq-q { color: var(--yellow); }
.faq-icon {
  flex: 0 0 20px; width: 20px; height: 20px; position: relative;
  transition: transform 0.25s ease;
}
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute; background: currentColor;
  border-radius: 2px; top: 50%; left: 50%;
}
.faq-icon::before { width: 14px; height: 2px; transform: translate(-50%, -50%); }
.faq-icon::after { width: 2px; height: 14px; transform: translate(-50%, -50%); transition: transform 0.25s ease, opacity 0.25s ease; }
.faq-item[open] .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-a {
  padding: 0 1.25rem 1.2rem; color: var(--text-mute);
  font-size: 0.97rem; line-height: 1.65; animation: faqSlide 0.28s ease;
}
.faq-a p { margin: 0; }
.faq-a a { color: var(--yellow); text-decoration: none; border-bottom: 1px solid var(--yellow-deep); }
.faq-a a:hover { color: var(--yellow-hover); border-color: var(--yellow); }
@keyframes faqSlide { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: translateY(0); } }

/* ─── Reviews (empty state) ──────────────────────────────── */

.reviews-empty {
  max-width: 640px; margin: 0 auto; text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(160deg, #fafaf7 0%, #f2f2ef 100%);
  border: 1px dashed rgba(0, 0, 0, 0.12); border-radius: var(--radius-lg);
}
.reviews-empty-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 64px; height: 64px; margin: 0 auto 1.25rem;
  border-radius: 50%; color: var(--yellow-deep);
  background: #fdf7d8; border: 1px solid rgba(201, 168, 0, 0.2);
}
.reviews-empty-mark svg { width: 32px; height: 32px; }
.reviews-empty-title {
  font-family: var(--font-display); font-weight: 400;
  font-size: 1.7rem; letter-spacing: 0.02em; text-transform: uppercase;
  color: var(--text-dark); margin-bottom: 0.65rem;
}
.reviews-empty-body {
  font-size: 0.98rem; color: var(--text-dark-mute); line-height: 1.6;
  max-width: 480px; margin: 0 auto 1.75rem;
}
.reviews-empty-ctas {
  display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap;
}

/* ─── Contact ───────────────────────────────────────────── */

.contact-split {
  display: grid; grid-template-columns: 1.15fr 1fr;
  gap: 3rem; align-items: start;
}

.quote-form {
  display: flex; flex-direction: column; gap: 1rem;
  padding: 2rem;
  background: linear-gradient(160deg, #131313 0%, #0a0a0a 100%);
  border: 1px solid var(--border-dark); border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-label {
  font-size: 0.7rem; font-weight: 700; color: var(--yellow);
  text-transform: uppercase; letter-spacing: 0.14em;
}
.quote-form input, .quote-form select, .quote-form textarea {
  padding: 0.85rem 1rem; background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14); border-radius: 8px;
  color: var(--text-hi); font-family: var(--font-body); font-size: 0.92rem;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  width: 100%;
}
.quote-form input::placeholder, .quote-form textarea::placeholder { color: rgba(255, 255, 255, 0.35); }
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus {
  outline: none; border-color: var(--yellow);
  background: rgba(255, 214, 10, 0.04);
  box-shadow: 0 0 0 3px rgba(255, 214, 10, 0.15);
}
.quote-form input.error, .quote-form select.error, .quote-form textarea.error {
  border-color: var(--red); box-shadow: 0 0 0 3px rgba(225, 29, 46, 0.15);
}
.quote-form select {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFD60A' stroke-width='2'><path d='M6 9l6 6 6-6'/></svg>");
  background-repeat: no-repeat; background-position: right 1rem center; background-size: 16px;
  padding-right: 2.5rem;
}
.quote-form select option { background: #0a0a0a; color: var(--text-hi); }
.quote-form textarea { resize: vertical; min-height: 120px; }
.quote-form button {
  margin-top: 0.5rem;
  padding: 1rem; background: var(--red); color: var(--text-hi); border: none;
  border-radius: 4px; font-family: var(--font-body); font-weight: 700;
  font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.12em;
  cursor: pointer; transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 30px var(--red-glow);
}
.quote-form button:hover { background: var(--red-hover); transform: translateY(-1px); box-shadow: 0 12px 40px var(--red-glow); }
.quote-form button:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.form-fineprint {
  font-size: 0.8rem; color: var(--text-mute); text-align: center; margin-top: 0.25rem;
}
.form-fineprint a { color: var(--yellow); text-decoration: none; font-weight: 600; }
.form-fineprint a:hover { color: var(--yellow-hover); }
.hp-field { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

.contact-aside { display: flex; flex-direction: column; gap: 1rem; }

.phone-hero {
  display: flex; flex-direction: column; align-items: center;
  gap: 0.4rem; text-align: center;
  padding: 2rem 1.5rem;
  background: linear-gradient(160deg, #131313 0%, #0a0a0a 100%);
  border: 1px solid var(--border-dark); border-radius: var(--radius-lg);
  text-decoration: none; color: var(--text-hi);
  box-shadow: var(--shadow-glow);
  position: relative; overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.phone-hero::before {
  content: ''; position: absolute; inset: -2px;
  background: conic-gradient(from 0deg, transparent 0deg, var(--yellow) 120deg, transparent 240deg);
  opacity: 0.14; z-index: 0; pointer-events: none;
  animation: phoneHaloSpin 12s linear infinite;
}
@keyframes phoneHaloSpin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .phone-hero::before { animation: none; } }
.phone-hero > * { position: relative; z-index: 1; }
.phone-hero:hover {
  transform: translateY(-3px); border-color: var(--yellow);
  box-shadow: 0 0 0 1px var(--yellow), 0 30px 80px -10px var(--yellow-glow);
}
.phone-hero-icon {
  width: 42px; height: 42px; color: var(--yellow);
  padding: 10px; border: 1px solid var(--border-dark);
  border-radius: 50%; background: rgba(255, 214, 10, 0.06);
  margin-bottom: 0.25rem;
}
.phone-hero-label {
  font-size: 0.75rem; font-weight: 700; color: var(--yellow);
  text-transform: uppercase; letter-spacing: 0.28em;
}
.phone-hero-number {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  color: var(--yellow); letter-spacing: 0.005em; line-height: 1;
  text-shadow: 0 0 40px rgba(255, 214, 10, 0.4);
  margin-top: 0.15rem; text-transform: uppercase;
}
.phone-hero-hours {
  font-size: 0.8rem; color: var(--text-mute);
  letter-spacing: 0.08em; margin-top: 0.35rem;
}

.contact-secondary {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem;
}
.contact-secondary-card {
  display: flex; flex-direction: column;
  padding: 1.25rem 1.15rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-hairline); border-radius: var(--radius);
  color: var(--text-hi); text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
a.contact-secondary-card:hover {
  border-color: var(--yellow); background: rgba(255, 214, 10, 0.04);
  transform: translateY(-2px);
}
.contact-secondary-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; color: var(--yellow);
  background: rgba(255, 214, 10, 0.08); border-radius: 8px;
  margin-bottom: 0.8rem;
}
.contact-secondary-icon svg { width: 18px; height: 18px; }
.contact-secondary-label {
  font-size: 0.7rem; font-weight: 700; color: var(--yellow);
  text-transform: uppercase; letter-spacing: 0.18em; margin-bottom: 0.35rem;
}
.contact-secondary-value {
  font-size: 0.9rem; color: var(--text-hi);
  line-height: 1.5; font-weight: 500; word-break: break-word;
}

/* ─── Toast ───────────────────────────────────────────── */

.toast {
  position: fixed; bottom: 2rem; left: 50%;
  transform: translateX(-50%) translateY(150%);
  z-index: 500; transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  max-width: calc(100vw - 2rem);
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast-content {
  display: flex; align-items: center; gap: 0.85rem;
  background: var(--bg-0); color: var(--text-hi);
  border: 1px solid var(--yellow);
  padding: 1rem 1.5rem; border-radius: 999px;
  font-size: 0.88rem; font-weight: 500; letter-spacing: 0.01em;
  box-shadow: 0 18px 50px rgba(255, 214, 10, 0.28);
}
.toast.toast-error .toast-content {
  border-color: var(--red); box-shadow: 0 18px 50px rgba(225, 29, 46, 0.28);
}
.toast.toast-error .toast-icon { background: var(--red); color: var(--text-hi); }
.toast-icon {
  display: flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; background: var(--yellow); color: #0a0a0a;
  border-radius: 50%; font-size: 0.85rem; font-weight: 700; flex-shrink: 0;
}

/* ─── Footer ──────────────────────────────────────────────── */

.footer { padding: 3.5rem 1.5rem 1.75rem; background: #0a0a0a; color: var(--text-mute); }
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem; padding-bottom: 2.25rem;
  border-bottom: 1px solid var(--border-hairline);
}
.footer-col h4 {
  font-family: var(--font-display); font-weight: 400;
  font-size: 1.1rem; color: var(--text-hi);
  margin-bottom: 1rem; letter-spacing: 0.02em; text-transform: uppercase;
}
.footer-brand {
  font-family: var(--font-display); font-weight: 400; line-height: 1;
  margin-bottom: 0.5rem; display: flex; flex-direction: column; gap: 4px;
  text-transform: uppercase;
}
.footer-brand .brand-key { color: var(--yellow); font-size: 0.95rem; letter-spacing: 0.18em; }
.footer-brand .brand-collision { color: var(--text-hi); font-size: 1.5rem; letter-spacing: 0.04em; }
.footer-sub { font-size: 0.85rem; color: var(--text-mute); margin-bottom: 0.3rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-links a {
  font-size: 0.88rem; color: var(--text-mute); text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--yellow); }
.footer-phone {
  display: block; font-size: 1.15rem; font-weight: 700;
  color: var(--yellow); text-decoration: none; margin-bottom: 0.4rem;
  letter-spacing: 0.01em;
}
.footer-email {
  display: block; font-size: 0.82rem; color: var(--text-mute);
  text-decoration: none; margin-bottom: 0.9rem; word-break: break-word;
  transition: color 0.2s;
}
.footer-email:hover { color: var(--yellow); }
.footer-addr { font-size: 0.82rem; line-height: 1.55; color: var(--text-mute); }
.footer-bottom {
  display: flex; justify-content: space-between; margin-top: 1.5rem;
  font-size: 0.72rem; color: var(--text-mute);
  padding: 0 1.5rem;
}
.footer-bottom a { color: var(--yellow); text-decoration: none; }
.footer-bottom a:hover { color: var(--yellow-hover); }

/* ─── Mobile (860px) ──────────────────────────────────────── */

@media (max-width: 860px) {
  .nav-links, .nav-phone, .nav-cta { display: none; }
  .hamburger { display: block; margin-left: auto; }
  .nav-logo { margin-right: 0; }
  .site-header { padding: 1rem 1.25rem; }
  .site-header.scrolled { padding: 0.75rem 1.25rem; }
  .nav-logo-mark { height: 24px; }

  .hero { min-height: 600px; }
  .hero-heading { font-size: clamp(2.5rem, 11vw, 4.2rem); }
  .hero-tagline { font-size: 0.72rem; letter-spacing: 0.12em; }
  .hero-ctas { flex-direction: column; align-items: stretch; width: 100%; max-width: 320px; margin: 0 auto; }

  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 1.75rem; }

  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .contact-split { grid-template-columns: 1fr; gap: 2rem; }
  .contact-secondary { grid-template-columns: 1fr 1fr; }
  .phone-hero { padding: 1.75rem 1.25rem; }
  .quote-form { padding: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .reviews-empty { padding: 2.25rem 1.5rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.4rem; text-align: center; }

  .section { padding: 4rem 0; }
  .area-tags { gap: 0.5rem; }
  .area-tag { font-size: 0.78rem; padding: 0.55rem 1rem; }
}

/* ─── Small Mobile (480px) ────────────────────────────────── */

@media (max-width: 480px) {
  .stats-row { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
  .pillars-grid { grid-template-columns: 1fr; }
  .contact-secondary { grid-template-columns: 1fr; }
  .reviews-empty-ctas { flex-direction: column; }
  .reviews-empty-ctas .btn-primary,
  .reviews-empty-ctas .btn-secondary { width: 100%; }
}

/* ─── Large (1440px+) ─────────────────────────────────────── */

@media (min-width: 1440px) {
  .container { max-width: 1320px; }
  .section { padding: 7rem 0; }
}
