/* ============================================================
   OZ SHIPPING CONTAINERS — concept build
   Palette + type from live-site scan (brand/scan/BRAND-NOTES.md)
   ============================================================ */

:root {
  --ink: #0d103b;
  --ink-deep: #080a2b;
  --indigo: #29215a;
  --indigo-2: #342659;
  --orange: #f7941f;
  --orange-hot: #fe8f00;
  --cream: #faf9f9;
  --steel: #a6a9c4;
  --steel-dim: #8286b0;
  --line: rgba(250, 249, 249, 0.14);
  --line-soft: rgba(250, 249, 249, 0.07);
  --font-display: "Roboto Condensed", "Arial Narrow", sans-serif;
  --font-body: "Source Sans 3", "Source Sans Pro", system-ui, sans-serif;
  --gutter: clamp(20px, 4vw, 72px);
  --nav-h: 76px;
}

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

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

body {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 1.06rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

::selection { background: var(--orange); color: var(--ink); }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

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

.skip-link {
  position: fixed; top: -60px; left: 16px; z-index: 300;
  background: var(--orange); color: var(--ink);
  padding: 10px 18px; font-weight: 700; border-radius: 4px;
  transition: top 0.2s;
}
.skip-link:focus-visible { top: 12px; }

/* ---------- texture overlays ---------- */
.grain {
  position: fixed; inset: -50%; z-index: 120; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.05;
  animation: grain-shift 0.9s steps(2) infinite;
}
@keyframes grain-shift {
  0% { transform: translate(0, 0); }
  50% { transform: translate(2%, -1%); }
  100% { transform: translate(-1%, 2%); }
}

/* corrugation motif */
.corrugate {
  background-image: repeating-linear-gradient(
    90deg,
    rgba(250,249,249,0.028) 0 3px,
    transparent 3px 26px,
    rgba(8,10,43,0.5) 26px 29px,
    transparent 29px 52px
  );
}

/* ---------- preloader ---------- */
.loader {
  position: fixed; inset: 0; z-index: 200;
  background: var(--ink-deep);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 28px;
  transition: clip-path 0.9s cubic-bezier(0.77, 0, 0.18, 1);
  clip-path: inset(0 0 0 0);
}
.loader.done { clip-path: inset(0 0 100% 0); pointer-events: none; }
.loader-rails { display: flex; flex-direction: column; gap: 7px; width: 150px; }
.loader-rail {
  height: 16px;
  background: linear-gradient(90deg, var(--indigo), var(--orange));
  transform-origin: left;
  transform: scaleX(0) skewY(-4deg);
}
.loader-count {
  font-family: var(--font-display);
  font-weight: 700; font-size: 0.95rem; letter-spacing: 0.35em;
  color: var(--steel);
}

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--gutter);
  transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(8, 10, 43, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line-soft);
}
.nav-logo img { height: 44px; width: auto; }
.nav-links { display: flex; gap: clamp(14px, 2.2vw, 34px); list-style: none; }
.nav-links a {
  font-family: var(--font-display);
  font-weight: 700; font-size: 0.86rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--steel);
  padding: 8px 2px;
  position: relative;
  transition: color 0.25s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 2px;
  width: 100%; height: 2px; background: var(--orange);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.3s cubic-bezier(0.65, 0, 0.35, 1);
}
.nav-links a:hover, .nav-links a:focus-visible { color: var(--cream); }
.nav-links a:hover::after, .nav-links a:focus-visible::after {
  transform: scaleX(1); transform-origin: left;
}
.nav-phone {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700;
  font-size: 0.92rem; letter-spacing: 0.1em;
  color: var(--ink);
  background: var(--orange);
  padding: 12px 22px;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  transition: background 0.25s, transform 0.25s;
}
.nav-phone:hover { background: var(--cream); transform: translateY(-2px); }
.nav-burger { display: none; }

/* ---------- shared section furniture ---------- */
.section { position: relative; padding: clamp(90px, 12vh, 160px) var(--gutter); overflow: clip; }
.section-head { display: flex; align-items: baseline; gap: 22px; margin-bottom: clamp(40px, 6vh, 80px); }
.section-index {
  font-family: var(--font-display); font-weight: 300;
  font-size: 1rem; letter-spacing: 0.3em; color: var(--orange);
  white-space: nowrap;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 800; text-transform: uppercase;
  font-size: clamp(2.4rem, 5.6vw, 4.6rem);
  line-height: 0.96; letter-spacing: -0.01em;
}
.section-title .accent { color: var(--orange); }
.kicker {
  font-family: var(--font-display); font-weight: 700;
  font-size: 0.82rem; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 18px;
  display: flex; align-items: center; gap: 14px;
}
.kicker::before { content: ""; width: 30px; height: 2px; background: var(--orange); }
.lede { color: var(--steel); max-width: 62ch; }
.lede strong { color: var(--cream); font-weight: 600; }

.btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-display); font-weight: 700;
  font-size: 0.95rem; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 16px 30px; position: relative; overflow: hidden;
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
  transition: color 0.3s;
}
.btn .btn-fill {
  position: absolute; inset: 0; z-index: -1;
  transform: translateY(101%);
  transition: transform 0.38s cubic-bezier(0.65, 0, 0.35, 1);
}
.btn:hover .btn-fill, .btn:focus-visible .btn-fill { transform: translateY(0); }
.btn-orange { background: var(--orange); color: var(--ink); }
.btn-orange .btn-fill { background: var(--cream); }
.btn-ghost { color: var(--cream); box-shadow: inset 0 0 0 1px var(--line); background: transparent; }
.btn-ghost .btn-fill { background: var(--orange); }
.btn-ghost:hover, .btn-ghost:focus-visible { color: var(--ink); }
.btn svg { width: 17px; height: 17px; flex: none; }

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 100dvh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 var(--gutter) clamp(36px, 6vh, 72px);
  overflow: clip;
}
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img, .hero-media video {
  width: 100%; height: 115%; object-fit: cover; object-position: center 40%;
  will-change: transform;
}
.hero-wash {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(8,10,43,0.55) 0%, rgba(8,10,43,0.15) 38%, rgba(8,10,43,0.55) 72%, var(--ink) 100%),
    linear-gradient(75deg, rgba(13,16,59,0.75) 0%, rgba(13,16,59,0) 55%);
}
.hero-eyebrow {
  font-family: var(--font-display); font-weight: 700;
  letter-spacing: 0.42em; text-transform: uppercase;
  font-size: clamp(0.7rem, 1vw, 0.85rem);
  color: var(--orange);
  display: flex; align-items: center; gap: 16px;
  margin-bottom: clamp(14px, 2vh, 26px);
}
.hero-eyebrow::before { content: ""; width: 42px; height: 2px; background: var(--orange); }
.hero-title {
  font-family: var(--font-display);
  font-weight: 800; text-transform: uppercase;
  font-size: clamp(3.2rem, 10.5vw, 10.6rem);
  line-height: 0.9; letter-spacing: -0.015em;
  max-width: 12ch;
}
.hero-title .line { display: block; overflow: clip; }
.hero-title .line > span { display: inline-block; will-change: transform; }
.hero-title .accent { color: var(--orange); }
.hero-sub {
  margin-top: clamp(20px, 3vh, 34px);
  display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between;
  gap: 26px;
}
.hero-sub p { max-width: 46ch; color: var(--steel); font-size: clamp(1rem, 1.3vw, 1.18rem); }
.hero-sub p strong { color: var(--cream); }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; right: var(--gutter); bottom: clamp(36px, 6vh, 72px);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  color: var(--steel); font-family: var(--font-display);
  font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase;
  writing-mode: vertical-rl;
}
.hero-scroll::after {
  content: ""; width: 2px; height: 54px;
  background: linear-gradient(var(--orange), transparent);
  animation: scroll-pulse 1.8s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { transform: scaleY(0.4); transform-origin: top; opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* ---------- marquee ---------- */
.marquee {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 22px 0; overflow: clip;
  background: var(--ink-deep);
  position: relative;
}
.marquee-track { display: flex; width: max-content; gap: 0; will-change: transform; }
.marquee-seq { display: flex; align-items: center; flex: none; }
.marquee-item {
  font-family: var(--font-display); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.18em;
  font-size: clamp(0.95rem, 1.5vw, 1.25rem);
  color: var(--steel); white-space: nowrap;
  display: inline-flex; align-items: center; gap: 34px; padding-right: 34px;
}
.marquee-item::after {
  content: ""; width: 9px; height: 9px; background: var(--orange);
  transform: rotate(45deg); flex: none;
}

/* ---------- direct (value chain) ---------- */
.direct { background: var(--ink); }
.direct-grid {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 100px); align-items: center;
}
.direct-copy .big-claim {
  font-family: var(--font-display); font-weight: 800;
  text-transform: uppercase; line-height: 0.98;
  font-size: clamp(2.2rem, 4.4vw, 3.9rem);
  margin-bottom: 28px;
}
.big-claim .accent { color: var(--orange); }
.direct-copy p { color: var(--steel); max-width: 56ch; margin-bottom: 18px; }
.direct-copy p strong { color: var(--cream); }

.chain { display: flex; flex-direction: column; gap: 0; position: relative; }
.chain-step {
  display: flex; align-items: center; gap: 22px;
  padding: 26px 26px;
  border: 1px solid var(--line-soft);
  background: rgba(41, 33, 90, 0.22);
  position: relative;
}
.chain-step + .chain-step { margin-top: 18px; }
.chain-step::before {
  content: ""; position: absolute; left: 42px; top: -19px;
  width: 2px; height: 18px; background: var(--orange); opacity: 0.6;
}
.chain-step:first-child::before { display: none; }
.chain-num {
  font-family: var(--font-display); font-weight: 300;
  font-size: 0.85rem; letter-spacing: 0.2em; color: var(--orange);
  width: 36px; flex: none;
}
.chain-step h3 {
  font-family: var(--font-display); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  font-size: 1.15rem; margin-bottom: 2px;
}
.chain-step p { font-size: 0.94rem; color: var(--steel); line-height: 1.45; }
.chain-step.skipped {
  border-style: dashed; opacity: 0.85;
  background: transparent;
}
.chain-step.skipped .chain-strike {
  position: absolute; left: 4%; right: 4%; top: 50%;
  height: 3px; background: var(--orange);
  transform: scaleX(0); transform-origin: left;
}
.chain-step.skipped h3, .chain-step.skipped p { color: var(--steel-dim); }
.chain-tag {
  position: absolute; right: 12px; top: -14px; transform: rotate(-3deg);
  background: var(--ink);
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.14em; font-size: 0.78rem;
  color: var(--orange); border: 2px solid var(--orange);
  padding: 6px 12px; opacity: 0;
}

/* ---------- stats strip ---------- */
.stats-strip {
  display: flex; gap: clamp(24px, 4vw, 60px); flex-wrap: wrap;
  margin-top: 44px; padding-top: 30px;
  border-top: 1px solid var(--line-soft);
}
.stat-val {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.2rem, 4vw, 3.4rem); line-height: 1; color: var(--cream);
  display: block;
}
.stat-val small { font-size: 0.45em; color: var(--orange); font-weight: 700; margin-left: 2px; }
.stat-label {
  display: block; margin-top: 8px;
  font-family: var(--font-display); font-size: 0.72rem;
  letter-spacing: 0.26em; text-transform: uppercase; color: var(--steel-dim);
}

/* ---------- steel macro divider ---------- */
.steel-strip { height: clamp(120px, 22vh, 220px); overflow: clip; position: relative; }
.steel-strip img {
  width: 100%; height: 160%; object-fit: cover; object-position: center;
  will-change: transform; filter: brightness(0.85);
}
.steel-strip::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--ink) 0%, transparent 30%, transparent 70%, var(--ink-deep) 100%);
}

/* ---------- 3D range ---------- */
.range { padding: 0; background: var(--ink-deep); position: relative; }
.range-pin {
  min-height: 100dvh; display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
  align-items: center; gap: 0;
  padding: calc(var(--nav-h) + 20px) var(--gutter) 40px;
  position: relative; overflow: clip;
}
.range-copy { position: relative; z-index: 2; }
.range-canvas-wrap { position: relative; height: min(72vh, 720px); z-index: 1; }
#range-canvas { width: 100%; height: 100%; display: block; touch-action: pan-y; cursor: grab; }
#range-canvas:active { cursor: grabbing; }
.range-canvas-wrap::after {
  content: "DRAG TO INSPECT";
  position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-display); font-size: 0.68rem;
  letter-spacing: 0.34em; color: var(--steel-dim);
  pointer-events: none;
}
.range-ghost {
  position: absolute; inset: 0; display: grid; place-items: center;
  z-index: 0; pointer-events: none;
}
.range-ghost span {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(8rem, 26vw, 24rem);
  color: transparent;
  -webkit-text-stroke: 1px rgba(250,249,249,0.07);
  text-transform: uppercase; line-height: 1;
  transition: opacity .4s;
}
.size-chips { display: flex; flex-wrap: wrap; gap: 12px; margin: 30px 0 26px; }
.size-chip {
  font-family: var(--font-display); font-weight: 700;
  letter-spacing: 0.12em; font-size: 0.95rem;
  padding: 13px 20px; min-height: 44px;
  border: 1px solid var(--line);
  color: var(--steel);
  clip-path: polygon(9px 0, 100% 0, 100% calc(100% - 9px), calc(100% - 9px) 100%, 0 100%, 0 9px);
  transition: color 0.25s, border-color 0.25s, background 0.25s;
}
.size-chip:hover { color: var(--cream); border-color: var(--orange); }
.size-chip[aria-pressed="true"] {
  background: var(--orange); color: var(--ink); border-color: var(--orange);
}
.range-specs { display: flex; gap: clamp(20px, 3vw, 44px); flex-wrap: wrap; }
.spec { border-left: 2px solid var(--orange); padding-left: 14px; }
.spec-val {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.5rem, 2.4vw, 2.1rem); line-height: 1;
}
.spec-val small { font-size: 0.55em; font-weight: 700; color: var(--steel); letter-spacing: .08em; }
.spec-label {
  font-size: 0.74rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--steel-dim); font-family: var(--font-display); margin-top: 6px;
}

/* ---------- types grid ---------- */
.types { background: var(--ink); }
.types-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px; background: var(--line-soft);
  border: 1px solid var(--line-soft);
}
.type-card {
  position: relative; background: var(--ink);
  aspect-ratio: 3 / 3.6; overflow: clip;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 24px; isolation: isolate;
}
.type-card img {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.6) brightness(0.72);
  transform: scale(1.04);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.7s;
}
.type-card::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(13,16,59,0.25) 0%, rgba(8,10,43,0.88) 88%);
  transition: opacity 0.5s;
}
.type-card:hover img, .type-card:focus-visible img {
  transform: scale(1.12); filter: saturate(0.9) brightness(0.75);
}
.type-num {
  position: absolute; top: 18px; left: 20px;
  font-family: var(--font-display); font-weight: 300;
  font-size: 0.8rem; letter-spacing: 0.3em; color: var(--orange);
}
.type-card h3 {
  font-family: var(--font-display); font-weight: 800;
  text-transform: uppercase; font-size: clamp(1.15rem, 1.7vw, 1.6rem);
  line-height: 1; letter-spacing: 0.01em;
}
.type-card p {
  font-size: 0.9rem; color: var(--steel); line-height: 1.45;
  max-height: 0; opacity: 0; overflow: clip;
  transition: max-height 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s 0.08s, margin 0.5s;
}
.type-card:hover p, .type-card:focus-visible p { max-height: 90px; opacity: 1; margin-top: 10px; }
.type-arrow {
  position: absolute; top: 14px; right: 14px;
  width: 38px; height: 38px; display: grid; place-items: center;
  border: 1px solid var(--line); border-radius: 50%;
  color: var(--orange);
  transform: rotate(-45deg);
  transition: background 0.3s, transform 0.3s, color .3s;
}
.type-arrow svg { width: 15px; height: 15px; }
.type-card:hover .type-arrow { background: var(--orange); color: var(--ink); transform: rotate(0deg); }

/* ---------- modified (horizontal) ---------- */
.mods { background: var(--ink-deep); padding: 0; }
.mods-pin { min-height: 100dvh; display: flex; flex-direction: column; justify-content: center; overflow: clip; padding: calc(var(--nav-h) + 10px) 0 30px; }
.mods-head { padding: 0 var(--gutter); margin-bottom: clamp(28px, 5vh, 60px); display:flex; justify-content: space-between; align-items:flex-end; gap: 30px; flex-wrap: wrap;}
.mods-track {
  display: flex; gap: clamp(18px, 2.4vw, 34px);
  padding: 0 var(--gutter);
  width: max-content; will-change: transform;
}
.mod-card {
  width: clamp(300px, 34vw, 520px); flex: none;
  position: relative; overflow: clip;
  aspect-ratio: 4 / 3;
  background: var(--indigo);
}
.mod-card img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.8) brightness(0.85);
  transition: transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.mod-card:hover img { transform: scale(1.06); }
.mod-card figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 40px 22px 18px;
  background: linear-gradient(transparent, rgba(8,10,43,0.92));
  font-family: var(--font-display); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.95rem;
  display: flex; align-items: center; gap: 12px;
}
.mod-card figcaption::before { content: ""; width: 8px; height: 8px; background: var(--orange); transform: rotate(45deg); flex:none; }
.mods-progress { margin: 34px var(--gutter) 0; height: 2px; background: var(--line-soft); position: relative; }
.mods-progress-bar { position: absolute; inset: 0; background: var(--orange); transform-origin: left; transform: scaleX(0); }

/* ---------- grades ---------- */
.grades { background: var(--ink); }
.grades-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 28px); }
.grade-card {
  border: 1px solid var(--line-soft);
  background: linear-gradient(165deg, rgba(41,33,90,0.35), rgba(8,10,43,0.2));
  padding: clamp(26px, 3vw, 40px);
  position: relative; overflow: clip;
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), border-color 0.4s;
}
.grade-card:hover { transform: translateY(-8px); border-color: rgba(247,148,31,0.5); }
.grade-card::before {
  content: attr(data-grade);
  position: absolute; right: -6px; top: -26px;
  font-family: var(--font-display); font-weight: 800;
  font-size: 7rem; line-height: 1; color: transparent;
  -webkit-text-stroke: 1px rgba(250,249,249,0.08);
}
.grade-meter { display: flex; gap: 5px; margin: 0 0 22px; }
.grade-meter i {
  width: 26px; height: 10px; background: var(--line-soft);
  transform: skewX(-18deg);
}
.grade-meter i.on { background: var(--orange); }
html:not(.no-js) .grade-meter i.on { opacity: 0; }
.grade-meter i.on.lit { opacity: 1; transition: opacity 0.3s; }
.grade-card h3 {
  font-family: var(--font-display); font-weight: 800; text-transform: uppercase;
  font-size: 1.5rem; line-height: 1.05; margin-bottom: 12px;
}
.grade-card p { color: var(--steel); font-size: 0.98rem; }
.grade-note { margin-top: 26px; font-size: .85rem; color: var(--steel-dim); }

/* ---------- interstitial band ---------- */
.band {
  position: relative; height: 52vh; min-height: 340px;
  overflow: clip; display: grid; place-items: center;
}
.band-bg { position: absolute; inset: 0; }
.band-bg img { width: 100%; height: 130%; object-fit: cover; object-position: center 40%; will-change: transform; }
.band-wash { position: absolute; inset: 0; background: linear-gradient(180deg, var(--ink) 0%, rgba(13,16,59,0.3) 40%, rgba(13,16,59,0.35) 65%, var(--ink) 100%); }
.band-text {
  position: relative;
  font-family: var(--font-display); font-weight: 800; text-transform: uppercase;
  font-size: clamp(3rem, 11vw, 11rem); line-height: 1; letter-spacing: 0.01em;
  color: transparent; -webkit-text-stroke: 2px rgba(250,249,249,0.55);
  white-space: nowrap; will-change: transform;
}

/* ---------- transport ---------- */
.transport { padding: 0; position: relative; min-height: 92vh; display: flex; align-items: flex-end; overflow: clip; }
.transport-bg { position: absolute; inset: 0; z-index: -2; }
.transport-bg img { width: 100%; height: 118%; object-fit: cover; object-position: center 30%; will-change: transform; }
.transport-wash {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(75deg, rgba(8,10,43,0.92) 0%, rgba(8,10,43,0.55) 45%, rgba(8,10,43,0.35) 100%),
    linear-gradient(180deg, var(--ink) 0%, rgba(13,16,59,0.35) 34%, rgba(8,10,43,0.94) 100%);
}
.transport-list li { background: rgba(8, 10, 43, 0.45); backdrop-filter: blur(3px); padding-left: 16px; padding-right: 16px; }
.transport .lede { color: #d9dbec; }
.transport-inner {
  padding: clamp(90px, 14vh, 170px) var(--gutter) clamp(70px, 9vh, 120px);
  width: 100%;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(36px, 5vw, 90px);
  align-items: end;
}
.transport-title {
  font-family: var(--font-display); font-weight: 800; text-transform: uppercase;
  font-size: clamp(2.6rem, 6.4vw, 5.6rem); line-height: 0.94;
}
.transport-list { list-style: none; display: flex; flex-direction: column; }
.transport-list li {
  display: flex; gap: 18px; align-items: baseline;
  padding: 17px 0; border-bottom: 1px solid var(--line-soft);
}
.transport-list li:first-child { border-top: 1px solid var(--line-soft); }
.transport-list .t-num {
  font-family: var(--font-display); font-weight: 300; font-size: 0.8rem;
  letter-spacing: 0.25em; color: var(--orange); flex: none;
}
.transport-list h3 {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.05em; font-size: 1.06rem;
}
.transport-list p { font-size: 0.9rem; color: var(--steel); }

/* ---------- sponsors ---------- */
.sponsors { background: var(--ink-deep); border-top: 1px solid var(--line-soft); }
.sponsors-inner { display: grid; grid-template-columns: auto 1fr; gap: clamp(30px, 5vw, 80px); align-items: center; }
.sponsors-label {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.3em; font-size: 0.8rem; color: var(--steel-dim);
  max-width: 130px; line-height: 1.8;
}
.sponsors-list { display: flex; flex-wrap: wrap; gap: 14px 38px; }
.sponsors-list span {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.14em; font-size: clamp(1rem, 1.6vw, 1.35rem);
  color: var(--steel);
  display: inline-flex; align-items: center; gap: 16px;
  transition: color 0.3s;
}
.sponsors-list span:hover { color: var(--cream); }
.sponsors-list span::before { content: ""; width: 8px; height: 8px; background: var(--orange); transform: rotate(45deg); }

/* ---------- quote ---------- */
.quote { background: var(--ink); position: relative; overflow: clip; }
.quote::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 80% at 85% 20%, rgba(247,148,31,0.13), transparent 60%),
    radial-gradient(50% 70% at 10% 90%, rgba(41,33,90,0.55), transparent 65%);
  pointer-events: none;
}
.quote-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 110px); position: relative; }
.quote-copy .section-title { margin-bottom: 26px; }
.quote-contact { margin-top: 40px; display: flex; flex-direction: column; gap: 20px; }
.contact-row { display: flex; gap: 18px; align-items: flex-start; }
.contact-row svg { width: 20px; height: 20px; color: var(--orange); flex: none; margin-top: 4px; }
.contact-row .c-label {
  font-family: var(--font-display); font-size: 0.72rem;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--steel-dim);
  display: block; margin-bottom: 3px;
}
.contact-row a, .contact-row span.c-val { font-size: 1.08rem; color: var(--cream); }
.contact-row a:hover { color: var(--orange); }
.quote-phone-big {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2rem, 3.6vw, 3.2rem); letter-spacing: 0.02em;
  color: var(--cream); line-height: 1;
  display: inline-block; margin-top: 8px;
  transition: color .3s;
}
.quote-phone-big:hover { color: var(--orange); }

.quote-form {
  background: rgba(41, 33, 90, 0.25);
  border: 1px solid var(--line-soft);
  padding: clamp(26px, 3.4vw, 46px);
  backdrop-filter: blur(6px);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-family: var(--font-display); font-weight: 700;
  font-size: 0.74rem; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--steel);
}
.form-field input, .form-field select, .form-field textarea {
  background: rgba(8, 10, 43, 0.6);
  border: 1px solid var(--line-soft);
  color: var(--cream);
  font: inherit; font-size: 1rem;
  padding: 13px 15px; min-height: 44px;
  transition: border-color 0.25s, box-shadow 0.25s;
  border-radius: 0; width: 100%;
}
.form-field textarea { min-height: 110px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--orange);
  box-shadow: 0 0 0 1px var(--orange);
}
.form-field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23f7941f' stroke-width='2'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 15px center; }
.quote-form .btn { width: 100%; justify-content: center; margin-top: 22px; }
.form-note { margin-top: 14px; font-size: 0.82rem; color: var(--steel-dim); text-align: center; }
.form-success { display: none; text-align: center; padding: 40px 10px; }
.form-success.show { display: block; }
.form-success h3 { font-family: var(--font-display); text-transform: uppercase; font-size: 1.6rem; margin: 16px 0 8px; }
.form-success p { color: var(--steel); }
.form-success svg { width: 54px; height: 54px; color: var(--orange); }

/* ---------- footer ---------- */
.footer {
  background: var(--ink-deep);
  border-top: 1px solid var(--line-soft);
  padding: clamp(60px, 8vh, 100px) var(--gutter) 34px;
  position: relative; overflow: clip;
}
.footer-rails {
  position: absolute; right: -40px; top: -30px; width: 340px; opacity: 0.08;
  pointer-events: none;
  display: flex; flex-direction: column; gap: 10px;
  transform: skewY(-5deg);
}
.footer-rails i { height: 26px; background: linear-gradient(90deg, var(--indigo), var(--orange)); display: block; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(30px, 4vw, 60px);
  margin-bottom: clamp(44px, 6vh, 70px);
  position: relative;
}
.footer-brand img { height: 58px; width: auto; margin-bottom: 20px; }
.footer-brand p { color: var(--steel); font-size: 0.95rem; max-width: 34ch; }
.footer h4 {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.28em; font-size: 0.78rem; color: var(--orange);
  margin-bottom: 20px;
}
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer ul a, .footer ul span { color: var(--steel); font-size: 0.96rem; transition: color 0.25s; }
.footer ul a:hover { color: var(--cream); }
.hours-row { display: flex; justify-content: space-between; gap: 14px; font-size: 0.92rem; color: var(--steel); }
.hours-row b { color: var(--cream); font-weight: 600; white-space: nowrap; }
.hours-row span { text-align: right; }
.footer-bottom {
  border-top: 1px solid var(--line-soft);
  padding-top: 24px;
  display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  color: var(--steel-dim); font-size: 0.85rem;
}
.footer-bottom .concept-tag { color: var(--steel-dim); }

/* reveal helpers */
.reveal { opacity: 0; transform: translateY(44px); }
.reveal-l { opacity: 0; transform: translateX(-44px); }
.reveal-r { opacity: 0; transform: translateX(44px); }
html.no-js .reveal, html.no-js .reveal-l, html.no-js .reveal-r { opacity: 1; transform: none; }

/* ============ responsive ============ */
@media (max-width: 1100px) {
  .types-grid { grid-template-columns: repeat(2, 1fr); }
  .range-pin { grid-template-columns: 1fr; gap: 10px; }
  .range-canvas-wrap { height: 52vh; order: 2; }
  .transport-inner { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .nav-links { display: none; }
  .direct-grid, .quote-grid { grid-template-columns: 1fr; }
  .grades-grid { grid-template-columns: 1fr; }
  .sponsors-inner { grid-template-columns: 1fr; gap: 24px; }
  .sponsors-label { max-width: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-scroll { display: none; }
}
@media (max-width: 560px) {
  .types-grid { grid-template-columns: 1fr; }
  .type-card { aspect-ratio: 4/3.4; }
  .type-card p { max-height: none; opacity: 1; margin-top: 10px; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .nav-phone span.hide-s { display: none; }
  .mod-card { width: 84vw; }
  .hero-title { font-size: clamp(3rem, 15vw, 4.6rem); }
}

/* ============ reduced motion ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .grain { display: none; }
  .reveal, .reveal-l, .reveal-r { opacity: 1 !important; transform: none !important; }
  .hero-scroll::after { animation: none; }
}
