/* ============================================================================
   DOZA AUTO GROUP — Dark Luxury
   ============================================================================ */

:root {
  /* Base palette — SHOWROOM NAVY (dark luxury) */
  --bg:           #0C1F36;
  --bg-1:         #0F243D;
  --bg-2:         rgba(31, 60, 88, 0.40);
  --surface:      #13283F;
  --surface-2:    #18324B;
  --surface-3:    #1F3C58;
  --border:       rgba(239, 231, 214, 0.10);
  --border-strong:rgba(239, 231, 214, 0.22);
  --text:         #EFE7D6;
  --text-mute:    #B5AC97;
  --text-dim:     #7E7868;
  --chrome-light: #EFE7D6;
  --chrome:       #C9C0AB;
  --chrome-dark:  #8A8270;

  /* Accent — brass, overridable via tweaks */
  --accent:        #D9B26A;
  --accent-bright: #E8C685;
  --accent-dark:   #A98438;
  --accent-glow:   rgba(217, 178, 106, 0.32);
  /* Contrast color for text/icons on top of --accent */
  --on-accent:     #0C1F36;

  /* Fonts */
  --font-display: "Bebas Neue", "Oswald", Impact, sans-serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "JetBrains Mono", "IBM Plex Mono", ui-monospace, monospace;

  /* Spacing */
  --container: 1280px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

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

/* ============================================================================
   Buttons
   ============================================================================ */
.btn-accent {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: var(--accent);
  color: white;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.18s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 0 var(--accent-dark), 0 4px 14px var(--accent-glow);
}
.btn-accent:hover { background: var(--accent-bright); transform: translateY(-1px); box-shadow: 0 3px 0 var(--accent-dark), 0 8px 20px var(--accent-glow); }
.btn-accent:active { transform: translateY(1px); box-shadow: 0 1px 0 var(--accent-dark); }
.btn-accent:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }
.btn-accent .arrow { font-size: 16px; transition: transform 0.18s ease; }
.btn-accent:hover .arrow { transform: translateX(3px); }
.btn-big { padding: 18px 32px; font-size: 15px; }
.btn-sm { padding: 9px 16px; font-size: 12px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 23px;
  background: transparent;
  color: var(--chrome-light);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid var(--border-strong);
  border-radius: 2px;
  transition: all 0.18s ease;
}
.btn-ghost:hover { background: var(--surface-2); border-color: var(--chrome); color: var(--text); }
.btn-ghost-sm {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; background: transparent; color: var(--text-mute);
  font-weight: 500; font-size: 12px; letter-spacing: 0.05em; text-transform: uppercase;
  border: 1px solid var(--border-strong); border-radius: 2px; transition: all 0.15s ease;
}
.btn-ghost-sm:hover { color: var(--text); border-color: var(--chrome); background: var(--surface-2); }
.btn-link {
  display: inline-flex; align-items: center; gap: 8px;
  background: none; padding: 0; color: var(--accent);
  font-weight: 500; font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase;
}
.btn-link:hover { color: var(--accent-bright); }
.w-full { width: 100%; justify-content: center; }

.arrow { display: inline-block; transition: transform 0.18s ease; }

/* ============================================================================
   Photo Slot
   ============================================================================ */
.photo-slot {
  width: 100%;
  border: 1px solid var(--border);
}
.reg-mark {
  position: absolute;
  width: 14px; height: 14px;
  border: 1px solid rgba(0,0,0,0.22);
}
.reg-mark.tl { top: 8px; left: 8px; border-right: none; border-bottom: none; }
.reg-mark.tr { top: 8px; right: 8px; border-left: none; border-bottom: none; }
.reg-mark.bl { bottom: 8px; left: 8px; border-right: none; border-top: none; }
.reg-mark.br { bottom: 8px; right: 8px; border-left: none; border-top: none; }

/* ============================================================================
   Top bar
   ============================================================================ */
.topbar {
  background: #fafafa;
  border-bottom: 1px solid var(--border);
  font-size: 11px;
  color: var(--text-mute);
  letter-spacing: 0.04em;
}
.topbar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 8px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 16px; }
.tb-mono { font-family: var(--font-mono); color: var(--text-dim); font-size: 10px; margin-right: 6px; }
.tb-sep { color: var(--text-dim); }
.tb-phone {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--chrome-light);
  font-weight: 600;
  letter-spacing: 0.05em;
}
.tb-phone-dot { width: 7px; height: 7px; border-radius: 50%; background: #2dd76b; box-shadow: 0 0 8px #2dd76b; }

/* ============================================================================
   Nav
   ============================================================================ */
.nav {
  position: sticky; top: 0; z-index: 90;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-logo { cursor: pointer; height: 60px; display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img { height: 60px; width: auto; display: block; }
.nav-links {
  display: flex;
  gap: 4px;
  flex: 1;
  margin-left: 8px;
}
.nav-link {
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mute);
  border-radius: 2px;
  position: relative;
  transition: color 0.18s ease;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-link:hover { color: var(--text); }
.nav-link.is-active { color: var(--text); }
.nav-link.is-active::after {
  content: '';
  position: absolute;
  bottom: -16px; left: 16px; right: 16px;
  height: 2px;
  background: var(--accent);
}
.nav-cta { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.nav-phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--chrome-light);
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-phone:hover { color: var(--accent); }

/* ============================================================================
   Hero
   ============================================================================ */
.hero {
  position: relative;
  padding: 100px 0 0;
  overflow: hidden;
  background: #ffffff;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-stripes {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(180deg,
      rgba(0,0,0,0.022) 0px,
      rgba(0,0,0,0.022) 1px,
      transparent 1px,
      transparent 3px),
    linear-gradient(120deg, #ffffff 0%, #f7f7f8 45%, #fdf3f4 100%);
}
.hero-bg-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 40%, var(--accent-glow), transparent 60%);
  opacity: 0.45;
}
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 60px 32px 80px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  margin-bottom: 24px;
}
.hero-mono {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--text-mute);
}
.hero-bar { width: 30px; height: 1px; background: var(--accent); }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(60px, 9vw, 140px);
  line-height: 0.9;
  letter-spacing: 0.005em;
  margin: 0 0 28px;
  font-weight: 400;
  background: linear-gradient(180deg, #1a1a1c 0%, #3a3a3e 70%, #6a6a6e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-wrap: balance;
}
.hero-title-accent {
  background: linear-gradient(180deg, var(--accent-bright) 0%, var(--accent) 80%, var(--accent-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
  font-weight: 400;
}
.hero-sub {
  font-size: 17px;
  color: var(--text-mute);
  max-width: 540px;
  margin: 0 0 36px;
  line-height: 1.6;
}
.hero-actions { display: flex; gap: 14px; margin-bottom: 56px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 22px 0 0;
  border-top: 1px solid var(--border);
  width: fit-content;
}
.hero-stats > div:not(.vsep) {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-stats b {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.01em;
}
.hero-stats span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.vsep { width: 1px; height: 32px; background: var(--border); }

/* Hero search */
.hero-search {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  transform: translateY(40px);
}
.hero-search-tabs {
  display: flex;
  gap: 2px;
}
.hero-search-tabs .tab {
  padding: 12px 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-bottom: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mute);
  cursor: pointer;
  transition: all 0.15s ease;
}
.hero-search-tabs .tab.is-active {
  background: var(--surface-3);
  color: var(--text);
  position: relative;
}
.hero-search-tabs .tab.is-active::before {
  content: ''; position: absolute; left: 0; right: 0; top: 0; height: 2px; background: var(--accent);
}
.hero-search-tabs .tab:hover:not(.is-active) { color: var(--text); }

.hero-search-row {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1fr 1.2fr auto;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  background-color: var(--surface-3);
}
.hs-field {
  display: flex; flex-direction: column;
  background: var(--surface);
  padding: 14px 18px;
}
.hs-field label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 6px;
}
.hs-field select {
  background: transparent;
  border: none;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  outline: none;
  padding: 0;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6' fill='none'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23888' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right center;
  padding-right: 18px;
  cursor: pointer;
}
.hs-field select option { background: var(--surface); }
.hs-field select:disabled { color: var(--text-dim); cursor: not-allowed; }
.hero-search-btn {
  border-radius: 0;
  padding: 14px 28px;
  font-size: 13px;
  height: 100%;
  box-shadow: none;
}
.hero-search-btn:hover { box-shadow: none; transform: none; background: var(--accent-bright); }
.match-count {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  background: rgba(0,0,0,0.06);
  border-radius: 2px;
  letter-spacing: 0;
}

/* ============================================================================
   Sections
   ============================================================================ */
.section {
  max-width: var(--container);
  margin: 0 auto;
  padding: 100px 32px;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 40px;
}
.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-eyebrow.light { color: var(--accent-bright); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  margin: 0;
  letter-spacing: 0.005em;
  line-height: 1;
  color: var(--text);
}
.title-mute { color: var(--text-mute); }

/* ============================================================================
   Vehicle cards
   ============================================================================ */
.vcard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.inv-grid { grid-template-columns: repeat(3, 1fr); }

.vcard {
  background: var(--surface);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.22s ease;
  display: flex;
  flex-direction: column;
}
.vcard:hover {
  border-color: var(--chrome-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.vcard:hover .vcard-photo .photo-slot { filter: brightness(1.08); }
.vcard-photo { position: relative; overflow: hidden; }
.vcard-photo .photo-slot { transition: filter 0.22s ease; }
.vcard-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--accent);
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 2px;
}
.vcard-stock {
  position: absolute;
  top: 12px; right: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--border);
  color: var(--text-mute);
  padding: 5px 9px;
  border-radius: 2px;
}
.vcard-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.vcard-yearmake {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.vcard-model {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.01em;
  line-height: 1;
  color: var(--text);
}
.vcard-trim {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  color: var(--text-mute);
  letter-spacing: 0;
  margin-left: 4px;
}
.vcard-specs {
  display: flex;
  gap: 14px;
  font-size: 12px;
  color: var(--text-mute);
  margin: 6px 0 0;
  flex-wrap: wrap;
}
.vcard-specs span { display: inline-flex; align-items: center; gap: 6px; }
.dot { display: inline-block; width: 4px; height: 4px; background: var(--accent); border-radius: 50%; }
.vcard-foot {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.vcard-price-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 2px;
}
.vcard-price {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--text);
  letter-spacing: 0.005em;
  line-height: 1;
}

/* ============================================================================
   Shop by body
   ============================================================================ */
.body-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.body-tile {
  position: relative;
  text-align: left;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 28px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.22s ease;
}
.body-tile:hover { border-color: var(--accent); transform: translateY(-2px); }
.body-tile:hover .body-tile-stripes { opacity: 0.4; }
.body-tile-mono {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--accent);
  z-index: 1;
}
.body-tile-label {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--text);
  line-height: 1;
  z-index: 1;
}
.body-tile-count {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mute);
  z-index: 1;
}
.body-tile-stripes {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(45deg,
      rgba(0,0,0,0.04) 0px,
      rgba(0,0,0,0.04) 2px,
      transparent 2px,
      transparent 8px);
  opacity: 0.15;
  transition: opacity 0.22s ease;
  pointer-events: none;
}

/* ============================================================================
   Value props
   ============================================================================ */
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}
.value-card {
  background: var(--bg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.value-num {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.15em;
  color: var(--text-dim);
}
.value-rule { width: 28px; height: 2px; background: var(--accent); }
.value-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  color: var(--text);
  margin: 0;
  line-height: 1.1;
}
.value-card p {
  font-size: 13px;
  color: var(--text-mute);
  line-height: 1.6;
  margin: 0;
}

/* ============================================================================
   Finance banner
   ============================================================================ */
.finance-banner {
  background:
    linear-gradient(135deg, var(--accent-dark) 0%, #2a0a0f 60%, #0a0a0b 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.finance-banner::before {
  content: '';
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(135deg,
      rgba(255,255,255,0.025) 0px,
      rgba(255,255,255,0.025) 1px,
      transparent 1px,
      transparent 4px);
  pointer-events: none;
}
.finance-banner-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 80px 32px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.finance-banner-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 400;
  margin: 0 0 16px;
  line-height: 1;
  color: white;
}
.finance-banner-title .accent { color: #ffb1bf; font-style: italic; }
.finance-banner-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  max-width: 480px;
  margin: 0 0 28px;
}
.finance-banner-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.fbs-card {
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 22px 26px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.fbs-num {
  font-family: var(--font-display);
  font-size: 44px;
  color: white;
  line-height: 1;
}
.fbs-pct { font-size: 16px; letter-spacing: 0.1em; color: rgba(255,255,255,0.7); margin-left: 6px; }
.fbs-lbl {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ============================================================================
   Testimonials
   ============================================================================ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 32px 28px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.testi-stars { color: var(--accent); letter-spacing: 0.2em; font-size: 18px; }
.testi blockquote {
  margin: 0;
  font-size: 17px;
  line-height: 1.5;
  color: var(--text);
  font-weight: 300;
  font-style: italic;
}
.testi figcaption {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 12px;
}
.testi figcaption b { color: var(--text); font-weight: 600; letter-spacing: 0.02em; }
.testi figcaption span { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-dim); }

/* ============================================================================
   Footer
   ============================================================================ */
.footer {
  background: #fafafa;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 72px 32px 40px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand { max-width: 360px; }
.footer-logo { height: 40px; width: auto; margin-bottom: 20px; display: block; }
.footer-brand p {
  color: var(--text-mute);
  font-size: 13px;
  line-height: 1.6;
  margin: 0 0 24px;
}
.footer-social { display: flex; gap: 8px; }
.social-pill {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-mute);
  cursor: pointer;
  transition: all 0.15s ease;
}
.social-pill:hover { background: var(--accent); color: white; border-color: var(--accent); }

.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 18px;
  font-weight: 600;
}
.footer-col a {
  display: block;
  padding: 6px 0;
  color: var(--text-mute);
  font-size: 13px;
  transition: color 0.15s ease;
}
.footer-col a:hover { color: var(--text); }
.footer-addr, .footer-phone, .footer-hours {
  font-size: 13px;
  color: var(--text-mute);
  margin: 0 0 14px;
  line-height: 1.6;
}
.footer-phone a { padding: 0; color: var(--text); font-weight: 600; }
.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding: 20px 32px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}
.footer-mono { font-family: var(--font-mono); }

/* ============================================================================
   INVENTORY PAGE
   ============================================================================ */
.inv-page {}
.inv-header {
  background: linear-gradient(180deg, #ffffff 0%, #f6f6f7 100%);
  border-bottom: 1px solid var(--border);
  padding: 56px 0 36px;
}
.inv-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--accent);
  margin-bottom: 14px;
}
.inv-h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 400;
  margin: 0 0 28px;
  line-height: 1;
  color: var(--text);
}
.inv-search {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  padding: 14px 18px;
  max-width: 720px;
  color: var(--text-mute);
}
.inv-search:focus-within { border-color: var(--accent); }
.inv-search input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-size: 15px;
  color: var(--text);
}
.inv-search input::placeholder { color: var(--text-dim); }
.inv-clear {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--surface-3); color: var(--text-mute);
  font-size: 16px; line-height: 0;
}

.inv-body {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  padding-top: 48px;
  padding-bottom: 100px;
  align-items: flex-start;
}
.inv-filters {
  position: sticky;
  top: 80px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.filter-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.filter-head h4 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  margin: 0;
  color: var(--text);
}
.filter-reset {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}
.filter-reset:hover { color: var(--accent-bright); }
.filter-group { display: flex; flex-direction: column; gap: 10px; }
.filter-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mute);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.filter-val { color: var(--text); letter-spacing: 0.04em; font-weight: 500; }
.filter-scale {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-dim);
  margin-top: -4px;
}

.chip-grid { display: flex; flex-wrap: wrap; gap: 6px; }
.chip {
  padding: 7px 12px;
  background: transparent;
  border: 1px solid var(--border-strong);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-mute);
  transition: all 0.15s ease;
}
.chip:hover { color: var(--text); border-color: var(--chrome-dark); }
.chip.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}

/* Range slider styling */
input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  background: var(--surface-3);
  border-radius: 2px;
  outline: none;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px; height: 16px;
  background: var(--accent);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 0 4px rgba(200,16,46,0.18);
  transition: box-shadow 0.15s ease;
}
input[type="range"]::-webkit-slider-thumb:hover { box-shadow: 0 0 0 6px var(--accent-glow); }
input[type="range"]::-moz-range-thumb {
  width: 16px; height: 16px;
  background: var(--accent);
  border: none;
  border-radius: 50%;
  cursor: pointer;
}

.filter-help {
  display: flex;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.fh-icon {
  width: 32px; height: 32px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent);
  color: white;
  font-family: var(--font-display);
  font-size: 18px;
  border-radius: 50%;
}
.filter-help b { color: var(--text); font-size: 13px; }
.filter-help p { font-size: 12px; color: var(--text-mute); margin: 6px 0 8px; }

.inv-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  gap: 20px;
  flex-wrap: wrap;
}
.inv-active-filters { display: flex; gap: 8px; flex-wrap: wrap; }
.active-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 8px 6px 12px;
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  font-size: 12px;
  color: var(--text);
  letter-spacing: 0.02em;
}
.active-pill button {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--surface-3);
  color: var(--text-mute);
  font-size: 13px;
  display: flex; align-items: center; justify-content: center;
  line-height: 0;
}
.active-pill button:hover { background: var(--accent); color: white; }

.inv-toolbar-right { display: flex; align-items: center; gap: 16px; }
.inv-viewtoggle {
  display: flex; gap: 1px;
  background: var(--border);
}
.inv-viewtoggle button {
  width: 32px; height: 32px;
  background: var(--surface);
  color: var(--text-mute);
  display: flex; align-items: center; justify-content: center;
}
.inv-viewtoggle button.is-active { background: var(--surface-3); color: var(--text); }
.inv-sort {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.inv-sort select {
  background: var(--surface);
  border: 1px solid var(--border-strong);
  color: var(--text);
  padding: 8px 26px 8px 12px;
  font-size: 13px;
  font-family: var(--font-sans);
  letter-spacing: 0;
  text-transform: none;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6' fill='none'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23888' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
}

.inv-empty {
  text-align: center;
  padding: 80px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
}
.inv-empty-mono { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.25em; color: var(--accent); }
.inv-empty h3 { font-family: var(--font-display); font-size: 32px; margin: 16px 0 8px; color: var(--text); }
.inv-empty p { color: var(--text-mute); margin: 0 0 24px; }

/* Inv list view */
.inv-list { display: flex; flex-direction: column; gap: 12px; }
.inv-row {
  display: grid;
  grid-template-columns: 200px 1.4fr 1fr 200px;
  gap: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 16px;
  align-items: center;
  cursor: pointer;
  transition: all 0.18s ease;
}
.inv-row:hover { border-color: var(--chrome-dark); }
.inv-row-photo { height: 130px; }
.inv-row-photo .photo-slot { height: 100%; }
.ir-year { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; color: var(--text-mute); }
.ir-name { font-family: var(--font-display); font-size: 26px; color: var(--text); line-height: 1; margin: 4px 0; }
.ir-trim { font-size: 13px; color: var(--text-mute); margin-bottom: 10px; }
.ir-specs { font-size: 12px; color: var(--text-dim); display: flex; gap: 8px; flex-wrap: wrap; }
.inv-row-tags { display: flex; flex-direction: column; gap: 6px; }
.row-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  padding: 4px 8px;
  background: var(--surface-3);
  border: 1px solid var(--border);
  color: var(--text-mute);
  width: fit-content;
}
.inv-row-price { text-align: right; display: flex; flex-direction: column; gap: 4px; align-items: flex-end; }
.ir-pricelbl { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em; color: var(--text-dim); }
.ir-price { font-family: var(--font-display); font-size: 32px; color: var(--text); line-height: 1; }
.ir-est { font-size: 11px; color: var(--text-mute); margin-bottom: 8px; }

/* ============================================================================
   DETAIL PAGE
   ============================================================================ */
.detail-page { padding: 32px 0 100px; }
.detail-back {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--text-mute);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 8px 0;
  margin-bottom: 24px;
}
.detail-back:hover { color: var(--text); }
.detail-eyebrow {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--text-mute);
  margin-bottom: 14px;
}
.mono { font-family: var(--font-mono); }
.dot-sep { color: var(--text-dim); }
.detail-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  padding: 3px 8px;
  background: rgba(200,16,46,0.12);
  border: 1px solid var(--accent);
  color: var(--accent);
}
.detail-headline {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 36px;
}
.detail-year {
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 4px;
}
.detail-h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 400;
  line-height: 0.95;
  margin: 0 0 8px;
  color: var(--text);
}
.detail-trim { font-size: 16px; color: var(--text-mute); }

.detail-price-card {
  background: var(--surface);
  border: 1px solid var(--border-strong);
  padding: 28px;
}
.dpc-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em; color: var(--text-mute); }
.dpc-price {
  font-family: var(--font-display);
  font-size: 56px;
  color: var(--text);
  line-height: 1;
  margin: 6px 0 8px;
}
.dpc-est { font-size: 13px; color: var(--text-mute); margin-bottom: 18px; }
.dpc-est b { color: var(--text); font-weight: 600; }
.dpc-row { display: flex; gap: 8px; margin-top: 10px; }
.dpc-row button { flex: 1; }

/* Gallery */
.detail-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 56px;
}
.dg-main { position: relative; }
.dg-overlay-info {
  position: absolute;
  left: 20px; bottom: 20px;
  display: flex; align-items: center; gap: 12px;
  background: rgba(0,0,0,0.7);
  padding: 8px 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: white;
  backdrop-filter: blur(6px);
}
.dg-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  background: rgba(0,0,0,0.6);
  color: white;
  font-size: 22px;
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(6px);
}
.dg-arrow:hover { background: var(--accent); border-color: var(--accent); }
.dg-prev { left: 16px; }
.dg-next { right: 16px; }
.dg-thumbs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}
.dg-thumb {
  cursor: pointer;
  padding: 0;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.dg-thumb.is-active { border-color: var(--accent); }
.dg-thumb-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 6px 8px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.8));
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: white;
}

/* Detail tabs */
.detail-tabs {
  display: flex;
  gap: 1px;
  background: var(--border);
  margin-bottom: 32px;
}
.detail-tab {
  flex: 1;
  padding: 16px 20px;
  background: var(--surface);
  color: var(--text-mute);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.15s ease;
  border-bottom: 2px solid transparent;
}
.detail-tab:hover { color: var(--text); }
.detail-tab.is-active {
  background: var(--surface-2);
  color: var(--text);
  border-bottom-color: var(--accent);
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  margin-bottom: 80px;
}
.detail-main { min-width: 0; }
.block-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  color: var(--text);
  margin: 0 0 16px;
}
.block-title:not(:first-child) { margin-top: 40px; }
.block-lede { font-size: 16px; color: var(--text-mute); margin: 0 0 24px; line-height: 1.6; }

.quick-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  margin-bottom: 24px;
}
.quick-specs > div {
  background: var(--surface);
  padding: 18px 20px;
}
.qs-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em; color: var(--text-dim); text-transform: uppercase; }
.qs-val { font-size: 16px; color: var(--text); font-weight: 500; margin-top: 4px; }

.dot-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.dot-list li {
  position: relative;
  padding-left: 22px;
  color: var(--text-mute);
  font-size: 14px;
  line-height: 1.5;
}
.dot-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 6px; height: 6px;
  background: var(--accent);
}

.spec-table {
  background: var(--surface);
  border: 1px solid var(--border);
}
.spec-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  padding: 12px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.spec-row:last-child { border-bottom: none; }
.spec-k { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; color: var(--text-mute); text-transform: uppercase; align-self: center; }
.spec-v { color: var(--text); }

.feat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.feat-block { background: var(--surface); border: 1px solid var(--border); padding: 22px 26px; }
.feat-cat { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em; color: var(--accent); margin-bottom: 14px; text-transform: uppercase; }
.feat-block ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.feat-block li { font-size: 13px; color: var(--text-mute); display: flex; align-items: center; gap: 10px; }
.feat-block li::before { content: '✓'; color: var(--accent); font-weight: 700; font-size: 12px; }

.history-card { background: var(--surface); border: 1px solid var(--border); padding: 28px; }
.history-head { display: flex; justify-content: space-between; align-items: center; padding-bottom: 16px; border-bottom: 1px solid var(--border); margin-bottom: 24px; }
.history-head .mono { font-size: 11px; letter-spacing: 0.15em; color: var(--text-mute); }
.history-status { font-family: var(--font-mono); font-size: 11px; padding: 4px 10px; background: rgba(45,215,107,0.15); color: #2dd76b; border: 1px solid #2dd76b; letter-spacing: 0.15em; }
.history-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 24px; }
.hg-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-mute); margin-bottom: 4px; }
.hg-val { color: var(--text); font-size: 16px; font-weight: 500; }

/* Detail side */
.detail-side { display: flex; flex-direction: column; gap: 20px; }
.side-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 24px;
}
.side-card h4 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  margin: 0 0 18px;
  color: var(--text);
}
.side-card .muted { color: var(--text-mute); font-size: 13px; margin: 0 0 16px; }

.testdrive-slots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; margin-bottom: 12px; }
.td-slot {
  padding: 10px 8px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  font-size: 12px;
  color: var(--text);
  transition: all 0.15s ease;
}
.td-slot:hover { border-color: var(--accent); background: rgba(200,16,46,0.1); }

.side-contact { background: linear-gradient(180deg, var(--surface) 0%, var(--surface-2) 100%); }
.contact-row { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.contact-avatar {
  width: 48px; height: 48px;
  background: var(--accent);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  border-radius: 50%;
}
.contact-row b { display: block; color: var(--text); }
.contact-row span { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-mute); }
.side-card > button + button { margin-top: 8px; }

/* Finance mini */
.fm { display: flex; flex-direction: column; gap: 14px; margin-bottom: 16px; }
.fm-row { display: flex; justify-content: space-between; align-items: center; }
.fm-row label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-mute); }
.fm-val { color: var(--text); font-size: 14px; font-weight: 500; }
.fm-term { display: flex; gap: 4px; }
.fm-term button {
  padding: 6px 10px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  font-size: 11px;
  font-weight: 500;
  color: var(--text-mute);
}
.fm-term button.is-active { background: var(--accent); border-color: var(--accent); color: white; }
.fm-result { background: linear-gradient(180deg, var(--surface-2), var(--surface-3)); border: 1px solid var(--border-strong); padding: 18px; text-align: center; margin-top: 6px; }
.fm-result-lbl { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-mute); }
.fm-result-num { font-family: var(--font-display); font-size: 44px; color: var(--text); line-height: 1; margin: 6px 0; }
.fm-result-num span { font-size: 16px; color: var(--text-mute); letter-spacing: 0.1em; margin-left: 4px; }
.fm-result-detail { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.15em; color: var(--text-dim); text-transform: uppercase; }

.detail-similar { margin-top: 60px; }

/* ============================================================================
   FINANCING PAGE / SELL PAGE
   ============================================================================ */
.fin-hero, .sell-hero, .about-hero {
  background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
  border-bottom: 1px solid var(--border);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.fin-hero::after, .sell-hero::after, .about-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 20%, var(--accent-glow), transparent 50%);
  opacity: 0.2;
  pointer-events: none;
}
.fin-hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--accent);
  margin-bottom: 16px;
}
.fin-hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 6.5vw, 96px);
  font-weight: 400;
  line-height: 0.95;
  margin: 0 0 20px;
  color: var(--text);
  max-width: 900px;
}
.fin-hero-h1 .accent {
  background: linear-gradient(180deg, var(--accent-bright), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
}
.fin-hero-sub {
  font-size: 16px;
  color: var(--text-mute);
  max-width: 580px;
  margin: 0;
  line-height: 1.6;
}
.fin-hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  width: fit-content;
}
.fin-hero-stats > div:not(.vsep) { display: flex; flex-direction: column; gap: 2px; }
.fin-hero-stats b { font-family: var(--font-display); font-size: 32px; color: var(--text); line-height: 1; }
.fin-hero-stats span { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-dim); }

.fin-body { padding: 60px 32px 100px; }
.fin-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 40px; align-items: flex-start; }
.fin-form-wrap { background: var(--surface); border: 1px solid var(--border); padding: 40px; }

.fin-stepper { display: flex; gap: 0; margin-bottom: 40px; }
.fin-step {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.fin-step-num {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--surface-3);
  color: var(--text-mute);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  flex-shrink: 0;
}
.fin-step.is-done .fin-step-num { background: var(--accent); color: white; }
.fin-step.is-active { border-bottom-color: var(--accent); }
.fin-step.is-active .fin-step-num { background: var(--accent); color: white; box-shadow: 0 0 0 4px var(--accent-glow); }
.fin-step-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.fin-step.is-active .fin-step-label, .fin-step.is-done .fin-step-label { color: var(--text); }

.fin-form h3 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  margin: 0 0 8px;
  color: var(--text);
}
.form-sub { color: var(--text-mute); margin: 0 0 28px; font-size: 14px; }
.form-row { margin-bottom: 18px; }
.form-row.two { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row.three { display: grid; grid-template-columns: 1.4fr 0.6fr 0.8fr; gap: 16px; }
.form-row.four { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

.field { display: flex; flex-direction: column; gap: 6px; }
.field-label, .form-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.form-label { margin-bottom: 10px; display: flex; justify-content: space-between; align-items: center; }
.form-label-val { color: var(--text); }
.field input, .field textarea {
  background: var(--bg-1);
  border: 1px solid var(--border-strong);
  padding: 14px 16px;
  font-size: 15px;
  color: var(--text);
  outline: none;
  transition: border-color 0.15s ease;
  font-family: inherit;
  resize: vertical;
}
.field input:focus, .field textarea:focus { border-color: var(--accent); }

.form-radio-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.credit-tile {
  background: var(--bg-1);
  border: 1px solid var(--border-strong);
  padding: 14px 16px;
  text-align: left;
  transition: all 0.15s ease;
}
.credit-tile:hover { border-color: var(--chrome-dark); }
.credit-tile.is-active { border-color: var(--accent); background: rgba(200,16,46,0.08); }
.ct-label { font-size: 14px; font-weight: 600; color: var(--text); }
.ct-range { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.15em; color: var(--text-mute); margin-top: 4px; }

.pill-radio {
  padding: 8px 14px;
  background: var(--bg-1);
  border: 1px solid var(--border-strong);
  font-size: 13px;
  color: var(--text-mute);
}
.pill-radio.is-active { background: var(--accent); border-color: var(--accent); color: white; }
.form-radio-row .pill-radio { padding: 10px 16px; }

.form-note {
  display: flex; gap: 12px; align-items: flex-start;
  background: rgba(45,215,107,0.06);
  border: 1px solid rgba(45,215,107,0.25);
  padding: 14px 16px;
  font-size: 13px;
  color: var(--text-mute);
}
.form-note-icon { font-size: 16px; }

.review-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--border); margin-bottom: 24px; }
.review-row {
  background: var(--bg-1);
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.review-k { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-mute); }
.review-v { color: var(--text); font-size: 14px; text-align: right; }

.form-consent {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 16px;
  background: var(--bg-1);
  border: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-mute);
  line-height: 1.5;
  cursor: pointer;
  margin-bottom: 16px;
}
.form-consent input { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; accent-color: var(--accent); }

.form-actions { display: flex; justify-content: space-between; align-items: center; margin-top: 28px; gap: 12px; }
.form-actions .btn-accent { margin-left: auto; }

.fin-range { width: 100%; }

/* Sell offer card */
.offer-card {
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.04) 0px, rgba(255,255,255,0.04) 1px, transparent 1px, transparent 6px),
    linear-gradient(135deg, var(--accent-dark) 0%, #1a0508 100%);
  border: 1px solid var(--accent);
  padding: 36px;
  margin-bottom: 36px;
  position: relative;
}
.offer-mono { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.25em; color: rgba(255,255,255,0.7); margin-bottom: 8px; }
.offer-veh { font-size: 14px; color: rgba(255,255,255,0.8); margin-bottom: 18px; letter-spacing: 0.02em; }
.offer-num { font-family: var(--font-display); font-size: 96px; color: white; line-height: 0.9; margin-bottom: 12px; }
.offer-good { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em; color: rgba(255,255,255,0.7); text-transform: uppercase; margin-bottom: 20px; }
.offer-bonus {
  display: flex; align-items: center; gap: 12px;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 14px 18px;
  color: white;
  font-size: 14px;
}
.offer-bonus b { color: #ffdf6b; font-weight: 700; }
.offer-bonus-icon { width: 24px; height: 24px; background: var(--accent); color: white; display: flex; align-items: center; justify-content: center; font-weight: 700; }

.vin-divider {
  display: flex; align-items: center; gap: 12px;
  margin: 18px 0;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--text-dim);
}
.vin-divider::before, .vin-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}

/* Fin side */
.fin-side { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 80px; }
.calc-card {}
.trust-card {}
.trust-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.trust-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--text-mute); }
.check { color: var(--accent); font-weight: 700; flex-shrink: 0; }

.how-list { list-style: none; padding: 0; margin: 0; counter-reset: how; display: flex; flex-direction: column; gap: 14px; }
.how-list li {
  position: relative;
  padding-left: 36px;
  counter-increment: how;
  font-size: 13px;
  color: var(--text-mute);
  line-height: 1.5;
}
.how-list li::before {
  content: counter(how);
  position: absolute;
  left: 0; top: 0;
  width: 24px; height: 24px;
  background: var(--accent);
  color: white;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.how-list b { color: var(--text); font-weight: 600; }

/* Calculator widget */
.calc { display: flex; flex-direction: column; gap: 16px; }
.calc-result {
  background: linear-gradient(180deg, var(--surface-2), var(--surface-3));
  border: 1px solid var(--border-strong);
  padding: 20px;
}
.calc-result-lbl { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-mute); }
.calc-result-num { font-family: var(--font-display); font-size: 56px; color: var(--text); line-height: 1; margin: 4px 0 12px; }
.calc-result-num span { font-size: 18px; color: var(--text-mute); margin-left: 4px; }
.calc-result-bar { display: flex; height: 6px; gap: 1px; margin-bottom: 10px; }
.crb-principal { background: var(--accent); }
.crb-interest { background: var(--surface-3); }
.calc-result-legend { display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; color: var(--text-mute); }
.dot-prin, .dot-int { display: inline-block; width: 8px; height: 8px; margin-right: 5px; }
.dot-prin { background: var(--accent); }
.dot-int { background: var(--surface-3); border: 1px solid var(--border-strong); }
.calc-field { display: flex; flex-direction: column; gap: 8px; }
.calc-row { display: flex; justify-content: space-between; align-items: center; }
.calc-row label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-mute); }
.calc-val { color: var(--text); font-size: 13px; font-weight: 500; }
.seg { display: flex; gap: 4px; }
.seg button {
  flex: 1; padding: 8px 4px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  font-size: 11px;
  font-weight: 500;
  color: var(--text-mute);
}
.seg button.is-active { background: var(--accent); border-color: var(--accent); color: white; }
.calc-disc { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.1em; color: var(--text-dim); margin-top: 4px; line-height: 1.5; }

/* ============================================================================
   ABOUT + CONTACT
   ============================================================================ */
.about-section { padding: 80px 32px; }
.about-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: center; }
.about-photo .photo-slot { max-height: 600px; }
.about-copy p { color: var(--text-mute); font-size: 16px; line-height: 1.7; margin: 0 0 16px; }
.about-copy p:first-of-type { margin-top: 20px; }
.about-sig { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--border); }
.sig-mono { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.25em; color: var(--accent); }
.sig-name { font-family: var(--font-display); font-size: 24px; color: var(--text); margin-top: 4px; }

.about-stats { padding: 0 32px; }
.big-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.big-stat { background: var(--surface); padding: 32px 28px; display: flex; flex-direction: column; gap: 8px; }
.bs-num { font-family: var(--font-display); font-size: 56px; color: var(--text); line-height: 1; }
.bs-rule { width: 28px; height: 2px; background: var(--accent); }
.bs-label { font-size: 14px; color: var(--text); font-weight: 600; margin-top: 4px; }
.bs-sub { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em; color: var(--text-dim); text-transform: uppercase; }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.team-card { background: var(--surface); border: 1px solid var(--border); padding: 24px; }
.team-avatar {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--surface-2), var(--surface-3));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  overflow: hidden;
}
.team-avatar span {
  font-family: var(--font-display);
  font-size: 72px;
  color: var(--chrome-light);
  letter-spacing: 0.04em;
  z-index: 1;
}
.team-stripes {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(45deg,
      rgba(0,0,0,0.04) 0px,
      rgba(0,0,0,0.04) 2px,
      transparent 2px,
      transparent 6px);
}
.team-name { font-family: var(--font-display); font-size: 22px; color: var(--text); line-height: 1.1; }
.team-role { font-size: 13px; color: var(--text-mute); margin: 6px 0 8px; }
.team-since { font-size: 10px; letter-spacing: 0.2em; color: var(--accent); }

/* Contact */
.contact-body { padding: 60px 32px 100px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 40px; align-items: flex-start; }
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.info-card { background: var(--surface); border: 1px solid var(--border); padding: 24px; }
.info-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.25em; color: var(--accent); margin-bottom: 10px; }
.info-value { color: var(--text); font-size: 18px; line-height: 1.4; }
.info-value a { color: var(--text); }
.info-value a:hover { color: var(--accent); }
.info-sub { font-size: 12px; color: var(--text-mute); margin-top: 6px; }
.info-link { display: inline-flex; align-items: center; gap: 6px; color: var(--accent); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 10px; font-weight: 600; }
.hours-table { display: flex; flex-direction: column; gap: 10px; }
.hours-table > div { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px dashed var(--border); font-size: 13px; }
.hours-table > div:last-child { border-bottom: none; }
.hours-table span { color: var(--text-mute); }
.hours-table b { color: var(--text); font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.05em; }

.contact-map-form { display: flex; flex-direction: column; gap: 24px; }
.contact-map {
  position: relative;
  height: 320px;
  background: linear-gradient(135deg, #f5f5f6 0%, #ebebee 100%);
  border: 1px solid var(--border);
  overflow: hidden;
}
.map-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}
.map-pin {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 24px; height: 24px;
  z-index: 2;
}
.map-pin-dot {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 16px; height: 16px;
  background: var(--accent);
  border: 2px solid white;
  border-radius: 50%;
  z-index: 2;
}
.map-pin-ring {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 16px; height: 16px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  animation: pulse 2.2s ease-out infinite;
}
@keyframes pulse {
  0% { width: 16px; height: 16px; opacity: 1; }
  100% { width: 80px; height: 80px; opacity: 0; }
}
.map-streets > .street {
  position: absolute;
  background: rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  padding: 0 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--text-dim);
}
.street.s1 { left: 0; right: 0; top: 50%; height: 22px; transform: translateY(-50%) rotate(-2deg); }
.street.s2 { left: 30%; top: 0; bottom: 0; width: 22px; transform: rotate(8deg); writing-mode: vertical-rl; justify-content: center; }
.street.s3 { left: 0; right: 0; top: 22%; height: 16px; background: rgba(0,0,0,0.04); }
.street.s4 { left: 0; right: 0; bottom: 12%; height: 28px; background: rgba(200,16,46,0.1); border-top: 1px solid var(--accent); border-bottom: 1px solid var(--accent); justify-content: flex-end; }
.map-label {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, calc(-50% - 50px));
  background: rgba(255,255,255,0.95);
  border: 1px solid var(--accent);
  padding: 10px 14px;
  text-align: center;
  white-space: nowrap;
  z-index: 3;
}
.map-label .mono { font-size: 10px; letter-spacing: 0.2em; color: var(--accent); display: block; }
.map-label div:last-child { color: var(--text); font-size: 13px; margin-top: 2px; }

.contact-form { background: var(--surface); border: 1px solid var(--border); padding: 32px; }
.contact-form h3 { font-family: var(--font-display); font-size: 32px; font-weight: 400; margin: 0 0 24px; color: var(--text); }

/* ============================================================================
   Responsive
   ============================================================================ */
/* Hide phone label at medium widths */
@media (max-width: 1180px) {
  .nav-phone span { display: none; }
  .nav-inner { gap: 24px; }
  .nav-link { padding: 10px 10px; font-size: 12px; }
}

/* Collapse nav to compact at narrower medium widths */
@media (max-width: 1024px) {
  .nav-inner { padding: 12px 20px; gap: 16px; }
  .nav-links {
    position: absolute;
    left: 0; right: 0; top: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 12px 20px;
    overflow-x: auto;
    margin-left: 0;
    scrollbar-width: none;
  }
  .nav-links::-webkit-scrollbar { display: none; }
  .nav-link.is-active::after { bottom: -12px; }
  .nav { padding-bottom: 0; }
  .topbar-left span:nth-child(n+3) { display: none; }
}

@media (max-width: 1100px) {
  .vcard-grid, .inv-grid, .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .body-grid, .value-grid, .big-stats, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-search-row { grid-template-columns: 1fr 1fr; }
  .hero-search-btn { grid-column: 1 / -1; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .inv-body, .fin-grid, .contact-grid, .detail-grid, .detail-headline, .about-grid, .finance-banner-inner {
    grid-template-columns: 1fr;
  }
  .inv-filters, .fin-side { position: static; }
  .quick-specs, .history-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .vcard-grid, .inv-grid, .testi-grid, .body-grid, .value-grid, .big-stats, .team-grid, .feat-grid, .review-grid, .hero-search-row {
    grid-template-columns: 1fr;
  }
  .form-row.two, .form-row.three, .form-row.four { grid-template-columns: 1fr; }
  .form-radio-row { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; }
  .container { padding: 0 20px; }
  .hero-content { padding: 40px 20px 60px; }
  .nav-cta { gap: 8px; }
  .nav-cta .btn-accent { display: none; }
  .topbar-left { display: none; }
  .topbar-right { width: 100%; justify-content: flex-end; }
}


/* ============================================================================
   SHOWROOM NAVY — surface overrides for everything that hardcoded light colors
   ============================================================================ */

/* Body sits on the navy plate */
body { background: var(--bg); color: var(--text); }

/* Top bar / nav: tinted navy with hairline divider */
.topbar { background: rgba(255,255,255,0.02); border-bottom-color: var(--border); }
.nav    { background: rgba(12, 31, 54, 0.82); border-bottom-color: var(--border); }
.nav-links { background: transparent !important; }
@media (max-width: 1024px) {
  .nav-links { background: rgba(12, 31, 54, 0.96) !important; border-color: var(--border) !important; }
}
.tb-mono { color: var(--text-dim); }
.tb-phone, .nav-phone { color: var(--text); }

/* Hero — navy plate, ivory headline, brass italic accent */
.hero { background: var(--bg); }
.hero-bg-stripes {
  background:
    repeating-linear-gradient(180deg,
      rgba(239,231,214,0.025) 0px,
      rgba(239,231,214,0.025) 1px,
      transparent 1px,
      transparent 3px),
    linear-gradient(120deg, #0C1F36 0%, #102744 45%, #15324F 100%);
}
.hero-bg-grid {
  background-image:
    linear-gradient(rgba(239,231,214,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(239,231,214,0.05) 1px, transparent 1px);
}
.hero-title {
  background: linear-gradient(180deg, #FFFFFF 0%, #EFE7D6 60%, #B5AC97 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Hero search row sits on tinted surface */
.hs-field { background: var(--surface); }
.hero-search-tabs .tab { background: var(--surface); color: var(--text-mute); border-color: var(--border); }
.hero-search-tabs .tab.is-active { background: var(--surface-2); color: var(--text); }
.match-count { background: rgba(239,231,214,0.10); }

/* Page heroes: solid navy with brass radial glow */
.inv-header,
.fin-hero, .sell-hero, .about-hero {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-1) 100%);
}

/* Vehicle card hardware */
.vcard, .vcard-photo .photo-slot { background: var(--surface); }
.vcard-stock {
  background: rgba(12, 31, 54, 0.85);
  border-color: var(--border-strong);
  color: var(--text-mute);
  backdrop-filter: blur(6px);
}

/* Anything labeled "white text on accent" should be navy on brass */
.btn-accent,
.vcard-badge,
.chip.is-active,
.fh-icon,
.fin-step.is-done .fin-step-num,
.fin-step.is-active .fin-step-num,
.pill-radio.is-active,
.fm-term button.is-active,
.contact-avatar,
.how-list li::before,
.seg button.is-active,
.offer-bonus-icon,
.social-pill:hover,
.active-pill button:hover {
  color: var(--on-accent);
}

/* Detail tag pill — brass tint, brass border */
.detail-tag { background: rgba(217,178,106,0.14); border-color: var(--accent); color: var(--accent); }

/* Credit tile active — brass tint */
.credit-tile.is-active { background: rgba(217,178,106,0.10); }

/* Test-drive slot hover — brass tint */
.td-slot:hover { background: rgba(217,178,106,0.12); }

/* Range slider thumb glow */
input[type="range"]::-webkit-slider-thumb { box-shadow: 0 0 0 4px rgba(217,178,106,0.20); }
input[type="range"]::-webkit-slider-thumb:hover { box-shadow: 0 0 0 6px var(--accent-glow); }

/* Form fields sit on the deeper navy panel */
.field input, .field textarea { background: var(--bg-1); }
.review-row, .form-consent { background: var(--bg-1); }

/* Body tile stripes — flip from black to ivory so they show */
.body-tile-stripes {
  background: repeating-linear-gradient(45deg,
    rgba(239,231,214,0.05) 0px,
    rgba(239,231,214,0.05) 2px,
    transparent 2px,
    transparent 8px);
}

/* Footer */
.footer { background: var(--bg-1); border-top-color: var(--border); }

/* Tweaks panel + tooltips on top — let component handle its own colors */

/* Contact map — slate panel rather than light gray */
.contact-map { background: linear-gradient(135deg, var(--surface) 0%, var(--surface-2) 100%); }
.map-grid {
  background-image:
    linear-gradient(rgba(239,231,214,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(239,231,214,0.06) 1px, transparent 1px);
}
.map-streets > .street {
  background: rgba(239,231,214,0.06);
  color: var(--text-dim);
}
.street.s3 { background: rgba(239,231,214,0.03); }
.street.s4 {
  background: rgba(217,178,106,0.10);
  border-top-color: var(--accent);
  border-bottom-color: var(--accent);
}
.map-label {
  background: rgba(12, 31, 54, 0.92);
  border-color: var(--accent);
  color: var(--text);
}
.map-pin-dot { border-color: var(--bg); }

/* Inventory list/row backgrounds use surface tokens already */

/* Sell page offer card — keep dark, just retune to brass */
.offer-card {
  background:
    repeating-linear-gradient(135deg, rgba(239,231,214,0.04) 0px, rgba(239,231,214,0.04) 1px, transparent 1px, transparent 6px),
    linear-gradient(135deg, #15324F 0%, #0A1A2E 100%);
}
.offer-bonus b { color: var(--accent-bright); }

/* Finance banner — already dark, retune from blood-red to navy + brass underglow */
.finance-banner {
  background: linear-gradient(135deg, #15324F 0%, #0A1A2E 60%, #060F1A 100%);
}
.finance-banner-title .accent { color: var(--accent-bright); }
.fbs-card { background: rgba(0,0,0,0.30); border-color: rgba(239,231,214,0.10); }

/* Gallery overlays — already on photo, just tighten the panel */
.dg-overlay-info { background: rgba(12, 31, 54, 0.78); }
.dg-arrow { background: rgba(12, 31, 54, 0.65); border-color: var(--border-strong); }


/* ============================================================================
   Language toggle pill (EN / ES) — sits to the left of phone in nav-cta
   ============================================================================ */
.lang-toggle {
  display: inline-flex;
  align-items: stretch;
  height: 30px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  overflow: hidden;
  background: transparent;
  flex-shrink: 0;
}
.lang-toggle button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  background: transparent;
  color: var(--text-mute);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  transition: background 0.18s ease, color 0.18s ease;
  cursor: pointer;
  position: relative;
}
.lang-toggle button:hover { color: var(--text); }
.lang-toggle button.is-active {
  background: var(--accent);
  color: var(--on-accent);
}
.lang-toggle .lt-divider {
  width: 1px;
  background: var(--border-strong);
  align-self: stretch;
}

/* Hide topbar location label at narrow widths, keep phone */
@media (max-width: 1024px) {
  .nav-cta .lang-toggle { order: -1; }
}
@media (max-width: 700px) {
  .lang-toggle { height: 28px; }
  .lang-toggle button { padding: 0 10px; font-size: 10px; }
}
