
:root {
  --navy: #081733;
  --navy-2: #0d2148;
  --navy-3: #122e5d;
  --gold: #cda34d;
  --gold-2: #e0bf75;
  --text: #10213f;
  --muted: #667692;
  --line: #d9e1ef;
  --surface: #ffffff;
  --surface-soft: #f4f7fb;
  --shadow: 0 24px 60px rgba(7, 21, 49, 0.14);
  --radius-xl: 28px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(205,163,77,0.10), transparent 30%),
    linear-gradient(180deg, #081733 0, #0c1d3f 230px, #eef3f9 231px, #eef3f9 100%);
}
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
img { display: block; max-width: 100%; }
.container { width: min(1240px, calc(100% - 32px)); margin: 0 auto; }
.desktop-only { display: inline-flex; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(8, 23, 51, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand { display:flex; align-items:center; gap:14px; min-width:0; }
.brand-mark {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.08);
}
.brand-mark img { width:100%; height:100%; object-fit: cover; }
brand-copy { min-width: 0; }
.brand-copy strong { display:block; color:#fff; font-size:17px; line-height:1.1; }
.brand-copy span { display:block; color:rgba(255,255,255,0.72); font-size:13px; margin-top:4px; }
.header-nav { display:flex; align-items:center; gap:12px; flex-wrap:wrap; }
.header-nav .link { color: rgba(255,255,255,0.78); font-weight:700; font-size:14px; }
.btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 20px;
  border-radius:999px;
  border:1px solid transparent;
  font-weight:800;
  font-size:14px;
  transition: transform .2s ease, opacity .2s ease;
  cursor:pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: linear-gradient(180deg, var(--gold-2), var(--gold)); color: var(--navy); box-shadow: 0 14px 32px rgba(177,132,48,0.28); }
.btn-secondary { background: rgba(255,255,255,0.06); color:#fff; border-color: rgba(255,255,255,0.14); }
.hero { padding: 22px 0 14px; }
.hero-shell {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  box-shadow: 0 30px 65px rgba(6, 18, 41, 0.24);
  background: linear-gradient(135deg, rgba(8,23,51,0.96), rgba(13,33,72,0.96));
}
.hero-shell::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8,23,51,0.94) 0%, rgba(8,23,51,0.83) 42%, rgba(8,23,51,0.55) 100%),
    url('assets/branding/cover-banner.png') center/cover no-repeat;
  opacity: 0.52;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 420px);
  gap: 24px;
  padding: 34px;
}
.hero-copy { color: #fff; }
.hero-badge, .card-eyebrow, .eyebrow, .eyebrow.light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  font-weight: 800;
}
.hero-badge::before, .card-eyebrow::before, .eyebrow::before, .eyebrow.light::before {
  content: '•';
  color: var(--gold);
  font-size: 16px;
  line-height: 1;
}
.hero-copy h1 { margin: 16px 0 10px; font-size: clamp(32px, 5vw, 50px); line-height: 1.03; letter-spacing: -0.03em; }
.lead { margin: 0; color: rgba(255,255,255,0.78); font-size: 18px; max-width: 62ch; }
.price-row { display:flex; align-items:end; gap:12px; flex-wrap:wrap; margin:24px 0 16px; }
.price { font-size: 44px; font-weight: 800; line-height: 1; }
.price-pill {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  font-weight: 700;
}
.pill-row { display:flex; gap:10px; flex-wrap:wrap; margin-bottom: 18px; }
.pill {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}
.hero-actions { display:flex; gap:12px; flex-wrap:wrap; margin-bottom: 22px; }
.stats-grid { display:grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.stats-grid article {
  padding: 18px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.10);
}
.stats-grid span { display:block; color: rgba(255,255,255,0.72); font-size:13px; margin-bottom:8px; }
.stats-grid strong { display:block; color:#fff; font-size:18px; line-height:1.25; }
.enquiry-card {
  background: rgba(255,255,255,0.98);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 24px;
  padding: 24px;
  color: var(--text);
  box-shadow: 0 20px 45px rgba(0,0,0,0.14);
}
.enquiry-card h2 { margin: 10px 0 8px; font-size: 30px; line-height: 1.08; color: var(--navy); }
.enquiry-card p { margin: 0 0 16px; color: var(--muted); }
.form-grid { display:grid; gap: 14px; }
.vehicle-form label { display:grid; gap:8px; }
.vehicle-form span { font-weight: 700; font-size: 14px; color: var(--navy); }
.vehicle-form input, .vehicle-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  color: var(--text);
  padding: 14px 15px;
  outline: none;
}
.vehicle-form input:focus, .vehicle-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(205,163,77,0.18);
}
.vehicle-form textarea { resize: vertical; min-height: 140px; }
.submit-btn { width: 100%; margin-top: 14px; }
.text-link { display:inline-block; margin-top: 12px; color: var(--navy-3); font-weight: 700; }
.privacy-note { margin-top: 14px !important; font-size: 13px; }
.form-error, .form-success {
  display:none;
  margin-bottom:14px;
  padding:14px 16px;
  border-radius:14px;
  font-weight:700;
  font-size:14px;
}
.form-error.show { display:block; background:#fff1ef; color:#8a2919; border:1px solid #efc4bc; }
.form-success.show { display:block; background:#edf9f0; color:#28613b; border:1px solid #cfe4d3; }
.hidden { display:none; }
.section { padding: 16px 0; }
.trust-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.trust-card, .section-card, .content-card, .cta-band {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}
.trust-card { padding: 24px; }
.trust-card h3 { margin: 0 0 10px; font-size: 22px; color: var(--navy); }
.trust-card p { margin: 0; color: var(--muted); }
.section-card { padding: 28px; }
.section-head {
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.eyebrow { color: var(--navy-3); }
.eyebrow.light { color: rgba(255,255,255,0.88); }
.section-head h2, .content-card h2, .cta-band h2 { margin: 8px 0 0; font-size: 32px; line-height: 1.08; color: var(--navy); }
.section-note { color: var(--muted); margin: 0; }
.gallery-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gallery-card {
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(10,24,52,0.08);
}
.gallery-card img { width:100%; aspect-ratio: 4/3; object-fit: cover; }
.details-grid { display:grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.content-card { padding: 26px; }
.content-card p { color: var(--muted); line-height: 1.65; }
.tick-list { list-style:none; padding:0; margin: 0; display:grid; gap: 10px; }
.tick-list li { position:relative; padding-left: 28px; color: var(--muted); }
.tick-list li::before {
  content: '✓';
  position:absolute;
  left:0;
  top:0;
  color: var(--gold);
  font-weight: 800;
}
.spec-table { display:grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.spec-table div {
  padding: 16px;
  border-radius: 16px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
}
.spec-table span { display:block; color: var(--muted); font-size: 13px; margin-bottom: 8px; }
.spec-table strong { color: var(--navy); font-size: 15px; line-height: 1.4; }
.cta-band {
  padding: 28px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff;
  display:grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 20px;
  align-items:center;
}
.cta-band h2 { color:#fff; }
.cta-band p { color: rgba(255,255,255,0.78); margin: 12px 0 0; }
.cta-actions { display:flex; gap:12px; flex-wrap:wrap; justify-content:flex-end; }
.site-footer { padding: 10px 0 34px; }
.footer-inner {
  display:flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.footer-inner strong { color: var(--navy); }
.footer-inner p { margin: 6px 0 0; color: var(--muted); }
.footer-tags { display:flex; gap:10px; flex-wrap:wrap; }
.footer-tags span {
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--navy-3);
  font-size: 13px;
  font-weight: 700;
}
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(8,23,51,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  z-index: 90;
}
.modal-backdrop.open { display:flex; }
.modal-card {
  width: min(420px, 100%);
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.22);
  text-align: center;
}
.modal-card h3 { margin:0 0 10px; color: var(--navy); font-size: 28px; }
.modal-card p { margin:0 0 18px; color: var(--muted); }
.lightbox-card {
  width: min(1100px, 100%);
  position: relative;
  display:flex;
  align-items:center;
  justify-content:center;
}
.lightbox-card img { width:100%; max-height: 82vh; object-fit: contain; border-radius: 18px; }
.lightbox-close, .lightbox-nav, .popup-close {
  border: 0;
  cursor: pointer;
  font-size: 28px;
}
.lightbox-close {
  position:absolute;
  top:-10px;
  right:-6px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  color: var(--navy);
}
.lightbox-nav {
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  width:48px;
  height:48px;
  border-radius:50%;
  background: rgba(255,255,255,0.88);
  color: var(--navy);
}
.lightbox-nav.prev { left: 16px; }
.lightbox-nav.next { right: 16px; }
.floating-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  min-height: 56px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  color: var(--navy);
  font-weight: 800;
  box-shadow: 0 18px 42px rgba(8,23,51,0.26);
}
.contact-popup {
  position: fixed;
  right: 18px;
  bottom: 86px;
  z-index: 81;
  width: min(390px, calc(100% - 28px));
  background: linear-gradient(180deg, var(--navy), var(--navy-2));
  color: #fff;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 26px 68px rgba(8,23,51,0.34);
  overflow:hidden;
  display:none;
}
.contact-popup.open { display:block; }
.popup-head {
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 14px;
  padding: 20px 20px 10px;
}
.popup-head strong { display:block; font-size: 20px; }
.popup-head span { display:block; margin-top:6px; color: rgba(255,255,255,0.72); font-size: 13px; }
.popup-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color:#fff;
}
.popup-body { padding: 0 20px 20px; display:grid; gap:10px; }
.popup-body .btn { width:100%; }
@media (max-width: 1080px) {
  .hero-grid, .cta-band { grid-template-columns: 1fr; }
  .stats-grid, .trust-grid, .details-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-actions { justify-content: flex-start; }
}
@media (max-width: 760px) {
  .container { width: min(calc(100% - 24px), 1240px); }
  .site-header { position: static; }
  .header-inner { min-height: auto; padding: 12px 0; flex-direction: column; align-items:flex-start; }
  .header-nav { display:grid; grid-template-columns: 1fr 1fr; width:100%; gap:10px; }
  .header-nav .link { display:none; }
  .desktop-only { display:none; }
  .header-nav .btn { width:100%; }
  .brand-mark { width: 48px; height:48px; }
  .brand-copy strong { font-size:15px; }
  .brand-copy span { font-size:12px; }
  .hero { padding: 12px 0 10px; }
  .hero-grid, .section-card, .content-card, .cta-band, .enquiry-card { padding: 18px; }
  .hero-shell { border-radius: 24px; }
  .lead { font-size: 16px; }
  .price { font-size: 34px; }
  .hero-actions .btn, .cta-actions .btn { flex: 1 1 100%; }
  .stats-grid, .trust-grid, .gallery-grid, .details-grid, .spec-table { grid-template-columns: 1fr; }
  .section-head h2, .content-card h2, .cta-band h2, .enquiry-card h2 { font-size: 26px; }
  .floating-contact {
    left: 14px;
    right: 14px;
    width: auto;
    bottom: 14px;
  }
  .contact-popup {
    left: 14px;
    right: 14px;
    width: auto;
    bottom: 80px;
  }
  .site-footer { padding-bottom: 90px; }
  input, textarea { font-size: 16px; }
}
@media (max-width: 420px) {
  .header-nav { grid-template-columns: 1fr; }
  .hero-copy h1 { font-size: 29px; }
  .section-head h2, .content-card h2, .cta-band h2, .enquiry-card h2 { font-size: 24px; }
}
