/* Basic reset and variables */
*{box-sizing:border-box}html{scroll-behavior:smooth}
:root{
  --bg:#0b0d10;
  --fg:#0f1115;
  --card:#161a20;
  --ink:#0a0a0a;
  --text:#0f172a;
  --muted:#6b7280;
  --brand:#d90429;
  --brand2:#1456cc;
  --surface:#ffffff;
  --shadow:0 10px 30px rgba(0,0,0,.12);
}
body{margin:0;font-family:'Inter',system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,'Helvetica Neue',Arial,'Noto Sans',sans-serif;color:#0b0d10;background:#fff;}

/* Layout helpers */
.container{max-width:1100px;margin:0 auto;padding:0 20px}
.section{padding:64px 0}
.section.alt{background:#f7f8fb}
.grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(260px,1fr));gap:18px}
.cols{display:grid;grid-template-columns:1.2fr 1fr;gap:24px}
@media (max-width:900px){.cols{grid-template-columns:1fr}}

/* Header */
.site-header{position:sticky;top:0;background:#fff;border-bottom:1px solid #eef1f4;z-index:1000}
.site-header .nav{display:flex;align-items:center;justify-content:space-between;height:64px}
.brand{display:flex;align-items:center;gap:10px;font-weight:800;text-decoration:none;color:#111}
.brand img{height:34px;width:auto}
.site-header nav a{margin-left:16px;text-decoration:none;color:#111;font-weight:600}
.site-header nav a.btn{margin-left:22px}

/* Hero */
.hero{background:linear-gradient(180deg,#ffffff 0%,#f7f8fb 100%);padding:72px 0 48px}
.hero-inner{display:flex;flex-direction:column;gap:16px;align-items:flex-start}
.hero h1{font-size:clamp(28px,3.6vw,44px);line-height:1.15;margin:0}
.hero h1 span{color:var(--brand)}
.hero p{max-width:760px;color:#374151}
.hero .hero-cta{display:flex;gap:12px;flex-wrap:wrap;margin-top:8px}

.search-bar{display:flex;gap:10px;flex-wrap:wrap;margin-top:16px;background:#fff;border:1px solid #e5e7eb;border-radius:12px;padding:10px;box-shadow:var(--shadow)}
.search-bar input,.search-bar select{flex:1 1 200px;padding:12px 14px;border:1px solid #e5e7eb;border-radius:8px;font:inherit}
.search-bar .btn.small{padding:10px 14px}

/* Buttons */
.btn{display:inline-flex;align-items:center;justify-content:center;padding:12px 18px;border-radius:10px;border:1px solid #e5e7eb;text-decoration:none;color:#111;font-weight:700;cursor:pointer;background:#fff}
.btn:hover{transform:translateY(-1px)}
.btn.primary{background:linear-gradient(90deg,var(--brand),var(--brand2));color:#fff;border-color:transparent}
.btn.ghost{background:transparent}

/* Cards */
.card{background:#fff;border:1px solid #e5e7eb;border-radius:14px;padding:18px;box-shadow:var(--shadow)}
.ticks{padding-left:18px}
.ticks li{margin:6px 0}
.muted{color:#6b7280}

/* Inventory */
.vehicle{display:flex;flex-direction:column;border:1px solid #e5e7eb;border-radius:14px;overflow:hidden;background:#fff;box-shadow:var(--shadow)}
.vehicle img{width:100%;height:180px;object-fit:cover}
.vehicle .meta{padding:14px}
.vehicle h3{margin:0 0 6px 0}
.badges{display:flex;gap:8px;flex-wrap:wrap;margin:10px 0}
.badge{font-size:12px;border:1px solid #e5e7eb;padding:4px 8px;border-radius:999px}
.price{font-weight:800;font-size:18px}
.row{display:flex;align-items:center;gap:8px;justify-content:space-between}
.actions{display:flex;gap:8px;margin-top:10px}
.actions .btn{flex:1}

/* Contact / Map */
.map-embed iframe{width:100%;height:280px;border:0;border-radius:12px}

/* Footer */
.site-footer{padding:22px 0;border-top:1px solid #eef1f4;background:#fff}
.footer-inner{display:flex;align-items:center;justify-content:space-between;gap:12px}
.footer-brand{display:flex;align-items:center;gap:8px;font-weight:800}
.footer-brand img{height:26px}
@media (max-width:700px){.footer-inner{flex-direction:column}}
