:root,
[data-theme="dark"] {
  color-scheme: dark;
  --navy: #07080c;
  --navy-2: #101218;
  --anth: #16181f;
  --steel: #8b909a;
  --mist: #f3f4f6;
  --brand: #e31e24;
  --brand-2: #ff3a40;
  --line: rgba(255, 255, 255, 0.1);
  --header: 96px;
  --header-bg: rgba(7, 8, 12, 0.94);
  --header-fg: #f3f4f6;
  --header-muted: #8b909a;
  --header-bar: rgba(7, 8, 12, 0.92);
  --header-bar-solid: rgba(7, 8, 12, 0.97);
  --input: #0d1016;
  --footer: #05060a;
  --card: #16181f;
  --paper: #101218;
}

[data-theme="light"] {
  color-scheme: light;
  --navy: #f3f4f6;
  --navy-2: #ffffff;
  --anth: #ffffff;
  --steel: #5c616b;
  --mist: #12141a;
  --brand: #e31e24;
  --brand-2: #c4181e;
  --line: rgba(18, 20, 26, 0.1);
  --header-bg: #ffffff;
  --header-fg: #12141a;
  --header-muted: #5c616b;
  --header-bar: rgba(255, 255, 255, 0.92);
  --header-bar-solid: rgba(255, 255, 255, 0.97);
  --input: #ffffff;
  --footer: #0b0c10;
  --card: #ffffff;
  --paper: #f7f8fa;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 16px);
  overflow-x: hidden;
  background: var(--navy);
}

html.is-inner {
  scroll-behavior: auto;
}

body {
  margin: 0;
  background: var(--navy);
  color: var(--mist);
  font-family: Manrope, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

html.is-locked {
  overflow: hidden;
  overscroll-behavior: none;
}

body.is-locked {
  overflow: hidden;
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  overscroll-behavior: none;
}

img { max-width: 100%; display: block; }

a, button {
  -webkit-tap-highlight-color: transparent;
}

h1, h2, h3 {
  font-family: Archivo, sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 0 16px;
  overflow-wrap: break-word;
}

.skip {
  position: absolute;
  left: -999px;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 42%, rgba(227, 30, 36, 0.14), transparent 46%),
    #05060a;
  transform: translate3d(0, 0, 0);
  transition: transform 0.55s cubic-bezier(0.76, 0, 0.18, 1);
  will-change: transform;
}

.page-loader::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 50% 45%, #000 18%, transparent 72%);
  opacity: 0.7;
}

.page-loader.is-done {
  transform: translate3d(0, -100%, 0);
  pointer-events: none;
}

.page-loader.is-cover {
  transform: none;
  pointer-events: auto;
}

html.is-revisit .page-loader,
html.is-revisit .page-loader.is-done,
html.is-revisit .page-loader.is-cover {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: none;
  transition: none;
}

html.is-inner .page-loader.is-done {
  transform: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.36s ease, visibility 0.36s;
}

.page-loader-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, transparent, var(--brand) 30%, #fff 92%);
  transform: scaleX(0);
  transform-origin: left center;
  animation: loadSweep 1.05s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.page-loader-stage {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 20px;
}

.page-loader-spin {
  position: relative;
  width: 118px;
  height: 118px;
  display: grid;
  place-items: center;
}

.page-loader-orbit {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.orbit-ring {
  fill: none;
  stroke: rgba(255, 255, 255, 0.1);
  stroke-width: 1;
}

.orbit-arc {
  fill: none;
  stroke: #e31e24;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-dasharray: 70 194;
  transform-box: fill-box;
  transform-origin: center;
  transform: rotate(-90deg);
  animation: orbitSpin 0.9s linear infinite;
}

.page-loader-truck {
  width: 48px;
  height: 48px;
  color: #f3f4f6;
  animation: truckShift 1.4s ease-in-out infinite;
}

.page-loader-word {
  margin: 0;
  font-family: Archivo, sans-serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #f3f4f6;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(10px);
  animation: markIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.08s forwards;
}

.page-loader-word span { color: var(--brand); }

.wrap {
  width: min(1240px, calc(100% - 40px));
  margin-inline: auto;
}

.wrap > * { min-width: 0; }

.kicker {
  margin: 0 0 14px;
  color: var(--brand);
  font-family: Manrope, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 2px;
  text-decoration: none;
  font-family: Manrope, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.25s ease;
}

.btn-amber {
  background: var(--brand);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.btn-amber::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 40%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.28), transparent);
  transform: translateX(-130%) skewX(-18deg);
}

.btn-amber:hover { background: var(--brand-2); }
.btn-amber:hover::after { animation: shine 0.7s ease; }

.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--mist);
}

.btn-ghost:hover { border-color: var(--brand); color: var(--brand); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header);
  background: var(--header-bar);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.site-header.is-solid {
  background: var(--header-bar-solid);
}

.header-inner,
.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.header-inner {
  width: min(1240px, calc(100% - 40px));
  height: 100%;
  margin-inline: auto;
  justify-content: space-between;
}

.logo {
  text-decoration: none;
  display: grid;
  align-items: center;
  width: 220px;
  height: 58px;
  flex-shrink: 0;
  background: transparent;
  padding: 0;
  border: 0;
  box-shadow: none;
}

.logo img {
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: left center;
}

.logo img.logo-on-dark { display: block; }
.logo img.logo-on-light { display: none; }

[data-theme="light"] .logo img.logo-on-dark { display: none; }
[data-theme="light"] .logo img.logo-on-light { display: block; }

.logo-foot {
  display: inline-flex;
  max-width: 220px;
  margin-bottom: 16px;
  padding: 0;
}

.logo-foot img {
  height: auto;
  width: 100%;
  max-height: 58px;
}

.nav { display: flex; gap: 13px; }

.nav a {
  text-decoration: none;
  font-family: Manrope, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--header-muted);
}

.nav a:hover,
.nav a.is-active { color: var(--brand); }

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--header-muted);
  font-size: 13px;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.header-phone-icon {
  display: none;
  width: 18px;
  height: 18px;
}

.header-comms {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.header-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: #25d366;
  text-decoration: none;
}

.header-wa svg {
  width: 18px;
  height: 18px;
  display: block;
}

.header-wa:hover {
  border-color: #25d366;
  color: #4ce08a;
}

.header-wa:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

.menu-btn {
  display: none;
  position: relative;
  z-index: 40;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.menu-btn span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--header-fg);
  transition: transform 0.35s ease, opacity 0.25s ease;
}

.theme-btn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--header-fg);
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 0;
  border-radius: 2px;
}

.theme-btn:hover { border-color: var(--brand); color: var(--brand); }

.theme-btn:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

.theme-btn svg {
  width: 20px;
  height: 20px;
  display: none;
}

[data-theme="dark"] .theme-btn .icon-sun { display: block; }
[data-theme="light"] .theme-btn .icon-moon { display: block; }

.menu-panel {
  display: none;
}

.hero,
.hero-stats,
.cta-band {
  color: #f3f4f6;
}

.hero .kicker,
.cta-band .kicker { color: var(--brand); }

.hero .kicker {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 14px;
  background: rgba(7, 8, 12, 0.82);
  border-left: 3px solid var(--brand);
  color: #ff4d53;
  text-shadow: none;
}

.hero h1,
.hero-slogan {
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.55);
}

.hero .lead {
  color: #f3f4f6;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.45);
}

[data-theme="light"] .site-header {
  background: var(--header-bg);
  border-bottom: 1px solid var(--line);
}

[data-theme="light"] .menu-btn span { background: var(--header-fg); }

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero-stage {
  position: relative;
  min-height: min(86svh, 900px);
  display: flex;
  align-items: flex-end;
}

.hero-film,
.hero-film img,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-film { z-index: 0; }

.hero-film img:not(.hero-poster) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.1s ease;
}

.hero-film img.hero-poster {
  opacity: 1;
  transform: none;
  animation: none;
}

.hero-poster,
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 1;
}

.hero-poster {
  opacity: 1;
  transition: opacity 0.85s ease;
}

.hero-video {
  opacity: 0;
  transition: opacity 0.85s ease;
}

.hero-film.is-playing .hero-video { opacity: 1; }
.hero-film.is-playing .hero-poster { opacity: 0; pointer-events: none; }
.hero-film.is-playing img:not(.hero-poster) { opacity: 0 !important; animation: none; }

.hero-film img.is-on {
  opacity: 1;
  animation: ken 9s ease-in-out forwards;
}

.hero-film img.hero-still {
  opacity: 1;
  transform: none;
  animation: none;
  object-position: 72% 52%;
}

.hero-shade {
  z-index: 1;
  background: linear-gradient(90deg, rgba(7, 8, 12, 0.9) 0%, rgba(7, 8, 12, 0.58) 36%, rgba(7, 8, 12, 0.2) 62%, rgba(7, 8, 12, 0.04) 100%);
}

.hero-lanes {
  position: relative;
  z-index: 3;
  padding: 18px 0 20px;
  background: #0b0d12;
  border-top: 1px solid rgba(227, 30, 36, 0.45);
}

.hero-lanes-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.hero-lane {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  min-height: 92px;
  padding: 16px 18px;
  text-decoration: none;
  color: #fff;
  background: #16181f;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 3px solid var(--brand);
}

.hero-lane em {
  font-family: "Barlow Condensed", sans-serif;
  font-style: normal;
  font-size: 15px;
  letter-spacing: 0.18em;
  color: var(--brand);
}

.hero-lane span {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.35;
  color: #f3f4f6;
}

.hero-lane:hover {
  background: #1c1f28;
  border-color: rgba(227, 30, 36, 0.55);
  border-top-color: var(--brand-2);
}

.hero-lane:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

.journey-rail {
  position: fixed;
  right: max(16px, env(safe-area-inset-right));
  top: 50%;
  z-index: 20;
  width: 2px;
  height: min(38vh, 280px);
  transform: translateY(-50%);
  pointer-events: none;
}

.journey-track,
.journey-fill {
  position: absolute;
  inset: 0;
  border-radius: 2px;
}

.journey-track { background: rgba(227, 30, 36, 0.18); }

.journey-fill {
  bottom: auto;
  height: 0%;
  background: #e31e24;
}

.journey-craft {
  position: absolute;
  left: 50%;
  top: 0;
  width: 11px;
  height: 11px;
  border: 2px solid #e31e24;
  background: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

body.is-home main { position: relative; }

.hero-content {
  position: relative;
  z-index: 3;
  padding: 140px 0 56px;
  max-width: 820px;
  margin-left: max(20px, calc((100% - 1240px) / 2));
}

.hero .kicker {
  letter-spacing: 0.12em;
  line-height: 1.45;
}

.hero-content > * {
  animation: rise 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-content h1 { animation-delay: 0.12s; }
.hero-content .lead { animation-delay: 0.22s; }
.hero-content .hero-actions { animation-delay: 0.34s; }

.hero h1 {
  font-family: Barlow, sans-serif;
  font-weight: 700;
  font-size: clamp(42px, 6.6vw, 88px);
  letter-spacing: 0.06em;
  line-height: 0.9;
  text-transform: uppercase;
  max-width: 12ch;
}

.hero h1 span {
  display: block;
  margin-top: 8px;
  color: var(--brand);
  font-size: 0.46em;
  letter-spacing: 0.32em;
  font-weight: 700;
}

.hero .lead {
  color: rgba(243, 244, 246, 0.9);
}

.hero-slogan {
  margin: 16px 0 0;
  font-family: Barlow, sans-serif;
  font-weight: 600;
  font-size: clamp(14px, 1.7vw, 22px);
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-transform: uppercase;
  color: #fff;
}

.lead {
  max-width: 52ch;
  color: var(--steel);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 500;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.hero-stats {
  position: relative;
  z-index: 4;
  background: #07080c;
  border-top: 1px solid var(--line);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.stats-row article {
  padding: 28px 0;
  border-right: 1px solid var(--line);
}

.stats-row article:last-child { border-right: 0; }

.stats-row strong {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(42px, 6vw, 72px);
  color: var(--brand);
  line-height: 0.9;
}

.stats-row span {
  color: var(--steel);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 12px;
}

.stats-row article.is-place strong,
.fleet-facts .stats-row article:last-child strong {
  font-size: clamp(26px, 3.4vw, 42px);
  letter-spacing: 0.02em;
  line-height: 1.05;
}

.section { padding: 100px 0; }

.about-grid,
.services-layout,
.contact-grid,
.values-grid,
.footer-grid {
  display: grid;
  gap: 48px;
}

.about-grid { grid-template-columns: 1fr 0.9fr; align-items: center; }

.about-copy p { color: var(--steel); }

.meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
  color: var(--brand);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-self: stretch;
}

.about-visual figure,
.fleet-rail figure,
.service-photo {
  position: relative;
  overflow: hidden;
  background: var(--anth);
}

.about-visual img,
.fleet-rail img,
.service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.05);
}

.about-visual figure {
  aspect-ratio: 3 / 4;
  min-height: 0;
  margin: 0;
}

.about-visual.is-landscape {
  grid-template-columns: 1fr;
  gap: 12px;
}

.about-visual.is-landscape figure {
  aspect-ratio: 16 / 10;
}

.timeline {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 56px 0 0;
  padding: 0;
}

.timeline li {
  position: relative;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  min-width: 0;
}

.timeline li::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 44px;
  height: 2px;
  background: var(--brand);
}

.timeline strong {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 30px;
  line-height: 1;
  margin-bottom: 6px;
  color: var(--mist);
}

.timeline span {
  color: var(--steel);
  font-size: 14px;
}

.about-visual figcaption,
.fleet-rail figcaption,
.gallery-grid figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.55);
}

.services { background: var(--paper); }

.services-head,
.fleet-intro {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  margin-bottom: 40px;
  align-items: center;
}

.fleet-intro .btn {
  justify-self: end;
}

.fleet-intro .btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}

.fleet-intro .btn-ghost:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.services-head p:last-child,
.section-lead,
.fleet-intro p:last-child { color: var(--steel); }

.services-layout { grid-template-columns: 0.9fr 1.1fr; align-items: start; }

.service-lines {
  display: grid;
  gap: 28px;
}

.service-line h3 {
  font-size: clamp(26px, 3vw, 34px);
  margin: 0 0 8px;
}

.service-line ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-line li a {
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
}

.service-line li:last-child a { border-bottom: 1px solid var(--line); }

.service-line span {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  color: var(--steel);
  padding-top: 2px;
}

.service-line strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
}

.service-line em {
  display: block;
  grid-column: 2;
  margin-top: 4px;
  font-style: normal;
  font-size: 13px;
  line-height: 1.5;
  color: var(--steel);
}

.service-line li.is-active span,
.service-line li.is-active strong { color: var(--brand-2); }

.service-photo {
  position: sticky;
  top: 110px;
  min-height: 640px;
}

.service-list { list-style: none; margin: 0; padding: 0; }

.service-list li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  cursor: pointer;
}

.service-list li:last-child { border-bottom: 1px solid var(--line); }

.service-list span {
  font-family: "Barlow Condensed", sans-serif;
  color: var(--brand);
  font-size: 22px;
}

.service-list h3 { font-size: 28px; margin-bottom: 6px; }
.service-list p { margin: 0; color: var(--steel); }
.service-list li.is-active h3 { color: var(--brand-2); }

.fleet-intro { width: min(1240px, calc(100% - 40px)); margin-inline: auto; }

.fleet-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 22vw);
  gap: 12px;
  overflow-x: auto;
  padding: 0 20px 12px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.fleet-rail figure {
  height: 420px;
  scroll-snap-align: start;
  transition: transform 0.4s ease;
}

.fleet-rail figure:hover { transform: translateY(-8px); }

.hl-slider {
  position: relative;
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto 12px;
  padding: 0 52px 36px;
}

.hl-slider .swiper { overflow: hidden; }

.hl-slider .swiper-slide { height: auto; }

.hl-slider .video-stack {
  display: grid;
  gap: 16px;
}

@media (min-width: 720px) {
  .hl-slider .video-stack { gap: 20px; }
}

@media (min-width: 1100px) {
  .hl-slider .video-stack { gap: 24px; }
}

.video-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto 36px;
}

.video-board .video-card,
.video-board .video-card.is-portrait,
.video-board .video-card.is-landscape {
  aspect-ratio: 16 / 10;
  width: 100%;
  background: var(--navy);
  border: 1px solid var(--line);
}

.hl-slider-nav {
  position: absolute;
  top: calc(50% - 42px);
  z-index: 3;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--anth);
  color: var(--mist);
  cursor: pointer;
}

.hl-slider-nav svg { width: 22px; height: 22px; }
.hl-slider-nav.is-prev { left: 0; }
.hl-slider-nav.is-next { right: 0; }
.hl-slider-nav:hover { border-color: var(--brand); color: var(--brand); }

.hl-slider-dots {
  position: static !important;
  margin-top: 18px;
}

.hl-slider .swiper-pagination-bullet {
  background: var(--steel);
  opacity: 0.45;
}

.hl-slider .swiper-pagination-bullet-active {
  background: var(--brand);
  opacity: 1;
}

.svc-slide {
  display: grid;
  grid-template-rows: 200px 1fr;
  min-height: 100%;
  background: var(--anth);
  color: inherit;
  text-decoration: none;
  border-top: 2px solid var(--brand);
}

.svc-slide-media {
  display: block;
  overflow: hidden;
  height: 200px;
}

.svc-slide-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.04);
}

.svc-slide-body {
  display: grid;
  align-content: start;
  gap: 6px;
  padding: 18px 18px 22px;
}

.svc-slide-body span {
  font-family: "Barlow Condensed", sans-serif;
  color: var(--brand);
  font-size: 18px;
}

.svc-slide-body strong {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25;
}

.svc-slide-body em {
  font-style: normal;
  font-size: 13px;
  line-height: 1.5;
  color: var(--steel);
}

.photo-slide {
  position: relative;
  margin: 0;
  height: 360px;
  overflow: hidden;
  background: var(--anth);
}

.photo-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-slide figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 6px 10px;
  background: rgba(7, 8, 12, 0.72);
  color: #fff;
  font-size: 13px;
}

.poster-home {
  background: var(--paper);
  padding-bottom: 28px;
}

.hl-slider[data-slider="poster"] {
  width: min(1320px, calc(100% - 24px));
  padding-bottom: 40px;
}

.hl-slider[data-slider="poster"] .swiper {
  overflow: hidden;
  background: #07080c;
  border: 1px solid var(--line);
}

.hl-slider[data-slider="poster"] .photo-slide {
  height: auto;
  aspect-ratio: 3 / 2;
  background: #07080c;
  border: 0;
  overflow: hidden;
}

.hl-slider[data-slider="poster"] .photo-slide img {
  object-fit: cover;
  object-position: center;
  filter: none;
}

.slide-haul {
  position: absolute;
  left: 52px;
  right: 52px;
  bottom: 52px;
  height: 52px;
  z-index: 4;
  pointer-events: none;
  overflow: hidden;
}

.slide-haul-road {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  height: 3px;
  background: repeating-linear-gradient(90deg, #e31e24 0 18px, transparent 18px 32px);
  opacity: 0;
  transform: scaleX(0.2);
  transform-origin: left center;
}

.slide-haul-truck {
  position: absolute;
  left: -56px;
  bottom: 6px;
  width: 44px;
  height: 44px;
  color: #fff;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.55));
  opacity: 0;
}

.hl-slider.is-hauling-next .slide-haul-road,
.hl-slider.is-hauling-prev .slide-haul-road {
  opacity: 0.9;
}

.hl-slider.is-hauling-next .slide-haul-road {
  animation: haulRoad 0.78s ease-out;
}

.hl-slider.is-hauling-prev .slide-haul-road {
  animation: haulRoad 0.78s ease-out;
  transform-origin: right center;
}

.hl-slider.is-hauling-next .slide-haul-truck {
  animation: haulTruckNext 0.78s cubic-bezier(0.4, 0, 0.2, 1);
}

.hl-slider.is-hauling-prev .slide-haul-truck {
  animation: haulTruckPrev 0.78s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes haulRoad {
  0% { opacity: 0; transform: scaleX(0.15); }
  25% { opacity: 1; transform: scaleX(1); }
  100% { opacity: 0; transform: scaleX(1); }
}

@keyframes haulTruckNext {
  0% { opacity: 1; left: -56px; transform: scaleX(1); }
  80% { opacity: 1; }
  100% { opacity: 0; left: calc(100% + 8px); transform: scaleX(1); }
}

@keyframes haulTruckPrev {
  0% { opacity: 1; left: calc(100% + 8px); transform: scaleX(-1); }
  80% { opacity: 1; }
  100% { opacity: 0; left: -56px; transform: scaleX(-1); }
}

.photo-zoom {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.photo-zoom:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: -2px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 56px 64px 40px;
  background: rgba(7, 8, 12, 0.94);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.lightbox-stage {
  margin: 0;
  max-width: min(1200px, 100%);
  text-align: center;
}

.lightbox-stage img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: min(82vh, 860px);
  margin: 0 auto;
  background: #07080c;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
}

.lightbox-stage img[hidden],
.lightbox-stage video[hidden] {
  display: none;
}

.lightbox-stage figcaption {
  margin-top: 14px;
  color: #c5c8ce;
  font-size: 13px;
  letter-spacing: 0.04em;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(16, 18, 24, 0.88);
  color: #fff;
  cursor: pointer;
}

.lightbox-close {
  top: 16px;
  right: max(16px, env(safe-area-inset-right));
  width: 44px;
  height: 44px;
}

.lightbox-nav {
  top: 50%;
  width: 44px;
  height: 44px;
  transform: translateY(-50%);
}

.lightbox-nav.is-prev { left: max(12px, env(safe-area-inset-left)); }
.lightbox-nav.is-next { right: max(12px, env(safe-area-inset-right)); }
.lightbox-close svg,
.lightbox-nav svg { width: 22px; height: 22px; }
.lightbox-close:hover,
.lightbox-nav:hover { border-color: var(--brand); color: var(--brand); }

html.has-lightbox,
body.has-lightbox {
  overflow: hidden;
}

.poster-values {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px 24px;
  margin-top: 8px;
  padding-bottom: 12px;
}

.poster-values article {
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.poster-values strong {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 22px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.poster-values span {
  color: var(--steel);
  font-size: 13px;
  line-height: 1.5;
}

.video-gallery { padding-bottom: 48px; }

.story-grid.is-catalog {
  grid-template-columns: repeat(3, 1fr);
}

.story-grid.is-catalog .story-card {
  grid-template-rows: 260px 1fr;
}

.story-card:hover {
  border-top-color: var(--brand-2);
}

.video-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: var(--anth);
  scroll-snap-align: start;
}

.video-card.is-portrait { aspect-ratio: 9 / 16; }
.video-card.is-landscape { aspect-ratio: 16 / 9; }

.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: var(--anth);
}

.video-card figcaption {
  display: none;
}

.logo-wall {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 36px;
}

.logo-wall a {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 12px;
  min-height: 160px;
  padding: 18px 16px 14px;
  background: #fff;
  border: 1px solid rgba(18, 20, 26, 0.08);
  text-decoration: none;
  color: inherit;
  opacity: 0;
  transform: translateY(18px) scale(0.96);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, opacity 0.5s ease, border-color 0.35s ease;
  transition-delay: calc(var(--i, 0) * 45ms);
}

.logo-wall.is-in a,
.logo-wall a.is-in {
  opacity: 1;
  transform: none;
}

.logo-wall a:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 18px 32px rgba(0,0,0,.14);
  border-color: rgba(227, 30, 36, 0.32);
}

.logo-wall img {
  width: auto;
  height: 72px;
  max-width: 100%;
  object-fit: contain;
}

.logo-wall span {
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: #5b616b;
}

.refs-home {
  background: var(--paper);
  overflow: hidden;
}

.refs-intro {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: end;
}

.ref-count {
  margin: 18px 0 0;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel);
}

.ref-count strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 48px;
  line-height: 0.9;
  color: var(--brand);
  letter-spacing: 0;
  display: block;
  margin-bottom: 6px;
}

.logo-marquee {
  position: relative;
  display: grid;
  gap: 14px;
  margin: 40px 0 8px;
  width: 100%;
  min-width: 0;
  overflow: hidden;
}

.logo-marquee::before,
.logo-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 72px;
  z-index: 2;
  pointer-events: none;
}

.logo-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--paper), transparent);
}

.logo-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--paper), transparent);
}

.logo-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 14px;
  width: max-content;
  min-width: max-content;
  will-change: transform;
  backface-visibility: hidden;
  animation: marquee 32s linear infinite;
}

.logo-track.is-reverse {
  animation-duration: 38s;
  animation-direction: reverse;
}

.logo-track.is-slow { animation-duration: 44s; }

.logo-marquee.is-js .logo-track {
  animation: none;
}

.logo-chip {
  flex: 0 0 auto;
  width: 200px;
  height: 112px;
  display: grid;
  place-items: center;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid rgba(18, 20, 26, 0.08);
  text-decoration: none;
  color: inherit;
}

.logo-chip:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.14);
  border-color: rgba(227, 30, 36, 0.32);
  z-index: 1;
}

.logo-chip img {
  height: 64px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes chipFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

@keyframes loadSweep {
  0% { transform: scaleX(0); }
  100% { transform: scaleX(1); }
}

@keyframes orbitSpin {
  0% { transform: rotate(-90deg); }
  100% { transform: rotate(270deg); }
}

@keyframes truckShift {
  0%, 100% { transform: translateX(-3px); }
  50% { transform: translateX(3px); }
}

@keyframes markIn {
  0% { opacity: 0; transform: translateY(14px); }
  100% { opacity: 1; transform: none; }
}

@keyframes menuIn {
  from { opacity: 0; transform: translateX(28px); }
  to { opacity: 1; transform: translateX(0); }
}

.is-menu .float-dock,
.is-menu .back-top,
.is-menu .site-notice {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.is-menu .site-header {
  background: var(--header-bg);
  border-bottom-color: var(--line);
}

.city-grid article,
.values-grid article {
  padding: 28px 24px;
  background: var(--anth);
  border-top: 1px solid var(--brand);
}

.city-grid h3 { font-size: 32px; }
.city-grid p,
.values-grid p { color: var(--steel); }

.values-grid { grid-template-columns: 1fr 1fr; }

.cta-band {
  position: relative;
  min-height: 420px;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.cta-media,
.cta-band img,
.cta-band video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-media { z-index: 0; }

.cta-band img,
.cta-band video {
  filter: grayscale(0.2) brightness(0.38);
}

.cta-video {
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.cta-fallback {
  z-index: 0;
  transition: opacity 0.4s ease;
}

.cta-band.has-video .cta-video,
.cta-video.is-playing {
  opacity: 1;
}

.cta-band.has-video .cta-fallback {
  opacity: 0;
}

.cta-copy { position: relative; z-index: 1; max-width: 640px; }

.contact-grid { grid-template-columns: 0.9fr 1.1fr; }

.contact-board {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.92fr);
  gap: 48px;
  align-items: start;
}

.contact-form-col .quote-form {
  margin-top: 0;
  padding: 28px 24px 24px;
  border: 1px solid var(--line);
  border-top: 2px solid var(--brand);
  background: var(--card);
}

.contact-maps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 48px;
}

.contact-maps .map-wrap,
.contact-maps .map-wrap iframe {
  min-height: 360px;
}

.contact-work .ik-points {
  margin: 28px 0 0;
  grid-template-columns: 1fr;
}
.contact-work .contact-actions { margin-top: 24px; }

address { font-style: normal; color: var(--steel); margin: 16px 0 20px; }

.office-cards {
  display: grid;
  gap: 12px;
  margin: 20px 0 28px;
}

.office-cards article {
  padding: 16px 18px 14px;
  background: var(--card);
  border: 1px solid var(--line);
}

.office-cards strong {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 28px;
  line-height: 1;
  margin: 4px 0 8px;
}

.office-cards address {
  margin: 0 0 10px;
}

.office-cards a {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--brand);
}

.hours-card {
  margin: 0 0 28px;
  padding: 16px 18px 10px;
  background: var(--card);
  border: 1px solid var(--line);
}

.hours-card ul {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
}

.hours-card li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  font-size: 15px;
}

.hours-card span { color: var(--steel); }
.hours-card strong { color: var(--mist); font-weight: 600; }

.fleet-facts {
  margin-top: 56px;
  border-top: 1px solid var(--line);
}

.fleet-facts .stats-row article { padding: 32px 0 0; }

.fleet-family-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 8px 0 20px;
}

.fleet-family-gallery figure,
.fleet-family-stack figure {
  margin: 0;
  overflow: hidden;
  background: var(--anth);
}

.fleet-family-gallery img,
.fleet-family-stack img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: 50% 50%;
  display: block;
}

.fleet-family-stack {
  display: grid;
  gap: 10px;
}

.fleet-rent-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 auto 36px;
}

.fleet-rent-grid figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: #0b0c10;
}

.fleet-rent-grid img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: 50% 50%;
  display: block;
}

.fleet-rent-grid figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 6px 10px;
  background: rgba(7, 8, 12, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-office {
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(243, 244, 246, 0.72);
}

.footer-office strong {
  display: inline-block;
  min-width: 4.6em;
  margin-right: 6px;
  color: #f3f4f6;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 11px;
}

.contact-lines {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.contact-lines li {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  align-items: baseline;
  font-size: 15px;
}

.contact-lines span {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel);
}

.contact-lines a {
  text-decoration: none;
  color: var(--mist);
}

.contact-lines a:hover { color: var(--brand); }

.legal-name {
  color: var(--mist);
  font-size: 13px;
  letter-spacing: 0.04em;
  overflow-wrap: anywhere;
}

.contact-actions { display: flex; flex-wrap: wrap; gap: 10px; }

.quote-form {
  display: grid;
  gap: 12px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.quote-form label {
  display: grid;
  gap: 6px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel);
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--input);
  color: var(--mist);
  padding: 12px 14px;
  font: inherit;
  font-size: 16px;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-check {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  text-transform: none;
  letter-spacing: 0;
  color: var(--steel);
  font-size: 13px;
  line-height: 1.5;
}

.form-check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  padding: 0;
}

.form-check a { color: var(--mist); }

.form-note.is-ok { color: #7dcea0; }

.field-error {
  margin: -4px 0 2px;
  color: #e31e24;
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: 0;
  text-transform: none;
}

.quote-form [aria-invalid="true"] {
  border-color: #e31e24;
}

.map-wrap {
  position: relative;
  min-height: 640px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: #111;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 640px;
  border: 0;
}

.map-card {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 2;
  display: grid;
  gap: 6px;
  min-width: 220px;
  padding: 18px 20px 16px;
  background: rgba(7, 8, 12, 0.92);
  border-left: 3px solid var(--brand);
  color: #f3f4f6;
  pointer-events: none;
}

.map-card .kicker { margin: 0; }

.map-card strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 28px;
  line-height: 0.95;
}

.map-card span {
  color: #8b909a;
  font-size: 13px;
}

.map-pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 0 rgba(227, 30, 36, 0.65);
  animation: livePing 1.8s ease-out infinite;
}

.site-footer {
  padding: 0 0 24px;
  border-top: 0;
  background: var(--footer);
  color: #8b909a;
}

.footer-status {
  border-top: 3px solid var(--brand);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(90deg, rgba(227, 30, 36, 0.12), transparent 42%);
}

.footer-status-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 28px;
  min-height: 52px;
  padding: 12px 0;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-status-inner p,
.footer-status-inner time {
  margin: 0;
  color: #c5c8ce;
}

.footer-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #f3f4f6 !important;
  font-weight: 600;
}

.footer-live span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55);
  animation: livePing 1.8s ease-out infinite;
}

#footerClock {
  font-variant-numeric: tabular-nums;
  color: #f3f4f6 !important;
  letter-spacing: 0.16em;
}

.footer-cols {
  display: contents;
}

.footer-hours-mobile {
  display: none;
}

.footer-grid {
  grid-template-columns: 1.2fr 0.7fr 0.85fr 0.95fr;
  gap: 40px;
  padding-top: 48px;
}

.footer-slogan {
  color: #f3f4f6 !important;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 26px;
  line-height: 1.05;
  letter-spacing: 0.02em;
  max-width: 14ch;
  margin: 0 0 12px !important;
}

.footer-meta {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer h3 {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  margin: 0 0 14px;
}

.footer-col a,
.footer-brand p,
.footer-note {
  display: block;
  color: #8b909a;
  text-decoration: none;
  margin: 8px 0;
}

.footer-col a:hover { color: #f3f4f6; }

.footer-note {
  font-size: 13px;
  line-height: 1.55;
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 16px;
}

.maker-card {
  display: flex !important;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  padding: 16px 0 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  text-decoration: none;
}

.maker-card img {
  width: 168px;
  max-width: 44%;
  height: auto;
  flex: 0 0 auto;
  background: transparent;
  opacity: 1;
}

.footer-col a.maker-card {
  min-height: 0;
  margin-top: 18px;
  color: inherit;
}

.maker-card span {
  display: block;
  color: #c5c8ce;
  font-size: 12px;
  line-height: 1.45;
}

.maker-card strong {
  display: block;
  margin-top: 3px;
  color: #f3f4f6;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: none;
  font-weight: 600;
}

.maker-card:hover {
  border-top-color: var(--brand);
  color: inherit;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #8b909a;
  font-size: 13px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-legal a {
  color: #8b909a;
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 11px;
}

.footer-legal a:hover { color: #f3f4f6; }

/* Yönetim panelinden açılan duyuru şeridi (header'ın hemen altında) */
.site-announce {
  position: fixed;
  inset: var(--header) 0 auto;
  z-index: 46;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 9px clamp(16px, 4vw, 32px);
  background: var(--brand);
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
}

.site-announce[hidden] { display: none; }

.site-announce p {
  margin: 0;
  font: 600 13px/1.45 Manrope, sans-serif;
  letter-spacing: 0.02em;
  text-align: center;
}

.site-announce button {
  flex: none;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  color: #fff;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
}

.site-announce button:hover { background: rgba(255, 255, 255, 0.14); }

.admin-maint-bar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 55;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 36px;
  padding: 7px 16px;
  background: var(--brand);
  color: #fff;
  font: 600 13px/1.35 Manrope, sans-serif;
}
.admin-maint-bar a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}
html.has-admin-bar { --header: 132px; }
html.has-admin-bar .site-header {
  top: 36px;
  height: 96px;
}

.site-notice {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: calc(16px + env(safe-area-inset-bottom));
  z-index: 45;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 16px;
  max-width: 720px;
  margin-inline: auto;
  padding: 12px 14px;
  background: var(--card);
  color: var(--mist);
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}

.site-notice[hidden] { display: none; }

.site-notice p {
  margin: 0;
  flex: 1 1 280px;
  font-size: 14px;
  line-height: 1.5;
}

.site-notice-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-notice-actions a {
  color: var(--steel);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}

.site-notice-actions button {
  min-height: 42px;
  padding: 0 16px;
  border: 0;
  background: var(--brand);
  color: #fff;
  font: 600 12px/1 Manrope, sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

body.has-notice .float-dock {
  bottom: calc(78px + env(safe-area-inset-bottom));
}

.legal-copy {
  max-width: 72ch;
}

.legal-copy h2 {
  margin-top: 36px;
  font-size: 32px;
}

.legal-copy p,
.legal-copy li {
  color: var(--steel);
}

.legal-copy a { color: var(--brand); }

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 36px;
}

.legal-nav a {
  padding: 8px 12px;
  border: 1px solid var(--line);
  text-decoration: none;
  color: var(--steel);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-nav a.is-on,
.legal-nav a:hover {
  border-color: var(--brand);
  color: var(--mist);
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0 24px;
  font-size: 14px;
}

.legal-table th,
.legal-table td {
  border: 1px solid var(--line);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  color: var(--mist);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.back-top {
  position: fixed;
  left: max(16px, env(safe-area-inset-left));
  bottom: calc(16px + env(safe-area-inset-bottom));
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 46px;
  padding: 0 16px 0 12px;
  border: 0;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  box-shadow: 0 8px 22px rgba(227, 30, 36, 0.38);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease, bottom 0.2s ease;
}

.back-top.is-on {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.back-top svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.back-top span {
  font: 600 12px/1 Manrope, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.back-top:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

body.has-notice .back-top {
  bottom: calc(78px + env(safe-area-inset-bottom));
}

.float-dock {
  position: fixed;
  right: max(16px, env(safe-area-inset-right));
  bottom: calc(16px + env(safe-area-inset-bottom));
  z-index: 30;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: opacity 0.2s ease, transform 0.2s ease, bottom 0.2s ease;
}

.float-dock.is-tucked {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}

.float-btn {
  position: relative;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
  transition: transform 0.18s ease, filter 0.18s ease;
}

.float-btn:hover,
.float-btn:focus-visible {
  transform: scale(1.06);
  filter: brightness(1.06);
}

.float-btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.float-btn svg {
  width: 22px;
  height: 22px;
  display: block;
}

.float-btn.is-fb { background: #1877f2; }
.float-btn.is-ig {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}
.float-btn.is-tel {
  background: var(--brand);
  box-shadow: 0 8px 22px rgba(227, 30, 36, 0.38);
}
.float-btn.is-wa {
  width: 58px;
  height: 58px;
  background: #25d366;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.38);
}

.float-btn.is-wa svg {
  width: 30px;
  height: 30px;
}

.float-btn.is-wa::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.55);
  animation: waPing 2s ease-out infinite;
  pointer-events: none;
}

.float-btn[data-tip]::before {
  content: attr(data-tip);
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
  padding: 6px 10px;
  border-radius: 6px;
  background: #111;
  color: #fff;
  font: 600 11px/1 Manrope, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease;
}

.float-btn:hover::before,
.float-btn:focus-visible::before {
  opacity: 1;
}

.form-note { color: var(--brand); }

.page-hero {
  padding: calc(var(--header) + env(safe-area-inset-top, 0px) + 56px) 0 48px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  font-family: Barlow, sans-serif;
  font-size: clamp(32px, 5.6vw, 62px);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 0.98;
  text-transform: uppercase;
  max-width: 16ch;
}

.page-hero.is-wide h1 { max-width: 18ch; }

.page-hero .lead {
  color: var(--steel);
  max-width: 48ch;
  font-size: 18px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
  font-size: 13px;
  color: var(--steel);
}

.breadcrumb a {
  color: var(--brand);
  text-decoration: none;
}

.is-inner .site-header {
  background: var(--header-bg);
  border-bottom-color: var(--line);
  backdrop-filter: blur(16px);
}

.text-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
}

.more-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.service-cards article {
  padding: 28px 24px;
  background: var(--anth);
  border-top: 2px solid var(--brand);
}

.service-cards span {
  font-family: "Barlow Condensed", sans-serif;
  color: var(--brand);
  font-size: 22px;
}

.service-cards h2 { font-size: 32px; }
.service-cards p { color: var(--steel); }

.service-jump {
  padding: 32px 0 20px;
  background: var(--navy-2);
  border-bottom: 1px solid var(--line);
}

.service-jump ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.service-jump li { list-style: none; }

.service-jump a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 8px 14px;
  background: var(--anth);
  color: var(--mist);
  text-decoration: none;
  font-size: 13px;
  line-height: 1.25;
  border-top: 2px solid transparent;
}

.service-jump a:hover,
.service-jump a:focus-visible {
  border-top-color: var(--brand);
  color: #fff;
}

.service-jump span {
  font-family: "Barlow Condensed", sans-serif;
  color: var(--brand);
  font-size: 15px;
  letter-spacing: 0.04em;
}

.service-block {
  scroll-margin-top: calc(var(--header) + 8px);
}

.service-block.is-alt { background: var(--navy-2); }

.fleet-family-layout { display: grid; gap: 36px; }

.fleet-family-shot {
  margin: 0;
  overflow: hidden;
  background: var(--anth);
}

.fleet-family-shot img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center 42%;
  filter: saturate(0.88) contrast(1.04);
}

.fleet-family-shot figcaption {
  padding: 12px 4px 0;
  color: var(--steel);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.fleet-family-shot.is-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  background: transparent;
  overflow: visible;
}

.fleet-family-shot.is-strip figure {
  margin: 0;
  overflow: hidden;
  background: var(--anth);
}

.fleet-family-shot.is-strip img {
  aspect-ratio: 16 / 10;
  object-position: 50% 50%;
}

.fleet-family-copy {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.8fr);
  gap: 48px;
  align-items: start;
}

.fleet-family-text h2 {
  font-size: clamp(32px, 4vw, 48px);
  max-width: 16ch;
}

.fleet-family-text p {
  margin: 0 0 16px;
  color: var(--steel);
}

.fleet-family-aside .service-points {
  margin: 0;
  grid-template-columns: 1fr;
}

.fleet-family-aside .text-link { margin-top: 8px; }

.service-block-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.service-block-grid.is-flip {
  grid-template-columns: 1.1fr 0.9fr;
}

.service-block-grid.is-flip .service-block-media { order: 2; }

.service-block-media {
  margin: 0;
  position: sticky;
  top: calc(var(--header) + 20px);
  overflow: hidden;
  background: var(--anth);
}

.service-block-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.04);
}

.service-block-media.fleet-family-stack {
  overflow: visible;
  display: grid;
  gap: 10px;
}

.service-block-media.fleet-family-stack img {
  aspect-ratio: 16 / 10;
}

.service-block-media figcaption {
  padding: 12px 16px;
  color: var(--steel);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-block-copy h2 {
  font-size: clamp(32px, 4vw, 48px);
  max-width: 16ch;
}

.service-lead {
  margin: 0 0 22px;
  font-size: 18px;
  color: var(--mist);
}

.service-block-copy p {
  margin: 0 0 16px;
  color: var(--steel);
}

.service-block-copy .text-link { margin-top: 8px; }

.service-points {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 24px;
  margin: 28px 0 12px;
  padding: 0;
}

.service-points li {
  position: relative;
  padding: 12px 0 12px 18px;
  border-top: 1px solid var(--line);
  color: var(--mist);
  font-size: 14px;
}

.service-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  width: 8px;
  height: 2px;
  background: var(--brand);
}

.service-list h3 a {
  color: inherit;
  text-decoration: none;
}

.service-list h3 a:hover { color: var(--brand-2); }

.story-featured {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
  margin-bottom: 16px;
}

.story-featured .is-lead { grid-row: 1 / span 2; }

.story-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.story-card {
  display: grid;
  grid-template-rows: 220px 1fr;
  background: var(--anth);
  color: inherit;
  text-decoration: none;
  border-top: 2px solid var(--brand);
  min-width: 0;
}

.story-featured .is-lead { grid-template-rows: 340px 1fr; }

.story-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--focus, 50% 48%);
  clip-path: inset(0);
  filter: saturate(0.92) contrast(1.04);
  transform: scale(1);
  transform-origin: var(--focus, center center);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.7s ease;
}

.story-card:hover img {
  transform: scale(1.07);
  filter: saturate(1) contrast(1.06);
}

.story-card div { padding: 22px 20px 24px; }

.story-card span {
  font-family: "Barlow Condensed", sans-serif;
  color: var(--brand);
  font-size: 18px;
}

.story-card h2,
.story-card h3 {
  font-size: clamp(22px, 2.4vw, 30px);
  margin: 8px 0 10px;
  max-width: none;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.story-card p {
  margin: 0;
  color: var(--steel);
  font-size: 15px;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.story-card em {
  display: inline-block;
  margin-top: 14px;
  padding: 8px 12px;
  border: 1px solid var(--brand);
  font-style: normal;
  color: var(--brand);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
}

.article-cover {
  margin: 0;
  background: var(--anth);
}

.service-hero {
  position: relative;
  min-height: min(58vh, 580px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  --focus: 50% 50%;
}

.service-hero-media,
.service-hero-shade {
  position: absolute;
  inset: 0;
}

.service-hero-media {
  overflow: hidden;
}

.service-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--focus, 50% 50%);
  transform: scale(1.03);
  transform-origin: var(--focus, center center);
  animation: serviceKen 28s ease-out 0.7s forwards;
}

@keyframes serviceKen {
  from { transform: scale(1.03); }
  to { transform: scale(1.1); }
}

.service-hero-shade {
  background: linear-gradient(90deg, rgba(7, 8, 12, 0.9) 0%, rgba(7, 8, 12, 0.58) 42%, rgba(7, 8, 12, 0.22) 72%, rgba(7, 8, 12, 0.08) 100%);
}

.service-hero-copy {
  position: relative;
  z-index: 2;
  padding: calc(var(--header) + 40px) 0 48px;
  max-width: 820px;
}

@keyframes pageEnter {
  from { opacity: 0; }
  to { opacity: 1; }
}

html.is-inner .service-hero-copy > * {
  animation: pageEnter 0.48s cubic-bezier(0.22, 1, 0.36, 1) both;
}

html.is-inner .service-hero-copy > :nth-child(1) { animation-delay: 0.04s; }
html.is-inner .service-hero-copy > :nth-child(2) { animation-delay: 0.1s; }
html.is-inner .service-hero-copy > :nth-child(3) { animation-delay: 0.16s; }
html.is-inner .service-hero-copy > :nth-child(4) { animation-delay: 0.22s; }

html.is-inner .page-hero {
  animation: pageEnter 0.42s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.service-hero .breadcrumb,
.service-hero .breadcrumb span {
  color: rgba(243, 244, 246, 0.72);
}

.service-hero .breadcrumb a { color: #ff4d53; }

.service-hero .kicker {
  display: inline-block;
  padding: 8px 14px;
  background: rgba(7, 8, 12, 0.82);
  border-left: 3px solid var(--brand);
  color: #ff4d53;
}

.service-hero h1 {
  color: #fff;
  font-family: Barlow, sans-serif;
  font-weight: 700;
  font-size: clamp(34px, 5vw, 62px);
  letter-spacing: 0.04em;
  line-height: 0.98;
  text-transform: uppercase;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.5);
  max-width: 18ch;
}

.service-hero .lead {
  color: #f3f4f6;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.4);
}

.service-facts .stats-row article strong {
  font-size: clamp(22px, 3vw, 36px);
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.service-where {
  color: var(--mist);
  font-size: 15px;
  letter-spacing: 0.02em;
  margin: 0 0 28px;
}

.service-points.is-stack {
  grid-template-columns: 1fr;
  margin: 12px 0 0;
}

.article-cover img {
  width: 100%;
  height: min(62vh, 620px);
  object-fit: cover;
  filter: saturate(0.88) contrast(1.04);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(260px, 0.7fr);
  gap: 56px;
  align-items: start;
}

.article-deck {
  font-size: 20px;
  line-height: 1.6;
  color: var(--mist);
  margin: 0 0 24px;
  max-width: 58ch;
}

@media (min-width: 1101px) {
  .article-deck { display: none; }
}

.article-body h2 {
  font-size: clamp(26px, 3vw, 38px);
  margin: 36px 0 16px;
  max-width: 22ch;
}

.article-body p {
  color: var(--steel);
  margin: 0 0 16px;
  font-size: 16.5px;
}

.article-figure {
  margin: 32px 0;
  background: #0c0e14;
  overflow: hidden;
}

.article-figure img {
  width: 100%;
  height: auto;
  max-height: min(68vh, 680px);
  object-fit: contain;
  object-position: var(--focus, center center);
  display: block;
  margin-inline: auto;
}

.article-figure.is-portrait img {
  width: auto;
  max-width: 100%;
  max-height: min(78vh, 760px);
}

.article-figure figcaption {
  padding: 12px 16px;
  color: var(--steel);
  font-size: 13px;
}

.article-process {
  list-style: none;
  margin: 8px 0 28px;
  padding: 0;
  display: grid;
  gap: 0;
}

.article-process li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.article-process span {
  font-family: "Barlow Condensed", sans-serif;
  color: var(--brand);
  font-size: 22px;
}

.article-process strong { display: block; margin-bottom: 4px; }
.article-process p { margin: 0; }

.article-aside { position: sticky; top: calc(var(--header) + 20px); }

.article-card {
  padding: 22px 20px;
  background: var(--anth);
  border-top: 2px solid var(--brand);
  margin-bottom: 16px;
}

.article-card h3 { font-size: 26px; max-width: none; letter-spacing: -0.03em; }
.article-card p { color: var(--steel); }
.article-card .btn { margin-top: 8px; width: 100%; }
.article-card .more-row { margin-top: 16px; }
.article-card .more-row .btn { width: auto; min-width: 0; flex: 1; }

.article-index { display: grid; }

.article-index a {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 8px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  color: inherit;
  text-decoration: none;
  font-size: 14px;
}

.article-index a:last-child { border-bottom: 1px solid var(--line); }
.article-index span { color: var(--brand); font-family: "Barlow Condensed", sans-serif; }
.article-index .is-active { color: var(--brand-2); }

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.related-grid .story-card { grid-template-rows: 180px 1fr; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.gallery-grid figure {
  position: relative;
  overflow: hidden;
  background: var(--anth);
  margin: 0;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.05);
}

.gallery-grid.is-landscape img {
  aspect-ratio: 16 / 10;
}

.gallery-grid figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 auto 22px;
}

.gallery-filter {
  padding: 8px 14px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--steel);
  font: inherit;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
}

.gallery-filter:hover,
.gallery-filter:focus-visible {
  border-color: var(--brand);
  color: var(--mist);
}

.gallery-filter.is-on {
  border-color: var(--brand);
  background: var(--brand);
  color: #fff;
}

.gallery-grid.is-studio {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 10px;
}

.gallery-tile {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: var(--anth);
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: zoom-in;
  isolation: isolate;
}

.gallery-tile.is-off { display: none; }

.gallery-tile.is-feature {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}

.gallery-studio.is-filtered .gallery-tile.is-feature {
  grid-column: auto;
  grid-row: auto;
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.06);
  transform: scale(1.02);
  transform-origin: center center;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.5s ease;
}

.gallery-tile.is-feature img { aspect-ratio: 16 / 11; }

.gallery-tile video {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  background: var(--anth);
  filter: saturate(0.9) contrast(1.06);
  transform: scale(1.02);
  transform-origin: center center;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.5s ease;
  pointer-events: none;
}

.gallery-tile.is-feature video { aspect-ratio: 16 / 11; }

.gallery-tile:hover video,
.gallery-tile:focus-visible video {
  transform: scale(1.08);
  filter: saturate(1) contrast(1.08);
}

.video-tile-play {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 1;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(7, 8, 12, 0.55);
  color: #fff;
  pointer-events: none;
}

.video-tile-play svg {
  width: 14px;
  height: 14px;
  margin-left: 2px;
}

.lightbox-stage video {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: min(82vh, 860px);
  margin: 0 auto;
  background: #07080c;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
}

.gallery-tile::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--brand);
  transform: scaleY(0);
  transform-origin: bottom center;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-tile:hover img,
.gallery-tile:focus-visible img {
  transform: scale(1.08);
  filter: saturate(1) contrast(1.08);
}

.gallery-tile:hover::after,
.gallery-tile:focus-visible::after {
  transform: scaleY(1);
}

.gallery-tile:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: -2px;
}

.ik-points { grid-template-columns: 1fr; }

@keyframes ken {
  from { transform: scale(1.08) translate3d(0, 0, 0); }
  to { transform: scale(1.18) translate3d(-2.5%, 1.5%, 0); }
}

@keyframes mapScan {
  from { background-position: 0 -80%; }
  to { background-position: 0 180%; }
}

@keyframes shine {
  from { transform: translateX(-130%) skewX(-18deg); }
  to { transform: translateX(220%) skewX(-18deg); }
}

@keyframes railMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes dashMove {
  to { stroke-dashoffset: -240; }
}

@keyframes routeDraw {
  to { stroke-dashoffset: 0; }
}

@keyframes routeFade {
  to { opacity: 1; }
}

@keyframes routeDash {
  to { stroke-dashoffset: -1; }
}

@keyframes routeRun {
  to { offset-distance: 100%; }
}

@keyframes convoy {
  from { transform: translateX(-80px); }
  to { transform: translateX(calc(100vw + 80px)); }
}

@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

@keyframes livePing {
  0% { box-shadow: 0 0 0 0 rgba(227, 30, 36, 0.65); }
  100% { box-shadow: 0 0 0 12px rgba(227, 30, 36, 0); }
}

@keyframes nodePulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.45); opacity: 0.7; }
}

@keyframes waPing {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.35); opacity: 0; }
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--d, 0ms);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (max-width: 1360px) {
  .nav { gap: 10px; }
  .nav a {
    font-size: 11px;
    letter-spacing: 0.05em;
  }
}

@media (max-width: 1100px) {
  :root,
  [data-theme="dark"],
  [data-theme="light"] { --header: 72px; }

  html.has-admin-bar { --header: 108px; }
  html.has-admin-bar .site-header {
    top: 36px;
    height: calc(72px + env(safe-area-inset-top));
  }

  .wrap { width: min(1240px, calc(100% - 28px)); }

  .header-inner {
    width: calc(100% - 24px);
    gap: 10px;
    padding-top: env(safe-area-inset-top);
  }

  .site-header {
    height: calc(var(--header) + env(safe-area-inset-top));
  }

  .header-actions { gap: 8px; }

  .nav { display: none; }

  .menu-panel {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 48;
    pointer-events: none;
    visibility: hidden;
  }

  .is-menu .menu-panel {
    pointer-events: auto;
    visibility: visible;
  }

  .menu-panel-bg {
    position: absolute;
    inset: 0;
    border: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 8, 12, 0.55);
    opacity: 0;
    transition: opacity 0.4s ease;
    cursor: pointer;
  }

  .is-menu .menu-panel-bg { opacity: 1; }

  .menu-panel-inner {
    position: absolute;
    top: 0;
    right: 0;
    width: min(100%, 430px);
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: calc(var(--header) + env(safe-area-inset-top) + 20px) 28px calc(28px + env(safe-area-inset-bottom));
    background: #07080c;
    color: #f3f4f6;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .is-menu .menu-panel-inner { transform: translateX(0); }

  .menu-panel-inner .kicker { color: #e31e24; }

  .menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .menu-list li {
    opacity: 0;
    transform: translateX(28px);
  }

  .is-menu .menu-list li {
    animation: menuIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: calc(var(--i) * 55ms + 140ms);
  }

  .menu-list a {
    display: flex;
    align-items: baseline;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-decoration: none;
    color: #f3f4f6;
    font-family: Archivo, sans-serif;
    font-size: clamp(26px, 7vw, 36px);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.08;
  }

  .menu-list a span {
    color: #e31e24;
    font-size: 14px;
    letter-spacing: 0.16em;
    min-width: 28px;
  }

  .menu-list a.is-active { color: #e31e24; }

  .menu-cta {
    display: grid;
    gap: 10px;
    margin-top: auto;
    padding-top: 28px;
  }

  .menu-cta .btn { width: 100%; color: #fff; }
  .menu-cta .btn-ghost { border-color: rgba(255, 255, 255, 0.2); }

  .menu-btn { display: block; }

  .is-menu .menu-btn span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .is-menu .menu-btn span:nth-child(2) { opacity: 0; }
  .is-menu .menu-btn span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .logo { padding: 0; width: 168px; height: 44px; }
  .logo img { width: 100%; height: 100%; max-width: none; }

  .hero-stage { min-height: min(78svh, 760px); }

  .hero-film img { object-position: center center; }
  .hero-film img.hero-still { object-position: 68% 46%; }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(7, 8, 12, 0.55) 0%, rgba(7, 8, 12, 0.42) 40%, rgba(7, 8, 12, 0.78) 100%),
      linear-gradient(90deg, rgba(7, 8, 12, 0.55) 0%, rgba(7, 8, 12, 0.18) 58%, transparent 100%);
  }

  .hero-lanes { padding: 14px 0 16px; }
  .hero-lanes-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .hero-lane { min-height: 78px; padding: 12px 14px; }
  .hero-lane span { font-size: 13px; }

  .hero-content {
    align-self: center;
    justify-self: center;
    margin: 0 auto;
    width: min(520px, calc(100% - 40px));
    max-width: none;
    text-align: center;
    padding: calc(var(--header) + env(safe-area-inset-top) + 8px) 0 18px;
  }

  .hero h1 {
    font-size: clamp(34px, 9vw, 46px);
    max-width: none;
    margin-inline: auto;
  }

  .hero h1 span {
    letter-spacing: 0.2em;
    font-size: 0.5em;
  }

  .hero-slogan {
    font-size: clamp(13px, 3.4vw, 16px);
    letter-spacing: 0.12em;
  }

  .hero .lead {
    margin-inline: auto;
    color: rgba(243, 244, 246, 0.9);
  }

  .page-hero { text-align: left; }
  .page-hero h1 { font-size: clamp(28px, 7.4vw, 40px); max-width: none; margin-inline: 0; letter-spacing: 0.03em; }
  .page-hero .lead { margin-inline: 0; max-width: none; }
  .page-hero { padding: calc(var(--header) + env(safe-area-inset-top) + 28px) 0 32px; }

  .service-hero {
    min-height: min(46vh, 420px);
    text-align: left;
  }
  .service-hero-shade {
    background:
      linear-gradient(180deg, rgba(7, 8, 12, 0.38) 0%, rgba(7, 8, 12, 0.28) 32%, rgba(7, 8, 12, 0.88) 100%),
      linear-gradient(90deg, rgba(7, 8, 12, 0.55) 0%, transparent 72%);
  }
  .service-hero-copy {
    margin: 0;
    padding: calc(var(--header) + env(safe-area-inset-top) + 28px) 0 28px;
    max-width: none;
    width: 100%;
  }
  .service-hero h1 {
    max-width: none;
    margin-inline: 0;
    font-size: clamp(26px, 7.2vw, 36px);
    letter-spacing: 0.03em;
  }
  .service-hero .lead { display: none; }
  .service-hero .breadcrumb { justify-content: flex-start; }
  .breadcrumb { justify-content: flex-start; }
  .lead { font-size: 16px; max-width: none; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn,
  .more-row .btn { width: 100%; }

  .stats-row { grid-template-columns: repeat(3, 1fr); }

  .stats-row article {
    padding: 14px 4px;
    text-align: center;
    min-width: 0;
  }

  .stats-row strong { font-size: clamp(24px, 7.5vw, 34px); }

  .stats-row span {
    display: block;
    font-size: 10px;
    letter-spacing: 0.04em;
    line-height: 1.3;
  }

  .service-facts .stats-row {
    grid-template-columns: 1fr;
  }

  .service-facts .stats-row article {
    display: grid;
    grid-template-columns: minmax(118px, 0.85fr) 1.15fr;
    align-items: baseline;
    gap: 8px 16px;
    text-align: left;
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-facts .stats-row article:last-child { border-bottom: 0; }

  .service-facts .stats-row strong {
    font-size: 22px;
    line-height: 1.15;
    letter-spacing: -0.02em;
  }

  .service-facts .stats-row span {
    font-size: 13px;
    letter-spacing: 0.02em;
    text-transform: none;
    line-height: 1.45;
    color: var(--steel);
  }

  .article-body h2,
  .article-card h3 { max-width: none; }

  .article-card { padding: 22px 18px; }

  .article-deck {
    font-size: 17px;
    margin-bottom: 20px;
  }

  .story-featured,
  .article-layout,
  .related-grid { grid-template-columns: 1fr; }

  .story-featured .is-lead { grid-row: auto; }

  .article-aside { position: relative; top: auto; }

  .article-layout { gap: 28px; }

  .article-cover img { height: min(42vh, 360px); }

  .section { padding: 56px 0; }

  .about-grid,
  .services-head,
  .fleet-intro,
  .services-layout,
  .values-grid,
  .contact-grid,
  .contact-board,
  .footer-grid,
  .service-cards,
  .gallery-grid:not(.is-studio),
  .logo-wall { grid-template-columns: repeat(2, 1fr); }

  .gallery-grid.is-studio {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .gallery-tile.is-feature {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .logo-wall a { min-height: 132px; padding: 14px 10px 10px; }
  .logo-wall img { height: 52px; }

  .service-photo {
    position: relative;
    top: auto;
    min-height: 220px;
  }

  .service-line h3 { font-size: 26px; }

  .service-block-grid,
  .service-block-grid.is-flip,
  .fleet-family-copy {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .service-block-grid.is-flip .service-block-media { order: 0; }

  .service-block-media {
    position: relative;
    top: auto;
  }

  .service-block-media img { aspect-ratio: 16 / 10; }

  .service-points { grid-template-columns: 1fr 1fr; }

  .service-list li { grid-template-columns: 44px 1fr; }
  .service-list h3 { font-size: 22px; }
  .service-cards h2 { font-size: 26px; }

  .about-visual { grid-template-columns: 1fr 1fr; }
  .about-visual figure { aspect-ratio: 4 / 3; }
  .about-visual.is-landscape { grid-template-columns: 1fr; }
  .about-visual.is-landscape figure { aspect-ratio: 16 / 10; }

  .timeline { grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 40px; }
  .timeline strong { font-size: 26px; }

  .fleet-rail {
    grid-auto-columns: minmax(78vw, 1fr);
    padding: 0 16px 16px;
  }

  .fleet-rail figure { height: 320px; }

  .hl-slider {
    width: min(1240px, calc(100% - 24px));
    padding: 0 0 32px;
  }

  .hl-slider-nav {
    top: auto;
    bottom: 0;
    width: 40px;
    height: 40px;
  }

  .hl-slider-nav.is-prev { left: auto; right: 52px; }
  .hl-slider-nav.is-next { right: 0; }

  .slide-haul {
    left: 0;
    right: 0;
    bottom: 48px;
  }

  .photo-slide { height: 260px; }
  .hl-slider[data-slider="poster"] .photo-slide { height: auto; }
  .poster-values { grid-template-columns: 1fr 1fr; }

  .story-grid.is-catalog { grid-template-columns: 1fr; }
  .story-grid.is-catalog .story-card { grid-template-rows: 240px 1fr; }
  .fleet-rent-grid,
  .fleet-family-gallery { grid-template-columns: 1fr 1fr; }
  .video-board { grid-template-columns: 1fr 1fr; }

  .contact-actions { flex-direction: column; }
  .contact-actions .btn,
  .quote-form .btn { width: 100%; min-height: 48px; }
  .map-wrap,
  .map-wrap iframe { min-height: 280px; }

  .contact-lines li {
    grid-template-columns: 1fr;
    gap: 4px;
    min-height: 52px;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
  }

  .contact-lines a {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 22px;
    letter-spacing: 0.04em;
  }

  .map-card {
    left: 12px;
    right: 12px;
    bottom: 12px;
    min-width: 0;
    padding: 14px 16px 12px;
  }

  .map-card strong { font-size: 22px; }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: env(safe-area-inset-bottom);
  }

  .footer-col a:not(.maker-card) {
    min-height: 40px;
    display: flex;
    align-items: center;
  }

  .site-notice {
    left: 10px;
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    padding: 8px 10px;
    gap: 8px 10px;
    flex-wrap: nowrap;
  }

  .site-notice p {
    flex: 1 1 auto;
    font-size: 12px;
    line-height: 1.35;
  }

  .site-notice-actions {
    width: auto;
    flex-shrink: 0;
    gap: 8px;
  }

  .site-notice-actions button {
    min-height: 34px;
    padding: 0 12px;
    font-size: 11px;
  }

  .float-dock {
    flex-direction: row;
    right: max(12px, env(safe-area-inset-right));
    bottom: calc(12px + env(safe-area-inset-bottom));
    gap: 10px;
  }

  .float-btn {
    width: 42px;
    height: 42px;
  }

  .float-btn svg {
    width: 20px;
    height: 20px;
  }

  .float-btn.is-wa {
    width: 46px;
    height: 46px;
  }

  .float-btn.is-wa svg {
    width: 24px;
    height: 24px;
  }

  .float-btn.is-wa::after {
    display: none;
  }

  .float-btn[data-tip]::before {
    display: none;
  }

  body.has-notice .float-dock {
    bottom: calc(62px + env(safe-area-inset-bottom));
  }

  .back-top {
    left: max(12px, env(safe-area-inset-left));
    bottom: calc(12px + env(safe-area-inset-bottom));
    height: 42px;
    padding: 0 14px 0 10px;
    gap: 8px;
  }

  .back-top svg {
    width: 20px;
    height: 20px;
  }

  .back-top span {
    font-size: 11px;
  }

  body.has-notice .back-top {
    bottom: calc(62px + env(safe-area-inset-bottom));
  }

  .footer-status-inner {
    gap: 8px 16px;
    min-height: 0;
    font-size: 11px;
    letter-spacing: 0.08em;
  }

  .footer-office { display: block; }
  .footer-slogan { display: none; }
  .footer-hours-mobile {
    display: block;
    margin: 0 0 10px !important;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #c5c8ce !important;
  }
  .footer-status { display: none; }
  .footer-col a:not(.maker-card) { min-height: 40px; }
  .maker-card { margin-top: 14px; padding-top: 14px; }
  .maker-card img { width: 152px; max-width: 52%; }
  .site-footer { padding-bottom: calc(84px + env(safe-area-inset-bottom)); }
  .logo-foot { max-width: 168px; margin-bottom: 10px; }
  .legal-name { font-size: 12px; line-height: 1.45; }
  .footer-meta { line-height: 1.5; letter-spacing: 0.06em; }
}

@media (max-width: 720px) {
  .journey-rail { display: none; }

  .about-grid,
  .services-head,
  .fleet-intro,
  .services-layout,
  .values-grid,
  .contact-grid,
  .contact-board,
  .contact-maps,
  .service-cards,
  .refs-intro { grid-template-columns: 1fr; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 32px;
  }

  .footer-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 20px;
  }

  .footer-cols .footer-col:last-child {
    grid-column: 1 / -1;
  }

  .footer-policy-links { display: none; }

  .footer-wa-link { display: none !important; }

  .footer-bottom {
    gap: 10px;
  }

  .footer-legal {
    gap: 12px 14px;
  }

  .lightbox {
    padding: 52px 12px 24px;
  }

  .lightbox-nav {
    width: 40px;
    height: 40px;
  }

  .lightbox-stage img {
    max-height: min(74vh, 640px);
  }

  .about-visual { grid-template-columns: 1fr 1fr; gap: 10px; }
  .about-visual figure { aspect-ratio: 3 / 4; }
  .about-visual figcaption { left: 10px; bottom: 10px; font-size: 10px; }
  .about-visual.is-landscape { grid-template-columns: 1fr; }
  .about-visual.is-landscape figure { aspect-ratio: 16 / 10; }

  .timeline { grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 36px; }
  .timeline strong { font-size: 24px; }
  .timeline span { font-size: 13px; }

  .service-points { grid-template-columns: 1fr; }

  .service-block { padding: 48px 0; }

  .service-lead { font-size: 16px; }

  .story-grid { grid-template-columns: 1fr; }

  .story-grid.is-catalog { grid-template-columns: 1fr; }
  .fleet-rent-grid,
  .fleet-family-gallery,
  .fleet-family-copy,
  .fleet-family-shot.is-strip { grid-template-columns: 1fr; }
  .video-board {
    grid-template-columns: 1fr;
    width: min(1240px, calc(100% - 24px));
  }

  .story-card,
  .story-featured .is-lead { grid-template-rows: 220px 1fr; }
  .story-grid.is-catalog .story-card { grid-template-rows: 240px 1fr; }

  .story-card div { padding: 22px 18px 24px; }

  .story-card em {
    margin-top: 16px;
    display: inline-flex;
  }

  .article-section { padding-top: 36px; }

  .logo-chip { width: 168px; height: 96px; padding: 12px 16px; }
  .logo-chip img { height: 52px; }

  .gallery-grid:not(.is-studio),
  .logo-wall { grid-template-columns: 1fr 1fr; }

  .gallery-grid:not(.is-studio) figure:first-child { grid-column: 1 / -1; }

  .gallery-grid.is-studio { grid-template-columns: 1fr; }
  .gallery-tile.is-feature {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .more-row { flex-direction: column; }

  .menu-list a {
    font-size: clamp(24px, 7vw, 32px);
    padding: 10px 0;
  }

  .footer-office strong {
    display: block;
    margin: 0 0 4px;
  }

  .legal-table { display: block; overflow-x: auto; }
}

@media (max-width: 480px) {
  .page-loader-word { font-size: 22px; letter-spacing: 0.14em; }
  .page-loader-spin { width: 100px; height: 100px; }
  .page-loader-truck { width: 42px; height: 42px; }

  .stats-row strong { font-size: clamp(20px, 7.5vw, 26px); }
  .stats-row span { font-size: 9px; }
  .stats-row article { padding: 12px 2px; }
  .service-facts .stats-row article { padding: 14px 0; }
  .service-facts .stats-row strong { font-size: 20px; }
  .service-facts .stats-row span { font-size: 13px; }
  .hero h1 { font-size: clamp(30px, 9vw, 40px); }
  .hero-slogan { font-size: clamp(12px, 3.6vw, 15px); letter-spacing: 0.1em; }
  .hero .lead { font-size: 15px; }
  .page-hero h1 { font-size: clamp(26px, 8vw, 34px); }
  .service-hero h1 { font-size: clamp(24px, 7.6vw, 32px); }
  .wrap { width: min(1240px, calc(100% - 24px)); }
}

[data-theme="light"] .logo-wall a,
[data-theme="light"] .office-cards article,
[data-theme="light"] .hours-card,
[data-theme="light"] .contact-form-col .quote-form,
[data-theme="light"] .values-grid article,
[data-theme="light"] .service-cards article,
[data-theme="light"] .service-jump a,
[data-theme="light"] .story-card,
[data-theme="light"] .svc-slide,
[data-theme="light"] .article-card {
  box-shadow: 0 10px 30px rgba(16, 18, 24, 0.06);
}

[data-theme="light"] .services,
[data-theme="light"] .page-hero,
[data-theme="light"] .refs-home,
[data-theme="light"] .service-jump,
[data-theme="light"] .service-block.is-alt { background: var(--paper); }

[data-theme="light"] .service-jump a:hover,
[data-theme="light"] .service-jump a:focus-visible { color: var(--mist); }

[data-theme="light"] .maker-card {
  border-top-color: rgba(255, 255, 255, 0.08);
  background: transparent;
}

[data-theme="light"] .maker-card span { color: #9aa0aa; }

/* —— İstatistik dashboard —— */
.stats-dash {
  padding: 36px 0 72px;
  background:
    radial-gradient(ellipse at 8% 0%, rgba(227, 30, 36, 0.14), transparent 42%),
    linear-gradient(180deg, #0a0b10 0%, var(--navy) 40%);
  border-top: 1px solid var(--line);
}
.stats-dash-top {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-end;
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.stats-dash-top h1 {
  margin: 0 0 8px;
  font-size: clamp(32px, 4vw, 44px);
  letter-spacing: -0.03em;
}
.stats-dash-lead {
  margin: 0;
  max-width: 52ch;
  color: var(--steel);
  font-size: 15px;
}
.stats-dash-lead code {
  font-family: ui-monospace, Consolas, monospace;
  font-size: 0.92em;
  color: #f3f4f6;
}
.stats-dash-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.stats-dash-links a {
  text-decoration: none;
  padding: 10px 14px;
  border: 1px solid var(--line);
  color: var(--steel);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.stats-dash-links a:hover { color: #fff; border-color: var(--brand); }

.stats-toolbar,
.stats-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 12px 16px;
  margin-bottom: 20px;
}

.stats-toolbar {
  padding: 16px 18px;
  background: rgba(18, 20, 28, 0.72);
  border: 1px solid var(--line);
}

.stats-toolbar label {
  display: grid;
  gap: 6px;
  color: var(--steel);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.stats-toolbar select {
  min-width: 220px;
  min-height: 46px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #0c0e14;
  color: var(--mist);
  font: inherit;
}

.stats-meta {
  justify-content: space-between;
  align-items: center;
  color: var(--steel);
  font-size: 13px;
}

.stats-kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 8px 0 16px;
}

.stats-kpis article {
  padding: 20px 18px 16px;
  background: #12141c;
  border: 1px solid var(--line);
  border-top: 2px solid var(--brand);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.stats-kpis span,
.stats-kpis em {
  display: block;
  color: var(--steel);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.stats-kpis strong {
  display: block;
  font-family: Archivo, "Barlow Condensed", sans-serif;
  font-size: clamp(32px, 4.5vw, 46px);
  line-height: 0.95;
  margin: 10px 0 8px;
  letter-spacing: -0.02em;
}

.stats-kpis-split { margin-bottom: 28px; }

.stats-kpis-split em {
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 12px;
  line-height: 1.35;
}

.stats-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.stats-flash {
  margin: 0 0 18px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: #12141c;
  color: var(--mist);
  font-size: 14px;
}

.stats-flash-ok { border-color: #1f5c31; color: #a7e3b4; }
.stats-flash-bad { color: #ffb4b6; border-color: var(--brand); }

.stats-note {
  color: var(--steel);
  font-size: 14px;
  max-width: 72ch;
  margin: 0 0 28px;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stats-card {
  padding: 22px 20px;
  background: #12141c;
  border: 1px solid var(--line);
}

.stats-card-wide { grid-column: 1 / -1; }

.stats-card h2 {
  font-family: Archivo, sans-serif;
  font-size: 22px;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.stats-chart {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18px, 1fr));
  align-items: end;
  gap: 6px;
  height: 180px;
  margin: 0;
  padding: 0;
}

.stats-chart li {
  display: grid;
  grid-template-rows: 1fr auto;
  height: 100%;
  align-items: end;
  gap: 6px;
}

.stats-chart i {
  display: block;
  height: var(--h, 8%);
  background: linear-gradient(180deg, var(--brand), rgba(255, 255, 255, 0.85));
  min-height: 4px;
}

.stats-chart span {
  font-size: 10px;
  color: var(--steel);
  letter-spacing: 0.04em;
}

.stats-bars {
  list-style: none;
  margin: 0;
  padding: 0;
}

.stats-bars li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 64px;
  grid-template-rows: auto 6px;
  gap: 4px 12px;
  padding: 8px 0;
  border-top: 1px solid var(--line);
}

.stats-bars span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
}

.stats-bars strong {
  text-align: right;
  font-size: 13px;
}

.stats-bars i {
  grid-column: 1 / -1;
  display: block;
  height: 6px;
  width: var(--w, 0%);
  background: linear-gradient(90deg, var(--brand), #fff);
}

.stats-hours {
  grid-template-columns: repeat(24, minmax(6px, 1fr));
  height: 150px;
}

.stats-vitals {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.stats-vital {
  padding: 14px 12px 12px;
  border: 1px solid var(--line);
  background: #0c0e14;
}

.stats-vital span,
.stats-vital em {
  display: block;
  color: var(--steel);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.stats-vital strong {
  display: block;
  font-family: Archivo, "Barlow Condensed", sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  margin: 8px 0 6px;
}

.stats-vital-good { border-top: 2px solid #7fd692; }
.stats-vital-ok { border-top: 2px solid #f0b45c; }
.stats-vital-poor { border-top: 2px solid var(--brand); }

@media (max-width: 980px) {
  .stats-kpis,
  .stats-grid,
  .stats-vitals { grid-template-columns: 1fr 1fr; }
  .stats-dash-top { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 720px) {
  .stats-kpis,
  .stats-grid,
  .stats-vitals { grid-template-columns: 1fr; }
  .stats-toolbar select { min-width: 0; width: 100%; }
  .stats-toolbar,
  .stats-meta { flex-direction: column; align-items: stretch; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-film img,
  .hero-video,
  .cta-video,
  .hero-content > *,
  .footer-live span,
  .float-btn.is-wa::after,
  .slide-haul-truck,
  .slide-haul-road,
  .logo-chip,
  .page-loader-progress,
  .page-loader-word,
  .page-loader-truck,
  .page-loader::before,
  .orbit-arc,
  .btn-amber::after,
  .menu-list li { animation: none; }
  .service-hero-media img { animation: none; transform: none; }
  html.is-inner .service-hero-copy > *,
  html.is-inner .page-hero { animation: none; }
  .story-card img { transition: none; }
  .gallery-tile img,
  .gallery-tile video,
  .gallery-tile::after { transition: none; }
  .gallery-tile:hover img,
  .gallery-tile:focus-visible img,
  .gallery-tile:hover video,
  .gallery-tile:focus-visible video { transform: none; }
  .journey-rail { display: none; }
  .page-loader,
  .page-loader.is-done { transition: none; transform: none; }
  .page-loader.is-done { visibility: hidden; }
  .page-loader-word { opacity: 1; transform: none; }
  .hero-film img.is-on { opacity: 1; transform: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .menu-panel-inner,
  .menu-panel-bg { transition: none; }
  .is-menu .menu-list li {
    opacity: 1;
    transform: none;
  }
  html { scroll-behavior: auto; }
  .logo-track {
    animation: marquee 40s linear infinite;
  }
  .logo-marquee.is-js .logo-track {
    animation: none;
  }
}
