
:root{
  --bg:#efefef;
  --card:#f8f8f8;
  --ink:#0a0a0a;
  --muted:#687281;
  --line:#d6d6d6;
  --accent:#0a0a0a;
  --chip:#e9e9e9;
  --shadow:0 16px 40px rgba(0,0,0,.06);
  --radius-xl:32px;
  --radius-lg:24px;
  --radius-md:18px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:'Inter', Arial, sans-serif;
  background:var(--bg);
  color:var(--ink);
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
button,input,textarea{font:inherit}
.page-shell{
  width:min(1280px, calc(100% - 32px));
  margin:14px auto 24px;
  padding:18px;
  border:1px solid var(--line);
  border-radius:38px;
  background:#f3f3f3;
}
.topbar{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
  margin-bottom:22px;
}
.brand-pill img{height:56px;width:auto;display:block}
.trust-pill,.ghost-cta{
  min-height:56px;
  padding:0 24px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:650;
}
.trust-pill{background:#e9e9e9}
.ghost-cta{border:1px solid #cfcfcf;background:#f7f7f7}
.desktop-only{margin-left:auto}
.hero{
  display:grid;
  grid-template-columns:minmax(0,1.25fr) minmax(360px, .85fr);
  gap:28px;
  align-items:start;
}
.hero-copy{
  padding:10px 12px 4px;
}
.eyebrow{
  margin:0 0 14px;
  display:inline-flex;
  align-items:center;
  min-height:38px;
  padding:0 16px;
  border-radius:999px;
  background:#e9e9e9;
  color:#505865;
  font-size:14px;
  font-weight:700;
  letter-spacing:.02em;
}
h1{
  margin:0;
  font-size:clamp(2rem, 3vw, 3.2rem);
  line-height:1.02;
  letter-spacing:-0.055em;
  font-weight:700;
  max-width:20ch;
  text-wrap:balance;
}

.subhead{
  max-width:760px;
  margin:18px 0 0;
  color:var(--muted);
  font-size:1.18rem;
  line-height:1.65;
}
.hero-stats{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:16px;
  margin-top:26px;
}
.hero-stats article,
.content-card,
.enquiry-card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow);
}
.hero-stats article{
  padding:22px;
}
.hero-stats span,
.spec-table span{
  display:block;
  color:#767e8b;
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:.82rem;
  margin-bottom:12px;
}
.hero-stats strong{
  font-size:clamp(1.7rem, 2vw, 2.25rem);
  line-height:1.05;
  letter-spacing:-0.04em;
}
.spec-chips,.trust-row,.footer-tags{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:18px;
}
.spec-chips span,.trust-row span,.footer-tags span{
  background:var(--chip);
  border-radius:999px;
  padding:12px 16px;
  font-weight:700;
}
.hero-actions{
  display:flex;
  gap:14px;
  margin-top:24px;
  flex-wrap:wrap;
}
.primary-cta,.secondary-cta,.submit-btn,.mail-cta{
  min-height:58px;
  border-radius:999px;
  padding:0 26px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
  border:none;
  cursor:pointer;
}
.primary-cta,.submit-btn{background:#050505;color:#fff}
.secondary-cta,.mail-cta{background:#f4f4f4;border:1px solid #cfcfcf;color:#2d3744}
.enquiry-card{
  padding:28px;
  position:sticky;
  top:18px;
}
.enquiry-card h2,.content-card h2,.gallery-section h2{
  margin:0;
  font-size:clamp(1.9rem, 3vw, 3.2rem);
  line-height:1.02;
  letter-spacing:-0.05em;
}
.enquiry-card p{
  color:var(--muted);
  line-height:1.6;
}
.vehicle-form{margin-top:10px}
.hidden{display:none}
.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
.vehicle-form label span{
  display:block;
  margin-bottom:10px;
  font-weight:600;
  color:#55606d;
}
.vehicle-form input,
.vehicle-form textarea{
  width:100%;
  border:1px solid #d1d1d1;
  background:#fff;
  border-radius:18px;
  padding:18px 20px;
  color:#111;
}
.vehicle-form textarea{
  resize:vertical;
  min-height:140px;
}
.message-field{display:block;margin-top:16px}
.submit-btn{width:100%;margin-top:18px}
.mail-cta{
  width:100%;
  margin-top:12px;
}
.feature-strip{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:16px;
  margin-top:24px;
}
.feature-strip article{
  padding:22px;
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
}
.feature-strip h3{margin:0 0 10px;font-size:1.25rem;letter-spacing:-0.03em}
.feature-strip p,.section-note,.content-card p,.tick-list{color:var(--muted);line-height:1.65}
.gallery-section{
  margin-top:26px;
  padding:26px;
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
}
.section-head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:20px;
  margin-bottom:18px;
}
.section-note{margin:0}
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:14px;
}
.gallery-card{
  padding:0;
  border:none;
  border-radius:22px;
  overflow:hidden;
  cursor:pointer;
  aspect-ratio: 4 / 3;
  background:#ddd;
}
.gallery-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .25s ease;
}
.gallery-card:hover img{transform:scale(1.04)}
.details-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:18px;
  margin-top:26px;
}
.content-card{padding:26px}
.tick-list{
  padding-left:20px;
  margin:14px 0 0;
}
.tick-list li{margin:0 0 10px}
.spec-table{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:14px 18px;
  margin-top:12px;
}
.spec-table div{
  padding:14px 0;
  border-bottom:1px solid #e2e2e2;
}
.spec-table strong{
  display:block;
  font-size:1.04rem;
}
.site-footer{
  margin-top:24px;
  padding:24px 8px 6px;
  display:flex;
  justify-content:space-between;
  gap:20px;
  align-items:flex-end;
}
.site-footer p{margin:.35rem 0 0;color:var(--muted)}
.modal-backdrop{
  position:fixed;
  inset:0;
  background:rgba(10,10,10,.55);
  display:none;
  align-items:center;
  justify-content:center;
  padding:20px;
  z-index:1000;
}
.modal-backdrop.open{display:flex}
.modal-card,.lightbox-card{
  background:#fff;
  border-radius:24px;
  box-shadow:0 25px 60px rgba(0,0,0,.22);
}
.modal-card{
  width:min(460px,100%);
  padding:28px;
  text-align:center;
}
.modal-card h3{margin:0 0 10px;font-size:2rem;letter-spacing:-.04em}
.modal-card p{margin:0;color:var(--muted);line-height:1.65}
.modal-close{
  margin-top:18px;
  min-height:48px;
  padding:0 24px;
  border:none;
  border-radius:999px;
  background:#0a0a0a;
  color:#fff;
  font-weight:800;
  cursor:pointer;
}
.lightbox-card{
  position:relative;
  width:min(980px, calc(100vw - 30px));
  padding:18px;
}
.lightbox-card img{
  width:100%;
  max-height:78vh;
  object-fit:contain;
  border-radius:16px;
  background:#f4f4f4;
}
.lightbox-close,.lightbox-nav{
  position:absolute;
  border:none;
  background:rgba(10,10,10,.82);
  color:#fff;
  cursor:pointer;
}
.lightbox-close{
  top:24px; right:24px;
  width:44px; height:44px;
  border-radius:999px;
  font-size:28px; line-height:1;
}
.lightbox-nav{
  top:50%; transform:translateY(-50%);
  width:46px; height:46px;
  border-radius:999px;
  font-size:28px; line-height:1;
}
.lightbox-nav.prev{left:28px}
.lightbox-nav.next{right:28px}
@media (max-width: 1080px){
  .hero{grid-template-columns:1fr}
  .enquiry-card{position:static}
  .desktop-only{display:none}
}
@media (max-width: 860px){
  .hero-stats,.feature-strip,.details-grid,.gallery-grid,.form-grid,.spec-table{
    grid-template-columns:1fr;
  }
  h1{
  margin:0;
  font-size:clamp(2rem, 3vw, 3.2rem);
  line-height:1.02;
  letter-spacing:-0.055em;
  font-weight:700;
  max-width:20ch;
  text-wrap:balance;
}


.compact-form .wide-field{
  grid-column:1 / -1;
}
.vehicle-form small{
  color:#8b93a0;
  font-weight:600;
}
.privacy-note{
  margin:14px 0 0;
  font-size:.9rem;
  color:#6c7480;
  text-align:center;
}
.final-cta{
  margin-top:26px;
  padding:30px;
  text-align:center;
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow);
}
.final-cta h2{
  margin:0;
  font-size:clamp(2rem, 4vw, 3.4rem);
  line-height:1.02;
  letter-spacing:-0.05em;
}
.final-cta p{
  max-width:640px;
  margin:16px auto 0;
  color:var(--muted);
  line-height:1.6;
}
.centered-actions{
  justify-content:center;
}
@media (max-width: 760px){
  .hero{
    grid-template-columns:1fr;
  }
  .enquiry-card{
    position:static;
  }
  .hero-stats,
  .feature-strip,
  .details-grid{
    grid-template-columns:1fr;
  }
  .form-grid{
    grid-template-columns:1fr;
  }
  .gallery-grid{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }
  .page-shell{
    width:calc(100% - 18px);
    padding:12px;
    border-radius:26px;
  }
  .desktop-only{
    display:none;
  }
  .hero-copy{
    padding:6px 4px 0;
  }
  .hero-stats article{
    padding:18px;
  }
  .hero-actions a{
    width:100%;
  }
}

/* Clean company enquiry form, matching the requested reference style */
.clean-enquiry-form{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:26px 28px;
}
.clean-enquiry-form label{
  display:block;
}
.clean-enquiry-form label span{
  display:block;
  margin-bottom:16px;
  font-size:1.08rem;
  line-height:1.2;
  font-weight:800;
  color:#050505;
}
.clean-enquiry-form input,
.clean-enquiry-form textarea{
  width:100%;
  border:1.5px solid #d7c8bb;
  background:#fff;
  border-radius:22px;
  padding:20px 26px;
  font-size:1.05rem;
  line-height:1.35;
  color:#111;
  outline:none;
  box-shadow:none;
}
.clean-enquiry-form input{
  min-height:72px;
}
.clean-enquiry-form textarea{
  min-height:210px;
  resize:vertical;
}
.clean-enquiry-form input:focus,
.clean-enquiry-form textarea:focus{
  border-color:#b9a895;
}
.clean-enquiry-form textarea::placeholder{
  color:#707781;
  opacity:1;
}
.clean-enquiry-form .wide-field{
  grid-column:1 / -1;
}
@media (max-width: 760px){
  .clean-enquiry-form{
    grid-template-columns:1fr;
    gap:22px;
  }
  .clean-enquiry-form input{
    min-height:66px;
  }
  .clean-enquiry-form textarea{
    min-height:190px;
  }
}
