@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Inter:wght@300;400;500&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #080808;
  --surface: #0d0d0d;
  --border: #1a1a1a;
  --text: #ede8e0;
  --text-muted: #6b6660;
  --accent: #9e8754;
  --accent-light: #c4a96e;
  --white: #f5f0e8;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── NAVIGATION ─────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 64px;
  transition: background 0.4s, border-color 0.4s, padding 0.3s;
  border-bottom: 1px solid transparent;
}

nav.scrolled {
  background: rgba(8,8,8,0.96);
  border-bottom-color: var(--border);
  padding: 20px 64px;
  backdrop-filter: blur(12px);
}

.nav-logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 19px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--white); }
.nav-links a.active { color: var(--accent-light); }

.nav-lang {
  display: flex;
  gap: 18px;
  align-items: center;
}

.nav-lang a {
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-lang a:hover { color: var(--accent-light); }
.nav-lang a.active { color: var(--accent); }

.nav-lang-sep {
  width: 1px;
  height: 10px;
  background: var(--border);
}

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/ALX02402.jpg');
  background-size: cover;
  background-position: center 35%;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,8,8,0.25) 0%,
    rgba(8,8,8,0.1) 35%,
    rgba(8,8,8,0.55) 70%,
    rgba(8,8,8,1) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
}

.hero-eyebrow {
  font-size: 9px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}

.hero-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(56px, 9vw, 108px);
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.5);
  margin-bottom: 60px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  padding: 15px 44px;
  background: var(--white);
  color: #080808;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s, color 0.25s;
}

.btn-primary:hover {
  background: var(--accent);
  color: var(--white);
}

.btn-outline {
  display: inline-block;
  padding: 15px 44px;
  border: 1px solid rgba(245,240,232,0.25);
  color: var(--white);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color 0.25s, background 0.25s;
}

.btn-outline:hover {
  border-color: var(--accent);
  background: rgba(158,135,84,0.08);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-scroll span {
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.35);
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(245,240,232,0.35), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.6); transform-origin: top; }
}

/* ── WHY WALKEY GROUP ────────────────────────────────────── */
.why-section {
  padding: 0;
  border-bottom: 1px solid var(--border);
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 100%;
}

.why-text {
  padding: 100px 80px 100px 80px;
  border-right: 1px solid var(--border);
}

.section-label {
  font-size: 9px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  display: block;
}

.section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 300;
  letter-spacing: 0.03em;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 24px;
}

.section-body {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.9;
}

.learn-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 44px;
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  transition: gap 0.2s, opacity 0.2s;
}

.learn-more::after { content: '→'; }
.learn-more:hover { gap: 16px; opacity: 0.8; }

.why-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}

.stat-item {
  padding: 52px 48px;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stat-item:nth-child(even) { border-right: none; }
.stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: none; }

.stat-number {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 52px;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-desc {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── INVENTORY ROWS ──────────────────────────────────────── */
.inventory-section {
  border-bottom: 1px solid var(--border);
}

.inventory-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 60px 80px 0;
  margin-bottom: -1px;
}

.inventory-header .section-label { margin-bottom: 0; }

.view-all-link {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s, gap 0.2s;
}

.view-all-link::after { content: '→'; }
.view-all-link:hover { color: var(--white); gap: 14px; }

.inventory-row {
  display: grid;
  grid-template-columns: 58% 42%;
  min-height: 62vh;
  border-top: 1px solid var(--border);
  cursor: pointer;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

.inventory-row.reverse {
  grid-template-columns: 42% 58%;
}

.inventory-row.reverse .car-image { order: 2; }
.inventory-row.reverse .car-info { order: 1; border-right: 1px solid var(--border); border-left: none; }

.car-image {
  overflow: hidden;
  position: relative;
  background: #050505;
}

.car-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.inventory-row:hover .car-image img { transform: scale(1.04); }

.car-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 72px;
  background: var(--surface);
  border-left: 1px solid var(--border);
  position: relative;
}

.car-index {
  font-size: 9px;
  letter-spacing: 0.35em;
  color: var(--border);
  margin-bottom: 32px;
  font-variant-numeric: tabular-nums;
}

.car-make {
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.car-model {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(28px, 2.8vw, 44px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 48px;
}

.car-enquire {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.25s, gap 0.25s;
}

.car-enquire::after { content: '→'; }
.inventory-row:hover .car-enquire { color: var(--accent-light); gap: 18px; }

/* ── CTA BANNER ──────────────────────────────────────────── */
.cta-banner {
  padding: 120px 80px;
  text-align: center;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(158,135,84,0.04) 0%, transparent 70%);
}

.cta-banner .section-label { display: block; margin-bottom: 20px; }
.cta-banner .section-title {
  max-width: 560px;
  margin: 0 auto 48px;
}

/* ── FOOTER ──────────────────────────────────────────────── */
footer {
  padding: 80px 80px 48px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 48px;
  align-items: start;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 40px;
}

.footer-logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  display: block;
}

.footer-logo-sub {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 8px;
}

.footer-contact-col { text-align: right; }

.footer-contact-col p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 2.2;
}

.footer-contact-col a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact-col a:hover { color: var(--white); }

.footer-nav-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.footer-nav-col a {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav-col a:hover { color: var(--white); }

.footer-divider {
  width: 40px;
  height: 1px;
  background: var(--border);
  margin: 8px auto;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 11px;
  color: var(--text-muted);
}

.footer-legal-links {
  display: flex;
  gap: 28px;
}

.footer-legal-links a {
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal-links a:hover { color: var(--white); }

/* ── NAV LOGO IMAGE ──────────────────────────────────────── */
.nav-logo-img {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-img img {
  height: 36px;
  width: auto;
  mix-blend-mode: screen;
  opacity: 0.92;
  transition: opacity 0.2s;
}

.nav-logo-img:hover img { opacity: 1; }

/* ── NAV CTA ─────────────────────────────────────────────── */
.nav-cta {
  padding: 10px 28px;
  font-size: 9px;
  white-space: nowrap;
}

/* ── CINEMATIC BANNER ────────────────────────────────────── */
.cinematic-banner {
  position: relative;
  height: 70vh;
  min-height: 480px;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cinematic-img {
  position: absolute;
  inset: 0;
}

.cinematic-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  display: block;
}

.cinematic-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,8,8,0.1) 0%,
    rgba(8,8,8,0.05) 40%,
    rgba(8,8,8,0.6) 100%
  );
}

.cinematic-caption {
  position: absolute;
  bottom: 48px;
  left: 80px;
  z-index: 2;
}

.cinematic-line {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  margin-top: 10px;
}

/* ── EDITORIAL ROWS ──────────────────────────────────────── */
.editorial-section {
  border-bottom: 1px solid var(--border);
}

.editorial-row {
  display: grid;
  grid-template-columns: 58% 42%;
  min-height: 60vh;
  border-bottom: 1px solid var(--border);
}

.editorial-row:last-child {
  border-bottom: none;
}

.editorial-row.reverse {
  grid-template-columns: 42% 58%;
}

.editorial-row.reverse .editorial-img { order: 2; }
.editorial-row.reverse .editorial-text {
  order: 1;
  border-right: 1px solid var(--border);
  border-left: none;
}

.editorial-img {
  overflow: hidden;
  display: block;
  background: #050505;
}

.editorial-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: brightness(0.9);
}

.editorial-row:hover .editorial-img img {
  transform: scale(1.04);
  filter: brightness(1);
}

.editorial-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 80px;
  border-left: 1px solid var(--border);
  background: var(--surface);
  gap: 0;
}

.editorial-make {
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 20px;
  margin-bottom: 12px;
}

.editorial-model {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(32px, 3.2vw, 52px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 36px;
}

.editorial-body {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.95;
  max-width: 400px;
  margin-bottom: 40px;
}

.editorial-status {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--border);
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: block;
  width: fit-content;
}

/* ── INTRO STATEMENT ─────────────────────────────────────── */
.intro-statement {
  border-bottom: 1px solid var(--border);
}

.intro-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 80px 80px;
  text-align: center;
}

.intro-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  line-height: 1.75;
  margin-top: 20px;
}

/* ── PORTFOLIO GRID ──────────────────────────────────────── */
.portfolio-section {
  padding: 80px 0 0;
  border-bottom: 1px solid var(--border);
}

.portfolio-header {
  padding: 0 80px 60px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.portfolio-card {
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: background 0.3s;
}

.portfolio-card:hover {
  background: var(--surface);
}

.portfolio-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #050505;
}

.portfolio-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: brightness(0.92);
}

.portfolio-card:hover .portfolio-img img {
  transform: scale(1.06);
  filter: brightness(1);
}

.portfolio-meta {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid var(--border);
  flex: 1;
}

.portfolio-category {
  font-size: 8px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.portfolio-name {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.portfolio-make {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
}

.portfolio-model {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
}

.portfolio-status {
  font-size: 8px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--border);
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

/* ── ABOUT SECTION ───────────────────────────────────────── */
.about-section {
  border-bottom: 1px solid var(--border);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 100%;
}

.about-text {
  padding: 100px 80px;
  border-right: 1px solid var(--border);
}

/* ── CAR CATEGORY TAG ────────────────────────────────────── */
.car-category {
  display: block;
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

/* ── CTA BANNER WITH BG IMAGE ────────────────────────────── */
.cta-banner.has-bg {
  background-image: url('images/ALX02402.jpg');
  background-size: cover;
  background-position: center 40%;
  position: relative;
}
.cta-banner.has-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(8,8,8,0.72);
  z-index: 0;
}
.cta-banner.has-bg .section-label,
.cta-banner.has-bg .section-title,
.cta-banner.has-bg .btn-primary {
  position: relative;
  z-index: 1;
}
.cta-banner.has-bg::before { display: none; }

/* ── PAGE HEADER (inner pages) ───────────────────────────── */
.page-header {
  padding: 160px 80px 64px;
  border-bottom: 1px solid var(--border);
}

.page-header .section-label { margin-bottom: 16px; }

/* ── IMPORT FORM ─────────────────────────────────────────── */
.form-wrap {
  max-width: 680px;
  margin: 0 auto;
  padding: 80px 40px 120px;
}

.form-intro {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 72px;
  padding-bottom: 72px;
  border-bottom: 1px solid var(--border);
}

.form-group {
  margin-bottom: 0;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}

.form-label {
  display: block;
  font-size: 9px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 300;
  padding: 10px 0 12px;
  outline: none;
  transition: border-color 0.25s;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: var(--accent); }

.form-input::placeholder,
.form-textarea::placeholder { color: #3a3833; }

.form-textarea {
  resize: none;
  height: 90px;
  line-height: 1.7;
  display: block;
}

.form-select {
  cursor: pointer;
  color: var(--white);
}

.form-select option { background: #111; color: var(--white); }

.radio-group {
  display: flex;
  gap: 48px;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.radio-option input[type="radio"] { display: none; }

.radio-circle {
  width: 18px;
  height: 18px;
  border: 1px solid var(--border);
  border-radius: 50%;
  position: relative;
  transition: border-color 0.2s;
  flex-shrink: 0;
}

.radio-option input:checked ~ .radio-circle { border-color: var(--accent); }

.radio-option input:checked ~ .radio-circle::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
}

.radio-text {
  font-size: 15px;
  color: var(--text-muted);
  user-select: none;
}

.tooltip-anchor {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.tooltip-icon {
  width: 15px;
  height: 15px;
  border: 1px solid var(--text-muted);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: var(--text-muted);
  margin-left: 10px;
  cursor: default;
  user-select: none;
  font-style: normal;
  line-height: 1;
  flex-shrink: 0;
  transition: border-color 0.2s, color 0.2s;
}

.tooltip-anchor:hover .tooltip-icon { border-color: var(--accent); color: var(--accent); }

.tooltip-popup {
  display: none;
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: #161616;
  border: 1px solid var(--border);
  padding: 16px 20px;
  width: 280px;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.7;
  z-index: 20;
  pointer-events: none;
}

.tooltip-popup a {
  color: var(--accent);
  text-decoration: underline;
  pointer-events: all;
}

.tooltip-anchor:hover .tooltip-popup { display: block; }

.form-submit {
  padding: 64px 0 0;
  text-align: center;
}

.form-note {
  margin-top: 24px;
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ── NI SAVINGS PAGE ─────────────────────────────────────── */
.page-intro {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.9;
  max-width: 680px;
  margin-top: 28px;
}

.savings-stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--border);
}

.savings-stat {
  padding: 72px 72px;
  border-right: 1px solid var(--border);
}

.savings-stat:last-child { border-right: none; }

.ss-label {
  font-size: 9px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
  display: block;
}

.ss-vehicle {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 15px;
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  margin-bottom: 10px;
}

.ss-saving {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(40px, 4vw, 58px);
  font-weight: 300;
  color: #6fcf97;
  line-height: 1;
  margin-bottom: 14px;
}

.ss-desc {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.7;
  letter-spacing: 0.04em;
}

.route-compare-section {
  padding: 100px 80px;
  border-bottom: 1px solid var(--border);
}

.route-compare-section .section-title { max-width: 560px; }

.route-web-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 52px;
  font-family: 'Inter', sans-serif;
}

.route-web-table th {
  padding: 16px 28px;
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 400;
  text-align: left;
  border-bottom: 1px solid var(--border);
  color: var(--accent);
}

.route-web-table th.col-result { color: #6fcf97; }

.route-web-table td {
  padding: 20px 28px;
  font-size: 14px;
  font-weight: 300;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.route-web-table tr:last-child td { border-bottom: none; }

.route-web-table td.route-name { color: var(--white); font-weight: 400; }
.route-web-table td.td-bad { color: #e85d5d; }
.route-web-table td.td-mid { color: var(--text-muted); }
.route-web-table td.td-good { color: #6fcf97; font-weight: 400; }
.route-web-table tr.row-highlight td { background: rgba(111,207,151,0.04); }

.vehicle-examples-section {
  border-bottom: 1px solid var(--border);
}

.vehicle-examples-header {
  padding: 100px 80px 0;
}

.vehicle-examples-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  margin-top: 52px;
  border-left: 1px solid var(--border);
}

.vehicle-example-card {
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.ve-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #050505;
}

.ve-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  transition: transform 0.9s cubic-bezier(0.25,0.46,0.45,0.94);
  filter: brightness(0.88);
}

.vehicle-example-card:hover .ve-image img {
  transform: scale(1.05);
  filter: brightness(1);
}

.ve-body {
  padding: 36px 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ve-make {
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.ve-model {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 26px;
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 28px;
}

.ve-compare {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
  flex: 1;
}

.ve-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.ve-row-label {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.ve-row-value {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px;
  font-weight: 300;
}

.ve-row-value.v-bad { color: #e85d5d; }
.ve-row-value.v-good { color: #6fcf97; }

.ve-saving {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 20px;
  margin-top: auto;
}

.ve-saving-label {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #6fcf97;
}

.ve-saving-value {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(28px, 2.5vw, 38px);
  font-weight: 300;
  color: #6fcf97;
}

.process-section {
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 0;
}

.process-heading {
  padding: 100px 80px;
  border-right: 1px solid var(--border);
}

.process-steps-col {
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 36px;
  padding-bottom: 56px;
  position: relative;
}

.process-step:last-child { padding-bottom: 0; }

.process-step::after {
  content: '';
  position: absolute;
  left: 23px;
  top: 48px;
  bottom: 0;
  width: 1px;
  background: var(--border);
}

.process-step:last-child::after { display: none; }

.ps-num {
  width: 48px;
  height: 48px;
  border: 1px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px;
  font-weight: 300;
  color: var(--accent);
  flex-shrink: 0;
  background: var(--bg);
  position: relative;
  z-index: 1;
}

.ps-body { padding-top: 10px; }

.ps-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 24px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 12px;
}

.ps-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.9;
}

.dark-table-section {
  padding: 100px 80px;
  border-bottom: 1px solid var(--border);
}

.dark-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 52px;
  font-family: 'Inter', sans-serif;
}

.dark-table th {
  padding: 16px 24px;
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 400;
  border-bottom: 1px solid var(--border);
  text-align: left;
}

.dark-table th.th-gold { color: var(--accent); }
.dark-table th.th-green { color: #6fcf97; }
.dark-table th.th-muted { color: var(--text-muted); }

.dark-table td {
  padding: 16px 24px;
  font-size: 14px;
  font-weight: 300;
  border-bottom: 1px solid var(--border);
}

.dark-table tr:last-child td { border-bottom: none; }
.dark-table tr:nth-child(odd) td { background: rgba(255,255,255,0.012); }
.dark-table td.td-white { color: var(--white); font-weight: 400; }
.dark-table td.td-red { color: #e85d5d; }
.dark-table td.td-green { color: #6fcf97; font-weight: 400; }
.dark-table td.td-muted { color: var(--text-muted); }

/* ── HOMEPAGE NI TEASER ──────────────────────────────────── */
.ni-teaser {
  border-bottom: 1px solid var(--border);
}

.ni-teaser-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.ni-text {
  padding: 100px 80px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ni-numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}

.ni-num-item {
  padding: 52px 56px;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ni-num-item:nth-child(even) { border-right: none; }
.ni-num-item:nth-child(3),
.ni-num-item:nth-child(4) { border-bottom: none; }

.ni-saving-amount {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(34px, 3.2vw, 48px);
  font-weight: 300;
  color: #6fcf97;
  line-height: 1;
  margin-bottom: 10px;
}

.ni-saving-car {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── CONTACT PAGE ────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--border);
}

.contact-info {
  padding: 80px 80px;
  border-right: 1px solid var(--border);
}

.contact-item {
  margin-bottom: 52px;
}

.contact-item:last-child { margin-bottom: 0; }

.contact-item-label {
  font-size: 9px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.contact-item p,
.contact-item a {
  font-size: 15px;
  color: var(--text);
  text-decoration: none;
  line-height: 1.9;
  display: block;
}

.contact-item a:hover { color: var(--accent-light); }

.contact-image {
  overflow: hidden;
  background: #040404;
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  filter: brightness(0.7);
}


/* ═══════════════════════════════════════════════════════
   RESPONSIVE — TABLET  (≤ 1024px)
═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  nav        { padding: 24px 40px; }
  nav.scrolled { padding: 18px 40px; }

  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }

  .why-inner,
  .about-inner { grid-template-columns: 1fr; }
  .why-text,
  .about-text { border-right: none; padding: 80px 40px; border-bottom: 1px solid var(--border); }

  .ni-teaser-inner { grid-template-columns: 1fr; }
  .ni-text { border-right: none; padding: 80px 40px; border-bottom: 1px solid var(--border); }

  .savings-stats-strip { grid-template-columns: 1fr; }
  .savings-stat { border-right: none; padding: 52px 40px; border-bottom: 1px solid var(--border); }
  .savings-stat:last-child { border-bottom: none; }

  .vehicle-examples-grid { grid-template-columns: repeat(2, 1fr); }

  .route-compare-section,
  .dark-table-section { padding: 80px 40px; }
  .vehicle-examples-header { padding: 80px 40px 0; }

  .process-section { grid-template-columns: 1fr; }
  .process-heading { padding: 80px 40px 40px; border-right: none; border-bottom: 1px solid var(--border); }
  .process-steps-col { padding: 60px 40px 80px; }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-info { border-right: none; border-bottom: 1px solid var(--border); }
  .contact-image { height: 52vw; min-height: 280px; }

  footer { padding: 60px 40px 40px; }
  .footer-top { grid-template-columns: 1fr auto; }
  .footer-contact-col { display: none; }
}


/* ═══════════════════════════════════════════════════════
   RESPONSIVE — MOBILE  (≤ 768px)
═══════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* — Navigation — */
  nav          { padding: 16px 20px; }
  nav.scrolled { padding: 14px 20px; }
  .nav-links   { display: none; }
  .nav-cta     { padding: 9px 16px; font-size: 8px; }
  .nav-logo-img img { height: 28px; }

  /* — Hero — */
  .hero-subtitle { margin-bottom: 40px; }

  /* — Intro — */
  .intro-inner { padding: 56px 20px; }
  .intro-text  { font-size: clamp(16px, 4vw, 20px); }

  /* — Portfolio — */
  .portfolio-section { padding: 60px 0 0; }
  .portfolio-header  { padding: 0 20px 40px; }
  .portfolio-grid    { grid-template-columns: repeat(2, 1fr); }
  .portfolio-meta    { padding: 16px 18px 20px; gap: 8px; }
  .portfolio-model   { font-size: 18px; }

  /* — Cinematic banner — */
  .cinematic-banner  { height: 56vw; min-height: 220px; }
  .cinematic-caption { bottom: 20px; left: 20px; }
  .cinematic-line    { font-size: clamp(18px, 5vw, 28px); }

  /* — Editorial rows — */
  .editorial-row,
  .editorial-row.reverse {
    display: flex;
    flex-direction: column;
    min-height: auto;
  }
  .editorial-row .editorial-img,
  .editorial-row.reverse .editorial-img {
    order: 1;
    height: 62vw;
    max-height: 320px;
    width: 100%;
  }
  .editorial-row .editorial-text,
  .editorial-row.reverse .editorial-text {
    order: 2;
    border-left: none;
    border-right: none;
    border-top: 1px solid var(--border);
    padding: 44px 20px;
  }

  /* — Why / About — */
  .why-text,
  .about-text { padding: 56px 20px; }
  .why-stats  { grid-template-columns: 1fr 1fr; }
  .stat-item  { padding: 32px 20px; }

  /* — NI Teaser — */
  .ni-text        { padding: 56px 20px; }
  .ni-num-item    { padding: 32px 20px; }

  /* — CTA banner — */
  .cta-banner { padding: 72px 20px; }

  /* — Footer — */
  footer { padding: 56px 20px 36px; }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-bottom: 40px;
    margin-bottom: 28px;
  }
  .footer-contact-col { display: block; text-align: left; }
  .footer-nav-col { align-items: flex-start; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 14px; }
  .footer-legal-links { flex-wrap: wrap; gap: 16px; }

  /* — Page header (inner pages) — */
  .page-header { padding: 110px 20px 44px; }

  /* — Import form — */
  .form-wrap  { padding: 36px 20px 72px; }
  .form-intro { margin-bottom: 44px; padding-bottom: 44px; }
  .radio-group { gap: 20px; flex-wrap: wrap; }

  /* — NI savings page — */
  .savings-stat          { padding: 48px 20px; }
  .route-compare-section { padding: 56px 20px; }
  .vehicle-examples-header { padding: 56px 20px 0; }
  .vehicle-examples-grid { grid-template-columns: 1fr; }
  .ve-body { padding: 28px 20px; }
  .process-heading     { padding: 56px 20px 36px; }
  .process-steps-col   { padding: 44px 20px 60px; }
  .dark-table-section  { padding: 56px 20px; }

  .route-web-table,
  .dark-table { font-size: 12px; }
  .route-web-table th,
  .route-web-table td,
  .dark-table th,
  .dark-table td { padding: 12px 14px; }

  /* — Contact page — */
  .contact-info   { padding: 56px 20px; }
  .contact-image  { height: 62vw; max-height: 300px; }
}


/* ═══════════════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE  (≤ 480px)
═══════════════════════════════════════════════════════ */
@media (max-width: 480px) {

  /* Single column everything */
  .portfolio-grid { grid-template-columns: 1fr; }

  .why-stats { grid-template-columns: 1fr; }
  .stat-item { border-right: none !important; }
  .stat-item:nth-child(3),
  .stat-item:nth-child(4) { border-bottom: 1px solid var(--border) !important; }
  .stat-item:last-child   { border-bottom: none !important; }

  .ni-numbers { grid-template-columns: 1fr; }
  .ni-num-item              { border-right: none !important; }
  .ni-num-item:nth-child(3),
  .ni-num-item:nth-child(4) { border-bottom: 1px solid var(--border) !important; }
  .ni-num-item:last-child   { border-bottom: none !important; }

  /* Route table — card layout on tiny screens */
  .route-web-table { display: block; }
  .route-web-table thead { display: none; }
  .route-web-table tbody,
  .route-web-table tr { display: block; }
  .route-web-table tr { margin-bottom: 12px; border: 1px solid var(--border); }
  .route-web-table td { display: block; padding: 10px 14px; border-bottom: 1px solid var(--border); font-size: 13px; }
  .route-web-table td:last-child { border-bottom: none; }

  /* Savings table — hide CIF column, keep key cols */
  .dark-table th:nth-child(2),
  .dark-table td:nth-child(2) { display: none; }

  .footer-legal-links { flex-direction: column; gap: 10px; }
}
