:root {
  --red: #FF8000;
  --red-deep: #DC4D01;
  --black: #080808;
  --ink: #181818;
  --muted: #6d6d6d;
  --soft: #f7f7f4;
  --line: rgba(8, 8, 8, 0.12);
  --shadow: 0 24px 70px rgba(8, 8, 8, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  background: #fff;
}

main {
  overflow-x: hidden;
}

body.menu-open,
body.loading {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.container-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  background: var(--black);
  color: #fff;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.site-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-mark {
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  border: 2px solid #fff;
  border-bottom-color: var(--red);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  transform: skewX(-10deg);
}

.loader-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 45%;
  height: 4px;
  background: var(--red);
  animation: loaderRun 1.2s ease-in-out infinite alternate;
}

@keyframes loaderRun {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(130%);
  }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  color: #fff;
}

.site-header.scrolled .main-nav {
  background: rgba(255, 255, 255, 0.96);
  color: var(--black);
  box-shadow: 0 14px 45px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(16px);
}

.site-header.scrolled .brand-emblem {
  border-color: var(--red);
}

.top-strip {
  background: rgba(8, 8, 8, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 0.78rem;
}

.top-strip-inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.top-strip p,
.top-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
}

.top-actions a,
.top-strip p {
  color: rgba(255, 255, 255, 0.86);
}

.top-strip i {
  color: var(--red);
}

.main-nav {
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.nav-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-emblem {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.9);
  background: var(--red);
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  transform: skewX(-10deg);
  box-shadow: 8px 8px 0 rgba(215, 93, 0, 0.25);
}

.brand-lockup strong,
.brand-lockup small {
  display: block;
}

.brand-lockup strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.45rem;
  line-height: 1;
}

.brand-lockup small {
  margin-top: 2px;
  font-size: 0.74rem;
  color: currentColor;
  opacity: 0.72;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: 0.9rem;
  font-weight: 700;
}

.nav-menu a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-menu a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.25s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-cta {
  min-height: 46px;
  padding: 0 18px;
  background: var(--red);
  color: #fff;
  clip-path: polygon(9% 0, 100% 0, 91% 100%, 0 100%);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border: 0;
  background: var(--red);
  color: #fff;
  place-items: center;
  padding: 11px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  display: block;
  background: #fff;
  margin: 4px 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero-section {
  position: relative;
  height: 85vh;
  min-height: 650px;
  max-height: 850px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.55), rgba(8, 8, 8, 0.08)),
    url("https://img.gaadicdn.com/images/carexteriorimages/930x620/Tata/Harrier-EV/9564/1759821423250/front-view-118.jpg") center / cover;
}

.hero-video,
.hero-scrim,
.hero-track-lines {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
  filter: saturate(0.7) contrast(1.1) grayscale(0.2);
}

.hero-section.video-failed {
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.92), rgba(8, 8, 8, 0.34)),
    url("https://img.gaadicdn.com/images/carexteriorimages/930x620/Tata/Harrier-EV/9564/1759821423250/front-view-118.jpg") center / cover;
}

.hero-section.video-failed .hero-video {
  display: none;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.9) 0%, rgba(8, 8, 8, 0.68) 42%, rgba(8, 8, 8, 0.24) 100%),
    linear-gradient(0deg, rgba(8, 8, 8, 0.75) 0%, rgba(8, 8, 8, 0.05) 34%, rgba(8, 8, 8, 0.38) 100%);
}

.hero-track-lines {
  opacity: 0.34;
  background-image:
    linear-gradient(115deg, transparent 0 43%, rgba(215, 0, 6, 0.85) 43% 43.35%, transparent 43.35% 100%),
    linear-gradient(115deg, transparent 0 70%, rgba(255, 255, 255, 0.32) 70% 70.2%, transparent 70.2% 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: center;
  gap: 58px;
  padding-top: 112px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-copy h1,
.section-heading h2,
.service-copy h2,
.experience-copy h2,
.book-copy h2,
.contact-panel h2 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  line-height: 0.95;
}

.hero-copy {
  min-width: 0;
}

.hero-copy h1 {
  margin-top: 15px;
  font-size: 6rem;
  max-width: 670px;
  text-transform: uppercase;
}

.hero-lead {
  max-width: 670px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.83);
  font-size: 1.06rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn-primary,
.btn-ghost {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
}

.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 10px 12px 0 rgba(215, 93, 0, 0.25);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(12px);
}

.btn-primary:hover,
.btn-ghost:hover {
  transform: translateY(-3px);
}

.btn-primary:hover {
  box-shadow: 14px 16px 0 rgba(215, 93, 0, 0.25);
}

.hero-panel {
  align-self: center;
  padding: 28px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.panel-head,
.pulse-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.panel-head {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  font-weight: 800;
  text-transform: uppercase;
}

.panel-head i {
  color: var(--red);
}

.pulse-row {
  min-height: 78px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.pulse-row:last-child {
  border-bottom: 0;
}

.pulse-row strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 3.1rem;
  line-height: 1;
}

.pulse-row span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.hero-bottom-bar {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 56px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--black);
  font-weight: 900;
  text-transform: uppercase;
}

.hero-bottom-bar span {
  display: grid;
  place-items: center;
  min-width: 0;
  border-right: 1px solid var(--line);
}

.hero-bottom-bar span:first-child {
  background: var(--red);
  color: #fff;
}

.quick-lane {
  background: var(--black);
  color: #fff;
}

.quick-lane-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.quick-card {
  min-height: 126px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  transition: background 0.25s ease, transform 0.25s ease;
}

.quick-card:hover {
  background: var(--red);
  transform: translateY(-4px);
}

.quick-card i {
  font-size: 1.5rem;
  color: var(--red);
  transition: color 0.25s ease;
}

.quick-card:hover i {
  color: #000;
}

.quick-card span {
  font-weight: 800;
  text-transform: uppercase;
}

.quick-card strong {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.88rem;
}

.section-shell {
  padding: 110px 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading-left {
  margin-left: 0;
  text-align: left;
}

.section-heading h2,
.service-copy h2,
.experience-copy h2,
.book-copy h2,
.contact-panel h2 {
  margin-top: 12px;
  font-size: 4rem;
  text-transform: uppercase;
}

.section-heading p,
.service-copy p,
.experience-copy p,
.book-copy p,
.contact-panel p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.vehicle-filter,
.book-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.filter-btn,
.book-tab {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 800;
  color: var(--black);
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.filter-btn.active,
.filter-btn:hover,
.book-tab.active,
.book-tab:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.vehicle-card {
  min-width: 0;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 16px 48px rgba(8, 8, 8, 0.08);
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease, opacity 0.25s ease;
}

.vehicle-card.is-hidden {
  display: none;
}

.vehicle-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.vehicle-image {
  position: relative;
  aspect-ratio: 1.22;
  background: linear-gradient(135deg, #fff, #ececea);
  overflow: hidden;
}

.vehicle-image::after {
  content: "";
  position: absolute;
  inset: auto -10% 0 -10%;
  height: 42%;
  background: linear-gradient(90deg, rgba(215, 0, 6, 0.12), rgba(8, 8, 8, 0.1));
  transform: skewY(-6deg);
  transform-origin: left bottom;
}

.vehicle-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.vehicle-card:hover .vehicle-image img {
  transform: scale(1.06);
}

.vehicle-image span {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 14px;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  background: var(--red);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.vehicle-image-red {
  background: linear-gradient(135deg, #fff4f4, #efefef);
}

.vehicle-image-dark {
  background: linear-gradient(135deg, #efefef, #d8d8d8);
}

.vehicle-body {
  display: grid;
  gap: 15px;
  padding: 22px;
}

.vehicle-type {
  margin: 0 0 5px;
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.vehicle-body h3 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
}

.vehicle-body p:not(.vehicle-type) {
  margin: 0;
  min-height: 76px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.vehicle-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.vehicle-specs span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 10px;
  background: var(--soft);
  border: 1px solid var(--line);
  font-size: 0.78rem;
  font-weight: 800;
}

.vehicle-specs i {
  color: var(--red);
}

.services-section {
  background:
    linear-gradient(90deg, #fff 0 50%, var(--black) 50% 100%);
  padding: 0;
}

.service-layout {
  min-height: 680px;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: center;
  gap: 58px;
}

.service-copy {
  padding: 110px 0;
}

.service-track {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 90px 0;
}

.service-step {
  position: relative;
  min-height: 246px;
  padding: 28px;
  background: #fff;
  color: var(--black);
  border-left: 5px solid var(--red);
  overflow: hidden;
}

.service-step::after {
  content: "";
  position: absolute;
  right: -48px;
  bottom: -48px;
  width: 132px;
  height: 132px;
  border: 20px solid rgba(215, 93, 0, 0.25);
  transform: rotate(12deg);
}

.service-step span {
  color: var(--red);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
}

.service-step i {
  position: absolute;
  top: 34px;
  right: 28px;
  color: var(--red);
  font-size: 1.65rem;
}

.service-step h3 {
  margin: 18px 0 10px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
}

.service-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.network-section {
  background: var(--soft);
}

.network-layout {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 24px;
  align-items: stretch;
}

.network-map {
  position: relative;
  min-height: 500px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.leaflet-map {
  position: absolute;
  inset: 0;
  z-index: 1;
  min-height: inherit;
}

.network-map .leaflet-container {
  width: 100%;
  height: 100%;
  min-height: inherit;
  font-family: "Inter", sans-serif;
  background: #f4f4f1;
}

.network-map .leaflet-tile-pane {
  filter: grayscale(0.78) saturate(0.48) contrast(1.06) brightness(1.04);
}

.network-map .leaflet-control-zoom {
  overflow: hidden;
  border: 1px solid rgba(8, 8, 8, 0.12);
  box-shadow: 0 16px 35px rgba(8, 8, 8, 0.14);
}

.network-map .leaflet-control-zoom a {
  width: 38px;
  height: 38px;
  border: 0;
  color: var(--black);
  font-weight: 900;
  line-height: 38px;
}

.network-map .leaflet-control-zoom a:hover {
  background: var(--red);
  color: #fff;
}

.network-map .leaflet-control-attribution {
  font-size: 0.62rem;
  color: rgba(8, 8, 8, 0.62);
}

.map-signature {
  position: absolute;
  z-index: 420;
  left: 24px;
  bottom: 18px;
  max-width: calc(100% - 48px);
  pointer-events: none;
  color: rgba(8, 8, 8, 0.11);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 4rem;
  font-weight: 800;
  line-height: 0.9;
  text-transform: uppercase;
}

.kamu-div-marker {
  width: 28px !important;
  height: 28px !important;
  margin-left: -14px !important;
  margin-top: -14px !important;
  border: 0;
  background: transparent;
}

.kamu-pin {
  position: relative;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--black);
  border: 4px solid #fff;
  box-shadow:
    0 0 0 10px rgba(215, 93, 0, 0.25),
    0 16px 28px rgba(8, 8, 8, 0.28);
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.kamu-pin::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(215, 93, 0, 0.25);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: markerPulse 1.8s ease-out infinite;
}

.kamu-div-marker.is-active .kamu-pin,
.kamu-div-marker:hover .kamu-pin {
  background: var(--red);
  transform: scale(1.14);
  box-shadow:
    0 0 0 12px rgba(215, 93, 0, 0.25),
    0 20px 32px rgba(215, 79, 0, 0.28);
}

.kamu-map-tooltip {
  padding: 7px 11px;
  background: var(--black);
  border: 0;
  border-radius: 0;
  color: #fff;
  box-shadow: 8px 8px 0 rgba(215, 79, 0, 0.28);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.kamu-map-tooltip.leaflet-tooltip-top::before {
  border-top-color: var(--black);
}

.kamu-map-tooltip.leaflet-tooltip-bottom::before {
  border-bottom-color: var(--black);
}

.kamu-map-tooltip.leaflet-tooltip-left::before {
  border-left-color: var(--black);
}

.kamu-map-tooltip.leaflet-tooltip-right::before {
  border-right-color: var(--black);
}

@keyframes markerPulse {
  from {
    opacity: 0.9;
    transform: translate(-50%, -50%) scale(0.65);
  }
  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.35);
  }
}

.network-detail {
  padding: 34px;
  background: var(--black);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.network-label {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.network-detail h3 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  text-transform: uppercase;
}

.network-detail p:not(.network-label) {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
}

.network-detail ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.network-detail li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.network-detail i {
  color: var(--red);
}

.location-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 20px;
}

.location-chip {
  min-height: 92px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
}

.location-chip strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.65rem;
  text-transform: uppercase;
}

.location-chip span {
  color: var(--muted);
  font-size: 0.88rem;
}

.experience-layout,
.book-layout,
.contact-grid {
  display: grid;
  gap: 34px;
  align-items: center;
}

.experience-layout {
  grid-template-columns: 0.82fr 1.18fr;
}

.experience-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.experience-metrics div {
  padding: 22px;
  background: var(--soft);
  border: 1px solid var(--line);
}

.experience-metrics strong {
  display: block;
  color: var(--red);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 3rem;
  line-height: 1;
}

.experience-metrics span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}

.gallery-stack {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: repeat(2, 240px);
  gap: 16px;
}

.gallery-stack figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--black);
}

.gallery-stack figure::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  pointer-events: none;
}

.gallery-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.gallery-stack figure:hover img {
  transform: scale(1.06);
}

.gallery-large {
  grid-row: span 2;
  clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
}

.book-section {
  padding: 110px 0;
  background: var(--black);
  color: #fff;
}

.book-layout {
  grid-template-columns: 0.72fr 1.28fr;
}

.book-copy p {
  color: rgba(255, 255, 255, 0.68);
}

.book-tabs {
  justify-content: flex-start;
  margin: 28px 0 0;
}

.book-tab {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
}

.lead-form {
  padding: 30px;
  background: #fff;
  color: var(--black);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.lead-form label {
  display: grid;
  gap: 9px;
  margin-bottom: 16px;
}

.lead-form span {
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--soft);
  color: var(--black);
  padding: 14px 15px;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(215, 104, 0, 0.1);
}

.form-submit {
  border: 0;
  cursor: pointer;
}

.contact-section {
  background: #fff;
}

.contact-grid {
  grid-template-columns: 1.35fr repeat(3, 1fr);
}

.contact-action {
  min-height: 210px;
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 26px;
  background: var(--soft);
  border: 1px solid var(--line);
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.contact-action:hover {
  transform: translateY(-6px);
  background: var(--red);
  color: #fff;
}

.contact-action i {
  color: var(--red);
  font-size: 2rem;
}

.contact-action:hover i {
  color: #fff;
}

.contact-action span {
  font-weight: 900;
  text-transform: uppercase;
}

.contact-action strong {
  font-size: 0.96rem;
  overflow-wrap: anywhere;
}

.site-footer {
  background: var(--black);
  color: #fff;
  padding: 70px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: 36px;
}

.footer-brand .brand-emblem {
  border-color: #fff;
}

.site-footer p {
  max-width: 390px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.75;
}

.site-footer h3 {
  margin: 0 0 18px;
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-footer a:not(.brand-lockup) {
  display: block;
  margin: 11px 0;
  color: rgba(255, 255, 255, 0.68);
  transition: color 0.25s ease;
}

.site-footer a:hover {
  color: #fff;
}

.social-row {
  display: flex;
  gap: 10px;
}

.social-row a {
  width: 42px;
  height: 42px;
  display: grid !important;
  place-items: center;
  margin: 0 !important;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.social-row a:hover {
  background: var(--red);
  border-color: var(--red);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 28px;
  margin-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.86rem;
}

.footer-bottom a {
  display: inline !important;
  margin: 0 !important;
  color: #fff !important;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(215, 93, 0, 0.9);
  text-underline-offset: 4px;
}

.footer-bottom a:hover {
  color: var(--red) !important;
}

.floating-actions {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  display: grid;
  gap: 10px;
}

.floating-actions a {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  background: var(--red);
  color: #fff;
  box-shadow: 0 14px 35px rgba(215, 79, 0, 0.28);
}

.floating-actions a:first-child {
  background: var(--black);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 110;
  padding: 14px 18px;
  background: var(--black);
  color: #fff;
  border-left: 4px solid var(--red);
  transform: translate(-50%, 90px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.28s ease, opacity 0.28s ease;
  box-shadow: var(--shadow);
}

.toast.show {
  transform: translate(-50%, 0);
  opacity: 1;
}

.reveal-up {
  opacity: 1;
  transform: none;
}

@media (max-width: 1100px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-panel {
    max-width: 540px;
  }

  .vehicle-grid,
  .quick-lane-grid,
  .location-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-section {
    background: var(--black);
    color: #fff;
  }

  .service-layout,
  .experience-layout,
  .book-layout,
  .network-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .service-copy {
    padding-bottom: 0;
  }

  .service-copy p {
    color: rgba(255, 255, 255, 0.72);
  }
}

@media (max-width: 860px) {
  .top-strip {
    display: none;
  }

  .nav-inner {
    min-height: 70px;
  }

  .nav-toggle {
    display: grid;
    position: fixed;
    top: 12px;
    right: 14px;
    z-index: 130;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 14px 20px 24px;
    background: rgba(255, 255, 255, 0.98);
    color: var(--black);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
    transform: translateY(-120%);
    transition: transform 0.28s ease;
  }

  .nav-menu.open {
    transform: translateY(0);
  }

  .nav-menu a {
    min-height: 52px;
    border-bottom: 1px solid var(--line);
  }

  .nav-menu a::after {
    display: none;
  }

  .nav-cta {
    margin-top: 12px;
    justify-content: center;
    border-bottom: 0 !important;
  }

  .hero-section {
    min-height: 640px;
  }

  .hero-content {
    width: calc(100vw - 28px);
    margin-left: 14px;
    margin-right: 14px;
    padding-top: 90px;
  }

  .hero-copy h1 {
    font-size: 4.2rem;
  }

  .hero-lead {
    font-size: 0.98rem;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .hero-panel {
    display: none;
  }

  .hero-bottom-bar {
    width: 100vw;
    right: auto;
    grid-template-columns: repeat(2, 1fr);
    min-height: 88px;
    overflow: hidden;
    font-size: 0.72rem;
  }

  .hero-bottom-bar span {
    padding: 0 8px;
    text-align: center;
  }

  .section-shell,
  .book-section {
    padding: 82px 0;
  }

  .section-heading h2,
  .service-copy h2,
  .experience-copy h2,
  .book-copy h2,
  .contact-panel h2 {
    font-size: 3rem;
  }

  .service-track,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .gallery-stack {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 230px);
  }

  .gallery-large {
    grid-row: auto;
    clip-path: none;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .container-shell {
    width: min(1180px, calc(100% - 28px));
  }

  .brand-lockup strong {
    font-size: 1.25rem;
  }

  .brand-lockup small {
    font-size: 0.68rem;
  }

  .brand-emblem {
    width: 42px;
    height: 42px;
  }

  .hero-section {
    min-height: 620px;
  }

  .hero-copy h1 {
    font-size: 3rem;
  }

  .hero-copy,
  .hero-lead,
  .hero-actions {
    max-width: 330px;
  }

  .hero-actions,
  .btn-primary,
  .btn-ghost {
    width: 100%;
  }

  .quick-lane-grid,
  .vehicle-grid,
  .location-strip,
  .experience-metrics,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .quick-card {
    min-height: 104px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .section-heading {
    text-align: left;
  }

  .section-heading h2,
  .service-copy h2,
  .experience-copy h2,
  .book-copy h2,
  .contact-panel h2 {
    font-size: 2.45rem;
  }

  .vehicle-filter,
  .book-tabs {
    justify-content: flex-start;
  }

  .filter-btn,
  .book-tab {
    flex: 1 1 calc(50% - 10px);
  }

  .network-map {
    min-height: 390px;
  }

  .map-signature {
    font-size: 2.8rem;
  }

  .network-map .kamu-map-tooltip {
    display: none;
  }

  .network-detail h3 {
    font-size: 2.55rem;
  }

  .lead-form {
    padding: 20px;
  }

  .toast {
    width: calc(100% - 32px);
    text-align: center;
  }
}

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

  .reveal-up {
    opacity: 1;
    transform: none;
  }
}

/* 2026 UI refinement: Montserrat system, sticky mega navigation and 85vh hero slider */
body,
button,
input,
select,
textarea {
  font-family: "Montserrat", sans-serif;
}

.loader-mark,
.brand-emblem,
.brand-lockup strong,
.hero-copy h1,
.section-heading h2,
.service-copy h2,
.experience-copy h2,
.book-copy h2,
.contact-panel h2,
.vehicle-body h3,
.service-step span,
.service-step h3,
.network-detail h3,
.location-chip strong,
.experience-metrics strong,
.site-footer h3,
.map-signature,
.kamu-map-tooltip {
  font-family: "Montserrat", sans-serif;
}

.top-strip {
  position: relative;
  z-index: 105;
  background: var(--black);
}

.top-socials {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-left: 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.top-socials a {
  color: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  left: auto;
  right: auto;
  color: var(--black);
  background: #fff;
  box-shadow: 0 1px 0 var(--line);
}

.site-header.scrolled .main-nav,
.main-nav {
  background: rgba(255, 255, 255, 0.98);
  color: var(--black);
  box-shadow: none;
  backdrop-filter: blur(18px);
}

.site-header.scrolled {
  box-shadow: 0 18px 46px rgba(8, 8, 8, 0.1);
}

.nav-inner {
  min-height: 78px;
}

.brand-emblem {
  border-color: var(--red);
}

.nav-menu {
  height: 78px;
  gap: 20px;
}

.mega-trigger {
  position: relative;
  height: 100%;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 0.78rem;
  font-weight: 700;
}

.nav-menu > a:not(.nav-cta) {
  font-size: 0.78rem;
}

.mega-trigger i {
  font-size: 0.6rem;
  transition: transform 0.24s ease;
}

.mega-trigger::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 3px;
  background: var(--red);
  transition: right 0.25s ease;
}

.mega-trigger.active::after,
.mega-trigger:hover::after {
  right: 0;
}

.mega-trigger.active i {
  transform: rotate(180deg);
}

.mega-panel {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  max-height: calc(100vh - 78px);
  overflow-y: auto;
  background: #fff;
  border-top: 1px solid var(--line);
  box-shadow: 0 30px 65px rgba(8, 8, 8, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
}

.mega-panel.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-layout {
  min-height: 330px;
  display: grid;
}

.mega-layout-about {
  grid-template-columns: 0.95fr 1.65fr;
}

.mega-intro,
.mega-car-feature,
.mega-promo {
  position: relative;
  overflow: hidden;
  background: var(--black);
  color: #fff;
}

.mega-intro {
  padding: 48px;
}

.mega-intro::after {
  content: "KM";
  position: absolute;
  right: -20px;
  bottom: -44px;
  color: rgba(255, 255, 255, 0.04);
  font-size: 10rem;
  font-weight: 900;
}

.mega-intro > span,
.mega-car-feature span {
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.mega-intro h2,
.mega-car-feature h2,
.mega-promo h2 {
  margin: 12px 0;
  font-size: 2rem;
  line-height: 1.12;
  font-weight: 800;
}

.mega-intro p,
.mega-promo p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  line-height: 1.7;
}

.mega-intro a,
.mega-car-feature a,
.mega-promo a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 13px;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mega-link-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 38px;
  padding: 45px 55px;
}

.mega-link-grid > a {
  min-height: 108px;
  display: flex;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid var(--line);
}

.mega-link-grid > a > i,
.compact-mega > a > i,
.more-mega > a > i {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  background: rgba(215, 93, 0, 0.25);
  color: var(--red);
}

.mega-link-grid span,
.compact-mega span,
.more-mega span {
  font-size: 0.82rem;
  font-weight: 800;
}

.mega-link-grid small,
.compact-mega small,
.more-mega small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 500;
  line-height: 1.5;
}

.cars-mega-layout {
  grid-template-columns: 1.15fr 1fr 0.85fr;
  gap: 42px;
  padding-right: 42px;
}

.mega-car-feature {
  min-height: 330px;
  display: flex;
  align-items: center;
  padding: 38px;
}

.mega-car-feature img {
  position: absolute;
  width: 470px;
  right: -85px;
  bottom: 8px;
  transform: scale(1.5);
}

.mega-models {
  padding: 42px 0;
}

.mega-models h3,
.ownership-mega h3 {
  margin: 0 0 15px;
  color: var(--red);
  font-size: 0.72rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.mega-models h3 i {
  margin-right: 8px;
}

.mega-models > div {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 22px;
}

.mega-models a,
.ownership-mega > div:not(.mega-promo) a {
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.75rem;
  font-weight: 600;
}

.mega-models a:hover,
.ownership-mega a:hover {
  color: var(--red);
}

.mega-subhead {
  margin-top: 24px !important;
}

.compact-mega,
.more-mega {
  min-height: 210px;
  display: grid;
  align-items: stretch;
  gap: 15px;
  padding: 35px 0;
}

.compact-mega {
  grid-template-columns: repeat(3, 1fr);
}

.compact-mega > a,
.more-mega > a {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  transition: transform 0.24s ease, border-color 0.24s ease;
}

.compact-mega > a:hover,
.more-mega > a:hover {
  transform: translateY(-5px);
  border-color: var(--red);
}

.ownership-mega {
  min-height: 310px;
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 50px;
  padding: 42px 0;
}

.ownership-mega > div:not(.mega-promo) {
  display: flex;
  flex-direction: column;
}

.mega-promo {
  padding: 36px;
}

.mega-promo > i {
  color: var(--red);
  font-size: 2rem;
}

.more-mega {
  grid-template-columns: repeat(4, 1fr);
}

.hero-section {
  position: relative;
  height: 85vh;
  min-height: 0;
  max-height: none;
  background: var(--black);
  isolation: isolate;
}

.hero-slides,
.hero-slide,
.hero-slide-media,
.hero-slide-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.02);
  transition: opacity 0.65s ease, transform 0.8s ease, visibility 0.65s ease;
}

.hero-slide.active {
  z-index: 2;
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.hero-slide-media img {
  object-fit: cover;
  object-position: center;
}

.hero-slide .hero-scrim {
  z-index: 1;
  background: linear-gradient(90deg, rgba(8, 8, 8, 0.96) 0%, rgba(8, 8, 8, 0.72) 40%, rgba(8, 8, 8, 0.08) 78%), linear-gradient(180deg, rgba(8, 8, 8, 0.7), transparent 34%);
}

.hero-slide-model,
.hero-slide-ev {
  background: radial-gradient(circle at 76% 44%, #3a3a3d 0, #171719 33%, #080808 72%);
}

.hero-slide-ev {
  background: radial-gradient(circle at 76% 44%, #492611 0, #1c1011 34%, #080808 72%);
}

.hero-model-shape {
  position: absolute;
  right: -8vw;
  top: 50%;
  width: 58vw;
  height: 58vw;
  max-width: 820px;
  max-height: 820px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  transform: translateY(-50%);
}

.hero-model-shape::before,
.hero-model-shape::after {
  content: "";
  position: absolute;
  border: inherit;
  border-radius: inherit;
  inset: 11%;
}

.hero-model-shape::after {
  inset: 23%;
  border-color: rgba(215, 75, 0, 0.42);
}

.hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  grid-template-columns: minmax(0, 0.85fr) minmax(440px, 1.15fr);
  gap: 36px;
  padding-top: 0;
  padding-bottom: 70px;
}

.hero-slide-company .hero-content {
  grid-template-columns: minmax(0, 730px) 1fr;
}

.hero-copy h1 {
  max-width: 780px;
  margin-top: 14px;
  font-size: clamp(2.9rem, 5.2vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-transform: none;
}

.hero-copy h1 em {
  color: var(--red);
  font-style: normal;
}

.hero-lead {
  max-width: 560px;
  margin-top: 18px;
  font-size: 0.9rem;
  line-height: 1.72;
}

.hero-actions {
  margin-top: 26px;
}

.hero-car-art {
  position: relative;
  min-width: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-car-art > span {
  position: absolute;
  top: 28%;
  right: 0;
  color: rgba(255, 255, 255, 0.055);
  font-size: clamp(4rem, 9vw, 9rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  white-space: nowrap;
}

.hero-car-art img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 760px;
  transform: scale(1.7);
  filter: drop-shadow(0 34px 30px rgba(0, 0, 0, 0.48));
}

.hero-slider-ui {
  position: absolute;
  z-index: 8;
  left: 50%;
  bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateX(-50%);
}

.hero-dots,
.hero-arrows {
  display: flex;
  align-items: center;
}

.hero-dots {
  gap: 8px;
}

.hero-dots button {
  width: 65px;
  height: 34px;
  padding: 0;
  border: 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: rgba(255, 255, 255, 0.52);
  text-align: left;
  cursor: pointer;
}

.hero-dots button.active {
  border-color: var(--red);
  color: #fff;
}

.hero-dots span {
  font-size: 0.66rem;
  font-weight: 800;
}

.hero-arrows button {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.hero-arrows button:last-child {
  background: var(--red);
  border-color: var(--red);
}

.news-strip {
  position: relative;
  z-index: 4;
  padding: 34px 0;
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}

.news-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.15fr 1.15fr;
  gap: 18px;
}

.news-heading,
.news-card {
  min-height: 180px;
}

.news-heading {
  padding: 22px 25px 22px 0;
}

.news-heading h2 {
  margin: 8px 0 20px;
  font-size: 1.65rem;
  line-height: 1.1;
}

.news-heading > a,
.news-card a,
.section-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.news-card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 22px;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(8, 8, 8, 0.1);
}

.news-card > i {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  background: var(--black);
  color: #fff;
  font-size: 1.4rem;
}

.news-card > div > span {
  color: var(--red);
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
}

.news-card h3 {
  margin: 6px 0;
  font-size: 1rem;
  line-height: 1.35;
}

.news-card p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.76rem;
}

.news-card-featured {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

.news-card-featured .news-date {
  width: 64px;
  height: 72px;
  display: grid;
  place-items: center;
  align-content: center;
  background: #fff;
  color: var(--black);
}

.news-date strong {
  font-size: 1.65rem;
  line-height: 1;
}

.news-date span {
  margin-top: 3px;
  color: var(--red) !important;
  font-size: 0.6rem !important;
  font-weight: 900 !important;
}

.news-card-featured > div > span,
.news-card-featured p,
.news-card-featured a {
  color: #fff;
}

.section-cta {
  margin-top: 22px;
}

.vehicle-carousel {
  position: relative;
}

.vehicle-grid {
  display: grid;
  grid-template-columns: none;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 36px) / 3);
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.vehicle-grid::-webkit-scrollbar {
  display: none;
}

.vehicle-card {
  scroll-snap-align: start;
}

.vehicle-image img {
  object-fit: contain;
  transform: scale(2.05);
}

.vehicle-card:hover .vehicle-image img {
  transform: scale(2.14);
}

.vehicle-arrow {
  position: absolute;
  z-index: 5;
  top: 50%;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--black);
  cursor: pointer;
  transform: translateY(-50%);
  box-shadow: 0 12px 30px rgba(8, 8, 8, 0.12);
}

.vehicle-prev {
  left: -23px;
}

.vehicle-next {
  right: -23px;
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.vehicle-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--red);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@media (max-width: 1050px) {
  .nav-menu {
    gap: 13px;
  }

  .nav-menu > a:not(.nav-cta),
  .mega-trigger {
    font-size: 0.68rem;
  }

  .brand-lockup small {
    display: none;
  }

  .hero-content {
    grid-template-columns: 0.85fr 1.15fr;
  }

  .news-layout {
    grid-template-columns: 0.62fr 1fr 1fr;
  }

  .vehicle-grid {
    grid-auto-columns: calc((100% - 18px) / 2);
  }
}

@media (max-width: 860px) {
  .top-strip {
    display: block;
  }

  .top-strip p,
  .top-actions > a:first-child,
  .top-socials a:nth-child(n + 3) {
    display: none;
  }

  .top-strip-inner {
    justify-content: flex-end;
  }

  .site-header {
    top: 0;
  }

  .nav-toggle {
    position: relative;
    top: auto;
    right: auto;
    z-index: 2;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    height: calc(100vh - 70px);
    overflow-y: auto;
    align-content: start;
  }

  .nav-menu > a,
  .mega-trigger {
    width: 100%;
    min-height: 52px;
    height: auto;
    justify-content: space-between;
    border: 0;
    border-bottom: 1px solid var(--line);
    font-size: 0.78rem;
  }

  .mega-trigger::after {
    display: none;
  }

  .mega-panel {
    position: absolute;
    top: 100%;
    height: calc(100vh - 70px);
    max-height: none;
    z-index: 140;
    transform: translateX(100%);
    opacity: 1;
    visibility: hidden;
  }

  .mega-panel.open {
    visibility: visible;
    transform: translateX(0);
  }

  .mega-layout-about,
  .cars-mega-layout,
  .ownership-mega,
  .compact-mega,
  .more-mega {
    grid-template-columns: 1fr;
  }

  .mega-intro,
  .mega-car-feature,
  .mega-promo {
    min-height: 230px;
  }

  .mega-link-grid {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .cars-mega-layout,
  .ownership-mega,
  .compact-mega,
  .more-mega {
    gap: 12px;
    padding: 18px;
  }

  .mega-models {
    padding: 16px 0;
  }

  .hero-section,
  .hero-section.video-failed {
    height: 85vh;
    min-height: 0;
    max-height: none;
  }

  .hero-content,
  .hero-slide-company .hero-content {
    width: min(100% - 28px, 1180px);
    grid-template-columns: 1fr;
    align-content: center;
    margin: 0 auto;
    padding: 20px 0 82px;
  }

  .hero-copy {
    position: relative;
    z-index: 4;
    align-self: center;
  }

  .hero-copy h1 {
    font-size: clamp(2.5rem, 10vw, 4.25rem);
  }

  .hero-car-art {
    position: absolute;
    inset: 28% -24% auto 32%;
    height: 52%;
    opacity: 0.7;
  }

  .hero-slide-model::after,
  .hero-slide-ev::after {
    content: "";
    position: absolute;
    z-index: 2;
    inset: 0;
    background: linear-gradient(90deg, rgba(8, 8, 8, 0.95), rgba(8, 8, 8, 0.48) 72%, rgba(8, 8, 8, 0.16));
  }

  .hero-model-shape {
    width: 90vw;
    height: 90vw;
  }

  .news-layout {
    grid-template-columns: 1fr 1fr;
  }

  .news-heading {
    grid-column: 1 / -1;
    min-height: auto;
    padding: 8px 0 15px;
  }
}

.mega-back {
  display: none;
}

@media (max-width: 860px) {
  .mega-back {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 20px;
    border: 0;
    background: var(--black);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
  }
}

/* Premium editorial redesign */
.container-shell {
  width: min(1280px, calc(100% - 52px));
}

.brand-lockup-new {
  gap: 10px;
}

.brand-symbol {
  width: 50px;
  height: 50px;
  display: block;
  flex: 0 0 50px;
}

.brand-symbol svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  filter: drop-shadow(7px 8px 0 rgba(215, 0, 6, 0.11));
}

.logo-frame {
  fill: var(--black);
}

.logo-road {
  fill: #fff;
}

.logo-cut {
  fill: var(--red);
}

.brand-wordmark {
  line-height: 1;
}

.brand-wordmark strong {
  font-size: 1.18rem;
  font-weight: 900;
  letter-spacing: 0.17em;
}

.brand-wordmark small {
  margin-top: 6px;
  color: var(--red);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.42em;
}

.site-footer .logo-frame {
  fill: #fff;
}

.site-footer .logo-road {
  fill: var(--black);
}

.nav-inner,
.nav-menu {
  min-height: 82px;
  height: 82px;
}

.nav-inner {
  gap: 16px;
}

.nav-menu {
  gap: 13px;
}

.nav-menu > a:not(.nav-cta),
.mega-trigger {
  font-size: 0.665rem;
  letter-spacing: -0.015em;
  white-space: nowrap;
}

.nav-discover {
  padding: 0 13px;
  background: #f2f1ef;
}

.nav-contact {
  height: 42px;
  padding: 0 15px;
  background: var(--red);
  color: #fff;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}

.nav-contact::after,
.nav-discover::after {
  display: none;
}

.mega-panel {
  top: 100%;
  border-top: 3px solid var(--red);
  background: rgba(255, 255, 255, 0.995);
}

.mega-panel::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  z-index: -1;
  background-image: linear-gradient(rgba(8, 8, 8, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(8, 8, 8, 0.025) 1px, transparent 1px);
  background-size: 42px 42px;
}

.mega-editorial {
  clip-path: polygon(0 0, 100% 0, calc(100% - 54px) 100%, 0 100%);
}

.mega-link-grid > a {
  position: relative;
  min-height: 118px;
  padding: 10px 16px;
  transition: background 0.22s ease, transform 0.22s ease;
}

.mega-link-grid > a:hover {
  z-index: 2;
  background: var(--soft);
  transform: translateX(6px);
}

.mega-link-grid > a > b,
.contact-mega > a > b {
  position: absolute;
  right: 12px;
  top: 12px;
  color: rgba(8, 8, 8, 0.16);
  font-size: 0.62rem;
}

.mega-car-feature p {
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
}

.ev-mega-grid {
  min-height: 330px;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 35px;
  padding: 30px 0;
}

.ev-mega-art {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 60% 50%, #4b2411, var(--black) 68%);
}

.ev-mega-art > span {
  position: absolute;
  left: 24px;
  top: 22px;
  color: #fff;
  font-size: 2rem;
  font-weight: 900;
}

.ev-mega-art img {
  width: 90%;
  transform: scale(1.65);
  filter: drop-shadow(0 20px 20px #000);
}

.ev-mega-grid .compact-mega {
  grid-template-columns: repeat(3, 1fr);
  padding: 0;
}

.offer-mega {
  min-height: 330px;
  display: grid;
  grid-template-columns: 0.65fr 1.25fr 0.75fr;
  align-items: center;
  gap: 55px;
  color: #fff;
  background: var(--red);
  padding: 38px 55px;
}

.offer-mega-number {
  position: relative;
  min-height: 220px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.offer-mega-number::before,
.offer-mega-number::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: 50%;
}

.offer-mega-number::after {
  inset: 42px;
}

.offer-mega-number strong {
  position: relative;
  z-index: 2;
  font-size: 5rem;
}

.offer-mega-number span {
  position: absolute;
  left: 14px;
  top: 12px;
  font-size: 0.56rem;
  font-weight: 800;
  text-transform: uppercase;
}

.mega-overline,
.service-mega-title > span,
.contact-mega > div > span {
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.offer-mega h2,
.service-mega h2,
.contact-mega h2 {
  margin: 10px 0;
  font-size: 2.35rem;
  line-height: 1.08;
  font-weight: 900;
}

.offer-mega p {
  max-width: 460px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
  line-height: 1.7;
}

.mega-action,
.service-mega-title > a {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-top: 10px;
  padding-bottom: 7px;
  border-bottom: 2px solid currentColor;
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.offer-mega-note {
  padding: 28px;
  background: #fff;
  color: var(--black);
}

.offer-mega-note i {
  color: var(--red);
  font-size: 1.8rem;
}

.offer-mega-note span {
  display: block;
  margin-top: 16px;
  font-size: 0.78rem;
  font-weight: 900;
}

.offer-mega-note p {
  color: var(--muted);
}

.finance-mega {
  min-height: 320px;
  display: grid;
  grid-template-columns: 1.15fr repeat(4, 1fr);
  gap: 12px;
  padding: 36px 0;
}

.finance-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  background: var(--black);
  color: #fff;
}

.finance-intro > span {
  color: var(--red);
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
}

.finance-intro h2 {
  margin: 10px 0;
  font-size: 1.65rem;
  line-height: 1.14;
}

.finance-intro p {
  color: #999;
  font-size: 0.72rem;
  line-height: 1.6;
}

.finance-mega > a {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
  padding: 25px;
  border: 1px solid var(--line);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.finance-mega > a::after {
  content: "";
  position: absolute;
  right: -25px;
  top: -25px;
  width: 75px;
  height: 75px;
  border: 14px solid rgba(215, 93, 0, 0.25);
  transform: rotate(15deg);
}

.finance-mega > a > i {
  color: var(--red);
  font-size: 1.55rem;
}

.finance-mega > a span {
  font-size: 0.76rem;
  font-weight: 900;
}

.finance-mega > a small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 500;
  line-height: 1.5;
}

.finance-mega > a:hover {
  background: var(--red);
  color: #fff;
  transform: translateY(-5px);
}

.finance-mega > a:hover i,
.finance-mega > a:hover small {
  color: #fff;
}

.service-mega {
  min-height: 330px;
  display: grid;
  grid-template-columns: 0.8fr 1.5fr;
  color: #fff;
  background: var(--black);
}

.service-mega-title {
  padding: 48px;
  background: var(--red);
}

.service-mega-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #2b2b2d;
}

.service-mega-links a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
  padding: 28px;
  background: var(--black);
  font-size: 0.7rem;
  font-weight: 800;
  transition: background 0.2s ease;
}

.service-mega-links a:hover {
  background: #1d1d20;
}

.service-mega-links i {
  color: var(--red);
  font-size: 1.5rem;
}

.discover-mega {
  min-height: 320px;
  display: grid;
  grid-template-columns: 1.1fr repeat(5, 1fr);
  gap: 1px;
  padding: 35px 0;
}

.discover-index {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  background: var(--red);
  color: #fff;
}

.discover-index span,
.discover-index small {
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
}

.discover-index strong {
  font-size: 5rem;
  line-height: 1;
}

.discover-mega > a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  transition: background 0.22s ease, color 0.22s ease;
}

.discover-mega > a:hover {
  background: var(--black);
  color: #fff;
}

.discover-mega > a > i {
  color: var(--red);
  font-size: 1.55rem;
}

.discover-mega span,
.contact-mega span {
  font-size: 0.75rem;
  font-weight: 900;
}

.discover-mega small,
.contact-mega small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.61rem;
  font-weight: 500;
  line-height: 1.5;
}

.discover-mega > a:hover small {
  color: #aaa;
}

.contact-mega {
  min-height: 300px;
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 12px;
  padding: 36px 0;
}

.contact-mega > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px;
  background: var(--black);
  color: #fff;
}

.contact-mega > div > span {
  color: var(--red);
}

.contact-mega > a {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
}

.contact-mega > a > i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: var(--red);
  color: #fff;
}

/* Branded kinetic CTA language */
.btn-primary,
.btn-ghost {
  position: relative;
  min-height: 56px;
  overflow: hidden;
  gap: 20px;
  padding: 0 25px 0 29px;
  border: 0;
  clip-path: polygon(13px 0, 100% 0, calc(100% - 13px) 100%, 0 100%);
  font-size: 0.7rem;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  isolation: isolate;
}

.btn-primary::before,
.btn-ghost::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--black);
  transform: translateX(-105%) skewX(-12deg);
  transition: transform 0.38s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.btn-primary:hover::before,
.btn-ghost:hover::before {
  transform: translateX(0) skewX(0);
}

.btn-primary i,
.btn-ghost i {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  font-size: 0.65rem;
  transition: transform 0.3s ease;
}

.btn-primary:hover i,
.btn-ghost:hover i {
  transform: translateX(4px) rotate(-18deg);
}

.btn-ghost {
  background: rgba(8, 8, 8, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.32);
}

.btn-ghost::before {
  background: var(--red);
}

.section-cta,
.vehicle-cta,
.signal-link {
  position: relative;
  gap: 14px;
  padding: 11px 0;
  color: inherit;
}

.section-cta::after,
.vehicle-cta::after,
.signal-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 42%;
  height: 2px;
  background: var(--red);
  transition: width 0.3s ease;
}

.section-cta:hover::after,
.vehicle-cta:hover::after,
.signal-link:hover::after {
  width: 100%;
}

.kinetic-cta {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.kinetic-cta b {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--red);
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  transition: transform 0.25s ease;
}

.kinetic-cta:hover b {
  transform: translateX(7px);
}

/* Expanded editorial news bento */
.news-strip {
  padding: 100px 0 110px;
  background: #f3f2ef;
}

.news-topline {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr auto;
  align-items: end;
  gap: 40px;
  margin-bottom: 38px;
}

.news-topline h2 {
  margin: 8px 0 0;
  font-size: clamp(2.5rem, 4.4vw, 4.7rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.news-topline > p {
  max-width: 390px;
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.7;
}

.news-bento {
  display: grid;
  grid-template-columns: 1.5fr 0.92fr 0.48fr;
  gap: 16px;
  min-height: 540px;
}

.news-lead {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  overflow: hidden;
  background: var(--black);
  color: #fff;
}

.news-lead-art {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 50% 50%, #3b3b40, #111 68%);
}

.news-lead-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0 54%, rgba(215, 86, 0, 0.48) 54% 54.5%, transparent 54.5%);
}

.news-lead-art img {
  position: relative;
  z-index: 2;
  width: 120%;
  max-width: none;
  margin-left: -10%;
  transform: scale(1.75);
  filter: drop-shadow(0 34px 22px rgba(0, 0, 0, 0.55));
}

.news-orbit {
  position: absolute;
  width: 320px;
  height: 320px;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.news-orbit::before,
.news-orbit::after {
  content: "";
  position: absolute;
  inset: 13%;
  border: inherit;
  border-radius: inherit;
}

.news-orbit::after {
  inset: 28%;
  border-color: rgba(215, 82, 0, 0.55);
}

.news-watermark {
  position: absolute;
  left: -12px;
  bottom: -30px;
  color: rgba(255, 255, 255, 0.045);
  font-size: 6.8rem;
  font-weight: 900;
}

.news-lead-copy {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px;
}

.news-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.news-meta span {
  color: var(--red);
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.news-meta time {
  color: #8b8b8e;
  font-size: 0.58rem;
  text-transform: uppercase;
}

.news-lead h3 {
  margin: 22px 0 16px;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.news-lead p {
  margin: 0 0 28px;
  color: #a5a5a8;
  font-size: 0.74rem;
  line-height: 1.75;
}

.news-side-stack {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  gap: 16px;
}

.news-tile {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 22px;
  padding: 30px;
  background: #fff;
  border: 1px solid rgba(8, 8, 8, 0.08);
}

.news-tile-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  background: var(--red);
  color: #fff;
  clip-path: polygon(13px 0, 100% 0, calc(100% - 13px) 100%, 0 100%);
  font-size: 1.5rem;
}

.news-tile h3 {
  margin: 10px 0 7px;
  font-size: 1.15rem;
  line-height: 1.25;
}

.news-tile p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.68rem;
}

.news-tile a,
.news-brief a {
  color: var(--red);
  font-size: 0.62rem;
  font-weight: 900;
  text-transform: uppercase;
}

.news-tile-service {
  grid-template-columns: 45px 1fr;
  background: #deddd9;
}

.news-tile-index {
  align-self: start;
  color: var(--red);
  font-size: 2.5rem;
  font-weight: 900;
}

.tile-watermark {
  position: absolute;
  right: -15px;
  bottom: -18px;
  color: rgba(8, 8, 8, 0.05);
  font-size: 6rem;
}

.news-brief {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 27px;
  background: var(--red);
  color: #fff;
}

.news-brief > span {
  font-size: 0.61rem;
  font-weight: 900;
  text-transform: uppercase;
}

.news-brief > strong {
  margin-top: auto;
  font-size: clamp(4rem, 7vw, 6.7rem);
  line-height: 1;
}

.news-brief h3 {
  margin: 14px 0 24px;
  font-size: 1.15rem;
  line-height: 1.25;
}

.news-brief a {
  color: #fff;
}

/* Recompose the remaining sections */
.fleet-section {
  position: relative;
  background: #0b0b0d;
  color: #fff;
}

.fleet-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
}

.fleet-section .container-shell {
  position: relative;
}

.fleet-section .section-heading {
  max-width: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  text-align: left;
}

.fleet-section .section-heading .section-kicker,
.fleet-section .section-heading h2 {
  grid-column: 1;
}

.fleet-section .section-heading p,
.fleet-section .section-heading .section-cta {
  grid-column: 2;
  max-width: 470px;
  justify-self: end;
}

.fleet-section .section-heading p {
  color: #999;
}

.fleet-section .section-cta {
  justify-self: start;
  margin-left: calc(100% - 470px);
}

.fleet-section .vehicle-filter {
  justify-content: flex-start;
}

.fleet-section .filter-btn {
  background: transparent;
  color: #fff;
  border-color: #333;
}

.fleet-section .filter-btn.active,
.fleet-section .filter-btn:hover {
  background: var(--red);
  border-color: var(--red);
}

.vehicle-card {
  position: relative;
  overflow: visible;
  background: #151518;
  color: #fff;
  border: 1px solid #29292d;
  box-shadow: none;
}

.vehicle-card::before {
  content: attr(data-model);
  position: absolute;
  left: 20px;
  top: 18px;
  z-index: 3;
  color: rgba(255, 255, 255, 0.1);
  font-size: 2.1rem;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.vehicle-card:nth-child(even) {
  margin-top: 24px;
  transform: none;
}

.vehicle-card:nth-child(even):hover {
  transform: translateY(-8px);
}

.vehicle-image {
  aspect-ratio: 1.32;
  background: radial-gradient(circle at 50% 48%, #3a3a3f, #18181b 64%);
}

.vehicle-image::before {
  content: "";
  position: absolute;
  right: -20%;
  bottom: -30%;
  width: 78%;
  height: 78%;
  border: 1px solid rgba(215, 93, 0, 0.45);
  border-radius: 50%;
}

.vehicle-image::after {
  height: 30%;
  background: linear-gradient(90deg, var(--red), transparent);
  opacity: 0.45;
}

.vehicle-image span {
  top: auto;
  bottom: 15px;
  left: 18px;
  min-height: 26px;
  background: #fff;
  color: var(--black);
}

.vehicle-body {
  min-height: 285px;
  padding: 26px;
}

.vehicle-body h3 {
  font-size: 1.55rem;
  text-transform: none;
}

.vehicle-body p:not(.vehicle-type) {
  min-height: 50px;
  color: #999;
  font-size: 0.76rem;
}

.vehicle-specs span {
  background: #202024;
  color: #c8c8ca;
  border-color: #303035;
}

.vehicle-cta {
  margin-top: auto;
  color: #fff;
}

.services-section {
  background: #f3f2ef;
  color: var(--black);
}

.service-layout {
  min-height: 760px;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 78px;
}

.service-copy {
  position: sticky;
  top: 120px;
  align-self: start;
  padding: 130px 0;
}

.service-track {
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: 80px 0;
}

.service-step {
  min-height: 300px;
  padding: 34px;
  background: #fff;
  border: 0;
  box-shadow: 0 18px 50px rgba(8, 8, 8, 0.07);
}

.service-step:nth-child(2),
.service-step:nth-child(4) {
  margin-top: 38px;
  transform: none;
}

.service-step span {
  color: rgba(8, 8, 8, 0.08);
  font-size: 4.5rem;
}

.service-step > i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: var(--red);
  color: #fff;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}

.network-section {
  background: #fff;
}

.network-section .section-heading-left {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  max-width: none;
  align-items: end;
}

.network-section .section-heading-left > span,
.network-section .section-heading-left > h2 {
  grid-column: 1;
}

.network-section .section-heading-left > p,
.network-section .section-heading-left > a {
  grid-column: 2;
  margin-left: 45px;
}

.network-layout {
  position: relative;
  display: block;
}

.network-map {
  min-height: 620px;
  width: 82%;
  box-shadow: none;
}

.network-detail {
  position: absolute;
  z-index: 0;
  right: 0;
  top: 50%;
  width: 34%;
  min-height: 390px;
  transform: translateY(-50%);
  box-shadow: 0 28px 65px rgba(8, 8, 8, 0.28);
}

.location-strip {
  width: 82%;
  margin-top: 0;
}

.location-chip {
  border-top: 0;
}

.experience-section {
  background: var(--black);
  color: #fff;
}

.experience-layout {
  grid-template-columns: 0.68fr 1.32fr;
  gap: 75px;
}

.experience-copy p {
  color: #999;
}

.experience-metrics div {
  background: #18181b;
  border-color: #2d2d31;
}

.gallery-stack {
  grid-template-columns: 1.35fr 0.65fr;
  grid-template-rows: repeat(2, 270px);
  gap: 10px;
  transform: rotate(-1deg);
}

.gallery-stack figure {
  border: 6px solid #fff;
}

.book-section {
  position: relative;
  overflow: hidden;
  background: var(--red);
}

.book-section::after {
  content: "BOOK";
  position: absolute;
  right: -40px;
  bottom: -90px;
  color: rgba(255, 255, 255, 0.08);
  font-size: 14rem;
  font-weight: 900;
}

.book-layout {
  position: relative;
  z-index: 2;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 75px;
}

.book-copy .section-kicker,
.book-copy p {
  color: #fff;
}

.book-tab.active,
.book-tab:hover {
  background: var(--black);
  border-color: var(--black);
}

.lead-form {
  padding: 42px;
  clip-path: polygon(22px 0, 100% 0, 100% calc(100% - 22px), calc(100% - 22px) 100%, 0 100%, 0 22px);
}

.contact-section {
  background: #f3f2ef;
}

.contact-action {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  background: #fff;
  border: 0;
  box-shadow: 0 15px 40px rgba(8, 8, 8, 0.06);
}

.contact-action::after {
  content: "";
  position: absolute;
  right: -35px;
  bottom: -35px;
  width: 100px;
  height: 100px;
  border: 18px solid rgba(215, 111, 0, 0.09);
  transform: rotate(18deg);
}

.section-heading h2,
.service-copy h2,
.experience-copy h2,
.book-copy h2,
.contact-panel h2 {
  letter-spacing: -0.055em;
  text-transform: none;
}

.quick-lane {
  position: relative;
  overflow: hidden;
  padding: 30px 0;
  background: #fff;
  color: var(--black);
}

.quick-lane::before {
  content: "QUICK ACCESS";
  position: absolute;
  right: -15px;
  bottom: -42px;
  color: rgba(8, 8, 8, 0.035);
  font-size: 7rem;
  font-weight: 900;
  white-space: nowrap;
}

.quick-lane-grid {
  position: relative;
  gap: 10px;
}

.quick-card {
  position: relative;
  overflow: hidden;
  min-height: 150px;
  align-content: end;
  padding: 25px 26px;
  background: #f1f0ed;
  border: 0;
  clip-path: polygon(14px 0, 100% 0, calc(100% - 14px) 100%, 0 100%);
}

.quick-card:first-child {
  background: var(--red);
  color: #fff;
}

.quick-card:nth-child(2) {
  background: var(--black);
  color: #fff;
}

.quick-card::after {
  content: "↗";
  position: absolute;
  right: 22px;
  top: 20px;
  font-size: 1.15rem;
  transition: transform 0.25s ease;
}

.quick-card:hover::after {
  transform: translate(4px, -4px);
}

.quick-card:hover {
  background: #252529;
  color: #fff;
  transform: translateY(-5px);
}

.quick-card i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  background: #fff;
  color: var(--red);
  clip-path: polygon(9px 0, 100% 0, calc(100% - 9px) 100%, 0 100%);
}

.quick-card span {
  font-size: 0.74rem;
}

.quick-card strong {
  color: currentColor;
  font-size: 0.66rem;
  opacity: 0.58;
}

@media (max-width: 1180px) {
  .brand-lockup small {
    display: block;
  }

  .nav-toggle {
    display: grid;
    position: relative;
    top: auto;
    right: auto;
    z-index: 2;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: calc(100vh - 82px);
    display: grid;
    align-content: start;
    gap: 0;
    padding: 14px 24px 30px;
    overflow-y: auto;
    background: #fff;
    color: var(--black);
    transform: translateY(-120%);
    transition: transform 0.28s ease;
  }

  .nav-menu.open {
    transform: translateY(0);
  }

  .nav-menu > a,
  .mega-trigger {
    width: 100%;
    min-height: 53px;
    height: auto;
    display: flex;
    justify-content: space-between;
    padding: 0;
    border-bottom: 1px solid var(--line);
    font-size: 0.74rem;
  }

  .nav-discover,
  .nav-contact {
    background: transparent;
    color: var(--black);
    clip-path: none;
  }

  .mega-panel {
    position: absolute;
    top: 100%;
    height: calc(100vh - 82px);
    max-height: none;
    z-index: 140;
    opacity: 1;
    visibility: hidden;
    transform: translateX(100%);
  }

  .mega-panel.open {
    visibility: visible;
    transform: translateX(0);
  }

  .mega-back {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 22px;
    border: 0;
    background: var(--black);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 900;
    text-transform: uppercase;
  }

  .mega-layout-about,
  .cars-mega-layout,
  .ev-mega-grid,
  .offer-mega,
  .finance-mega,
  .service-mega,
  .discover-mega,
  .contact-mega {
    grid-template-columns: 1fr 1fr;
  }

  .mega-intro,
  .mega-car-feature,
  .ev-mega-art,
  .offer-mega > div:nth-child(2),
  .finance-intro,
  .service-mega-title,
  .discover-index,
  .contact-mega > div {
    grid-column: 1 / -1;
  }

  .cars-mega-layout,
  .offer-mega,
  .finance-mega,
  .service-mega,
  .discover-mega,
  .contact-mega {
    gap: 12px;
    padding: 20px;
  }

  .ev-mega-grid {
    padding: 20px;
  }

  .service-mega-links {
    grid-column: 1 / -1;
  }

  .news-bento {
    grid-template-columns: 1.35fr 0.85fr;
  }

  .news-brief {
    grid-column: 1 / -1;
    min-height: 210px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: end;
    gap: 40px;
  }

  .news-brief > strong {
    margin-top: 0;
  }

  .service-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .service-copy {
    position: static;
    padding: 95px 0 20px;
  }

  .service-track {
    padding-top: 30px;
  }
}

@media (max-width: 820px) {
  .container-shell {
    width: min(100% - 30px, 1280px);
  }

  .top-strip {
    display: none;
  }

  .news-strip {
    padding: 75px 0;
  }

  .news-topline {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 15px;
  }

  .news-bento,
  .news-lead {
    grid-template-columns: 1fr;
  }

  .news-lead-art {
    min-height: 360px;
  }

  .news-side-stack {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .news-tile {
    grid-template-columns: 1fr;
  }

  .fleet-section .section-heading,
  .network-section .section-heading-left {
    display: block;
  }

  .fleet-section .section-heading p,
  .fleet-section .section-heading .section-cta,
  .network-section .section-heading-left > p,
  .network-section .section-heading-left > a {
    margin-left: 0;
    justify-self: auto;
  }

  .network-map,
  .location-strip {
    width: 100%;
  }

  .network-map {
    min-height: 470px;
  }

  .network-detail {
    position: relative;
    top: auto;
    right: auto;
    width: calc(100% - 30px);
    min-height: 320px;
    margin: -70px auto 0;
    transform: none;
  }

  .experience-layout {
    grid-template-columns: 1fr;
  }

  .book-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .brand-symbol {
    width: 43px;
    height: 43px;
    flex-basis: 43px;
  }

  .brand-wordmark strong {
    font-size: 0.98rem;
  }

  .brand-wordmark small {
    font-size: 0.48rem;
  }

  .mega-layout-about,
  .cars-mega-layout,
  .ev-mega-grid,
  .offer-mega,
  .finance-mega,
  .service-mega,
  .discover-mega,
  .contact-mega,
  .ev-mega-grid .compact-mega,
  .service-mega-links {
    grid-template-columns: 1fr;
  }

  .mega-link-grid {
    grid-template-columns: 1fr;
  }

  .news-lead-art {
    min-height: 270px;
  }

  .news-lead-copy {
    padding: 30px;
  }

  .news-side-stack {
    grid-template-columns: 1fr;
  }

  .news-brief {
    display: flex;
    min-height: 290px;
  }

  .service-track {
    grid-template-columns: 1fr;
  }

  .service-step:nth-child(2),
  .service-step:nth-child(4) {
    margin-top: 0;
    transform: none;
  }

  .gallery-stack {
    transform: none;
  }
}

/* Hero slider scale and swipe interaction refinement */
.hero-section {
  touch-action: pan-y;
  cursor: grab;
  outline: none;
  user-select: none;
}

.hero-section.is-swiping {
  cursor: grabbing;
}

.hero-section.is-swiping .hero-slide.active {
  transform: translateX(var(--hero-drag, 0)) scale(1);
  transition-duration: 0.12s;
}

.hero-slide-model .hero-car-art img,
.hero-slide-ev .hero-car-art img {
  width: 118%;
  max-width: 980px;
  transform: scale(2.62);
  transform-origin: center;
  transition: transform 0.8s cubic-bezier(0.2, 0.75, 0.2, 1), opacity 0.45s ease;
}

.hero-slide:not(.active) .hero-car-art img {
  opacity: 0;
}

.hero-slide.active .hero-car-art img {
  opacity: 1;
}

.hero-section.slide-next .hero-slide.active .hero-car-art img {
  animation: heroCarFromRight 0.75s cubic-bezier(0.2, 0.75, 0.2, 1) both;
}

.hero-section.slide-prev .hero-slide.active .hero-car-art img {
  animation: heroCarFromLeft 0.75s cubic-bezier(0.2, 0.75, 0.2, 1) both;
}

@keyframes heroCarFromRight {
  from { opacity: 0; transform: translateX(70px) scale(2.48); }
  to { opacity: 1; transform: translateX(0) scale(2.62); }
}

@keyframes heroCarFromLeft {
  from { opacity: 0; transform: translateX(-70px) scale(2.48); }
  to { opacity: 1; transform: translateX(0) scale(2.62); }
}

@media (max-width: 860px) {
  .hero-slide-model .hero-car-art img,
  .hero-slide-ev .hero-car-art img {
    width: 110%;
    transform: scale(2.25);
  }

  @keyframes heroCarFromRight {
    from { opacity: 0; transform: translateX(45px) scale(2.12); }
    to { opacity: 1; transform: translateX(0) scale(2.25); }
  }

  @keyframes heroCarFromLeft {
    from { opacity: 0; transform: translateX(-45px) scale(2.12); }
    to { opacity: 1; transform: translateX(0) scale(2.25); }
  }
}

/* Precision refinement: rounded CTAs, compact garage, network console, Tata-only experience */
.btn-primary,
.btn-ghost {
  min-height: 54px;
  padding: 0 9px 0 24px;
  border-radius: 999px;
  clip-path: none;
  box-shadow: none;
}

.btn-primary {
  background: linear-gradient(135deg, #FF8000, var(--red-deep));
  box-shadow: 0 12px 30px rgba(215, 93, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.btn-primary::before,
.btn-ghost::before {
  border-radius: inherit;
  transform: scaleX(0);
  transform-origin: right;
}

.btn-primary:hover::before,
.btn-ghost:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-primary i,
.btn-ghost i {
  width: 38px;
  height: 38px;
  border: 0;
  background: #fff;
  color: var(--black);
  box-shadow: 0 4px 12px rgba(8, 8, 8, 0.18);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.section-cta,
.vehicle-cta,
.signal-link {
  width: fit-content;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding: 5px 7px 5px 17px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.63rem;
  letter-spacing: 0.045em;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.section-cta::after,
.vehicle-cta::after,
.signal-link::after {
  position: static;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border-radius: 50%;
  background: var(--red);
  content: "↗";
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 0.78rem;
  line-height: 1;
}

.section-cta > i,
.vehicle-cta > i,
.signal-link > i {
  display: none;
}

.section-cta:hover,
.vehicle-cta:hover,
.signal-link:hover {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
  transform: translateY(-2px);
}

.section-cta:hover::after,
.vehicle-cta:hover::after,
.signal-link:hover::after {
  width: 30px;
  background: #fff;
  color: var(--red);
}

.kinetic-cta {
  min-height: 50px;
  gap: 16px;
  padding: 6px 7px 6px 20px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
}

.kinetic-cta b {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  clip-path: none;
}

.nav-contact {
  border-radius: 999px;
  clip-path: none;
}

.mega-action,
.service-mega-title > a,
.map-direction-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 5px 7px 5px 17px;
  border: 1px solid currentColor;
  border-radius: 999px;
  text-decoration: none;
}

.map-direction-cta i {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
}

/* Compact, equal-height flagship garage grid */
.fleet-section {
  padding: 72px 0 76px;
}

.fleet-section .section-heading {
  margin-bottom: 22px;
}

.fleet-section .section-heading h2 {
  font-size: clamp(2.5rem, 4vw, 3.8rem);
}

.fleet-section .section-heading p {
  margin-top: 8px;
}

.fleet-section .section-heading .section-cta {
  margin-top: 14px;
}

.fleet-section .vehicle-filter {
  gap: 7px;
  margin-bottom: 18px;
}

.fleet-section .filter-btn {
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 0.68rem;
}

.vehicle-carousel {
  padding: 0;
}

.vehicle-arrow {
  display: none;
}

.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: row;
  grid-auto-columns: auto;
  gap: 12px;
  overflow: visible;
  scroll-snap-type: none;
}

.vehicle-card,
.vehicle-card:nth-child(even) {
  height: 100%;
  min-width: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  transform: none;
}

.vehicle-card:hover,
.vehicle-card:nth-child(even):hover {
  transform: translateY(-6px);
}

.vehicle-card::before {
  left: 15px;
  top: 13px;
  font-size: 1.45rem;
}

.vehicle-image {
  aspect-ratio: 1.42;
}

.vehicle-image span {
  left: 13px;
  bottom: 11px;
  min-height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  font-size: 0.6rem;
}

.vehicle-body {
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding: 17px;
}

.vehicle-type {
  font-size: 0.62rem;
}

.vehicle-body h3 {
  font-size: 1.3rem;
}

.vehicle-body p:not(.vehicle-type) {
  min-height: 38px;
  font-size: 0.68rem;
  line-height: 1.55;
}

.vehicle-specs {
  gap: 5px;
}

.vehicle-specs span {
  min-height: 29px;
  padding: 0 8px;
  border-radius: 999px;
  font-size: 0.62rem;
}

.vehicle-cta {
  margin-top: auto;
}

/* Dealership network control map */
.network-section {
  padding: 82px 0;
  background: #f4f3f0;
}

.network-section .section-heading-left {
  margin-bottom: 30px;
}

.network-layout {
  padding: 10px;
  border: 1px solid rgba(8, 8, 8, 0.09);
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(8, 8, 8, 0.1);
}

.network-map {
  width: 100%;
  min-height: 590px;
  border: 0;
  border-radius: 22px;
  overflow: hidden;
  background: #dddcd8;
}

.network-map::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 400;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: inherit;
  box-shadow: inset 0 0 80px rgba(8, 8, 8, 0.08);
}

.network-map .leaflet-tile-pane {
  filter: grayscale(1) contrast(1.05) brightness(0.93);
}

.network-map .leaflet-control-zoom {
  overflow: hidden;
  border: 0;
  border-radius: 14px;
  box-shadow: 0 12px 35px rgba(8, 8, 8, 0.2);
}

.network-map .leaflet-control-zoom a {
  width: 42px;
  height: 42px;
  line-height: 42px;
}

.network-map .leaflet-control-attribution {
  margin: 0 12px 9px 0;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
}

.map-toolbar {
  position: absolute;
  z-index: 460;
  left: 18px;
  right: 18px;
  top: 18px;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 8px 10px 8px 15px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 15px 40px rgba(8, 8, 8, 0.12);
  backdrop-filter: blur(16px);
}

.map-toolbar > div {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 2px 8px;
}

.map-toolbar strong {
  font-size: 0.7rem;
  text-transform: uppercase;
}

.map-toolbar small {
  grid-column: 2;
  color: var(--muted);
  font-size: 0.58rem;
}

.map-live-dot {
  grid-row: 1 / span 2;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #22a55b;
  box-shadow: 0 0 0 5px rgba(34, 165, 91, 0.14);
}

.map-mode {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--black);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
}

.map-mode i {
  color: var(--red);
}

.map-legend {
  position: absolute;
  z-index: 460;
  left: 18px;
  bottom: 18px;
  display: flex;
  gap: 15px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(8, 8, 8, 0.86);
  color: #fff;
  font-size: 0.56rem;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.map-legend span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.legend-dot {
  width: 7px;
  height: 7px;
  display: block;
  border-radius: 50%;
}

.legend-dot.primary {
  background: var(--red);
  box-shadow: 0 0 0 3px rgba(215, 82, 0, 0.25);
}

.legend-dot.route {
  width: 15px;
  height: 2px;
  border-radius: 0;
  background: #fff;
}

.map-signature {
  left: auto;
  right: 28px;
  bottom: 20px;
  color: rgba(8, 8, 8, 0.06);
  font-size: 3.2rem;
}

.kamu-pin {
  width: 26px;
  height: 26px;
  border: 5px solid #fff;
  background: var(--red);
  box-shadow: 0 0 0 8px rgba(215, 79, 0, 0.28), 0 12px 30px rgba(8, 8, 8, 0.35);
}

.kamu-map-tooltip {
  padding: 8px 12px;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(8, 8, 8, 0.2);
  font-family: "Montserrat", sans-serif;
  font-size: 0.68rem;
}

.network-detail {
  right: 26px;
  width: min(350px, 34%);
  min-height: 420px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px;
  background: rgba(10, 10, 12, 0.94);
  box-shadow: 0 25px 70px rgba(8, 8, 8, 0.32);
  backdrop-filter: blur(15px);
}

.network-detail-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.network-detail-top > span {
  color: #727277;
  font-size: 0.58rem;
  font-weight: 800;
}

.network-detail h3 {
  font-size: 2.3rem;
  text-transform: none;
  letter-spacing: -0.05em;
}

.network-detail p:not(.network-label) {
  font-size: 0.72rem;
  line-height: 1.7;
}

.network-detail ul {
  gap: 8px;
  margin-top: 16px;
  font-size: 0.68rem;
}

.network-detail li i {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(215, 93, 0, 0.25);
}

.map-direction-cta {
  margin-top: 23px;
  color: #fff;
  font-size: 0.64rem;
  font-weight: 900;
  text-transform: uppercase;
}

.location-strip {
  width: 100%;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-top: 12px;
}

.location-chip {
  position: relative;
  min-height: 88px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-content: center;
  gap: 3px 10px;
  padding: 15px 18px;
  border: 1px solid rgba(8, 8, 8, 0.1);
  border-radius: 16px;
  background: #fff;
  color: var(--black);
  text-align: left;
  cursor: pointer;
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.location-chip small {
  grid-row: 1 / span 2;
  color: var(--red);
  font-size: 0.6rem;
  font-weight: 900;
}

.location-chip strong {
  font-size: 1rem;
  text-transform: none;
}

.location-chip span {
  font-size: 0.64rem;
}

.location-chip.active,
.location-chip:hover {
  background: var(--black);
  color: #fff;
  transform: translateY(-3px);
}

.location-chip.active span,
.location-chip:hover span {
  color: #999;
}

/* Minimalist Tata-only customer experience */
.experience-section {
  padding: 88px 0 74px;
  background: #f1f0ed;
  color: var(--black);
}

.experience-head {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 32px;
}

.experience-head h2 {
  margin: 9px 0 0;
  font-size: clamp(2.6rem, 4.8vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.065em;
}

.experience-head p {
  max-width: 470px;
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.75;
}

.experience-head .section-cta {
  margin-top: 17px;
}

.experience-studio {
  display: grid;
  grid-template-columns: 1.45fr 0.72fr;
  gap: 12px;
}

.experience-car-stage {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 26px;
  background: radial-gradient(circle at 58% 48%, #fff, #d9d7d2 60%, #cac8c3);
}

.experience-car-stage::after {
  content: "";
  position: absolute;
  left: 13%;
  right: 5%;
  bottom: 13%;
  height: 38px;
  border-radius: 50%;
  background: rgba(8, 8, 8, 0.15);
  filter: blur(20px);
}

.experience-car-stage > img {
  position: absolute;
  z-index: 3;
  left: 4%;
  top: 50%;
  width: 91%;
  max-width: none;
  transform: translateY(-43%) scale(2.2);
  filter: drop-shadow(0 30px 24px rgba(8, 8, 8, 0.24));
}

.experience-stage-label {
  position: absolute;
  z-index: 5;
  left: 25px;
  top: 23px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.experience-stage-label span,
.experience-stage-label small {
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.experience-stage-label span {
  color: var(--red);
}

.experience-stage-label small {
  padding-left: 12px;
  border-left: 1px solid rgba(8, 8, 8, 0.2);
  color: #777;
}

.experience-rings {
  position: absolute;
  left: 52%;
  top: 48%;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(8, 8, 8, 0.08);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.experience-rings::before,
.experience-rings::after {
  content: "";
  position: absolute;
  inset: 14%;
  border: inherit;
  border-radius: inherit;
}

.experience-rings::after {
  inset: 30%;
  border-color: rgba(215, 93, 0, 0.25);
}

.experience-word {
  position: absolute;
  left: -12px;
  bottom: -25px;
  color: rgba(8, 8, 8, 0.045);
  font-size: clamp(4rem, 8vw, 7.5rem);
  font-weight: 900;
  letter-spacing: -0.08em;
}

.experience-caption {
  position: absolute;
  z-index: 5;
  right: 22px;
  bottom: 20px;
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
}

.experience-caption strong,
.experience-caption span {
  display: block;
}

.experience-caption strong {
  font-size: 0.72rem;
}

.experience-caption span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.6rem;
}

.experience-principles {
  display: grid;
  grid-template-rows: repeat(3, auto) 1fr;
  gap: 8px;
}

.experience-principles > article {
  min-height: 105px;
  display: grid;
  grid-template-columns: 28px 38px 1fr;
  align-items: center;
  gap: 12px;
  padding: 17px;
  border: 1px solid rgba(8, 8, 8, 0.09);
  border-radius: 18px;
  background: #fff;
}

.experience-principles > article > span {
  color: #aaa;
  font-size: 0.55rem;
  font-weight: 900;
}

.experience-principles > article > i {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(215, 93, 0, 0.25);
  color: var(--red);
}

.experience-principles h3 {
  margin: 0;
  font-size: 0.86rem;
}

.experience-principles p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.62rem;
}

.experience-car-pair {
  position: relative;
  overflow: hidden;
  min-height: 155px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 20px;
  border-radius: 20px;
  background: var(--black);
  color: #fff;
}

.experience-car-pair img {
  position: absolute;
  left: -16%;
  bottom: -4%;
  width: 72%;
  transform: scale(1.65);
}

.experience-car-pair > div {
  position: relative;
  z-index: 2;
  width: 48%;
}

.experience-car-pair small,
.experience-car-pair strong {
  display: block;
}

.experience-car-pair small {
  color: var(--red);
  font-size: 0.56rem;
  font-weight: 900;
  text-transform: uppercase;
}

.experience-car-pair strong {
  margin-top: 7px;
  font-size: 0.72rem;
  line-height: 1.45;
}

.experience-proof {
  display: grid;
  grid-template-columns: 0.8fr 0.8fr 1fr 1.2fr;
  margin-top: 12px;
  overflow: hidden;
  border: 1px solid rgba(8, 8, 8, 0.09);
  border-radius: 20px;
  background: #fff;
}

.experience-proof > div,
.experience-proof > a {
  min-height: 100px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  border-right: 1px solid rgba(8, 8, 8, 0.09);
}

.experience-proof strong {
  color: var(--red);
  font-size: 2.1rem;
  line-height: 1;
}

.experience-proof span {
  max-width: 135px;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 700;
  line-height: 1.5;
}

.experience-proof > div > i {
  color: var(--red);
  font-size: 1.5rem;
}

.experience-proof > a {
  justify-content: space-between;
  border-right: 0;
  background: var(--red);
  color: #fff;
}

.experience-proof > a span {
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
}

.experience-proof > a i {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--red);
}

@media (max-width: 1080px) {
  .vehicle-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .network-detail {
    width: 38%;
  }

  .experience-studio {
    grid-template-columns: 1fr;
  }

  .experience-principles {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
  }

  .experience-principles > article {
    grid-template-columns: 24px 34px 1fr;
  }

  .experience-car-pair {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .fleet-section,
  .network-section,
  .experience-section {
    padding: 58px 0;
  }

  .network-layout {
    padding: 7px;
    border-radius: 22px;
  }

  .network-map {
    min-height: 480px;
    border-radius: 17px;
  }

  .network-detail {
    width: calc(100% - 28px);
    right: auto;
    margin-top: -82px;
    border-radius: 20px;
  }

  .map-toolbar {
    left: 12px;
    right: 12px;
    top: 12px;
  }

  .map-mode {
    font-size: 0;
  }

  .map-mode i {
    font-size: 0.8rem;
  }

  .map-legend {
    left: 12px;
    bottom: 12px;
  }

  .location-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .experience-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .experience-car-stage {
    min-height: 420px;
  }

  .experience-principles {
    grid-template-columns: 1fr;
  }

  .experience-car-pair {
    grid-column: auto;
  }

  .experience-proof {
    grid-template-columns: repeat(2, 1fr);
  }

  .experience-proof > div:nth-child(2) {
    border-right: 0;
  }

  .experience-proof > a {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .vehicle-grid {
    grid-template-columns: 1fr;
  }

  .vehicle-body {
    padding: 16px;
  }

  .location-strip {
    grid-template-columns: 1fr;
  }

  .map-legend span:last-child {
    display: none;
  }

  .network-detail {
    padding: 26px 22px;
  }

  .experience-car-stage {
    min-height: 330px;
  }

  .experience-car-stage > img {
    transform: translateY(-42%) scale(2.15);
  }

  .experience-rings {
    width: 280px;
    height: 280px;
  }

  .experience-caption {
    display: none;
  }

  .experience-proof {
    grid-template-columns: 1fr;
  }

  .experience-proof > div,
  .experience-proof > a {
    border-right: 0;
    border-bottom: 1px solid rgba(8, 8, 8, 0.09);
  }
}

@media (max-width: 620px) {
  .top-strip-inner {
    min-height: 32px;
  }

  .top-actions {
    width: 100%;
    justify-content: space-between;
    font-size: 0.66rem;
  }

  .hero-copy,
  .hero-lead,
  .hero-actions {
    max-width: 100%;
  }

  .hero-lead {
    max-width: 340px;
    font-size: 0.78rem;
  }

  .hero-actions {
    width: min(100%, 330px);
    flex-direction: row;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-ghost {
    width: auto;
    min-height: 46px;
    padding: 0 15px;
    font-size: 0.7rem;
  }

  .hero-slider-ui {
    bottom: 17px;
  }

  .hero-dots button {
    width: 42px;
  }

  .hero-arrows button {
    width: 39px;
    height: 39px;
  }

  .news-layout {
    grid-template-columns: 1fr;
  }

  .news-heading {
    grid-column: auto;
  }

  .news-card {
    min-height: 155px;
    padding: 21px;
  }

  .vehicle-grid {
    grid-auto-columns: 88%;
  }

  .vehicle-prev {
    left: -8px;
  }

  .vehicle-next {
    right: -8px;
  }

  .mega-link-grid > a {
    min-height: 82px;
  }
}

/* Client typography and footer refinement */
body {
  font-weight: 400;
  text-rendering: optimizeLegibility;
}

.hero-copy h1,
.section-heading h2,
.news-topline h2,
.experience-head h2,
.service-copy h2,
.experience-copy h2,
.book-copy h2,
.contact-panel h2,
.network-section .section-heading-left > h2 {
  font-weight: 600;
  letter-spacing: -0.025em;
}

.hero-copy h1 {
  max-width: 690px;
  font-size: clamp(2.45rem, 4.1vw, 4.45rem);
  line-height: 1.05;
}

.section-heading h2,
.service-copy h2,
.experience-copy h2,
.book-copy h2,
.contact-panel h2,
.network-section .section-heading-left > h2 {
  font-size: clamp(2rem, 3vw, 3.15rem);
  line-height: 1.1;
}

.fleet-section .section-heading h2,
.news-topline h2,
.experience-head h2 {
  font-size: clamp(2rem, 3.15vw, 3.35rem);
  line-height: 1.08;
}

.hero-lead,
.section-heading p,
.service-copy p,
.experience-copy p,
.book-copy p,
.contact-panel p,
.news-topline > p {
  font-size: 0.9rem;
  font-weight: 400;
}

.section-kicker,
.eyebrow,
.vehicle-type,
.news-meta span,
.mega-overline,
.service-mega-title > span,
.contact-mega > div > span {
  font-weight: 600;
  letter-spacing: 0.08em;
}

.nav-menu,
.mega-trigger,
.btn-primary,
.btn-ghost,
.section-cta,
.kinetic-cta,
.filter-btn,
.book-tab,
.vehicle-cta,
.mega-action,
.service-mega-title > a {
  font-weight: 600;
}

.mega-intro h2,
.mega-car-feature h2,
.offer-mega h2,
.service-mega h2,
.contact-mega h2 {
  font-size: clamp(1.7rem, 2.4vw, 2.1rem);
  line-height: 1.14;
  font-weight: 600;
  letter-spacing: -0.015em;
}

.finance-intro h2 {
  font-size: 1.45rem;
  font-weight: 600;
}

.vehicle-body h3,
.service-step h3,
.network-detail h3,
.news-lead h3,
.news-tile h3,
.news-brief h3,
.experience-principles h3 {
  font-weight: 600;
  letter-spacing: -0.01em;
}

.vehicle-body h3 {
  font-size: 1.35rem;
}

.service-step h3 {
  font-size: 1.45rem;
}

.network-detail h3 {
  font-size: clamp(1.55rem, 2.2vw, 1.9rem);
}

.news-lead h3 {
  font-size: clamp(1.65rem, 2.4vw, 2.45rem);
  line-height: 1.12;
}

.news-tile h3,
.news-brief h3 {
  font-size: 1rem;
}

.quick-card span {
  font-weight: 600;
}

.quick-card strong,
.experience-proof span,
.location-chip span {
  font-weight: 500;
}

.brand-wordmark strong,
.brand-wordmark small,
.top-strip,
.top-actions,
.vehicle-specs span,
.location-chip strong,
.experience-stage-label span,
.experience-stage-label small,
.experience-car-pair small,
.news-tile a,
.news-brief a,
.experience-proof > a span {
  font-weight: 600;
}

.hero-car-art > span {
  font-size: clamp(3.2rem, 6.4vw, 6.8rem);
  font-weight: 700;
  letter-spacing: -0.04em;
}

.news-watermark,
.tile-watermark,
.quick-lane::before,
.experience-word {
  font-weight: 700;
  letter-spacing: -0.035em;
}

.news-watermark {
  font-size: clamp(3.6rem, 6vw, 5.2rem);
}

.tile-watermark {
  font-size: 4.25rem;
}

.quick-lane::before {
  font-size: clamp(3rem, 6vw, 4.8rem);
}

.service-step span {
  font-size: 3.2rem;
  font-weight: 600;
}

.offer-mega-number strong,
.discover-index strong,
.news-brief > strong,
.experience-proof strong {
  font-weight: 600;
}

.offer-mega-number strong,
.discover-index strong {
  font-size: 3.45rem;
}

.news-brief > strong {
  font-size: clamp(3rem, 4.7vw, 4.75rem);
}

.experience-proof strong {
  font-size: 1.75rem;
}

.experience-word {
  font-size: clamp(3.2rem, 6vw, 5.4rem);
}

.contact-action span,
.contact-action strong {
  font-weight: 600;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 86px 0 28px;
  background:
    linear-gradient(135deg, rgba(255, 128, 0, 0.18), transparent 32%),
    linear-gradient(180deg, #101014 0%, #070708 100%);
  color: #fff;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
  pointer-events: none;
}

.site-footer::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -95px;
  width: 420px;
  height: 260px;
  border: 1px solid rgba(255, 128, 0, 0.42);
  transform: rotate(-14deg);
  pointer-events: none;
}

.footer-grid,
.footer-bottom {
  position: relative;
  z-index: 1;
}

.footer-grid {
  grid-template-columns: minmax(280px, 1.35fr) repeat(3, minmax(160px, 0.72fr));
  gap: 18px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}

.footer-grid > div {
  position: relative;
  min-height: 228px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.footer-grid > div:first-child {
  background:
    linear-gradient(135deg, rgba(255, 128, 0, 0.2), rgba(255, 255, 255, 0.045) 48%),
    rgba(255, 255, 255, 0.055);
}

.footer-grid > div:first-child::after {
  content: "KAMU";
  position: absolute;
  right: 20px;
  bottom: 10px;
  color: rgba(255, 255, 255, 0.045);
  font-size: 4.1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  pointer-events: none;
}

.site-footer .brand-symbol svg {
  filter: drop-shadow(0 12px 24px rgba(255, 128, 0, 0.24));
}

.site-footer p {
  max-width: 430px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  line-height: 1.75;
}

.site-footer h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer h3::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--red);
}

.site-footer a:not(.brand-lockup) {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 34px;
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.86rem;
  font-weight: 500;
  transition: color 0.22s ease, transform 0.22s ease;
}

.site-footer a:not(.brand-lockup)::after {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-size: 0.64rem;
  font-weight: 900;
  color: rgba(255, 128, 0, 0);
  transform: translateX(-6px);
  transition: color 0.22s ease, transform 0.22s ease;
}

.site-footer a:not(.brand-lockup):hover {
  color: #fff;
  transform: translateX(4px);
}

.site-footer a:not(.brand-lockup):hover::after {
  color: var(--red);
  transform: translateX(0);
}

.social-row {
  display: grid;
  grid-template-columns: repeat(2, 48px);
  gap: 12px;
}

.social-row a {
  width: 48px;
  height: 48px;
  min-height: 48px !important;
  justify-content: center !important;
  margin: 0 !important;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff !important;
}

.social-row a::after {
  display: none;
}

.social-row a:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-3px);
}

.footer-bottom {
  margin-top: 22px;
  padding: 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.82rem;
}

.footer-bottom a {
  display: inline !important;
  min-height: 0 !important;
  color: #fff !important;
  font-weight: 600;
  text-decoration: none;
}

.footer-bottom a::after {
  display: none;
}

.footer-bottom a:hover {
  color: var(--red) !important;
  transform: none !important;
}

@media (max-width: 1080px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .hero-copy h1 {
    font-size: clamp(2.1rem, 7vw, 3.15rem);
  }

  .section-heading h2,
  .fleet-section .section-heading h2,
  .news-topline h2,
  .experience-head h2,
  .service-copy h2,
  .experience-copy h2,
  .book-copy h2,
  .contact-panel h2,
  .network-section .section-heading-left > h2 {
    font-size: clamp(1.85rem, 6vw, 2.55rem);
  }

  .footer-grid {
    padding: 14px;
  }

  .footer-grid > div {
    min-height: 0;
    padding: 24px;
  }
}

@media (max-width: 620px) {
  .hero-copy h1 {
    font-size: 2.35rem;
    letter-spacing: -0.015em;
  }

  .hero-lead,
  .section-heading p,
  .service-copy p,
  .experience-copy p,
  .book-copy p,
  .contact-panel p,
  .news-topline > p {
    font-size: 0.82rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Compact premium footer redesign */
.site-footer {
  position: relative;
  overflow: hidden;
  padding: 48px 0 18px;
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 128, 0, 0.18), transparent 30%),
    linear-gradient(180deg, #111113 0%, #070708 100%);
  color: #fff;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.38;
  pointer-events: none;
}

.site-footer::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: min(1280px, calc(100% - 52px));
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 128, 0, 0.78), rgba(255, 255, 255, 0.22), transparent);
  transform: translateX(-50%);
  pointer-events: none;
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(290px, 1.5fr) repeat(3, minmax(145px, 0.72fr));
  gap: 34px;
  padding: 0 0 34px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.footer-grid > div {
  position: relative;
  min-height: 0;
  padding: 0 26px 0 0;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 0;
  background: transparent;
}

.footer-grid > div:first-child {
  background: transparent;
}

.footer-grid > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.footer-grid > div:first-child::after {
  content: "KAMU";
  right: 30px;
  bottom: -10px;
  color: rgba(255, 255, 255, 0.035);
  font-size: clamp(2.5rem, 5vw, 4.1rem);
  font-weight: 600;
  letter-spacing: 0.08em;
}

.site-footer .brand-lockup {
  gap: 12px;
}

.site-footer .brand-symbol {
  width: 44px;
  height: 44px;
  flex-basis: 44px;
}

.site-footer .brand-symbol svg {
  filter: drop-shadow(0 12px 22px rgba(255, 128, 0, 0.18));
}

.site-footer .brand-wordmark strong {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.site-footer .brand-wordmark small {
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.38em;
}

.site-footer p {
  max-width: 390px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
  line-height: 1.75;
}

.site-footer h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-footer h3::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--red);
}

.site-footer a:not(.brand-lockup) {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 29px;
  margin: 5px 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.78rem;
  font-weight: 500;
  transition: color 0.22s ease, transform 0.22s ease;
}

.site-footer a:not(.brand-lockup)::after {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-size: 0.58rem;
  font-weight: 900;
  color: rgba(255, 128, 0, 0);
  transform: translateX(-8px);
  transition: color 0.22s ease, transform 0.22s ease;
}

.site-footer a:not(.brand-lockup):hover {
  color: #fff;
  transform: translateX(4px);
}

.site-footer a:not(.brand-lockup):hover::after {
  color: var(--red);
  transform: translateX(0);
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-row a {
  width: 40px;
  height: 40px;
  min-height: 40px !important;
  display: grid !important;
  place-items: center;
  justify-content: center !important;
  margin: 0 !important;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.055);
  color: #fff !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.social-row a::after {
  display: none;
}

.social-row a:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-3px);
}

.footer-bottom {
  position: relative;
  z-index: 1;
  margin-top: 0;
  padding: 18px 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
}

.footer-bottom a {
  display: inline !important;
  min-height: 0 !important;
  color: #fff !important;
  font-weight: 600;
  text-decoration: none;
}

.footer-bottom a::after {
  display: none;
}

.footer-bottom a:hover {
  color: var(--red) !important;
  transform: none !important;
}

@media (max-width: 1080px) {
  .footer-grid {
    grid-template-columns: 1.25fr 1fr 1fr;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
    padding-bottom: 22px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }
}

@media (max-width: 760px) {
  .site-footer {
    padding: 42px 0 18px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-bottom: 26px;
  }

  .footer-grid > div,
  .footer-grid > div:first-child {
    padding: 0 0 22px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }

  .footer-grid > div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

/* Final executive footer UI */
.site-footer {
  position: relative;
  overflow: hidden;
  padding: 58px 0 22px;
  background:
    radial-gradient(circle at 13% 0%, rgba(255, 128, 0, 0.26), transparent 28%),
    radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.08), transparent 24%),
    linear-gradient(180deg, #101012 0%, #060607 100%);
  color: #fff;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.55;
  pointer-events: none;
}

.site-footer::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 22px;
  height: 1px;
  background:
    linear-gradient(90deg, transparent, rgba(255, 128, 0, 0.95) 16%, rgba(255, 255, 255, 0.42) 50%, rgba(255, 128, 0, 0.45) 84%, transparent);
  box-shadow: 0 0 28px rgba(255, 128, 0, 0.24);
  transform: none;
  pointer-events: none;
}

.footer-command {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(310px, 0.9fr) minmax(0, 1.45fr);
  gap: 22px;
  padding: 0 0 26px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.footer-grid > div,
.footer-grid > div:first-child,
.footer-grid > div:last-child {
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.footer-grid > div:first-child::after {
  content: "";
}

.footer-brand-column,
.footer-link-board {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.footer-brand-column {
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(255, 128, 0, 0.24), rgba(255, 255, 255, 0.045) 42%),
    rgba(255, 255, 255, 0.055);
}

.footer-brand-column::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
}

.footer-brand-column::after {
  content: "KAMU";
  position: absolute;
  right: -10px;
  bottom: -14px;
  color: rgba(255, 255, 255, 0.045);
  font-size: clamp(3rem, 7vw, 5.6rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  pointer-events: none;
}

.site-footer .footer-brand {
  position: relative;
  z-index: 1;
}

.site-footer .brand-symbol {
  width: 46px;
  height: 46px;
  flex-basis: 46px;
}

.site-footer .brand-wordmark strong {
  font-size: 1.06rem;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.site-footer .brand-wordmark small {
  margin-top: 5px;
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.4em;
}

.site-footer p {
  position: relative;
  z-index: 1;
  max-width: 430px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  line-height: 1.75;
}

.footer-badges {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}

.footer-badges span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(8, 8, 8, 0.26);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.68rem;
  font-weight: 500;
}

.footer-badges i {
  color: var(--red);
}

.footer-link-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.09), transparent 28%, transparent 72%, rgba(255, 128, 0, 0.11)),
    rgba(255, 255, 255, 0.055);
}

.footer-col {
  position: relative;
  min-height: 220px;
  padding: 28px;
}

.footer-col + .footer-col {
  border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.site-footer h3 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-footer h3::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--red);
  box-shadow: 0 0 16px rgba(255, 128, 0, 0.44);
}

.footer-col > a:not(.footer-hotline),
.site-footer .footer-bottom a {
  position: relative;
}

.footer-col > a:not(.footer-hotline) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 34px;
  margin: 4px 0;
  padding: 0 0 0 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
  font-weight: 500;
  transition: color 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.footer-col > a:not(.footer-hotline)::before {
  content: "";
  position: absolute;
  left: -2px;
  top: 50%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 128, 0, 0.8);
  transform: translateY(-50%);
}

.footer-col > a:not(.footer-hotline)::after {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  color: rgba(255, 128, 0, 0);
  font-size: 0.58rem;
  font-weight: 900;
  transform: translateX(-8px);
  transition: color 0.22s ease, transform 0.22s ease;
}

.footer-col > a:not(.footer-hotline):hover {
  border-color: var(--red);
  color: #fff;
  transform: translateX(4px);
}

.footer-col > a:not(.footer-hotline):hover::after {
  color: var(--red);
  transform: translateX(0);
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-row a {
  width: 42px;
  height: 42px;
  min-height: 42px !important;
  display: grid !important;
  place-items: center;
  justify-content: center !important;
  margin: 0 !important;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(8, 8, 8, 0.26);
  color: #fff !important;
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.social-row a::before,
.social-row a::after {
  display: none;
}

.social-row a:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-3px);
}

.footer-hotline {
  min-height: 44px !important;
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  margin-top: 18px !important;
  padding: 0 15px !important;
  border: 1px solid rgba(255, 128, 0, 0.42);
  border-radius: 999px;
  background: rgba(255, 128, 0, 0.12);
  color: #fff !important;
  font-size: 0.72rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-hotline::after {
  display: none;
}

.footer-hotline i {
  color: var(--red);
}

.footer-hotline:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-2px) !important;
}

.footer-hotline:hover i {
  color: #fff;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 0;
  padding: 16px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.76rem;
}

.footer-bottom a {
  display: inline !important;
  min-height: 0 !important;
  color: #fff !important;
  font-weight: 600;
  text-decoration: none;
}

.footer-bottom a::before,
.footer-bottom a::after {
  display: none !important;
}

.footer-bottom a:hover {
  color: var(--red) !important;
  transform: none !important;
}

@media (max-width: 1080px) {
  .footer-command {
    grid-template-columns: 1fr;
  }

  .footer-link-board {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-footer {
    padding: 46px 0 20px;
  }

  .footer-link-board {
    grid-template-columns: 1fr;
  }

  .footer-col {
    min-height: 0;
    padding: 24px;
  }

  .footer-col + .footer-col {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
  }

  .footer-bottom {
    min-height: 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

/* Flagship garage: larger vehicle artwork */
.fleet-section .vehicle-image {
  aspect-ratio: 1.08;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fleet-section .vehicle-image img {
  width: 124%;
  height: 124%;
  max-width: none;
  object-fit: contain;
  transform: scale(2.55);
  transform-origin: center 55%;
}

.fleet-section .vehicle-card:hover .vehicle-image img {
  transform: scale(2.68);
}

.fleet-section .vehicle-card::before {
  font-size: 1.65rem;
}

@media (max-width: 1080px) {
  .fleet-section .vehicle-image {
    aspect-ratio: 1.16;
  }

  .fleet-section .vehicle-image img {
    transform: scale(2.42);
  }

  .fleet-section .vehicle-card:hover .vehicle-image img {
    transform: scale(2.54);
  }
}

@media (max-width: 560px) {
  .fleet-section .vehicle-image {
    aspect-ratio: 1.2;
  }

  .fleet-section .vehicle-image img {
    transform: scale(2.25);
  }

  .fleet-section .vehicle-card:hover .vehicle-image img {
    transform: scale(2.34);
  }
}

/* Mobile responsiveness: keep fixed contact icons inside viewport */
@media (max-width: 620px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .site-header,
  .main-nav,
  main,
  .hero-section,
  .news-strip,
  .quick-lane,
  .section-shell,
  .book-section,
  .site-footer {
    width: 100%;
    max-width: 100vw;
  }

  .hero-section,
  .hero-section.video-failed {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .hero-content,
  .hero-slide-company .hero-content,
  .hero-slider-ui {
    width: min(100% - 28px, 1280px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .floating-actions {
    left: 50%;
    right: auto;
    bottom: max(10px, env(safe-area-inset-bottom));
    z-index: 120;
    display: flex;
    grid-auto-flow: column;
    gap: 9px;
    max-width: calc(100vw - 24px);
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    background: rgba(8, 8, 8, 0.76);
    box-shadow: 0 16px 38px rgba(8, 8, 8, 0.24);
    backdrop-filter: blur(12px);
    transform: translateX(-50%);
  }

  .floating-actions a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    box-shadow: none;
  }
}

@media (max-width: 360px) {
  .floating-actions a {
    width: 39px;
    height: 39px;
  }
}

/* Hard mobile fix: remove fixed contact widget from narrow screens */
@media (max-width: 991px) {
  .floating-actions,
  .floating-actions a {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }

  html,
  body {
    max-width: 100% !important;
    overflow-x: hidden !important;
  }
}

/* Disabled: fixed floating contact widget caused responsive overflow */
.floating-actions {
  display: none !important;
}

/* Final responsive foundation and safe fixed contact buttons */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
}

.site-header,
.main-nav,
main,
main > section,
.site-footer {
  max-width: 100%;
}

.floating-actions {
  position: fixed !important;
  right: max(16px, env(safe-area-inset-right)) !important;
  bottom: max(16px, env(safe-area-inset-bottom)) !important;
  left: auto !important;
  z-index: 999 !important;
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 10px !important;
  width: auto !important;
  max-width: calc(100vw - 24px) !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: none !important;
  backdrop-filter: none !important;
}

.floating-actions a {
  width: 50px !important;
  height: 50px !important;
  min-width: 50px !important;
  min-height: 50px !important;
  display: grid !important;
  place-items: center !important;
  opacity: 1 !important;
  visibility: visible !important;
  border-radius: 0 !important;
  color: #fff !important;
  font-size: 1rem !important;
  line-height: 1 !important;
  text-decoration: none !important;
  box-shadow: 0 14px 32px rgba(8, 8, 8, 0.22) !important;
  pointer-events: auto !important;
}

.floating-actions a:first-child {
  background: var(--black) !important;
}

.floating-actions a:last-child {
  background: var(--red) !important;
}

@media (max-width: 991px) {
  .site-header,
  .main-nav,
  main,
  main > section,
  .hero-section,
  .news-strip,
  .quick-lane,
  .section-shell,
  .book-section,
  .site-footer {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .container-shell,
  .hero-content,
  .hero-slide-company .hero-content,
  .hero-slider-ui {
    width: min(100% - 28px, 1280px) !important;
    max-width: calc(100% - 28px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .news-bento,
  .news-lead,
  .quick-lane-grid,
  .service-layout,
  .service-track,
  .network-section .section-heading-left,
  .network-layout,
  .experience-head,
  .experience-studio,
  .book-layout,
  .contact-grid,
  .footer-command,
  .footer-link-board {
    grid-template-columns: 1fr !important;
  }

  .vehicle-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    grid-auto-columns: auto !important;
    grid-auto-flow: row !important;
    overflow: visible !important;
  }

  .network-map,
  .location-strip,
  .network-detail {
    width: 100% !important;
  }

  .network-detail {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    margin: 16px 0 0 !important;
    transform: none !important;
  }

  .floating-actions {
    right: max(10px, env(safe-area-inset-right)) !important;
    bottom: max(10px, env(safe-area-inset-bottom)) !important;
    gap: 8px !important;
  }

  .floating-actions a {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
  }
}

@media (max-width: 560px) {
  .container-shell,
  .hero-content,
  .hero-slide-company .hero-content,
  .hero-slider-ui {
    width: calc(100% - 24px) !important;
    max-width: calc(100% - 24px) !important;
  }

  .hero-section,
  .hero-section.video-failed {
    width: 100% !important;
    min-height: 720px !important;
    height: auto !important;
  }

  .hero-content,
  .hero-slide-company .hero-content {
    min-height: 720px !important;
    padding-top: 56px !important;
    padding-bottom: 88px !important;
  }

  .hero-copy h1 {
    max-width: 100% !important;
    font-size: clamp(2rem, 9.5vw, 2.8rem) !important;
    line-height: 1.04 !important;
  }

  .hero-lead {
    max-width: 100% !important;
  }

  .hero-actions {
    width: min(100%, 320px) !important;
    flex-wrap: wrap !important;
  }

  .news-side-stack,
  .vehicle-grid,
  .experience-proof {
    grid-template-columns: 1fr !important;
  }

  .floating-actions {
    right: max(8px, env(safe-area-inset-right)) !important;
    bottom: max(8px, env(safe-area-inset-bottom)) !important;
  }

  .floating-actions a {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    min-height: 42px !important;
  }
}

.quick-contact-fixed {
  position: fixed;
  left: auto;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-flow: row;
  gap: 10px;
  width: 50px;
  max-width: 50px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  pointer-events: auto;
  transform: none;
}

.quick-contact-fixed a {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1rem;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(8, 8, 8, 0.24);
}

.quick-contact-fixed a:first-child {
  background: var(--black);
}

.quick-contact-fixed a:last-child {
  background: var(--red);
}

@media (max-width: 991px) {
  .quick-contact-fixed {
    left: auto;
    right: 10px;
    top: auto;
    bottom: 10px;
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    gap: 8px;
    width: 44px;
    max-width: 44px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    transform: none;
  }

  .quick-contact-fixed a {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 430px) {
  .quick-contact-fixed {
    left: auto;
    right: 10px;
    bottom: 10px;
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    width: 44px;
    max-width: 44px;
    gap: 8px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    transform: none;
  }

  .quick-contact-fixed a {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 360px) {
  .quick-contact-fixed {
    right: 8px;
    bottom: 8px;
    width: 40px;
    max-width: 40px;
    transform: none;
  }

  .quick-contact-fixed a {
    width: 40px;
    height: 40px;
  }
}
