/* ===========================
   style.css
   Simple rundown
   Palette:
     --redd:   #ec1e1e  (primary accent)
     --dark:   #1A1A1A  (near-black)
     --mid:    #2E2E2E  (nav/footer bg)
     --warm:   #F5F1EB  (page bg)
     --white:  #FFFFFF
     --muted:  #6B6560
     --border: #D9D3CB
   Typography:
     Display: 'Oswald' (strong, mechanical, automotive)
     Body:    'Lato' (clean, readable)
=========================== */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Lato:wght@300;400;700&display=swap');

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

:root {
  --redd:   #ec1e1eac;
  --redd-dk:#8f1212;
  --dark:   #1A1A1A;
  --mid:    #2C2C2C;
  --warm:   #F5F1EB;
  --white:  #FFFFFF;
  --muted:  #6B6560;
  --border: #D9D3CB;
  --nav-h:  62px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--warm);
  color: var(--dark);
  font-size: 16px;
  line-height: 1.65;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ---- TOP BAR ---- */
.topbar {
  background: var(--dark);
  color: #ccc;
  font-size: 13px;
  padding: 6px 0;
}
.topbar-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar-address { display: flex; align-items: center; gap: 6px; }
.topbar-address svg { flex-shrink: 0; }
.topbar-phone a {
  color: var(--redd);
  font-weight: 700;
  letter-spacing: .5px;
}
.topbar-phone a:hover { color: #fff; }

/* ---- NAV ---- */
nav {
  background: var(--mid);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,.35);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}
.nav-logo {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
  line-height: 1.1;
}
.nav-logo span { color: var(--redd); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  color: #ccc;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 3px;
  transition: color .2s, background .2s;
}
.nav-links a:hover, .nav-links a.active {
  color: #fff;
  background: var(--redd);
}
.nav-links a.nav-cta {
  background: var(--redd);
  color: #fff;
  margin-left: 8px;
}
.nav-links a.nav-cta:hover { background: var(--redd-dk); }

/* hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ccc;
  border-radius: 2px;
  transition: all .25s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- HERO SLIDER ---- */
.hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0e0e0e 0%, #2a1a10 50%, #1a1a1a 100%);
}
/* subtle gear texture */
.hero-bg::before {
  content:'';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(184,76,26,.04) 0px,
    rgba(184,76,26,.04) 1px,
    transparent 1px,
    transparent 60px
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 20px;
  max-width: 760px;
}
.hero-eyebrow {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--redd);
  margin-bottom: 14px;
}
.hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(32px, 6vw, 64px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero h1 em {
  font-style: normal;
  color: var(--redd);
}
.hero-address {
  color: #bbb;
  font-size: 15px;
  margin-bottom: 32px;
}
.hero-address strong { color: #fff; }
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 13px 32px;
  border-radius: 3px;
  cursor: pointer;
  transition: all .2s;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--redd);
  color: var(--white);
  border-color: var(--redd);
}
.btn-primary:hover { background: var(--redd-dk); border-color: var(--redd-dk); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.45);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.btn-dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.btn-dark:hover { background: var(--mid); }

/* ---- INFO STRIP (address / hours / payments) ---- */
.info-strip {
  background: var(--white);
  border-bottom: 3px solid var(--redd);
}
.info-strip-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 32px 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.info-block h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--redd);
  margin-bottom: 10px;
}
.info-block p, .info-block address {
  font-style: normal;
  font-size: 15px;
  line-height: 1.7;
  color: var(--dark);
}
.info-block a { color: var(--redd); font-weight: 700; }
.info-block a:hover { color: var(--redd-dk); }
.payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.payment-icons .pi {
  background: var(--dark);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: .5px;
  padding: 4px 9px;
  border-radius: 3px;
  text-transform: uppercase;
}
.pi.visa   { background: #1A1F71; }
.pi.mc     { background: #EB001B; }
.pi.disc   { background: #FF6600; }
.pi.amex   { background: #007BC1; }
.pi.cash   { background: #2d7a3a; }
.pi.check  { background: #555; }

/* ---- SECTION COMMONS ---- */
.section { padding: 64px 20px; }
.section-inner { max-width: 1160px; margin: 0 auto; }
.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  color: var(--dark);
}
.section-title span { color: var(--redd); }
.section-rule {
  width: 52px;
  height: 3px;
  background: var(--redd);
  margin-bottom: 28px;
}
.section-sub {
  color: var(--muted);
  max-width: 640px;
  font-size: 15px;
  margin-bottom: 36px;
}

/* ---- WELCOME SECTION ---- */
.welcome-section { background: var(--warm); }
.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.welcome-text p { color: #444; margin-bottom: 16px; }
.welcome-text .phone-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  color: var(--redd);
  margin-top: 12px;
  font-weight: 600;
}
.welcome-text .phone-cta:hover { color: var(--redd-dk); }
.welcome-img-wrap {
  position: relative;
}
.welcome-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 14px;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 2px dashed #444;
}
.store-img svg { margin-bottom: 10px; }
.welcome-img-wrap::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: 10px;
  bottom: 10px;
  border: 2px solid var(--redd);
  border-radius: 4px;
  z-index: 0;
}
.welcome-img-wrap > * { position: relative; z-index: 1; }

/* ---- MAP SECTION ---- */
.map-section { background: var(--dark); padding: 0; }
.map-section-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 380px 1fr;
}
.map-details {
  padding: 48px 40px;
  background: var(--mid);
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.map-details h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.map-details p { font-size: 15px; color: #bbb; line-height: 1.8; }
.map-details a { color: var(--redd); font-weight: 700; }
.map-details a:hover { color: #fff; }
.map-details .hours-list { font-size: 15px; color: #bbb; }
.map-details .hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.map-details .hours-list li:last-child { border-bottom: none; }
.map-frame {
  min-height: 380px;
  position: relative;
  overflow: hidden;
  background: #333;
}
.map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.map-placeholder {
  position: absolute;
  inset: 0;
  background: #2a2a2a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #777;
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  gap: 12px;
  text-align: center;
  padding: 20px;
}

/* ---- WHY CHOOSE US ---- */
.why-section { background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.why-text p { color: #444; margin-bottom: 16px; }
.why-bullets { margin-top: 24px; }
.why-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  color: #333;
}
.why-bullets li:last-child { border-bottom: none; }
.why-bullets li::before {
  content: '✓';
  background: var(--redd);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 1px;
}
.why-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.why-card {
  background: var(--warm);
  border-top: 3px solid var(--redd);
  padding: 22px 18px;
  border-radius: 3px;
}
.why-card h5 {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 8px;
  color: var(--dark);
}
.why-card p { font-size: 14px; color: var(--muted); line-height: 1.55; }

/* ---- SERVICES PAGE SPECIFIC ---- */
.page-hero {
  background: var(--dark);
  padding: 52px 20px 40px;
  border-bottom: 3px solid var(--redd);
}
.page-hero-inner { max-width: 1160px; margin: 0 auto; }
.breadcrumb {
  font-size: 13px;
  color: #888;
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--redd); }
.breadcrumb a:hover { color: #fff; }
.page-hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.page-hero p {
  color: #bbb;
  max-width: 640px;
  margin-top: 12px;
  font-size: 15px;
}

.services-layout {
  max-width: 1160px;
  margin: 0 auto;
  padding: 52px 20px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}
.services-main {}
.service-block { margin-bottom: 25px; }
.service-block:last-child { margin-bottom: 0; }
.service-block-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--border);
}
.service-block-icon {
  width: 48px;
  height: 48px;
  background: var(--redd);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  font-size: 22px;
}
.service-block h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--dark);
}
.service-block p { color: #444; margin-bottom: 16px; font-size: 15px; }
.service-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
  margin-top: 16px;
}
.service-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #333;
  padding: 5px 0;
  border-bottom: 1px solid var(--border);
}
.service-list li::before {
  content: '›';
  color: var(--redd);
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}

/* sidebar */
.services-sidebar {}
.sidebar-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--redd);
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 2px;
}
.sidebar-box h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--dark);
  margin-bottom: 16px;
}
.sidebar-box p { font-size: 14px; color: var(--muted); margin-bottom: 10px; }
.sidebar-box a.btn { display: block; text-align: center; margin-top: 14px; }
.sidebar-list li {
  font-size: 14px;
  color: #444;
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.sidebar-list li:last-child { border-bottom: none; }
.sidebar-list li::before {
  content: '›';
  color: var(--redd);
  font-size: 16px;
  font-weight: 700;
}
.sidebar-hours li {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #444;
  padding: 5px 0;
  border-bottom: 1px solid var(--border);
}
.sidebar-hours li:last-child { border-bottom: none; }

/* ---- APPOINTMENT PAGE ---- */
.appt-layout {
  max-width: 1160px;
  margin: 0 auto;
  padding: 52px 20px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}
.appt-form-wrap {}
.appt-form-wrap h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 8px;
}
.appt-form-wrap .form-intro {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--dark);
}
.form-field label span { color: var(--redd); }
.form-field input,
.form-field select,
.form-field textarea {
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 3px;
  background: var(--white);
  color: var(--dark);
  transition: border-color .2s;
  outline: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--redd); }
.form-field textarea { resize: vertical; min-height: 110px; }
.form-submit { margin-top: 24px; }
.form-note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 12px;
}

/* ---- FORM VALIDATION STATES ---- */
.form-field input.invalid,
.form-field select.invalid,
.form-field textarea.invalid {
  border-color: var(--redd-dk);
}
.error-msg {
  display: none;
  font-size: 12.5px;
  color: var(--redd-dk);
}
.error-msg.show { display: block; }

/* ---- VEHICLE ID TOGGLE (Make/Model vs VIN) ---- */
.id-toggle {
  grid-column: 1 / -1;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  background: var(--warm);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 12px 16px;
}
.id-toggle label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--dark);
  cursor: pointer;
}
.id-toggle input { width: auto; accent-color: var(--redd-dk); }

/* ---- FIELDSET GROUPS (Vehicle Details / VIN) ---- */
fieldset#makeModelGroup,
fieldset#vinGroup {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  border: none;
  padding: 0;
  margin: 0;
}
fieldset[hidden] { display: none; }
fieldset legend {
  grid-column: 1 / -1;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--redd-dk);
  margin-bottom: -4px;
  padding: 0;
}

.appt-info {}

/* ---- CONTACT PAGE ---- */
.contact-layout {
  max-width: 1160px;
  margin: 0 auto;
  padding: 52px 20px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}
.contact-form-wrap h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 8px;
}
.contact-form-wrap .form-intro {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.contact-sidebar {}
.contact-map {
  width: 100%;
  height: 280px;
  background: #2a2a2a;
  border-radius: 3px;
  overflow: hidden;
  position: relative;
  margin-bottom: 24px;
}
.contact-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.contact-map-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #666;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  gap: 8px;
}

/* ---- FOOTER ---- */
footer {
  background: var(--dark);
  color: #aaa;
  padding: 48px 20px 0;
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-col h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--redd);
  display: inline-block;
}
.footer-col p { font-size: 14px; line-height: 1.8; }
.footer-col a { color: #aaa; transition: color .2s; }
.footer-col a:hover { color: var(--redd); }
.footer-col address { font-style: normal; font-size: 14px; line-height: 1.8; }
.footer-col ul li { padding: 4px 0; }
.footer-col ul li a { font-size: 14px; }
.footer-payment { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.footer-bottom {
  max-width: 1160px;
  margin: 0 auto;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #555;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom a { color: #555; }
.footer-bottom a:hover { color: var(--redd); }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .welcome-grid,
  .why-grid,
  .map-section-inner { grid-template-columns: 1fr; }
  .map-section-inner { display: block; }
  .map-frame { min-height: 300px; }
  .services-layout,
  .appt-layout,
  .contact-layout { grid-template-columns: 1fr; }
  .info-strip-inner { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .why-cards { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav-links { display: none; flex-direction: column; gap: 0; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--mid);
    padding: 12px 0;
    box-shadow: 0 6px 16px rgba(0,0,0,.4);
  }
  .nav-links.open a { padding: 12px 20px; border-radius: 0; }
  .nav-toggle { display: flex; }
  .nav-inner { position: relative; }
  .hero-btns { flex-direction: column; align-items: center; }
  .info-strip-inner { grid-template-columns: 1fr; }
  .service-list { grid-template-columns: 1fr; }
  .form-grid,
  fieldset#makeModelGroup,
  fieldset#vinGroup { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .welcome-img-wrap::before { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

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

.nav-brand img {
  width: 45px;
  height: 45px;
  object-fit: contain;
  border-radius: 4px;
}