@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Unbounded:wght@400;500;600&display=swap');

:root{
  --bg:#0B0B0C;
  --surface:#17171A;
  --surface-2:#1F1F23;
  --surface-3:#25252A;
  --line:rgba(245,243,238,0.09);
  --line-strong:rgba(245,243,238,0.18);
  --ink:#F5F3EE;
  --ink-dim:#9B9994;
  --gold:#C9A768;
  --gold-dim:#8A7247;
  --gold-deep:#5E4C2C;
}

*{
  box-sizing:border-box;
  margin:0;
  padding:0;
}

html{
  scroll-behavior:smooth;
  scroll-padding-top:96px;
}

body{
  background:var(--bg);
  color:var(--ink);
  font-family:'Manrope',sans-serif;
  line-height:1.5;
  min-width:320px;
}

body.modal-open{
  overflow:hidden;
}

h1,h2,h3,.disp{
  font-family:'Unbounded',sans-serif;
  letter-spacing:0.01em;
  font-weight:500;
}

a{
  color:inherit;
  text-decoration:none;
}

img{
  display:block;
  max-width:100%;
}

button,input,select,textarea{
  font:inherit;
}

button{
  cursor:pointer;
  border:none;
  background:none;
}

.skip-link{
  position:absolute;
  left:-9999px;
  top:auto;
}

.skip-link:focus{
  left:16px;
  top:16px;
  z-index:999;
  background:#fff;
  color:#000;
  padding:10px 12px;
  border-radius:8px;
}

.wrap{
  max-width:1180px;
  margin:0 auto;
  padding:0 32px;
}

.eyebrow{
  font-size:12px;
  letter-spacing:0.22em;
  text-transform:uppercase;
  color:var(--gold);
  font-weight:700;
  margin-bottom:12px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:46px;
  padding:12px 22px;
  border-radius:8px;
  font-size:14px;
  font-weight:700;
  letter-spacing:0.02em;
  border:1px solid transparent;
  transition:transform .15s ease, background .15s ease, border-color .15s ease, color .15s ease, opacity .15s ease;
}

.btn:hover{
  transform:translateY(-1px);
}

.btn:disabled{
  opacity:.65;
  cursor:not-allowed;
  transform:none;
}

.btn-gold{
  background:var(--gold);
  color:#1B1607;
}

.btn-gold:hover{
  background:#D9BC85;
}

.btn-ghost{
  border-color:var(--line-strong);
  color:var(--ink);
}

.btn-ghost:hover{
  border-color:var(--gold);
  color:var(--gold);
}

.site-header{
  position:sticky;
  top:0;
  z-index:80;
  background:rgba(11,11,12,0.9);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}

.headrow{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  min-height:82px;
}

.logo-link{
  flex-shrink:0;
}

.logo{
  display:flex;
  align-items:center;
  gap:12px;
}

.logo img{
  height:22px;
  width:auto;
  filter:brightness(0) invert(1);
}

.logo-divider{
  width:1px;
  height:18px;
  background:var(--line-strong);
}

.logo-sub{
  font-size:13px;
  letter-spacing:0.10em;
  text-transform:uppercase;
  color:var(--ink-dim);
}

.desktop-nav{
  display:flex;
  align-items:center;
  gap:28px;
}

.desktop-nav a{
  color:var(--ink-dim);
  font-size:14px;
}

.desktop-nav a:hover{
  color:var(--ink);
}

.headright{
  display:flex;
  align-items:center;
  gap:16px;
}

.phone{
  font-size:15px;
  font-weight:600;
  letter-spacing:0.02em;
  white-space:nowrap;
}

.phone .dot{
  width:6px;
  height:6px;
  border-radius:50%;
  background:var(--gold);
  display:inline-block;
  margin-right:8px;
}

.menu-toggle{
  width:46px;
  height:46px;
  display:none;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
  border:1px solid var(--line-strong);
  border-radius:10px;
}

.menu-toggle span{
  display:block;
  width:18px;
  height:2px;
  background:var(--ink);
  transition:.2s ease;
}

.menu-toggle.active span:nth-child(1){
  transform:translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2){
  opacity:0;
}

.menu-toggle.active span:nth-child(3){
  transform:translateY(-7px) rotate(-45deg);
}

.mobile-menu{
  display:none;
  border-top:1px solid var(--line);
  background:rgba(11,11,12,0.98);
}

.mobile-menu.active{
  display:block;
}

.mobile-menu-inner{
  display:grid;
  gap:0;
  padding:6px 32px 18px;
}

.mobile-menu a{
  padding:14px 0;
  border-bottom:1px solid var(--line);
  color:var(--ink-dim);
}

.mobile-menu a:last-child{
  border-bottom:none;
}

.hero{
  position:relative;
  min-height:680px;
  overflow:hidden;
  border-bottom:1px solid var(--line);
  padding-bottom:84px;
}

.hero-slide{
  position:absolute;
  inset:0;
  display:flex;
  align-items:flex-end;
  background-size:cover;
  background-position:center;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:opacity .7s ease, visibility .7s ease;
}

.hero-slide.active{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
  z-index:2;
}

.hero-slide.cutout{
  background-color:#111310;
}

.hero-cutout-wrap{
  position:absolute;
  right:0;
  top:0;
  bottom:0;
  width:58%;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:1;
}

.hero-cutout-wrap::before{
  content:'';
  position:absolute;
  width:78%;
  height:78%;
  border-radius:50%;
  background:radial-gradient(circle, rgba(163,178,120,0.28) 0%, rgba(163,178,120,0) 70%);
}

.hero-cutout-wrap img{
  position:relative;
  max-width:88%;
  max-height:74%;
  object-fit:contain;
  filter:drop-shadow(0 30px 36px rgba(0,0,0,0.55));
}

.hero-slide::before{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(11,11,12,0.18) 0%, rgba(11,11,12,0.56) 55%, rgba(11,11,12,0.98) 100%);
  z-index:0;
}

.hero-inner{
  position:relative;
  z-index:2;
  padding:64px 0 24px;
  width:100%;
}

.geoplate{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:rgba(23,23,26,0.8);
  border:1px solid var(--line-strong);
  padding:9px 16px;
  border-radius:999px;
  font-size:13px;
  color:var(--ink-dim);
  margin-bottom:22px;
}

.geoplate b{
  color:var(--ink);
  font-weight:600;
}

.hero h1{
  font-size:52px;
  line-height:1.08;
  max-width:680px;
  margin-bottom:18px;
}

.hero p{
  font-size:17px;
  color:var(--ink-dim);
  max-width:520px;
  margin-bottom:32px;
}

.hero-ctas{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.hero-dots{
  position:absolute;
  right:32px;
  bottom:100px;
  z-index:6;
  display:flex;
  gap:8px;
}

.hero-dots button{
  width:8px;
  height:8px;
  border-radius:50%;
  padding:0;
  border:none;
  background:rgba(245,243,238,0.32);
}

.hero-dots button.on{
  width:22px;
  border-radius:4px;
  background:var(--gold);
}

.hero-offers-bar{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  z-index:7;
  background:rgba(23,23,26,0.92);
  border-top:1px solid var(--line);
  padding:18px 0;
}

.hero-offers{
  display:flex;
  gap:28px;
  flex-wrap:wrap;
}

.offer{
  display:flex;
  align-items:center;
  gap:12px;
}

.offer .amt{
  font-family:'Unbounded',sans-serif;
  font-size:20px;
  color:var(--gold);
}

.offer .lbl{
  font-size:12px;
  color:var(--ink-dim);
  max-width:520px;
}

.section{
  padding:88px 0;
}

.sec-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  margin-bottom:40px;
  flex-wrap:wrap;
  gap:16px;
}

.sec-head h2{
  font-size:30px;
  max-width:800px;
}

.sec-head .more{
  font-size:13px;
  color:var(--gold);
  border-bottom:1px solid var(--gold-dim);
  padding-bottom:2px;
}

.models{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.mcard{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:14px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
}

.mcard .shot{
  aspect-ratio:4/3;
  background:var(--surface-2) center/cover no-repeat;
}

.mcard .shot-contain{
  background-size:contain;
  background-repeat:no-repeat;
  background-position:center;
  background-color:var(--surface-2);
}

.mcard .body{
  padding:22px 22px 24px;
  display:flex;
  flex-direction:column;
  flex:1;
}

.mcard .tag{
  font-size:11px;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:var(--gold);
  margin-bottom:8px;
  font-weight:700;
}

.mcard h3{
  font-size:20px;
  margin-bottom:4px;
}

.mcard .bodytype{
  font-size:12.5px;
  color:var(--ink-dim);
  margin-bottom:8px;
}

.mcard .price{
  font-size:14px;
  color:var(--ink-dim);
  margin-bottom:14px;
}

.mcard ul{
  list-style:none;
  margin-bottom:18px;
}

.mcard li{
  font-size:13px;
  color:var(--ink-dim);
  padding-left:16px;
  position:relative;
  margin-bottom:6px;
}

.mcard li::before{
  content:'—';
  position:absolute;
  left:0;
  color:var(--gold-dim);
}

.mcard .row{
  display:flex;
  gap:10px;
  margin-top:auto;
  flex-wrap:wrap;
}

.mcard .row .btn{
  flex:1;
  min-width:150px;
}

.valuestrip{
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  background:var(--surface);
}

.letters{
  display:flex;
}

.letter{
  flex:1;
  padding:38px 20px;
  border-right:1px solid var(--line);
  transition:background .2s ease;
}

.letter:last-child{
  border-right:none;
}

.letter:hover{
  background:var(--surface-2);
}

.letter .ch{
  font-family:'Unbounded',sans-serif;
  font-size:34px;
  color:var(--gold);
  margin-bottom:10px;
}

.letter .wd{
  font-size:13px;
  font-weight:700;
  margin-bottom:6px;
}

.letter .ds{
  font-size:12.5px;
  color:var(--ink-dim);
  line-height:1.5;
}

.adv{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1px;
  background:var(--line);
  border:1px solid var(--line);
  border-radius:14px;
  overflow:hidden;
}

.adv .item{
  background:var(--bg);
  padding:30px 26px;
}

.adv .item h3{
  font-size:15px;
  margin-bottom:6px;
}

.adv .item p{
  font-size:13px;
  color:var(--ink-dim);
}

.formwrap{
  display:grid;
  grid-template-columns:1.2fr 1fr;
  border:1px solid var(--line);
  border-radius:16px;
  overflow:hidden;
}

.formwrap .formside{
  background:var(--surface);
  padding:48px;
}

.formwrap .infoside{
  background:var(--surface-2);
  padding:48px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:24px;
}

.leadtext{
  color:var(--ink-dim);
  margin-bottom:28px;
  max-width:580px;
}

.field{
  margin-bottom:18px;
}

.field label{
  display:block;
  font-size:13px;
  color:var(--ink-dim);
  margin-bottom:8px;
}

.field input,
.field select,
.field textarea{
  width:100%;
  background:var(--bg);
  border:1px solid var(--line-strong);
  border-radius:8px;
  padding:12px 14px;
  color:var(--ink);
  font-family:inherit;
  font-size:14px;
}

.field textarea{
  resize:vertical;
  min-height:90px;
}

.field input:focus,
.field select:focus,
.field textarea:focus{
  outline:none;
  border-color:var(--gold);
}

.helper{
  margin-top:12px;
  font-size:12.5px;
  color:var(--ink-dim);
}

.trustitem{
  display:flex;
  gap:14px;
  align-items:flex-start;
}

.trustitem .num{
  font-family:'Unbounded',sans-serif;
  color:var(--gold);
  font-size:22px;
  min-width:34px;
}

.trustitem .tt{
  font-size:14px;
  font-weight:700;
  margin-bottom:4px;
}

.trustitem .td{
  font-size:13px;
  color:var(--ink-dim);
}

.dealer{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:0;
  border:1px solid var(--line);
  border-radius:14px;
  overflow:hidden;
}

.dealer .info{
  background:var(--surface);
  padding:44px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.dealer .info h2{
  font-size:26px;
  margin-bottom:18px;
}

.dealer .info .row{
  display:flex;
  gap:12px;
  margin-bottom:14px;
  font-size:14px;
  color:var(--ink-dim);
  flex-wrap:wrap;
}

.dealer .info .row b{
  color:var(--ink);
  font-weight:600;
  min-width:110px;
  display:inline-block;
}

.contacts-ctas{
  margin-top:20px;
}

.dealer .map{
  background:var(--surface-2) center/cover no-repeat;
  min-height:340px;
  position:relative;
}

footer{
  border-top:1px solid var(--line);
  padding:44px 0 110px;
}

.footnav{
  display:flex;
  gap:26px;
  flex-wrap:wrap;
  margin-bottom:22px;
}

.footnav a{
  font-size:13px;
  color:var(--ink-dim);
}

.footnav a:hover{
  color:var(--gold);
}

.footrow{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:16px;
  font-size:12.5px;
  color:var(--ink-dim);
}

.sticky-cta{
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  z-index:70;
  display:none;
  background:rgba(11,11,12,0.95);
  backdrop-filter:blur(8px);
  border-top:1px solid var(--line);
  padding:12px 16px;
}

.sticky-cta .btn{
  width:100%;
}

.modal-backdrop{
  position:fixed;
  inset:0;
  background:rgba(10,16,28,.72);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:120;
  padding:20px;
}

.modal-backdrop.active{
  display:flex;
}

.modal{
  width:min(420px, 100%);
  background:#fff;
  border-radius:18px;
  padding:26px;
  box-shadow:0 24px 60px rgba(0,0,0,.25);
  color:#17171A;
}

.modal__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  margin-bottom:10px;
}

.modal__title{
  margin:0;
  font-size:24px;
  line-height:1.15;
  color:#17171A;
}

.modal__close{
  background:transparent;
  border:0;
  font-size:28px;
  cursor:pointer;
  color:#17171A;
}

.modal__text{
  color:#4d5360;
  margin:0 0 16px;
  font-size:14px;
}

.modal .field label{
  color:#4b5261;
}

.modal .field input,
.modal .field select{
  background:#fff;
  border:1px solid #d5d5d5;
  color:#17171A;
}

.thanks-overlay{
  display:none;
  position:fixed;
  inset:0;
  z-index:130;
  background:rgba(0,0,0,.6);
  align-items:center;
  justify-content:center;
  padding:20px;
}

.thanks-overlay.active{
  display:flex;
}

.thanks-modal{
  width:min(380px, 100%);
  background:#fff;
  border-radius:18px;
  padding:34px 28px;
  text-align:center;
  position:relative;
  color:#17171A;
}

.thanks-close{
  position:absolute;
  right:14px;
  top:10px;
  border:0;
  background:transparent;
  font-size:28px;
  cursor:pointer;
  color:#17171A;
}

.thanks-modal h2{
  font-size:28px;
  margin-bottom:10px;
}

.thanks-modal p{
  color:#4d5360;
}

.thanks-btn{
  margin-top:16px;
}

.cookie-note{
  display:none;
  position:fixed;
  bottom:14px;
  left:50%;
  transform:translateX(-50%);
  z-index:110;
  width:min(780px, calc(100% - 24px));
  background:#fff;
  border-radius:16px;
  box-shadow:0 12px 30px rgba(0,0,0,.18);
  padding:16px 18px;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.cookie-note.show{
  display:flex;
}

.cookie-note p{
  margin:0;
  font-size:13px;
  color:#465060;
}

@media (max-width:1024px){
  .models{
    grid-template-columns:repeat(2,1fr);
  }

  .adv{
    grid-template-columns:repeat(2,1fr);
  }

  .formwrap{
    grid-template-columns:1fr;
  }
}

@media (max-width:900px){
  .desktop-nav,
  .headright .phone,
  .headright > .btn{
    display:none;
  }

  .menu-toggle{
    display:flex;
  }

  .hero-cutout-wrap{
    width:100%;
    opacity:0.25;
  }

  .hero h1{
    font-size:36px;
  }

  .models{
    grid-template-columns:1fr;
  }

  .adv{
    grid-template-columns:1fr;
  }

  .letters{
    flex-wrap:wrap;
  }

  .letter{
    flex:0 0 50%;
    border-bottom:1px solid var(--line);
  }

  .dealer{
    grid-template-columns:1fr;
  }

  .sticky-cta{
    display:block;
  }
}

@media (max-width:640px){
  html{
    scroll-padding-top:84px;
  }

  .wrap{
    padding:0 20px;
  }

  .headrow{
    min-height:74px;
  }

  .logo{
    gap:10px;
  }

  .logo img{
    height:20px;
  }

  .logo-sub{
    font-size:11px;
    letter-spacing:0.08em;
  }

  .hero{
    min-height:560px;
    padding-bottom:98px;
  }

  .hero-inner{
    padding:44px 0 28px;
  }

  .hero h1{
    font-size:29px;
    max-width:100%;
  }

  .hero p{
    font-size:15px;
    margin-bottom:24px;
    max-width:100%;
  }

  .hero-dots{
    bottom:112px;
    right:20px;
  }

  .hero-offers-bar{
    padding:14px 0 16px;
  }

  .hero-offers{
    gap:14px;
    padding-left:8px;
    padding-right:8px;
  }

  .offer{
    gap:8px;
    padding-left:8px;
    padding-right:8px;
    padding-bottom:8px;
  }

  .offer .amt{
    font-size:16px;
  }

  .offer .lbl{
    font-size:11px;
    max-width:100%;
  }

  .hero-ctas{
    flex-direction:column;
    align-items:stretch;
  }

  .hero-ctas .btn{
    width:100%;
  }

  .sec-head h2{
    font-size:24px;
  }

  .section{
    padding:60px 0;
  }

  .formwrap .formside,
  .formwrap .infoside,
  .dealer .info{
    padding:24px;
  }

  .mcard .row{
    flex-direction:column;
  }

  .mcard .row .btn{
    width:100%;
  }

  .letter{
    flex:0 0 100%;
  }

  .cookie-note.show{
    display:block;
  }

  .cookie-note p{
    margin-bottom:12px;
  }

  .cookie-note .btn{
    width:100%;
  }

  .mobile-menu-inner{
    padding:6px 20px 18px;
  }
}