/* ===== DS Cars — premium landing styles =====
   Dark cinematic by default; light theme via [data-theme="light"].
   Typography: Bricolage Grotesque (display) + Manrope (body) + JetBrains Mono (technical eyebrows).
================================================ */

:root {
  /* Dark (default) */
  --bg: #08080a;
  --bg-elev: #0e0e10;
  --surface: #131316;
  --surface-2: #1a1a1e;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text: #f4f4f5;
  --text-dim: rgba(244, 244, 245, 0.62);
  --text-mute: rgba(244, 244, 245, 0.40);
  --gold: #cba14b;
  --gold-hi: #e3c074;
  --gold-lo: #9c7a2e;
  --gold-glow: rgba(203, 161, 75, 0.18);
  --shadow-lg: 0 30px 80px -20px rgba(0, 0, 0, 0.7);
  --grain-opacity: 0.035;

  --font-display: "Archivo", "Manrope", system-ui, sans-serif;
  --font-display-narrow: "Archivo Narrow", "Archivo", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  --container: 1280px;
  --pad-x: clamp(20px, 4vw, 56px);
}

[data-theme="light"] {
  --bg: #f6f5f1;
  --bg-elev: #ffffff;
  --surface: #ffffff;
  --surface-2: #f0eee8;
  --border: rgba(10, 10, 10, 0.08);
  --border-strong: rgba(10, 10, 10, 0.14);
  --text: #0a0a0a;
  --text-dim: rgba(10, 10, 10, 0.62);
  --text-mute: rgba(10, 10, 10, 0.42);
  --gold: #a98520;
  --gold-hi: #c9a043;
  --gold-lo: #8a6c1a;
  --gold-glow: rgba(169, 133, 32, 0.14);
  --grain-opacity: 0.02;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "cv11";
  font-weight: 400;
  letter-spacing: -0.005em;
  overflow-x: hidden;
  transition: background-color .5s ease, color .5s ease;
}

/* Subtle film grain overlay across the whole site */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: var(--grain-opacity);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.7 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--pad-x);
}

/* Eyebrow label — small mono uppercase used as section anchors */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

/* Display headlines */
.display {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.94;
  color: var(--text);
  text-transform: uppercase;
}
.display em {
  font-style: normal;
  font-weight: 800;
  color: var(--gold);
}

h2.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.95;
  font-size: clamp(32px, 4.6vw, 62px);
  margin: 0;
  text-transform: uppercase;
}
h2.section-title em {
  font-style: normal;
  color: var(--gold);
  font-weight: 800;
}

p.lead {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.55;
  color: var(--text-dim);
  max-width: 56ch;
  text-wrap: pretty;
}

/* ===== Nav ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 18px var(--pad-x);
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
  transition: backdrop-filter .3s ease, background-color .3s ease, border-color .3s ease, padding .3s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  background: color-mix(in oklab, var(--bg) 72%, transparent);
  border-bottom-color: var(--border);
  padding-block: 12px;
}
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dim);
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: color .2s ease;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--text);
  color: var(--bg);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease;
}
.nav-cta:hover { transform: translateY(-1px); }

@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-cta { padding: 9px 14px; font-size: 12px; }
}

/* ===== Logo ===== */
.logo {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--text);
}
.logo-img {
  height: 52px;
  width: auto;
  display: block;
}
.logo-mark {
  width: 32px; height: 32px;
  border: 1px solid var(--gold);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--gold);
  position: relative;
}
.logo-mark::after {
  content: "";
  position: absolute;
  inset: 3px;
  border: 1px solid var(--gold);
  opacity: 0.3;
}
.logo-word {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.logo-word span { color: var(--text-mute); font-weight: 400; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 16px 26px;
  border-radius: 4px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform .2s ease, background .25s ease, box-shadow .3s ease, color .25s ease;
  letter-spacing: -0.005em;
}
.btn-primary {
  background: var(--gold);
  color: #0a0a0a;
  box-shadow: 0 0 0 0 var(--gold-glow), 0 10px 30px -10px rgba(212, 175, 55, 0.45);
}
.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--gold-hi);
  box-shadow: 0 0 0 6px var(--gold-glow), 0 18px 40px -10px rgba(212, 175, 55, 0.55);
}
.btn-primary .arrow { transition: transform .3s ease; }
.btn-primary:hover .arrow { transform: translateX(4px); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-ghost:hover { background: var(--surface); border-color: var(--gold); }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px var(--pad-x) 80px;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
}
.hero-stage {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 60% at 70% 60%, rgba(212,175,55,0.10), transparent 60%),
    radial-gradient(ellipse 100% 80% at 10% 0%, rgba(60,60,80,0.25), transparent 60%),
    linear-gradient(180deg, #0a0a0c 0%, #07070a 100%);
}
[data-theme="light"] .hero-stage {
  background:
    radial-gradient(ellipse 80% 60% at 70% 60%, rgba(169,133,32,0.12), transparent 60%),
    radial-gradient(ellipse 100% 80% at 10% 0%, rgba(0,0,0,0.06), transparent 60%),
    linear-gradient(180deg, #efece4 0%, #f6f5f1 100%);
}
.hero-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, color-mix(in oklab, var(--text) 6%, transparent) 1px, transparent 1px),
    linear-gradient(to bottom, color-mix(in oklab, var(--text) 6%, transparent) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 60%, black 0%, transparent 75%);
  opacity: .5;
}

/* Real car photography fills the card visual */
.car-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
  z-index: 0;
  transition: transform .8s cubic-bezier(.2,.7,.2,1);
}
.car-card:hover .car-photo { transform: scale(1.045); }
.car-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 0%, transparent 52%, rgba(8,8,10,0.55) 100%);
  pointer-events: none;
}

/* Photo placeholder — used in hero + fleet cards in lieu of real photography */
.photo-ph {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 80%, color-mix(in oklab, var(--gold) 22%, transparent), transparent 60%),
    radial-gradient(ellipse 80% 60% at 80% 10%, rgba(255,255,255,0.06), transparent 60%),
    linear-gradient(160deg, #1a1a1f 0%, #0e0e12 55%, #06060a 100%);
  overflow: hidden;
}
[data-theme="light"] .photo-ph {
  background:
    radial-gradient(ellipse 70% 50% at 50% 80%, color-mix(in oklab, var(--gold) 18%, transparent), transparent 60%),
    radial-gradient(ellipse 80% 60% at 80% 10%, rgba(0,0,0,0.04), transparent 60%),
    linear-gradient(160deg, #ecebe4 0%, #dedbcf 55%, #cfccc0 100%);
}
.photo-ph::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, color-mix(in oklab, var(--text) 5%, transparent) 1px, transparent 1px),
    linear-gradient(to bottom, color-mix(in oklab, var(--text) 5%, transparent) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 75% 60% at 50% 60%, black 0%, transparent 85%);
  opacity: .6;
  pointer-events: none;
}
.photo-ph::after {
  content: "";
  position: absolute;
  left: 8%; right: 8%; bottom: 6%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
  opacity: 0.6;
}
.photo-ph .ph-label {
  position: absolute;
  left: 18px; bottom: 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
  display: inline-flex; align-items: center; gap: 8px;
  z-index: 2;
}
.photo-ph .ph-label::before {
  content: "";
  width: 6px; height: 6px; background: var(--gold); border-radius: 50%;
}
.photo-ph .ph-model {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 3.6vw, 44px);
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: color-mix(in oklab, var(--text) 14%, transparent);
  white-space: nowrap;
  z-index: 1;
  text-align: center;
  line-height: 1;
}
.photo-ph .ph-corner {
  position: absolute;
  width: 14px; height: 14px;
  border: 1px solid var(--gold);
  opacity: 0.5;
}
.photo-ph .ph-corner.tl { top: 10px; left: 10px; border-right: 0; border-bottom: 0; }
.photo-ph .ph-corner.tr { top: 10px; right: 10px; border-left: 0; border-bottom: 0; }
.photo-ph .ph-corner.bl { bottom: 10px; left: 10px; border-right: 0; border-top: 0; }
.photo-ph .ph-corner.br { bottom: 10px; right: 10px; border-left: 0; border-top: 0; }

/* Cinematic car silhouette placeholder */
.hero-car {
  position: absolute;
  bottom: 6%;
  right: -8%;
  width: 88%;
  max-width: 1300px;
  z-index: -1;
  pointer-events: none;
  filter: drop-shadow(0 60px 80px rgba(0,0,0,0.55));
  opacity: .92;
  animation: hero-float 14s ease-in-out infinite;
}
@keyframes hero-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.hero-light-streak {
  position: absolute;
  top: 30%;
  right: -10%;
  width: 90%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  filter: blur(1px);
  opacity: 0.55;
  transform: rotate(-12deg);
  z-index: -1;
}

/* Subtle motion lines behind hero car */
.hero-speed-lines {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.hero-speed-lines span {
  position: absolute;
  right: -200px;
  height: 1px;
  width: 280px;
  background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
  opacity: 0;
  animation: streak 6s linear infinite;
}
.hero-speed-lines span:nth-child(1) { top: 42%; animation-delay: 0s; }
.hero-speed-lines span:nth-child(2) { top: 56%; animation-delay: 2.2s; width: 180px; opacity: 0.6; }
.hero-speed-lines span:nth-child(3) { top: 70%; animation-delay: 4.4s; width: 320px; }
@keyframes streak {
  0%   { transform: translateX(0); opacity: 0; }
  10%  { opacity: 0.7; }
  60%  { opacity: 0.7; }
  100% { transform: translateX(-130vw); opacity: 0; }
}

.hero-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  max-width: 980px;
  margin: 0 auto;
  width: 100%;
  z-index: 1;
  position: relative;
}
.hero-photo-wrap { display: none; }
.hero .eyebrow { justify-content: center; }
.hero .eyebrow::after {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}
@media (max-width: 960px) {
  .hero { padding: 120px 20px 64px; }
}

/* Data band — instrument-panel style readout */
.hero-data-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: clamp(56px, 8vw, 96px) auto 0;
  width: 100%;
  max-width: 980px;
  z-index: 1;
  position: relative;
  background: color-mix(in oklab, var(--bg) 60%, transparent);
  backdrop-filter: blur(6px);
}
.hero-data-band .data {
  padding: 18px 16px;
  display: flex; flex-direction: column; gap: 4px;
  align-items: center;
  border-right: 1px solid var(--border);
  text-align: center;
}
.hero-data-band .data:last-child { border-right: 0; }
.hero-data-band .data .k {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.hero-data-band .data .v {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.015em;
  color: var(--text);
  text-transform: uppercase;
}
.hero-data-band .data .v b { color: var(--gold); font-weight: 800; }
@media (max-width: 760px) {
  .hero-data-band { grid-template-columns: 1fr; }
  .hero-data-band .data { border-right: 0; }
  .hero-data-band .data:nth-child(n+2) { border-top: 1px solid var(--border); }
}

/* Giant outline wordmark behind hero content */
.hero-megaword {
  position: absolute;
  left: 50%;
  bottom: -3vw;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(140px, 24vw, 420px);
  letter-spacing: -0.07em;
  line-height: 0.82;
  color: transparent;
  -webkit-text-stroke: 1px color-mix(in oklab, var(--text) 22%, transparent);
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
  user-select: none;
  text-transform: uppercase;
  mask-image: linear-gradient(180deg, var(--text) 40%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, var(--text) 40%, transparent 100%);
}
.hero-megaword .dot {
  color: var(--gold);
  -webkit-text-stroke: 0;
}

/* Corner marks at hero edges — like a film viewfinder */
.hero-corner {
  position: absolute;
  width: 24px; height: 24px;
  border: 1px solid var(--gold);
  opacity: 0.5;
  z-index: 1;
}
.hero-corner.tl { top: 96px; left: var(--pad-x); border-right: 0; border-bottom: 0; }
.hero-corner.tr { top: 96px; right: var(--pad-x); border-left: 0; border-bottom: 0; }
.hero-corner.bl { bottom: 28px; left: var(--pad-x); border-right: 0; border-top: 0; }
.hero-corner.br { bottom: 28px; right: var(--pad-x); border-left: 0; border-top: 0; }

.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(44px, 6.4vw, 104px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  margin: 22px auto 0;
  text-transform: uppercase;
  max-width: 16ch;
}
.hero h1 em {
  font-style: normal;
  font-weight: 800;
  color: var(--gold);
  position: relative;
  display: inline-block;
}
.hero h1 em::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -0.05em;
  height: 3px;
  background: var(--gold);
  opacity: 0.5;
}
.hero-sub {
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.55;
  color: var(--text-dim);
  max-width: 52ch;
  margin: 28px auto 32px;
  text-wrap: pretty;
}
.hero-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.hero-meta {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero-meta-item .label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mute);
  display: block;
}
.hero-meta-item .value {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  margin-top: 4px;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.hero-scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mute);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero-scroll::after {
  content: "";
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-pulse 2.4s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
/* On short or mobile viewports the data band reaches the bottom — hide the
   scroll cue so it doesn't collide with "Wsparcie 24/7". */
@media (max-width: 760px), (max-height: 720px) {
  .hero-scroll { display: none; }
  .hero-data-band { margin-bottom: 8px; }
}

/* ===== Section base ===== */
section.block {
  padding: clamp(80px, 12vw, 160px) var(--pad-x);
  position: relative;
}
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
  max-width: var(--container);
  margin-inline: auto;
}
.section-head .left { display: flex; flex-direction: column; gap: 16px; }
.section-head .right { display: flex; flex-direction: column; gap: 18px; justify-content: end; }
@media (max-width: 800px) {
  .section-head { grid-template-columns: 1fr; gap: 24px; }
}

/* ===== About ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
  max-width: var(--container);
  margin-inline: auto;
}
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } }

.about-copy { display: flex; flex-direction: column; gap: 22px; }
.about-copy p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dim);
  margin: 0;
  text-wrap: pretty;
}
.about-copy p:first-of-type {
  font-size: 21px;
  line-height: 1.45;
  color: var(--text);
  font-weight: 500;
  letter-spacing: -0.015em;
}
.about-sign {
  display: inline-flex; align-items: center; gap: 14px;
  margin-top: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--gold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.about-sign-rule {
  width: 40px; height: 1px; background: var(--gold);
}

.about-portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 50% 30%, rgba(212,175,55,0.10), transparent 60%),
    linear-gradient(180deg, #18181c 0%, #0c0c0e 100%);
  border: 1px solid var(--border);
}
.about-portrait .placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mute);
  text-align: center;
  padding: 24px;
}
.about-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  z-index: 0;
  filter: contrast(1.02) brightness(1.0);
  transition: transform 1.2s cubic-bezier(.2,.7,.2,1);
}
.about-portrait:hover .about-photo { transform: scale(1.035); }
.about-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(8,8,10,0.0) 55%, rgba(8,8,10,0.55) 100%);
  pointer-events: none;
}
.about-portrait::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid var(--border-strong);
  pointer-events: none;
  z-index: 2;
}
.about-portrait .corner {
  position: absolute;
  width: 14px; height: 14px;
  border: 1px solid var(--gold);
  z-index: 3;
}
.about-portrait .corner.tl { top: 8px; left: 8px; border-right: 0; border-bottom: 0; }
.about-portrait .corner.tr { top: 8px; right: 8px; border-left: 0; border-bottom: 0; }
.about-portrait .corner.bl { bottom: 8px; left: 8px; border-right: 0; border-top: 0; }
.about-portrait .corner.br { bottom: 8px; right: 8px; border-left: 0; border-top: 0; }

.about-caption {
  margin-top: 18px;
  display: flex; justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mute);
}

/* ===== Process timeline ===== */
.process-rail {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  margin-top: 24px;
  max-width: var(--container);
  margin-inline: auto;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.process-step {
  padding: 32px 24px 32px 24px;
  border-right: 1px solid var(--border);
  position: relative;
  cursor: default;
  transition: background .3s ease;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.process-step:last-child { border-right: 0; }
.process-step:hover { background: var(--surface); }
.process-step:hover .process-num { color: var(--gold); }
.process-step::before {
  content: "";
  position: absolute;
  top: -1px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .5s cubic-bezier(.4,0,.2,1);
}
.process-step:hover::before { width: 100%; }
.process-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 44px;
  letter-spacing: -0.04em;
  color: var(--text-mute);
  transition: color .3s ease;
  line-height: 1;
  font-feature-settings: "tnum";
}
.process-step h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.02em;
  margin: 0;
  color: var(--text);
  text-transform: uppercase;
}
.process-step p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-dim);
  margin: 0;
}
@media (max-width: 1100px) {
  .process-rail { grid-template-columns: repeat(3, 1fr); }
  .process-step:nth-child(3n) { border-right: 0; }
  .process-step:nth-child(n+4) { border-top: 1px solid var(--border); }
}
@media (max-width: 640px) {
  .process-rail { grid-template-columns: 1fr; }
  .process-step { border-right: 0; min-height: auto; }
  .process-step + .process-step { border-top: 1px solid var(--border); }
}

/* ===== Fleet ===== */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: var(--container);
  margin-inline: auto;
  align-items: stretch;
}
.fleet-grid > .reveal {
  display: flex;
  flex-direction: column;
}
.fleet-grid > .reveal > .car-card { flex: 1; }
@media (max-width: 880px) { .fleet-grid { grid-template-columns: 1fr; } }

.car-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  transition: transform .5s cubic-bezier(.2,.7,.2,1), border-color .3s ease, box-shadow .4s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.car-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-lg);
}
.car-card:hover .car-visual::after { opacity: 1; }
.car-card:hover .car-name { color: var(--gold); }
.car-card.featured { border-color: color-mix(in oklab, var(--gold) 50%, var(--border)); }

.car-visual {
  position: relative;
  aspect-ratio: 16 / 10;
  background:
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(212,175,55,0.12), transparent 60%),
    linear-gradient(180deg, #16161a 0%, #0b0b0d 100%);
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.car-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 100%, rgba(212,175,55,0.22), transparent 60%);
  opacity: 0;
  transition: opacity .5s ease;
}
[data-theme="light"] .car-visual {
  background:
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(169,133,32,0.08), transparent 60%),
    linear-gradient(180deg, #eeece5 0%, #e6e3d8 100%);
}
.car-silhouette {
  position: absolute;
  bottom: 12%;
  left: 50%;
  transform: translateX(-50%);
  width: 75%;
  max-width: 380px;
  opacity: .9;
}
.car-visual .floor {
  position: absolute;
  left: 10%; right: 10%; bottom: 9%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
  opacity: .6;
}
.car-tag {
  position: absolute;
  bottom: 16px; left: 16px;
  z-index: 3;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
  display: flex; align-items: center; gap: 8px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}
.car-tag .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.car-badge {
  position: absolute;
  bottom: 16px; right: 16px;
  z-index: 3;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 10px;
  border: 1px solid var(--gold);
  background: color-mix(in oklab, var(--bg) 70%, transparent);
  backdrop-filter: blur(6px);
  color: var(--gold);
  border-radius: 999px;
}

.car-body {
  padding: 28px 28px 24px;
  display: flex; flex-direction: column; gap: 20px;
  flex: 1;
}
.car-body > .car-long { margin-top: auto; }
.car-head {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 16px;
}
.car-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -0.03em;
  margin: 0;
  line-height: 1;
  transition: color .3s ease;
  text-transform: uppercase;
}
.car-name span {
  display: block;
  font-size: 13px;
  color: var(--text-mute);
  font-family: var(--font-mono);
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 8px;
}
.car-from {
  text-align: right;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.car-from b {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  color: var(--text);
  margin-top: 4px;
  font-feature-settings: "tnum";
  letter-spacing: -0.025em;
}
.car-from b small {
  font-size: 11px;
  color: var(--text-mute);
  font-weight: 400;
  letter-spacing: 0;
}

.car-specs {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.spec-chip {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-dim);
  padding: 7px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  display: inline-flex; align-items: center; gap: 6px;
}
.spec-chip svg { width: 12px; height: 12px; opacity: .7; }

.car-pricing {
  border-top: 1px solid var(--border);
  padding-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px 24px;
}
.car-pricing .row {
  display: flex; justify-content: space-between;
  font-size: 13px;
  padding: 6px 0;
  border-bottom: 1px dashed var(--border);
}
.car-pricing .row:last-child, .car-pricing .row:nth-last-child(2) { border-bottom: 0; }
.car-pricing .label { color: var(--text-mute); }
.car-pricing .price { color: var(--text); font-weight: 600; font-feature-settings: "tnum"; }
.car-pricing .price b { color: var(--gold); }

.car-long {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 14px 16px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px;
}
.car-long .lbl {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.car-long .val {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--text);
  letter-spacing: -0.025em;
}
.car-long .val span { color: var(--text-mute); font-size: 12px; font-weight: 500; }

/* ===== Services ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  max-width: var(--container);
  margin-inline: auto;
}
.service-card {
  padding: 32px 24px 36px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 320px;
  position: relative;
  cursor: default;
  transition: background .3s ease;
}
.service-card:last-child { border-right: 0; }
.service-card:hover { background: var(--surface); }
.service-card:hover .service-num { color: var(--gold); }
.service-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--text-mute);
  transition: color .3s ease;
}
.service-icon {
  width: 36px; height: 36px;
  border: 1px solid var(--border-strong);
  display: grid; place-items: center;
  color: var(--gold);
  margin-bottom: 12px;
}
.service-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.01em;
  margin: 0;
  line-height: 1.15;
  text-transform: uppercase;
}
.service-card p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-dim);
  margin: 0;
}
.service-link {
  margin-top: auto;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
}
.service-link::after {
  content: "→";
  transition: transform .3s ease;
}
.service-card:hover .service-link::after { transform: translateX(4px); }

@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card:nth-child(2n) { border-right: 0; }
  .service-card:nth-child(n+3) { border-top: 1px solid var(--border); }
  .service-card:nth-child(5) { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card { border-right: 0; min-height: auto; }
  .service-card + .service-card { border-top: 1px solid var(--border); }
  .service-card:nth-child(5) { grid-column: auto; }
}

/* ===== Contact ===== */
.contact-block {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  max-width: var(--container);
  margin-inline: auto;
  align-items: start;
}
@media (max-width: 900px) { .contact-block { grid-template-columns: 1fr; } }

.contact-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(38px, 5.4vw, 76px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin: 0;
  text-transform: uppercase;
}
.contact-title em {
  font-style: normal;
  font-weight: 800;
  color: var(--gold);
}

.contact-list {
  display: grid;
  gap: 28px;
  margin-top: 12px;
}
.contact-row { display: flex; flex-direction: column; gap: 10px; }
.contact-row .k {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
  display: inline-flex; align-items: center; gap: 10px;
}
.contact-row .k::before { content: ""; width: 16px; height: 1px; background: var(--gold); }
.contact-row .v { display: flex; flex-direction: column; gap: 2px; }
.contact-row .v a, .contact-row .v span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--text);
  text-decoration: none;
  transition: color .25s ease;
}
.contact-row .v a:hover { color: var(--gold); }

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 32px;
  margin-top: 6px;
}
.hours-grid .day { font-size: 13px; color: var(--text-dim); font-family: var(--font-mono); letter-spacing: 0.06em; }
.hours-grid .time { font-family: var(--font-display); font-size: 17px; color: var(--text); font-weight: 700; letter-spacing: 0; font-feature-settings: "tnum"; }

/* ===== Footer ===== */
.footer {
  border-top: 1px solid var(--border);
  padding: 56px var(--pad-x) 32px;
  margin-top: 0;
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.footer-bigword {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(56px, 13vw, 180px);
  letter-spacing: -0.05em;
  line-height: 0.88;
  margin: 24px 0 32px;
  text-align: center;
  color: var(--text);
  opacity: .96;
  text-transform: uppercase;
}
.footer-bigword em {
  font-style: normal;
  font-weight: 900;
  color: var(--gold);
}

/* ===== Floating mobile CTA ===== */
.float-cta {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%) translateY(120%);
  z-index: 60;
  display: none;
  background: var(--gold);
  color: #0a0a0a;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 14px 40px -10px rgba(212,175,55,0.5);
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
  align-items: center;
  gap: 8px;
}
.float-cta.visible { transform: translateX(-50%) translateY(0); }
@media (max-width: 760px) {
  .float-cta { display: inline-flex; }
}

/* ===== Reveal-on-scroll ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1);
}
.reveal.is-in { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
.reveal[data-delay="5"] { transition-delay: .40s; }

/* Marquee */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text-dim);
  font-size: 18px;
  text-transform: uppercase;
}
.marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 36s linear infinite;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 48px; }
.marquee-track .sep { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; flex: 0 0 auto; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
