/* =====================================================================
   Auto Saviors  |  brand styles
   Palette pulled from the logo:
     --maroon        #7A0C18   primary brand red (SAVIORS text)
     --maroon-bright #A0141F   hover / accent
     --maroon-deep   #4A0C0C   deepest shadow red
     --ink           #0E0F12   near-black background
     --steel         #C7CBD1   brushed silver (AUTO text)
   Fonts: Saira Condensed (display) + Barlow (body)
   ===================================================================== */

:root {
  --maroon: #7A0C18;
  --maroon-bright: #A0141F;
  --maroon-deep: #4A0C0C;
  --ink: #0E0F12;
  --ink-2: #16181D;
  --steel: #C7CBD1;
  --steel-dim: #8A9099;
  --paper: #F5F6F7;
  --paper-2: #ECEEF0;
  --white: #FFFFFF;

  --font-display: "Saira Condensed", "Arial Narrow", sans-serif;
  --font-body: "Barlow", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* ------------------------------ base ------------------------------ */
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  color: #22252B;
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--font-display); letter-spacing: .01em; }

a { color: var(--maroon); }
a:hover { color: var(--maroon-bright); }

::selection { background: var(--maroon); color: #fff; }

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

/* eyebrow label (utility type) */
.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 600;
  font-size: .8rem;
  color: var(--maroon-bright);
  margin-bottom: .6rem;
}
.eyebrow--dark { color: var(--maroon); }

/* ------------------------------ navbar ------------------------------ */
.site-nav {
  background: rgba(14, 15, 18, .92);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid rgba(199, 203, 209, .12);
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.brand-logo { height: 38px; width: auto; display: block; }

.site-nav .nav-link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  color: var(--steel);
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: .4rem .9rem;
}
.site-nav .nav-link:hover,
.site-nav .nav-link:focus,
.site-nav .nav-link.active { color: #fff; }

.btn-call {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  background: var(--maroon);
  color: #fff;
  padding: .5rem 1.1rem;
  border-radius: 4px;
  text-align: center;
  border: 1px solid var(--maroon-bright);
  transition: background .15s ease, transform .15s ease;
}
.btn-call:hover { background: var(--maroon-bright); color: #fff; transform: translateY(-1px); }
.btn-call__label { font-size: .62rem; text-transform: uppercase; letter-spacing: .18em; opacity: .85; }
.btn-call__num { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; letter-spacing: .02em; }

/* ------------------------------ buttons ------------------------------ */
.btn-primary-brand {
  --bs-btn-focus-shadow-rgb: 160,20,31;
  background: var(--maroon);
  border: 1px solid var(--maroon-bright);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .7rem 1.6rem;
  border-radius: 4px;
  transition: background .15s ease, transform .15s ease, box-shadow .15s ease;
}
.btn-primary-brand:hover {
  background: var(--maroon-bright);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(122, 12, 24, .35);
}
.btn-outline-steel {
  background: transparent;
  border: 1px solid var(--steel-dim);
  color: var(--steel);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .7rem 1.6rem;
  border-radius: 4px;
  transition: border-color .15s ease, color .15s ease, transform .15s ease;
}
.btn-outline-steel:hover { border-color: #fff; color: #fff; transform: translateY(-2px); }

/* on light sections the outline needs darker ink */
.section--steel .btn-outline-steel { color: #2b2f36; border-color: #9aa0a8; }
.section--steel .btn-outline-steel:hover { color: var(--ink); border-color: var(--ink); }

/* ------------------------------ hero ------------------------------ */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1100px 520px at 78% 42%, rgba(199,203,209,.16), transparent 60%),
    linear-gradient(160deg, #1b1d22 0%, var(--ink) 55%, #08090b 100%);
  color: var(--steel);
  padding: 9.5rem 0 5rem;
}
/* faint maroon speed streaks echoing the logo, kept subtle */
.hero__streaks {
  position: absolute; inset: 0;
  background:
    linear-gradient(115deg, transparent 0 46%, rgba(122,12,24,.55) 46% 47%, transparent 47%),
    linear-gradient(115deg, transparent 0 52%, rgba(122,12,24,.35) 52% 52.6%, transparent 53%),
    linear-gradient(115deg, transparent 0 58%, rgba(160,20,31,.30) 58% 58.5%, transparent 59%);
  background-size: 100% 100%;
  opacity: .5;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(90deg, #000 0 40%, transparent 72%);
          mask-image: linear-gradient(90deg, #000 0 40%, transparent 72%);
}
.hero .container { z-index: 2; }

.hero__title {
  font-weight: 800;
  font-size: clamp(2.7rem, 6vw, 4.6rem);
  line-height: .96;
  text-transform: uppercase;
  color: #fff;
  margin: .2rem 0 1.1rem;
}
.hero__title span { color: var(--maroon-bright); display: block; }

.hero__lead {
  font-size: 1.18rem;
  line-height: 1.55;
  color: #d7dade;
  max-width: 34rem;
  margin-bottom: 1.8rem;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 2.4rem; }

.hero__facts {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 2.2rem;
  border-top: 1px solid rgba(199,203,209,.15);
  padding-top: 1.4rem;
}
.hero__facts li { display: flex; flex-direction: column; }
.hero__facts strong {
  font-family: var(--font-display); font-weight: 700; font-size: 1.5rem;
  color: #fff; line-height: 1;
}
.hero__facts span { font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; color: var(--steel-dim); margin-top: .25rem; }

/* white card so the logo always sits on a clean white ground */
.hero__logo-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 2.2rem 2.4rem;
  box-shadow: 0 22px 55px rgba(0,0,0,.45);
  overflow: hidden;
}
.hero__logo-card::before {   /* maroon accent strip along the top */
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 6px;
  background: linear-gradient(90deg, var(--maroon), var(--maroon-bright));
}
.hero__logo { display: block; width: 100%; max-width: 520px; height: auto; margin: 0 auto; }

/* reusable white plate for the logo in the nav and footer */
.logo-plate {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border-radius: 8px;
  line-height: 0;
}
.logo-plate--nav { padding: 5px 10px; border-radius: 6px; }
.logo-plate--footer { padding: 8px 14px; }

/* ------------------------------ emergency band ------------------------------ */
.band {
  background: var(--maroon);
  color: #fff;
  padding: 1.15rem 0;
  border-top: 1px solid var(--maroon-bright);
  border-bottom: 1px solid var(--maroon-deep);
}
.band__text {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: .02em;
  display: flex; align-items: center; gap: .8rem;
}
.band__pulse {
  width: 12px; height: 12px; border-radius: 50%;
  background: #fff; box-shadow: 0 0 0 0 rgba(255,255,255,.8);
  animation: pulse 1.8s infinite;
  flex: none;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,255,255,.7); }
  70%  { box-shadow: 0 0 0 12px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}
@media (prefers-reduced-motion: reduce) { .band__pulse { animation: none; } }
.btn-band {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  letter-spacing: .04em; color: var(--maroon); padding: .6rem 1.4rem; border-radius: 4px;
}
.btn-band:hover { color: var(--maroon-deep); }

/* ------------------------------ sections ------------------------------ */
.section { padding: 5.5rem 0; }
.section--dark { background: var(--ink); color: var(--steel); }
.section--steel {
  background: linear-gradient(180deg, var(--paper-2), #dfe2e5);
  color: #22252B;
}
.section__head { max-width: 44rem; margin-bottom: 3rem; }
.section__title {
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 .8rem;
  line-height: 1;
}
.section__title--light { color: #fff; }
.section__sub { font-size: 1.08rem; color: #4c5057; line-height: 1.55; margin: 0; }
.section--dark .section__sub { color: #c1c5ca; }

/* slash motif from the logo streaks */
.slash {
  display: inline-block;
  width: 34px; height: 12px;
  margin-right: .7rem;
  background: linear-gradient(115deg, var(--maroon) 60%, var(--maroon-bright));
  transform: skewX(-24deg);
  vertical-align: middle;
}

/* ------------------------------ services ------------------------------ */
.svc-group { margin-bottom: 3rem; }
.svc-group:last-of-type { margin-bottom: 0; }
.svc-group__title {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.45rem;
  color: var(--ink);
  margin-bottom: 1.4rem;
  display: flex; align-items: center;
}

.svc-card {
  height: 100%;
  background: #fff;
  border: 1px solid var(--paper-2);
  border-top: 3px solid var(--maroon);
  border-radius: 6px;
  padding: 1.5rem 1.5rem 1.4rem;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(14,15,18,.12);
  border-top-color: var(--maroon-bright);
}
.svc-card__name {
  font-weight: 700; text-transform: uppercase; font-size: 1.28rem;
  color: var(--ink); margin: 0 0 .5rem;
}
.svc-card__desc { font-size: .96rem; color: #565a61; line-height: 1.5; margin: 0 0 1.1rem; }
.svc-card__price {
  font-family: var(--font-display); font-weight: 800; font-size: 2rem;
  color: var(--maroon); margin: 0; line-height: 1;
}
.svc-card__from, .svc-card__plus {
  font-family: var(--font-body); font-weight: 600; font-size: .8rem;
  text-transform: uppercase; letter-spacing: .1em; color: var(--steel-dim);
}
.svc-card__from { margin-right: .35rem; }
.svc-card__plus { margin-left: .35rem; }

.svc-note {
  margin: 2.6rem 0 0;
  text-align: center;
  font-size: 1.05rem;
  color: #4c5057;
}

/* ------------------------------ how it works ------------------------------ */
.step { padding: 1.2rem .4rem; }
.step__num {
  font-family: var(--font-display); font-weight: 800; font-size: 3rem;
  color: var(--maroon-bright); line-height: 1; display: block;
}
.step__title {
  font-weight: 700; text-transform: uppercase; font-size: 1.4rem;
  color: #fff; margin: .5rem 0 .5rem;
}
.step__desc { color: #c1c5ca; line-height: 1.55; margin: 0; }

/* ------------------------------ why us ------------------------------ */
.feature {
  height: 100%;
  padding: 1.6rem 1.4rem;
  background: var(--paper-2);
  border-left: 3px solid var(--maroon);
  border-radius: 0 6px 6px 0;
}
.feature__title {
  font-weight: 700; text-transform: uppercase; font-size: 1.22rem;
  color: var(--ink); margin: 0 0 .5rem;
}
.feature__desc { color: #4c5057; line-height: 1.5; margin: 0; font-size: .97rem; }

/* ------------------------------ service area ------------------------------ */
.area__text { font-size: 1.1rem; line-height: 1.6; color: #3a3e45; margin: 0 0 1.6rem; max-width: 34rem; }
.area__hours {
  background: var(--ink);
  color: var(--steel);
  border-radius: 8px;
  padding: 2rem;
  border: 1px solid rgba(199,203,209,.15);
}
.area__hours-title {
  font-weight: 700; text-transform: uppercase; color: #fff;
  font-size: 1.4rem; margin: 0 0 1rem;
}
.hours-list { list-style: none; margin: 0; padding: 0; }
.hours-list li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
  padding: .7rem 0; border-bottom: 1px solid rgba(199,203,209,.14);
}
.hours-list li:last-child { border-bottom: 0; }
.hours-list span { color: var(--steel-dim); }
.hours-list strong { font-family: var(--font-display); font-weight: 700; color: #fff; }

/* ------------------------------ contact ------------------------------ */
.contact { position: relative; overflow: hidden; }
.contact__streaks {
  position: absolute; inset: 0;
  background:
    linear-gradient(115deg, transparent 0 30%, rgba(122,12,24,.5) 30% 30.6%, transparent 31%),
    linear-gradient(115deg, transparent 0 36%, rgba(160,20,31,.4) 36% 36.5%, transparent 37%),
    linear-gradient(115deg, transparent 0 66%, rgba(122,12,24,.4) 66% 66.6%, transparent 67%),
    linear-gradient(115deg, transparent 0 72%, rgba(160,20,31,.3) 72% 72.5%, transparent 73%);
  opacity: .55; pointer-events: none;
}
.contact__title {
  font-weight: 800; text-transform: uppercase;
  font-size: clamp(2.4rem, 5vw, 3.6rem); color: #fff; margin: 0 0 .8rem;
}
.contact__lead { font-size: 1.2rem; color: #d0d3d8; margin: 0 auto 1.8rem; max-width: 34rem; }
.contact__actions { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; margin-bottom: 1.4rem; }
.contact__meta { color: var(--steel-dim); font-size: .95rem; }
.contact__meta a { color: var(--steel); }
.contact__meta a:hover { color: #fff; }
.dot { margin: 0 .55rem; opacity: .5; }

/* ------------------------------ footer ------------------------------ */
.footer { background: #08090b; color: var(--steel-dim); padding: 2.4rem 0; }
.footer__logo { height: 46px; width: auto; display: block; }
.footer__meta { margin: 0 0 .35rem; }
.footer__meta a { color: var(--steel); }
.footer__meta a:hover { color: #fff; }
.footer__copy { margin: 0; font-size: .85rem; }

/* ------------------------------ responsive tweaks ------------------------------ */
@media (max-width: 991.98px) {
  .hero { padding-top: 7.5rem; text-align: left; }
  .site-nav .navbar-collapse {
    background: rgba(14,15,18,.98);
    margin-top: .6rem; padding: 1rem; border-radius: 8px;
    border: 1px solid rgba(199,203,209,.12);
  }
  .btn-call { flex-direction: row; gap: .5rem; align-items: center; margin-top: .4rem; }
  .band__text { font-size: 1.1rem; }
}
@media (max-width: 575.98px) {
  .hero__facts { gap: 1.4rem; }
  .contact__actions .btn, .hero__cta .btn { width: 100%; }
}

/* =====================================================================
   Added: section accent lines, shop address, and contact form
   ===================================================================== */

/* thin maroon accent line separating each section */
.section { border-top: 3px solid var(--maroon); }
.footer  { border-top: 3px solid var(--maroon); }

/* shop address block in the service-area section */
.area__address { margin: 0 0 1.6rem; }
.area__address-label {
  display: block;
  font-family: var(--font-body); font-weight: 600;
  text-transform: uppercase; letter-spacing: .16em; font-size: .78rem;
  color: var(--maroon); margin-bottom: .3rem;
}
.area__address-text {
  font-style: normal; font-weight: 600; font-size: 1.15rem;
  color: var(--ink); line-height: 1.35; margin: 0 0 .4rem;
}
.area__directions {
  font-weight: 600; text-transform: uppercase; letter-spacing: .06em;
  font-size: .85rem; text-decoration: none;
}
.area__directions::after { content: " \2192"; }

/* contact form (dark section) */
.contact-form { margin: 2.4rem auto 1.2rem; text-align: left; }
.form-label-brand {
  display: block;
  font-family: var(--font-body); font-weight: 600;
  text-transform: uppercase; letter-spacing: .1em; font-size: .78rem;
  color: var(--steel); margin-bottom: .35rem;
}
.form-label-brand .opt { color: var(--steel-dim); letter-spacing: .04em; }
.form-control-brand {
  width: 100%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(199,203,209,.28);
  color: #fff;
  border-radius: 5px;
  padding: .7rem .9rem;
  font-family: var(--font-body); font-size: 1rem;
  transition: border-color .15s ease, background .15s ease;
}
.form-control-brand::placeholder { color: var(--steel-dim); }
.form-control-brand:focus {
  outline: none;
  border-color: var(--maroon-bright);
  background: rgba(255,255,255,.10);
  box-shadow: 0 0 0 3px rgba(160,20,31,.25);
}
textarea.form-control-brand { resize: vertical; min-height: 120px; }

/* honeypot: visually hidden, off-screen, not shown to people */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.contact-form__status { margin: 1rem 0 0; font-weight: 600; min-height: 1.4em; }
.contact-form__status.is-ok   { color: #37c26b; }
.contact-form__status.is-err  { color: #ff6b6b; }

/* =====================================================================
   LIGHT THEME  — flips the site to a white background with dark text.
   Maroon + black stay as accents. Loaded last so it overrides above.
   ===================================================================== */

body { color: #22252B; background: #ffffff; }

/* --- NAV: white, with a black line separating it from the page --- */
.site-nav {
  background: #ffffff;
  backdrop-filter: none;
  border-bottom: 2px solid #111318;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
}
.site-nav .nav-link { color: #22252B; }
.site-nav .nav-link:hover,
.site-nav .nav-link:focus,
.site-nav .nav-link.active { color: var(--maroon); }
.logo-plate { background: transparent; padding: 0; border-radius: 0; }  /* no plate needed on white */
@media (max-width: 991.98px) {
  .site-nav .navbar-collapse {
    background: #ffffff;
    border: 1px solid #E3E6E9;
  }
  .btn-call { color: #fff; }
}

/* --- HERO: full white strip, logo sits directly on it --- */
.hero { background: #ffffff; color: #22252B; }
.hero__streaks { display: none; }
.hero__title { color: var(--ink); }
.hero__title span { color: var(--maroon-bright); }
.hero__lead { color: #3a3e45; }
.hero__facts { border-top-color: #E3E6E9; }
.hero__facts strong { color: var(--ink); }
.hero__facts span { color: #7A8089; }
.hero__logo-card { background: transparent; box-shadow: none; padding: 0; overflow: visible; }
.hero__logo-card::before { display: none; }

/* --- secondary button: dark outline on light --- */
.btn-outline-steel { border-color: #2b2f36; color: #2b2f36; background: transparent; }
.btn-outline-steel:hover { border-color: var(--maroon); color: var(--maroon); }

/* --- sections: alternate white / light gray, dark text --- */
.section--dark  { background: #ffffff; color: #22252B; }
.section--muted { background: #F6F7F8; }
.section--steel { background: linear-gradient(180deg, #EEF0F2, #E6E9EC); color: #22252B; }
.section__title--light { color: var(--ink); }
.section--dark .section__sub { color: #4c5057; }

/* how it works */
.step__title { color: var(--ink); }
.step__desc  { color: #4c5057; }

/* service cards get a resting shadow so they read on white --- */
.svc-card { box-shadow: 0 2px 10px rgba(14,15,18,.05); }

/* service-area hours panel becomes a light card --- */
.area__hours { background: #ffffff; color: #22252B; border: 1px solid #E3E6E9; }
.area__hours-title { color: var(--ink); }
.hours-list li { border-bottom-color: #E7EAED; }
.hours-list span { color: #6b7079; }
.hours-list strong { color: var(--ink); }

/* contact section on white --- */
.contact__title { color: var(--ink); }
.contact__lead  { color: #3a3e45; }
.contact__streaks { display: none; }
.form-label-brand { color: #2b2f36; }
.form-label-brand .opt { color: #8A9099; }
.form-control-brand {
  background: #ffffff;
  border: 1px solid #C9CED3;
  color: #1a1d22;
}
.form-control-brand::placeholder { color: #9aa0a8; }
.form-control-brand:focus {
  border-color: var(--maroon);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(160,20,31,.18);
}
.contact__meta { color: #6b7079; }
.contact__meta a { color: var(--maroon); }
.contact-form__status.is-ok  { color: #1a7f46; }
.contact-form__status.is-err { color: #c0281f; }

/* footer: light --- */
.footer { background: #F1F2F4; color: #565a61; }
.footer__meta a { color: var(--maroon); }
.footer__meta a:hover { color: var(--maroon-bright); }
.footer__copy { color: #8A9099; }
