/* =========================================================================
   Chery Antigua — light, image-forward
   Matched to the official Chery regional template (cherysxm.com and
   cheryinternational.com):
     Light #f4f4f4 backgrounds with a subtle diagonal pattern
     Deep Chery navy #0B457F structure · champagne-bronze #A4896C CTAs
     Dark near-black performance bands
     Type: Poppins · uppercase headlines · italic model wordmarks
   ========================================================================= */

:root {
  /* light base */
  --paper:    #f4f4f4;   /* page base */
  --paper-2:  #ffffff;   /* elevated / cards */
  --paper-3:  #eceae7;   /* section fill */
  /* dark bands */
  --coal:     #131619;   /* near-black (performance / footer) */
  --coal-2:   #1b1f24;
  /* brand system */
  --navy:     #0b457f;   /* Chery deep blue — structure, links */
  --navy-2:   #0d5496;   /* hover */
  --bronze:   #a4896c;   /* champagne bronze — primary CTAs */
  --bronze-2: #8f7355;   /* hover */
  --bronze-3: #b89a7a;   /* light accent */
  --red:      #c50d27;   /* highlight red (sparing) */
  /* neutrals */
  --ink:      #131619;
  --ink-soft: #2c3540;
  --muted:    #55606b;
  --muted-2:  #8b959e;
  --line:     rgba(19,22,25,.10);
  --line-2:   rgba(19,22,25,.18);
  --glass:    rgba(19,22,25,.04);
  --maxw:     1280px;
  --shadow:   0 24px 60px rgba(19,22,25,.14);
  --sans: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --disp: 'Poppins', var(--sans);
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
/* the hidden attribute must always win — .btn et al set display and would
   otherwise override the UA's [hidden] rule (wizard buttons leaked through) */
[hidden] { display: none !important; }
/* honeypot field — offscreen (not display:none) so naive bots still fill it */
.hp { position: absolute !important; left: -9999px; top: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans); color: var(--ink);
  background:
    linear-gradient(180deg, #f7f7f7, #efedeb);
  line-height: 1.65; font-weight: 400; -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
/* subtle diagonal pattern — the cherysxm.com background texture */
body::before {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background-image: repeating-linear-gradient(135deg, rgba(19,22,25,.022) 0 1px, transparent 1px 9px);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; transition: color .2s; }
a:hover { color: var(--bronze-2); }
::placeholder { color: #9aa2ab; }
::selection { background: rgba(11,69,127,.18); }

h1,h2,h3,h4 { font-family: var(--disp); font-weight: 700; line-height: 1.08; letter-spacing: -.01em; color: var(--ink); }

/* uppercase display headlines — the official Chery treatment */
.hero h1, .mhero h1, .mband h2, .section-title, .cta-band h2, .perf-title {
  text-transform: uppercase; letter-spacing: .01em;
}

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(20px, 5vw, 48px); }

/* overline label */
.overline {
  font-family: var(--sans); font-weight: 600; letter-spacing: .26em; text-transform: uppercase;
  font-size: 12px; color: var(--bronze-2); display: inline-flex; align-items: center; gap: 12px;
}
.overline::before { content: ""; width: 26px; height: 1px; background: var(--bronze); opacity: .9; }
.overline.center { justify-content: center; }
.overline.light { color: var(--bronze-3); }
.overline.light::before { background: var(--bronze-3); }

.section { padding: clamp(70px, 10vw, 140px) 0; }
.section-title { font-size: clamp(30px, 4.6vw, 52px); margin: 18px 0 14px; color: var(--ink); }
.section-sub { color: var(--muted); font-size: clamp(16px, 1.6vw, 19px); max-width: 640px; font-weight: 300; }
.center { text-align: center; margin-inline: auto; }

/* ---- full-viewport sections + sticky in-page tabs ---- */
html { scroll-padding-top: 116px; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
.snap { }
.fill { min-height: 100svh; display: flex; flex-direction: column; justify-content: center; }
.page-tabs { position: sticky; top: 64px; z-index: 80; background: rgba(247,247,247,.9); backdrop-filter: blur(14px) saturate(1.2); border-bottom: 1px solid var(--line); }
.page-tabs .wrap { display: flex; gap: 6px; height: 54px; align-items: center; overflow-x: auto; scrollbar-width: none; }
.page-tabs .wrap::-webkit-scrollbar { display: none; }
.page-tabs a { font-family: var(--disp); font-weight: 600; font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); padding: 9px 18px; border-radius: 999px; white-space: nowrap; transition: color .2s, background .2s; }
.page-tabs a:hover { color: var(--ink); }
.page-tabs a.active { color: var(--navy); background: rgba(11,69,127,.08); }
@media (max-width: 940px) { .page-tabs { top: 64px; } .page-tabs .wrap { height: 50px; } }

/* scroll reveal */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .9s var(--ease), transform .9s var(--ease); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------------------------------------------------------------- buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--disp); font-weight: 500; font-size: 13.5px; letter-spacing: .18em;
  padding: 15px 34px; border-radius: 3px; border: 1px solid transparent; cursor: pointer;
  transition: transform .18s var(--ease), background .25s, color .25s, border-color .25s, box-shadow .25s;
  white-space: nowrap; text-transform: uppercase;
}
.btn:active { transform: translateY(1px); }
/* champagne bronze — THE Chery CTA */
.btn-primary { background: var(--bronze); color: #fff; }
.btn-primary:hover { background: var(--bronze-2); color: #fff; box-shadow: 0 14px 34px rgba(164,137,108,.4); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { border-color: var(--navy-2); color: #fff; background: var(--navy); }
/* ghost — for use over imagery (glassy white) */
.btn-ghost { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.45); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: rgba(255,255,255,.26); border-color: #fff; color: #fff; }
.btn-lg { padding: 17px 40px; font-size: 14px; }
.btn-link { font-family: var(--disp); font-weight: 600; font-size: 13.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--navy); display: inline-flex; align-items: center; gap: 8px; }
.btn-link .arw { transition: transform .2s var(--ease); }
.btn-link:hover { color: var(--bronze-2); }
.btn-link:hover .arw { transform: translateX(5px); }

/* ---------------------------------------------------------------- header */
/* solid white header — the cherysxm.com treatment (light bar above imagery) */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: 80px;
  display: flex; align-items: center;
  background: rgba(255,255,255,.96); backdrop-filter: blur(12px);
  transition: height .35s var(--ease), box-shadow .35s;
  border-bottom: 1px solid var(--line);
}
.site-header.scrolled {
  height: 66px; box-shadow: 0 8px 30px rgba(19,22,25,.08);
}
.nav { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand .mark { height: 36px; width: auto; flex: none; }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a.link { font-family: var(--disp); color: var(--ink); font-weight: 500; font-size: 13.5px; letter-spacing: .1em; text-transform: uppercase; opacity: .85; transition: opacity .2s, color .2s; }
.nav-links a.link:hover { opacity: 1; color: var(--navy); }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-actions .btn { padding: 12px 26px; font-size: 12px; }
.mobile-cta { display: none; }
.hamburger { display: none; background: none; border: 0; color: var(--ink); cursor: pointer; padding: 6px; }

/* heroes start below the white header bar */
.hero, .mhero { margin-top: 0; }

/* ---------------------------------------------------------- mega menu */
.nav-item { position: static; }
.has-mega > .link { display: inline-flex; align-items: center; gap: 6px; cursor: pointer; }
.has-mega .caret { opacity: .65; transition: transform .25s var(--ease); }
.has-mega:hover .caret, .has-mega:focus-within .caret { transform: rotate(180deg); opacity: 1; }
.mega {
  position: absolute; top: 100%; left: 0; right: 0; z-index: 99;
  background: rgba(255,255,255,.98); backdrop-filter: blur(18px) saturate(1.2);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 26px 0; box-shadow: 0 24px 50px rgba(19,22,25,.14);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
}
.mega::before { content: ""; position: absolute; left: 0; right: 0; bottom: 100%; height: 26px; }
.has-mega:hover .mega, .has-mega:focus-within .mega { opacity: 1; visibility: visible; transform: none; }
.mega-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(20px, 5vw, 48px);
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px;
}
.mega-item {
  display: flex; flex-direction: column; border: 1px solid var(--line);
  border-radius: 8px; overflow: hidden; background: #fff;
  transition: border-color .2s var(--ease), transform .2s var(--ease), box-shadow .2s;
}
.mega-item:hover { border-color: var(--bronze); transform: translateY(-3px); box-shadow: 0 14px 30px rgba(19,22,25,.1); }
.mega-thumb { aspect-ratio: 16 / 10; overflow: hidden; background: var(--paper-3); }
.mega-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s var(--ease); }
.mega-item:hover .mega-thumb img { transform: scale(1.06); }
.mega-tx { padding: 12px 14px 14px; }
.mega-name { display: block; font-family: var(--disp); font-weight: 700; font-size: 15px; text-transform: uppercase; letter-spacing: .01em; color: var(--ink); }
.mega-type { display: block; font-size: 11px; color: var(--bronze-2); text-transform: uppercase; letter-spacing: .1em; margin-top: 4px; }

/* ------------------------------------------------------------------ hero */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; background: var(--coal); }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { position: absolute; top: -24%; left: 0; width: 100%; height: 135%; object-fit: cover; object-position: center 42%; transform: translate3d(0,0,0); will-change: transform; animation: heroFade 1.4s var(--ease) forwards; }
@keyframes heroZoom { to { transform: scale(1); } }
@keyframes heroFade { from { opacity: 0; } to { opacity: 1; } }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(0deg, rgba(0,0,0,.22), rgba(0,0,0,.22)),
    linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.05) 26%, rgba(0,0,0,.18) 58%, rgba(0,0,0,.78) 96%),
    linear-gradient(75deg, rgba(0,0,0,.66) 0%, rgba(0,0,0,.26) 46%, transparent 72%);
}
.hero-inner { position: relative; z-index: 2; width: 100%; padding-bottom: clamp(56px, 9vw, 110px); padding-top: 120px; }
.hero h1 { font-size: clamp(44px, 6.6vw, 92px); font-weight: 800; font-style: italic; max-width: 15ch; color: #fff; letter-spacing: .01em; }
.hero h1 .accent { color: var(--bronze-3); }
.hero .overline { color: var(--bronze-3); }
.hero .overline::before { background: var(--bronze-3); }
.hero .lede { color: #fff; opacity: .92; font-size: clamp(17px, 1.9vw, 21px); font-weight: 300; margin: 24px 0 34px; max-width: 52ch; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-scroll { position: absolute; z-index: 2; bottom: 26px; right: clamp(20px, 5vw, 48px); color: rgba(255,255,255,.75); font-size: 11px; letter-spacing: .25em; text-transform: uppercase; writing-mode: vertical-rl; display: flex; align-items: center; gap: 12px; }
.hero-scroll::after { content: ""; width: 1px; height: 46px; background: linear-gradient(var(--bronze-3), transparent); animation: scrollLine 2s var(--ease) infinite; }
@keyframes scrollLine { 0%,100% { opacity: .3; } 50% { opacity: 1; } }

/* -------------------------------------------------------------- offer strip */
.offer-strip { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); position: relative; }
.offer-strip .wrap { padding-block: clamp(40px, 5vw, 64px); position: relative; z-index: 1; }

/* cinematic photo variant — full-bleed image + scrim, white text */
.offer-strip--photo { background: var(--coal); border-color: rgba(255,255,255,.1); overflow: hidden; }
.offer-strip--photo::before { content: ""; position: absolute; inset: 0; z-index: 0;
  background-image: var(--band-img); background-size: cover; background-position: center;
  transform: scale(1.04); }
.offer-strip--photo::after { content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(0deg, rgba(10,12,14,.7), rgba(10,12,14,.7)),
    radial-gradient(120% 80% at 50% 40%, rgba(10,12,14,.35), rgba(10,12,14,.86)); }
.offer-strip--photo .section-title { color: #fff; }
.offer-strip--photo .section-sub { color: rgba(255,255,255,.82); }
.offer-strip--photo .offer-cell .num { color: #fff; }
.offer-strip--photo .offer-cell .lbl { color: #fff; }
.offer-strip--photo .offer-cell .desc { color: rgba(255,255,255,.7); }
.offer-strip--photo .offer-cell + .offer-cell::before { background: rgba(255,255,255,.18); }
.offer-head { text-align: center; margin-bottom: 40px; }
.offer-row { display: grid; grid-template-columns: repeat(3, 1fr); }
.offer-cell { text-align: center; padding: 8px clamp(16px, 3vw, 40px); position: relative; }
.offer-cell + .offer-cell::before { content: ""; position: absolute; left: 0; top: 12%; height: 76%; width: 1px; background: var(--line-2); }
.offer-cell .num { font-family: var(--disp); font-size: clamp(34px, 4.4vw, 54px); font-weight: 700; color: var(--navy); line-height: 1; }
.offer-cell .lbl { font-family: var(--disp); font-weight: 600; margin-top: 12px; font-size: 15px; text-transform: uppercase; letter-spacing: .06em; color: var(--ink); }
.offer-cell .desc { color: var(--muted); font-size: 14px; margin-top: 6px; font-weight: 300; }

/* -------------------------------------------------------------- model bands */
.models-intro { text-align: center; padding: clamp(70px, 9vw, 120px) 0 clamp(30px, 4vw, 50px); }
.mband { position: relative; display: grid; grid-template-columns: 1.08fr .92fr; min-height: 92svh; background: transparent; }
.mband .media { position: relative; overflow: hidden; }
.mband .media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: scale(1.02); transition: transform 1.1s var(--ease); }
.mband:hover .media img { transform: scale(1.07); }
.mband .content { display: flex; flex-direction: column; justify-content: center; padding: clamp(44px, 6vw, 96px) clamp(28px, 6vw, 88px); position: relative; }
.mband.rev { grid-template-columns: .92fr 1.08fr; }
.mband.rev .media { order: 2; }
.mband .mtype { font-family: var(--sans); font-weight: 600; letter-spacing: .22em; text-transform: uppercase; font-size: 11.5px; color: var(--bronze-2); margin-bottom: 14px; }
.mband h2 { font-size: clamp(38px, 5vw, 64px); font-weight: 800; font-style: italic; color: var(--ink); }
.mband .tagline { font-family: var(--disp); font-weight: 400; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); font-size: clamp(13px, 1.4vw, 16px); margin-top: 12px; }
.mband .blurb { color: var(--muted); font-size: clamp(15px, 1.5vw, 17px); font-weight: 300; margin: 18px 0 26px; max-width: 46ch; }
.mband .mini-specs { display: flex; gap: clamp(20px, 3vw, 44px); margin-bottom: 34px; flex-wrap: wrap; }
.mband .mini-specs .ms .v { font-family: var(--disp); font-weight: 700; font-size: clamp(20px, 2.2vw, 26px); color: var(--navy); }
.mband .mini-specs .ms .v small { font-size: 13px; color: var(--muted-2); font-weight: 400; }
.mband .mini-specs .ms .k { color: var(--muted-2); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; margin-top: 3px; }
.mband .band-cta { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }

/* ---------------------------------------------------------------- why band */
.why { background: #fff; border-top: 1px solid var(--line); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 3vw, 48px); margin-top: 56px; }
.why-card { border-top: 2px solid var(--bronze); padding-top: 26px; }
.why-card .ic { color: var(--navy); margin-bottom: 20px; }
.why-card h3 { font-size: 19px; margin-bottom: 10px; text-transform: uppercase; letter-spacing: .02em; }
.why-card p { color: var(--muted); font-size: 15px; font-weight: 300; }

/* ---------------------------------------------------------------- cta band */
.cta-band { position: relative; overflow: hidden; background: var(--navy); border-radius: 8px; padding: clamp(40px, 5vw, 68px); display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; box-shadow: var(--shadow); }
.cta-band::before { content: ""; position: absolute; right: -80px; top: -80px; width: 380px; height: 380px; background: radial-gradient(circle, rgba(184,154,122,.4), transparent 70%); }
.cta-band .txt { position: relative; z-index: 1; }
.cta-band h2 { font-size: clamp(26px, 3.4vw, 40px); color: #fff; text-transform: uppercase; }
.cta-band p { color: rgba(255,255,255,.82); margin-top: 10px; font-size: 17px; font-weight: 300; }
.cta-band .btn { position: relative; z-index: 1; }

/* cinematic photo variant — full-bleed image + gradient scrim keep text sharp */
.cta-band--photo { display: flex; align-items: center; min-height: clamp(320px, 36vw, 440px);
  background-image: var(--band-img); background-size: cover; background-position: center; }
.cta-band--photo::before { content: ""; position: absolute; inset: 0; z-index: 0; width: auto; height: auto; right: 0; top: 0;
  background: linear-gradient(90deg, rgba(8,11,14,.92) 0%, rgba(8,11,14,.74) 40%, rgba(8,11,14,.28) 72%, rgba(8,11,14,.12) 100%); }
.cta-band--photo::after { content: ""; position: absolute; right: -120px; top: -120px; z-index: 0; width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(11,69,127,.5), transparent 70%); }
.cta-band--photo > * { position: relative; z-index: 1; }

/* ---------------------------------------------------------------- footer */
.site-footer { background: var(--coal); border-top: 1px solid rgba(255,255,255,.08); padding: clamp(50px, 7vw, 84px) 0 32px; }
.site-footer, .site-footer h4 { color: #e8eaec; }
.site-footer .brand .mark { height: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 44px; }
.footer-grid h4 { font-family: var(--sans); font-size: 12px; text-transform: uppercase; letter-spacing: .18em; color: rgba(255,255,255,.45); margin-bottom: 20px; font-weight: 600; }
.footer-grid a { display: block; color: #e8eaec; font-weight: 400; margin-bottom: 12px; font-size: 15px; opacity: .85; }
.footer-grid a:hover { color: var(--bronze-3); opacity: 1; }
.footer-about p { color: rgba(255,255,255,.65); font-size: 15px; margin-top: 18px; max-width: 340px; font-weight: 300; }
.foot-addr { line-height: 1.7; }
.foot-contact { margin-top: 18px; display: flex; flex-direction: column; gap: 9px; }
.foot-contact a { color: #e8eaec; font-weight: 500; font-size: 15px; opacity: .88; }
.foot-contact a:hover { color: var(--bronze-3); opacity: 1; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 48px; padding-top: 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: rgba(255,255,255,.4); font-size: 13px; }
.socials { display: flex; gap: 16px; }
.socials a { color: rgba(255,255,255,.6); }
.socials a:hover { color: var(--bronze-3); }
/* light-context socials (contact page aside) */
.contact-info .socials a { color: var(--muted); }
.contact-info .socials a:hover { color: var(--navy); }

/* ------------------------------------------------------------- floating */
.floating { position: fixed; right: 22px; bottom: 22px; z-index: 90; display: flex; flex-direction: column; gap: 12px; }
.fab { width: 64px; height: 64px; border-radius: 50%; display: grid; place-items: center; cursor: pointer; border: 0; color: #fff; transition: transform .2s var(--ease), box-shadow .2s var(--ease); }
.fab:hover { transform: scale(1.06); }
/* WhatsApp — matched to the Chery regional sites (green-500 + green-tinted glow) */
.fab-wa { background: #0e9f6e; box-shadow: 0 14px 34px rgba(14,159,110,.45), 0 4px 12px rgba(19,22,25,.18); }
.fab-wa:hover { box-shadow: 0 18px 40px rgba(14,159,110,.55), 0 4px 12px rgba(19,22,25,.2); }
.fab-wa svg { width: 32px; height: 32px; }
@media (max-width: 560px) { .floating { right: 16px; bottom: 16px; } .fab { width: 56px; height: 56px; } .fab-wa svg { width: 28px; height: 28px; } }

/* -------------------------------------------------------- model detail */
.mhero { position: relative; min-height: 88svh; display: flex; align-items: flex-end; overflow: hidden; background: var(--coal); }
.mhero-bg { position: absolute; inset: 0; }
.mhero-bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); animation: heroZoom 14s var(--ease) forwards; }
.mhero-bg::after { content: ""; position: absolute; inset: 0; background:
  linear-gradient(0deg, rgba(0,0,0,.18), rgba(0,0,0,.18)),
  linear-gradient(180deg, rgba(0,0,0,.4) 0, rgba(0,0,0,.06) 30%, rgba(0,0,0,.22) 62%, rgba(0,0,0,.82) 100%),
  linear-gradient(90deg, rgba(0,0,0,.5) 0%, rgba(0,0,0,.2) 44%, transparent 70%); }
.mhero-inner { position: relative; z-index: 2; width: 100%; padding-bottom: clamp(44px, 6vw, 84px); padding-top: 120px; }
/* the big italic model wordmark — cherysxm.com hero treatment */
.mhero h1 { font-size: clamp(52px, 9vw, 120px); font-weight: 800; font-style: italic; color: #fff; letter-spacing: .01em; line-height: .95; }
.mhero .mtag { font-family: var(--disp); font-weight: 600; font-style: italic; letter-spacing: .06em; text-transform: uppercase; font-size: clamp(16px, 2.2vw, 26px); color: rgba(255,255,255,.92); margin: 10px 0 30px; }
.mhero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.back-link { position: absolute; top: 96px; left: 0; right: 0; z-index: 3; }
.back-link a { color: rgba(255,255,255,.85); font-family: var(--disp); font-weight: 400; font-size: 13px; text-transform: uppercase; letter-spacing: .08em; }
.back-link a:hover { color: var(--bronze-3); }

.spec-band { background: #fff; border-bottom: 1px solid var(--line); }
.spec-row { display: grid; grid-template-columns: repeat(4, 1fr); }
.spec { padding: clamp(30px, 4vw, 52px) clamp(16px, 2vw, 32px); position: relative; text-align: center; }
.spec + .spec::before { content: ""; position: absolute; left: 0; top: 24%; height: 52%; width: 1px; background: var(--line-2); }
.spec .k { color: var(--muted-2); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .14em; }
.spec .v { font-family: var(--disp); font-size: clamp(22px, 2.8vw, 34px); font-weight: 700; margin-top: 12px; color: var(--navy); }
.spec .v small { font-size: 13px; color: var(--muted); font-weight: 300; display: block; margin-top: 2px; }

.feature-split { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(30px, 5vw, 70px); }
.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 2px 40px; }
.feature-list li { list-style: none; display: flex; gap: 14px; align-items: flex-start; font-size: 15.5px; font-weight: 400; padding: 15px 0; border-bottom: 1px solid var(--line); color: var(--ink-soft); }
.feature-list .tick { flex: none; width: 22px; height: 22px; color: var(--bronze); margin-top: 3px; }
.disclaimer { color: var(--muted-2); font-size: 13px; margin-top: 34px; font-style: italic; max-width: 70ch; font-weight: 300; }

/* -------------------------------------------------- performance band (dark) */
.perf-band { background: var(--coal); color: #fff; padding: clamp(70px, 9vw, 120px) 0; position: relative; overflow: hidden; }
.perf-band::after { content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(700px 420px at 85% 20%, rgba(184,154,122,.14), transparent 65%); }
.perf-title { font-size: clamp(28px, 4vw, 48px); color: #fff; font-style: italic; font-weight: 800; margin-top: 16px; }
.perf-row { display: flex; gap: clamp(40px, 8vw, 120px); margin-top: clamp(36px, 5vw, 60px); flex-wrap: wrap; }
.perf-cell .pnum { font-family: var(--disp); font-weight: 800; font-style: italic; font-size: clamp(56px, 8vw, 110px); line-height: 1; color: #fff; }
.perf-cell .pnum small { font-size: clamp(18px, 2.4vw, 30px); font-weight: 600; color: var(--bronze-3); margin-left: 8px; font-style: normal; }
.perf-cell .plbl { margin-top: 10px; color: rgba(255,255,255,.6); font-size: 12.5px; letter-spacing: .22em; text-transform: uppercase; font-weight: 600; }

/* ------------------------------------------------------------ gallery strip */
.gallery-strip { padding: 4px 0; }
.g-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }
.g-item { overflow: hidden; aspect-ratio: 4 / 3; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.g-item:hover img { transform: scale(1.05); }

/* ------------------------------------------------------- colour picker */
.colours-band { background: #fff; border-top: 1px solid var(--line); }
.colour-stage { position: relative; max-width: 920px; margin: 36px auto 10px; }
.colour-stage img { width: 100%; height: auto; border-radius: 12px; transition: opacity .25s var(--ease); user-select: none; -webkit-user-drag: none; }
.colour-stage img.swapping { opacity: 0; }
/* 360° spin mode */
.colour-stage.spinning { cursor: grab; touch-action: pan-y; }
.colour-stage.spinning.grabbing { cursor: grabbing; }
.colour-stage.spinning img { transition: none; }
.spin-hint { position: absolute; left: 50%; bottom: 14px; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 8px; padding: 9px 18px; border-radius: 999px;
  background: rgba(19,22,25,.72); color: #fff; font-family: var(--disp); font-weight: 500;
  font-size: 12px; letter-spacing: .12em; text-transform: uppercase; pointer-events: none;
  backdrop-filter: blur(6px); animation: hintPulse 2.4s var(--ease) infinite; }
.spin-hint[hidden] { display: none; }
@keyframes hintPulse { 0%,100% { opacity: .85; } 50% { opacity: .5; } }
.colour-name { text-align: center; font-family: var(--disp); font-weight: 600; letter-spacing: .18em; text-transform: uppercase; font-size: 13px; color: var(--bronze-2); margin-top: 6px; }
.col-chips { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 26px; }
.col-chip { background: var(--paper); border: 1.5px solid var(--line-2); border-radius: 10px; padding: 8px 10px 9px; cursor: pointer; width: 128px; transition: border-color .2s, box-shadow .2s, transform .2s; font-family: var(--sans); }
.col-chip img { width: 100%; height: auto; border-radius: 6px; }
.col-chip span { display: block; font-size: 10.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin-top: 7px; text-align: center; line-height: 1.35; }
.col-chip:hover { border-color: var(--muted-2); transform: translateY(-2px); }
.col-chip.active { border-color: var(--bronze); box-shadow: 0 0 0 1px var(--bronze); }
.col-chip.active span { color: var(--bronze-2); }

/* ------------------------------------------------------------ cockpit */
.cockpit { background: #fff; border-top: 1px solid var(--line); }
.ck-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px, 2vw, 24px); margin: 44px 0; }
.ck-tile { background: var(--paper); border: 1px solid var(--line); border-radius: 8px; padding: 22px 20px; text-align: center; }
.ck-tile .ck-v { font-family: var(--disp); font-weight: 700; font-size: clamp(20px, 2.4vw, 28px); color: var(--navy); }
.ck-tile .ck-k { color: var(--muted); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; margin-top: 6px; }
/* 1 wide feature + 3 tiles */
.int-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }
.int-img { overflow: hidden; border-radius: 8px; aspect-ratio: 4 / 3; }
.int-img:first-child { grid-column: 1 / -1; aspect-ratio: 21 / 9; }
.int-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.int-img:hover img { transform: scale(1.04); }

/* ------------------------------------------- home interior showcase */
.showcase { text-align: center; }
.showcase-grid { display: grid; grid-template-columns: 1.2fr .9fr .9fr; gap: 6px; margin-top: 44px; }
.sc-item { overflow: hidden; border-radius: 10px; aspect-ratio: 4 / 3; margin: 0; }
.sc-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.sc-item:hover img { transform: scale(1.05); }
@media (max-width: 940px) { .showcase-grid { grid-template-columns: 1fr; } .sc-item { aspect-ratio: 16 / 10; } }

/* ------------------------------------------------- lux mosaic gallery */
.lux-band { background: #fff; border-top: 1px solid var(--line); }
.lux-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: clamp(140px, 20vw, 250px); gap: 6px; margin-top: 40px; grid-auto-flow: dense; }
.lux-item { position: relative; overflow: hidden; border-radius: 8px; margin: 0; }
.lux-item.w2 { grid-column: span 2; }
.lux-item.h2 { grid-row: span 2; }
.lux-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.lux-item:hover img { transform: scale(1.05); }
.lux-item figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 16px 12px;
  background: linear-gradient(0deg, rgba(19,22,25,.6), transparent); color: #fff;
  font-family: var(--disp); font-weight: 500; font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase;
  opacity: 0; transition: opacity .3s var(--ease); }
.lux-item:hover figcaption { opacity: 1; }

/* ------------------------------------------------------------------ modal */
.modal-overlay { position: fixed; inset: 0; z-index: 200; background: rgba(19,22,25,.55); backdrop-filter: blur(6px); display: none; align-items: center; justify-content: center; padding: 20px; }
.modal-overlay.open { display: flex; }
.modal { background: #fff; border: 1px solid var(--line); border-radius: 10px; width: 100%; max-width: 470px; box-shadow: var(--shadow); position: relative; max-height: 94vh; overflow-y: auto; animation: pop .3s var(--ease); }
@keyframes pop { from { opacity: 0; transform: translateY(16px) scale(.98); } to { opacity: 1; transform: none; } }
.modal-head { padding: 30px 30px 6px; }
.modal-head h3 { font-size: 24px; margin-top: 12px; text-transform: uppercase; letter-spacing: .01em; }
.modal-head p { color: var(--muted); font-size: 14.5px; margin-top: 8px; font-weight: 300; }
.modal-close { position: absolute; top: 18px; right: 18px; width: 36px; height: 36px; border-radius: 50%; background: var(--glass); border: 1px solid var(--line); color: var(--ink); cursor: pointer; font-size: 19px; display: grid; place-items: center; }
.modal-close:hover { color: var(--navy); border-color: var(--navy); }
.modal form { padding: 18px 30px 30px; }
.field { margin-bottom: 15px; }
.field label { display: block; font-family: var(--disp); font-size: 12px; font-weight: 500; color: var(--muted); margin-bottom: 7px; letter-spacing: .08em; text-transform: uppercase; }
.field input, .field select, .field textarea { width: 100%; font-family: var(--sans); font-size: 15px; color: var(--ink); background: var(--paper); border: 1px solid var(--line-2); border-radius: 4px; padding: 13px 15px; transition: border-color .2s, background .2s; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--navy); background: #fff; }
.field textarea { resize: vertical; min-height: 74px; }
.field select option { background: #fff; }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.modal .btn-primary { width: 100%; margin-top: 8px; }
.form-fine { color: var(--muted-2); font-size: 12px; text-align: center; margin-top: 14px; font-weight: 300; }
.thankyou { display: none; padding: 46px 34px 50px; text-align: center; }
.thankyou.show { display: block; }
.thankyou .check { width: 70px; height: 70px; border-radius: 50%; background: rgba(37,211,102,.14); color: #1faf53; display: grid; place-items: center; margin: 0 auto 22px; font-size: 34px; }
.thankyou h3 { font-size: 24px; margin-bottom: 12px; text-transform: uppercase; }
.thankyou p { color: var(--muted); font-weight: 300; }

/* -------------------------------------------------------------- responsive */
@media (max-width: 940px) {
  .nav-links { display: none; }
  .nav-links.mobile-open { display: flex; flex-direction: column; align-items: flex-start; gap: 20px; position: absolute; top: 100%; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--line); padding: 26px clamp(20px,5vw,48px); max-height: calc(100svh - 66px); overflow-y: auto; overscroll-behavior: contain; box-shadow: 0 24px 40px rgba(19,22,25,.12); }
  .nav-links.mobile-open a.link { font-size: 17px; opacity: 1; }
  .hamburger { display: block; }
  .nav-actions .btn { display: none; }
  .nav-links.mobile-open .mobile-cta { display: inline-flex; width: 100%; justify-content: center; margin-top: 8px; padding: 15px 24px; font-size: 13px; }
  .field input, .field select, .field textarea { font-size: 16px; }
  .nav-item.has-mega { display: flex; flex-direction: column; align-items: flex-start; width: 100%; gap: 6px; }
  .has-mega .caret { display: none; }
  .mega { position: static; opacity: 1; visibility: visible; transform: none; background: transparent;
    backdrop-filter: none; border: 0; box-shadow: none; padding: 2px 0 8px; }
  .mega::before { display: none; }
  .mega-inner { grid-template-columns: 1fr; gap: 2px; padding: 0; }
  .mega-item { flex-direction: row; align-items: center; gap: 12px; border: 0; background: transparent; border-radius: 0; padding: 7px 0; box-shadow: none; }
  .mega-item:hover { transform: none; border: 0; box-shadow: none; }
  .mega-thumb { width: 56px; height: 38px; aspect-ratio: auto; border-radius: 6px; flex: none; }
  .mega-tx { padding: 0; }
  .mega-name { font-size: 15px; }
  .mband, .mband.rev { grid-template-columns: 1fr; min-height: 0; }
  .mband .media { order: -1 !important; height: clamp(280px, 52vw, 460px); }
  .mband.rev .media { order: -1; }
  .mband .media img { position: absolute; }
  .why-grid { grid-template-columns: 1fr; gap: 8px; }
  .why-card { padding-block: 28px 0; }
  .feature-split { grid-template-columns: 1fr; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-about { grid-column: 1 / -1; }
  .spec-row { grid-template-columns: 1fr 1fr; }
  .spec:nth-child(3)::before, .spec:nth-child(1)::before { display: none; }
  .g-grid { grid-template-columns: 1fr; }
  .g-item { aspect-ratio: 16 / 10; }
  .ck-row { grid-template-columns: 1fr 1fr; }
  .int-grid { grid-template-columns: 1fr 1fr; }
  .int-img:first-child { aspect-ratio: 16 / 9; }
  .col-chip { width: calc(33.3% - 9px); min-width: 96px; }
  .lux-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: clamp(130px, 28vw, 220px); }
  .lux-item figcaption { opacity: 1; }
}
@media (max-width: 560px) {
  .offer-row { grid-template-columns: 1fr; gap: 30px; }
  .offer-cell + .offer-cell::before { display: none; }
  .offer-cell { padding-block: 0; }
  .feature-list { grid-template-columns: 1fr; }
  .spec-row { grid-template-columns: 1fr 1fr; }
  .cta-band { flex-direction: column; align-items: flex-start; }
  .hero-scroll { display: none; }
  .row-2 { grid-template-columns: 1fr; }
  .perf-row { gap: 30px; }
}

/* ==================================================================
   Nav Test-Drive icon, smaller quote button, and a background image
   for the tall Why row (adapted from the BYD Antigua build).
   ================================================================== */
/* 20% smaller nav quote button */
.nav-actions .btn.btn-sm { padding: 9.5px 21px; font-size: 10.5px; letter-spacing: .16em; }
/* Test Drive nav icon — glyph that expands to reveal its label on hover
   (dark on this light header) */
.nav-icon-btn { display: inline-flex; align-items: center; gap: 0; height: 40px; padding: 0 10px; border: 1px solid rgba(19,22,25,.24); border-radius: 999px; color: var(--ink); transition: border-color .25s var(--ease), background .25s var(--ease); overflow: hidden; }
.nav-icon-btn .ni-glyph { display: inline-flex; flex: none; }
.nav-icon-btn .ni-glyph svg { display: block; transition: transform .5s var(--ease); }
.nav-icon-btn .ni-label { max-width: 0; opacity: 0; white-space: nowrap; overflow: hidden;
  font-family: var(--disp); font-weight: 600; font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  transition: max-width .4s var(--ease), opacity .3s var(--ease), margin-left .4s var(--ease); }
.nav-icon-btn:hover, .nav-icon-btn:focus-visible { background: rgba(19,22,25,.05); border-color: var(--navy); color: var(--navy); }
.nav-icon-btn:hover .ni-glyph svg, .nav-icon-btn:focus-visible .ni-glyph svg { transform: rotate(-28deg); }
.nav-icon-btn:hover .ni-label, .nav-icon-btn:focus-visible .ni-label { max-width: 140px; opacity: 1; margin-left: 8px; }
@media (max-width: 940px) { .nav-icon-btn { display: none; } }

/* full-bleed background image fills the tall Why row's dead space; a
   layered light wash keeps the middle (text) crisp */
.why { position: relative; overflow: hidden; }
.row-bg { position: absolute; inset: 0; z-index: 0; }
.row-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.row-bg::after { content: ""; position: absolute; inset: 0; background:
  linear-gradient(180deg, rgba(255,255,255,.74) 0%, rgba(255,255,255,.97) 34%, rgba(255,255,255,.97) 66%, rgba(255,255,255,.76) 100%),
  linear-gradient(90deg, rgba(255,255,255,.5), transparent 55%); }
.why .wrap { position: relative; z-index: 1; }

/* Screen-reader-only text — carries the descriptive part of a heading (page
   subject, section name) for assistive tech and search engines without
   changing anything on screen. */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── Models index + 404 page ──────────────────────────────────────────────
   Self-contained so it works on the light sites and Changan's dark theme:
   every colour falls back through the variables each site actually defines. */
.models-page { padding: 132px 0 76px; }
.models-page .mp-head { margin-bottom: 42px; }
.models-page h1 { font-size: clamp(32px, 5vw, 58px); margin: 12px 0 16px; }
.models-page .mp-lede { color: var(--muted); max-width: 64ch; line-height: 1.7; }

/* min() guard: below 288px the track shrinks with the viewport instead of
   overflowing it — matters on 320px-class phones. */
.mgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(288px, 100%), 1fr)); gap: 26px; }
.mcard {
  display: block; overflow: hidden; border: 1px solid var(--line);
  background: var(--paper-2, var(--navy-900, #141417));
  transition: transform .35s var(--ease), border-color .35s var(--ease);
}
.mcard:hover { transform: translateY(-5px); border-color: var(--line-2, var(--line)); }
.mcard .ph { display: block; aspect-ratio: 4 / 3; overflow: hidden;
             background: var(--paper-3, var(--navy-900, #101014)); }
.mcard .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.mcard:hover .ph img { transform: scale(1.05); }
.mcard .tx { display: block; padding: 20px 22px 24px; }
.mcard .nm { display: block; margin: 0; font-family: var(--disp); font-weight: 700; font-size: 21px; color: var(--ink); }
.mcard .ty { display: block; margin-top: 6px; font-size: 11.5px; letter-spacing: .14em;
             text-transform: uppercase; color: var(--muted); }
.mcard .bl { display: block; margin-top: 12px; font-size: 14px; line-height: 1.6; color: var(--muted); }

@media (max-width: 640px) {
  .models-page { padding: 104px 0 56px; }
  .mgrid { gap: 20px; }
}
