:root {
  --white: #f8f8f5;
  --paper: #efeee9;
  --mist: #d9ddd8;
  --silver: #c7cbc9;
  --graphite: #232725;
  --charcoal: #111413;
  --ink: #171a19;
  --muted: #6f7671;
  --green: #94c83d;
  --line: rgba(30, 34, 32, .12);
  --glass: rgba(255, 255, 255, .18);
  --radius: 8px;
  --shadow: 0 24px 70px rgba(18, 22, 20, .18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 255, 255, .9), transparent 34rem),
    linear-gradient(135deg, #f7f7f3 0%, #e6e7e2 46%, #f9f9f6 100%);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 20;
  width: min(1180px, calc(100% - 28px));
  min-height: 64px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 10px 12px 10px 20px;
  color: var(--ink);
  border: 1px solid rgba(30, 34, 32, .12);
  border-radius: 8px;
  background: rgba(248, 248, 245, .85);
  box-shadow: 0 18px 60px rgba(0, 0, 0, .18);
  backdrop-filter: blur(22px);
  transition: background .45s ease, color .45s ease, border-color .45s ease;
}

.site-header.scrolled,
.vehicle-page .site-header {
  color: var(--ink);
  background: rgba(248, 248, 245, .9);
  border-color: rgba(30, 34, 32, .12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-logo {
  height: 78px;
  width: auto;
  display: block;
  filter: brightness(.32) contrast(1.35) drop-shadow(0 1px 3px rgba(0, 0, 0, .12));
  transition: filter .45s ease;
}

.site-header .brand-logo {
  transform: translateY(12px);
}

.footer-brand .brand-logo { height: 54px; filter: none; }

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
  font-size: .82rem;
  font-weight: 650;
}

.nav a { opacity: .9; transition: opacity .25s ease, transform .25s ease; }
.nav a:hover { opacity: 1; transform: translateY(-1px); }

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .34);
  font-weight: 750;
  white-space: nowrap;
}

.nav-cta {
  color: var(--charcoal);
  background: linear-gradient(135deg, #fdfdfb, #cfd4d0);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 130px clamp(22px, 5vw, 72px) 38px;
  color: var(--white);
  background: var(--charcoal);
}

.hero-media,
.hero-media img,
.hero-sheen {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: cinematicMove 18s ease-in-out infinite alternate;
}

.hero-sheen {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(11, 14, 14, .78) 0%, rgba(11, 14, 14, .26) 38%, rgba(11, 14, 14, .08) 72%),
    linear-gradient(0deg, rgba(11, 14, 14, .72) 0%, transparent 42%);
}

.hero-watermark {
  position: absolute;
  z-index: 2;
  top: clamp(20px, 4vw, 40px);
  right: clamp(22px, 5vw, 72px);
  height: clamp(24px, 3vw, 34px);
  width: auto;
  opacity: .82;
  filter: brightness(0) invert(1);
  pointer-events: none;
}

@keyframes cinematicMove {
  from { transform: scale(1.06) translate3d(-1%, 0, 0); }
  to { transform: scale(1.11) translate3d(1.5%, -1%, 0); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 520px;
  padding-bottom: 116px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--green);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 18px;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 1;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.hero p:not(.eyebrow) {
  max-width: 420px;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(1rem, 2vw, 1.22rem);
}

.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.button { min-width: 156px; transition: transform .25s ease, box-shadow .25s ease, background .25s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary {
  color: var(--charcoal);
  border-color: rgba(148, 200, 61, .5);
  background: linear-gradient(135deg, #b8ea5a, #80b931);
  box-shadow: 0 18px 38px rgba(148, 200, 61, .28);
}

.button-glass {
  color: inherit;
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(18px);
}

.enquire-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
}
.enquire-whatsapp .whatsapp-icon { display: inline-flex; }

.hero-specs {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  width: min(780px, 100%);
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(20px);
}

.hero-specs span {
  padding: 14px 18px;
  color: rgba(255, 255, 255, .68);
  font-size: .76rem;
}

.hero-specs strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
}

.hero-spec-wide {
  grid-column: span 2;
  display: flex;
  align-items: center;
  color: var(--white);
  font-weight: 750;
  font-size: .84rem;
  line-height: 1.3;
}

.section {
  padding: clamp(72px, 10vw, 132px) clamp(22px, 5vw, 72px);
}

.intro {
  max-width: 1180px;
  margin: 0 auto;
  padding-bottom: 40px;
  position: relative;
}

.section-watermark {
  position: absolute;
  top: 6px;
  right: clamp(0px, 4vw, 40px);
  height: clamp(46px, 7vw, 78px);
  width: auto;
  opacity: .18;
  pointer-events: none;
  filter: grayscale(1) brightness(.3) contrast(1.2);
}

.intro h2,
.section-head h2,
.charge-intro h2,
.charge-network h2,
.enquire h2,
.luxury-spec h2 {
  max-width: 900px;
  font-size: clamp(2.1rem, 5vw, 4.8rem);
  line-height: .98;
}

.section-head {
  max-width: 1280px;
  margin: 0 auto 34px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.text-link {
  padding-bottom: 6px;
  color: var(--muted);
  border-bottom: 1px solid currentColor;
  font-weight: 750;
}

.section-brand {
  height: 34px;
  width: auto;
  max-width: 140px;
  opacity: .8;
  flex-shrink: 0;
  filter: grayscale(1) brightness(.3) contrast(1.2);
}

.collection-end-mark {
  display: block;
  height: 28px;
  width: auto;
  margin: 40px auto 0;
  opacity: .45;
  filter: grayscale(1) brightness(.3) contrast(1.2);
}

.section-head-aside {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.section-kicker-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1280px;
  margin: 0 auto;
}
.section-kicker-row .section-kicker { margin: 0; }

.vehicle-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.vehicle-card a {
  min-height: 100%;
  display: grid;
  grid-template-rows: 240px 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .54);
  box-shadow: 0 18px 55px rgba(32, 36, 34, .08);
  backdrop-filter: blur(18px);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.vehicle-card a:hover {
  transform: translateY(-8px);
  border-color: rgba(148, 200, 61, .36);
  box-shadow: var(--shadow);
}

.vehicle-image {
  display: grid;
  place-items: center;
  padding: 22px;
  background: linear-gradient(145deg, #ffffff, #dddeda);
}

.vehicle-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 28px 28px rgba(0, 0, 0, .18));
  transition: transform .45s ease;
}

.vehicle-card a:hover img { transform: scale(1.05); }
.vehicle-image img.card-watermark {
  position: absolute;
  top: 14px;
  left: 50%;
  bottom: auto;
  right: auto;
  transform: translateX(-50%);
  height: 30px;
  width: auto;
  max-width: 120px;
  opacity: .9;
  pointer-events: none;
  filter: grayscale(1) brightness(.25) contrast(1.3);
}
.card-badge-bottom {
  display: block;
  height: 16px;
  width: auto;
  max-width: 72px;
  margin: 0 0 10px auto;
  opacity: .8;
  filter: grayscale(1) brightness(.3) contrast(1.2);
}
.detail-hero-media img.detail-hero-watermark {
  position: absolute;
  bottom: 18px;
  right: 18px;
  height: 32px;
  width: auto;
  opacity: .85;
  pointer-events: none;
  filter: grayscale(1) brightness(.25) contrast(1.3);
}
.vehicle-body { padding: 20px; }
.vehicle-body span { color: var(--muted); font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.vehicle-body h3 { margin: 8px 0 8px; font-size: 1.35rem; }
.vehicle-body p { min-height: 72px; color: var(--muted); font-size: .92rem; }

.vehicle-name-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 8px 0 8px;
}
.vehicle-name-row h3 { margin: 0; }
.name-badge {
  height: 20px;
  width: auto;
  max-width: 80px;
  opacity: .85;
  flex-shrink: 0;
  filter: grayscale(1) brightness(.25) contrast(1.3);
}
.detail-copy .vehicle-name-row { flex-wrap: wrap; margin: 0 0 18px; }
.detail-copy .vehicle-name-row h1 { margin: 0; }
.detail-name-badge { height: 26px; max-width: 104px; opacity: .85; }

.card-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin: 16px 0 2px;
}

.card-gallery img {
  width: 100%;
  aspect-ratio: 1.2;
  object-fit: cover;
  border-radius: 6px;
  background: #dfe2de;
  filter: saturate(.92);
}

dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 18px 0;
}

dt { color: var(--muted); font-size: .68rem; }
dd { margin: 0; font-weight: 800; font-size: .86rem; }

.card-foot {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.card-foot em { color: var(--green); font-style: normal; font-weight: 800; font-size: .82rem; }

.moq-intro {
  margin-top: 10px;
  max-width: 640px;
  color: var(--muted);
  font-size: .95rem;
}

.moq-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(24, 26, 24, .88);
  color: #fff;
  font-size: .66rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .18);
}

.vehicle-card-moq .vehicle-image { position: relative; }

.landed-tag {
  margin: 10px 0 0;
  color: var(--green);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .01em;
}

.landed-price-info {
  max-width: 720px;
  margin: 0 auto;
  padding-top: 0;
}

.landed-price-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .6);
  padding: 28px 30px;
}

.landed-price-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  font-size: 1.15rem;
  font-weight: 800;
}

.landed-price-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid var(--green);
  color: var(--green);
  font-size: .9rem;
  flex-shrink: 0;
}

.landed-price-card ul {
  list-style: disc;
  margin: 0 0 20px;
  padding-left: 22px;
  display: grid;
  gap: 10px;
  color: var(--ink);
}

.landed-price-disclaimer {
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .92rem;
}

.landed-price-disclaimer strong { color: var(--ink); }

.pricing-policy {
  max-width: 900px;
  margin: 0 auto 34px;
  padding: 26px 30px;
  border: 1px solid rgba(148, 200, 61, .35);
  border-radius: 8px;
  background: rgba(148, 200, 61, .07);
}

.pricing-policy p { color: var(--muted); margin: 0 0 14px; }
.pricing-policy p:last-child { margin-bottom: 0; }
.pricing-policy strong { color: var(--ink); }

.pricing-lead { color: var(--ink) !important; font-size: 1.05rem; }

.pricing-markets { font-size: .88rem; }

.pricing-quote {
  font-size: 1.3rem;
  font-weight: 800;
  font-style: italic;
  color: var(--ink) !important;
  padding-top: 14px;
  border-top: 1px solid rgba(148, 200, 61, .3);
}

.moq-note {
  margin-top: 10px;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .01em;
}

.moq-flag {
  margin: 10px 0 0;
  padding: 8px 14px;
  display: inline-block;
  border-radius: 999px;
  background: rgba(61, 204, 110, .12);
  color: var(--green);
  font-size: .78rem;
  font-weight: 800;
}

.editorial,
.business,
.pricing {
  background: linear-gradient(180deg, rgba(255, 255, 255, .28), rgba(199, 203, 201, .22));
}

.story-panel {
  max-width: 1280px;
  margin: 0 auto 20px;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 28px;
  align-items: center;
  overflow: hidden;
  padding: clamp(28px, 5vw, 62px);
  border-radius: 8px;
  color: var(--white);
  background:
    radial-gradient(circle at 70% 30%, rgba(255, 255, 255, .16), transparent 24rem),
    linear-gradient(135deg, #222724, #4a504c);
  box-shadow: var(--shadow);
}

.story-panel h2 { font-size: clamp(2rem, 4vw, 4.4rem); line-height: .96; }
.story-panel p:not(.section-kicker) { color: rgba(255, 255, 255, .72); max-width: 520px; }
.story-panel img { align-self: end; filter: drop-shadow(0 40px 35px rgba(0, 0, 0, .28)); }

.story-grid,
.business-grid,
.ownership {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.story-card,
.business-grid article,
.ownership article,
.detail-stats article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .54);
}

.story-card span { color: var(--green); font-weight: 800; }
.story-card h3, .ownership h3 { margin: 34px 0 10px; }
.story-card p, .ownership p { color: var(--muted); }

.charge-intro,
.enquire,
.luxury-spec {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.charge-copy { text-align: center; }

.charge-logo { height: 74px; width: auto; margin: 0 auto 22px; display: block; }

.charge-highlight {
  margin: 18px 0;
  padding: 16px 20px;
  border-radius: 8px;
  border: 1px solid rgba(148, 200, 61, .3);
  background: rgba(148, 200, 61, .1);
  font-weight: 700;
  color: var(--ink);
}

.charge-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 26px;
}

.charge-feature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .5);
  font-weight: 700;
  font-size: .88rem;
}

.charge-feature-icon { font-size: 1.1rem; }

.charge-visual {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.charge-visual img { width: 100%; height: 100%; object-fit: cover; }

.charge-vehicle-spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 0;
}

.charge-vehicle-spotlight img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  max-height: 340px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: url("assets/logo-wordmark.png") no-repeat center / clamp(40px, 6vw, 64px) auto, linear-gradient(145deg, #eef0ec, #dddeda);
}

.charge-vehicle-spotlight p { color: var(--muted); margin: 14px 0 22px; }

.charge-promo {
  max-width: 1280px;
  margin: -34px auto 0;
  padding: 0 clamp(22px, 5vw, 72px);
  position: relative;
  z-index: 3;
}

.charge-promo-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 26px;
  padding: 22px clamp(20px, 3vw, 34px);
  border-radius: 10px;
  color: var(--white);
  background: linear-gradient(120deg, #14201a, #10130f 55%, #182417);
  border: 1px solid rgba(148, 200, 61, .28);
  box-shadow: 0 26px 60px rgba(9, 12, 10, .38);
}

.charge-promo-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(150deg, #b3e05a, var(--green));
  box-shadow: 0 8px 20px rgba(148, 200, 61, .35);
}

.charge-promo-icon svg { width: 20px; height: 20px; }

.charge-promo-text { flex: 1; min-width: 240px; }

.charge-promo-eyebrow {
  margin: 0 0 4px;
  color: var(--green);
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.charge-promo-message {
  margin: 0;
  font-weight: 550;
  color: rgba(248, 248, 245, .92);
  line-height: 1.5;
}

.charge-promo-message strong { color: var(--white); font-weight: 800; }

.charge-promo-cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-weight: 750;
  font-size: .86rem;
  white-space: nowrap;
  transition: transform .25s ease, box-shadow .25s ease;
}

.charge-promo-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(0, 0, 0, .28); }
.charge-promo-cta svg { transition: transform .25s ease; }
.charge-promo-cta:hover svg { transform: translateX(3px); }

.charge-products {
  background: linear-gradient(180deg, rgba(255, 255, 255, .28), rgba(199, 203, 201, .22));
}

.charge-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.charge-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, .54);
  box-shadow: 0 18px 55px rgba(32, 36, 34, .08);
  backdrop-filter: blur(18px);
}

.charge-card-image {
  height: 220px;
  display: grid;
  place-items: center;
  padding: 22px;
  background: linear-gradient(145deg, #ffffff, #dddeda);
}

.charge-card-image img { width: 100%; height: 100%; object-fit: contain; }
.charge-card-body { padding: 20px; }
.charge-card-body span { color: var(--muted); font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.charge-card-body h3 { margin: 8px 0 8px; font-size: 1.2rem; }
.charge-card-body p { margin: 0; color: var(--muted); font-size: .9rem; }

.charge-network {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.charge-network-media { border-radius: 8px; overflow: hidden; box-shadow: var(--shadow); }
.charge-network-media img { width: 100%; height: 100%; object-fit: cover; }

.map-cards { display: grid; gap: 12px; margin-top: 24px; }

.map-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .6);
  box-shadow: 0 12px 30px rgba(32, 36, 34, .06);
}

.map-card strong { color: var(--ink); }
.map-card span { display: block; color: var(--green); font-size: .78rem; font-weight: 800; margin-bottom: 6px; }
.map-card.muted { opacity: .72; }
.map-card strong span.fi { display: inline-block; width: 1.3em; height: 1em; margin: 0 2px 0 0; vertical-align: middle; color: transparent; font-size: 1rem; border-radius: 2px; box-shadow: 0 0 0 1px rgba(0,0,0,.08); }

.business-grid { grid-template-columns: repeat(4, 1fr); }
.business-grid article {
  min-height: 150px;
  display: flex;
  align-items: end;
  color: var(--white);
  font-weight: 800;
  background: linear-gradient(135deg, #2a302d, #777d78);
}

.magazine-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 18px;
}

.magazine-large,
.magazine-small {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  border-radius: 8px;
  background: #dfe2de;
}

.magazine-large { grid-row: span 2; min-height: 680px; }
.magazine-large img,
.magazine-small img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #eef0ec;
}

.magazine-large div,
.magazine-small h3 {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 1;
}

.magazine-large::after,
.magazine-small::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(17, 20, 19, .72), transparent 48%);
}

.magazine-large div,
.magazine-small h3 { color: var(--white); }
.magazine-large h2 { font-size: clamp(2rem, 4vw, 4rem); line-height: .95; }
.magazine-large p { color: rgba(255, 255, 255, .76); }

.price-tabs {
  display: flex;
  gap: 6px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .5);
}

.price-tabs button {
  min-height: 38px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-weight: 750;
}

.price-tabs button.active { color: var(--charcoal); background: var(--white); box-shadow: 0 8px 20px rgba(0,0,0,.08); }

.price-table {
  max-width: 980px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .58);
}

.price-row {
  display: grid;
  grid-template-columns: 1fr 150px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}

.price-row:last-child { border-bottom: 0; }
.price-row strong { font-size: 1.1rem; }
.price-row small { color: var(--muted); }
.fine-print { max-width: 980px; margin: 22px auto 0; color: var(--muted); font-size: .9rem; }

.enquire {
  padding: clamp(34px, 5vw, 60px);
  border-radius: 8px;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 10%, rgba(148, 200, 61, .18), transparent 24rem),
    linear-gradient(135deg, #151817, #3a413c);
  box-shadow: var(--shadow);
}

.enquire p:not(.section-kicker) { color: rgba(255, 255, 255, .72); }

.enquiry-form {
  display: grid;
  gap: 12px;
}

label { color: rgba(255, 255, 255, .72); font-size: .82rem; font-weight: 750; }
input, textarea, select {
  width: 100%;
  min-height: 48px;
  margin-top: 6px;
  padding: 0 14px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background: rgba(255, 255, 255, .1);
}

textarea { min-height: 104px; padding-top: 12px; resize: vertical; }
select option { color: var(--ink); }

.footer {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 38px;
  padding: 64px clamp(22px, 5vw, 72px) 36px;
  color: var(--white);
  background: #181b1a;
}

.footer h3 { font-size: .86rem; text-transform: uppercase; letter-spacing: .16em; color: var(--silver); }
.footer a { display: block; margin-bottom: 10px; color: rgba(255, 255, 255, .72); }
.footer-brand p { max-width: 330px; color: rgba(255, 255, 255, .62); }

.whatsapp-link {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  padding: 10px 18px;
  border-radius: 999px;
  color: var(--charcoal) !important;
  font-weight: 750;
  background: linear-gradient(135deg, #b8ea5a, #80b931);
  transition: transform .25s ease, box-shadow .25s ease;
}

.whatsapp-link:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(148, 200, 61, .3); }
.whatsapp-icon { display: inline-flex; }

.detail-hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 28px;
  align-items: center;
  padding: 130px clamp(22px, 5vw, 72px) 60px;
  background:
    radial-gradient(circle at 75% 38%, rgba(148, 200, 61, .12), transparent 24rem),
    linear-gradient(135deg, #f4f4f0, #dfe2de);
}

.detail-copy h1 { color: var(--ink); font-size: clamp(2.2rem, 4.5vw, 3.8rem); }
.detail-copy p:not(.section-kicker) { color: var(--muted); max-width: 480px; }
.detail-hero img { width: 100%; filter: drop-shadow(0 36px 38px rgba(0,0,0,.18)); }

.detail-stats {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.detail-stats article span { display: block; color: var(--muted); margin-bottom: 10px; }
.detail-stats article strong { font-size: clamp(1.5rem, 3vw, 2.4rem); }

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.feature-list span {
  min-height: 92px;
  display: flex;
  align-items: end;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .58);
  font-weight: 800;
}

.gallery-showcase {
  max-width: 1280px;
  margin: 0 auto;
}

.gallery-showcase h2 {
  max-width: 760px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: .98;
}

.gallery-strip {
  max-width: 1280px;
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: 1fr 1.3fr .8fr;
  gap: 18px;
}

.gallery-strip figure {
  position: relative;
  min-height: 420px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #e1e2de;
}

.gallery-strip figure:nth-child(4) {
  grid-column: span 2;
}

.gallery-strip img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #eef0ec;
}

.gallery-strip figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  color: var(--white);
  background: rgba(17, 20, 19, .42);
  backdrop-filter: blur(14px);
  font-size: .78rem;
  font-weight: 800;
}

.related { background: linear-gradient(180deg, rgba(255, 255, 255, .2), rgba(199, 203, 201, .2)); }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .vehicle-grid { grid-template-columns: repeat(2, 1fr); }
  .story-grid, .business-grid, .ownership, .detail-stats { grid-template-columns: repeat(2, 1fr); }
  .story-panel, .charge-intro, .charge-network, .enquire, .luxury-spec, .detail-hero, .charge-vehicle-spotlight { grid-template-columns: 1fr; }
  .charge-grid { grid-template-columns: 1fr; }
  .charge-features { grid-template-columns: 1fr; }
  .magazine-grid { grid-template-columns: 1fr; }
  .magazine-large { min-height: 520px; }
  .footer { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .site-header { top: 10px; width: calc(100% - 20px); }
  .nav-toggle { display: block; color: inherit; }
  .nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    background: rgba(248, 248, 245, .94);
    backdrop-filter: blur(18px);
  }
  .nav.open { display: flex; }
  .hero { padding-top: 110px; }
  .hero-content { padding-bottom: 26px; }
  .hero-specs { grid-template-columns: repeat(2, 1fr); }
  .section-head { display: block; }
  .section-head-aside { align-items: flex-start; margin-top: 14px; }
  .section-brand, .hero-watermark { display: none; }
  .section-kicker-row { display: block; }
  .vehicle-grid, .story-grid, .business-grid, .ownership, .detail-stats, .feature-list { grid-template-columns: 1fr; }
  .business-grid { gap: 10px; }
  .business-grid article { min-height: 84px; padding: 16px; font-size: .95rem; }
  .vehicle-card a { grid-template-rows: 230px 1fr; }
  .story-panel { padding: 28px; }
  .charge-visual { min-height: 380px; }
  .price-tabs { margin-top: 20px; overflow-x: auto; }
  .price-row { grid-template-columns: 1fr; gap: 4px; }
  .gallery-strip { grid-template-columns: 1fr; }
  .gallery-strip figure,
  .gallery-strip figure:nth-child(4) { grid-column: auto; min-height: 300px; }
  .footer { grid-template-columns: 1fr; }
  h1 { font-size: clamp(2rem, 8vw, 2.8rem); }
  .detail-copy h1 { font-size: clamp(1.8rem, 7vw, 2.6rem); }
}

@media (max-width: 440px) {
  .brand-logo { height: 58px; }
  .hero-specs { grid-template-columns: 1fr; }
  .button { width: 100%; }
  dl { grid-template-columns: 1fr; }
  h1 { font-size: clamp(1.7rem, 9vw, 2.2rem); }
}

.card-gallery img.lightbox-trigger,
.gallery-strip img.lightbox-trigger {
  cursor: zoom-in;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: rgba(10, 12, 11, .92);
  box-sizing: border-box;
}

.lightbox[hidden] { display: none; }

.lightbox figure {
  margin: 0;
  max-width: min(1100px, 100%);
  max-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.lightbox img {
  max-width: 100%;
  max-height: 80vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .5);
}

.lightbox figcaption {
  color: rgba(255, 255, 255, .85);
  font-weight: 700;
  font-size: .92rem;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .3);
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 440px) {
  .lightbox { padding: 20px; }
  .lightbox-close { top: 10px; right: 10px; width: 38px; height: 38px; font-size: 1.4rem; }
}
