/* ============================================================
   Lafon Auto LLC - Demo Stylesheet
   BizPinPro - bizpin.pro
   Brand: Red #E01030 / Black #0A0A0A (extracted from logo)
   ============================================================ */

:root {
  --red: #e01030;
  --red-dark: #b60d27;
  --black: #0a0a0a;
  --ink: #1c1c1c;
  --gray: #555555;
  --light: #f5f5f5;
  --white: #ffffff;
  --font-display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body: 'Barlow', Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 17px;
}

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

a { color: var(--red); }

:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--black);
  color: var(--white);
  padding: 10px 18px;
  z-index: 2000;
  font-weight: 700;
  text-decoration: none;
}
.skip-link:focus {
  left: 10px;
  top: 10px;
}

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 22px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--black);
  border-bottom: 3px solid var(--red);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 22px;
  max-width: 1120px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  height: 54px;
  width: auto;
  background: var(--white);
  border-radius: 6px;
  padding: 4px 8px;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.1;
}
.brand-name span { color: var(--red); }

.main-nav ul {
  display: flex;
  gap: 26px;
  list-style: none;
  align-items: center;
}

.main-nav a {
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  border-bottom-color: var(--red);
}

.btn-call {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 10px 20px;
  border-radius: 4px;
  border-bottom: none !important;
  white-space: nowrap;
}
.btn-call:hover { background: var(--red-dark); }

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--white);
  border-radius: 4px;
  color: var(--white);
  font-size: 1.4rem;
  line-height: 1;
  padding: 6px 12px;
  cursor: pointer;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.hero-inner {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  padding: 110px 22px 120px;
}

.hero-eyebrow {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 1rem;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 14px;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.6rem, 6.5vw, 4.6rem);
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: 1px;
  max-width: 14ch;
}

.hero h1 em {
  font-style: italic;
  color: var(--red);
}

.hero p {
  margin-top: 20px;
  max-width: 46ch;
  font-size: 1.15rem;
  color: #e8e8e8;
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-ghost {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1.1rem;
  padding: 14px 30px;
  border-radius: 4px;
  text-decoration: none;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}
.btn-primary:hover { background: var(--red-dark); }

.btn-ghost {
  border: 2px solid var(--white);
  color: var(--white);
}
.btn-ghost:hover {
  background: var(--white);
  color: var(--black);
}

.hero-phone {
  margin-top: 26px;
  font-size: 1.05rem;
  color: #cfcfcf;
}
.hero-phone a {
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid var(--red);
}

/* ---------- Badge strip ---------- */

.badges {
  background: var(--red);
  color: var(--white);
}

.badges ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1120px;
  margin: 0 auto;
  padding: 18px 22px;
  gap: 12px;
  text-align: center;
}

.badges li {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 1.05rem;
}

/* ---------- Sections ---------- */

.section { padding: 84px 0; }
.section-alt { background: var(--light); }
.section-dark {
  background: var(--black);
  color: var(--white);
}

.eyebrow {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  color: var(--red);
  font-size: 1rem;
  margin-bottom: 8px;
}

.section h2 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.05;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.section h2 em {
  font-style: italic;
  color: var(--red);
}

.section-dark h2 em { color: var(--red); }

/* ---------- About ---------- */

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.about-copy p + p { margin-top: 16px; }

.about-side {
  background: var(--black);
  color: var(--white);
  border-top: 5px solid var(--red);
  padding: 34px 30px;
  border-radius: 6px;
}

.about-side h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 1.5rem;
  margin-bottom: 14px;
}
.about-side h3 span { color: var(--red); }

.about-side ul {
  list-style: none;
}
.about-side li {
  padding: 9px 0;
  border-bottom: 1px solid #2c2c2c;
}
.about-side li:last-child { border-bottom: none; }
.about-side li strong { color: var(--red); }

/* ---------- Services grid ---------- */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 10px;
}

.service-card {
  background: var(--white);
  border: 1px solid #e2e2e2;
  border-top: 4px solid var(--red);
  border-radius: 6px;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
}

.service-card h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: var(--black);
}

.service-card p {
  color: var(--gray);
  font-size: 0.98rem;
  flex-grow: 1;
}

.service-card a {
  margin-top: 16px;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  color: var(--red);
}
.service-card a:hover { text-decoration: underline; }

.services-cta {
  margin-top: 36px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ---------- Reviews ---------- */

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.review-card {
  background: #161616;
  border: 1px solid #2a2a2a;
  border-radius: 6px;
  padding: 28px 24px;
}

.stars {
  color: var(--red);
  font-size: 1.2rem;
  letter-spacing: 3px;
  margin-bottom: 14px;
}

.review-card blockquote {
  font-size: 1rem;
  color: #e4e4e4;
}

.review-card cite {
  display: block;
  margin-top: 16px;
  font-style: normal;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--white);
  font-weight: 700;
}

.review-card .review-meta {
  color: #9a9a9a;
  font-size: 0.85rem;
}

.reviews-link {
  margin-top: 32px;
  text-align: center;
}
.reviews-link a {
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  border-bottom: 2px solid var(--red);
}

/* ---------- Hours & Location ---------- */

.location-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 26px;
}

.hours-table th,
.hours-table td {
  text-align: left;
  padding: 9px 4px;
  border-bottom: 1px solid #e0e0e0;
}

.hours-table th {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

.hours-table .closed { color: var(--red); font-weight: 700; }

.contact-lines p { margin-bottom: 8px; }
.contact-lines a {
  color: var(--black);
  font-weight: 700;
}

.map-frame {
  width: 100%;
  height: 380px;
  border: 0;
  border-radius: 6px;
  border-top: 5px solid var(--red);
}

/* ---------- CTA band ---------- */

.cta-band {
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: 64px 22px;
}

.cta-band h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.cta-band p { font-size: 1.15rem; margin-bottom: 26px; }

.cta-band .btn-primary {
  background: var(--black);
}
.cta-band .btn-primary:hover { background: #222222; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--black);
  color: #c9c9c9;
  padding: 44px 0 30px;
  font-size: 0.95rem;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 22px;
  text-align: center;
}

.footer-brand {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 8px;
}
.footer-brand span { color: var(--red); }

.footer-nav {
  margin: 18px 0;
  display: flex;
  gap: 22px;
  justify-content: center;
  flex-wrap: wrap;
}
.footer-nav a {
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.footer-nav a:hover { color: var(--red); }

.footer-credit {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid #2a2a2a;
  font-size: 0.85rem;
}
.footer-credit a { color: #c9c9c9; }

/* ---------- Services page ---------- */

.page-hero {
  background: var(--black);
  color: var(--white);
  padding: 70px 0 60px;
  border-bottom: 5px solid var(--red);
}

.page-hero h1 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  letter-spacing: 1px;
  line-height: 1.05;
}
.page-hero h1 em { font-style: italic; color: var(--red); }

.page-hero p {
  margin-top: 12px;
  max-width: 60ch;
  color: #dddddd;
}

.service-jump {
  background: var(--light);
  padding: 22px 0;
  border-bottom: 1px solid #e2e2e2;
}

.service-jump ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.service-jump a {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  text-decoration: none;
  color: var(--black);
  border-bottom: 2px solid var(--red);
}

.service-group { padding: 56px 0 10px; }

.service-group h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 2rem;
  letter-spacing: 1px;
  color: var(--black);
  border-left: 6px solid var(--red);
  padding-left: 14px;
  margin-bottom: 26px;
}

.service-entry {
  margin-bottom: 34px;
  max-width: 78ch;
}

.service-entry h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.service-entry p { color: var(--ink); }

.back-top {
  display: inline-block;
  margin: 10px 0 40px;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  text-decoration: none;
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .about-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }
  .services-grid,
  .reviews-grid {
    grid-template-columns: 1fr 1fr;
  }
  .badges ul { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .services-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .nav-toggle { display: block; }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--black);
    border-bottom: 3px solid var(--red);
  }

  .main-nav.open { display: block; }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 10px 0 16px;
  }

  .main-nav li { width: 100%; text-align: center; }

  .main-nav a {
    display: block;
    padding: 13px 0;
    font-size: 1.2rem;
  }

  .header-cta { display: none; }

  .hero-inner { padding: 80px 22px 90px; }
}

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

