:root{
  --bg:#070708;
  --card:#0f0f12;
  --text:#f6f6f7;
  --muted:#c7c7cc;
  --gold:#d4af37;
  --silver:#bfc3c7;
  --line:rgba(255,255,255,.10);
  --shadow: 0 14px 40px rgba(0,0,0,.55);
  --radius: 18px;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0;font-family:ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Arial; background:radial-gradient(1200px 700px at 20% 0%, rgba(212,175,55,.10), transparent 55%), radial-gradient(900px 600px at 85% 10%, rgba(191,195,199,.10), transparent 55%), var(--bg); color:var(--text);}
a{color:inherit;text-decoration:none}
.container{max-width:1120px;margin:0 auto;padding:0 18px}

/* Header */
.header{position:sticky;top:0;z-index:50;background:rgba(7,7,8,.75);backdrop-filter:blur(10px);border-bottom:1px solid var(--line)}
.nav{display:flex;align-items:center;justify-content:space-between;gap:16px; padding:14px 0}
.brand{display:flex;align-items:center;gap:10px}
.logo{
  width:40px;height:40px;border-radius:12px;
  background:linear-gradient(135deg, rgba(212,175,55,.95), rgba(191,195,199,.75));
  box-shadow:0 10px 24px rgba(212,175,55,.22);

  background-image: url('assets/logo.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.brand-title{line-height:1.05}
.brand-title strong{display:block;letter-spacing:.12em;font-size:13px;color:var(--silver)}
.brand-title span{display:block;font-weight:800;letter-spacing:.06em}
.menu{display:flex;align-items:center;gap:10px;flex-wrap:wrap;justify-content:flex-end}
.menu a{padding:10px 12px;border-radius:12px;border:1px solid transparent;color:var(--muted)}
.menu a:hover{border-color:var(--line);color:var(--text)}

/* Buttons */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:10px; padding:12px 16px;border-radius:14px;border:1px solid var(--line); background:rgba(255,255,255,.03); color:var(--text); cursor:pointer; transition:transform .08s ease, border-color .15s ease, background .15s ease}
.btn:hover{border-color:rgba(212,175,55,.45); background:rgba(212,175,55,.08)}
.btn:active{transform:translateY(1px)}
.btn-primary{border-color:rgba(212,175,55,.40); background:linear-gradient(180deg, rgba(212,175,55,.22), rgba(212,175,55,.10));}
.btn-primary:hover{background:linear-gradient(180deg, rgba(212,175,55,.28), rgba(212,175,55,.12));}
.btn-silver{border-color:rgba(191,195,199,.35); background:linear-gradient(180deg, rgba(191,195,199,.16), rgba(255,255,255,.04));}
.badge{display:inline-flex;align-items:center;gap:8px;border:1px solid var(--line);padding:6px 10px;border-radius:999px;color:var(--muted);font-size:13px;background:rgba(255,255,255,.02)}

/* Hero */
.hero{padding:44px 0 26px}
.hero-grid{display:grid;grid-template-columns:1.15fr .85fr;gap:18px;align-items:stretch}
.hero-card{
  border:1px solid var(--line); border-radius:var(--radius);
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  box-shadow:var(--shadow);
}
.hero-main{padding:26px}
.h-eyebrow{display:flex;gap:10px;align-items:center;flex-wrap:wrap}
.h-title{margin:14px 0 10px;font-size:42px;line-height:1.05;letter-spacing:-.02em}
.h-title em{font-style:normal;color:var(--gold)}
.h-sub{margin:0 0 16px;color:var(--muted);font-size:16px;line-height:1.6}
.hero-cta{display:flex;gap:12px;flex-wrap:wrap;margin-top:16px}
.hero-side{padding:22px;display:flex;flex-direction:column;gap:12px}
.stat{border:1px solid var(--line);border-radius:16px;padding:14px;background:rgba(255,255,255,.02)}
.stat strong{display:block;font-size:22px}
.stat span{color:var(--muted);font-size:13px}

/* Sections */
.section{padding:26px 0}
.section-title{font-size:22px;margin:0 0 10px}
.section-desc{color:var(--muted);margin:0 0 16px;line-height:1.6}
.grid{display:grid;gap:14px}
.grid-3{grid-template-columns:repeat(3,1fr)}
.grid-2{grid-template-columns:repeat(2,1fr)}
.card{border:1px solid var(--line);border-radius:var(--radius);background:rgba(255,255,255,.02);box-shadow:0 10px 26px rgba(0,0,0,.35); overflow:hidden}
.card-body{padding:16px}
.card h3{margin:0 0 8px}
.card p{margin:0;color:var(--muted);line-height:1.6}

.vehicle-img{width:100%;height:210px;object-fit:cover;display:block;background:linear-gradient(135deg, rgba(212,175,55,.20), rgba(191,195,199,.10));}
.price-row{display:flex;align-items:baseline;justify-content:space-between;gap:10px;margin-top:10px}
.price{font-size:20px;font-weight:800;color:var(--gold)}
.small{font-size:12px;color:var(--muted)}

/* Lists */
.checks{display:grid;gap:10px;margin:0;padding:0;list-style:none}
.checks li{display:flex;gap:10px;align-items:flex-start;color:var(--muted);line-height:1.5}
.dot{margin-top:6px;width:10px;height:10px;border-radius:3px;background:linear-gradient(135deg, var(--gold), var(--silver)); box-shadow:0 8px 16px rgba(212,175,55,.18)}

/* Forms */
.form{display:grid;gap:12px}
.field{display:grid;gap:6px}
label{color:var(--silver);font-size:13px;letter-spacing:.04em}
input,select,textarea{
  width:100%;padding:12px 12px;border-radius:14px;border:1px solid var(--line);
  background:rgba(255,255,255,.03); color:var(--text); outline:none
}
textarea{min-height:110px;resize:vertical}
input:focus,select:focus,textarea:focus{border-color:rgba(212,175,55,.55)}
.form-row{display:grid;gap:12px;grid-template-columns:1fr 1fr}
.note{color:var(--muted);font-size:13px;line-height:1.6}
.divider{height:1px;background:var(--line);margin:14px 0}

/* Footer */
.footer{padding:28px 0 34px;border-top:1px solid var(--line);color:var(--muted)}
.footer-grid{display:flex;align-items:flex-start;justify-content:space-between;gap:16px;flex-wrap:wrap}
.footer a{color:var(--silver)}
.kicker{font-size:12px;letter-spacing:.14em;text-transform:uppercase;color:var(--silver)}

/* Responsive */
@media (max-width: 940px){
  .hero-grid{grid-template-columns:1fr}
  .grid-3{grid-template-columns:1fr}
  .grid-2{grid-template-columns:1fr}
  .h-title{font-size:34px}
  .form-row{grid-template-columns:1fr}
}

@media (max-width:640px){
  .logo{width:36px;height:36px;}
}

/* Enlarged header logo */


@media (max-width: 640px) {
  
}

/* EXTRA-LARGE STATEMENT HEADER LOGO */


@media (max-width: 768px) {
  
}

@media (max-width: 480px) {
  
}


/* LARGE STATEMENT HEADER */
header, .header, nav, .navbar {
  min-height: 140px;
  padding-top: 20px;
  padding-bottom: 20px;
}

/* Ensure logo is vertically centered */
header .logo, nav .logo, .navbar .logo {
  display: flex;
  align-items: center;
}

/* Extra breathing room on desktop */
@media (min-width: 1024px) {
  header, .header, nav, .navbar {
    min-height: 160px;
  }
}

/* Mobile adjustments */
@media (max-width: 640px) {
  header, .header, nav, .navbar {
    min-height: 110px;
  }
}

/* 3X BRAND LOGO FOR MAX LEGIBILITY */
.site-logo {
  height: 180px;      /* 3x visual presence */
  max-height: 180px;
  width: auto;
  display: block;
}

/* Tablet */
@media (max-width: 1024px) {
  .site-logo {
    height: 150px;
    max-height: 150px;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .site-logo {
    height: 120px;
    max-height: 120px;
  }
}


/* HEADER AS FULL-WIDTH BANNER IMAGE */
.header.header-banner{
  padding: 0;
  min-height: auto;
  background: #000;
}

.header-image-link{
  display:block;
  width:100%;
}



.menu.menu-under{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  align-items:center;
  justify-content:flex-end;
  padding: 14px 0 16px;
}

/* Make room on smaller screens */
@media (max-width: 640px){
  
  .menu.menu-under{justify-content:center;}
}





@media (max-width: 640px){
  .header-image{
    max-height: 120px;
  }
}



.header-image{
  width:100%;
  height: 90px;           /* container height cut roughly in half */
  max-height: 90px;
  display:block;
  object-fit: cover;      /* zoom image to fill shorter space */
  background:#000;
}

@media (max-width: 640px){
  .header-image{
    height: 75px;
    max-height: 75px;
  }
}



.header-image{
  width:100%;
  height: 90px;           /* compact header */
  max-height: 90px;
  display:block;
  object-fit: contain;    /* SHOW FULL IMAGE */
  background:#000;
}

@media (max-width: 640px){
  .header-image{
    height: 75px;
    max-height: 75px;
  }
}




@media (max-width: 640px){
  .header-image{
    height: 110px;
    max-height: 110px;
  }
}



.header-image-link{
  display:flex;
  justify-content:flex-start;
  align-items:center;
}

@media (max-width: 640px){
  .header-image{
    height: 140px;
    max-height: 140px;
    margin-left: 12px;
  }
}

/* HEADER – REDUCED HEIGHT, LEFT LOGO */
.header-image{
  width:auto;
  height: 130px;       /* reduced height */
  max-height: 130px;
  display:block;
  object-fit: contain;
  background:#000;
  margin-left: 24px;
}

.header-image-link{
  display:flex;
  justify-content:flex-start;
  align-items:center;
}

@media (max-width: 640px){
  .header-image{
    height: 105px;
    max-height: 105px;
    margin-left: 12px;
  }
}

/* SLIM HEADER */
.slim-header{
  background:#000;
  padding: 10px 0;
}
.nav-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.header-logo{
  height: 56px;
  width:auto;
}

/* BANNER */
.banner{
  background:#000;
}
.banner-image{
  width:100%;
  height:auto;
  max-height: 220px;
  object-fit: contain;
  display:block;
}

/* Responsive */
@media (max-width: 640px){
  .header-logo{ height: 46px; }
  .banner-image{ max-height: 180px; }
}

/* HEADER WITHOUT LOGO */
.slim-header .nav-wrap{
  justify-content: flex-end;
}

@media (max-width: 640px){
  .slim-header .nav-wrap{
    justify-content: center;
  }
}

/* BANNER SLOGAN */
.banner{
  position: relative;
}

.banner-overlay{
  position:absolute;
  top:16px;
  left:20px;
  z-index:2;
}

.banner-slogan{
  font-weight: 800;
  font-size: 22px;
  color: #d4af37; /* luxury gold */
  letter-spacing: 0.5px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
  text-transform: uppercase;
}

@media (max-width: 640px){
  .banner-slogan{
    font-size: 18px;
  }
}

/* HEADER SLOGAN */
.header-slogan{
  color:#d4af37;
  font-weight:800;
  font-size:18px;
  letter-spacing:0.6px;
  text-transform:uppercase;
  margin-right:auto;
  text-shadow:0 2px 6px rgba(0,0,0,0.6);
}

@media (max-width:640px){
  .header-slogan{
    font-size:15px;
    margin-bottom:6px;
  }
}
