:root {
  --vincent-red: #d71920;
  --vincent-red-dark: #a90f14;
  --vincent-black: #111315;
  --vincent-charcoal: #1b1f23;
  --vincent-muted: #6b7280;
  --vincent-light: #f5f6f7;
  --vincent-border: #e2e5e9;
  --vincent-shadow: 0 18px 45px rgba(13, 17, 23, .10);
  --vincent-radius: 20px;
}

html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: #181b20;
  background: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 0;
}
img { max-width: 100%; }
a { color: inherit; }
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.site-icon { width: 1.2em; height: 1.2em; fill: currentColor; flex: 0 0 auto; }

.site-header { z-index: 1030; transition: box-shadow .2s ease; }
.site-header.is-scrolled { box-shadow: 0 8px 28px rgba(0, 0, 0, .08); }
.site-header .navbar { min-height: 82px; }
.navbar-brand img { width: 230px; height: auto; }
.site-header .nav-link {
  color: #202328;
  font-size: .94rem;
  font-weight: 700;
  padding: .8rem .85rem !important;
  position: relative;
}
.site-header .nav-link::after {
  content: "";
  position: absolute;
  left: .85rem;
  right: .85rem;
  bottom: .35rem;
  height: 2px;
  border-radius: 3px;
  background: var(--vincent-red);
  transform: scaleX(0);
  transition: transform .2s ease;
}
.site-header .nav-link:hover::after,
.site-header .nav-link.active::after { transform: scaleX(1); }
.header-call-group {
  display: flex;
  align-items: stretch;
  gap: .55rem;
}
.header-garage-call,
.header-service-call {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease;
}
.header-garage-call:hover,
.header-service-call:hover { transform: translateY(-1px); }
.header-garage-call {
  min-width: 160px;
  padding: .65rem .9rem;
  color: #fff;
  background: linear-gradient(135deg, #191c1f, #2a2f34);
  border-radius: 0 0 12px 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .12);
}
.header-garage-call > span {
  margin-bottom: .08rem;
  color: rgba(255,255,255,.72);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.header-garage-call strong {
  display: flex;
  align-items: center;
  gap: .35rem;
  white-space: nowrap;
  font-size: .91rem;
  font-weight: 850;
}
.header-service-call {
  min-width: 225px;
  padding: .65rem 1rem;
  color: #fff;
  background: linear-gradient(135deg, var(--vincent-red), #be1117);
  border-radius: 0 0 14px 14px;
  box-shadow: 0 12px 26px rgba(215, 25, 32, .18);
}
.header-service-phone { display: flex; align-items: center; gap: .4rem; font-size: 1rem; font-weight: 850; }
.header-service-call > span:last-child { margin-top: .1rem; font-size: .69rem; font-weight: 700; opacity: .95; }

.section-pad { padding: 88px 0; }
.section-pad-sm { padding: 64px 0; }
.bg-soft { background: var(--vincent-light); }
.section-kicker {
  margin-bottom: .55rem;
  color: var(--vincent-red);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.section-title {
  margin: 0;
  color: var(--vincent-black);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: 1;
}
.section-lead { color: var(--vincent-muted); font-size: 1.05rem; line-height: 1.75; }

.btn-vincent,
.btn-vincent-outline,
.btn-dark-vincent {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  border-radius: 10px;
  padding: .75rem 1.2rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn-vincent { color: #fff; background: var(--vincent-red); border: 1px solid var(--vincent-red); }
.btn-vincent:hover { color: #fff; background: var(--vincent-red-dark); transform: translateY(-1px); box-shadow: 0 10px 25px rgba(215,25,32,.22); }
.btn-vincent-outline { color: var(--vincent-red); background: #fff; border: 1px solid #f0a1a5; }
.btn-vincent-outline:hover { color: #fff; background: var(--vincent-red); border-color: var(--vincent-red); }
.btn-dark-vincent { color: #fff; background: #15181b; border: 1px solid #15181b; }
.btn-dark-vincent:hover { color: #fff; background: #000; }

.hero-home {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
    background: #101214 url('../images/slide/hero-sunset.webp') center 54% / cover no-repeat;
}
.hero-home::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,9,11,.91) 0%, rgba(7,9,11,.72) 38%, rgba(7,9,11,.22) 70%, rgba(7,9,11,.08) 100%);
}
.hero-home .container-xl { position: relative; z-index: 1; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: .5rem; margin-bottom: 1rem; font-size: .82rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; color: #ffd4d5; }
.hero-title {
  max-width: 710px;
  margin: 0 0 1.25rem;
  color: #fff;
  font-size: clamp(3rem, 7vw, 5.7rem);
  font-weight: 950;
  letter-spacing: -.065em;
  line-height: .92;
  text-transform: uppercase;
}
.hero-title span { color: #ff2b33; }
.hero-copy { max-width: 590px; margin-bottom: 2rem; color: rgba(255,255,255,.88); font-size: 1.15rem; line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.25rem; margin-top: 2.2rem; color: rgba(255,255,255,.82); font-size: .9rem; font-weight: 700; }
.hero-trust span { display: inline-flex; align-items: center; gap: .45rem; }

.division-overlap { position: relative; z-index: 4; margin-top: -74px; }
.division-card {
  height: 100%;
  border-radius: var(--vincent-radius);
  padding: 2rem;
  color: #fff;
  box-shadow: var(--vincent-shadow);
  overflow: hidden;
  position: relative;
}
.division-card::after { content: ""; position: absolute; width: 250px; height: 250px; right: -110px; bottom: -140px; border-radius: 50%; background: rgba(255,255,255,.07); }
.division-card.garage { background: linear-gradient(135deg, #111416, #24282c); }
.division-card.service { background: linear-gradient(135deg, #df1c24, #af0e14); }
.division-icon {
  width: 62px;
  height: 62px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 17px;
  margin-bottom: 1.1rem;
}
.division-icon .site-icon { width: 32px; height: 32px; }
.division-card h2 { margin-bottom: .25rem; font-size: 1.6rem; font-weight: 900; font-style: italic; text-transform: uppercase; }
.division-subtitle { color: rgba(255,255,255,.72); font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.division-card p { max-width: 540px; color: rgba(255,255,255,.8); }

.service-card {
  height: 100%;
  background: #fff;
  border: 1px solid var(--vincent-border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(15,23,42,.05);
  transition: transform .18s ease, box-shadow .18s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 18px 38px rgba(15,23,42,.10); }
.service-card-media {
  position: relative;
  height: 185px;
  background: linear-gradient(135deg, #202429, #0f1113);
  overflow: visible;
}
.service-card-media img { width: 100%; height: 100%; object-fit: cover; }
.service-card-media.icon-media { display: grid; place-items: center; background: radial-gradient(circle at 65% 20%, #32383e, #121416 65%); }
.service-card-media.icon-media > .site-icon {
  width: 72px;
  height: 72px;
  color: #fff;
  opacity: .95;
}
.service-card-icon {
  position: absolute;
  z-index: 2;
  left: 1rem;
  bottom: -22px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--vincent-red);
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 7px 20px rgba(0,0,0,.15);
}
.service-card-icon .site-icon {
  width: 23px;
  height: 23px;
  color: var(--vincent-red);
  opacity: 1;
}
.service-card-body { padding: 2rem 1.1rem 1.3rem; }
.service-card h3 { margin-bottom: .5rem; font-size: 1.08rem; font-weight: 850; }
.service-card p { margin-bottom: 0; color: var(--vincent-muted); font-size: .92rem; line-height: 1.55; }

.split-feature { border-radius: 24px; overflow: hidden; box-shadow: var(--vincent-shadow); }
.split-feature.garage { color: #fff; background: linear-gradient(135deg, #121416, #242a2f); }
.split-feature.service { color: #fff; background: linear-gradient(135deg, #dc1820, #a80d13); }
.split-feature-copy { padding: 2.2rem; }
.split-feature h2 { font-size: 2rem; font-weight: 900; font-style: italic; text-transform: uppercase; }
.split-feature p { color: rgba(255,255,255,.82); }
.feature-list { margin: 1.25rem 0 1.6rem; padding: 0; list-style: none; }
.feature-list li { display: flex; gap: .55rem; align-items: center; margin-bottom: .65rem; color: rgba(255,255,255,.92); }
.feature-list .site-icon { color: #ff5b61; }
.split-gallery { display: flex; gap: .7rem; padding: .9rem; height: 100%; overflow: hidden; }
.split-gallery img {
  flex: 1 1 0;
  width: 0;
  min-width: 0;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  border-radius: 15px;
  transition: flex-grow .35s ease, opacity .35s ease, filter .35s ease;
}

@media (min-width: 992px) {
  .split-gallery:hover img { flex-grow: .65; opacity: .78; filter: saturate(.82) brightness(.9); }
  .split-gallery img:hover { flex-grow: 2.7; opacity: 1; filter: none; }
}

.stat-strip { background: #fff; border: 1px solid var(--vincent-border); border-radius: 18px; box-shadow: 0 10px 30px rgba(0,0,0,.05); }
.stat-item { text-align: center; padding: 1.6rem 1rem; height: 100%; }
.stat-item .site-icon { width: 30px; height: 30px; color: var(--vincent-red); margin-bottom: .65rem; }
.stat-number { display: block; color: #15181c; font-size: 1.7rem; font-weight: 950; line-height: 1; }
.stat-label { display: block; margin-top: .35rem; color: var(--vincent-muted); font-size: .78rem; font-weight: 700; }

.page-hero {
  min-height: 390px;
  position: relative;
  display: flex;
  align-items: center;
  color: #fff;
  background: #111 url('../images/slide/hero-sunset.webp') center 54% / cover no-repeat;
}
.page-hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,10,12,.92), rgba(8,10,12,.63) 45%, rgba(8,10,12,.1) 80%); }
.page-hero .container-xl { position: relative; z-index: 1; }
.page-hero h1 { margin: 0 0 1rem; font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 950; letter-spacing: -.055em; text-transform: uppercase; }
.page-hero p { max-width: 620px; margin-bottom: 0; color: rgba(255,255,255,.86); font-size: 1.12rem; line-height: 1.65; }
.page-hero-badges { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.5rem; }
.page-hero-badges span { display: inline-flex; align-items: center; gap: .45rem; font-size: .88rem; font-weight: 800; }

.service-group { padding: 2rem; background: #fff; border: 1px solid var(--vincent-border); border-radius: 22px; box-shadow: 0 12px 35px rgba(15,23,42,.06); }
.service-group-header { display: flex; gap: 1.2rem; align-items: center; justify-content: space-between; margin-bottom: 1.6rem; }
.service-group-brand { display: flex; gap: 1rem; align-items: center; }
.service-group-logo { width: 66px; height: 66px; display: grid; place-items: center; border-radius: 18px; color: #fff; background: #15181b; }
.service-group-logo.service { background: var(--vincent-red); }
.service-group-logo .site-icon { width: 34px; height: 34px; }
.service-group h2 { margin: 0; font-size: 1.7rem; font-weight: 950; font-style: italic; text-transform: uppercase; }
.service-group small { display: block; margin-top: .25rem; color: var(--vincent-muted); font-weight: 750; text-transform: uppercase; letter-spacing: .05em; }

.cta-band { padding: 1.5rem; color: #fff; border-radius: 18px; background: #14171a; }
.cta-band .cta-phone { color: #fff; background: var(--vincent-red); border-radius: 11px; padding: .85rem 1.25rem; text-decoration: none; font-size: 1.25rem; font-weight: 900; }

.about-story-card { background: #fff; border: 1px solid var(--vincent-border); border-radius: 20px; padding: 2rem; box-shadow: 0 12px 30px rgba(0,0,0,.05); }
.about-gallery { display: grid; grid-template-columns: repeat(12, 1fr); gap: .8rem; }
.about-gallery figure { margin: 0; overflow: hidden; border-radius: 15px; position: relative; min-height: 220px; }
.about-gallery figure:nth-child(1) { grid-column: span 7; }
.about-gallery figure:nth-child(2) { grid-column: span 5; }
.about-gallery figure:nth-child(3), .about-gallery figure:nth-child(4), .about-gallery figure:nth-child(5) { grid-column: span 4; }
.about-gallery img { width: 100%; height: 100%; object-fit: cover; }
.about-gallery figcaption { position: absolute; inset: auto 0 0; padding: 1.4rem 1rem .9rem; color: #fff; font-size: .82rem; font-weight: 800; background: linear-gradient(transparent, rgba(0,0,0,.75)); }

.contact-division-card { height: 100%; padding: 2rem; border-radius: 20px; color: #fff; box-shadow: var(--vincent-shadow); }
.contact-division-card.garage { background: linear-gradient(135deg, #111417, #252a2f); }
.contact-division-card.service { background: linear-gradient(135deg, #dd1820, #ad0e14); }
.contact-division-card h2 { font-size: 1.8rem; font-weight: 950; font-style: italic; text-transform: uppercase; }
.contact-row { display: flex; align-items: flex-start; gap: .75rem; padding: .85rem 0; border-bottom: 1px solid rgba(255,255,255,.14); }
.contact-row:last-of-type { border-bottom: 0; }
.contact-row .site-icon { width: 22px; height: 22px; margin-top: .15rem; }
.contact-row a { color: #fff; text-decoration: none; }

.form-shell { padding: 2rem; background: #fff; border: 1px solid var(--vincent-border); border-radius: 20px; box-shadow: 0 12px 30px rgba(0,0,0,.06); }
.form-shell h2 { font-size: 1.4rem; font-weight: 900; }
.form-label { font-size: .82rem; font-weight: 800; }
.form-control, .form-select { min-height: 50px; border-color: #d9dde2; border-radius: 9px; }
.form-control:focus, .form-select:focus { border-color: #e56d71; box-shadow: 0 0 0 .2rem rgba(215,25,32,.11); }
textarea.form-control { min-height: 150px; }
.form-section { border: 1px solid var(--vincent-border); border-radius: 15px; padding: 1.35rem; margin-bottom: 1rem; background: #fff; }
.form-section-title { display: flex; align-items: center; gap: .55rem; margin-bottom: 1.25rem; font-size: 1rem; font-weight: 900; text-transform: uppercase; }
.form-section-title .site-icon { color: var(--vincent-red); }
.required { color: var(--vincent-red); }
.alert-vincent { border: 0; border-left: 4px solid var(--vincent-red); border-radius: 10px; }

.signature-pad { border: 1px solid #d9dde2; border-radius: 10px; overflow: hidden; background: #fff; }
.signature-pad canvas { display: block; width: 100%; height: 220px; background: #fff; touch-action: none; }
.signature-pad-footer { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: .65rem .85rem; color: var(--vincent-muted); background: #f7f8f9; border-top: 1px solid #e4e7ea; font-size: .82rem; }

.map-frame { width: 100%; min-height: 430px; border: 0; border-radius: 18px; }

.site-footer { color: #d9dde1; background: #111416; }
.footer-logo { width: 195px; filter: drop-shadow(0 0 0 rgba(0,0,0,0)); }
.footer-copy { color: #aeb5bc; line-height: 1.6; }
.footer-heading { margin-bottom: 1.1rem; color: #fff; font-size: .82rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.footer-link, .site-footer a { color: #e8ebed; text-decoration: none; }
.site-footer a:hover { color: #fff; }
.footer-contact-item { display: flex; gap: .7rem; align-items: flex-start; font-size: .9rem; }
.footer-contact-item .site-icon { margin-top: .15rem; color: #fff; }
.footer-contact-item a { display: block; font-weight: 800; }
.footer-contact-item small { display: block; color: #ff555b; font-size: .72rem; font-weight: 700; }
.division-footer-link { display: flex; align-items: center; justify-content: space-between; gap: .8rem; padding: .85rem 0; border-bottom: 1px solid #2b3035; }
.division-footer-link strong { display: block; color: #fff; }
.division-footer-link small { display: block; color: #aeb5bc; font-size: .74rem; }
.footer-service-hours { color: #fff; font-size: 1.05rem; font-weight: 900; }
.footer-bottom { border-top: 1px solid #2c3136; padding: 1rem 0; color: #9098a0; font-size: .78rem; }
.footer-mini-nav { display: flex; flex-wrap: wrap; gap: 1rem; }
.footer-mini-nav a { color: #aeb5bc; }

.mobile-call-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 1040; display: grid; grid-template-columns: 1fr 1fr; box-shadow: 0 -5px 20px rgba(0,0,0,.18); }
.mobile-call-bar a { padding: .75rem .35rem; color: #fff; text-align: center; text-decoration: none; font-size: .72rem; }
.mobile-call-bar a strong { display: block; font-size: .78rem; }
.mobile-call-garage { background: #181b1e; }
.mobile-call-service { background: var(--vincent-red); }

@media (max-width: 1199.98px) {
  .site-header .navbar { min-height: 72px; }
  .navbar-brand img { width: 190px; }
  .navbar-collapse { padding: 1rem 0 1.2rem; }
  .header-call-group { width: 100%; gap: .65rem; }
  .header-garage-call,
  .header-service-call { flex: 1 1 0; min-width: 0; border-radius: 10px; }
}
@media (max-width: 991.98px) {
  body { padding-bottom: 58px; }
  .hero-home { min-height: 580px; background-position: 61% center; }
  .hero-home::before { background: rgba(7,9,11,.67); }
  .division-overlap { margin-top: -38px; }
  .split-gallery { display: grid; grid-template-columns: 1fr; }
  .split-gallery img { width: 100%; height: 100%; }
  .service-group-header { align-items: flex-start; flex-direction: column; }
  .about-gallery figure, .about-gallery figure:nth-child(n) { grid-column: span 6; }
}
@media (max-width: 767.98px) {
    .header-call-group {
        flex-direction: column;
    }

    .section-pad {
        padding: 64px 0;
    }

    .hero-home {
        min-height: 620px;
        background-image: url('../images/slide/hero-sunset-mobile.webp');
    }

    .page-hero {
        min-height: 360px;
        background-image: url('../images/slide/hero-sunset-mobile.webp');
    }

    .hero-title {
        font-size: clamp(2.85rem, 15vw, 4.35rem);
    }

    .hero-copy {
        font-size: 1rem;
    }

    .division-card {
        padding: 1.5rem;
    }

    .service-group {
        padding: 1.15rem;
    }

        .service-group h2 {
            font-size: 1.55rem;
        }

    .service-group-logo {
        width: 54px;
        height: 54px;
    }

    .form-shell {
        padding: 1.15rem;
    }

    .about-gallery figure,
    .about-gallery figure:nth-child(n) {
        grid-column: span 12;
    }
}

.footer-socials {
    margin-top: .25rem;
}

.footer-social-link {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #252a2f;
    border-radius: 50%;
    text-decoration: none;
    transition: background .18s ease, transform .18s ease;
}

    .footer-social-link svg {
        width: 20px;
        height: 20px;
    }

    .footer-social-link:hover {
        color: #fff;
        background: var(--vincent-red);
        transform: translateY(-2px);
    }