/* ================================================================
   CONCEPT B — Sydney Wholesale Direct
   Light / clean / photography-first
   Premium European automotive feel
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

/* ── Tokens ─────────────────────────────────────────────────── */
:root {
  --white: #ffffff;
  --canvas: #f7f7f5;
  --surface: #eeeeea;
  --border: #e2e2dd;
  --border-strong: #c4c4bc;

  --charcoal: #181818;
  --ink: #2c2c2c;
  --ink-soft: #5a5a5a;
  --ink-mute: #999990;

  --accent: #1b4fd8;
  --accent-hover: #1540b8;
  --accent-light: #edf2ff;
  --accent-text: #1a3fa5;

  --navy: #0d2340;
  --navy-mid: #1a3a60;

  --font: 'DM Sans', system-ui, -apple-system, sans-serif;

  --nav-h: 72px;
  --max-w: 1360px;
  --gutter: clamp(16px, 5vw, 72px);

  --r-xs: 3px;
  --r-sm: 6px;
  --r: 10px;
  --r-lg: 16px;
  --r-xl: 24px;

  --s-xs: 0 1px 3px rgba(0,0,0,.06);
  --s-sm: 0 2px 8px rgba(0,0,0,.07), 0 1px 2px rgba(0,0,0,.04);
  --s-md: 0 4px 20px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.04);
  --s-lg: 0 12px 40px rgba(0,0,0,.09), 0 4px 12px rgba(0,0,0,.04);
  --s-xl: 0 24px 64px rgba(0,0,0,.11), 0 8px 24px rgba(0,0,0,.05);

  --t: 160ms ease;
  --t-slow: 300ms ease;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  padding-top: var(--nav-h);
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ── Typography ─────────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 {
  color: var(--charcoal);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(34px, 5.5vw, 66px); font-weight: 700; letter-spacing: -0.03em; }
h2 { font-size: clamp(24px, 3.5vw, 44px); }
h3 { font-size: clamp(18px, 2.5vw, 26px); }
h4 { font-size: clamp(15px, 1.8vw, 19px); }

p { line-height: 1.72; color: var(--ink-soft); }

.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-text);
  margin-bottom: 10px;
}

/* ── Layout ─────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section     { padding-block: clamp(20px, 3vw, 40px); }
.section-sm  { padding-block: clamp(10px, 1.8vw, 22px); }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  transition: var(--t);
  cursor: pointer;
  white-space: nowrap;
  border: 1.5px solid transparent;
  letter-spacing: 0.01em;
}
.btn-primary { background: var(--accent); color: var(--white); border-color: var(--accent); }
.btn-primary:hover {
  background: var(--accent-hover); border-color: var(--accent-hover);
  transform: translateY(-1px); box-shadow: 0 4px 18px rgba(27,79,216,.32);
}
.btn-dark { background: var(--charcoal); color: var(--white); border-color: var(--charcoal); }
.btn-dark:hover {
  background: #000; border-color: #000;
  transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,0,0,.24);
}
.btn-outline { background: transparent; color: var(--charcoal); border-color: var(--border-strong); }
.btn-outline:hover { border-color: var(--charcoal); background: var(--charcoal); color: var(--white); }
.btn-outline-white { background: transparent; color: white; border-color: rgba(255,255,255,.45); }
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.8); }
.btn-lg { padding: 16px 32px; font-size: 15px; }
.btn-sm { padding: 8px 16px; font-size: 13px; }

/* ── Navigation ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--t-slow);
}
.nav.scrolled { box-shadow: var(--s-md); }

.nav-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-right: 12px;
}
.nav-logo-img {
  height: 52px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.nav-logo-location {
  font-size: 10px;
  font-weight: 500;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
  white-space: nowrap;
  align-self: flex-end;
  padding-bottom: 4px;
}
.nav-logo-badge {
  width: 32px; height: 32px;
  background: var(--navy);
  border-radius: var(--r-xs);
  display: grid; place-items: center;
  color: white;
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.04em;
}
.nav-logo-text {
  font-size: 14px; font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  line-height: 1.2;
}
.nav-logo-text small {
  display: block;
  font-size: 10px; font-weight: 500;
  color: var(--ink-mute);
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}
.nav-links a {
  padding: 8px 13px;
  font-size: 14px; font-weight: 500;
  color: var(--ink-soft);
  border-radius: var(--r-sm);
  transition: var(--t);
}
.nav-links a:hover, .nav-links a.active { color: var(--charcoal); background: var(--surface); }

.nav-cta { margin-left: auto; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  padding: 8px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block; height: 1.5px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--t);
}
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 16px var(--gutter) 28px;
  box-shadow: var(--s-lg);
  z-index: 199;
}
.nav-mobile.open { display: block; }
.nav-mobile a {
  display: block;
  padding: 13px 0;
  font-size: 16px; font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--border);
}
.nav-mobile a:last-child { border-bottom: none; }

/* ── Homepage hero (split) ──────────────────────────────────── */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 20px;
}
.hero-split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(20px,2.5vw,32px) clamp(20px,3vw,48px) clamp(20px,2.5vw,36px) var(--gutter);
  background: var(--white);
}
.hero-split-image {
  position: relative;
  overflow: hidden;
  height: clamp(400px, 72vh, 760px);
}
.hero-split-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-title {
  font-size: clamp(34px, 5vw, 62px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.07;
  color: var(--charcoal);
  margin-bottom: 16px;
  max-width: 560px;
}
.hero-title em { font-style: normal; color: var(--accent); }

.hero-desc {
  font-size: clamp(14px, 1.3vw, 16px);
  color: var(--ink-soft);
  max-width: 400px;
  margin-bottom: 24px;
  line-height: 1.68;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-divider {
  border: none;
  border-top: 1px solid var(--border);

  margin-bottom: 24px;
}
.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}
.hero-stat-num {
  display: block;
  font-size: 28px; font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-label {
  display: block;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* ── Section headings ───────────────────────────────────────── */
.section-head { margin-bottom: clamp(32px, 4vw, 52px); }
.section-head h2 { margin-bottom: 10px; }
.section-head p { font-size: 17px; max-width: 520px; }

.section-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: clamp(28px, 3.5vw, 44px);
}
.section-head-row h2 { margin-bottom: 0; }

/* ── Vehicle cards ──────────────────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.v-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform var(--t), box-shadow var(--t);
  cursor: pointer;
  display: block;
  color: inherit;
}
.v-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--s-lg);
  border-color: transparent;
}
.v-card-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--surface);
}
.v-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 380ms ease;
}
.v-card:hover .v-card-img img { transform: scale(1.04); }

.v-card-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: white;
  color: var(--ink);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 40px;
  box-shadow: var(--s-sm);
}
.v-card-badge.featured { background: var(--accent); color: white; }

.v-card-body { padding: 18px 20px 22px; }
.v-card-make { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 3px; }
.v-card-title { font-size: 16px; font-weight: 700; color: var(--charcoal); line-height: 1.3; margin-bottom: 12px; }
.v-card-price { font-size: 22px; font-weight: 700; color: var(--charcoal); letter-spacing: -0.025em; margin-bottom: 14px; }
.v-card-price span { font-size: 12px; font-weight: 400; color: var(--ink-mute); letter-spacing: 0; margin-left: 4px; }
.v-card-chips { display: flex; flex-wrap: wrap; gap: 6px; }

.chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--ink-soft);
  background: var(--canvas);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 40px;
  white-space: nowrap;
}

/* ── Filter bar ─────────────────────────────────────────────── */
.filter-wrap {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  position: sticky;
  top: var(--nav-h);
  z-index: 100;
}
.filter-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.filter-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-right: 8px;
}
.filter-btn {
  padding: 7px 16px;
  font-size: 13px; font-weight: 500;
  color: var(--ink-soft);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 40px;
  cursor: pointer;
  transition: var(--t);
  font-family: var(--font);
}
.filter-btn:hover { border-color: var(--charcoal); color: var(--charcoal); }
.filter-btn.active { background: var(--charcoal); border-color: var(--charcoal); color: white; }
.filter-count { margin-left: auto; font-size: 13px; color: var(--ink-mute); }

/* ── Page hero ──────────────────────────────────────────────── */
.page-hero {
  padding: clamp(16px,2vw,24px) 0 clamp(16px,2vw,24px);
  background: var(--canvas);
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { font-size: clamp(28px,4vw,52px); margin-bottom: 10px; }
.page-hero p { font-size: clamp(15px,1.5vw,17px); max-width: 560px; }

/* ── Breadcrumb ─────────────────────────────────────────────── */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--ink-mute);
  margin-bottom: 18px;
}
.breadcrumb a { color: var(--ink-mute); transition: color var(--t); }
.breadcrumb a:hover { color: var(--ink); }
.bc-sep { opacity: 0.5; }

/* ── About section ──────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px,6vw,88px);
  align-items: center;
}
.about-left {
  display: flex;
  flex-direction: column;
}
.about-img {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-content h2 { margin-bottom: 16px; }
.about-content p { margin-bottom: 16px; }
.about-stats {
  display: flex;
  gap: 0;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  flex-wrap: nowrap;
  justify-content: space-between;
}
.about-stat-num {
  display: block;
  font-size: 26px; font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--charcoal); line-height: 1;
}
.about-stat-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 5px;
}

/* ── Testimonials ───────────────────────────────────────────── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.t-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 32px;
}
.t-stars { color: #f59e0b; font-size: 14px; letter-spacing: 2px; margin-bottom: 14px; }
.t-text { font-size: 16px; font-style: italic; color: var(--ink); line-height: 1.7; margin-bottom: 22px; }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--surface);
  display: grid; place-items: center;
  font-size: 13px; font-weight: 700;
  color: var(--ink-soft); flex-shrink: 0;
}
.t-name { font-size: 14px; font-weight: 600; color: var(--charcoal); }
.t-detail { font-size: 12px; color: var(--ink-mute); }

/* ── Navy CTA strip ─────────────────────────────────────────── */
.cta-strip {
  background: var(--navy);
  padding: clamp(52px,7vw,80px) 0;
  text-align: center;
}
.cta-strip h2 { font-size: clamp(24px,3.5vw,42px); color: white; margin-bottom: 12px; }
.cta-strip p { color: rgba(255,255,255,.6); font-size: 16px; max-width: 460px; margin-inline: auto; margin-bottom: 36px; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ── Body type browse ───────────────────────────────────────── */
.body-browse {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}
.body-tile {
  border-radius: var(--r);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: white;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color var(--t), box-shadow var(--t);
  text-decoration: none;
}
.body-tile:hover { border-color: var(--accent); box-shadow: 0 4px 16px rgba(27,79,216,.1); }
.body-tile img { width: 100%; aspect-ratio: 4/3; object-fit: contain; padding: 20px 20px 8px; }
.body-tile-label {
  width: 100%;
  padding: 0 12px 12px;
  text-align: center;
  color: var(--charcoal);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,.75);
  padding: clamp(48px,6vw,80px) 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 52px;
}
.footer-brand h3 { color: white; font-size: 15px; margin-bottom: 8px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.65; max-width: 260px; }
.footer-col h4 {
  color: white; font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col li { margin-bottom: 8px; }
.footer-col a { font-size: 13px; color: rgba(255,255,255,.5); transition: color var(--t); }
.footer-col a:hover { color: rgba(255,255,255,.9); }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,.3); }

/* ── Vehicle Detail — Page Layout ──────────────────────────── */
.vd-page {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: clamp(24px, 3.5vw, 52px);
  align-items: start;
  padding-top: 20px;
  padding-bottom: 80px;
}
.vd-left { min-width: 0; }

/* ── Gallery ──────────────────────────────────────────────── */
.vd-gallery-main {
  position: relative;
  aspect-ratio: 16/11;
  border-radius: var(--r);
  overflow: hidden;
  background: var(--surface);
}
.vd-gallery-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity 200ms ease;
}
.vd-nav-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.88);
  border: none; border-radius: 50%;
  width: 38px; height: 38px;
  font-size: 22px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--charcoal);
  box-shadow: 0 2px 10px rgba(0,0,0,.14);
  transition: var(--t);
  z-index: 2;
  line-height: 1;
}
.vd-nav-btn:hover { background: #fff; box-shadow: 0 4px 18px rgba(0,0,0,.2); }
.vd-prev { left: 12px; }
.vd-next { right: 12px; }
.vd-img-counter {
  position: absolute;
  bottom: 12px; right: 12px;
  background: rgba(0,0,0,.52);
  color: #fff; font-size: 12px; font-weight: 600;
  padding: 3px 10px; border-radius: 20px;
}

/* ── Thumbnail strip (horizontal) ────────────────────────── */
.vd-thumbs-row {
  display: flex;
  gap: 8px;
  margin-top: 8px;
  margin-bottom: 32px;
}
.vd-thumb {
  flex: 1;
  aspect-ratio: 4/3;
  border-radius: var(--r-sm);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--t);
  background: var(--surface);
  min-width: 0;
}
.vd-thumb img { width: 100%; height: 100%; object-fit: cover; }
.vd-thumb.active { border-color: var(--accent); }
.vd-thumb:hover:not(.active) { border-color: var(--border-strong); }

/* ── Info column (sticky right) ──────────────────────────── */
.vd-info {
  position: sticky;
  top: calc(var(--nav-h) + 16px);
  max-height: calc(100svh - var(--nav-h) - 32px);
  overflow-y: auto;
  scrollbar-width: none;
}
.vd-info::-webkit-scrollbar { display: none; }
.vd-info-inner {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--s-lg);
  overflow: hidden;
}
.vd-info-top {
  padding: 20px 20px 16px;
  border-bottom: 1px solid var(--border);
}
.vd-info-make {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 4px;
}
.vd-info-title {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
  line-height: 1.2;
}
.vd-key-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.vd-ks-chip {
  font-size: 12px; font-weight: 500;
  color: var(--ink-soft);
  background: var(--canvas);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3px 10px;
}
.vd-info-price {
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}
.vd-info-est {
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.vd-info-est strong { color: var(--charcoal); }
.vd-est-link { color: var(--accent-text); font-size: 12px; margin-left: 4px; }
.vd-drive-away {
  font-size: 12px;
  color: var(--ink-mute);
  text-align: center;
  margin-top: 10px;
  margin-bottom: 0;
}

.vd-info-body { padding: 18px 20px 0; }

.vd-enq-btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 0;
}
.vd-enq-btn.open { opacity: 0.85; }

.vd-enq-collapse { overflow: hidden; max-height: 0; transition: max-height 0.3s ease; }
.vd-enq-collapse.open { max-height: 600px; }

.vd-info-trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 14px 20px;
  background: var(--canvas);
  border-top: 1px solid var(--border);
}
.vd-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 11px; font-weight: 500;
  color: var(--ink-soft);
  line-height: 1.3;
}
.vd-trust-check {
  width: 16px; height: 16px;
  background: var(--accent-light);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 8px;
  color: var(--accent-text);
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Left: content below gallery ─────────────────────────── */
.vd-desc { margin-bottom: 36px; }
.vd-desc h3 { font-size: 17px; margin-bottom: 12px; }
.vd-desc p { color: var(--ink); margin-bottom: 14px; }

.features-section { margin-bottom: 36px; }
.features-section h3 { font-size: 17px; margin-bottom: 16px; }
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.feat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--ink);
  padding: 7px 0;
}
.feat-check {
  width: 20px; height: 20px;
  background: var(--accent-light);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 10px;
  color: var(--accent-text);
  flex-shrink: 0;
}

.specs-section { margin-bottom: 36px; }
.specs-section h3 { font-size: 17px; font-weight: 600; margin-bottom: 16px; }
.specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}
.spec-key, .spec-val {
  padding: 11px 16px;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
}
.spec-key { background: var(--canvas); color: var(--ink-soft); font-weight: 500; }
.spec-val { color: var(--charcoal); font-weight: 500; }
.specs-grid > *:nth-last-child(-n+2) { border-bottom: none; }

.vd-finance {
  background: var(--canvas);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  margin-bottom: 0;
}
.vd-finance h3 { font-size: 17px; margin-bottom: 4px; }
.vd-finance-sub { font-size: 12px; color: var(--ink-mute); margin-bottom: 24px; }
.calc-sliders {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.calc-slider-item label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 13px; font-weight: 500;
  color: var(--ink);
  margin-bottom: 8px;
}
.calc-val { font-weight: 700; color: var(--accent-text); }
input[type="range"] {
  -webkit-appearance: none;
  width: 100%; height: 4px;
  background: var(--border-strong);
  border-radius: 4px;
  outline: none;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(27,79,216,.3);
  transition: transform var(--t);
}
input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.15); }
.calc-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  background: var(--border);
  gap: 1px;
}
.calc-result-item { background: white; padding: 14px 10px; text-align: center; }
.calc-result-val {
  display: block;
  font-size: 20px; font-weight: 700;
  color: var(--accent-text);
  letter-spacing: -0.02em;
}
.calc-result-label {
  display: block;
  font-size: 10px;
  color: var(--ink-mute);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 3px;
}
.calc-result-item.primary .calc-result-val { font-size: 24px; color: var(--charcoal); }

/* ── CTAs + Form ──────────────────────────────────────────── */
.vd-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px;
  background: var(--charcoal);
  color: white;
  border-radius: var(--r);
  font-size: 16px; font-weight: 700;
  width: 100%;
  margin-bottom: 10px;
  transition: var(--t);
}
.vd-call:hover { background: #000; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,0,0,.24); }
.vd-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  font-size: 14px; font-weight: 600;
  color: var(--ink);
  width: 100%;
  margin-bottom: 16px;
  transition: var(--t);
}
.vd-whatsapp:hover { border-color: #25d366; color: #128c3a; }
.enq-or {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  color: var(--ink-mute);
  margin-bottom: 16px;
}
.enq-or::before, .enq-or::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.enq-form { display: flex; flex-direction: column; gap: 10px; }
.enq-form label { font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-mute); display: block; margin-bottom: 4px; }
.enq-form input, .enq-form textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-size: 14px;
  color: var(--charcoal);
  background: var(--white);
  outline: none;
  transition: border-color var(--t);
}
.enq-form input:focus, .enq-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(27,79,216,.1);
}
.enq-form textarea { resize: vertical; min-height: 76px; }
.enq-submit {
  padding: 14px;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: var(--r);
  font-size: 15px; font-weight: 700;
  cursor: pointer;
  transition: var(--t);
  font-family: var(--font);
}
.enq-submit:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(27,79,216,.3); }
.vd-enq-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: var(--canvas);
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--ink-mute);
  margin-top: 16px;
}

/* ── Sell page ──────────────────────────────────────────────── */
.sell-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  counter-reset: step;
}
.sell-step { position: relative; padding-top: 52px; }
.sell-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute; top: 0; left: 0;
  font-size: 40px; font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--border-strong);
  line-height: 1;
}
.sell-step h3 { font-size: 18px; margin-bottom: 8px; }
.sell-step p { font-size: 14px; }

/* ── Finance page ───────────────────────────────────────────── */
.finance-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: var(--t);
}
.finance-card:hover { box-shadow: var(--s-md); border-color: var(--border-strong); }
.finance-card-icon { font-size: 32px; margin-bottom: 18px; }
.finance-card h3 { font-size: 18px; margin-bottom: 8px; }
.finance-card p { font-size: 14px; }

/* ── Contact page ───────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px,6vw,80px);
  align-items: start;
}
.contact-info-item {
  display: flex;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.ci-icon { font-size: 20px; width: 36px; flex-shrink: 0; }
.ci-label { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-mute); display: block; margin-bottom: 3px; }
.ci-val { font-size: 15px; font-weight: 500; color: var(--charcoal); }
.contact-map { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--border); aspect-ratio: 4/3; margin-bottom: 0; }
.contact-map iframe { width: 100%; height: 100%; display: block; border: none; }

.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px 32px;
  box-shadow: var(--s-sm);
}
.form-card h2 { font-size: 22px; margin-bottom: 8px; }
.form-card > p { margin-bottom: 28px; }
.form-stack { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-mute); }
.form-group input, .form-group textarea, .form-group select {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-size: 14px;
  color: var(--charcoal);
  background: var(--white);
  outline: none;
  transition: border-color var(--t);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(27,79,216,.1);
}
.form-group textarea { resize: vertical; min-height: 96px; }

/* ── Generic field styles (sourcing form + others) ─────────── */
.field-label { font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-mute); display: block; margin-bottom: 5px; }
.field-input {
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-size: 14px; color: var(--charcoal);
  background: var(--white); outline: none;
  font-family: var(--font);
  transition: border-color var(--t);
  box-sizing: border-box;
}
.field-input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(27,79,216,.1); }
textarea.field-input { resize: vertical; min-height: 84px; }

/* ── Utilities ──────────────────────────────────────────────── */
.text-center { text-align: center; }
.color-mute   { color: var(--ink-mute); }
.flex-center  { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.mt-8  { margin-top: 8px; }
.mt-20 { margin-top: 20px; }
.gap-8  { gap: 8px; }
.gap-12 { gap: 12px; }
.hidden { display: none; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .body-browse { grid-template-columns: repeat(3, 1fr); }
  .vd-layout { grid-template-columns: 1fr; }
  .vd-enquiry { position: static; }
  .about-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }

  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .hero-split { grid-template-columns: 1fr; min-height: auto; }
  .hero-split-image { aspect-ratio: 16/9; }
  .hero-stats { gap: 24px; }

  .card-grid { grid-template-columns: 1fr; }
  .calc-sliders { grid-template-columns: 1fr; }
  .specs-grid { grid-template-columns: 1fr; }
  .spec-key { background: none; border-bottom: none; padding-bottom: 2px; }
  .why-teaser-grid { grid-template-columns: 1fr !important; }
  .sell-steps { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .body-browse { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .calc-results { grid-template-columns: 1fr; }
  .about-stats { gap: 20px; }
  .sell-steps { gap: 48px; }
  .vd-quick-specs { gap: 8px; }
  .vd-spec-chip { padding: 10px 12px; min-width: 72px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .testimonial-grid { gap: 16px; }
  .filter-bar { gap: 6px; }
}
