:root {
  --navy: #061a49;
  --navy-2: #0b285e;
  --red: #ed1c2e;
  --red-dark: #cb1022;
  --white: #fff;
  --text: #0c1734;
  --muted: #687187;
  --soft: #f4f6fa;
  --border: #e1e5ee;
  --container: 1240px;
  --shadow: 0 18px 46px rgba(6, 26, 73, .13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--text); background: #fff; font-family: "Montserrat", Arial, sans-serif; line-height: 1.55; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }

.site-header { position: relative; z-index: 20; background: rgba(255,255,255,.99); border-bottom: 1px solid rgba(6,26,73,.08); box-shadow: 0 4px 18px rgba(6,26,73,.05); }
.header-inner { min-height: 82px; display: flex; align-items: center; gap: 28px; }
.brand img { width: 142px; height: 65px; object-fit: contain; }
.nav-menu { margin-left: auto; display: flex; gap: 29px; align-items: center; }
.nav-menu a { position: relative; padding: 31px 0 24px; font-size: 12px; font-weight: 800; text-transform: uppercase; }
.nav-menu a {
  color: #10182f;
  transition: color .2s ease;
}
.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 17px;
  width: 0;
  height: 3px;
  background: var(--red);
  border-radius: 6px;
  transition: width .2s ease;
}
.nav-menu a:hover,
.nav-menu a.active { color: var(--red); }
.nav-menu a:hover::after,
.nav-menu a.active::after { width: 100%; }
.button { min-height: 46px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 0 21px; border: 1px solid transparent; border-radius: 6px; font-size: 12px; font-weight: 800; text-transform: uppercase; }
.button-red { color: #fff; background: var(--red); box-shadow: 0 9px 20px rgba(237,28,46,.23); }
.button-outline { color: #fff; border-color: rgba(255,255,255,.7); background: transparent; }
.header-cta { flex: 0 0 auto; }
.wa-mark { width: 20px; height: 20px; display: grid; place-items: center; border: 1px solid currentColor; border-radius: 50%; }

.detail-hero { position: relative; overflow: hidden; min-height: 420px; color: #fff; background: linear-gradient(110deg, #061a49 0%, #082156 61%, #0e3270 100%); }
.detail-hero::after { content: ""; position: absolute; inset: 0; opacity: .15; background-image: radial-gradient(circle at 15% 15%, #fff 0 1px, transparent 1.5px); background-size: 22px 22px; }
.hero-shape { position: absolute; z-index: 1; transform: skewX(-23deg); }
.hero-shape-one { width: 390px; height: 520px; right: 8%; top: -90px; background: rgba(255,255,255,.055); }
.hero-shape-two { width: 100px; height: 560px; right: 27%; top: -120px; background: var(--red); opacity: .9; }
.hero-grid { position: relative; z-index: 2; min-height: 420px; display: grid; grid-template-columns: .94fr 1.06fr; align-items: center; gap: 20px; }
.hero-copy { padding: 42px 0 48px; }
.breadcrumb { display: flex; gap: 9px; margin: 0 0 25px; color: rgba(255,255,255,.65); font-size: 11px; font-weight: 600; text-transform: uppercase; }
.breadcrumb strong { color: #fff; }
.eyebrow { margin: 0 0 7px; color: #ff4051; font-size: 13px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.eyebrow.dark { color: var(--red); }
.hero-copy h1 { margin: 0; font-size: 56px; line-height: 1; letter-spacing: -.035em; text-transform: uppercase; }
.hero-tagline { max-width: 590px; margin: 15px 0 22px; color: rgba(255,255,255,.83); font-size: 14px; }
.hero-metrics { max-width: 560px; display: grid; grid-template-columns: repeat(3, 1fr); margin: 0 0 24px; border: 1px solid rgba(255,255,255,.18); border-radius: 8px; background: rgba(255,255,255,.06); }
.hero-metrics div { padding: 11px 17px; border-right: 1px solid rgba(255,255,255,.18); }
.hero-metrics div:last-child { border-right: 0; }
.hero-metrics span { display: block; color: rgba(255,255,255,.58); font-size: 9px; font-weight: 700; text-transform: uppercase; }
.hero-metrics strong { display: block; margin-top: 2px; font-size: 17px; }
.hero-actions { display: flex; gap: 12px; }
.hero-vehicle { position: relative; min-height: 390px; display: flex; align-items: center; justify-content: center; }
.hero-vehicle > img { position: relative; z-index: 3; width: min(640px, 100%); height: 330px; object-fit: contain; filter: drop-shadow(0 25px 18px rgba(0,0,0,.3)); }
.vehicle-glow { position: absolute; z-index: 1; width: 590px; height: 250px; border-radius: 50%; background: radial-gradient(ellipse, rgba(255,255,255,.32), rgba(255,255,255,0) 68%); }
.cold-badge { position: absolute; z-index: 5; right: 12px; bottom: 39px; min-width: 210px; display: flex; align-items: center; gap: 12px; padding: 10px 15px; color: var(--navy); border-radius: 8px; background: #fff; box-shadow: 0 12px 30px rgba(0,0,0,.2); }
.snowflake { width: 38px; height: 38px; display: grid; place-items: center; color: #fff; border-radius: 50%; background: var(--red); font-size: 21px; }
.cold-badge small, .cold-badge strong { display: block; }
.cold-badge small { color: var(--muted); font-size: 8px; font-weight: 700; text-transform: uppercase; }
.cold-badge strong { font-size: 13px; }

.detail-section { padding: 56px 0 48px; background: #fff; }
.section-title { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; margin-bottom: 27px; }
.section-title h2, .other-heading h2 { margin: 0; color: var(--navy); font-size: 31px; line-height: 1.15; text-transform: uppercase; }
.section-title h2 span { color: var(--red); }
.section-title > p { max-width: 500px; margin: 0; color: var(--muted); font-size: 13px; }
.detail-grid { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(350px, .9fr); gap: clamp(18px, 2vw, 25px); align-items: start; }
.visual-panel, .spec-card { width: 100%; min-width: 0; border: 1px solid var(--border); border-radius: 13px; background: #fff; box-shadow: var(--shadow); overflow: hidden; }
.panel-heading { min-height: 65px; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 0 21px; border-bottom: 1px solid var(--border); background: #fafbfc; }
.panel-heading div { display: flex; align-items: center; gap: 9px; color: var(--navy); font-size: 14px; text-transform: uppercase; }
.panel-heading > span { color: var(--muted); font-size: 9px; font-weight: 700; text-transform: uppercase; }
.heading-icon { width: 28px; height: 28px; display: grid; place-items: center; color: #fff; border-radius: 5px; background: var(--red); }
.poster-window { position: relative; width: 100%; aspect-ratio: 4 / 3; overflow: hidden; background: #fff; }
.poster-fallback { height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; background: radial-gradient(circle at 50% 48%, #fff, #f0f3f8 72%); }
.poster-fallback > img { width: 85%; height: 440px; object-fit: contain; filter: drop-shadow(0 24px 14px rgba(6,26,73,.2)); }
.fallback-labels { width: 88%; display: grid; grid-template-columns: repeat(5, 1fr); gap: 7px; }
.fallback-labels span { padding: 10px 4px; color: #fff; border-radius: 5px; background: var(--navy); text-align: center; font-size: 9px; font-weight: 800; text-transform: uppercase; }
.spec-card { display: flex; flex-direction: column; }
.spec-card-title { padding: 17px 22px; color: #fff; background: var(--red); }
.spec-card-title span { display: block; font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; opacity: .78; }
.spec-card-title strong { display: block; font-size: 25px; line-height: 1.25; text-transform: uppercase; }
.dimension-block { padding: 19px 20px 13px; }
.dimension-block > p { margin: 0 0 10px; color: var(--navy); font-size: 13px; font-weight: 900; text-transform: uppercase; }
.dimension-block > p span { color: var(--muted); font-size: 10px; }
.dimension-row { display: grid; grid-template-columns: 108px 1fr; align-items: center; margin-top: 7px; border: 1px solid #dce1eb; border-radius: 7px; overflow: hidden; }
.dimension-row > span { height: 100%; padding: 10px 12px; color: #fff; background: var(--navy); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.dimension-row small { display: block; color: rgba(255,255,255,.6); font-size: 7px; font-weight: 500; }
.dimension-row strong { min-width: 0; padding: 10px 13px; color: var(--navy); font-size: 14px; overflow-wrap: anywhere; }
.spec-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 0 20px 17px; }
.spec-metrics > div { position: relative; padding: 11px 10px 11px 43px; border-radius: 8px; background: #f1f4f9; }
.metric-icon { position: absolute; left: 12px; top: 17px; color: var(--red); font-size: 20px; }
.spec-metrics small, .spec-metrics strong { display: block; }
.spec-metrics small { color: var(--muted); font-size: 8px; font-weight: 700; text-transform: uppercase; }
.spec-metrics strong { color: var(--navy); font-size: 17px; }
.feature-list { padding: 0 20px 10px; }
.feature-list > div { display: flex; gap: 11px; padding: 10px 0; border-top: 1px solid var(--border); }
.feature-list > div > span { width: 31px; height: 31px; display: grid; place-items: center; flex: 0 0 auto; color: #fff; border-radius: 50%; background: var(--navy); font-size: 15px; }
.feature-list p { margin: 0; }
.feature-list strong, .feature-list small { display: block; }
.feature-list strong { color: var(--navy); font-size: 11px; }
.feature-list small { margin-top: 1px; color: var(--muted); font-size: 9px; line-height: 1.45; }
.spec-button { width: calc(100% - 40px); margin: auto 20px 20px; }

@media (min-width: 981px) {
  .spec-card {
    position: sticky;
    top: 104px;
    z-index: 5;
    align-self: start;
    transition: box-shadow .25s ease, transform .25s ease;
  }

  .spec-card:hover {
    box-shadow: 0 24px 58px rgba(6, 26, 73, .19);
  }
}

.other-fleet { padding: 40px 0 46px; background: var(--soft); }
.other-heading { display: flex; justify-content: space-between; align-items: end; margin-bottom: 19px; }
.other-heading h2 { font-size: 25px; }
.other-heading > a { color: var(--red); font-size: 11px; font-weight: 800; text-transform: uppercase; }
.fleet-links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
.fleet-link { min-height: 94px; display: grid; grid-template-columns: 100px 1fr 24px; align-items: center; gap: 9px; padding: 8px 13px; border: 1px solid var(--border); border-radius: 9px; background: #fff; box-shadow: 0 5px 18px rgba(6,26,73,.08); }
.fleet-link img { width: 100px; height: 75px; object-fit: contain; }
.fleet-link > span { color: var(--navy); font-size: 11px; font-weight: 900; text-transform: uppercase; }
.fleet-link small { display: block; margin-top: 3px; color: var(--muted); font-size: 8px; font-weight: 700; }
.fleet-link b { color: var(--red); font-size: 18px; }

.site-footer { color: rgba(255,255,255,.79); background: var(--navy); }
.footer-grid { display: grid; grid-template-columns: 1.15fr 1fr .7fr 1.35fr 1.2fr; gap: 28px; padding: 35px 0 27px; }
.footer-brand { padding-right: 25px; border-right: 1px solid rgba(255,255,255,.16); }
.footer-brand > img { width: 160px; height: 84px; padding: 0; object-fit: contain; background: transparent; }
.footer-brand > p { margin: 11px 0 13px; font-size: 10px; }
.social-links { display: flex; gap: 7px; }
.social-links a { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; color: var(--navy); background: #fff; overflow: hidden; font-size: 11px; line-height: 1; font-weight: 900; }
.social-links img { width: 15px; height: 15px; object-fit: contain; }
.social-links a > span { font-size: 11px; line-height: 1; }
.footer-column { padding-right: 18px; border-right: 1px solid rgba(255,255,255,.16); }
.footer-column:last-child { padding-right: 0; border-right: 0; }
.footer-column h3 { position: relative; margin: 0 0 15px; padding-bottom: 8px; color: #fff; font-size: 12px; text-transform: uppercase; }
.footer-column h3::after { content: ""; position: absolute; left: 0; bottom: 0; width: 25px; height: 2px; background: var(--red); }
.footer-column ul { margin: 0; padding: 0; list-style: none; }
.sales-list li { display: flex; gap: 8px; margin-bottom: 9px; }
.sales-list li > span { width: 26px; height: 26px; display: grid; place-items: center; flex: 0 0 auto; color: #fff; border-radius: 50%; background: var(--red); font-size: 10px; }
.sales-list p { margin: 0; color: #fff; font-size: 9px; }
.sales-list a { display: block; color: rgba(255,255,255,.72); }
.info-list li { margin-bottom: 8px; font-size: 10px; }
.footer-address p { display: flex; align-items: flex-start; gap: 8px; margin: 0 0 12px; font-size: 9px; line-height: 1.6; }
.footer-address p img { width: 17px; height: 17px; object-fit: contain; flex: 0 0 auto; }
.footer-address a { min-width: 0; overflow-wrap: anywhere; }
.footer-map-preview { width: 100%; height: 92px; overflow: hidden; border: 1px solid rgba(255,255,255,.2); border-radius: 7px; background: rgba(255,255,255,.08); }
.footer-map-preview iframe { width: 100%; height: 100%; display: block; border: 0; }
.footer-map-link { display: inline-flex; margin-top: 8px; color: rgba(255,255,255,.78); font-size: 10px; font-weight: 700; }
.footer-bottom { padding: 10px 20px; border-top: 1px solid rgba(255,255,255,.15); border-bottom: 2px solid var(--red); text-align: center; font-size: 9px; }

@media (max-width: 980px) {
  .js .nav-menu { display: none; }
  .header-cta { margin-left: auto; }
  .hero-grid,
  .detail-grid { grid-template-columns: 1fr; }
  .detail-grid { width: min(100%, 880px); margin-inline: auto; }
  .hero-copy h1 { font-size: 44px; }
  .section-title { align-items: flex-start; flex-direction: column; }
  .fleet-links, .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Production accessibility, responsive navigation, and image handling */
[hidden] { display: none !important; }

html { scroll-padding-top: 82px; }
body { font-size: 16px; }

.skip-link {
  position: fixed;
  z-index: 3000;
  top: 10px;
  left: 10px;
  padding: 11px 16px;
  color: #fff;
  border-radius: 6px;
  background: var(--red);
  font-weight: 800;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

a:focus-visible,
button:focus-visible {
  outline: 3px solid #ffbf47;
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.menu-toggle {
  display: none;
  width: 45px;
  height: 42px;
  margin-left: auto;
  padding: 9px;
  border: 0;
  border-radius: 7px;
  background: #f1f3f8;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  border-radius: 8px;
  background: var(--navy);
  transition: transform .2s ease, opacity .2s ease;
}
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.button {
  font-size: 13px;
  transition: transform .2s ease, background-color .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-red:hover { background: var(--red-dark); }

.hero-tagline { font-size: 15px; line-height: 1.65; }
.breadcrumb,
.hero-metrics span,
.panel-heading > span,
.dimension-block > p span,
.dimension-row small,
.spec-metrics small,
.cold-badge small { font-size: 11px; }

.panel-heading div,
.dimension-block > p { font-size: 14px; }

.feature-list strong,
.fleet-link > span { font-size: 13px; }

.feature-list small,
.fleet-link small,
.sales-list p,
.info-list li,
.footer-address p,
.footer-map-link,
.footer-bottom,
.footer-brand > p { font-size: 12px; line-height: 1.55; }

.poster-window {
  display: grid;
  place-items: center;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .95), rgba(241, 244, 249, .95)),
    #f4f6fa;
}

.poster-link {
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  padding: 0;
}

.poster-link > img {
  width: 100%;
  height: 100%;
  padding: clamp(7px, 1vw, 14px);
  object-fit: contain;
  object-position: center;
  background: transparent;
}

.poster-fallback > img {
  width: min(85%, 620px);
  height: 390px;
}

.fallback-labels {
  width: min(88%, 660px);
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 15px;
  color: #fff;
  border-radius: 8px;
  background: var(--navy);
  text-align: center;
}

.fallback-labels strong {
  font-size: 14px;
  text-transform: uppercase;
}

.fallback-labels span {
  padding: 0;
  color: rgba(255, 255, 255, .78);
  background: transparent;
  font-size: 12px;
  font-weight: 500;
  text-transform: none;
}

@media (max-width: 980px) {
  .container { width: min(calc(100% - 34px), var(--container)); }
  .header-inner { min-height: 74px; gap: 14px; }
  .brand img { width: 126px; height: 58px; }
  .menu-toggle { display: block; }
  .js .nav-menu {
    position: absolute;
    top: 74px;
    left: 17px;
    right: 17px;
    display: none;
    margin: 0;
    padding: 10px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #fff;
    box-shadow: var(--shadow);
  }
  .js .nav-menu.open { display: flex; }
  .no-js .header-inner {
    flex-wrap: wrap;
    padding-bottom: 8px;
  }
  .no-js .menu-toggle { display: none; }
  .no-js .nav-menu {
    position: static;
    order: 3;
    width: 100%;
    display: flex;
    margin: 0;
    padding: 7px 0 0;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    overflow-x: auto;
    border: 0;
    border-top: 1px solid var(--border);
    border-radius: 0;
    background: #fff;
    box-shadow: none;
    scrollbar-width: thin;
  }
  .no-js .nav-menu a {
    flex: 0 0 auto;
    padding: 9px 11px;
    border: 0;
    border-radius: 6px;
    white-space: nowrap;
  }
  .nav-menu a {
    padding: 12px 14px;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
  }
  .nav-menu a:last-child { border-bottom: 0; }
  .nav-menu a::after { display: none; }
  .header-cta { margin-left: 0; }
  .hero-grid,
  .detail-grid { grid-template-columns: 1fr; }
  .detail-grid { width: min(100%, 880px); margin-inline: auto; }
  .hero-copy { padding-bottom: 8px; }
  .hero-vehicle { min-height: 340px; }
  .section-title { align-items: flex-start; flex-direction: column; gap: 14px; }
  .poster-window { height: auto; aspect-ratio: 4 / 3; }
  .poster-link > img { padding: 8px; }
  .fleet-links,
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-brand,
  .footer-column { padding-right: 0; border-right: 0; }
}

@media (max-width: 650px) {
  html { scroll-padding-top: 68px; }
  .container { width: min(calc(100% - 26px), var(--container)); }
  .header-inner { min-height: 68px; }
  .brand img { width: 112px; height: 52px; }
  .js .nav-menu { top: 68px; left: 13px; right: 13px; }
  .header-cta { display: none; }
  .hero-copy { padding-top: 30px; }
  .hero-copy h1 { font-size: 36px; line-height: 1.08; }
  .breadcrumb { flex-wrap: wrap; margin-bottom: 18px; }
  .hero-metrics { grid-template-columns: 1fr; }
  .hero-metrics div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
  .hero-metrics div:last-child { border-bottom: 0; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-vehicle { min-height: 290px; }
  .hero-vehicle > img { height: 245px; }
  .vehicle-glow { width: 100%; }
  .cold-badge { right: 0; bottom: 18px; min-width: 190px; }
  .section-title h2,
  .other-heading h2 { font-size: 25px; }
  .detail-section { padding: 42px 0 38px; }
  .detail-grid { gap: 18px; }
  .panel-heading { align-items: flex-start; flex-direction: column; justify-content: center; gap: 4px; padding: 12px 16px; }
  .panel-heading > span { line-height: 1.45; }
  .poster-window { height: auto; aspect-ratio: 4 / 3; }
  .poster-link > img { padding: 6px; }
  .poster-fallback > img { height: min(260px, 65%); }
  .spec-card-title { padding: 15px 17px; }
  .spec-card-title strong { font-size: 22px; }
  .dimension-block { padding: 16px 16px 12px; }
  .dimension-row { grid-template-columns: 92px 1fr; }
  .dimension-row > span { padding: 9px 10px; }
  .dimension-row strong { padding: 9px 10px; }
  .dimension-row strong { font-size: 12px; }
  .spec-metrics { grid-template-columns: 1fr; padding: 0 16px 14px; }
  .feature-list { padding: 0 16px 8px; }
  .feature-list > div { gap: 9px; padding: 9px 0; }
  .feature-list > div > span { width: 29px; height: 29px; font-size: 14px; }
  .spec-button { width: calc(100% - 32px); min-height: 52px; margin: auto 16px 16px; padding: 8px 12px; text-align: center; line-height: 1.35; }
  .fleet-links,
  .footer-grid { grid-template-columns: 1fr; }
  .other-heading { align-items: flex-start; flex-direction: column; gap: 9px; }
  .fleet-link { grid-template-columns: 90px 1fr 20px; }
  .footer-grid { gap: 22px; }
}

/* Preserve the exact capitalization defined by the dynamic site data. */
.hero-copy h1,
.spec-card-title strong,
.fleet-link > span { text-transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Alignment revision: keep Outer/Inner descriptions on one line. */
.dimension-row { grid-template-columns: 138px minmax(0, 1fr); }
.dimension-row > span {
  display: flex;
  align-items: baseline;
  gap: 6px;
  white-space: nowrap;
}
.dimension-row small {
  display: inline;
  flex: 0 0 auto;
  font-size: 8px;
  line-height: 1;
}
.wa-mark {
  width: 20px;
  height: 20px;
  display: block;
  border: 0;
  border-radius: 0;
  object-fit: contain;
}
.button img.button-icon {
  width: 19px;
  height: 19px;
  display: block;
  flex: 0 0 auto;
  object-fit: contain;
}
@media (max-width: 650px) {
  .dimension-row { grid-template-columns: 126px minmax(0, 1fr); }
  .dimension-row > span { gap: 4px; padding-inline: 9px; font-size: 10px; }
  .dimension-row small { font-size: 7px; }
}
