/* =========================================================================
   HOTROD GOLF CARTS — Design System
   Brand: red (primary) + golden-yellow + chrome accents on a black/white base.
   All colors are tokens below — change them in one place to re-skin the site.
   ========================================================================= */

/* ---------- Tokens ---------- */
:root {
  /* Brand — sampled directly from the HotRod logo */
  --red:        #d93722;
  --red-600:    #bd2c19;
  --red-700:    #9d2414;
  --red-050:    #fdeae5;
  --yellow:     #f3de4a;
  --yellow-deep:#e0b400;
  --orange:     #e6643b;
  --flame:      linear-gradient(90deg, var(--red) 0%, var(--orange) 52%, var(--yellow) 100%);

  /* Neutrals */
  --ink:        #101216;   /* near-black base for dark sections */
  --ink-soft:   #1c1c21;   /* dark cards / raised on dark */
  --ink-700:    #2a2a31;
  --ink-600:    #3a3a42;
  --paper:      #ffffff;
  --paper-2:    #f6f6f8;   /* light section background */
  --paper-3:    #ededf1;
  --line:       #e5e5ea;   /* hairline borders on light */
  --line-dark:  #32323a;   /* hairline borders on dark */
  --muted:      #6b7079;   /* secondary text on light */
  --muted-dark: #a7abb4;   /* secondary text on dark */
  --text:       #17171b;   /* body text on light */
  --text-dark:  #ededf1;   /* body text on dark */

  /* Chrome (metallic accents) */
  --chrome-1:   #f4f5f7;
  --chrome-2:   #cfd2d8;
  --chrome-3:   #9aa0a9;
  --chrome-grad: linear-gradient(180deg, #fbfbfc 0%, #d6d9df 45%, #aab0ba 55%, #eceef1 100%);

  /* Type */
  --font-display: 'Oswald', 'Arial Narrow', system-ui, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  /* Layout */
  --container: 1240px;
  --container-narrow: 920px;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-pill: 999px;
  --gutter: clamp(20px, 5vw, 56px);

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(18,18,22,.06), 0 2px 8px rgba(18,18,22,.05);
  --shadow:    0 6px 18px rgba(18,18,22,.08), 0 2px 6px rgba(18,18,22,.05);
  --shadow-lg: 0 24px 60px rgba(18,18,22,.16), 0 8px 24px rgba(18,18,22,.08);
  --shadow-red: 0 10px 28px rgba(216,38,44,.30);

  --ease: cubic-bezier(.22,.61,.36,1);
  --header-h: 76px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid color-mix(in srgb, var(--red) 55%, white); outline-offset: 2px; border-radius: 4px; }

/* Brand accent stripe across the very top of every page */
body::before { content: ""; position: fixed; inset: 0 0 auto 0; height: 4px; z-index: 150; background: var(--flame); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.05; letter-spacing: .01em; }
.display {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.6rem, 6.2vw, 5rem);
  line-height: .98;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
h2.section-title, .section-title {
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  text-transform: uppercase;
  letter-spacing: .005em;
}
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p { color: var(--text); }
.lead { font-size: clamp(1.05rem, 1.5vw, 1.22rem); color: var(--muted); line-height: 1.7; }
strong { font-weight: 700; }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: .65rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--red);
  display: inline-block;
}
.eyebrow.center { justify-content: center; }
.on-dark .eyebrow, .eyebrow.on-dark { color: var(--yellow); }
.on-dark .eyebrow::before, .eyebrow.on-dark::before { background: var(--yellow); }

.chrome-text {
  background: linear-gradient(180deg, #ffffff 0%, #d9dce2 48%, #aeb4be 52%, #f1f2f5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.text-red { color: var(--red); }
.text-yellow { color: var(--yellow-deep); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container.narrow { max-width: var(--container-narrow); }
.section { padding-block: clamp(56px, 8vw, 110px); }
.section.tight { padding-block: clamp(40px, 5vw, 64px); }
.section--light { background: var(--paper); }
.section--muted { background: var(--paper-2); }
.section--dark { background: var(--ink); color: var(--text-dark); }
.section--dark p { color: var(--muted-dark); }
.section--dark .section-title { color: #fff; }
.section-head { max-width: 720px; margin-bottom: clamp(32px, 4vw, 54px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .section-title { margin-top: 14px; }
.section-head.center .section-title::after { content: ""; display: block; width: 66px; height: 4px; margin: 18px auto 0; border-radius: 2px; background: var(--flame); }
.section-head p { margin-top: 16px; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--ink);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6em;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .98rem;
  letter-spacing: .01em;
  line-height: 1;
  padding: 1rem 1.6rem;
  border-radius: var(--radius-sm);
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1.5px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s, color .2s, border-color .2s;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}
.btn svg { width: 1.05em; height: 1.05em; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary {
  --btn-bg: linear-gradient(180deg, #e23036 0%, var(--red) 55%, var(--red-600) 100%);
  box-shadow: var(--shadow-red);
}
.btn--primary:hover { box-shadow: 0 14px 34px rgba(216,38,44,.42); }
.btn--dark { --btn-bg: var(--ink); box-shadow: var(--shadow); }
.btn--light { --btn-bg: #fff; --btn-fg: var(--ink); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn--light:hover { border-color: var(--chrome-3); }
.btn--ghost { --btn-bg: transparent; --btn-fg: var(--ink); border-color: color-mix(in srgb, var(--ink) 22%, transparent); }
.btn--ghost:hover { border-color: var(--ink); }
.on-dark .btn--ghost, .btn--ghost.on-dark { --btn-fg: #fff; border-color: rgba(255,255,255,.32); }
.on-dark .btn--ghost:hover, .btn--ghost.on-dark:hover { border-color: #fff; background: rgba(255,255,255,.06); }
.btn--lg { padding: 1.15rem 2rem; font-size: 1.05rem; }
.btn--sm { padding: .7rem 1.1rem; font-size: .9rem; }
.btn--block { display: flex; width: 100%; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .5em;
  font-weight: 600; color: var(--red);
  transition: gap .2s var(--ease);
}
.link-arrow svg { width: 1em; height: 1em; transition: transform .2s var(--ease); }
.link-arrow:hover { gap: .75em; }
.link-arrow:hover svg { transform: translateX(2px); }

/* ---------- Badges / pills ---------- */
.badge {
  display: inline-flex; align-items: center; gap: .4em;
  font-size: .76rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  padding: .38em .7em; border-radius: var(--radius-pill);
  background: var(--ink); color: #fff;
}
.badge--red { background: var(--red); }
.badge--yellow { background: var(--yellow); color: #3a2c00; }
.badge--ghost { background: rgba(255,255,255,.9); color: var(--ink); border: 1px solid var(--line); }
.badge--chrome { background: var(--chrome-grad); color: #2a2a31; border: 1px solid rgba(0,0,0,.06); }

/* =========================================================================
   HEADER
   ========================================================================= */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  background: rgba(255,255,255,0);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled, .site-header.solid {
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  box-shadow: 0 1px 0 rgba(18,18,22,.06), 0 8px 28px rgba(18,18,22,.06);
  border-bottom-color: var(--line);
}
.header-inner { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }

/* Wordmark logo (swap .brand contents to drop in a real logo image) */
.brand { display: inline-flex; align-items: center; gap: .7rem; flex-shrink: 0; }
.brand__mark { height: 56px; width: auto; display: block; }
.brand__text { display: none; }   /* logo image already includes the wordmark */
.brand__name {
  font-family: var(--font-display); font-weight: 700; font-size: 1.35rem;
  letter-spacing: .02em; text-transform: uppercase; color: var(--ink);
}
.brand__name .hot { color: var(--red); font-style: italic; }
.brand__sub { font-family: var(--font-body); font-weight: 600; font-size: .58rem; letter-spacing: .34em;
  text-transform: uppercase; color: var(--muted); margin-top: 3px; }

/* Primary nav */
.nav { display: flex; align-items: center; gap: 2rem; }
.nav__list { display: flex; align-items: center; gap: 1.7rem; }
.nav__link {
  position: relative; font-weight: 600; font-size: .98rem; color: var(--ink);
  padding: .4rem 0; transition: color .2s;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--red); transition: width .25s var(--ease);
}
.nav__link:hover { color: var(--red); }
.nav__link:hover::after, .nav__link.active::after { width: 100%; }
.nav__link.active { color: var(--red); }

/* Dropdown */
.has-menu { position: relative; }
.has-menu__btn { display: inline-flex; align-items: center; gap: .35rem; }
.has-menu__btn svg { width: .8em; height: .8em; transition: transform .25s var(--ease); }
.dropdown {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 460px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 12px; opacity: 0; visibility: hidden;
  transition: opacity .22s var(--ease), transform .22s var(--ease);
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px;
}
/* invisible bridge over the gap so the menu stays open while the cursor moves down to it */
.dropdown::before { content: ""; position: absolute; left: 0; right: 0; top: -18px; height: 20px; }
.has-menu:hover .dropdown, .has-menu:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.has-menu:hover .has-menu__btn svg { transform: rotate(180deg); }
.dropdown__item { display: flex; gap: .9rem; align-items: center; padding: 10px; border-radius: 12px; transition: background .18s; }
.dropdown__item:hover { background: var(--paper-2); }
.dropdown__thumb { width: 64px; height: 48px; flex-shrink: 0; border-radius: 8px; background: var(--paper-2);
  display: grid; place-items: center; overflow: hidden; }
.dropdown__thumb img { width: 100%; height: 100%; object-fit: contain; }
.dropdown__name { display: block; font-family: var(--font-display); font-weight: 600; font-size: 1rem; text-transform: uppercase; letter-spacing: .02em; color: var(--ink); }
.dropdown__meta { display: block; margin-top: 2px; font-size: .82rem; color: var(--muted); }
.dropdown__all { grid-column: 1 / -1; margin-top: 4px; padding: 11px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; gap: .45rem;
  background: var(--ink); color: #fff; font-weight: 600; font-size: .9rem; }
.dropdown__all svg { width: 16px; height: 16px; flex: 0 0 auto; }
.dropdown__all:hover { background: var(--red); }

.header-cta { display: flex; align-items: center; gap: .9rem; }
.phone-btn { display: inline-flex; align-items: center; gap: .5rem; font-weight: 700; color: var(--ink); }
.phone-btn svg { width: 1.05em; height: 1.05em; color: var(--red); }
.phone-btn:hover { color: var(--red); }

/* Hamburger */
.hamburger { display: none; width: 46px; height: 46px; border-radius: 12px; align-items: center; justify-content: center; }
.hamburger span { position: relative; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: .25s var(--ease); }
.hamburger span::before, .hamburger span::after { content: ""; position: absolute; left: 0; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: .25s var(--ease); }
.hamburger span::before { top: -7px; } .hamburger span::after { top: 7px; }
body.menu-open .hamburger span { background: transparent; }
body.menu-open .hamburger span::before { top: 0; transform: rotate(45deg); }
body.menu-open .hamburger span::after { top: 0; transform: rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: var(--header-h) 0 0 0; z-index: 90;
  background: #fff; padding: 28px var(--gutter) 40px;
  transform: translateY(-12px); opacity: 0; visibility: hidden;
  transition: opacity .28s var(--ease), transform .28s var(--ease);
  overflow-y: auto;
}
body.menu-open .mobile-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-menu a.m-link { display: block; font-family: var(--font-display); text-transform: uppercase; letter-spacing: .02em;
  font-size: 1.5rem; font-weight: 600; padding: 16px 0; border-bottom: 1px solid var(--line); color: var(--ink); }
.mobile-menu a.m-link:hover { color: var(--red); }
.mobile-menu .m-models { padding: 6px 0 14px; }
.mobile-menu .m-models a { display: flex; justify-content: space-between; padding: 11px 0; font-weight: 600; color: var(--muted); }
.mobile-menu .m-models a:hover { color: var(--red); }
.mobile-menu .btn { margin-top: 22px; }

/* =========================================================================
   HERO (home)
   ========================================================================= */
.hero { position: relative; padding-top: calc(var(--header-h) + clamp(28px, 5vw, 70px)); padding-bottom: clamp(40px, 6vw, 80px); overflow: hidden;
  background:
    radial-gradient(120% 100% at 88% 18%, #fff 0%, #f3f4f7 55%, #e9eaef 100%);
}
.hero::before {
  content: ""; position: absolute; top: -10%; right: -6%; width: 46%; height: 120%;
  background: conic-gradient(from 210deg at 50% 50%, transparent 0deg, rgba(217,55,34,.12) 40deg, transparent 80deg),
              radial-gradient(closest-side, rgba(243,222,74,.24), transparent 70%);
  transform: skewX(-12deg); pointer-events: none; filter: blur(2px);
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.04fr 1fr; gap: clamp(24px, 4vw, 56px); align-items: center; }
.hero-copy { max-width: 600px; min-width: 0; }
.hero-stage, .detail-copy, .detail-stage { min-width: 0; }
.hero h1 { margin: 18px 0 0; }
.hero h1 .accent { color: var(--red); }
.hero .lead { margin-top: 20px; max-width: 520px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-trust { display: flex; flex-wrap: wrap; align-items: center; gap: 18px 26px; margin-top: 34px; padding-top: 26px; border-top: 1px solid var(--line); }
.hero-trust .t-item { display: flex; align-items: center; gap: .6rem; font-size: .9rem; font-weight: 600; color: var(--ink); }
.hero-trust .t-item svg { width: 20px; height: 20px; color: var(--red); flex-shrink: 0; }
.stars { color: var(--yellow-deep); letter-spacing: 2px; }

.hero-stage { position: relative; display: block; cursor: pointer; -webkit-tap-highlight-color: transparent; }
.hero-stage::after {
  content: ""; position: absolute; left: 50%; bottom: 8%; transform: translateX(-50%);
  width: 78%; height: 26px; background: radial-gradient(closest-side, rgba(18,18,22,.22), transparent 75%);
  filter: blur(6px); border-radius: 50%;
}
.hero-stage img { position: relative; width: 100%; max-width: 680px; margin-inline: auto;
  filter: drop-shadow(0 30px 40px rgba(18,18,22,.18)); animation: floaty 6s ease-in-out infinite; }
.hero-stage .price-tag {
  position: absolute; top: 6%; right: 2%; z-index: 3;
  background: #fff; border: 1px solid var(--line); border-top: 3px solid var(--yellow); border-radius: 14px; box-shadow: var(--shadow-lg);
  padding: 12px 16px; text-align: left;
}
.hero-stage .price-tag .pt-label { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.hero-stage .price-tag .pt-price { font-weight: 700; color: var(--red); }
.hero-stage .price-tag .pt-cta { display: inline-flex; align-items: center; gap: .35rem; margin-top: 8px; font-size: .78rem; font-weight: 700; color: var(--red); }
.hero-stage .price-tag .pt-cta svg { width: 14px; height: 14px; transition: transform .2s var(--ease); }
.hero-stage:hover .price-tag { border-color: var(--red); box-shadow: 0 14px 40px rgba(216,38,44,.22); }
.hero-stage:hover .price-tag .pt-cta svg { transform: translateX(3px); }
.hero-stage img.hero-award { position: absolute; top: 1%; left: -1%; width: clamp(104px, 14vw, 136px); max-width: 136px; height: auto; margin: 0; z-index: 4; animation: none; filter: drop-shadow(0 6px 14px rgba(0,0,0,.26)); }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@media (prefers-reduced-motion: reduce) { .hero-stage img { animation: none; } html { scroll-behavior: auto; } }

/* =========================================================================
   STATS / VALUE BAR
   ========================================================================= */
.valuebar { background: var(--ink); color: #fff; }
.valuebar__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.valuebar__item { display: flex; align-items: center; gap: 1rem; padding: 30px clamp(16px,2.4vw,34px);
  border-right: 1px solid var(--line-dark); }
.valuebar__item:last-child { border-right: none; }
.valuebar__icon { width: 44px; height: 44px; flex-shrink: 0; border-radius: 12px; display: grid; place-items: center;
  background: rgba(255,255,255,.06); color: var(--yellow); }
.valuebar__icon svg { width: 22px; height: 22px; }
.valuebar__val { font-family: var(--font-display); font-size: 1.35rem; line-height: 1; text-transform: uppercase; color: var(--yellow); }
.valuebar__lbl { font-size: .82rem; color: var(--muted-dark); margin-top: 3px; }

/* =========================================================================
   MODEL CARDS / GRID
   ========================================================================= */
.model-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: clamp(18px, 2vw, 28px); }
.model-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.model-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }

.model-card {
  position: relative; display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.model-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.model-card__media {
  position: relative; aspect-ratio: 4 / 3; background:
    radial-gradient(120% 90% at 50% 18%, #fff 0%, #f4f5f7 70%, #eceef2 100%);
  display: grid; place-items: center; padding: 14px; overflow: hidden;
}
.model-card__media img { width: 100%; height: 100%; object-fit: contain; transition: transform .45s var(--ease); }
.model-card:hover .model-card__media img { transform: scale(1.05); }
.model-card__tags { position: absolute; top: 12px; left: 12px; display: flex; gap: 6px; flex-wrap: wrap; }
.model-card__fav { position: absolute; top: 12px; right: 12px; }
.model-card__body { display: flex; flex-direction: column; gap: .5rem; padding: 18px 20px 22px; flex: 1; }
.model-card__name { font-family: var(--font-display); font-size: 1.4rem; text-transform: uppercase; letter-spacing: .02em; color: var(--ink); }
.model-card__desc { font-size: .92rem; color: var(--muted); line-height: 1.55; }
.model-card__specs { display: flex; gap: 14px; margin-top: 2px; flex-wrap: wrap; }
.model-card__specs span { font-size: .82rem; color: var(--ink); font-weight: 600; display: inline-flex; align-items: center; gap: .35em; }
.model-card__specs svg { width: 15px; height: 15px; color: var(--muted); }
.model-card__foot { margin-top: auto; padding-top: 16px; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.price { line-height: 1.1; }
.price__label { display: block; font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }
.price__value { font-family: var(--font-display); font-size: 1.5rem; color: var(--ink); }
.model-card__accent { position: absolute; left: 0; bottom: 0; height: 3px; width: 0; background: linear-gradient(90deg, var(--red), var(--yellow)); transition: width .35s var(--ease); }
.model-card:hover .model-card__accent { width: 100%; }

/* =========================================================================
   FEATURE GRID (icons) + SPLIT ROWS
   ========================================================================= */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 26px); }
.feature {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature__icon { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: var(--red-050); color: var(--red); margin-bottom: 18px; }
.feature__icon svg { width: 26px; height: 26px; }
.feature h3 { color: var(--ink); margin-bottom: 8px; font-size: 1.18rem; }
.feature p { font-size: .94rem; color: var(--muted); }
.section--dark .feature { background: var(--ink-soft); border-color: var(--line-dark); }
.section--dark .feature h3 { color: #fff; }
.section--dark .feature p { color: var(--muted-dark); }
.section--dark .feature__icon { background: rgba(246,198,27,.12); color: var(--yellow); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.split.reverse .split__media { order: 2; }
.split__media { border-radius: var(--radius); overflow: hidden; background:
  radial-gradient(120% 90% at 50% 30%, #fff, #eceef2); border: 1px solid var(--line); padding: 24px; }
.split__media img { width: 100%; object-fit: contain; }
.split__list { margin-top: 22px; display: grid; gap: 14px; }
.split__list li { display: flex; gap: .8rem; align-items: flex-start; font-size: 1rem; color: var(--ink); }
.split__list svg { width: 22px; height: 22px; color: var(--red); flex-shrink: 0; margin-top: 1px; }

/* =========================================================================
   WHY-US CARDS
   ========================================================================= */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2vw, 28px); }
.why-card { padding: 32px 30px; border-radius: var(--radius); background: var(--ink-soft); border: 1px solid var(--line-dark); position: relative; overflow: hidden; }
.why-card__num { font-family: var(--font-display); font-size: 3.4rem; line-height: 1; color: transparent;
  -webkit-text-stroke: 1.5px var(--ink-600); opacity: .9; }
.why-card h3 { color: #fff; margin: 14px 0 10px; font-size: 1.3rem; }
.why-card p { color: var(--muted-dark); font-size: .96rem; }
.why-card::after { content: ""; position: absolute; left: 0; top: 0; width: 4px; height: 100%; background: linear-gradient(var(--red), var(--yellow)); }

/* =========================================================================
   CTA BAND
   ========================================================================= */
.cta-band { position: relative; overflow: hidden; background: linear-gradient(120deg, #1a1a1f 0%, #0f0f12 60%);
  border-radius: clamp(18px, 3vw, 28px); padding: clamp(40px, 6vw, 72px); color: #fff; }
.cta-band::before { content: ""; position: absolute; inset: 0;
  background: radial-gradient(90% 130% at 100% 0%, rgba(216,38,44,.30), transparent 55%),
             radial-gradient(70% 120% at 0% 100%, rgba(246,198,27,.14), transparent 50%); pointer-events: none; }
.cta-band__inner { position: relative; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 28px; }
.cta-band h2 { font-size: clamp(1.8rem, 3.4vw, 2.8rem); text-transform: uppercase; color: #fff; max-width: 16ch; }
.cta-band p { color: var(--muted-dark); margin-top: 10px; max-width: 46ch; }
.cta-band .actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* =========================================================================
   FOOTER
   ========================================================================= */
.site-footer { background: #0e0e11; color: var(--text-dark); padding-top: clamp(48px, 6vw, 80px); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: clamp(28px, 4vw, 56px); padding-bottom: 48px; }
.footer-brand .brand { background: #fff; padding: 10px 14px; border-radius: 16px; box-shadow: 0 6px 20px rgba(0,0,0,.25); }
.footer-brand .brand__mark { height: 70px; }
.footer-brand p { color: var(--muted-dark); margin-top: 18px; max-width: 36ch; font-size: .94rem; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a { width: 42px; height: 42px; border-radius: 10px; display: grid; place-items: center;
  background: rgba(255,255,255,.06); color: #fff; transition: background .2s, color .2s, transform .2s; }
.footer-social a:hover { background: var(--red); transform: translateY(-2px); }
.footer-social svg { width: 19px; height: 19px; }
.footer-col h4 { font-family: var(--font-body); font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-dark); margin-bottom: 16px; }
.footer-col a { display: block; padding: 7px 0; color: #d7d9df; font-size: .95rem; }
.footer-col a:hover { color: var(--yellow); }
.footer-contact a.big-phone { font-family: var(--font-display); font-size: 1.5rem; color: #fff; }
.footer-contact a.big-phone:hover { color: var(--yellow); }
.footer-contact p { color: var(--muted-dark); font-size: .94rem; margin-top: 10px; }
.footer-bottom { border-top: 1px solid var(--line-dark); padding: 22px 0 30px; display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between; align-items: center; }
.footer-bottom p, .footer-bottom a { color: var(--muted-dark); font-size: .85rem; }
.footer-bottom a:hover { color: #fff; }
.footer-disclaimer { color: #6a6e77; font-size: .78rem; padding-bottom: 30px; max-width: 90ch; line-height: 1.6; }

/* =========================================================================
   PAGE HERO (interior pages)
   ========================================================================= */
.page-hero { padding-top: calc(var(--header-h) + clamp(34px, 5vw, 60px)); padding-bottom: clamp(28px, 4vw, 48px);
  background: radial-gradient(120% 120% at 80% 0%, #fff, #f1f2f5 70%, #e9eaef); border-bottom: 1px solid var(--line); }
.breadcrumb { display: flex; gap: .5rem; font-size: .85rem; color: var(--muted); margin-bottom: 16px; flex-wrap: wrap; }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb span { color: var(--ink); font-weight: 600; }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); text-transform: uppercase; }
.page-hero .lead { margin-top: 14px; max-width: 62ch; }

/* =========================================================================
   MODELS PAGE — filter bar
   ========================================================================= */
.filterbar { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between;
  padding: 16px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm);
  position: sticky; top: calc(var(--header-h) + 12px); z-index: 40; margin-bottom: 30px; }
.filter-group { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.filter-group .fg-label { font-size: .76rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-right: 4px; }
.chip { padding: .55rem 1rem; border-radius: var(--radius-pill); border: 1.5px solid var(--line); background: #fff; font-weight: 600; font-size: .9rem; color: var(--ink); transition: .2s var(--ease); }
.chip:hover { border-color: var(--chrome-3); }
.chip.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.chip[data-filter="lifted"].active { background: var(--red); border-color: var(--red); }
.select { padding: .6rem .9rem; border-radius: var(--radius-sm); border: 1.5px solid var(--line); background: #fff; font-weight: 600; color: var(--ink); }
.results-count { font-size: .9rem; color: var(--muted); }
.results-count b { color: var(--ink); }
.no-results { text-align: center; padding: 60px 20px; color: var(--muted); }

/* =========================================================================
   PRE-OWNED INVENTORY
   ========================================================================= */
.inv-status { position: absolute; top: 12px; right: 12px; z-index: 2; font-size: .7rem; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase; padding: .35em .7em; border-radius: var(--radius-pill);
  color: #fff; box-shadow: var(--shadow-sm); }
.inv-status--av { background: #1f9d57; }
.inv-status--pe { background: var(--yellow-deep); color: #3a2c00; }
.inv-status--so { background: #6a6f76; }
.inv-meta { display: flex; flex-wrap: wrap; gap: 6px 8px; margin-top: 2px; }
.inv-meta li { font-size: .76rem; color: var(--muted); background: var(--paper-2); border: 1px solid var(--line);
  border-radius: var(--radius-pill); padding: .25em .7em; }
.inv-meta li b { color: var(--ink); font-weight: 700; }
.inv-card--sold .model-card__media img { filter: grayscale(.7); opacity: .65; }
.inv-card--sold .model-card__name { color: var(--muted); }

.trade-band { position: relative; overflow: hidden; border-radius: var(--radius); color: #fff;
  background: linear-gradient(120deg, #1a1a1f 0%, #0f0f12 60%);
  padding: clamp(26px, 4vw, 42px); display: flex; flex-wrap: wrap; gap: 22px; align-items: center; justify-content: space-between; }
.trade-band::before { content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(80% 130% at 100% 0%, rgba(216,38,44,.30), transparent 55%),
             radial-gradient(70% 120% at 0% 100%, rgba(246,198,27,.14), transparent 50%); }
.trade-band__text { position: relative; max-width: 58ch; }
.trade-band__text h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); text-transform: uppercase; color: #fff; margin: 8px 0; }
.trade-band__text p { color: var(--muted-dark); }
.trade-band__actions { position: relative; display: flex; flex-wrap: wrap; gap: 12px; }

.coming-soon { text-align: center; max-width: 640px; margin: clamp(24px, 5vw, 56px) auto 0; padding: clamp(34px, 5vw, 60px) clamp(24px, 4vw, 44px);
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.coming-soon__icon { width: 66px; height: 66px; margin: 0 auto 20px; border-radius: 18px; display: grid; place-items: center; background: var(--red-050); color: var(--red); }
.coming-soon__icon svg { width: 32px; height: 32px; }
.coming-soon h2 { font-size: clamp(1.6rem, 3.2vw, 2.3rem); text-transform: uppercase; color: var(--ink); margin-bottom: 12px; }
.coming-soon p { color: var(--muted); max-width: 48ch; margin: 0 auto 26px; }
.coming-soon .actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* =========================================================================
   MODEL DETAIL
   ========================================================================= */
.detail-hero { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(28px, 4vw, 60px); align-items: center;
  padding-top: calc(var(--header-h) + clamp(24px, 4vw, 44px)); padding-bottom: clamp(34px, 5vw, 60px);
  background: radial-gradient(120% 110% at 82% 10%, #fff, #f1f2f5 70%, #e8e9ee); border-bottom: 1px solid var(--line); }
.detail-stage { position: relative; }
.viewer { position: relative; max-width: min(600px, 100%); margin-inline: auto; }
.viewer__main { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: contain; padding: 16px; cursor: zoom-in;
  background: radial-gradient(120% 90% at 50% 28%, #fff, #eceef2); border: 1px solid var(--line); border-radius: var(--radius); }
.viewer__nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; width: 44px; height: 44px;
  border-radius: 50%; background: rgba(255,255,255,.94); border: 1px solid var(--line); box-shadow: var(--shadow);
  color: var(--ink); font-size: 1.7rem; line-height: 1; display: grid; place-items: center;
  transition: background .2s, color .2s, border-color .2s; }
.viewer__nav:hover { background: var(--red); color: #fff; border-color: var(--red); }
.viewer__nav--prev { left: 6px; } .viewer__nav--next { right: 6px; }
.viewer__caption { text-align: center; font-size: .88rem; font-weight: 600; color: var(--muted); margin-top: 12px; min-height: 1.1em; }
.viewer__thumbs { display: flex; gap: 10px; margin: 14px auto 0; max-width: 600px; overflow-x: auto; padding: 4px 2px 8px;
  scroll-snap-type: x proximity; scrollbar-width: thin; scrollbar-color: var(--chrome-2) transparent; }
.viewer__thumbs::-webkit-scrollbar { height: 6px; }
.viewer__thumbs::-webkit-scrollbar-thumb { background: var(--chrome-2); border-radius: 3px; }
.thumb { flex: 0 0 auto; width: 78px; height: 60px; border-radius: 10px; overflow: hidden; padding: 4px; cursor: pointer;
  background: #fff; border: 2px solid var(--line); scroll-snap-align: start; transition: border-color .2s, transform .2s; }
.thumb img { width: 100%; height: 100%; object-fit: contain; }
.thumb:hover { transform: translateY(-2px); border-color: var(--chrome-3); }
.thumb.active { border-color: var(--red); }
.detail-copy h1 { font-size: clamp(2.3rem, 5vw, 3.7rem); text-transform: uppercase; margin: 14px 0 0; }
.detail-copy .lead { margin-top: 16px; max-width: 52ch; }
.detail-pricerow { display: flex; align-items: baseline; gap: .6rem; margin-top: 22px; }
.detail-pricerow .from { font-size: .85rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }
.detail-pricerow .amt { font-family: var(--font-display); font-size: 2.4rem; color: var(--ink); }
.config-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.config-tab { padding: .65rem 1.1rem; border-radius: var(--radius-pill); border: 1.5px solid var(--line); background: #fff; font-weight: 600; font-size: .9rem; transition: .2s var(--ease); }
.config-tab small { display: block; font-weight: 600; color: var(--muted); font-size: .76rem; }
.config-tab.active { border-color: var(--red); background: var(--red-050); }
.config-tab.active small { color: var(--red-600); }
.detail-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.quick-specs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 28px; }
.quick-spec { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 16px; text-align: center; }
.quick-spec .qs-val { font-family: var(--font-display); font-size: 1.5rem; color: var(--ink); line-height: 1; }
.quick-spec .qs-lbl { font-size: .76rem; color: var(--muted); margin-top: 6px; text-transform: uppercase; letter-spacing: .06em; }

.specs-wrap { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(20px, 3vw, 40px); }
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table caption { text-align: left; font-family: var(--font-display); text-transform: uppercase; letter-spacing: .03em;
  font-size: 1.15rem; color: var(--ink); padding-bottom: 12px; }
.spec-table th, .spec-table td { text-align: left; padding: 13px 4px; border-bottom: 1px solid var(--line); font-size: .96rem; vertical-align: top; }
.spec-table th { font-weight: 600; color: var(--muted); width: 48%; }
.spec-table td { color: var(--ink); font-weight: 600; }

.features-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 28px; }
.features-list li { display: flex; gap: .7rem; align-items: flex-start; font-size: .98rem; }
.features-list svg { width: 20px; height: 20px; color: var(--red); flex-shrink: 0; margin-top: 2px; }

/* =========================================================================
   CONTACT
   ========================================================================= */
.contact-grid { display: grid; grid-template-columns: 1.2fr .9fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: clamp(24px, 3vw, 40px); }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 7px; color: var(--ink); }
.field label .req { color: var(--red); }
.input, .textarea, .field select {
  width: 100%; padding: .85rem 1rem; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: var(--paper-2); color: var(--ink); transition: border-color .2s, background .2s, box-shadow .2s;
}
.input:focus, .textarea:focus, .field select:focus { outline: none; border-color: var(--red); background: #fff; box-shadow: 0 0 0 4px var(--red-050); }
.textarea { min-height: 130px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field .err { color: var(--red-600); font-size: .82rem; margin-top: 6px; display: none; }
.field.invalid .err { display: block; }
.field.invalid .input, .field.invalid .textarea, .field.invalid select { border-color: var(--red); }
.consent { display: flex; gap: .6rem; align-items: flex-start; font-size: .85rem; color: var(--muted); }
.consent input { margin-top: 4px; accent-color: var(--red); }
.form-success { display: none; text-align: center; padding: 20px 10px; }
.form-success.show { display: block; }
.form-success .check { width: 64px; height: 64px; margin: 0 auto 16px; border-radius: 50%; background: var(--red-050); color: var(--red); display: grid; place-items: center; }
.form-success .check svg { width: 32px; height: 32px; }

.contact-aside { display: grid; gap: 16px; }
.info-card { background: var(--ink); color: #fff; border-radius: var(--radius); padding: 28px; }
.info-card h3 { color: #fff; font-size: 1.3rem; text-transform: uppercase; margin-bottom: 6px; }
.info-card .big-phone { font-family: var(--font-display); font-size: 2rem; color: var(--yellow); display: inline-block; margin: 6px 0 4px; }
.info-list { margin-top: 18px; display: grid; gap: 16px; }
.info-list li { display: flex; gap: .9rem; align-items: flex-start; }
.info-list .ic { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.07); color: var(--yellow); display: grid; place-items: center; flex-shrink: 0; }
.info-list .ic svg { width: 18px; height: 18px; }
.info-list .lbl { font-size: .76rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted-dark); }
.info-list .val { color: #fff; font-weight: 600; }
.info-list a.val:hover { color: var(--yellow); }
.hours-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 28px; }
.hours-card h3 { color: var(--ink); font-size: 1.1rem; text-transform: uppercase; margin-bottom: 12px; }
.hours-card .row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px dashed var(--line); font-size: .94rem; }
.hours-card .row:last-child { border-bottom: none; }
.hours-card .row .day { color: var(--muted); } .hours-card .row .time { color: var(--ink); font-weight: 600; }
.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.map-embed iframe { width: 100%; height: 320px; border: 0; display: block; filter: grayscale(.15) contrast(1.02); }

/* =========================================================================
   FAQ
   ========================================================================= */
.faq { display: grid; gap: 12px; max-width: 860px; margin-inline: auto; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff; overflow: hidden; }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1rem; text-align: left;
  padding: 18px 22px; font-weight: 600; font-size: 1.05rem; color: var(--ink); }
.faq-q .pm { width: 26px; height: 26px; flex-shrink: 0; border-radius: 50%; background: var(--paper-2); display: grid; place-items: center; transition: .25s var(--ease); }
.faq-q .pm svg { width: 14px; height: 14px; color: var(--red); }
.faq-item.open .faq-q .pm { background: var(--red); transform: rotate(180deg); }
.faq-item.open .faq-q .pm svg { color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease); }
.faq-a__inner { padding: 0 22px 20px; color: var(--muted); }

/* Color picker (detail page — swaps the cart photo) */
.color-picker { margin-top: 22px; text-align: center; }
.color-picker__label { font-size: .9rem; font-weight: 600; color: var(--muted); margin-bottom: 12px; }
.color-picker__label strong { color: var(--ink); }
.color-picker__row { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.cswatch { width: 34px; height: 34px; border-radius: 50%; background: var(--c, #ccc); cursor: pointer; padding: 0; border: 0;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.18), inset 0 -5px 8px rgba(0,0,0,.16), 0 2px 6px rgba(0,0,0,.16);
  outline: 2px solid transparent; outline-offset: 3px; transition: transform .18s var(--ease), outline-color .18s; }
.cswatch:hover { transform: scale(1.14); }
.cswatch.active { outline-color: var(--red); }
.cswatch--info { cursor: default; }
.cswatch--info:hover { transform: none; }

/* =========================================================================
   LIGHTBOX
   ========================================================================= */
.lightbox { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: 5vw;
  background: rgba(12,12,15,.86); backdrop-filter: blur(6px); opacity: 0; visibility: hidden; transition: opacity .25s var(--ease); }
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: min(960px, 92vw); max-height: 86vh; width: auto; border-radius: var(--radius);
  background: #fff; padding: 18px; transform: scale(.96); transition: transform .25s var(--ease); }
.lightbox.open img { transform: scale(1); }
.lightbox__close { position: absolute; top: 22px; right: 28px; width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,.1); color: #fff; font-size: 2rem; line-height: 1; display: grid; place-items: center; transition: background .2s; }
.lightbox__close:hover { background: var(--red); }

/* =========================================================================
   REVEAL ANIMATION
   ========================================================================= */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 1080px) {
  .model-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .valuebar__grid { grid-template-columns: repeat(2, 1fr); }
  .valuebar__item:nth-child(2) { border-right: none; }
  .valuebar__item:nth-child(1), .valuebar__item:nth-child(2) { border-bottom: 1px solid var(--line-dark); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 960px) {
  .nav, .header-cta .phone-btn span { display: none; }
  .hamburger { display: inline-flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-stage { order: -1; max-width: 520px; margin-inline: auto; }
  .hero-copy { max-width: none; }
  .detail-hero { grid-template-columns: 1fr; }
  .detail-stage { order: -1; max-width: 520px; margin-inline: auto; }
  .split, .split.reverse { grid-template-columns: 1fr; }
  .split.reverse .split__media { order: -1; }
  .feature-grid, .why-grid { grid-template-columns: 1fr 1fr; }
  .specs-wrap { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .quick-specs { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  :root { --gutter: 20px; }
  .brand__mark { height: 46px; }
  .header-cta .btn--primary { display: none; }
  .model-grid, .model-grid.cols-4, .model-grid.cols-3 { grid-template-columns: 1fr; }
  .feature-grid, .why-grid { grid-template-columns: 1fr; }
  .valuebar__grid { grid-template-columns: 1fr; }
  .valuebar__item { border-right: none !important; border-bottom: 1px solid var(--line-dark); }
  .valuebar__item:last-child { border-bottom: none; }
  .field-row { grid-template-columns: 1fr; }
  .dropdown { min-width: 0; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; }
  .hero-stage .price-tag { top: 2%; right: 0; padding: 9px 12px; }
  .filterbar { position: static; }
  .footer-grid { grid-template-columns: 1fr; }
}
