/* China Wheels JA — LOCAL REVIEW v2
   Night Showroom: MAXUS #E31837 + #0a0a0a + white
   Outfit / DM Sans — NOT Daylight teal */

:root {
  --red: #E31837;
  --red-hover: #c71530;
  --red-tint: rgba(227, 24, 55, 0.12);
  --red-border: rgba(227, 24, 55, 0.35);
  --bg: #0a0a0a;
  --bg-elev: #111111;
  --bg-card: #161616;
  --ink: #ffffff;
  --muted: rgba(255, 255, 255, 0.55);
  --faint: rgba(255, 255, 255, 0.12);
  --line: rgba(255, 255, 255, 0.08);
  --font-head: "Outfit", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 68px;
  --dock-h: 64px;
  --banner-h: 36px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  padding-bottom: calc(var(--dock-h) + 12px);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
h1, h2, h3 { font-family: var(--font-head); margin: 0; line-height: 1.05; }

.skip {
  position: absolute; left: -9999px; top: 0;
}
.skip:focus {
  left: 1rem; top: 1rem; z-index: 9999;
  background: var(--red); color: #fff; padding: 0.6rem 1rem;
}

/* LOCAL REVIEW banner */
.review-banner {
  position: sticky; top: 0; z-index: 200;
  height: var(--banner-h);
  display: flex; align-items: center; justify-content: center;
  background: var(--red); color: #fff;
  font-family: var(--font-head);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  text-align: center; padding: 0 0.75rem;
}

/* Nav */
.nav {
  position: sticky; top: var(--banner-h); z-index: 150;
  height: var(--nav-h);
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  width: min(1280px, 94vw);
  margin: 0 auto;
  height: 100%;
  display: flex; align-items: center; gap: 1.25rem;
}
.nav__brand {
  display: flex; align-items: center; gap: 0.75rem;
  flex-shrink: 0;
}
.nav__brand img { height: 28px; width: auto; }
.nav__brand .sep {
  width: 1px; height: 22px; background: var(--faint);
}
.nav__links {
  display: flex; gap: 1.1rem; margin-left: auto;
  font-family: var(--font-head);
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.nav__links a { color: var(--muted); transition: color 0.2s; }
.nav__links a:hover { color: #fff; }
.nav__wa {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--red); color: #fff;
  font-family: var(--font-head); font-weight: 700;
  font-size: 0.8rem; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 0.65rem 1.1rem; border-radius: 2px;
  transition: background 0.2s;
}
.nav__wa:hover { background: var(--red-hover); }
.nav__burger {
  display: none; flex-direction: column; gap: 5px; padding: 0.4rem;
}
.nav__burger span {
  display: block; width: 22px; height: 2px; background: #fff;
}

@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; margin-left: auto; }
  .nav__wa { display: none; }
  .nav.is-open .nav__links {
    display: flex; flex-direction: column;
    position: absolute; left: 0; right: 0; top: 100%;
    background: #111; padding: 1rem 1.25rem 1.25rem;
    border-bottom: 1px solid var(--line); gap: 0.85rem;
  }
  .nav.is-open .nav__links .nav__wa-m {
    display: inline-flex; width: fit-content; margin-top: 0.35rem;
  }
}
.nav__wa-m { display: none; }

.wrap { width: min(1280px, 94vw); margin-inline: auto; }

/* Display type — bold slanted automotive */
.display {
  font-family: var(--font-head);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  line-height: 0.96;
  font-size: clamp(2.4rem, 7vw, 5.6rem);
  font-style: italic;
}
.display em {
  font-style: italic;
  color: var(--red);
}
.display--md {
  font-size: clamp(1.85rem, 4.5vw, 3.4rem);
  font-style: italic;
}
.eyebrow {
  font-family: var(--font-head);
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--muted);
  display: inline-flex; align-items: center; gap: 0.7em;
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--red);
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.45rem;
  font-family: var(--font-head); font-weight: 700;
  font-size: 0.85rem; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 0.9rem 1.35rem; border-radius: 2px;
  border: 1px solid transparent;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}
.btn:active { transform: scale(0.98); }
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-hover); }
.btn-ghost {
  background: rgba(255,255,255,0.04);
  border-color: var(--faint); color: #fff;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.35); }
.btn-lg { padding: 1.05rem 1.6rem; font-size: 0.92rem; }
.btn-block { width: 100%; }

/* HERO — film stage */
.hero {
  position: relative;
  min-height: min(88vh, 820px);
  display: flex; align-items: flex-end;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero__media {
  position: absolute; inset: 0;
  background: #000 center/cover no-repeat;
}
.hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.35) 0%, rgba(10,10,10,0.55) 45%, rgba(10,10,10,0.96) 100%),
    linear-gradient(90deg, rgba(10,10,10,0.75) 0%, transparent 55%);
}
.hero__content {
  position: relative; z-index: 1;
  width: min(1280px, 94vw);
  margin: 0 auto;
  padding: 5rem 0 3.5rem;
}
.hero__sub {
  max-width: 48ch;
  color: var(--muted);
  font-size: 1.08rem;
  margin: 1.15rem 0 1.75rem;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.hero__jump {
  margin-top: 2.25rem;
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.65rem 1rem;
  font-family: var(--font-head);
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted);
}
.hero__jump a { color: rgba(255,255,255,0.7); border-bottom: 1px solid transparent; }
.hero__jump a:hover { color: #fff; border-color: var(--red); }

/* Fact strip */
.facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--bg-elev);
}
.facts > div {
  padding: 1.15rem 1.35rem;
  border-right: 1px solid var(--line);
}
.facts > div:last-child { border-right: 0; }
.facts b {
  display: block;
  font-family: var(--font-head);
  font-size: 0.95rem; font-weight: 700;
  letter-spacing: 0.02em;
}
.facts span { color: var(--muted); font-size: 0.85rem; }
@media (max-width: 800px) {
  .facts { grid-template-columns: 1fr 1fr; }
  .facts > div:nth-child(2n) { border-right: 0; }
  .facts > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

/* Section shells */
.section {
  padding: clamp(3.5rem, 8vh, 5.5rem) 0;
  border-bottom: 1px solid var(--line);
}
.section__head { margin-bottom: 2rem; }
.section__lede {
  color: var(--muted);
  max-width: 58ch;
  margin: 0.85rem 0 0;
  font-size: 1.02rem;
}
.disclaimer {
  margin: 1.25rem 0 1.75rem;
  padding: 0.85rem 1.1rem;
  background: var(--red-tint);
  border: 1px solid var(--red-border);
  border-left: 3px solid var(--red);
  color: rgba(255,255,255,0.82);
  font-size: 0.9rem;
}

/* Filters */
.filters {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin-bottom: 1.75rem;
}
.filter {
  font-family: var(--font-head);
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.55rem 0.95rem;
  border: 1px solid var(--faint);
  border-radius: 999px;
  color: var(--muted);
  transition: all 0.2s;
}
.filter:hover { color: #fff; border-color: rgba(255,255,255,0.3); }
.filter[aria-pressed="true"] {
  background: var(--red); border-color: var(--red); color: #fff;
}

/* Model cards grid */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
@media (max-width: 980px) {
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .fleet-grid { grid-template-columns: 1fr; }
}

.mcard {
  display: flex; flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s var(--ease);
}
.mcard:hover {
  border-color: var(--red-border);
  transform: translateY(-3px);
}
.mcard__img {
  aspect-ratio: 16 / 10;
  background: #1a1a1a center/cover no-repeat;
  position: relative;
}
.mcard__img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,10,10,0.75));
}
.mcard__body {
  display: flex; flex-direction: column; gap: 0.55rem;
  padding: 1.15rem 1.2rem 1.25rem;
  flex: 1;
}
.mcard__brand {
  font-family: var(--font-head);
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted);
}
.mcard__name {
  font-family: var(--font-head);
  font-weight: 800; font-style: italic;
  font-size: 1.45rem; letter-spacing: -0.02em;
  text-transform: uppercase;
}
.mcard__price {
  font-family: var(--font-head);
  font-weight: 700; font-size: 1.2rem;
  color: #fff;
}
.mcard__mo {
  font-size: 0.92rem;
  color: #ff9daf;
}
.mcard__mo small {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
  margin-top: 0.15rem;
  line-height: 1.35;
}
.mcard__actions {
  margin-top: auto;
  padding-top: 0.85rem;
  display: flex; flex-direction: column; gap: 0.45rem;
}
.mcard--ask .mcard__price { color: var(--muted); font-size: 1rem; font-weight: 600; }

/* Ask strip */
.ask-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
}
@media (max-width: 900px) {
  .ask-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .ask-grid { grid-template-columns: 1fr; }
}
.ask-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0;
  overflow: hidden;
  display: flex; flex-direction: column; gap: 0.5rem;
  min-height: 180px;
}
.ask-card__img {
  aspect-ratio: 16 / 10;
  background: #1a1a1a center/cover no-repeat;
}
.ask-card > .ask-card__tag,
.ask-card > h3,
.ask-card > p,
.ask-card > .btn {
  margin-left: 1.15rem;
  margin-right: 1.15rem;
}
.ask-card > .ask-card__tag { margin-top: 1rem; }
.ask-card > .btn { margin-bottom: 1.15rem; margin-top: 0.25rem; align-self: flex-start; }
.ask-card:hover { border-color: var(--red-border); }
.ask-card__tag {
  font-family: var(--font-head);
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--red);
}
.ask-card h3 {
  font-size: 1.25rem; font-style: italic; font-weight: 800;
  text-transform: uppercase;
}
.ask-card p { color: var(--muted); font-size: 0.9rem; margin: 0; flex: 1; }

/* Brands */
.brands {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 720px) { .brands { grid-template-columns: 1fr; } }
.bcard {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 1.5rem 1.35rem;
  transition: border-color 0.25s, transform 0.25s var(--ease);
}
.bcard:hover { border-color: var(--red-border); transform: translateY(-3px); }
.bcard__logo { height: 36px; margin-bottom: 1rem; display: flex; align-items: center; }
.bcard__logo img { height: 28px; width: auto; }
.bcard__logo .word {
  font-family: var(--font-head); font-weight: 800;
  font-size: 1.45rem; letter-spacing: 0.04em;
}
.bcard p { color: var(--muted); margin: 0 0 0.75rem; font-size: 0.95rem; }
.bcard__count {
  font-family: var(--font-head);
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--red);
}

/* Service split */
.service {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 800px) { .service { grid-template-columns: 1fr; } }
.service__img {
  aspect-ratio: 4/3;
  border-radius: 4px;
  background: #1a1a1a center/cover no-repeat;
  border: 1px solid var(--line);
}
.service ul {
  list-style: none; padding: 0; margin: 1.25rem 0 1.5rem;
}
.service li {
  padding: 0.55rem 0 0.55rem 1.35rem;
  position: relative;
  color: rgba(255,255,255,0.82);
  border-bottom: 1px solid var(--line);
}
.service li::before {
  content: "";
  position: absolute; left: 0; top: 1.05rem;
  width: 8px; height: 2px; background: var(--red);
}

/* Visit CTA */
.visit {
  background:
    linear-gradient(135deg, rgba(227,24,55,0.18), transparent 50%),
    var(--bg-elev);
  border: 1px solid var(--red-border);
  border-radius: 4px;
  padding: clamp(2rem, 5vw, 3rem);
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 800px) { .visit { grid-template-columns: 1fr; } }
.visit__meta {
  display: grid; gap: 0.85rem;
  font-size: 0.98rem;
}
.visit__meta strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.72rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 0.2rem;
}
.visit__ctas { display: flex; flex-direction: column; gap: 0.6rem; }

/* Footer */
.footer {
  padding: 2.5rem 0 1.5rem;
  color: var(--muted);
  font-size: 0.88rem;
}
.footer__row {
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: space-between; align-items: center;
  margin-bottom: 1.25rem;
}
.footer__logos { display: flex; align-items: center; gap: 0.85rem; }
.footer__logos img { height: 22px; width: auto; opacity: 0.85; }
.footer a:hover { color: #fff; }
.footer__note {
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

/* Sticky WA dock */
.wa-dock {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 180;
  height: var(--dock-h);
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--red-border);
  display: flex; align-items: center; justify-content: center;
  gap: 0.75rem;
  padding: 0 1rem;
}
.wa-dock .btn { flex: 1; max-width: 420px; }
.wa-dock .btn-ghost { max-width: 160px; flex: 0 0 auto; }
@media (max-width: 520px) {
  .wa-dock .btn-ghost { display: none; }
}

/* Reveals */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* Category chips on cards */
.chip-row { display: flex; flex-wrap: wrap; gap: 0.35rem; }
.chip {
  font-family: var(--font-head);
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.25rem 0.5rem;
  border: 1px solid var(--faint);
  border-radius: 2px;
  color: var(--muted);
}
