
:root{
  --red:#e30613;
  --red-dark:#b7040e;
  --black:#0b0b0c;
  --charcoal:#151517;
  --gray:#707078;
  --light:#f5f5f6;
  --white:#ffffff;
  --border:#e6e6e8;
  --green:#0f9b50;
  --shadow:0 20px 60px rgba(0,0,0,.10);
  --radius:22px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Manrope",Arial,sans-serif;
  color:var(--black);
  background:var(--white);
}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}
.container{width:min(1180px,calc(100% - 40px));margin-inline:auto}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(0,0,0,.06);
}
.nav-wrap{
  min-height:88px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.brand img{
  width:210px;
  height:72px;
  object-fit:contain;
}
.main-nav{
  display:flex;
  align-items:center;
  gap:30px;
  font-weight:700;
  font-size:14px;
}
.main-nav a{
  position:relative;
  padding:34px 0;
}
.main-nav a::after{
  content:"";
  position:absolute;
  left:0;right:0;bottom:24px;
  height:2px;
  background:var(--red);
  transform:scaleX(0);
  transition:.2s ease;
}
.main-nav a:hover::after{transform:scaleX(1)}

.menu-toggle{
  display:none;
  border:0;
  background:none;
  padding:10px;
}
.menu-toggle span{
  display:block;
  width:24px;height:2px;
  background:var(--black);
  margin:5px 0;
}

.hero{
  min-height:630px;
  position:relative;
  display:flex;
  align-items:center;
  background:
    linear-gradient(90deg,rgba(0,0,0,.86) 0%,rgba(0,0,0,.55) 46%,rgba(0,0,0,.16) 72%),
    url("https://images.unsplash.com/photo-1504215680853-026ed2a45def?auto=format&fit=crop&w=1800&q=85") center/cover;
  color:var(--white);
  overflow:hidden;
}
.hero::before{
  content:"";
  position:absolute;
  width:500px;height:500px;
  border-radius:50%;
  background:rgba(227,6,19,.18);
  filter:blur(60px);
  right:-120px;bottom:-170px;
}
.hero-content{position:relative;z-index:2}
.hero-copy{max-width:680px}
.eyebrow{
  font-weight:800;
  letter-spacing:.18em;
  font-size:12px;
  color:#ff6972;
  margin:0 0 16px;
}
.eyebrow.dark{color:var(--red)}
.hero h1{
  font-size:clamp(48px,7vw,88px);
  line-height:.95;
  letter-spacing:-.055em;
  margin:0;
  max-width:780px;
}
.hero-text{
  margin:24px 0 30px;
  color:rgba(255,255,255,.82);
  max-width:620px;
  font-size:18px;
  line-height:1.65;
}
.hero-actions{display:flex;gap:12px;flex-wrap:wrap}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:0 22px;
  border-radius:12px;
  font-weight:800;
  font-size:14px;
  border:1px solid transparent;
  cursor:pointer;
  transition:.2s ease;
}
.btn:hover{transform:translateY(-2px)}
.btn-primary{
  background:var(--red);
  color:var(--white);
  box-shadow:0 10px 30px rgba(227,6,19,.25);
}
.btn-primary:hover{background:var(--red-dark)}
.btn-dark{
  color:var(--white);
  border-color:rgba(255,255,255,.36);
  background:rgba(0,0,0,.26);
}
.btn-full{width:100%}
.hero-points{
  display:flex;
  gap:24px;
  flex-wrap:wrap;
  margin-top:34px;
  color:rgba(255,255,255,.74);
  font-size:13px;
}

.section{padding:96px 0}
.inventory-section{background:#fff}
.section-heading{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:24px;
  margin-bottom:34px;
}
.section-heading h2,
.split-section h2,
.sell-section h2,
.contact-section h2{
  font-size:clamp(34px,5vw,54px);
  letter-spacing:-.045em;
  margin:0;
}
.text-link{
  font-weight:800;
  color:var(--red);
  font-size:14px;
}

.vehicle-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
.vehicle-card{
  border:1px solid var(--border);
  border-radius:var(--radius);
  overflow:hidden;
  background:#fff;
  box-shadow:0 8px 24px rgba(0,0,0,.04);
  transition:.25s ease;
}
.vehicle-card:hover{
  transform:translateY(-7px);
  box-shadow:var(--shadow);
}
.vehicle-image{
  height:270px;
  position:relative;
  background-size:cover;
  background-position:center;
}
.vehicle-1{background-image:url("https://images.unsplash.com/photo-1549317661-bd32c8ce0db2?auto=format&fit=crop&w=900&q=80")}
.vehicle-2{background-image:url("https://images.unsplash.com/photo-1542282088-72c9c27ed0cd?auto=format&fit=crop&w=900&q=80")}
.vehicle-3{background-image:url("https://images.unsplash.com/photo-1542362567-b07e54358753?auto=format&fit=crop&w=900&q=80")}
.badge{
  position:absolute;
  left:16px;top:16px;
  padding:8px 11px;
  border-radius:999px;
  color:#fff;
  background:var(--red);
  font-size:11px;
  font-weight:800;
}
.badge-dark{background:var(--black)}
.vehicle-body{padding:22px}
.vehicle-brand{
  color:var(--red);
  font-size:11px;
  font-weight:800;
  letter-spacing:.14em;
  margin:0 0 8px;
}
.vehicle-body h3{
  font-size:22px;
  margin:0 0 14px;
}
.vehicle-specs{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  color:var(--gray);
  font-size:12px;
}
.vehicle-specs span{
  border:1px solid var(--border);
  border-radius:999px;
  padding:7px 9px;
}
.vehicle-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  margin-top:24px;
  border-top:1px solid var(--border);
  padding-top:18px;
}
.vehicle-bottom strong{font-size:20px}
.vehicle-bottom a{color:var(--red);font-weight:800;font-size:13px}

.split-section{
  background:var(--light);
}
.split-grid{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:22px;
}
.info-card{
  min-height:390px;
  padding:48px;
  border-radius:var(--radius);
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:center;
}
.info-dark{
  background:
    radial-gradient(circle at 90% 0%,rgba(227,6,19,.25),transparent 38%),
    var(--black);
  color:#fff;
}
.info-dark p:not(.eyebrow){
  max-width:560px;
  color:rgba(255,255,255,.72);
  line-height:1.7;
  margin:20px 0 26px;
}
.finance-box{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:28px;
  display:grid;
  gap:14px;
}
.finance-stat{
  background:var(--light);
  padding:24px;
  border-radius:16px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
}
.finance-stat small{color:var(--gray);font-weight:700}
.finance-stat strong{font-size:17px;text-align:right}

.sell-section{background:#fff}
.sell-grid{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:64px;
  align-items:center;
}
.lead{
  color:var(--gray);
  line-height:1.8;
  font-size:16px;
  max-width:540px;
}
.sell-checks{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
  margin-top:28px;
}
.sell-checks span{
  border:1px solid var(--border);
  border-radius:12px;
  padding:14px;
  font-size:13px;
  font-weight:700;
}
.lead-form{
  background:var(--light);
  padding:30px;
  border-radius:var(--radius);
  border:1px solid var(--border);
}
.field-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
}
label{
  display:grid;
  gap:7px;
  font-size:12px;
  font-weight:800;
  margin-bottom:14px;
}
input,textarea{
  width:100%;
  border:1px solid #d9d9dd;
  background:#fff;
  border-radius:11px;
  padding:14px 15px;
  font:inherit;
  outline:none;
}
input:focus,textarea:focus{
  border-color:var(--red);
  box-shadow:0 0 0 3px rgba(227,6,19,.08);
}
textarea{resize:vertical}

.contact-section{
  padding:90px 0;
  background:var(--black);
  color:#fff;
}
.contact-grid{
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:46px;
  align-items:center;
}
.contact-copy{
  color:rgba(255,255,255,.68);
  line-height:1.7;
  max-width:520px;
}
.contact-list{
  list-style:none;
  padding:0;
  margin:30px 0;
  display:grid;
  gap:18px;
}
.contact-list li{
  display:grid;
  gap:4px;
}
.contact-list strong{
  color:#ff6972;
  font-size:11px;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.contact-list span,
.contact-list a{color:rgba(255,255,255,.86)}
.map-card{
  height:410px;
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.14);
}
.map-card iframe{
  width:100%;height:100%;border:0;
}

.site-footer{
  background:#080809;
  color:rgba(255,255,255,.62);
  border-top:1px solid rgba(255,255,255,.08);
}
.footer-wrap{
  min-height:110px;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:20px;
}
.footer-wrap img{
  width:145px;
  filter:brightness(0) invert(1);
  opacity:.88;
}
.footer-wrap p{font-size:12px;margin:0;text-align:center}
.footer-wrap a{
  justify-self:end;
  color:#fff;
  font-weight:700;
  font-size:12px;
}

.floating-whatsapp{
  position:fixed;
  right:22px;
  bottom:22px;
  width:58px;height:58px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:#25D366;
  color:#fff;
  font-weight:900;
  box-shadow:0 14px 34px rgba(0,0,0,.22);
  z-index:60;
}

@media (max-width: 900px){
  .menu-toggle{display:block}
  .main-nav{
    position:absolute;
    top:88px;
    left:0;right:0;
    display:none;
    flex-direction:column;
    align-items:stretch;
    background:#fff;
    padding:20px;
    border-bottom:1px solid var(--border);
  }
  .main-nav.open{display:flex}
  .main-nav a{padding:12px 4px}
  .main-nav a::after{display:none}
  .hero{min-height:590px}
  .vehicle-grid{grid-template-columns:1fr 1fr}
  .split-grid,.sell-grid,.contact-grid{grid-template-columns:1fr}
  .contact-grid{gap:30px}
  .footer-wrap{grid-template-columns:1fr;text-align:center;padding:24px 0}
  .footer-wrap img,.footer-wrap a{justify-self:center}
}
@media (max-width: 640px){
  .container{width:min(100% - 24px,1180px)}
  .nav-wrap{min-height:76px}
  .brand img{width:165px;height:58px}
  .main-nav{top:76px}
  .hero{min-height:620px;background-position:62% center}
  .hero-copy{padding:40px 0}
  .hero h1{font-size:52px}
  .hero-text{font-size:15px}
  .hero-actions .btn{width:100%}
  .hero-points{gap:12px}
  .section{padding:68px 0}
  .section-heading{align-items:flex-start;flex-direction:column}
  .vehicle-grid{grid-template-columns:1fr}
  .vehicle-image{height:240px}
  .info-card{padding:32px;min-height:350px}
  .sell-grid{gap:30px}
  .field-grid,.sell-checks{grid-template-columns:1fr}
  .lead-form{padding:20px}
  .map-card{height:330px}
}
