:root {
  --ink: #f8f5ef;
  --muted: #b5b7b5;
  --dim: #787d7b;
  --carbon: #070808;
  --graphite: #111315;
  --charcoal: #1a1d20;
  --panel: rgba(18, 20, 22, 0.76);
  --panel-solid: #141619;
  --line: rgba(255, 255, 255, 0.14);
  --line-hot: rgba(255, 92, 0, 0.52);
  --orange: #ff5c00;
  --orange-2: #ff8a00;
  --shadow: 0 36px 110px rgba(0, 0, 0, 0.62);
  --ease: cubic-bezier(.2, .8, .2, 1);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 6%, rgba(255, 92, 0, 0.12), transparent 28%),
    radial-gradient(circle at 88% 24%, rgba(255, 138, 0, 0.08), transparent 24%),
    linear-gradient(180deg, #090a0b 0%, #111315 45%, #080909 100%);
  line-height: 1.55;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,.026) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: linear-gradient(180deg, black, transparent 82%);
}

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

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

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  opacity: .07;
  mix-blend-mode: screen;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.cursor-glow {
  pointer-events: none;
  position: fixed;
  left: var(--x, -120px);
  top: var(--y, -120px);
  z-index: 95;
  width: 300px;
  height: 300px;
  opacity: .24;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255, 92, 0, .28), rgba(255, 92, 0, .08) 32%, transparent 68%);
  mix-blend-mode: screen;
  transition: opacity 220ms var(--ease);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--orange), var(--orange-2));
  box-shadow: 0 0 24px rgba(255, 92, 0, .85);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 22px clamp(18px, 4vw, 64px);
  background: linear-gradient(180deg, rgba(7, 8, 8, .82), rgba(7, 8, 8, .24));
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: padding 280ms var(--ease), background 280ms var(--ease), border-color 280ms var(--ease);
}

.site-header.is-scrolled {
  padding-block: 13px;
  background: rgba(7, 8, 8, .92);
  border-color: var(--line);
}

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

.brand-logo {
  width: clamp(132px, 14vw, 190px);
  height: 48px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 0 12px rgba(255, 92, 0, .18));
}

.logo-line {
  width: 54px;
  height: 30px;
  position: relative;
  flex: 0 0 auto;
}

.logo-line::before,
.logo-line::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--orange);
  box-shadow: 0 0 18px rgba(255, 92, 0, .68);
}

.logo-line::before {
  top: 7px;
  transform: skewX(-18deg);
}

.logo-line::after {
  bottom: 7px;
  width: 72%;
}

.wordmark strong,
.wordmark small {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: .96;
}

.wordmark strong {
  font-size: 18px;
  font-weight: 950;
}

.wordmark small {
  margin-top: 4px;
  color: var(--orange);
  font-size: 10px;
  font-weight: 800;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.5vw, 34px);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  color: rgba(248, 245, 239, .72);
}

.nav a {
  position: relative;
  padding-block: 7px;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms var(--ease);
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--ink);
}

.nav a:hover::after,
.nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, .04);
  padding: 10px 14px;
  text-transform: uppercase;
  font-weight: 900;
}

.hero,
.subhero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  padding: 150px clamp(20px, 6vw, 92px) 92px;
}

.subhero {
  min-height: 72vh;
}

.hero-image,
.subhero-image,
.cta-image {
  position: absolute;
  inset: -8%;
  z-index: -3;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  will-change: transform;
}

.hero::after,
.subhero::after,
.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(7, 8, 8, .94), rgba(7, 8, 8, .48) 52%, rgba(7, 8, 8, .82)),
    linear-gradient(0deg, rgba(7, 8, 8, .96), transparent 44%, rgba(7, 8, 8, .68));
}

.hero::before,
.subhero::before,
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(100deg, transparent 0 44%, rgba(255, 92, 0, .18) 44% 44.2%, transparent 44.2%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.04) 0 1px, transparent 1px 140px);
  opacity: .38;
  transform: translateX(calc(var(--scroll-y, 0px) * -.015));
}

.hero-noise {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .18;
  background:
    linear-gradient(120deg, transparent 0 44%, rgba(255, 92, 0, .28) 44% 44.4%, transparent 44.4%),
    linear-gradient(90deg, transparent, rgba(255, 92, 0, .12), transparent);
}

.hero-content,
.subhero-content {
  max-width: 860px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .18em;
}

.eyebrow.orange {
  color: var(--orange);
}

.headline,
h1,
h2,
h3 {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: .94;
}

.headline {
  max-width: 980px;
  font-size: clamp(58px, 9vw, 132px);
  font-weight: 950;
}

h2 {
  font-size: clamp(38px, 5vw, 78px);
  font-weight: 950;
}

h3 {
  font-size: clamp(21px, 2vw, 32px);
}

.hero-copy {
  max-width: 680px;
  margin: 28px 0 0;
  color: rgba(248, 245, 239, .78);
  font-size: clamp(18px, 2.1vw, 28px);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border: 1px solid var(--line);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .1em;
  transition: transform 180ms var(--ease), border-color 180ms var(--ease), background 180ms var(--ease);
  cursor: pointer;
}

.button.primary {
  color: #111;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  border-color: transparent;
  box-shadow: 0 18px 42px rgba(255, 92, 0, .22);
}

.button.glass {
  color: var(--ink);
  background: rgba(255, 255, 255, .06);
}

.hero-spec {
  position: absolute;
  right: clamp(20px, 5vw, 74px);
  bottom: 54px;
  width: min(360px, calc(100vw - 40px));
  padding: 24px;
  background: linear-gradient(145deg, rgba(16,18,20,.82), rgba(16,18,20,.42));
  border: 1px solid var(--line-hot);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-spec span {
  color: var(--orange);
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 900;
}

.hero-spec strong {
  display: block;
  margin-top: 10px;
  font-size: 23px;
  line-height: 1.05;
  text-transform: uppercase;
}

.hero-spec p {
  color: var(--muted);
  margin-bottom: 0;
}

.vertical-tag {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  color: rgba(248, 245, 239, .22);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .32em;
}

.quick-contact {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(1180px, calc(100% - 40px));
  margin: -54px auto 0;
  background: var(--panel-solid);
  border: 1px solid var(--line-hot);
  box-shadow: 0 28px 90px rgba(0, 0, 0, .48);
}

.contact-tile {
  padding: clamp(22px, 4vw, 38px);
  border-right: 1px solid var(--line);
}

.contact-tile:last-child {
  border-right: 0;
}

.contact-tile span,
.lux-card span,
.process-card span {
  display: block;
  color: var(--orange);
  font-weight: 950;
  margin-bottom: 12px;
}

.contact-tile strong {
  display: block;
  text-transform: uppercase;
  font-size: clamp(18px, 2.4vw, 28px);
  line-height: 1;
}

.contact-tile small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
}

.section {
  position: relative;
  padding: clamp(76px, 10vw, 150px) clamp(20px, 6vw, 92px);
}

.split-feature,
.showcase,
.vehicles-section,
.story-section,
.brand-film-section,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .86fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
}

.showcase,
.vehicles-section,
.story-section.reverse {
  grid-template-columns: minmax(320px, .95fr) minmax(0, 1fr);
}

.story-section.reverse .story-copy {
  order: 2;
}

.story-section.reverse .story-media {
  order: 1;
}

.copy-block p,
.section-heading p,
.vehicle-copy p,
.story-copy p {
  color: var(--muted);
  font-size: clamp(16px, 1.2vw, 19px);
}

.copy-block h2,
.section-heading h2,
.vehicle-copy h2,
.story-copy h2 {
  margin-bottom: 26px;
}

.feature-frame,
.showcase-media,
.vehicle-visual,
.story-media,
.brand-film-frame,
.value-panel,
.contact-panel,
.contact-form,
.chapter-card,
.lux-card,
.process-card {
  position: relative;
  background: linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.02));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.feature-frame,
.showcase-media,
.vehicle-visual,
.story-media,
.brand-film-frame {
  min-height: 460px;
}

.feature-frame::after,
.showcase-media::after,
.vehicle-visual::after,
.story-media::after,
.brand-film-frame::after,
.chapter-card::after,
.lux-card::after,
.value-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 35%), rgba(255, 92, 0, .22), transparent 34%);
  opacity: .74;
}

.feature-frame img,
.showcase-media img,
.vehicle-visual img,
.story-media img,
.chapter-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.brand-film-section {
  min-height: 84vh;
  background:
    radial-gradient(circle at 78% 22%, rgba(255,92,0,.16), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,.018), rgba(255,255,255,0));
  overflow: hidden;
}

.brand-film-section::before {
  content: "";
  position: absolute;
  inset: 12% clamp(20px, 6vw, 92px);
  border: 1px solid var(--line);
  pointer-events: none;
}

.brand-film-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.brand-film-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(16px, 1.2vw, 19px);
}

.brand-film-frame {
  z-index: 2;
  min-height: clamp(500px, 48vw, 720px);
  overflow: hidden;
  transform: translate3d(0, var(--depth-y, 0), 0);
  transition: transform 140ms linear;
}

.brand-film-frame video {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.08) brightness(.82);
}

.film-glass {
  position: absolute;
  right: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  z-index: 3;
  min-width: 220px;
  padding: 18px;
  border: 1px solid var(--line-hot);
  background: rgba(7,8,8,.72);
  backdrop-filter: blur(18px);
}

.film-glass span,
.film-spec-stack span {
  display: block;
  color: var(--orange);
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 950;
}

.film-glass strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: .95;
  text-transform: uppercase;
}

.film-spec-stack {
  position: relative;
  display: grid;
  gap: 12px;
  max-width: 430px;
  margin-top: 34px;
}

.film-spec-stack span {
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  transform: translate3d(0, var(--depth-y, 0), 0);
  transition: transform 140ms linear;
}

.story-section {
  isolation: isolate;
}

.story-section::before,
.chapter-grid-section::before,
.service-manifest::before {
  content: "";
  position: absolute;
  inset: 10% 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,92,0,.72), transparent);
  opacity: .62;
}

.story-copy {
  max-width: 760px;
}

.story-copy h2 {
  max-width: 900px;
}

.detail-list {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.detail-list span {
  position: relative;
  padding: 16px 18px 16px 44px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.035);
  color: var(--ink);
  font-weight: 800;
}

.detail-list span::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 9px;
  height: 9px;
  transform: translateY(-50%) rotate(45deg);
  background: var(--orange);
  box-shadow: 0 0 22px rgba(255,92,0,.72);
}

.story-media {
  min-height: clamp(520px, 52vw, 760px);
  overflow: hidden;
}

.story-media strong {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 2;
  padding: 12px 16px;
  border: 1px solid var(--line-hot);
  background: rgba(7,8,8,.74);
  color: var(--orange);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
}

.service-manifest {
  background:
    radial-gradient(circle at 80% 4%, rgba(255,92,0,.13), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0));
}

.manifest-grid,
.chapter-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.chapter-card {
  min-height: 620px;
  display: grid;
  grid-template-rows: minmax(290px, 1fr) auto;
  overflow: hidden;
}

.chapter-card img {
  min-height: 360px;
  transition: transform 900ms var(--ease), filter 900ms var(--ease);
}

.chapter-card:hover img {
  transform: scale(1.07);
  filter: saturate(1.08) contrast(1.1);
}

.chapter-card div {
  position: relative;
  z-index: 2;
  padding: clamp(22px, 3vw, 34px);
  background:
    linear-gradient(180deg, rgba(7,8,8,.2), rgba(7,8,8,.9)),
    rgba(12,13,14,.9);
}

.chapter-card span,
.marque-list span {
  color: var(--orange);
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 950;
}

.chapter-card h3 {
  margin: 12px 0 12px;
}

.chapter-card p {
  margin: 0;
  color: var(--muted);
}

.marque-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.marque-list span {
  padding: 10px 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
}

.vehicle-visual img {
  object-fit: contain;
  padding: 28px;
  background: radial-gradient(circle, rgba(255,92,0,.18), transparent 58%);
}

.cert-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.cert-row img {
  width: 94px;
  height: 94px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  background: rgba(255,255,255,.04);
}

.cert-row.stacked img {
  width: 110px;
  height: 110px;
}

.marquee {
  overflow: hidden;
  padding: 28px 0;
  border-block: 1px solid var(--line);
  background: rgba(255, 92, 0, .08);
}

.marquee div {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee span {
  padding: 0 34px;
  color: rgba(248,245,239,.78);
  font-size: clamp(18px, 2.6vw, 38px);
  font-weight: 950;
  text-transform: uppercase;
  white-space: nowrap;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.section-heading {
  max-width: 920px;
  margin-bottom: 46px;
}

.service-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.services-preview {
  background:
    linear-gradient(180deg, rgba(255,255,255,.035), transparent),
    #0b0c0d;
}

.media-vault {
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 10%, rgba(255,92,0,.12), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,0));
}

.gallery-rail {
  display: flex;
  width: max-content;
  gap: 18px;
  margin: 16px 0 42px;
  animation: imageRail 52s linear infinite;
}

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

@keyframes imageRail {
  to {
    transform: translateX(-50%);
  }
}

.gallery-mosaic,
.full-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.full-gallery {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: start;
}

.media-card {
  position: relative;
  display: block;
  min-height: 290px;
  border: 1px solid var(--line);
  padding: 0;
  color: var(--ink);
  background: #0d0f10;
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
}

.media-card.compact {
  width: 290px;
  height: 190px;
  min-height: 190px;
  flex: 0 0 auto;
}

.media-card:nth-child(4n + 1) {
  min-height: 370px;
}

.full-gallery .media-card:nth-child(6n + 2) {
  grid-row: span 2;
  min-height: 430px;
}

.media-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(.92) contrast(1.05) brightness(.72);
  transform: scale(1.04);
  transition: transform 700ms var(--ease), filter 700ms var(--ease);
}

.media-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 42%, rgba(0,0,0,.78)),
    radial-gradient(circle at 22% 18%, rgba(255,92,0,.22), transparent 32%);
}

.media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border: 1px solid transparent;
  background: linear-gradient(135deg, rgba(255,92,0,.75), transparent 28%, transparent 70%, rgba(255,92,0,.45)) border-box;
  mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 320ms var(--ease);
}

.media-card span,
.media-card strong,
.media-card em {
  position: absolute;
  z-index: 3;
  left: 18px;
  right: 18px;
}

.media-card span {
  top: 16px;
  color: var(--orange);
  font-weight: 950;
}

.media-card strong {
  bottom: 38px;
  font-size: 13px;
  line-height: 1.1;
  text-transform: uppercase;
}

.media-card em {
  bottom: 16px;
  color: var(--orange);
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.media-card:hover img {
  transform: scale(1.12);
  filter: saturate(1.05) contrast(1.12) brightness(.9);
}

.media-card:hover::after {
  opacity: 1;
}

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

.gallery-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -18px 0 34px;
}

.filter-chip {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: var(--ink);
  min-height: 42px;
  padding: 10px 16px;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 950;
  cursor: pointer;
}

.filter-chip.is-active,
.filter-chip:hover {
  color: #111;
  border-color: transparent;
  background: var(--orange);
}

.story-gallery {
  display: grid;
  gap: clamp(76px, 9vw, 140px);
  min-width: 0;
}

.story-chapter {
  position: relative;
  min-width: 0;
  max-width: 100%;
  padding: clamp(24px, 4vw, 52px);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 12% 14%, rgba(255, 92, 0, .12), transparent 28%),
    linear-gradient(145deg, rgba(255,255,255,.05), rgba(255,255,255,.015));
  overflow: clip;
}

.story-chapter::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,.026) 1px, transparent 1px);
  background-size: 90px 90px;
  opacity: .5;
}

.story-meta {
  position: relative;
  top: auto;
  z-index: 2;
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(280px, .45fr);
  gap: clamp(18px, 4vw, 48px);
  align-items: end;
  margin-bottom: clamp(22px, 3vw, 38px);
}

.story-meta .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -22px;
}

.story-meta h2 {
  grid-column: 1;
  min-width: 0;
  margin-bottom: 0;
}

.story-meta p:not(.eyebrow) {
  grid-column: 2;
  align-self: end;
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.2vw, 19px);
}

.story-meta > span {
  grid-column: 2;
  justify-self: start;
  display: inline-flex;
  margin-top: -8px;
  padding: 10px 14px;
  color: var(--orange);
  border: 1px solid var(--line-hot);
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 950;
}

.story-visual {
  position: relative;
  z-index: 2;
  min-width: 0;
  margin-bottom: 16px;
}

.story-visual .media-card {
  min-height: clamp(460px, 58vw, 720px);
  min-width: 0;
}

.story-grid {
  position: relative;
  z-index: 2;
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.story-grid .media-card {
  min-height: 260px;
}

.story-grid .media-card:nth-child(5n + 1) {
  grid-column: span 2;
  min-height: 360px;
}

.story-grid .media-card:nth-child(7n + 3) {
  min-height: 340px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 30px;
  background: rgba(0,0,0,.86);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms var(--ease);
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-width: min(1180px, 92vw);
  max-height: 78vh;
  border: 1px solid var(--line-hot);
  box-shadow: 0 40px 120px rgba(0,0,0,.8);
}

.lightbox p {
  margin: 16px 0 0;
  color: var(--ink);
  text-transform: uppercase;
  font-weight: 900;
}

.lightbox button {
  position: absolute;
  top: 22px;
  right: 22px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255,255,255,.06);
  padding: 12px 16px;
  text-transform: uppercase;
  font-weight: 900;
  cursor: pointer;
}

.lux-card,
.process-card,
.value-panel,
.contact-panel,
.contact-form {
  padding: clamp(24px, 3.6vw, 42px);
}

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

.lux-card h3 {
  margin-bottom: 16px;
}

.lux-card p,
.process-card p,
.contact-panel span,
.contact-form label {
  color: var(--muted);
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 34px;
}

.stat-strip div {
  padding: 22px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.035);
}

.stat-strip strong {
  display: block;
  color: var(--orange);
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1;
}

.stat-strip strong::after {
  content: "+";
}

.stat-strip span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 900;
}

.vehicles-section {
  background: linear-gradient(180deg, transparent, rgba(255,92,0,.06), transparent);
}

.process-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.cta-band {
  min-height: 72vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.cta-image {
  background-position: right center;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: .68;
}

.cta-content {
  max-width: 760px;
}

.cta-content p {
  color: var(--muted);
  max-width: 560px;
}

.subhero.contact-hero {
  min-height: 64vh;
}

.contact-layout {
  align-items: start;
}

.contact-line {
  display: block;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.contact-line strong {
  display: block;
  margin-top: 6px;
  color: var(--ink);
  font-size: clamp(20px, 2vw, 30px);
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.055);
  color: var(--ink);
  padding: 15px 14px;
  font: inherit;
}

.contact-form select option {
  color: #111;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--orange);
}

.mini-steps {
  display: grid;
  gap: 12px;
  margin: 30px 0;
}

.mini-steps span {
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.035);
  text-transform: uppercase;
  font-weight: 900;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding: 38px clamp(20px, 6vw, 92px);
  border-top: 1px solid var(--line);
  background: #070808;
}

.footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 800ms var(--ease), transform 800ms var(--ease);
  transition-delay: var(--delay, 0ms);
}

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

.split-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}

.split-word > span {
  display: inline-block;
  transform: translateY(112%) rotate(4deg);
  transition: transform 840ms var(--ease);
}

.is-visible .split-word > span,
.hero-content .split-word > span,
.subhero-content .split-word > span {
  transform: translateY(0) rotate(0);
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    background: rgba(7,8,8,.96);
    border: 1px solid var(--line);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 14px;
  }

  .hero,
  .subhero {
    padding-inline: 20px;
  }

  .hero-spec {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 32px;
  }

  .quick-contact,
  .split-feature,
  .showcase,
  .vehicles-section,
  .story-section,
  .brand-film-section,
  .contact-layout,
  .service-grid,
  .manifest-grid,
  .chapter-grid,
  .process-grid,
  .gallery-mosaic,
  .full-gallery,
  .story-grid {
    grid-template-columns: 1fr;
  }

  .story-meta {
    position: relative;
    top: auto;
    grid-template-columns: 1fr;
  }

  .story-meta .eyebrow,
  .story-meta h2,
  .story-meta p:not(.eyebrow),
  .story-meta > span {
    grid-column: auto;
  }

  .quick-contact {
    margin-top: 0;
  }

  .contact-tile {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .contact-tile:last-child {
    border-bottom: 0;
  }

  .feature-frame,
  .showcase-media,
  .vehicle-visual,
  .story-media,
  .brand-film-frame {
    min-height: 340px;
  }

  .story-section.reverse .story-copy,
  .story-section.reverse .story-media {
    order: initial;
  }

  .chapter-card {
    min-height: auto;
  }

  .media-card,
  .media-card:nth-child(4n + 1),
  .full-gallery .media-card:nth-child(6n + 2),
  .story-grid .media-card:nth-child(5n + 1) {
    min-height: 260px;
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 14px 16px;
  }

  .wordmark strong {
    font-size: 14px;
  }

  .logo-line {
    width: 40px;
  }

  .brand-logo {
    width: 126px;
  }

  .headline {
    font-size: clamp(46px, 16vw, 72px);
  }

  h2 {
    font-size: clamp(34px, 12vw, 52px);
  }

  .hero,
  .subhero {
    min-height: 82vh;
    padding-top: 112px;
    padding-bottom: 54px;
  }

  .section {
    padding: 70px 18px;
  }

  .stat-strip {
    grid-template-columns: 1fr;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .gallery-rail {
    gap: 12px;
  }

  .media-card.compact {
    width: 220px;
    height: 160px;
    min-height: 160px;
  }
}
