:root {
  --font-body: "Aptos (Body)", Aptos, "Segoe UI", Arial, sans-serif;
  --black: #08080a;
  --ink: #151519;
  --muted: #65656f;
  --soft: #f5f3f0;
  --white: #ffffff;
  --red: #e01925;
  --red-dark: #9f1019;
  --line: rgba(8, 8, 10, 0.12);
  --line-light: rgba(255, 255, 255, 0.18);
  --shadow: 0 24px 70px rgba(8, 8, 10, 0.18);
  --radius: 8px;
  --section: min(1240px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--soft);
  font-family: var(--font-body);
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

figure {
  margin: 0;
}

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

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

button {
  cursor: pointer;
}

::selection {
  color: var(--white);
  background: var(--red);
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 30;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  margin: 0;
  clip: auto;
  color: var(--white);
  background: var(--black);
  border-radius: var(--radius);
}

.scroll-progress {
  position: fixed;
  z-index: 25;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--red);
  box-shadow: 0 0 18px rgba(224, 25, 37, 0.75);
}

.section {
  width: var(--section);
  margin: 0 auto;
}

.section-anchor {
  scroll-margin-top: 92px;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  padding: 12px 18px 0;
  transition: transform 220ms ease, top 220ms ease, padding 220ms ease;
}

.site-header.is-scrolled {
  top: 8px;
  padding-top: 0;
}

.nav-shell {
  width: min(1680px, calc(100vw - 36px));
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 12px;
  color: var(--white);
  background: rgba(8, 8, 10, 0.74);
  border: 1px solid var(--line-light);
  border-radius: 8px;
  backdrop-filter: blur(20px);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.24);
  transition: width 220ms ease, background 220ms ease, border-color 220ms ease, box-shadow 220ms ease, backdrop-filter 220ms ease;
}

.site-header:not(.is-scrolled) .nav-shell {
  width: min(1740px, calc(100vw - 24px));
  background: linear-gradient(90deg, rgba(8, 8, 10, 0.44), rgba(8, 8, 10, 0.16));
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  width: 138px;
  height: 64px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--white);
  border-radius: 6px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.26);
}

.brand-mark img {
  width: 96%;
  height: 96%;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-copy strong {
  font-size: 0.96rem;
  line-height: 1.05;
}

.brand-copy small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.75rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.91rem;
  border-radius: 6px;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.nav-links .nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 6px;
  color: var(--white);
  background: var(--red);
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta:focus-visible {
  background: #f32a36;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--line-light);
  border-radius: 6px;
}

.hero {
  position: relative;
  min-height: 94vh;
  padding: 158px 20px 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.hero-media,
.hero-photo,
.hero-scrim,
.hero-lines {
  position: absolute;
  inset: 0;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1100ms ease, transform 6500ms ease;
}

.hero-photo.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(8, 8, 10, 0.94) 0%, rgba(8, 8, 10, 0.74) 42%, rgba(8, 8, 10, 0.16) 100%),
    linear-gradient(0deg, rgba(8, 8, 10, 0.7) 0%, rgba(8, 8, 10, 0.06) 55%, rgba(8, 8, 10, 0.46) 100%);
}

.hero-lines {
  opacity: 0.38;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: linear-gradient(90deg, #000 0%, transparent 78%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
  margin-left: max(0px, calc((100vw - 1180px) / 2));
}

.hero-kicker,
.eyebrow {
  margin: 0 0 16px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.82);
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line-light);
  border-radius: 999px;
}

.hero-kicker span {
  width: 9px;
  height: 9px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(224, 25, 37, 0.22);
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  display: grid;
  gap: 0.02em;
  line-height: 0.84;
  font-weight: 900;
  letter-spacing: 0;
}

.hero-title-line {
  display: block;
}

.hero-title-main {
  font-size: clamp(4.1rem, 10vw, 9.6rem);
}

.hero-title-sub {
  font-size: clamp(3.15rem, 7.7vw, 7.35rem);
}

.hero-copy {
  max-width: 680px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.02rem, 2vw, 1.28rem);
  line-height: 1.65;
}

.hero-actions,
.hero-proof {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 18px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 190ms ease, background 190ms ease, border-color 190ms ease, box-shadow 190ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 18px 34px rgba(224, 25, 37, 0.32);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #f12a35;
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.09);
  border-color: var(--line-light);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.16);
}

.hero-proof {
  max-width: 720px;
  gap: 0;
  border-top: 1px solid var(--line-light);
}

.hero-proof span {
  min-width: 150px;
  padding: 18px 24px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.hero-proof strong {
  display: block;
  color: var(--white);
  font-size: 1.1rem;
}

.hero-sticker {
  position: absolute;
  z-index: 3;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.sticker-vision {
  right: max(20px, calc((100vw - 1180px) / 2));
  bottom: 94px;
  width: min(310px, calc(100vw - 40px));
  padding: 22px;
  color: var(--white);
  background: var(--red);
}

.sticker-vision span,
.sticker-track span,
.route-kicker,
.result-kicker,
.vehicle-count,
.spotlight-card span {
  display: block;
  margin-bottom: 7px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sticker-vision strong {
  display: block;
  font-size: 1.7rem;
  line-height: 1.02;
}

.sticker-track {
  right: min(32vw, 450px);
  top: 148px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 15px;
  color: var(--black);
  background: var(--white);
  animation: floatSticker 4s ease-in-out infinite;
}

.sticker-track .icon {
  color: var(--red);
  font-size: 1.55rem;
}

.scroll-cue {
  position: absolute;
  right: 22px;
  bottom: 24px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  writing-mode: vertical-rl;
}

.scroll-cue .icon {
  transform: rotate(90deg);
}

.quick-strip {
  position: relative;
  z-index: 4;
  width: min(1120px, calc(100vw - 40px));
  margin: -36px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  color: var(--white);
  background: var(--black);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.strip-item {
  min-height: 96px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.strip-item:last-child {
  border-right: 0;
}

.strip-item .icon {
  flex: 0 0 auto;
  color: var(--red);
  font-size: 1.65rem;
}

.strip-item span {
  font-weight: 850;
}

.about-section,
.vehicle-section,
.process-section,
.finance-panel {
  padding: 110px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.58fr);
  gap: 34px;
  align-items: center;
  margin-bottom: 46px;
}

.heading-copy {
  position: relative;
  z-index: 2;
  max-width: 860px;
}

.section-heading h2,
.services-heading h2,
.export-copy h2,
.finance-copy h2,
.contact-copy h2,
.gallery-copy h2 {
  margin: 0;
  font-size: clamp(2.3rem, 4.4vw, 4.35rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.neat-heading h2 {
  max-width: 920px;
}

.fade-visual {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border-radius: 8px;
  isolation: isolate;
}

.fade-visual img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 600ms ease;
}

.fade-visual:hover img {
  transform: scale(1.07);
}

.fade-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.fade-visual-light {
  box-shadow: 0 22px 70px rgba(8, 8, 10, 0.12);
}

.fade-visual-light::before {
  background:
    linear-gradient(90deg, var(--soft) 0%, rgba(245, 243, 240, 0) 34%),
    linear-gradient(270deg, var(--soft) 0%, rgba(245, 243, 240, 0) 28%),
    linear-gradient(0deg, var(--soft) 0%, rgba(245, 243, 240, 0) 22%);
}

.fade-visual-dark {
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.28);
}

.fade-visual-dark::before {
  background:
    linear-gradient(90deg, var(--black) 0%, rgba(8, 8, 10, 0) 32%),
    linear-gradient(270deg, var(--black) 0%, rgba(8, 8, 10, 0) 26%),
    linear-gradient(0deg, var(--black) 0%, rgba(8, 8, 10, 0) 20%),
    linear-gradient(180deg, var(--black) 0%, rgba(8, 8, 10, 0) 20%);
}

.section-heading p:not(.eyebrow),
.services-heading p,
.export-copy p,
.finance-copy p,
.contact-copy p,
.about-copy p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.75;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: 34px;
  align-items: stretch;
}

.about-copy {
  display: grid;
  align-content: center;
  padding: 38px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 60px rgba(8, 8, 10, 0.08);
}

.tick-list {
  display: grid;
  gap: 16px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.tick-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #33333a;
  font-weight: 700;
}

.tick-list .icon {
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--red);
  font-size: 1.15rem;
}

.about-mosaic {
  position: relative;
  min-height: 560px;
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
}

.about-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 15px 44px rgba(8, 8, 10, 0.12);
  transition: transform 260ms ease;
}

.about-mosaic:hover img {
  transform: translateY(-4px);
}

.about-mosaic .mosaic-large {
  grid-row: span 2;
}

.mosaic-sticker {
  position: absolute;
  left: 22px;
  bottom: 22px;
  max-width: 230px;
  padding: 16px 18px;
  color: var(--white);
  background: rgba(8, 8, 10, 0.78);
  border: 1px solid var(--line-light);
  border-radius: 8px;
  backdrop-filter: blur(12px);
  font-weight: 850;
}

.services-section,
.export-section,
.contact-section,
.gallery-band {
  color: var(--white);
  background: var(--black);
}

.services-section {
  padding: 108px 0;
  overflow: hidden;
}

.services-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

.services-heading-new {
  position: relative;
  min-height: 430px;
  isolation: isolate;
}

.services-heading-new .heading-copy {
  max-width: 780px;
}

.services-heading-new .heading-copy p:not(.eyebrow) {
  max-width: 640px;
}

.services-heading-new .fade-visual {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: -3vw;
  width: min(760px, 62vw);
  min-height: 390px;
  opacity: 0.76;
  transform: translateY(-50%);
}

.services-heading-new .fade-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, var(--black) 0%, rgba(8, 8, 10, 0.42) 40%, rgba(8, 8, 10, 0.1) 100%);
}

.eyebrow.light,
.services-heading .eyebrow,
.contact-copy .eyebrow,
.gallery-copy .eyebrow {
  color: #ff535d;
}

.services-heading p,
.contact-copy p,
.gallery-copy p {
  color: rgba(255, 255, 255, 0.67);
}

.service-console {
  margin-top: 46px;
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr) 310px;
  gap: 18px;
  align-items: stretch;
}

.service-tabs {
  display: grid;
  gap: 10px;
}

.service-tab {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 15px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  text-align: left;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.service-tab .icon {
  color: var(--red);
  font-size: 1.35rem;
}

.service-tab:hover,
.service-tab:focus-visible,
.service-tab.is-active {
  color: var(--white);
  background: rgba(224, 25, 37, 0.18);
  border-color: rgba(224, 25, 37, 0.72);
  transform: translateX(4px);
}

.service-result {
  position: relative;
  min-height: 326px;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04)),
    #131318;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  overflow: hidden;
}

.service-result::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 44%;
  height: 5px;
  background: var(--red);
}

.result-icon {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 68px;
  height: 68px;
  color: rgba(255, 255, 255, 0.12);
}

.result-kicker {
  color: #ff7a82;
}

.service-result h3 {
  max-width: 460px;
  margin: 48px 0 18px;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 0.95;
}

.service-result p {
  max-width: 610px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.04rem;
  line-height: 1.7;
}

.service-result a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 28px;
  color: var(--white);
  font-weight: 850;
}

.service-photo {
  position: relative;
  min-height: 326px;
  overflow: hidden;
  border-radius: 8px;
}

.service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.service-photo:hover img {
  transform: scale(1.06);
}

.service-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 8, 10, 0.74), rgba(8, 8, 10, 0));
}

.service-photo span {
  position: absolute;
  z-index: 1;
  left: 18px;
  bottom: 18px;
  right: 18px;
  color: var(--white);
  font-size: 1.35rem;
  line-height: 1;
  font-weight: 900;
}

.vehicle-heading {
  grid-template-columns: minmax(0, 0.8fr) minmax(300px, 0.7fr);
  align-items: center;
}

.filter-controls,
.destination-controls {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-button,
.destination-button {
  min-height: 42px;
  padding: 10px 13px;
  color: #36363d;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 850;
  transition: transform 180ms ease, color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.filter-button:hover,
.filter-button:focus-visible,
.filter-button.is-active,
.destination-button:hover,
.destination-button:focus-visible,
.destination-button.is-active {
  color: var(--white);
  background: var(--black);
  border-color: var(--black);
  transform: translateY(-2px);
}

.vehicle-showcase {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.spotlight-card {
  flex: 1;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  min-height: 154px;
  padding: 12px;
  color: var(--white);
  background: var(--black);
  border-radius: 8px;
  overflow: hidden;
}

.spotlight-card img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  border-radius: 6px;
}

.spotlight-card h3 {
  margin: 0 0 8px;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  line-height: 1;
}

.spotlight-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.67);
  line-height: 1.55;
}

.spotlight-card span {
  color: #ff646d;
}

.vehicle-count {
  flex: 0 0 auto;
  padding: 16px 18px;
  color: var(--red);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

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

.vehicle-card {
  position: relative;
  min-height: 318px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  isolation: isolate;
  overflow: hidden;
  padding: 18px;
  color: var(--white);
  background: var(--black);
  border-radius: 8px;
  box-shadow: 0 14px 40px rgba(8, 8, 10, 0.1);
  transition: transform 220ms ease, opacity 220ms ease, box-shadow 220ms ease;
}

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

.vehicle-card:hover,
.vehicle-card:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 22px 54px rgba(8, 8, 10, 0.2);
}

.vehicle-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

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

.vehicle-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(0deg, rgba(8, 8, 10, 0.86), rgba(8, 8, 10, 0.1) 60%);
}

.vehicle-card span {
  width: fit-content;
  margin-bottom: 10px;
  padding: 7px 10px;
  color: var(--white);
  background: var(--red);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.vehicle-card h3 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.05;
}

.gallery-band {
  padding: 86px 0;
  overflow: hidden;
}

.gallery-copy {
  width: var(--section);
  margin: 0 auto 32px;
}

.gallery-copy h2 {
  max-width: 760px;
}

.image-rail {
  width: 100%;
  overflow: hidden;
}

.rail-track {
  display: flex;
  width: max-content;
  gap: 14px;
  animation: railMove 42s linear infinite;
}

.image-rail:hover .rail-track {
  animation-play-state: paused;
}

.rail-track img {
  width: 260px;
  height: 190px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.export-section {
  padding: 110px 0;
  background:
    linear-gradient(90deg, rgba(8, 8, 10, 0.92), rgba(8, 8, 10, 0.68) 48%, rgba(8, 8, 10, 0.34)),
    url("assets/ai-export-fade.png") center / cover fixed;
}

.export-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.58fr);
  gap: 34px;
  align-items: center;
}

.export-copy p {
  color: rgba(255, 255, 255, 0.7);
}

.destination-controls {
  justify-content: flex-start;
  margin-top: 28px;
}

.destination-button {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
}

.destination-button:hover,
.destination-button:focus-visible,
.destination-button.is-active {
  background: var(--red);
  border-color: var(--red);
}

.route-card {
  min-height: 430px;
  display: grid;
  align-content: center;
  padding: 30px;
  color: var(--black);
  background: rgba(255, 255, 255, 0.94);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.route-map {
  position: relative;
  height: 130px;
  margin-bottom: 22px;
}

.node {
  position: absolute;
  z-index: 2;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--black);
  border-radius: 50%;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(8, 8, 10, 0.22);
}

.node.start {
  left: 0;
  bottom: 8px;
}

.node.finish {
  right: 0;
  top: 4px;
  background: var(--red);
}

.route-line {
  position: absolute;
  left: 46px;
  right: 46px;
  top: 64px;
  height: 3px;
  background: repeating-linear-gradient(90deg, var(--red) 0 16px, transparent 16px 26px);
  transform: rotate(-14deg);
  transform-origin: left center;
}

.route-kicker {
  color: var(--red);
}

.route-card h3 {
  margin: 0 0 12px;
  font-size: clamp(1.9rem, 3.4vw, 3rem);
  line-height: 0.98;
}

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

.route-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.route-steps li {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 12px 8px;
  color: var(--ink);
  background: #f0efed;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 850;
}

.route-steps .icon {
  color: var(--red);
  font-size: 1.3rem;
}

.process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-line li {
  min-height: 260px;
  display: grid;
  align-content: space-between;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.process-line li:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 52px rgba(8, 8, 10, 0.11);
}

.process-line span {
  color: var(--red);
  font-size: 0.9rem;
  font-weight: 900;
}

.process-line h3 {
  margin: 0 0 12px;
  font-size: 1.55rem;
  line-height: 1.05;
}

.process-line p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.finance-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(380px, 0.8fr);
  gap: 34px;
  align-items: center;
}

.brief-builder {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 60px rgba(8, 8, 10, 0.08);
}

.brief-builder label,
.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 850;
}

.brief-builder select,
.contact-form select,
.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: #f8f7f5;
  border: 1px solid var(--line);
  border-radius: 6px;
  outline: 0;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.brief-builder select:focus,
.contact-form select:focus,
.contact-form input:focus,
.contact-form textarea:focus {
  background: var(--white);
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(224, 25, 37, 0.12);
}

.brief-builder .button {
  width: 100%;
}

.brief-output {
  grid-column: 1 / -1;
  min-height: 78px;
  padding: 18px;
  color: var(--white);
  background: var(--black);
  border-left: 5px solid var(--red);
  border-radius: 8px;
  line-height: 1.55;
}

.contact-section {
  padding: 108px 0 92px;
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(430px, 0.7fr);
  gap: 34px;
  align-items: start;
}

.contact-copy address {
  display: grid;
  gap: 14px;
  margin-top: 28px;
  font-style: normal;
}

.contact-copy address span {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.contact-copy address .icon {
  flex: 0 0 auto;
  margin-top: 3px;
  color: #ff626b;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 24px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.full-field {
  grid-column: 1 / -1;
}

.contact-form textarea {
  resize: vertical;
}

.form-output {
  min-height: 48px;
  padding: 14px;
  color: var(--muted);
  background: #f8f7f5;
  border-radius: 6px;
  line-height: 1.55;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px max(20px, calc((100vw - 1180px) / 2));
  color: rgba(255, 255, 255, 0.72);
  background: #050506;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.footer-brand img {
  width: 86px;
  height: 40px;
  object-fit: contain;
  background: var(--white);
  border-radius: 5px;
}

.footer-brand p {
  display: grid;
  gap: 2px;
  margin: 0;
}

.footer-brand strong {
  color: var(--white);
}

.footer-brand span,
.footer-note,
.footer-links {
  font-size: 0.86rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.footer-links a {
  padding: 8px 10px;
  border-radius: 6px;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.footer-note {
  margin: 0;
  text-align: right;
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 18;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--red);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 16px 36px rgba(224, 25, 37, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 190ms ease, transform 190ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatSticker {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes railMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1040px) {
  .service-console,
  .export-layout,
  .contact-shell,
  .finance-panel,
  .about-grid {
    grid-template-columns: 1fr;
  }

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

  .services-heading-new .fade-visual {
    width: min(620px, 58vw);
    opacity: 0.52;
  }

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

  .service-tab {
    justify-content: center;
    min-height: 64px;
  }

  .service-photo {
    min-height: 280px;
  }

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

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

  .strip-item:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 820px) {
  .site-header {
    top: 0;
    padding: 8px 10px 0;
  }

  .nav-shell {
    width: min(100%, calc(100vw - 20px));
    min-height: 64px;
  }

  .site-header:not(.is-scrolled) .nav-shell {
    width: min(100%, calc(100vw - 20px));
  }

  .brand-mark {
    width: 104px;
    height: 50px;
  }

  .brand-copy strong {
    max-width: 180px;
    font-size: 0.86rem;
  }

  .brand-copy small {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .nav-links {
    position: fixed;
    top: 82px;
    left: 12px;
    right: 12px;
    display: grid;
    gap: 8px;
    padding: 12px;
    background: rgba(8, 8, 10, 0.96);
    border: 1px solid var(--line-light);
    border-radius: 8px;
    box-shadow: var(--shadow);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a,
  .nav-links .nav-cta {
    width: 100%;
    justify-content: space-between;
    margin-left: 0;
  }

  .hero {
    min-height: 90vh;
    padding-top: 132px;
  }

  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(8, 8, 10, 0.91), rgba(8, 8, 10, 0.45)),
      linear-gradient(0deg, rgba(8, 8, 10, 0.82), rgba(8, 8, 10, 0.1));
  }

  .hero-title-main {
    font-size: clamp(3.25rem, 16vw, 5.45rem);
  }

  .hero-title-sub {
    font-size: clamp(2.55rem, 12.5vw, 4.25rem);
  }

  .sticker-track {
    display: none;
  }

  .sticker-vision {
    position: relative;
    right: auto;
    bottom: auto;
    z-index: 4;
    margin: -62px 20px 0 auto;
  }

  .scroll-cue {
    display: none;
  }

  .quick-strip {
    margin-top: 0;
    border-radius: 0;
    width: 100%;
  }

  .section-heading,
  .services-heading,
  .vehicle-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .section-heading h2,
  .services-heading h2,
  .export-copy h2,
  .finance-copy h2,
  .contact-copy h2,
  .gallery-copy h2 {
    font-size: clamp(2.15rem, 9vw, 3.5rem);
    line-height: 1;
  }

  .fade-visual {
    min-height: 260px;
  }

  .services-heading-new {
    min-height: auto;
  }

  .services-heading-new .heading-copy {
    order: 1;
  }

  .services-heading-new .fade-visual {
    position: relative;
    order: 2;
    top: auto;
    right: auto;
    width: 100%;
    min-height: 280px;
    opacity: 1;
    transform: none;
  }

  .services-heading-new .fade-visual::after {
    background: linear-gradient(0deg, var(--black) 0%, rgba(8, 8, 10, 0.12) 54%, var(--black) 100%);
  }

  .filter-controls {
    justify-content: flex-start;
  }

  .about-section,
  .vehicle-section,
  .process-section,
  .finance-panel,
  .services-section,
  .export-section,
  .contact-section {
    padding: 76px 0;
  }

  .about-mosaic {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .about-mosaic .mosaic-large {
    min-height: 360px;
  }

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

  .service-tab {
    justify-content: flex-start;
  }

  .vehicle-showcase {
    display: grid;
  }

  .spotlight-card {
    grid-template-columns: 1fr;
  }

  .vehicle-count {
    width: fit-content;
  }

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

  .route-steps,
  .brief-builder,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .site-footer {
    display: grid;
    justify-items: start;
  }

  .footer-note {
    text-align: left;
  }
}

@media (max-width: 560px) {
  :root {
    --section: min(100vw - 28px, 1180px);
  }

  .hero {
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

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

  .hero-proof span {
    padding-right: 0;
  }

  .sticker-vision {
    width: calc(100vw - 28px);
    margin-left: 14px;
    margin-right: 14px;
  }

  .quick-strip,
  .process-line {
    grid-template-columns: 1fr;
  }

  .strip-item {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .strip-item:last-child {
    border-bottom: 0;
  }

  .about-copy,
  .service-result,
  .route-card,
  .brief-builder,
  .contact-form {
    padding: 20px;
  }

  .fade-visual {
    min-height: 220px;
  }

  .service-tabs,
  .vehicle-grid {
    grid-template-columns: 1fr;
  }

  .vehicle-card {
    min-height: 300px;
  }

  .rail-track img {
    width: 220px;
    height: 160px;
  }
}

@media (max-width: 360px) {
  .brand-mark {
    width: 88px;
    height: 46px;
  }

  .brand-copy strong {
    max-width: 132px;
  }
}

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