:root{
  --bg:#f4f1ec;
  --card:#ffffff;
  --ink:#171717;
  --muted:#626b76;
  --line:#ded6cc;
  --soft:#efe8df;
  --accent:#101010;
  --shadow:0 18px 50px rgba(28,22,18,.10);
  --radius-lg:28px;
  --radius-md:20px;
  --radius-sm:14px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter, Arial, sans-serif;
  background:linear-gradient(180deg,#faf8f4 0%,#eee8df 100%);
  color:var(--ink);
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
button,input,textarea{font:inherit}
.page-shell{
  width:min(1220px,calc(100% - 28px));
  margin:16px auto 28px;
  padding:18px;
  border:1px solid var(--line);
  border-radius:34px;
  background:rgba(255,255,255,.56);
  box-shadow:0 18px 60px rgba(30,24,18,.08);
}
.site-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:8px 6px 20px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:850;
  letter-spacing:-.02em;
}
.brand img{width:44px;height:44px}
.site-header nav{
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
}
.site-header nav a{
  padding:12px 16px;
  border-radius:999px;
  color:#323841;
  font-weight:700;
}
.site-header nav a:hover,.nav-cta{
  background:#111;
  color:#fff!important;
}
.hero-section{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(380px,.9fr);
  gap:22px;
  align-items:stretch;
}
.hero-copy,.hero-media,.main-card,.enquiry-card,.feature-strip article,.gallery-section,.details-section,.cta-band{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow);
}
.hero-copy{
  padding:46px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  min-height:560px;
}
.eyebrow{
  width:max-content;
  max-width:100%;
  margin:0 0 18px;
  display:inline-flex;
  align-items:center;
  min-height:36px;
  padding:0 14px;
  border-radius:999px;
  background:var(--soft);
  color:#4e5763;
  font-size:13px;
  font-weight:850;
  letter-spacing:.08em;
  text-transform:uppercase;
}
h1,h2,h3,p{margin-top:0}
h1{
  margin-bottom:18px;
  font-size:clamp(2.55rem,5vw,5.3rem);
  line-height:.95;
  letter-spacing:-.075em;
  max-width:10ch;
}
.hero-subtitle{
  max-width:700px;
  margin-bottom:26px;
  color:var(--muted);
  font-size:1.16rem;
  line-height:1.65;
}
.price-row{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:28px;
}
.price{
  font-size:clamp(2.2rem,4vw,4rem);
  font-weight:900;
  letter-spacing:-.06em;
}
.tag,.features-list span,.footer-tags span{
  display:inline-flex;
  align-items:center;
  min-height:42px;
  padding:0 14px;
  border-radius:999px;
  background:var(--soft);
  color:#313843;
  font-weight:800;
}
.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.primary-btn,.secondary-btn,.submit-btn,.mail-cta,.modal-close{
  min-height:58px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  padding:0 24px;
  font-weight:900;
  border:0;
  cursor:pointer;
}
.primary-btn,.submit-btn,.modal-close{
  background:#111;
  color:#fff;
}
.secondary-btn,.mail-cta{
  background:#fff;
  color:#242a33;
  border:1px solid var(--line);
}
.hero-media{
  position:relative;
  overflow:hidden;
  min-height:560px;
}
.hero-image{
  width:100%;
  height:100%;
  object-fit:cover;
}
.media-badge{
  position:absolute;
  left:18px;
  right:18px;
  bottom:18px;
  padding:16px 18px;
  border-radius:20px;
  background:rgba(255,255,255,.92);
  font-weight:900;
  box-shadow:0 12px 34px rgba(0,0,0,.12);
}
.quick-specs{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:14px;
  margin-top:18px;
}
.quick-specs article{
  padding:20px;
  border:1px solid var(--line);
  border-radius:22px;
  background:rgba(255,255,255,.82);
}
.quick-specs span{
  display:block;
  color:var(--muted);
  font-size:.8rem;
  font-weight:850;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin-bottom:10px;
}
.quick-specs strong{
  display:block;
  font-size:1.22rem;
  line-height:1.15;
}
.content-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(360px,.56fr);
  gap:18px;
  align-items:start;
  margin-top:18px;
}
.main-card,.enquiry-card,.gallery-section,.details-section,.cta-band{
  padding:32px;
}
.main-card h2,.enquiry-card h2,.gallery-section h2,.details-section h2,.cta-band h2{
  margin:0 0 18px;
  font-size:clamp(2rem,3vw,3.6rem);
  line-height:1;
  letter-spacing:-.06em;
}
.main-card p,.enquiry-card p,.feature-strip p,.privacy-note,.site-footer p{
  color:var(--muted);
  line-height:1.65;
}
.enquiry-card{
  position:sticky;
  top:16px;
}
.vehicle-form{margin-top:18px}
.hidden{display:none}
.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}
.vehicle-form label span{
  display:block;
  margin-bottom:8px;
  color:#313843;
  font-weight:850;
}
.vehicle-form input,.vehicle-form textarea{
  width:100%;
  border:1px solid #d8cfc4;
  border-radius:18px;
  background:#fff;
  padding:16px 18px;
  color:#111;
  outline:none;
}
.vehicle-form input:focus,.vehicle-form textarea:focus{
  border-color:#111;
  box-shadow:0 0 0 4px rgba(17,17,17,.08);
}
.wide-field{grid-column:1 / -1}
.vehicle-form textarea{
  min-height:142px;
  resize:vertical;
}
.submit-btn,.mail-cta{
  width:100%;
  margin-top:14px;
}
.submit-btn:disabled{opacity:.6;cursor:not-allowed}
.privacy-note{
  margin:14px 0 0;
  font-size:.9rem;
  text-align:center;
}
.feature-strip{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
  margin-top:18px;
}
.feature-strip article{padding:26px}
.feature-strip h3{
  margin-bottom:10px;
  font-size:1.25rem;
  letter-spacing:-.03em;
}
.gallery-section,.details-section,.cta-band{margin-top:18px}
.section-heading{margin-bottom:20px}
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:12px;
}
.gallery-thumb{
  padding:0;
  border:0;
  background:#ddd;
  border-radius:18px;
  overflow:hidden;
  cursor:pointer;
  aspect-ratio:4 / 3;
}
.gallery-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .25s ease;
}
.gallery-thumb:hover img{transform:scale(1.04)}
.features-list{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.features-list span{font-size:.94rem}
.cta-band{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.cta-band h2{margin-bottom:0;max-width:720px}
.site-footer{
  display:flex;
  justify-content:space-between;
  gap:18px;
  align-items:flex-end;
  padding:28px 8px 6px;
}
.footer-tags{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:flex-end;
}
.modal-backdrop{
  position:fixed;
  inset:0;
  display:none;
  align-items:center;
  justify-content:center;
  padding:20px;
  background:rgba(0,0,0,.58);
  z-index:9999;
}
.modal-backdrop.open{display:flex}
.modal-card,.lightbox-card{
  background:#fff;
  border-radius:24px;
  box-shadow:0 25px 70px rgba(0,0,0,.28);
}
.modal-card{
  width:min(460px,100%);
  padding:30px;
  text-align:center;
}
.modal-card h3{
  margin:0 0 10px;
  font-size:2rem;
  letter-spacing:-.04em;
}
.modal-card p{color:var(--muted);line-height:1.6}
.modal-close{margin-top:18px}
.lightbox-card{
  position:relative;
  width:min(980px,calc(100vw - 26px));
  padding:16px;
}
.lightbox-card img{
  width:100%;
  max-height:78vh;
  object-fit:contain;
  border-radius:16px;
  background:#f4f4f4;
}
.lightbox-close,.lightbox-nav{
  position:absolute;
  border:0;
  background:rgba(0,0,0,.82);
  color:#fff;
  cursor:pointer;
  z-index:2;
}
.lightbox-close{
  top:22px;
  right:22px;
  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;
}
.lightbox-nav.prev{left:26px}
.lightbox-nav.next{right:26px}
@media (max-width: 1000px){
  .hero-section,.content-grid{grid-template-columns:1fr}
  .hero-copy,.hero-media{min-height:auto}
  .hero-media{height:520px}
  .enquiry-card{position:static}
  .quick-specs{grid-template-columns:repeat(2,minmax(0,1fr))}
  .gallery-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
  .cta-band{align-items:flex-start;flex-direction:column}
}
@media (max-width: 720px){
  .page-shell{width:calc(100% - 14px);padding:10px;border-radius:24px;margin-top:8px}
  .site-header{align-items:flex-start;flex-direction:column;padding-bottom:12px}
  .site-header nav{width:100%}
  .site-header nav a{flex:1;text-align:center;padding:11px 10px;font-size:.94rem}
  .hero-copy,.main-card,.enquiry-card,.gallery-section,.details-section,.cta-band{padding:22px}
  h1{font-size:clamp(2.4rem,13vw,4.2rem);max-width:11ch}
  .hero-media{height:360px}
  .quick-specs,.feature-strip,.form-grid{grid-template-columns:1fr}
  .gallery-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}
  .hero-actions a,.hero-actions .primary-btn,.hero-actions .secondary-btn{width:100%}
  .site-footer{align-items:flex-start;flex-direction:column}
  .footer-tags{justify-content:flex-start}
  .lightbox-nav{width:40px;height:40px}
}
