/* ==========================================================================
   SIDHU MOTORS INC. — landing page
   Industrial red/black system · Anton display · Inter body · Plex Mono data
   Dark (default) + light theme via html[data-theme]
   ========================================================================== */

:root {
  /* constants — true ink & paper, used on red/black surfaces in both themes */
  --black: #0a0a0b;
  --white: #f1f2f4;
  --red: #d81f2a;
  --red-deep: #b3121d;

  /* themed */
  --bg: #0a0a0b;
  --bg-rgb: 10, 10, 11;
  --bg-surface: #121214;
  --text: #f1f2f4;
  --muted: #9aa2af;
  --line: rgba(241, 242, 244, 0.12);
  --wordmark-stroke: rgba(241, 242, 244, 0.18);
  --hero-inner: #1a0507;
  --noise-opacity: 0.05;

  --font-display: 'Anton', Impact, sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
  --pad: clamp(20px, 5vw, 72px);
}

html[data-theme='light'] {
  --bg: #f1f2f4;
  --bg-rgb: 241, 242, 244;
  --bg-surface: #e7e9ec;
  --text: #131316;
  --muted: #5b6675;
  --line: rgba(19, 19, 22, 0.16);
  --wordmark-stroke: rgba(19, 19, 22, 0.22);
  --hero-inner: #fbe3e4;
  --noise-opacity: 0.035;
}

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

html { scroll-behavior: auto; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

html, body { overflow-x: clip; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  transition: background 0.4s ease, color 0.4s ease;
}

/* film-grain texture over everything */
body::after {
  content: '';
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  z-index: 9000;
  opacity: var(--noise-opacity);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

em { font-style: normal; color: var(--red); }

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

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

.br-desktop { display: inline; }
@media (max-width: 760px) { .br-desktop { display: none; } }

/* ==========================================================================
   Preloader
   ========================================================================== */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.preloader__panels {
  position: absolute;
  inset: 0;
  display: flex;
}
.preloader__panels span {
  flex: 1;
  background: var(--bg);
  will-change: transform;
}
.preloader__inner { text-align: center; position: relative; z-index: 1; }
.preloader__brand {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: 0.04em;
  color: var(--text);
}
.preloader__brand span { color: var(--red); }
.preloader__count {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--muted);
  margin-top: 18px;
}
.preloader__bar {
  width: 180px;
  height: 2px;
  background: var(--line);
  margin: 10px auto 0;
  overflow: hidden;
}
.preloader__bar span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
}

/* ==========================================================================
   Scroll progress
   ========================================================================== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  z-index: 8600;
  pointer-events: none;
}

/* ==========================================================================
   Custom cursor
   ========================================================================== */
.cursor, .cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9500;
  border-radius: 50%;
}
.cursor {
  width: 8px;
  height: 8px;
  background: var(--red);
  transform: translate(-50%, -50%);
}
.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(216, 31, 42, 0.5);
  transform: translate(-50%, -50%);
  transition: width 0.25s ease, height 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  display: grid;
  place-items: center;
}
.cursor-ring.is-hover {
  width: 64px;
  height: 64px;
  border-color: rgba(216, 31, 42, 0.9);
}
.cursor-ring__label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--white);
  opacity: 0;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}
.cursor-ring.is-label {
  width: 88px;
  height: 88px;
  background: rgba(216, 31, 42, 0.95);
  border-color: transparent;
}
.cursor-ring.is-label .cursor-ring__label { opacity: 1; }
@media (hover: none), (pointer: coarse) {
  .cursor, .cursor-ring { display: none; }
}

/* ==========================================================================
   Lane hover preview
   ========================================================================== */
.lane-preview {
  position: fixed;
  top: 0;
  left: 0;
  width: 250px;
  height: 165px;
  z-index: 8200;
  pointer-events: none;
  overflow: hidden;
  opacity: 0;
  border: 1px solid rgba(241, 242, 244, 0.25);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}
.lane-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.4) contrast(1.08);
}
@media (hover: none), (pointer: coarse) {
  .lane-preview { display: none; }
}

/* split-text helpers */
.char { display: inline-block; will-change: transform; }
.wline { display: inline-block; overflow: hidden; vertical-align: top; }
.word { display: inline-block; will-change: transform; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 18px 32px;
  position: relative;
  overflow: hidden;
  isolation: isolate;        /* contain the overlay below so it can sit under the label text */
  transition: color 0.35s ease;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;               /* paints over the button background but UNDER the label text */
  background: var(--white);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s cubic-bezier(0.65, 0, 0.35, 1);
}
.btn:hover::before { transform: scaleY(1); }
.btn:hover { color: var(--black); }
.btn > * { position: relative; }
.btn__arrow { transition: transform 0.3s ease; }
.btn:hover .btn__arrow { transform: translateX(5px); }

.btn--ghost {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
}
.btn--ghost::before { background: var(--red); }
.btn--ghost:hover { color: var(--white); border-color: var(--red); }

.btn--small { padding: 12px 22px; font-size: 12px; }
.btn--big { padding: 24px 48px; font-size: 16px; }

a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

/* ==========================================================================
   Theme toggle
   ========================================================================== */
.theme-toggle {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--text);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
  flex: 0 0 auto;
}
.theme-toggle:hover { border-color: var(--red); color: var(--red); transform: rotate(15deg); }
html[data-theme='dark'] .icon-moon { display: none; }
html[data-theme='light'] .icon-sun { display: none; }

/* ==========================================================================
   Nav
   ========================================================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 8000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px var(--pad);
  transition: background 0.4s ease, padding 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(var(--bg-rgb), 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding-top: 12px;
  padding-bottom: 12px;
  border-bottom-color: var(--line);
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
}
.nav__logo em { color: var(--red); }
.nav__logo-mark {
  width: 0;
  height: 0;
  border-left: 14px solid var(--red);
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
}
.nav__logo-img {
  height: 32px;
  width: auto;
  display: block;
}
[data-theme="dark"]  .nav__logo .logo--light { display: none; }
[data-theme="light"] .nav__logo .logo--dark  { display: none; }
@media (max-width: 600px) { .nav__logo-img { height: 26px; } }

/* ==========================================================================
   Coverage area (homepage lanes section)
   ========================================================================== */
.coverage {
  margin-top: clamp(44px, 6vw, 76px);
  border-top: 1px solid var(--line);
  padding-top: clamp(28px, 4vw, 46px);
}
.coverage__head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px 24px;
  margin-bottom: clamp(24px, 3.4vw, 38px);
}
.coverage__label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
}
.coverage__detail {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.coverage__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 64px);
}
.coverage__region {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.coverage__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  flex: 0 0 auto;
}
.coverage__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 18px;
}
.coverage__list li {
  font-family: var(--font-display);
  font-size: clamp(19px, 2.3vw, 28px);
  letter-spacing: 0.02em;
  line-height: 1.05;
  color: var(--text);
}
@media (max-width: 720px) {
  .coverage__cols { grid-template-columns: 1fr; gap: 30px; }
}
.nav__links {
  display: flex;
  gap: 34px;
}
.nav__links a {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  transition: color 0.25s ease;
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__right { display: flex; align-items: center; gap: 20px; }
.nav__phone {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--muted);
  transition: color 0.25s ease;
}
.nav__phone:hover { color: var(--text); }
.nav__burger {
  display: none;
  background: none;
  border: 0;
  width: 36px;
  height: 28px;
  position: relative;
  cursor: pointer;
}
.nav__burger span {
  position: absolute;
  left: 4px;
  right: 4px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s ease, top 0.3s ease;
}
.nav__burger span:nth-child(1) { top: 9px; }
.nav__burger span:nth-child(2) { top: 17px; }
.nav__burger.is-open span:nth-child(1) { top: 13px; transform: rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { top: 13px; transform: rotate(-45deg); }

@media (max-width: 960px) {
  .nav__links, .nav__phone { display: none; }
  .nav__burger { display: block; }
}
@media (max-width: 480px) {
  .nav .btn--small { display: none; }
}

/* ==========================================================================
   Mobile menu
   ========================================================================== */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 7500;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--pad);
  clip-path: inset(0 0 100% 0);
  visibility: hidden;
}
.mobile-menu nav { display: flex; flex-direction: column; gap: 8px; }
.mobile-menu nav a {
  font-family: var(--font-display);
  font-size: clamp(40px, 10vw, 64px);
  line-height: 1.15;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.25s ease;
}
.mobile-menu nav a:hover { color: var(--red); }
.mobile-menu__meta {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--muted);
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: radial-gradient(120% 80% at 50% 100%, var(--hero-inner) 0%, var(--bg) 60%);
}
.hero__vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(var(--bg-rgb), 0.85) 0%, rgba(var(--bg-rgb), 0) 28%),
    linear-gradient(0deg, rgba(var(--bg-rgb), 0.92) 0%, rgba(var(--bg-rgb), 0) 32%);
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 var(--pad);
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}
.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: clamp(10px, 1.1vw, 13px);
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-bottom: clamp(16px, 2.5vh, 28px);
}
.hero__eyebrow .dot, .band__label .dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  margin: 0 10px;
  vertical-align: middle;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(56px, 11.5vw, 168px);
  line-height: 0.96;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  font-weight: 400;
}
.hero__sub {
  margin-top: clamp(20px, 3vh, 32px);
  font-size: clamp(15px, 1.4vw, 19px);
  color: var(--muted);
  max-width: 640px;
}
.hero__cta {
  margin-top: clamp(28px, 4vh, 44px);
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero__footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 var(--pad) 28px;
  gap: 24px;
}
.hero__scroll {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero__scroll-line {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--red);
  animation: scrollPulse 2s ease-in-out infinite;
  transform-origin: left;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleX(0.3); opacity: 0.5; }
  50% { transform: scaleX(1); opacity: 1; }
}
.hero__stats {
  list-style: none;
  display: flex;
  gap: clamp(24px, 4vw, 56px);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--muted);
}
.hero__stats strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(18px, 2vw, 26px);
  letter-spacing: 0.04em;
  color: var(--text);
  margin-bottom: 4px;
}
@media (max-width: 760px) {
  .hero__footer { flex-direction: column; align-items: flex-start; padding-bottom: 76px; }
  .hero__stats { flex-wrap: wrap; gap: 18px 28px; }
}

/* line-reveal helpers */
.reveal-line { display: block; overflow: hidden; }
.reveal-line > span { display: inline-block; will-change: transform; }

/* ==========================================================================
   Marquee
   ========================================================================== */
.marquee {
  background: var(--red);
  color: var(--black);
  overflow: hidden;
  padding: 18px 0;
  transform: rotate(-1.2deg) scale(1.02);
  margin: -28px 0 0;
  position: relative;
  z-index: 3;
}
.marquee__track { display: flex; width: max-content; will-change: transform; }
.marquee__group {
  display: flex;
  align-items: center;
  gap: 36px;
  padding-right: 36px;
}
.marquee__group span {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 34px);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.marquee__group i { font-style: normal; font-size: 14px; }

/* ==========================================================================
   Section label
   ========================================================================== */
.section-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: clamp(28px, 5vh, 48px);
}
.section-label::after {
  content: '';
  flex: 0 0 56px;
  height: 1px;
  background: var(--red);
}
.section-label__num { color: var(--red); }

/* ==========================================================================
   Manifesto
   ========================================================================== */
.manifesto { padding: clamp(110px, 16vh, 190px) 0; }
.manifesto__text {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(26px, 3.6vw, 52px);
  line-height: 1.25;
  letter-spacing: -0.015em;
  max-width: 1180px;
}
.manifesto__text .w { opacity: 0.14; transition: none; }
.manifesto__stats {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: clamp(60px, 9vh, 100px);
  border-top: 1px solid var(--line);
  padding-top: 40px;
}
.manifesto__stat-num {
  font-family: var(--font-display);
  font-size: clamp(44px, 5.5vw, 84px);
  line-height: 1;
  display: block;
}
.manifesto__stat-label {
  display: block;
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--muted);
}
@media (max-width: 760px) {
  .manifesto__stats { grid-template-columns: repeat(2, 1fr); gap: 36px 20px; }
}

/* ==========================================================================
   Fleet image band
   ========================================================================== */
.band {
  position: relative;
  height: clamp(420px, 72vh, 720px);
  overflow: hidden;
}
.band__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 124%;
  object-fit: cover;
  object-position: 25% 65%; /* keep the truck in frame on narrow crops */
  filter: grayscale(0.25) contrast(1.06) brightness(0.82);
  will-change: transform;
}
.band__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(10, 10, 11, 0.78) 0%, rgba(10, 10, 11, 0.05) 48%),
    linear-gradient(90deg, rgba(10, 10, 11, 0.35) 0%, rgba(10, 10, 11, 0) 50%);
}
.band__caption {
  position: absolute;
  left: var(--pad);
  right: var(--pad);
  bottom: clamp(24px, 5vh, 48px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--white);
}
.band__label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
}
.band__big {
  font-family: var(--font-display);
  font-size: clamp(48px, 9vw, 140px);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(241, 242, 244, 0.55);
}

/* ==========================================================================
   Services — horizontal scroll
   ========================================================================== */
.services {
  background: var(--red);
  color: var(--black);
  position: relative;
}
.services__head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 0 32px;
  padding-top: clamp(60px, 8vh, 90px);
}
.services__head .section-label { grid-column: 1 / -1; }
@media (min-width: 961px) {
  .services {
    height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .services__head { padding-top: 0; width: 100%; }
}
.section-label--light { color: rgba(10, 10, 11, 0.65); }
.section-label--light::after { background: var(--black); }
.section-label--light .section-label__num { color: var(--black); }
.services__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 92px);
  line-height: 0.95;
  text-transform: uppercase;
  font-weight: 400;
}
.services__hint {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  padding-bottom: 12px;
  white-space: nowrap;
}
.services__pin { overflow: hidden; }
.services__track {
  display: flex;
  width: max-content;
  padding: clamp(28px, 4vh, 48px) var(--pad) clamp(40px, 6vh, 70px);
  gap: clamp(20px, 2.5vw, 36px);
}
.svc {
  width: clamp(300px, 34vw, 460px);
  min-height: clamp(320px, 46vh, 430px);
  border: 1px solid rgba(10, 10, 11, 0.35);
  padding: clamp(24px, 2.5vw, 40px);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  background: transparent;
  transition: background 0.4s ease, color 0.4s ease, transform 0.4s ease;
}
.svc > :not(.svc__img) { position: relative; z-index: 1; }
.svc__img {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  filter: grayscale(1) contrast(1.1) brightness(0.85);
  transition: opacity 0.5s ease, transform 0.7s ease;
}
.svc:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-8px);
}
.svc:hover .svc__img { opacity: 0.34; transform: scale(1); }
.svc__num {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  opacity: 0.7;
}
.svc__name {
  font-family: var(--font-display);
  font-size: clamp(34px, 3.4vw, 52px);
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
  margin-top: auto;
}
.svc:hover .svc__name { color: var(--red); }
.svc__tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  margin-top: 10px;
  opacity: 0.7;
}
.svc__desc {
  font-size: 14.5px;
  line-height: 1.55;
  margin-top: 18px;
  opacity: 0.85;
}
.svc__arrow {
  position: absolute;
  top: clamp(20px, 2vw, 34px);
  right: clamp(20px, 2vw, 34px);
  font-size: 22px;
  transition: transform 0.3s ease;
}
.svc:hover .svc__arrow { transform: translateX(6px); color: var(--red); }

@media (max-width: 960px) {
  .services__head { grid-template-columns: 1fr; }
  .services__hint { display: none; }
  .services__track {
    flex-direction: column;
    width: 100%;
    gap: 16px;
  }
  .svc { width: 100%; min-height: 0; }
}

/* ==========================================================================
   Lanes
   ========================================================================== */
.lanes { padding: clamp(110px, 16vh, 190px) 0 clamp(90px, 13vh, 150px); }
.lanes__title {
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 110px);
  line-height: 0.95;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: clamp(48px, 8vh, 80px);
}
.lanes__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.lanes__list { list-style: none; border-top: 1px solid var(--line); }
.lane {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  align-items: center;
  gap: clamp(16px, 2vw, 32px);
  padding: clamp(20px, 3vh, 30px) clamp(8px, 1vw, 20px);
  border-bottom: 1px solid var(--line);
  position: relative;
  cursor: pointer;
  isolation: isolate;
}
.lane::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--red);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s cubic-bezier(0.65, 0, 0.35, 1);
  z-index: -1;
}
.lane:hover::before { transform: scaleY(1); }
.lane__route {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 34px);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: transform 0.35s ease, color 0.35s ease;
}
.lane:hover .lane__route { transform: translateX(14px); color: var(--white); }
.lane__transit, .lane__freq {
  font-family: var(--font-mono);
  font-size: clamp(10px, 1vw, 12px);
  letter-spacing: 0.12em;
  color: var(--muted);
  transition: color 0.3s ease;
}
.lane__freq {
  border: 1px solid var(--line);
  padding: 6px 12px;
}
.lane:hover .lane__transit, .lane:hover .lane__freq { color: var(--white); }
.lane:hover .lane__freq { border-color: rgba(241, 242, 244, 0.5); }
.lane__arrow {
  font-size: clamp(16px, 1.6vw, 22px);
  color: var(--muted);
  transition: transform 0.35s ease, color 0.35s ease;
}
.lane:hover .lane__arrow {
  transform: translate(4px, -4px);
  color: var(--white);
}
.lanes__note {
  margin-top: 28px;
  font-size: 15px;
  color: var(--muted);
}
.lanes__note a {
  color: var(--text);
  border-bottom: 1px solid var(--red);
  transition: color 0.25s ease;
}
.lanes__note a:hover { color: var(--red); }

/* route map */
.lanes__map {
  position: sticky;
  top: 110px;
}
.lanes__map svg { width: 100%; height: auto; }
.map-dot { fill: var(--line); }
.route {
  fill: none;
  stroke: var(--red);
  stroke-width: 1.6;
  opacity: 0.9;
}
.city circle { fill: var(--text); }
.city text {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  fill: var(--muted);
}
.city--hub .hub-core { fill: var(--red); }
.city--hub text { fill: var(--text); font-weight: 500; }
.hub-pulse {
  fill: none;
  stroke: var(--red);
  stroke-width: 1.2;
  transform-box: fill-box;
  transform-origin: center;
  animation: hubPulse 2.4s ease-out infinite;
}
@keyframes hubPulse {
  0% { transform: scale(0.45); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}

@media (max-width: 960px) {
  .lanes__grid { grid-template-columns: 1fr; }
  .lanes__map { position: static; max-width: 460px; margin: 12px auto 0; }
}
@media (max-width: 640px) {
  .lane { grid-template-columns: 1fr auto; }
  .lane__transit, .lane__arrow { display: none; }
}

/* ==========================================================================
   Process
   ========================================================================== */
.process {
  background: var(--bg-surface);
  padding: clamp(110px, 16vh, 190px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.process__title {
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 110px);
  line-height: 0.95;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--text);
  margin-bottom: clamp(48px, 8vh, 90px);
}
.process .section-label--light { color: var(--muted); }
.process .section-label--light::after { background: var(--red); }
.process .section-label--light .section-label__num { color: var(--red); }
.process__rail {
  height: 2px;
  background: var(--line);
  margin-bottom: clamp(36px, 6vh, 60px);
  overflow: hidden;
}
.process__rail span {
  display: block;
  height: 100%;
  width: 100%;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
}
.process__steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(20px, 2.5vw, 36px);
}
.step__num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--red);
  letter-spacing: 0.1em;
}
.step__name {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.4vw, 36px);
  font-weight: 400;
  letter-spacing: 0.03em;
  margin: 12px 0 10px;
}
.step__desc { font-size: 14px; color: var(--muted); line-height: 1.6; }
@media (max-width: 960px) {
  .process__steps { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
}
@media (max-width: 560px) {
  .process__steps { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Trust band
   ========================================================================== */
.trust {
  padding: clamp(40px, 6vh, 64px) var(--pad);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.trust__items {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(16px, 3vw, 40px);
}
.trust__item {
  font-family: var(--font-mono);
  font-size: clamp(12px, 1.3vw, 15px);
  letter-spacing: 0.14em;
  color: var(--muted);
}
.trust__item strong { color: var(--text); font-weight: 500; }
.trust__sep { color: var(--red); font-size: 11px; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { padding: clamp(110px, 16vh, 190px) 0; }
.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.faq__title {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 96px);
  line-height: 0.95;
  text-transform: uppercase;
  font-weight: 400;
}
.faq__sub { margin-top: 24px; color: var(--muted); font-size: 15px; max-width: 360px; }
.faq__sub a { color: var(--text); border-bottom: 1px solid var(--red); }
.faq__sub a:hover { color: var(--red); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item:first-child { border-top: 1px solid var(--line); }
.faq__item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(20px, 3vh, 28px) 4px;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(16px, 1.6vw, 20px);
  color: var(--text);
  transition: color 0.25s ease;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--red); }
.faq__icon {
  font-family: var(--font-mono);
  font-size: 22px;
  color: var(--red);
  flex: 0 0 auto;
  transition: transform 0.3s ease;
}
.faq__item[open] .faq__icon { transform: rotate(45deg); }
.faq__answer { overflow: hidden; }
.faq__answer p {
  padding: 0 4px 26px;
  color: var(--muted);
  font-size: 15.5px;
  max-width: 640px;
}
@media (max-width: 880px) {
  .faq__grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   CTA
   ========================================================================== */
.cta {
  background: var(--red);
  color: var(--white);
  padding: clamp(110px, 16vh, 200px) 0;
  position: relative;
  overflow: hidden;
}
.cta .section-label--light { color: rgba(241, 242, 244, 0.7); }
.cta .section-label--light::after { background: var(--black); }
.cta .section-label--light .section-label__num { color: var(--black); }
.cta__title {
  font-family: var(--font-display);
  font-size: clamp(72px, 14vw, 220px);
  line-height: 0.92;
  text-transform: uppercase;
  font-weight: 400;
}
.cta__title em { color: var(--black); }
.cta__sub {
  margin-top: 28px;
  font-size: clamp(15px, 1.5vw, 19px);
  max-width: 520px;
  color: rgba(241, 242, 244, 0.85);
}
.cta__actions {
  margin-top: clamp(36px, 6vh, 56px);
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
  flex-wrap: wrap;
}
.cta .btn--big { background: var(--black); }
.cta .btn--big::before { background: var(--white); }
.cta__contact { display: flex; flex-direction: column; gap: 4px; }
.cta__contact a {
  font-family: var(--font-mono);
  font-size: 15px;
  letter-spacing: 0.04em;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease;
  width: fit-content;
}
.cta__contact a:hover { border-bottom-color: var(--white); }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: var(--bg);
  padding-top: clamp(70px, 10vh, 110px);
  overflow: hidden;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: clamp(32px, 4vw, 64px);
  padding-bottom: clamp(56px, 8vh, 90px);
}
.footer__col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--red);
  margin-bottom: 18px;
}
.footer__col a {
  display: block;
  color: var(--muted);
  font-size: 14.5px;
  padding: 5px 0;
  transition: color 0.25s ease, transform 0.25s ease;
  width: fit-content;
}
.footer__col a:hover { color: var(--text); transform: translateX(4px); }
.footer__tag { font-size: 17px; font-weight: 500; line-height: 1.5; }
.footer__addr {
  margin-top: 20px;
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.footer__hours {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  color: var(--muted);
}
.footer__wordmark {
  font-family: var(--font-display);
  font-size: clamp(64px, 12.5vw, 198px);
  line-height: 0.8;
  text-align: center;
  letter-spacing: 0.02em;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px var(--wordmark-stroke);
  user-select: none;
  transform: translateY(12%);
  transition: -webkit-text-stroke-color 0.5s ease;
}
.footer__wordmark:hover { -webkit-text-stroke-color: rgba(216, 31, 42, 0.65); }
.footer__top {
  font-family: var(--font-mono);
  letter-spacing: 0.1em;
  color: var(--muted);
  transition: color 0.25s ease;
}
.footer__top:hover { color: var(--red); }
.footer__legal {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 22px;
  padding-bottom: 26px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--muted);
}
@media (max-width: 880px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__col--brand { grid-column: 1 / -1; }
}

/* ==========================================================================
   Equipment
   ========================================================================== */
.equipment {
  padding: clamp(110px, 16vh, 190px) 0 clamp(40px, 6vh, 70px);
}
.equipment__title {
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 110px);
  line-height: 0.95;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: clamp(48px, 8vh, 80px);
}
.equipment__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 28px);
}
.eq-card {
  border: 1px solid var(--line);
  padding: clamp(26px, 2.6vw, 40px);
  display: flex;
  flex-direction: column;
  transition: border-color 0.35s ease, transform 0.35s ease;
}
.eq-card:hover { border-color: var(--red); transform: translateY(-6px); }
.eq-card__num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--red);
  letter-spacing: 0.1em;
}
.eq-card__name {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 400;
  letter-spacing: 0.03em;
  margin: 14px 0 22px;
}
.eq-card__specs {
  list-style: none;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  color: var(--muted);
}
.eq-card__specs li {
  padding: 9px 0;
  border-top: 1px solid var(--line);
}
.eq-card__specs li:last-child { border-bottom: 1px solid var(--line); }
.eq-card__desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin-top: 18px;
}
@media (max-width: 880px) {
  .equipment__grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials { padding: clamp(110px, 16vh, 190px) 0; }
.testimonials__title {
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 110px);
  line-height: 0.95;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: clamp(48px, 8vh, 80px);
}
.testimonials__list { list-style: none; border-top: 1px solid var(--line); }
.quote-row {
  display: grid;
  grid-template-columns: 1.6fr 0.7fr;
  gap: clamp(20px, 4vw, 64px);
  align-items: end;
  padding: clamp(28px, 4.5vh, 44px) 0;
  border-bottom: 1px solid var(--line);
}
.quote-row blockquote {
  font-size: clamp(19px, 2.1vw, 30px);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.01em;
  position: relative;
}
.quote-mark {
  color: var(--red);
  font-family: var(--font-display);
  margin-right: 6px;
}
.quote-row cite {
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-align: right;
}
.quote-row cite span {
  display: block;
  margin-top: 6px;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  color: var(--muted);
}
.testimonials__note {
  margin-top: 22px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--muted);
  opacity: 0.7;
}
@media (max-width: 700px) {
  .quote-row { grid-template-columns: 1fr; align-items: start; }
  .quote-row cite { text-align: left; }
}

/* ==========================================================================
   Resources teaser
   ========================================================================== */
.resources {
  background: var(--bg-surface);
  border-top: 1px solid var(--line);
  padding: clamp(100px, 14vh, 170px) 0;
}
.resources__title {
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 110px);
  line-height: 0.95;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: clamp(48px, 8vh, 80px);
}
.resources__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 28px);
}
.res-card {
  border: 1px solid var(--line);
  padding: clamp(26px, 2.6vw, 38px);
  min-height: clamp(200px, 26vh, 260px);
  display: flex;
  flex-direction: column;
  transition: border-color 0.35s ease, transform 0.35s ease, background 0.35s ease;
}
.res-card:hover { border-color: var(--red); transform: translateY(-6px); }
.res-card__tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--red);
}
.res-card__name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.4;
  margin: 16px 0 auto;
}
.res-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
}
.res-card__soon {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 5px 10px;
}
.res-card__arrow {
  font-size: 20px;
  color: var(--muted);
  transition: transform 0.3s ease, color 0.3s ease;
}
.res-card:hover .res-card__arrow { transform: translateX(6px); color: var(--red); }
@media (max-width: 880px) {
  .resources__grid { grid-template-columns: 1fr; }
  .res-card { min-height: 0; }
}

/* ==========================================================================
   CTA grid + quote form
   ========================================================================== */
.cta__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(40px, 6vw, 110px);
  align-items: start;
}
.cta__grid .cta__title { font-size: clamp(64px, 8vw, 150px); }
.cta__badges {
  margin-top: 26px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: rgba(241, 242, 244, 0.75);
}
.cta__contact { margin-top: clamp(28px, 4vh, 40px); }

.quote-form { position: relative; }
.quote-form__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vh, 30px) 28px;
}
.qf-field { display: flex; flex-direction: column; }
.qf-field--full { grid-column: 1 / -1; }
.qf-field label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: rgba(10, 10, 11, 0.65);
  margin-bottom: 6px;
}
.qf-field input,
.qf-field select,
.qf-field textarea {
  background: transparent;
  border: 0;
  border-bottom: 1.5px solid rgba(10, 10, 11, 0.4);
  border-radius: 0;
  padding: 10px 0;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--black);
  transition: border-color 0.25s ease;
  -webkit-appearance: none;
  appearance: none;
}
.qf-field select { cursor: pointer; }
.qf-field select:invalid { color: rgba(10, 10, 11, 0.55); }
.qf-field input::placeholder,
.qf-field textarea::placeholder { color: rgba(10, 10, 11, 0.45); }
.qf-field input:focus,
.qf-field select:focus,
.qf-field textarea:focus {
  outline: none;
  border-bottom-color: var(--black);
}
.qf-field textarea { resize: vertical; min-height: 48px; }
.quote-form__submit {
  grid-column: 1 / -1;
  justify-content: center;
  background: var(--black);
  margin-top: 6px;
}
.quote-form__submit::before { background: var(--white); }
.quote-form__note {
  grid-column: 1 / -1;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(10, 10, 11, 0.7);
  text-align: center;
}
.quote-form__success { padding: clamp(24px, 4vh, 48px) 0; }
.quote-form__success-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 5vw, 80px);
  line-height: 1;
  color: var(--black);
}
.quote-form__success-sub {
  margin-top: 18px;
  font-size: 17px;
  max-width: 440px;
  color: rgba(241, 242, 244, 0.95);
}
.quote-form__success-link {
  display: inline-block;
  margin-top: 22px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--black);
  color: var(--black);
}
@media (max-width: 960px) {
  .cta__grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .quote-form__fields { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Mobile dispatch dock
   ========================================================================== */
.mobile-dock {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 7200;
  display: none;
  grid-template-columns: 1fr 1fr;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.65, 0, 0.35, 1);
  padding-bottom: env(safe-area-inset-bottom);
  background: var(--black);
}
.mobile-dock a {
  padding: 17px 10px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--white);
}
.mobile-dock a:last-child { background: var(--red); }
.mobile-dock.is-visible { transform: translateY(0); }
@media (max-width: 760px) {
  .mobile-dock { display: grid; }
}

/* ==========================================================================
   Reduced motion
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    transition-duration: 0.001s !important;
  }
}
