:root{
  --black:#111;
  --dark:#1b1b1b;
  --red:#b00020;
  --red-dark:#850017;
  --light:#f4f4f4;
  --white:#fff;
  --gray:#707070;
  --border:#d8d8d8;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}

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

body{
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  background:var(--light);
  color:#222;
  line-height:1.55;
}

a{color:inherit}

.skip-link{
  position:absolute;
  left:-9999px;
  top:8px;
  z-index:999;
  background:#fff;
  color:#111;
  padding:10px 14px;
  border-radius:4px;
}
.skip-link:focus{left:8px}

.wrap{
  width:min(1200px,100%);
  margin:0 auto;
  padding:38px 18px;
}

.topbar{
  background:#000;
  color:#fff;
  padding:8px 18px;
  text-align:center;
  font-size:14px;
}
.topbar a{
  color:#fff;
  font-weight:bold;
  text-decoration:none;
}

.site-header{
  background:linear-gradient(135deg,#111,#2b2b2b);
  color:#fff;
  text-align:center;
}
.header-inner{padding-top:28px;padding-bottom:28px}
.site-header h1{
  margin:0;
  font-size:38px;
  letter-spacing:1px;
}
.site-header p{
  margin:8px 0 0;
  color:#ddd;
  font-size:17px;
}

.main-nav{
  position:sticky;
  top:0;
  z-index:50;
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  background:var(--red);
  box-shadow:0 2px 8px rgba(0,0,0,.18);
}
.main-nav a{
  color:#fff;
  text-decoration:none;
  padding:14px 16px;
  font-weight:bold;
}
.main-nav a:hover,
.main-nav a:focus{background:var(--red-dark)}



/* Homepage logo section — matches the supplied screenshot layout */
.home-brand-hero{
  background:#080808;
  color:#fff;
  text-align:center;
}
.home-brand-inner{
  padding-top:16px;
  padding-bottom:24px;
}
.home-logo{
  display:block;
  width:min(340px,78vw);
  height:auto;
  margin:0 auto 12px;
  object-fit:contain;
}
.brand-tagline{
  margin:0 auto;
  padding:0 10px;
  max-width:900px;
  color:#f4f4f4;
  font-size:18px;
  line-height:1.45;
  font-weight:700;
}

.pricing-promise{
  max-width:900px;
  margin:18px auto 0;
  padding:16px 18px;
  border:2px solid #d10a24;
  border-radius:9px;
  background:#fff;
  color:#111;
  box-shadow:0 4px 16px rgba(0,0,0,.28);
}
.pricing-promise strong{
  display:block;
  color:var(--red);
  font-size:22px;
  line-height:1.25;
}
.pricing-promise p{
  margin:7px 0 0;
  font-size:17px;
  font-weight:800;
  line-height:1.35;
}
.pricing-promise span{
  padding:0 8px;
}

.benefit-strip{
  border-top:1px solid #252525;
  background:#080808;
}
.benefit-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:34px;
  padding-top:22px;
  padding-bottom:24px;
  text-align:left;
}
.benefit-item{
  display:flex;
  align-items:flex-start;
  gap:14px;
}
.benefit-icon{
  flex:0 0 54px;
  width:54px;
  height:54px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:#d10a24;
  color:#fff;
  font-size:29px;
  font-weight:900;
  line-height:1;
}
.benefit-item h2{
  margin:2px 0 5px;
  color:#fff;
  font-size:20px;
  line-height:1.2;
}
.benefit-item p{
  margin:0;
  color:#ededed;
  font-size:16px;
  line-height:1.45;
}

.hero{
  min-height:390px;
  display:flex;
  align-items:center;
  text-align:center;
  color:#fff;
  background:
    linear-gradient(rgba(0,0,0,.70),rgba(0,0,0,.70)),
    radial-gradient(circle at 20% 20%,#484848,#151515 58%,#080808);
}
.hero-inner{max-width:900px}
.eyebrow{
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:13px;
  font-weight:bold;
  color:#eee;
}
.hero h2{
  margin:8px 0 12px;
  font-size:42px;
  line-height:1.12;
}
.hero p{
  max-width:780px;
  margin:0 auto 22px;
  font-size:18px;
}
.hero-highlight{
  display:block;
  max-width:750px;
  margin:0 auto 18px;
  padding:10px 15px;
  background:rgba(176,0,32,.55);
  border:1px solid rgba(255,255,255,.35);
  border-radius:7px;
  color:#fff;
  text-align:center;
  font-size:16px;
  font-weight:bold;
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:8px;
}

.btn{
  display:inline-block;
  padding:11px 18px;
  margin:4px;
  border:2px solid transparent;
  border-radius:6px;
  text-decoration:none;
  font-weight:bold;
  cursor:pointer;
  font-size:15px;
}
.btn-red{background:var(--red);color:#fff}
.btn-red:hover,.btn-red:focus{background:var(--red-dark)}
.btn-dark{background:#222;color:#fff}
.btn-light{background:#fff;color:#111}
.btn-outline{
  background:#fff;
  border-color:#333;
  color:#222;
}

.section-heading{
  text-align:center;
  margin:0 0 28px;
}
.section-heading h2{
  margin:0 0 8px;
  font-size:31px;
}
.section-heading p{
  margin:0;
  color:#666;
}
.section-heading.light h2,
.section-heading.light p{color:#fff}

.inventory-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:22px;
}
.vehicle-card{
  background:#fff;
  border-radius:9px;
  overflow:hidden;
  box-shadow:0 3px 14px rgba(0,0,0,.12);
}
.vehicle-media{
  position:relative;
  height:360px;
  min-height:360px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  background:#111;
}
.vehicle-media img{
  display:block;
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:center center;
  background:#111;
}
.badge{
  position:absolute;
  top:12px;
  left:12px;
  z-index:3;
  background:var(--red);
  color:#fff;
  padding:7px 10px;
  border-radius:4px;
  font-weight:bold;
  font-size:12px;
}
.gallery-button{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:4;
  width:38px;
  height:46px;
  border:0;
  border-radius:5px;
  background:rgba(0,0,0,.62);
  color:#fff;
  font-size:30px;
  line-height:1;
  cursor:pointer;
}
.gallery-button:disabled{display:none}
.gallery-prev{left:8px}
.gallery-next{right:8px}
.gallery-count{
  position:absolute;
  right:10px;
  bottom:10px;
  z-index:3;
  background:rgba(0,0,0,.68);
  color:#fff;
  padding:4px 8px;
  border-radius:4px;
  font-size:12px;
}
.vehicle-body{padding:17px}
.vehicle-card h3{
  margin:0 0 8px;
  font-size:21px;
}
.price{
  color:var(--red);
  font-size:27px;
  font-weight:bold;
  margin:6px 0 12px;
}
.details{
  line-height:1.65;
  font-size:14px;
}
.payment{
  background:#f3f3f3;
  border-left:4px solid var(--red);
  padding:10px 12px;
  margin:12px 0;
  font-weight:bold;
}
.actions{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
}
.actions .btn{
  margin:0;
  padding:9px 13px;
  font-size:14px;
}
.more-vehicles-box{
  max-width:750px;
  margin:30px auto 10px;
  padding:18px 20px;
  background:#fff;
  border-left:5px solid var(--red);
  border-radius:8px;
  text-align:center;
  box-shadow:0 3px 12px rgba(0,0,0,.10);
}
.more-vehicles-box strong{
  display:block;
  font-size:20px;
  margin-bottom:5px;
}
.more-vehicles-box p{
  margin:0;
  color:#555;
}

.finance-section{
  background:#151515;
  color:#fff;
}
.financing-notice{
  max-width:750px;
  margin:20px auto;
  padding:20px;
  background:#f5f5f5;
  color:#111;
  border-left:5px solid var(--red);
  border-radius:8px;
  text-align:center;
}
.financing-notice strong{
  display:block;
  font-size:20px;
  margin-bottom:8px;
}
.financing-notice p{
  margin:0;
  line-height:1.5;
}
.finance-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:18px;
}
.finance-card{
  background:#252525;
  border-radius:8px;
  padding:22px;
  border-top:4px solid var(--red);
}
.finance-card h3{margin-top:0}

.two-col{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:26px;
}
.card{
  background:#fff;
  padding:24px;
  border-radius:8px;
  box-shadow:0 3px 12px rgba(0,0,0,.08);
}
.card h3{margin-top:0}
.text-center{text-align:center}
.buying-steps{
  max-width:560px;
  margin:18px auto;
  padding-left:26px;
}
.buying-steps li{margin:7px 0}
.contact-section{background:#ececec}
.contact-list{line-height:1.7}
.contact-note{font-size:13px;color:#666;font-weight:700}
.stack-actions{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:6px;
}
.policy-wrap{max-width:900px}
.policy-card h3{margin-top:28px}

.footer{
  background:#0d0d0d;
  color:#ddd;
  text-align:center;
  padding:28px 18px 84px;
  font-size:14px;
}
.footer a{color:#fff}

.mobile-sticky{
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  z-index:80;
  display:none;
  grid-template-columns:repeat(3,1fr);
  background:#111;
  box-shadow:0 -2px 12px rgba(0,0,0,.22);
}
.mobile-sticky a{
  color:#fff;
  text-align:center;
  text-decoration:none;
  padding:13px 5px;
  font-weight:bold;
  border-right:1px solid #333;
}

.back-top{
  position:fixed;
  right:16px;
  bottom:75px;
  z-index:75;
  width:44px;
  height:44px;
  border:0;
  border-radius:50%;
  background:#222;
  color:#fff;
  font-size:22px;
  cursor:pointer;
  display:none;
}
.back-top.show{display:block}


/* Vehicle photo zoom viewer - runs entirely in the browser; no tracking */
.zoomable-photo{
  cursor:zoom-in;
}
.zoomable-photo:focus-visible{
  outline:3px solid #fff;
  outline-offset:-5px;
}
body.lightbox-open{
  overflow:hidden;
}
.photo-lightbox{
  position:fixed;
  inset:0;
  z-index:1000;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(0,0,0,.94);
  padding:64px 72px 86px;
}
.photo-lightbox[hidden]{
  display:none!important;
}
.lightbox-stage{
  width:100%;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  touch-action:none;
  user-select:none;
  cursor:default;
}
.lightbox-stage.is-dragging{
  cursor:grabbing;
}
#lightboxImage{
  display:block;
  max-width:100%;
  max-height:100%;
  width:auto;
  height:auto;
  object-fit:contain;
  transform-origin:center center;
  transition:transform .12s ease-out;
  will-change:transform;
  user-select:none;
  -webkit-user-drag:none;
}
#lightboxImage.is-zoomed{
  cursor:grab;
}
.lightbox-close,
.lightbox-nav,
.lightbox-toolbar button{
  border:1px solid rgba(255,255,255,.45);
  background:rgba(20,20,20,.82);
  color:#fff;
  cursor:pointer;
}
.lightbox-close{
  position:absolute;
  top:14px;
  right:18px;
  z-index:1002;
  width:48px;
  height:48px;
  border-radius:50%;
  font-size:34px;
  line-height:1;
}
.lightbox-nav{
  position:absolute;
  top:50%;
  z-index:1002;
  width:48px;
  height:68px;
  transform:translateY(-50%);
  border-radius:7px;
  font-size:38px;
  line-height:1;
}
.lightbox-prev{left:14px}
.lightbox-next{right:14px}
.lightbox-toolbar{
  position:absolute;
  left:50%;
  bottom:18px;
  z-index:1002;
  display:flex;
  align-items:center;
  gap:8px;
  transform:translateX(-50%);
  padding:7px;
  border-radius:9px;
  background:rgba(0,0,0,.72);
  color:#fff;
  white-space:nowrap;
}
.lightbox-toolbar button{
  min-width:42px;
  height:38px;
  border-radius:5px;
  padding:0 11px;
  font-size:18px;
  font-weight:bold;
}
#zoomLevel{
  min-width:54px;
  text-align:center;
  font-size:14px;
  font-weight:bold;
}
.lightbox-count{
  position:absolute;
  top:20px;
  left:20px;
  z-index:1002;
  padding:6px 10px;
  border-radius:5px;
  background:rgba(0,0,0,.72);
  color:#fff;
  font-size:14px;
  font-weight:bold;
}

@media(max-width:750px){
  .photo-lightbox{
    padding:60px 10px 88px;
  }
  .lightbox-nav{
    top:auto;
    bottom:18px;
    width:42px;
    height:44px;
    transform:none;
    font-size:30px;
  }
  .lightbox-prev{left:10px}
  .lightbox-next{right:10px}
  .lightbox-toolbar{
    bottom:18px;
    gap:5px;
    padding:5px;
  }
  .lightbox-toolbar button{
    min-width:36px;
    height:42px;
    padding:0 8px;
    font-size:17px;
  }
  #zoomLevel{min-width:46px;font-size:13px}
  .lightbox-close{
    top:10px;
    right:10px;
    width:44px;
    height:44px;
  }
  .lightbox-count{
    top:15px;
    left:12px;
  }
}

@media(max-width:750px){
  .home-brand-inner{padding-top:12px;padding-bottom:18px}
  .home-logo{width:min(300px,84vw);margin-bottom:10px}
  .brand-tagline{font-size:16px}
  .pricing-promise{margin-top:14px;padding:13px 12px}
  .pricing-promise strong{font-size:18px}
  .pricing-promise p{font-size:15px}
  .pricing-promise span{padding:0 4px}
  .benefit-grid{grid-template-columns:1fr;gap:18px;padding-top:20px;padding-bottom:22px}
  .benefit-item{max-width:520px;width:100%;margin:0 auto}
  .benefit-icon{flex-basis:48px;width:48px;height:48px;font-size:25px}
  .benefit-item h2{font-size:18px}
  .benefit-item p{font-size:15px}
  .site-header h1{font-size:30px}
  .hero{min-height:340px}
  .hero h2{font-size:32px}
  .hero p{font-size:16px}
  .two-col{grid-template-columns:1fr}
  .main-nav a{padding:12px 9px;font-size:13px}
  .mobile-sticky{display:grid}
  .footer{padding-bottom:90px}
}

@media(max-width:420px){
  .site-header h1{font-size:27px}
  .hero h2{font-size:28px}
  .wrap{padding-left:14px;padding-right:14px}
}

/* Inventory verification notice */
.inventory-disclaimer{
  max-width:900px;
  margin:18px auto 0;
  padding:0 12px;
  text-align:center;
  color:#555;
  font-size:13px;
  line-height:1.5;
}


/* Private preview logout control */
.preview-logout{
  position:fixed;
  top:10px;
  right:10px;
  z-index:2000;
  border:2px solid #fff;
  border-radius:6px;
  background:#111;
  color:#fff;
  padding:8px 12px;
  font-size:13px;
  font-weight:700;
  cursor:pointer;
  box-shadow:0 2px 10px rgba(0,0,0,.28);
}
.preview-logout:hover,.preview-logout:focus{background:#850017}
@media(max-width:750px){
  .preview-logout{top:auto;right:10px;bottom:62px;padding:7px 10px}
}
