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

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', Helvetica, Arial, sans-serif;
  background: #000;
  color: #fff;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
a:hover { color: #c8102e; }

img { display: block; max-width: 100%; }

/* ===== TOP BAR ===== */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px clamp(20px, 5vw, 72px);
  background: transparent;
  border: none;
}
.topbar::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 210px;
  pointer-events: none;
  z-index: -1;
  background: linear-gradient(to bottom,
    rgba(0,0,0,.92) 0%,
    rgba(0,0,0,.6) 26%,
    rgba(0,0,0,.28) 52%,
    rgba(0,0,0,.08) 78%,
    transparent 100%);
  transition: opacity .4s ease;
}
.topbar.scrolled::before { opacity: .12; }
.brand { display: flex; align-items: center; gap: 8px; }
.brand-name { font-size: 9px; letter-spacing: 4px; font-weight: 500; }
.logo-mark {
  width: 90px;
  display: flex; align-items: center; justify-content: center;
}
.logo-mark img { width: 100%; height: 100%; object-fit: contain; }
.logo-mark-lg { width: 40px; height: 52px; }

.topnav { display: flex; gap: clamp(24px, 3.5vw, 56px); font-size: 16px; }
.topnav a { position: relative; padding-bottom: 4px; }
.topnav a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: #c8102e; transition: width .28s ease;
}
.topnav a:hover::after, .topnav a.is-active::after { width: 100%; }

/* nav dropdown */
.nav-drop { position: relative; display: inline-flex; align-items: center; }
.nav-drop-trigger { display: inline-flex; align-items: center; gap: 5px; }
.nav-caret { width: 11px; height: 11px; transition: transform .25s ease; }
.nav-drop:hover .nav-caret { transform: rotate(180deg); }
.nav-drop::after {
  content: ""; position: absolute; top: 100%; left: 0; right: 0; height: 16px;
}
.nav-menu {
  position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 190px; background: rgba(10,10,12,.96); backdrop-filter: blur(12px);
  border: 1px solid #24242b; padding: 8px 0;
  opacity: 0; visibility: hidden; z-index: 2001;
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
  box-shadow: 0 20px 44px rgba(0,0,0,.5);
}
.nav-drop:hover .nav-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-menu { min-width: 160px; }
.nav-menu a { display: block; padding: 9px 20px; font-size: 12px; letter-spacing: 1.5px; color: #cfcfd4; }
.nav-menu a::after { display: none; }
.nav-menu a:hover { background: rgba(200,16,46,.16); color: #fff; }

/* mobile submenu */
.mobile-menu .m-sub { font-size: 15px; letter-spacing: 3px; color: #9a9aa2; margin-top: -14px; }
.mobile-menu .m-sub::before { content: "— "; color: #c8102e; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span { width: 24px; height: 2px; background: #fff; display: block; }

/* mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(0,0,0,.96);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  font-size: 22px;
  letter-spacing: 2px;
}
.mobile-menu.open { display: flex; }
.mobile-close {
  position: absolute;
  top: 24px; right: 28px;
  background: none; border: none;
  color: #fff; font-size: 34px;
  cursor: pointer; line-height: 1;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 3px;
  transition: all .25s ease;
  cursor: pointer;
}
.btn-outline {
  padding: 15px 40px;
  border: 1px solid rgba(255,255,255,.5);
}
.btn-outline:hover { background: #fff; color: #000; border-color: #fff; }
.btn-dark {
  padding: 15px 34px;
  background: #1f1f1f;
  border: 1px solid #2c2c2c;
  letter-spacing: 2px;
}
.btn-dark:hover { background: #2c2c2c; color: #fff; }
.btn-light {
  padding: 15px 34px;
  background: #fff;
  color: #000;
  letter-spacing: 2px;
}
.btn-light:hover { background: #c8102e; color: #fff; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 94vh;
  display: flex;
  align-items: center;
  padding: 0 clamp(20px, 5vw, 72px);
  overflow: hidden;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(0,0,0,.85) 0%, rgba(0,0,0,.55) 45%, rgba(0,0,0,.25) 100%);
}
.hero-content { max-width: 640px; position: relative; z-index: 2; }
.eyebrow { font-size: 11px; letter-spacing: 5px; color: #9a9a9a; margin-bottom: 22px; }
.hero-title {
  font-size: clamp(48px, 9vw, 104px);
  font-weight: 400;
  letter-spacing: .18em;
  line-height: 1;
  margin-bottom: 26px;
}
.hero-copy {
  font-size: 15px;
  line-height: 1.7;
  color: #b9b9b9;
  max-width: 420px;
  margin-bottom: 38px;
}

.siderail {
  position: absolute;
  right: clamp(12px, 2vw, 24px);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 15;
}
.rail-btn {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .25s ease;
}
.rail-btn:hover { border-color: #c8102e; }

.scroll-hint {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
}
.scroll-label { font-size: 9px; letter-spacing: 4px; color: #7a7a7a; }
.scroll-line {
  width: 1px; height: 34px;
  background: linear-gradient(#7a7a7a, transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: translateY(0); opacity: .5; }
  50% { transform: translateY(6px); opacity: 1; }
}

/* ===== E-HS9 FEATURE ===== */
.feature-media {
  position: relative;
  width: 100%;
  min-height: 88vh;
  overflow: hidden;
  background: #111;
}
.feature-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.feature-scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(0,0,0,.25) 0%, transparent 30%, transparent 55%, rgba(0,0,0,.75) 100%);
}
.feature-caption {
  position: absolute;
  left: 0; right: 0; bottom: 8%;
  text-align: center;
}
.feature-title {
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 400;
  letter-spacing: .14em;
}
.feature-sub { font-size: 14px; color: #dcdcdc; margin-top: 14px; }

.stats-wrap { background: #000; padding: 56px clamp(20px, 5vw, 72px) 96px; }

/* ===== MODELS CAROUSEL ===== */
.model-carousel { position: relative; overflow: hidden; }
.model-track { display: flex; transition: transform .6s cubic-bezier(.6,.02,.15,1); }
.model-slide { min-width: 100%; }
.model-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 6;
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(10,10,12,.5); border: 1px solid rgba(255,255,255,.4);
  color: #fff; cursor: pointer; backdrop-filter: blur(4px);
  transition: background .25s ease, border-color .25s ease, opacity .25s ease;
}
.model-arrow svg { width: 22px; height: 22px; }
.model-arrow:hover { background: #c8102e; border-color: #c8102e; }
.model-prev { left: clamp(14px, 2.5vw, 30px); }
.model-next { right: clamp(14px, 2.5vw, 30px); }
.model-arrow.is-hidden { display: none; }
.model-dots {
  position: absolute; left: 0; right: 0; bottom: 22px; z-index: 6;
  display: flex; justify-content: center; gap: 10px;
}
.model-dots.is-hidden { display: none; }
.model-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: rgba(255,255,255,.4); border: none; cursor: pointer; padding: 0;
  transition: background .25s ease, transform .25s ease;
}
.model-dot.active { background: #fff; transform: scale(1.25); }
.stats {
  display: flex;
  justify-content: center;
  gap: clamp(40px, 9vw, 120px);
  text-align: center;
  flex-wrap: wrap;
}
.stat-label { font-size: 11px; letter-spacing: 2px; color: #9a9a9a; }
.stat-upto { font-size: 10px; letter-spacing: 2px; color: #7a7a7a; margin: 2px 0 12px; }
.stat-value { font-size: 30px; font-weight: 500; }
.ctarow {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 44px;
  flex-wrap: wrap;
}

/* ===== LATEST STORIES ===== */
.stories { background: #000; padding: 20px clamp(20px, 5vw, 72px) 110px; }
.section-title {
  text-align: center;
  font-size: clamp(30px, 4.5vw, 44px);
  font-weight: 400;
  letter-spacing: .18em;
  margin-bottom: 56px;
}
.storygrid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}
.story {
  position: relative;
  overflow: hidden;
  display: block;
  background: #141414;
}
.story img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.story:hover img { transform: scale(1.05); }
.story-big { grid-row: 1 / span 2; min-height: 520px; }
.story-sm { min-height: 252px; }
.story-scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(transparent 42%, rgba(0,0,0,.85));
}
.story-text { position: absolute; left: 26px; right: 26px; bottom: 30px; }
.story-sm .story-text { left: 22px; right: 22px; bottom: 22px; }
.story-kicker { font-size: 10px; letter-spacing: 3px; color: #c9c9c9; margin-bottom: 12px; }
.story-head { font-size: 19px; font-weight: 500; line-height: 1.4; }
.story-head-sm { font-size: 15px; font-weight: 500; line-height: 1.4; }
.stories-cta { text-align: center; margin-top: 48px; }

/* ===== FOOTER ===== */
.footer {
  background: #0a0a0a;
  border-top: 1px solid #1a1a1a;
  padding: 56px clamp(20px, 5vw, 72px) 34px;
}
.footgrid {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.foot-brand-row { display: flex; align-items: center; gap: 26px; }
.foot-brand { flex-direction: column; align-items: center; gap: 8px; }
.logo-mark-lg { width: 78px; height: 100px; }
.foot-brand .brand-name { font-size: 10px; }
.foot-address { text-align: left; }
.foot-company { font-size: 22px; font-weight: 600; color: #fff; margin-bottom: 14px; }
.foot-showroom { font-size: 14px; color: #cfcfcf; line-height: 1.9; }
.foot-showroom a { color: #cfcfcf; }
.foot-showroom a:hover { color: #c8102e; }
.socials { display: flex; gap: 14px; }
.social {
  width: 34px; height: 34px;
  border: 1px solid #2a2a2a;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .25s ease;
}
.social:hover { border-color: #c8102e; }
.foot-bottom {
  max-width: 1180px;
  margin: 44px auto 0;
  border-top: 1px solid #181818;
  padding-top: 26px;
  text-align: center;
}
.foot-links {
  display: flex;
  gap: 26px;
  justify-content: center;
  font-size: 10px;
  letter-spacing: 2px;
  color: #8a8a8a;
  margin-bottom: 14px;
}
.foot-copy { font-size: 10px; letter-spacing: 1px; color: #555; }

/* ===== RESPONSIVE ===== */
@media (max-width: 860px) {
  .topnav { display: none; }
  .burger { display: flex; }
  .storygrid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .story-big { grid-row: auto; min-height: 360px; }
  .story-sm { min-height: 300px; }
  .siderail { right: 10px; }
}
@media (max-width: 520px) {
  .siderail { display: none; }
  .stats { gap: 34px; }
}

/* ===== MODELS INTRO BAND ===== */
.models-band {
  background: linear-gradient(180deg, #000 0%, #0c0c0d 100%);
  text-align: center;
  padding: clamp(64px, 9vw, 120px) clamp(20px, 5vw, 72px);
}
.models-accent {
  display: inline-block;
  width: 44px; height: 2px;
  background: #c8102e;
  margin-bottom: 26px;
}
.models-band .eyebrow { margin-bottom: 18px; }
.models-head {
  font-size: clamp(28px, 4.6vw, 50px);
  font-weight: 300;
  letter-spacing: .1em;
  line-height: 1.25;
  max-width: 820px;
  margin: 0 auto 22px;
}
.models-copy {
  font-size: 15px;
  line-height: 1.8;
  color: #9f9f9f;
  max-width: 560px;
  margin: 0 auto;
}

/* ===== SHARED SECTION HEADER ===== */
.dealers, .charging {
  background: #0b0b0f;
  padding: clamp(64px, 8vw, 104px) clamp(20px, 5vw, 72px);
}
.sec-head {
  max-width: 1400px;
  margin: 0 auto 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.sec-title {
  font-size: clamp(26px, 3.6vw, 40px);
  font-weight: 600;
  letter-spacing: .04em;
}
.chip-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: inherit;
  font-size: 11px;
  letter-spacing: 3px;
  color: #fff;
  background: none;
  border: 1px solid #2a2a30;
  padding: 13px 22px;
  cursor: pointer;
  transition: border-color .25s ease, background .25s ease;
}
.chip-btn:hover { border-color: #c8102e; }
.chip-btn-solid {
  background: #fff;
  color: #000;
  border-color: #fff;
}
.chip-btn-solid:hover { background: #c8102e; border-color: #c8102e; color: #fff; }

/* map placeholder shared look */
.dealer-map, .charging-map {
  position: relative;
  background:
    radial-gradient(120% 90% at 50% 40%, #1c1c22 0%, #101014 55%, #0a0a0d 100%);
  overflow: hidden;
  border: 1px solid #1c1c22;
}
.dealer-map .leaflet-container,
.charging-map .leaflet-container {
  width: 100%; height: 100%;
  background: #0b0b0f;
}
.dealer-map .leaflet-tile-pane,
.charging-map .leaflet-tile-pane {
  filter: invert(1) hue-rotate(185deg) brightness(.92) contrast(.92) saturate(.5);
}
.leaflet-container .leaflet-control-attribution {
  background: rgba(8,8,11,.65);
  color: #7a7a82;
  font-size: 9px;
}
.leaflet-container .leaflet-control-attribution a { color: #9a9aa2; }
.leaflet-bar a {
  background: #14141a !important;
  color: #fff !important;
  border-color: #2a2a30 !important;
}
.leaflet-bar a:hover { background: #22222a !important; }
.hq-pin {
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  background: #fff; color: #000;
  border-radius: 50%;
  font-family: 'Jost', sans-serif;
  font-size: 13px; font-weight: 600;
  box-shadow: 0 3px 10px rgba(0,0,0,.6);
  border: 2px solid #0b0b0f;
}
.hq-pin.hq-sel {
  background: #14141a; color: #fff;
  border: 1.5px solid #fff;
  box-shadow: 0 0 0 6px rgba(255,255,255,.14), 0 3px 10px rgba(0,0,0,.6);
}
.leaflet-popup-content-wrapper {
  background: #14141a; color: #fff;
  border-radius: 2px; border: 1px solid #2a2a30;
}
.leaflet-popup-tip { background: #14141a; border: 1px solid #2a2a30; }
.leaflet-popup-content { margin: 12px 16px; font-family: 'Jost', sans-serif; }
.hq-pop-city { font-size: 10px; letter-spacing: 2px; color: #8a8a92; margin-bottom: 4px; }
.hq-pop-name { font-size: 15px; font-weight: 500; }
.hq-pop-addr { font-size: 12px; color: #a9a9b2; margin-top: 3px; }

/* ===== FIND YOUR NEAREST DEALER ===== */
.dealers-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 26px;
  align-items: start;
}
.dealer-search input {
  width: 100%;
  font-family: inherit;
  font-size: 14px;
  color: #fff;
  background: #101014;
  border: 1px solid #1e1e24;
  padding: 18px 22px;
  outline: none;
}
.dealer-search input::placeholder { color: #6a6a72; }
.dealer-list {
  margin-top: 14px;
  max-height: 560px;
  overflow-y: auto;
  padding-right: 8px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.dealer-list::-webkit-scrollbar { width: 4px; }
.dealer-list::-webkit-scrollbar-thumb { background: #2a2a30; }
.dealer-card {
  display: flex;
  gap: 22px;
  background: #0e0e12;
  border: 1px solid #1c1c22;
  padding: 26px 26px 24px;
  transition: background .25s ease, border-color .25s ease;
}
.dealer-card.active { background: #15151b; border-color: #33333c; }
.dealer-card:hover { border-color: #33333c; }
.dealer-num {
  font-size: 26px;
  font-weight: 500;
  color: #6a6a72;
  min-width: 34px;
}
.dealer-card.active .dealer-num { color: #fff; }
.dealer-city { font-size: 11px; letter-spacing: 3px; color: #7a7a82; margin-bottom: 10px; }
.dealer-name { font-size: 20px; font-weight: 500; margin-bottom: 12px; }
.dealer-addr, .charge-addr {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: #a9a9b2;
  margin-bottom: 22px;
}
.pin { width: 15px; height: 15px; flex-shrink: 0; }
.dealer-btns { display: flex; gap: 12px; }
.mini-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  flex: 1;
  font-size: 11px; letter-spacing: 2px;
  padding: 13px 10px;
  border: 1px solid #2a2a30;
  color: #fff;
  transition: border-color .25s ease, background .25s ease, color .25s ease;
}
.mini-btn svg { width: 14px; height: 14px; }
.mini-btn:hover { border-color: #c8102e; color: #fff; }
.mini-btn-solid { background: #fff; color: #000; border-color: #fff; }
.mini-btn-solid:hover { background: #c8102e; border-color: #c8102e; color: #fff; }

.dealer-right { display: flex; flex-direction: column; gap: 18px; }
.dealer-map { min-height: 592px; }
.map-overlay {
  position: absolute;
  top: 24px; left: 24px;
  background: rgba(8,8,11,.82);
  border: 1px solid #2a2a30;
  padding: 16px 22px;
  z-index: 900;
  pointer-events: none;
}
.map-over-label { font-size: 10px; letter-spacing: 3px; color: #7a7a82; margin-bottom: 8px; }
.map-over-name { font-size: 16px; font-weight: 500; }
.map-over-addr { font-size: 13px; color: #a9a9b2; margin-top: 4px; }
.dealer-apply {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  background: #0e0e12;
  border: 1px solid #1c1c22;
  padding: 26px 30px;
}
.apply-label { font-size: 10px; letter-spacing: 3px; color: #7a7a82; margin-bottom: 8px; }
.apply-title { font-size: 20px; font-weight: 500; }
.dealer-apply .chip-btn { gap: 8px; }

/* ===== POWER EVERYWHERE ===== */
.tab-group { display: flex; gap: 10px; flex-wrap: wrap; }
.tab {
  font-family: inherit;
  font-size: 11px; letter-spacing: 3px;
  color: #b9b9c0;
  background: none;
  border: 1px solid #2a2a30;
  padding: 13px 22px;
  cursor: pointer;
  transition: all .25s ease;
}
.tab:hover { border-color: #33333c; }
.tab.active { background: #fff; color: #000; border-color: #fff; }
.tab-icon { display: inline-flex; align-items: center; gap: 9px; }

.charging-map {
  max-width: 1400px;
  margin: 0 auto 26px;
  min-height: 500px;
}
.map-badge {
  position: absolute;
  bottom: 26px; left: 26px;
  display: flex; align-items: center; gap: 14px;
  background: rgba(8,8,11,.85);
  border: 1px solid #2a2a30;
  padding: 14px 22px;
  z-index: 900;
  pointer-events: none;
}
.badge-bolt {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  background: #fff; color: #000; border-radius: 50%;
}
.badge-bolt svg { width: 16px; height: 16px; }
.badge-kicker { font-size: 9px; letter-spacing: 3px; color: #8a8a92; margin-bottom: 5px; }
.badge-main { font-size: 14px; font-weight: 600; letter-spacing: 1px; }

.charge-carousel {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
}
.charge-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 8px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.charge-track::-webkit-scrollbar { display: none; }
.charge-card {
  flex: 0 0 clamp(300px, 30%, 400px);
  scroll-snap-align: start;
  background: #0e0e12;
  border: 1px solid #1c1c22;
  padding: 26px 28px 28px;
  transition: border-color .25s ease, background .25s ease;
}
.caro-controls {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-bottom: 20px;
}
.caro-btn {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: #fff; color: #000;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background .25s ease, color .25s ease, opacity .25s ease;
}
.caro-btn svg { width: 20px; height: 20px; }
.caro-btn:hover { background: #c8102e; color: #fff; }
.caro-btn:disabled { opacity: .3; cursor: default; }
.caro-btn:disabled:hover { background: #fff; color: #000; }
.charge-card.active { background: #15151b; border-color: #33333c; }
.charge-card:hover { border-color: #33333c; }
.charge-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 26px; }
.charge-num {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: #fff; color: #000;
  border-radius: 50%;
  font-size: 14px; font-weight: 600;
}
.charge-tag {
  font-size: 10px; letter-spacing: 2px;
  padding: 6px 12px;
  border: 1px solid #4a4a52;
  color: #fff;
}
.charge-tag-dim { border-color: #2a2a30; color: #8a8a92; }
.charge-city { font-size: 11px; letter-spacing: 3px; color: #7a7a82; margin-bottom: 10px; }
.charge-name { font-size: 19px; font-weight: 500; margin-bottom: 12px; }
.charge-addr { margin-bottom: 20px; }
.charge-div { height: 1px; background: #1c1c22; margin-bottom: 20px; }
.charge-kw {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; color: #e4e4e8;
  margin-bottom: 22px;
}
.charge-kw svg { width: 17px; height: 17px; }
.charge-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: #fff; color: #000;
  font-size: 11px; letter-spacing: 2px;
  padding: 15px 10px;
  transition: background .25s ease, color .25s ease;
}
.charge-btn svg { width: 14px; height: 14px; }
.charge-btn:hover { background: #c8102e; color: #fff; }

@media (max-width: 1080px) {
  .dealers-grid { grid-template-columns: 1fr; }
  .dealer-map { min-height: 420px; }
}
@media (max-width: 620px) {
  .dealer-list { max-height: none; }
  .sec-head { align-items: flex-start; }
  .charge-card { flex-basis: 82%; }
}

/* =========================================================
   PRODUCT PAGE — E-HS9
   ========================================================= */

/* placeholder frame (drop real photography here) */
.ph {
  position: relative;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.018) 0 2px, transparent 2px 9px),
    radial-gradient(120% 100% at 50% 35%, #1b1b21 0%, #101014 55%, #0a0a0d 100%);
  border: 1px solid #1c1c22;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ph-label {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px;
  letter-spacing: 2px;
  color: #565660;
  text-align: center;
  padding: 0 24px;
  line-height: 1.7;
}

/* ---- active nav link ---- */
.topnav a.is-active, .mobile-menu a.is-active { color: #c8102e; }

/* ---- product hero ---- */
.p-hero {
  position: relative;
  min-height: 94vh;
  display: flex;
  align-items: flex-end;
  padding: 0 clamp(20px, 5vw, 72px) clamp(46px, 7vh, 84px);
  overflow: hidden;
}
.p-hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.p-hero-scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(to top, rgba(0,0,0,.82) 0%, rgba(0,0,0,.25) 34%, rgba(0,0,0,.1) 60%, rgba(0,0,0,.35) 100%);
}
.p-hero-content { position: relative; z-index: 2; max-width: 720px; }
.crumb {
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 3px; color: #b9b9b9;
  margin-bottom: 26px;
}
.crumb a { color: #b9b9b9; }
.crumb a:hover { color: #c8102e; }
.crumb span { color: #6a6a6a; }
.p-hero-title {
  font-size: clamp(52px, 10vw, 128px);
  font-weight: 400; letter-spacing: .12em; line-height: .96;
  margin-bottom: 20px;
}
.p-hero-tag { font-size: clamp(16px, 2.2vw, 22px); font-weight: 300; color: #e4e4e4; max-width: 560px; line-height: 1.5; }
.p-hero-meta {
  display: flex; align-items: center; gap: clamp(24px, 4vw, 56px);
  margin: 34px 0 34px; flex-wrap: wrap;
}
.p-hero-price .pm-label { font-size: 10px; letter-spacing: 3px; color: #9a9a9a; margin-bottom: 8px; }
.p-hero-price .pm-val { font-size: 26px; font-weight: 500; }
.p-hero-price .pm-val small { font-size: 13px; color: #9a9a9a; font-weight: 300; }
.p-hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---- spec strip ---- */
.p-specbar {
  background: #0a0a0d;
  border-top: 1px solid #17171c;
  border-bottom: 1px solid #17171c;
  padding: clamp(40px, 5vw, 60px) clamp(20px, 5vw, 72px);
}
.p-specbar-inner {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 30px; text-align: center;
}
.p-specbar-inner .stat + .stat { border-left: 1px solid #1c1c22; }
.p-spec-num { font-size: clamp(30px, 4vw, 44px); font-weight: 500; line-height: 1; }
.p-spec-num small { font-size: 15px; color: #9a9a9a; font-weight: 300; margin-left: 4px; }
.p-spec-cap { font-size: 11px; letter-spacing: 2px; color: #8a8a8a; margin-top: 14px; }
.p-spec-upto { font-size: 9px; letter-spacing: 2px; color: #6a6a6a; margin-bottom: 10px; }

/* ---- section shell ---- */
.p-sec { padding: clamp(72px, 9vw, 132px) clamp(20px, 5vw, 72px); }
.p-sec.tone { background: #0b0b0f; }
.p-eyebrow { font-size: 11px; letter-spacing: 5px; color: #c8102e; margin-bottom: 20px; }
.p-h { font-size: clamp(28px, 4vw, 46px); font-weight: 300; letter-spacing: .06em; line-height: 1.18; margin-bottom: 22px; }
.p-lead { font-size: 15px; line-height: 1.85; color: #a4a4a4; }

/* ---- alternating split ---- */
.p-split {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: clamp(34px, 5vw, 76px); align-items: center;
}
.p-split + .p-split { margin-top: clamp(64px, 8vw, 120px); }
.p-split.rev .p-split-media { order: 2; }
.p-split-media { min-height: 460px; height: 100%; }
.p-split-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.p-split-media.ph { position: relative; }
.p-feats { list-style: none; margin-top: 30px; display: flex; flex-direction: column; gap: 16px; }
.p-feats li { display: flex; gap: 14px; font-size: 14px; color: #cfcfcf; line-height: 1.5; }
.p-feats li::before {
  content: ""; flex: 0 0 6px; width: 6px; height: 6px; margin-top: 7px;
  background: #c8102e; transform: rotate(45deg);
}

/* ---- tech feature grid ---- */
.p-grid {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.p-card {
  background: #0e0e12; border: 1px solid #1c1c22;
  padding: 38px 34px 40px;
  transition: border-color .25s ease, transform .3s ease;
}
.p-card:hover { border-color: #33333c; transform: translateY(-4px); }
.p-card-ico {
  width: 46px; height: 46px; margin-bottom: 26px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid #2a2a30; border-radius: 50%;
}
.p-card-ico svg { width: 22px; height: 22px; }
.p-card h3 { font-size: 19px; font-weight: 500; margin-bottom: 12px; }
.p-card p { font-size: 14px; line-height: 1.75; color: #9a9a9a; }

/* ---- colour selector ---- */
.p-colors { max-width: 1240px; margin: 0 auto; }
.p-color-stage {
  position: relative; min-height: 520px; margin-top: 44px;
  border: 1px solid #1c1c22; overflow: hidden;
  background: radial-gradient(120% 90% at 50% 55%, #17171c 0%, #0c0c0f 60%, #08080a 100%);
}
.p-color-stage img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: filter .5s ease, opacity .5s ease;
}
.p-color-cap {
  position: absolute; left: 30px; bottom: 28px; z-index: 2;
}
.p-color-cap .cc-l { font-size: 10px; letter-spacing: 3px; color: #9a9a9a; margin-bottom: 8px; }
.p-color-cap .cc-n { font-size: 22px; font-weight: 500; }
.p-swatches { display: flex; gap: 16px; margin-top: 30px; flex-wrap: wrap; }
.p-sw {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  background: none; border: none; cursor: pointer; padding: 0;
  font-family: inherit;
}
.p-sw .dot {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid #33333c;
  box-shadow: inset 0 0 0 3px #0b0b0f;
  transition: transform .2s ease, border-color .2s ease;
}
.p-sw .swn { font-size: 10px; letter-spacing: 2px; color: #7a7a82; }
.p-sw:hover .dot { transform: scale(1.08); }
.p-sw.active .dot { border-color: #fff; box-shadow: inset 0 0 0 3px #0b0b0f, 0 0 0 2px #fff; }
.p-sw.active .swn { color: #fff; }

/* ---- gallery ---- */
.p-gallery {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  grid-auto-rows: 220px;
}
.p-gallery .ph { grid-column: span 1; }
.p-gallery .g-wide { grid-column: span 2; }
.p-gallery .g-tall { grid-row: span 2; }
.p-gallery img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.p-gallery .g-real { position: relative; overflow: hidden; border: 1px solid #1c1c22; }
.p-gallery .g-real img { transition: transform .6s ease; }
.p-gallery .g-real:hover img { transform: scale(1.05); }

/* ---- specs table ---- */
.p-specs { max-width: 1180px; margin: 44px auto 0; }
.spec-group { border-top: 1px solid #1c1c22; }
.spec-group:last-child { border-bottom: 1px solid #1c1c22; }
.spec-toggle {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  background: none; border: none; cursor: pointer; font-family: inherit; color: #fff;
  padding: 26px 4px; text-align: left;
}
.spec-toggle h3 { font-size: 17px; font-weight: 500; letter-spacing: .04em; }
.spec-toggle .sig { font-size: 24px; font-weight: 300; color: #8a8a8a; transition: transform .3s ease; }
.spec-group.open .spec-toggle .sig { transform: rotate(45deg); color: #c8102e; }
.spec-body { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.spec-group.open .spec-body { max-height: 640px; }
.spec-rows { padding: 4px 4px 30px; }
.spec-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  padding: 15px 0; border-top: 1px solid #131318;
  font-size: 14px;
}
.spec-row:first-child { border-top: none; }
.spec-row .sk { color: #8a8a8a; }
.spec-row .sv { color: #eaeaea; text-align: right; }

/* ---- closing CTA ---- */
.p-close {
  position: relative;
  padding: clamp(80px, 11vw, 150px) clamp(20px, 5vw, 72px);
  text-align: center;
  background: linear-gradient(180deg, #0b0b0f 0%, #000 100%);
}
.p-close h2 { font-size: clamp(28px, 4.4vw, 50px); font-weight: 300; letter-spacing: .08em; margin-bottom: 18px; }
.p-close p { font-size: 15px; color: #9f9f9f; max-width: 500px; margin: 0 auto 40px; line-height: 1.8; }
.p-close-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 980px) {
  .p-split { grid-template-columns: 1fr; }
  .p-split.rev .p-split-media { order: 0; }
  .p-split-media { min-height: 340px; }
  .p-grid { grid-template-columns: 1fr; }
  .p-gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
}
@media (max-width: 620px) {
  .p-specbar-inner { grid-template-columns: repeat(2, 1fr); gap: 34px 20px; }
  .p-specbar-inner .stat + .stat { border-left: none; }
  .p-specbar-inner .stat:nth-child(odd) { border-right: 1px solid #1c1c22; }
  .spec-row { grid-template-columns: 1fr; gap: 4px; }
  .spec-row .sv { text-align: left; }
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .9s ease, transform .9s ease;
}
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ===== STICKY FLOATING BUTTON RAIL ===== */
.fab-rail {
  position: fixed;
  right: clamp(14px, 2vw, 26px);
  bottom: clamp(18px, 3vw, 34px);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  background: transparent;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 30px;
  overflow: hidden;
  backdrop-filter: blur(4px);
  box-shadow: 0 10px 30px rgba(0,0,0,.5);
  animation: fabIn .5s ease backwards;
}
.fab {
  width: 54px; height: 54px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  transition: background .25s ease, color .25s ease;
}
.fab + .fab { border-top: 1px solid rgba(255,255,255,.25); }
.fab svg { width: 22px; height: 22px; }
.fab:hover { background: #c8102e; color: #fff; }
.fab-wa:hover { background: #25d366; color: #fff; }
@keyframes fabIn {
  from { opacity: 0; transform: translateY(16px) scale(.9); }
  to { opacity: 1; transform: none; }
}
@media (max-width: 520px) {
  .fab { width: 48px; height: 48px; }
  .fab svg { width: 20px; height: 20px; }
}
