/* JKT Commercials — editorial workshop */
:root {
  --gold: #c9a227;
  --gold-bright: #e0bc4a;
  --ink: #f3f0e8;
  --muted: #c4bfb3;
  --bg: #07080a;
  --surface: #111216;
  --line: rgba(243, 240, 232, 0.12);
  --header: rgba(7, 8, 10, 0.82);
  --footer: #050506;
  --font-display: "Newsreader", "Iowan Old Style", Palatino, serif;
  --font-body: "IBM Plex Sans", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
  --radius: 0;
  --header-h: 124px;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --chrome-h: calc(var(--header-h) + var(--safe-top));
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-ui: ease;
  --page: 1180px;
  --gutter: max(1.25rem, calc((100vw - var(--page)) / 2));
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-type > *,
  .hero-stage,
  .reveal,
  .shot img,
  .cookie-banner,
  [data-part] {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
    filter: none !important;
  }
  .renault-plate [data-part].is-stowed {
    opacity: 0 !important;
  }
  .renault-plate.is-rolling .hub,
  .van-plate.is-rolling .hub,
  .van-plate.is-rolling .beacon-a,
  .van-plate.is-rolling .beacon-b {
    animation: none !important;
  }
  .van-plate .beacon-lens { opacity: 0.7; }
  .van-draw.is-driving {
    position: relative !important;
    transform: none !important;
    will-change: auto !important;
  }
  .renault-plate .rig {
    transform: none !important;
  }
  .renault-draw.is-flying,
  .renault-draw.is-on-road,
  .renault-draw.is-exiting {
    position: relative !important;
    transform: none !important;
    width: 100% !important;
    will-change: auto !important;
  }
  .hero { height: auto !important; }
  .hero-sticky { position: relative !important; top: auto !important; }
  .yard { height: auto !important; }
  .yard-sticky { position: relative !important; top: auto !important; height: auto !important; min-height: 62vh; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 1.05rem;
  font-optical-sizing: auto;
  max-width: 100%;
}

img { max-width: 100%; display: block; height: auto; }
a { color: var(--gold-bright); text-decoration: none; }
a:hover { color: #fff; }
button, a, .btn, select, input, textarea { cursor: pointer; }

::selection {
  background: var(--gold);
  color: #111;
}
input, textarea, select { caret-color: var(--gold); }
.contact-form { accent-color: var(--gold); }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  background: var(--gold);
  color: #111;
  padding: 0.6rem 1rem;
}
.skip-link:focus { top: 1rem; color: #111; }

.container {
  width: min(var(--page), calc(100% - 2.5rem));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 60;
  padding-top: var(--safe-top);
  background: var(--header);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--line);
}

.header.header--solid { background: #07080a; }

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1.25rem;
  min-width: 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--ink);
  min-height: 44px;
}
.brand:hover { color: #fff; }

.brand img {
  width: 108px;
  height: 108px;
  object-fit: contain;
  background: #0c0d11;
  flex-shrink: 0;
  border: 1px solid rgba(201, 162, 39, 0.5);
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.28rem;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.brand-name span {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 0.22rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.nav a {
  color: rgba(243, 240, 232, 0.72);
  font-weight: 500;
  font-size: 0.95rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.nav a:hover,
.nav a[aria-current="page"] { color: #fff; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 16px;
  height: 1.5px;
  margin: 5px auto;
  background: var(--gold);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.7rem 1.35rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  transition:
    background 160ms var(--ease-ui),
    border-color 160ms var(--ease-ui),
    color 160ms var(--ease-ui),
    transform 160ms var(--ease-out);
  font-family: var(--font-body);
}

.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--gold);
  color: #111;
}
.btn-primary:hover {
  background: var(--gold-bright);
  color: #111;
}

.btn-ghost {
  border-color: rgba(243, 240, 232, 0.28);
  color: var(--ink);
  background: #050506;
}
.btn-ghost:hover { border-color: var(--gold); color: #fff; }

.btn-dark {
  background: #111;
  color: var(--gold-bright);
  border-color: #111;
}
.btn-dark:hover {
  background: #000;
  color: #fff;
}

.btn-ghost-dark {
  border-color: rgba(17, 17, 17, 0.35);
  color: #111;
  background: transparent;
}
.btn-ghost-dark:hover {
  border-color: #111;
  background: #111;
  color: var(--gold-bright);
}

.index,
.label {
  font-family: var(--font-mono);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.7rem;
  color: var(--gold);
  margin: 0 0 1rem;
}

.chapter-plate {
  width: fit-content;
  margin: 0 0 0.9rem;
  padding: 0.3rem 0.55rem;
  border: 1px solid rgba(201, 162, 39, 0.38);
  background: linear-gradient(90deg, rgba(201, 162, 39, 0.13), rgba(201, 162, 39, 0.04));
  font-family: var(--font-mono);
  font-size: 0.61rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(243, 240, 232, 0.82);
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  letter-spacing: -0.035em;
  line-height: 0.95;
  margin: 0 0 1rem;
  font-weight: 600;
  color: var(--ink);
}

h1 { font-size: clamp(3rem, 7vw, 5.6rem); }
h2 { font-size: clamp(2.2rem, 4.4vw, 3.6rem); text-wrap: balance; }
h3 {
  font-size: 1.45rem;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.hero {
  height: 400vh;
  background: #050506;
  position: relative;
}

.hero-sticky {
  position: sticky;
  top: var(--chrome-h);
  height: calc(100svh - var(--chrome-h));
  display: grid;
  grid-template-columns: minmax(20rem, 0.78fr) minmax(0, 1.22fr);
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 55% at 72% 58%, rgba(201, 162, 39, 0.08), transparent 62%),
    #050506;
}

.hero-stage {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3% 4% 7% 0;
  pointer-events: none;
  overflow: hidden;
  min-width: 0;
  z-index: 1;
}

.renault-slot,
.renault-draw {
  position: relative;
  width: min(1100px, 100%);
  aspect-ratio: 1480 / 820;
}

.renault-slot .renault-draw {
  position: absolute;
  inset: 0;
  width: 100%;
}

.rig-layer {
  display: none;
}

.renault-draw.is-exiting {
  transform-origin: 50% 100%;
}

.rig-dock {
  position: absolute;
  width: 0;
  height: 0;
  margin: 0;
  overflow: hidden;
  pointer-events: none;
}

.rig-dock::after {
  display: none;
}

.renault-plate,
.van-plate {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
  filter: drop-shadow(0 0 0.8px rgba(201, 162, 39, 0.55));
}

.renault-plate .plate-ground,
.renault-plate [data-part],
.van-plate .plate-ground,
.van-plate path,
.van-plate circle,
.van-plate ellipse,
.van-plate rect {
  fill: none;
  stroke: var(--gold);
  stroke-linecap: round;
  stroke-linejoin: round;
  transform-box: fill-box;
}

.renault-plate .plate-ground,
.van-plate .plate-ground { opacity: 0.28; }

.van-plate .body-fill {
  fill: var(--bg);
  stroke: none;
}

.van-plate .vinyl-band { opacity: 0.92; }

.van-plate text {
  fill: var(--gold);
  stroke: none;
  paint-order: fill;
}

.van-plate .vinyl-jkt {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.van-plate .vinyl-co {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
}

.van-plate .vinyl-phone {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.van-plate .van-shadow {
  fill: rgba(0, 0, 0, 0.38);
  stroke: none;
}

.van-plate .beacon-lens {
  fill: var(--gold);
  stroke: var(--gold);
  opacity: 0.38;
}

.van-plate.is-rolling .beacon-a {
  animation: beacon-flash 0.64s linear infinite;
}

.van-plate.is-rolling .beacon-b {
  animation: beacon-flash 0.64s linear infinite;
  animation-delay: -0.32s;
}

@keyframes beacon-flash {
  0%, 48% { opacity: 0.28; }
  62%, 100% { opacity: 0.88; }
}

.renault-plate [data-part] .cab-fill {
  fill: var(--bg);
  stroke: none;
}

.renault-plate .heavy,
.van-plate .heavy {
  stroke-width: 1.85;
  vector-effect: non-scaling-stroke;
}
.renault-plate .mid,
.van-plate .mid {
  stroke-width: 1.2;
  vector-effect: non-scaling-stroke;
}
.renault-plate .fine,
.van-plate .fine {
  stroke-width: 0.85;
  vector-effect: non-scaling-stroke;
}

.renault-plate [data-part] {
  opacity: 0.22;
  transform: translate(var(--dx, 0px), var(--dy, 16px));
  transform-origin: center;
  transition:
    opacity 520ms var(--ease-out),
    transform 640ms var(--ease-out);
}

.renault-plate [data-part].is-seated {
  opacity: 1;
  transform: none;
}

.renault-plate [data-part].is-stowed {
  opacity: 0;
  transform: none;
}

.renault-plate .hub,
.van-plate .hub {
  transform-box: fill-box;
  transform-origin: center;
}
.van-plate .hub .heavy { stroke-width: 2.15; }
.van-plate .hub .mid { stroke-width: 1.35; }

.renault-plate.is-rolling .hub {
  animation: hub-spin 1.05s linear infinite;
}

@keyframes hub-spin {
  to { transform: rotate(360deg); }
}

.renault-plate .rig {
  transform: translate(0px, 0px);
}

.renault-plate [data-part="cab"]:not(.is-seated),
.renault-plate [data-part="face"]:not(.is-seated),
.renault-plate [data-part="details"]:not(.is-seated),
.renault-plate [data-part="trailer-frame"]:not(.is-seated),
.renault-plate [data-part="trailer-wheels"]:not(.is-seated),
.renault-plate [data-part="trailer-body"]:not(.is-seated) {
  opacity: 0;
}

.hero-step {
  position: relative;
  margin: 0 0 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-type {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3.5rem 2.4rem 3.4rem var(--gutter);
  position: relative;
  z-index: 5;
  isolation: isolate;
  grid-column: 1;
  grid-row: 1;
  min-width: 0;
  max-width: 100%;
  background: linear-gradient(90deg, #050506 0 72%, rgba(5, 5, 6, 0.88) 86%, transparent 100%);
}

.hero-type .chapter-plate {
  margin-bottom: 1rem;
}

.hero-type::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -15%;
  width: 130%;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(90deg, #050506 62%, transparent 100%);
}

.hero-type > * {
  opacity: 0;
  transform: translateY(10px);
  animation: rise 500ms var(--ease-out) forwards;
}
.hero-type > *:nth-child(1) { animation-delay: 40ms; }
.hero-type > *:nth-child(2) { animation-delay: 80ms; }
.hero-type > *:nth-child(3) { animation-delay: 120ms; }
.hero-type > *:nth-child(4) { animation-delay: 170ms; }
.hero-type > *:nth-child(5) { animation-delay: 210ms; }
.hero-type > *:nth-child(6) { animation-delay: 250ms; }
.hero-type > *:nth-child(7) { animation-delay: 290ms; }
.hero-type > *:nth-child(8) { animation-delay: 330ms; }

.hero h1 {
  display: flex;
  flex-direction: column;
  margin: 0 0 1.1rem;
  font-size: clamp(3.1rem, 6.2vw, 5.4rem);
  font-weight: 700;
  line-height: 0.88;
  letter-spacing: -0.035em;
}

.hero h1 .accent {
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: -0.03em;
}

.hero-kicker {
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 500;
  margin: 0 0 1rem;
  max-width: 26rem;
}

.hero-lead {
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 28rem;
  margin: 0 0 1.7rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  z-index: 4;
}

.hero-type .hero-actions {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.9rem;
}

.hero-actions .btn {
  flex: 0 0 auto;
  white-space: nowrap;
  max-width: 100%;
}

.has-motion .hero-stage {
  clip-path: inset(0 0 8% 0);
  animation: reveal-media 700ms var(--ease-in-out) 80ms forwards;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes reveal-media {
  from { clip-path: inset(0 0 100% 0); }
  to { clip-path: inset(0 0 0 0); }
}

.has-motion .reveal {
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 500ms var(--ease-out),
    transform 500ms var(--ease-out);
}

.has-motion .reveal.is-in {
  opacity: 1;
  transform: none;
}

.has-motion .shot img {
  clip-path: inset(0 0 100% 0);
  transform: scale(1.04);
  transition:
    clip-path 700ms var(--ease-in-out),
    transform 900ms var(--ease-out);
}

.has-motion .shot.is-in img {
  clip-path: inset(0 0 0 0);
  transform: scale(1);
}

.proof {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid rgba(201, 162, 39, 0.22);
  background: #0b0c0f;
}

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

.proof-grid article {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.85rem 1.15rem 1.7rem 0;
  border-right: 1px solid rgba(201, 162, 39, 0.2);
  min-width: 0;
}

.proof-grid article:last-child { border-right: 0; padding-right: 0; }
.proof-grid article:not(:first-child) { padding-left: 1.5rem; }

.proof-grid strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.55rem, 4.6vw, 3.8rem);
  letter-spacing: -0.035em;
  line-height: 0.92;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}

.proof-grid strong.word {
  font-size: clamp(1.85rem, 3.1vw, 2.55rem);
  letter-spacing: -0.03em;
  line-height: 1;
  padding-top: 0.35em;
}

.proof-grid strong sup {
  font-size: 0.4em;
  font-weight: 600;
  letter-spacing: -0.02em;
  position: relative;
  top: -0.62em;
  margin-left: 0.04em;
}

.proof-grid span {
  display: block;
  margin: 0.55rem 0 0;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
}

.yard {
  height: 280vh;
  background: #050506;
  border-bottom: 1px solid var(--line);
}

.yard-sticky {
  position: sticky;
  top: var(--chrome-h);
  height: calc(100svh - var(--chrome-h));
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  overflow: hidden;
  background: #050506;
}

.yard-figure {
  grid-column: 1 / -1;
  grid-row: 1;
  margin: 0;
  overflow: hidden;
  background: #050506;
  height: 100%;
}

.yard-road {
  display: block;
  width: 100%;
  height: 100%;
}

.yard-road .sky { fill: #050506; }
.yard-road .field { fill: #0e0f14; }
.yard-road .tree-line { fill: #0a0b0f; }
.yard-road .tarmac { fill: #16171d; }
.yard-road .verge { fill: #0a0b0e; }
.yard-road .ditch { fill: #08090c; }
.yard-road .hedge-fill { fill: #0c0d12; }
.yard-road .barn-fill { fill: #12141a; }
.yard-road .canopy-fill { fill: #0b0c10; stroke: none; }
.yard-road .hedge,
.yard-road .tree,
.yard-road .barn,
.yard-road .gate,
.yard-road .pole,
.yard-road .wire,
.yard-road .furrow,
.yard-road .fine,
.yard-road .post,
.yard-road .grass,
.yard-road .drain,
.yard-road .distant,
.yard-road .sign,
.yard-road .joint {
  stroke: var(--gold);
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}
.yard-road .hedge { stroke-width: 1.2; opacity: 0.4; }
.yard-road .tree { stroke-width: 1.55; opacity: 0.48; }
.yard-road .barn { stroke-width: 1.7; opacity: 0.52; }
.yard-road .gate { stroke-width: 1.4; opacity: 0.46; }
.yard-road .pole { stroke-width: 1.45; opacity: 0.42; }
.yard-road .wire { stroke-width: 0.9; opacity: 0.26; }
.yard-road .furrow { stroke-width: 0.85; opacity: 0.2; }
.yard-road .fine { stroke-width: 1; opacity: 0.34; }
.yard-road .post { stroke-width: 1.25; opacity: 0.36; }
.yard-road .grass { stroke-width: 0.9; opacity: 0.28; }
.yard-road .drain { stroke-width: 0.9; opacity: 0.2; }
.yard-road .distant { stroke-width: 0.9; opacity: 0.2; }
.yard-road .sign { stroke-width: 1.35; opacity: 0.44; }
.yard-road .joint { stroke-width: 0.8; opacity: 0.12; }
.yard-road .kerb {
  stroke: var(--gold);
  stroke-width: 1.7;
  fill: none;
  stroke-linecap: round;
  opacity: 0.42;
  vector-effect: non-scaling-stroke;
}
.yard-road .edge {
  stroke: var(--gold);
  stroke-width: 1;
  fill: none;
  stroke-linecap: round;
  opacity: 0.26;
  vector-effect: non-scaling-stroke;
}
.yard-road .dash {
  stroke: var(--gold);
  stroke-width: 2;
  fill: none;
  stroke-linecap: butt;
  opacity: 0.3;
  vector-effect: non-scaling-stroke;
}

.road-slot {
  grid-column: 1 / -1;
  grid-row: 1;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 0 4% 6% 0;
  pointer-events: none;
  overflow: hidden;
}

.road-bay {
  position: relative;
  width: min(52rem, 78vw);
  aspect-ratio: 1480 / 820;
  flex-shrink: 0;
}

.road-bay .renault-draw {
  position: absolute;
  inset: 0;
  width: 100%;
}

.renault-draw.is-on-road {
  transform-origin: 50% 100%;
}

.van-dock {
  position: absolute;
  width: 0;
  height: 0;
  margin: 0;
  overflow: hidden;
  pointer-events: none;
}

.van-run {
  position: relative;
  height: 15rem;
  margin: 0.35rem 0 1.35rem;
  overflow: hidden;
  pointer-events: none;
}
.van-lane {
  position: absolute;
  z-index: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1.65rem;
  background: linear-gradient(#0c0d12, #16171d);
  box-shadow:
    inset 0 1px 0 rgba(201, 162, 39, 0.32),
    inset 0 -1px 0 rgba(201, 162, 39, 0.2);
}
.van-lane::after {
  content: "";
  position: absolute;
  left: -3rem;
  right: -3rem;
  top: 18%;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    rgba(201, 162, 39, 0.5) 0 13px,
    transparent 13px 30px
  );
  transform: translate3d(var(--dash, 0px), 0, 0);
}
.van-bay {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 1.35rem;
  margin: 0 auto;
  width: min(32rem, 84vw);
  aspect-ratio: 588 / 250;
}
.van-bay .van-draw,
.van-draw {
  position: absolute;
  inset: 0;
  width: 100%;
  transform-origin: 50% 100%;
}
.contact .van-run { margin-top: 1.75rem; }

.yard-copy {
  grid-column: 2;
  grid-row: 1;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 3.5rem 2.5rem 3.5rem 2.75rem;
  background: linear-gradient(270deg, #050506 52%, rgba(5, 5, 6, 0.78) 74%, transparent 100%);
}

.yard-copy .chapter-plate {
  margin-bottom: 1.1rem;
  color: rgba(243, 240, 232, 0.78);
}

.yard-title {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  letter-spacing: -0.04em;
  line-height: 0.92;
  color: var(--ink);
}

.yard-place {
  margin: 0 0 1.4rem;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.35rem;
  color: var(--gold);
}

.yard-note {
  margin: 0;
  max-width: 22rem;
  color: var(--muted);
}

.section { padding: 5.5rem 0; }
.section#services {
  padding-top: 2.25rem;
  padding-bottom: 0;
  scroll-margin-top: var(--chrome-h);
}

.section-head {
  max-width: 40rem;
  margin-bottom: 2.75rem;
}
.section-head.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem 3rem;
  max-width: none;
  align-items: end;
}
.section-head h2 { margin-bottom: 0; max-width: 11ch; }
.section-head .chapter-plate { margin-bottom: 0.75rem; }
.section-head p:last-child {
  color: var(--muted);
  margin: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-grid article {
  background: var(--bg);
  padding: 1.7rem 3.4rem 1.8rem 1.5rem;
  min-height: 12rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.service-grid article::before {
  content: attr(data-service-code);
  position: absolute;
  right: 1rem;
  top: 1rem;
  font-family: var(--font-mono);
  font-size: 0.56rem;
  letter-spacing: 0.11em;
  color: rgba(201, 162, 39, 0.42);
}

.service-grid article::after {
  content: "";
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 0.9rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(201, 162, 39, 0.45), rgba(201, 162, 39, 0.05));
}

@media (hover: hover) and (pointer: fine) {
  .service-grid article {
    transition:
      background 200ms var(--ease-ui),
      transform 200ms var(--ease-ui);
  }
  .service-grid article:hover {
    background: rgba(201, 162, 39, 0.07);
    transform: translateY(-2px);
  }
}

.service-grid span {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  margin-bottom: 1.4rem;
}

.service-grid h3 { margin-bottom: 0.45rem; }
.service-grid p {
  margin: 0;
  color: var(--muted);
  max-width: 28rem;
  padding-bottom: 1rem;
}

.band-cta {
  margin-top: 2.75rem;
  padding: 1.85rem 0;
  background: var(--gold);
  color: #111;
}

.band-cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem 1.5rem;
}

.band-cta-inner > div:first-child {
  min-width: 0;
  flex: 1 1 18rem;
}

.band-cta .index {
  color: #111;
  margin-bottom: 0.3rem;
}

.band-cta p:last-child {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2.15rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: #111;
}

.band-cta-inner .hero-actions {
  justify-content: flex-end;
  flex: 0 0 auto;
}

.about {
  background: #050506;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  scroll-margin-top: var(--chrome-h);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem 4rem;
  padding: 5.5rem 0;
  align-items: end;
}

.about-names {
  margin: 0;
  display: flex;
  flex-direction: column;
  font-size: clamp(3.4rem, 8vw, 7rem);
  font-weight: 700;
  line-height: 0.86;
  letter-spacing: -0.05em;
}

.about-names span:nth-child(2) {
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
}

.about-copy { min-width: 0; }
.about-copy p { color: var(--muted); }
.lead {
  font-size: 1.18rem;
  color: var(--ink);
  margin: 0 0 0.5rem;
}

.ticket {
  margin: 1.45rem 0 0;
  padding: 0;
}

.ticket > div {
  display: grid;
  grid-template-columns: 5.6rem minmax(0, 1fr);
  gap: 0.85rem 1.15rem;
  padding: 0.85rem 0;
  border-top: 1px solid var(--line);
}

.ticket > div:last-child { border-bottom: 1px solid var(--line); }

.ticket dt {
  margin: 0.15rem 0 0;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.ticket dd {
  margin: 0;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.45;
  overflow-wrap: break-word;
}

.ticket dd ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ticket dd li + li { margin-top: 0.35rem; }

.checklist {
  list-style: none;
  padding: 0;
  margin: 1.6rem 0 0;
}

.checklist li {
  position: relative;
  padding: 0.85rem 0 0.85rem 1.4rem;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-weight: 500;
}
.checklist li:last-child { border-bottom: 1px solid var(--line); }
.about-copy .btn { margin-top: 1.75rem; }

.about-shot {
  margin: 2.25rem 0 0;
  overflow: hidden;
  border: 1px solid var(--line);
}

.about-shot img {
  width: 100%;
  height: 22rem;
  object-fit: cover;
  object-position: 50% 60%;
  filter: saturate(0.92) contrast(1.06);
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.25rem;
  width: 10px;
  height: 1.5px;
  background: var(--gold);
}

.contact {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #050506;
  border-top: 1px solid var(--line);
  scroll-margin-top: var(--chrome-h);
}
.contact .container { position: relative; z-index: 1; }
.contact .section-head h2 { max-width: 12ch; }
.contact .section-head p:last-child { color: #e6e1d6; }

.glass-panel {
  background: rgba(10, 11, 14, 0.38);
  backdrop-filter: blur(28px) saturate(170%);
  -webkit-backdrop-filter: blur(28px) saturate(170%);
  border: 1px solid rgba(201, 162, 39, 0.38);
  box-shadow:
    inset 0 1px 0 rgba(243, 240, 232, 0.16),
    inset 0 0 0 1px rgba(201, 162, 39, 0.06),
    0 22px 50px rgba(0, 0, 0, 0.38);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 1.5rem 2rem;
  align-items: stretch;
}

.contact-rail {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
}

.contact-call {
  display: block;
  padding: 1.4rem 1.45rem 1.5rem;
  background: rgba(201, 162, 39, 0.1);
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 162, 39, 0.22);
  transition:
    background 160ms var(--ease-ui),
    color 160ms var(--ease-ui),
    transform 160ms var(--ease-out);
}
.contact-call-kicker {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.55rem;
}
.contact-call-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.05rem, 3.6vw, 2.9rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 0.95;
  font-variant-numeric: tabular-nums;
}
.contact-call:hover { color: #fff; background: rgba(201, 162, 39, 0.16); }
.contact-call:active { transform: scale(0.97); }

.contact-details {
  display: grid;
  background: transparent;
}

.contact-details a,
.contact-details p {
  margin: 0;
  padding: 1.05rem 1.25rem;
  border-bottom: 1px solid rgba(201, 162, 39, 0.18);
  color: var(--ink);
  font-weight: 500;
}
.contact-details a:last-child,
.contact-details p:last-child { border-bottom: 0; }
.contact-details a:hover { background: rgba(201, 162, 39, 0.1); color: #fff; }

.contact-details span {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.map-wrap {
  overflow: hidden;
  border-top: 1px solid rgba(201, 162, 39, 0.22);
  min-height: 0;
  flex: 1 1 auto;
  background: rgba(8, 9, 12, 0.35);
}
.map-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 16rem;
  border: 0;
  filter: grayscale(0.55) sepia(0.18) contrast(1.08);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-content: start;
  gap: 1.05rem 1.1rem;
  color: var(--ink);
  padding: 1.6rem 1.6rem 1.5rem;
}

.contact-form-head {
  grid-column: 1 / -1;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.85rem;
  margin-bottom: 0.15rem;
  border-bottom: 1px solid rgba(201, 162, 39, 0.22);
}
.contact-form-head .chapter-plate { margin: 0; }
.contact-form-head p:last-child {
  margin: 0;
  color: #e6e1d6;
  font-size: 0.88rem;
  text-align: right;
}

.contact-form .full,
.contact-form .contact-form-foot,
.contact-form .form-status { grid-column: 1 / -1; }

.contact-form-foot { padding-top: 0.25rem; }

.contact-form label {
  display: grid;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(201, 162, 39, 0.88);
}

.req { color: var(--gold-bright); }

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(243, 240, 232, 0.14);
  border-radius: var(--radius);
  background: rgba(5, 5, 6, 0.46);
  box-shadow: inset 0 1px 0 rgba(243, 240, 232, 0.06);
  color: var(--ink);
  padding: 0.75rem 0.85rem;
  font: inherit;
  letter-spacing: 0;
  text-transform: none;
  min-height: 48px;
  transition:
    border-color 160ms var(--ease-ui),
    background 160ms var(--ease-ui);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9a9488;
}
.contact-form select {
  appearance: none;
  background-color: rgba(5, 5, 6, 0.46);
  background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%),
    linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% - 2px), calc(100% - 12px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 2.1rem;
}
.contact-form option { background: #111216; color: var(--ink); }

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
  border-color: var(--gold);
  background: rgba(5, 5, 6, 0.62);
}

@media (hover: hover) and (pointer: fine) {
  .contact-form input:hover,
  .contact-form select:hover,
  .contact-form textarea:hover {
    border-color: rgba(201, 162, 39, 0.45);
  }
}

.contact-form.is-error input:invalid,
.contact-form.is-error select:invalid,
.contact-form.is-error textarea:invalid {
  border-color: #d45348;
}

.contact-form textarea { min-height: 8.5rem; resize: vertical; }

.form-status {
  margin: 0;
  padding: 0.75rem 0.9rem;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
}
.form-status.is-ok { background: rgba(201, 162, 39, 0.12); }
.form-status.is-err { background: rgba(212, 83, 72, 0.12); }
.form-status[hidden] { display: none !important; }

@media (prefers-reduced-transparency: reduce) {
  .glass-panel {
    background: #111216;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    background: #0c0d11;
  }
}

.footer {
  padding: 3.25rem 0 2rem;
  background: var(--footer);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem 3rem;
}

.footer strong {
  display: block;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.03em;
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.footer p { margin: 0 0 0.6rem; font-size: 0.92rem; }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.2rem;
  margin: 0.2rem 0 1.2rem;
}

.footer-links a,
.footer-credit a {
  color: #c9d0d6;
  font-size: 0.9rem;
}
.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 0.55rem 0 0;
}
.footer-links a:hover,
.footer-credit a:hover { color: var(--gold-bright); }
.footer-credit { font-size: 0.85rem; }
.footer-credit a { color: var(--gold); }

.legal-page { padding: 4rem 0 5.5rem; }
.legal-wrap { max-width: 42rem; }
.legal-wrap h1 { margin-bottom: 0.5rem; text-wrap: balance; }
.legal-wrap h2 {
  margin: 2.15rem 0 0.7rem;
  font-size: clamp(1.35rem, 3.2vw, 1.8rem);
  line-height: 1.15;
}
.legal-wrap p,
.legal-wrap li { color: var(--muted); }
.legal-wrap ul { padding-left: 1.15rem; }
.legal-wrap li { margin: 0.35rem 0; }
.legal-wrap a { color: var(--gold-bright); text-decoration: underline; text-underline-offset: 3px; }
.legal-updated {
  font-family: var(--font-mono);
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.7rem;
  margin-bottom: 1.4rem;
}
.legal-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0 0 1.85rem;
}
.legal-switch a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 0.8rem;
  color: var(--muted);
  border: 1px solid var(--line);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
}
.legal-switch a:hover { color: #fff; border-color: rgba(201, 162, 39, 0.45); }
.legal-switch a[aria-current="page"] {
  color: #111;
  background: var(--gold);
  border-color: var(--gold);
}

.cookie-banner {
  position: fixed;
  right: max(1.25rem, env(safe-area-inset-right, 0px));
  left: auto;
  bottom: max(1.25rem, var(--safe-bottom));
  z-index: 50;
  max-width: 28rem;
  background: #111216;
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  padding: 1.15rem 1.2rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  animation: rise 200ms var(--ease-out);
}
.cookie-banner[hidden] { display: none !important; }
.cookie-banner p { margin: 0; color: var(--muted); font-size: 0.9rem; }
.cookie-banner a { color: var(--gold-bright); text-decoration: underline; text-underline-offset: 2px; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

@media (max-width: 1200px) {
  .band-cta-inner .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 1180px) {
  .brand-name { display: none; }
  .nav { gap: 1.15rem; }
}

@media (max-width: 980px) {
  .nav-toggle { display: inline-block; }
  .nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: var(--header-h);
    flex-direction: column;
    align-items: stretch;
    padding: 0.4rem 1.25rem 1.4rem;
    background: #07080a;
    border-bottom: 1px solid var(--line);
    gap: 0;
  }
  .nav.is-open { display: flex; }
  .nav a {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--line);
  }
  .nav .btn { margin-top: 0.8rem; }
}

@media (max-width: 1024px) {
  .hero-sticky {
    grid-template-columns: minmax(18rem, 0.9fr) minmax(0, 1.1fr);
  }
  .hero-stage { padding: 3% 3% 7% 0; }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .about-grid,
  .contact-grid,
  .yard,
  .section-head.split { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .service-grid article:first-child { grid-column: span 1; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .proof-grid article,
  .proof-grid article:not(:first-child),
  .proof-grid article:last-child {
    padding: 1.2rem 1rem 1.2rem 0;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .proof-grid article:nth-child(2n) { border-right: 0; padding-right: 0; padding-left: 1rem; }
  .band-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-type { padding: 3rem 1.5rem 2.75rem var(--gutter); }
  .yard { height: 220vh; }
  .yard-sticky {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(14rem, 1fr) auto;
  }
  .yard-figure,
  .road-slot {
    grid-column: 1;
    grid-row: 1;
  }
  .yard-road { min-height: 0; }
  .yard-copy {
    grid-column: 1;
    grid-row: 2;
    padding: 1.15rem var(--gutter) 1.35rem;
    background: #050506;
    justify-content: flex-start;
  }
  .yard-title { font-size: clamp(1.85rem, 8vw, 2.6rem); }
  .yard-place { margin-bottom: 0.65rem; font-size: 1.15rem; }
  .yard-note { font-size: 0.95rem; }
  .chapter-plate { font-size: 0.58rem; }
  .road-slot {
    justify-content: center;
    padding: 0 1rem 8%;
  }
  .road-bay { width: min(22rem, 100%); }
  .about-grid { padding: 4rem 0; }
  .ticket > div {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
}

@media (max-width: 860px) {
  .hero { height: 210vh; }
  .hero-sticky {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(0, 1fr) auto;
  }
  .hero-stage {
    grid-column: 1;
    grid-row: 1;
    max-height: 46vh;
    padding: 5% 8% 0;
    align-items: center;
  }
  .hero-type {
    grid-column: 1;
    grid-row: 2;
    max-width: none;
    padding: 1.45rem var(--gutter) 1.25rem;
    background: #050506;
    justify-content: flex-end;
  }
  .hero-type .chapter-plate,
  .hero-type .index,
  .hero-step,
  .hero-lead { display: none; }
  .hero-type::before { display: none; }
  .hero h1 { font-size: clamp(2.4rem, 10vw, 3.4rem); margin-bottom: 0.7rem; }
  .hero-kicker { margin-bottom: 1rem; }
  .hero-type .hero-actions,
  .band-cta-inner .hero-actions {
    width: 100%;
    align-items: stretch;
  }
  .hero-actions .btn,
  .about-copy .btn,
  .contact-form-foot .btn {
    width: 100%;
    white-space: normal;
  }
  .footer-inner { grid-template-columns: 1fr; }
  .footer { padding-bottom: calc(2rem + var(--safe-bottom)); }
  .contact-form { grid-template-columns: 1fr; }
  .contact-form-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .contact-form-head p:last-child { text-align: left; }
  .contact-form input,
  .contact-form select,
  .contact-form textarea { font-size: 1rem; }
  .map-wrap iframe { min-height: 14rem; }
  .band-cta-inner .hero-actions { justify-content: flex-start; }
  .container { width: min(var(--page), calc(100% - 2rem)); }
  .legal-page { padding: 2.75rem 0 4.25rem; }
  .cookie-banner {
    left: 0;
    right: 0;
    bottom: 0;
    max-width: none;
    flex-direction: row;
    align-items: center;
    padding: 0.75rem 1rem calc(0.75rem + var(--safe-bottom));
    gap: 0.75rem;
  }
  .cookie-banner p { font-size: 0.8rem; }
  .cookie-banner .btn {
    flex: 0 0 auto;
    min-height: 44px;
    padding: 0.45rem 0.9rem;
  }
  body:has(.cookie-banner:not([hidden])) {
    padding-bottom: calc(5.5rem + var(--safe-bottom));
  }
  body:has(.cookie-banner:not([hidden])) .hero-sticky {
    height: calc(100svh - var(--chrome-h) - 5.25rem);
  }
  .rig-dock {
    width: 0;
    height: 0;
    margin: 0;
  }
}

@media (max-height: 960px) and (min-width: 861px) {
  .hero-step,
  .hero-type .chapter-plate { display: none; }
  .hero h1 { font-size: clamp(2.4rem, 4.8vw, 4.2rem); }
  .hero-type { padding-top: 1.8rem; padding-bottom: 1.8rem; }
  .hero-lead { margin-bottom: 1.15rem; }
}

@media (max-height: 820px) and (min-width: 861px) {
  .hero-lead,
  .hero-kicker,
  .hero-type .index { display: none; }
}

@media (max-width: 560px) {
  .service-grid { grid-template-columns: 1fr; }
  .proof-grid article,
  .proof-grid article:nth-child(2n) {
    padding: 1.25rem 0.85rem 1.2rem;
  }
  .proof-grid article:nth-child(1),
  .proof-grid article:nth-child(2) {
    border-bottom: 1px solid rgba(201, 162, 39, 0.2);
  }
  .proof-grid article:nth-child(odd) { padding-left: 0; }
  .hero h1 { font-size: clamp(2.15rem, 11vw, 2.85rem); }
  .hero-lead { display: none; }
  .hero { height: 175vh; }
  .yard { height: 220vh; }
  .road-bay { width: min(20rem, 100%); }
  .about-shot img { height: 16rem; }
  .section { padding: 3.5rem 0; }
  .about-grid { padding: 3.5rem 0; gap: 1.75rem; }
  .brand-name { display: none; }
  .brand img {
    width: 64px;
    height: 64px;
  }
  :root { --header-h: 76px; }
  .service-grid article { min-height: 0; }
  .van-run { height: 12.25rem; }
  .van-bay { width: min(26rem, 92vw); bottom: 1.2rem; }
  .van-plate .vinyl-jkt { font-size: 34px; }
  .van-plate .vinyl-co { font-size: 12px; }
  .legal-switch {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .legal-switch a { justify-content: center; }
  .legal-wrap h1 { font-size: clamp(2rem, 11vw, 2.55rem); }
}
