/* Iron Elite — cinematic performance facility */
:root {
  --bg: #050505;
  --charcoal: #111111;
  --p1: #111111;
  --p2: #141414;
  --p3: #171717;
  --p4: #1e1e1e;
  --blue: #2a4a6e;
  --blue-hi: #3d6088;
  --blue-glow: rgba(42, 74, 110, 0.25);
  --orange: #f28c00;
  --orange-hi: #ff8a00;
  --orange-dim: rgba(242, 140, 0, 0.4);
  --orange-glow: rgba(255, 138, 0, 0.45);
  --silver: #f2f2f2;
  --muted: #9a9a9a;
  --white: #f2f2f2;
  --w85: rgba(242, 242, 242, 0.9);
  --w72: rgba(242, 242, 242, 0.78);
  --w60: rgba(242, 242, 242, 0.65);
  --w40: rgba(154, 154, 154, 0.95);
  --w20: rgba(154, 154, 154, 0.45);
  --border: rgba(255, 255, 255, 0.12);
  --border-hi: rgba(255, 255, 255, 0.2);
  --card-bg: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  --card-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --section-y: 72px;
  --max: 1320px;
  --nav-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, video { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font: inherit; color: inherit; cursor: pointer; }
ul { list-style: none; }

.skip {
  position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden;
}
.skip:focus {
  position: fixed; left: 16px; top: 16px; z-index: 9999;
  width: auto; height: auto; padding: 12px 18px;
  background: var(--blue); color: var(--white);
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
}

/* ── Angular motion graphics ── */
.ang-line {
  position: absolute; pointer-events: none;
  background: linear-gradient(to bottom, transparent, var(--orange-dim), transparent);
  transform: skewX(-12deg);
}
.ang-sweep {
  position: absolute; inset: -50%;
  background: conic-gradient(from 210deg at 60% 40%, transparent 0deg, rgba(242, 140, 0, 0.05) 40deg, transparent 80deg);
  animation: sweep 24s linear infinite;
}
@keyframes sweep { to { transform: rotate(360deg); } }

.grid-overlay {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.04;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 48px 48px;
}

/* ── Type ── */
.hd {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-style: italic;
  text-transform: uppercase; line-height: 0.9;
}
.lbl {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 10px;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--orange);
}
.ghost {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
}
.rule { width: 28px; height: 2px; background: var(--orange); margin-bottom: 14px; }

.wall-quote {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-style: italic;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: 0.02em;
}
.wall-quote--lg { font-size: clamp(2rem, 5vw, 3.5rem); }
.wall-quote--xl { font-size: clamp(2.5rem, 7vw, 5.5rem); }
.wall-quote em { color: var(--blue-hi); font-style: italic; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 50px; padding: 14px 32px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-style: italic;
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  border: none; transition: transform 0.22s, box-shadow 0.28s;
}
.btn--primary {
  background: linear-gradient(165deg, var(--orange-hi) 0%, var(--orange) 52%, #d97a00 100%);
  color: #050505;
  box-shadow: 0 4px 28px rgba(242, 140, 0, 0.35);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px var(--orange-glow), 0 0 0 1px rgba(255, 180, 80, 0.3);
}
.btn--ghost {
  background: transparent;
  color: var(--silver);
  border: 1px solid rgba(242, 140, 0, 0.55);
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}
.btn--ghost:hover {
  border-color: var(--orange-hi);
  color: var(--white);
  background: rgba(242, 140, 0, 0.1);
  box-shadow: 0 8px 32px rgba(242, 140, 0, 0.2);
}
.btn--accent {
  background: var(--orange); color: var(--bg);
}
.btn--accent:hover { transform: translateY(-2px); box-shadow: 0 8px 28px var(--orange-dim); }
.btn-arr {
  width: 16px; height: 1px; background: currentColor; position: relative;
  transition: width 0.24s;
}
.btn-arr::after {
  content: ''; position: absolute; right: 0; top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 5px; height: 5px; border-top: 1.5px solid; border-right: 1.5px solid;
}
.btn:hover .btn-arr { width: 24px; }

/* ── Nav ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: var(--nav-h); display: flex; align-items: center;
  justify-content: space-between; padding: 0 clamp(20px, 4vw, 48px);
  border-bottom: 1px solid transparent;
  transition: background 0.4s, border-color 0.4s, backdrop-filter 0.4s;
}
.nav.is-scrolled {
  background: rgba(3, 3, 3, 0.92);
  backdrop-filter: blur(16px);
  border-color: var(--border);
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--orange);
  border: 1px solid rgba(224, 140, 36, 0.35);
  background: rgba(0, 51, 255, 0.08);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.nav-logo:hover .nav-mark {
  border-color: rgba(224, 140, 36, 0.6);
  box-shadow: 0 0 16px rgba(0, 51, 255, 0.25);
}
.nav-word { display: flex; flex-direction: column; }
.nav-iron {
  font-family: 'Oswald', sans-serif; font-weight: 700;
  font-size: 1.15rem; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--blue-hi); line-height: 1;
}
.nav-elite {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-style: italic;
  font-size: 1.15rem; text-transform: uppercase; line-height: 1;
}
.nav-tag {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 7px; letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--orange); margin-top: 2px;
}
.nav-links { display: flex; gap: clamp(20px, 3vw, 36px); }
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--w40); position: relative; transition: color 0.22s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 100%;
  height: 1px; background: var(--orange); transition: right 0.24s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { right: 0; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-actions .btn--accent { display: inline-flex !important; }
@media (max-width: 900px) {
  .nav-actions .btn--accent { display: none !important; }
}
.nav-cart {
  width: 42px; height: 42px; border: 1px solid var(--border-hi);
  background: transparent; display: flex; align-items: center; justify-content: center;
  position: relative; transition: border-color 0.22s;
}
.nav-cart:hover { border-color: var(--blue-hi); }
.nav-cart svg { width: 16px; height: 16px; stroke: var(--w60); fill: none; stroke-width: 1.5; }
.nav-cart:hover svg { stroke: var(--blue-hi); }
.nav-count {
  position: absolute; top: -4px; right: -4px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--orange); color: var(--bg);
  font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 9px;
  display: flex; align-items: center; justify-content: center;
}
.nav-toggle {
  display: none; width: 44px; height: 44px;
  border: 1px solid var(--border-hi); background: transparent; color: var(--w60);
}
.nav-drawer {
  position: fixed; inset: 0; z-index: 1100; pointer-events: none;
}
.nav-drawer.open { pointer-events: auto; }
.nav-drawer-bg {
  position: absolute; inset: 0; background: rgba(0,0,0,.6);
  opacity: 0; transition: opacity 0.3s;
}
.nav-drawer.open .nav-drawer-bg { opacity: 1; }
.nav-panel {
  position: absolute; top: 0; right: 0; width: min(320px, 88vw); height: 100%;
  background: var(--p1); border-left: 1px solid var(--border-hi);
  transform: translateX(100%); transition: transform 0.32s var(--ease);
  padding: calc(var(--nav-h) + 24px) 24px 24px;
  display: flex; flex-direction: column; gap: 6px;
}
.nav-drawer.open .nav-panel { transform: translateX(0); }
.nav-panel a, .nav-panel button {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--w40); padding: 14px 12px; text-align: left;
  background: none; border: 1px solid transparent;
}
.nav-panel a:hover { color: var(--white); border-color: var(--border); }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100svh;
  max-height: 100svh;
  height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow: hidden;
  background: var(--bg);
  box-sizing: border-box;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-video {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.55;
  display: none;
}
.hero.has-video .hero-video {
  display: block;
}
.hero-fallback {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(3,3,3,.88) 0%, rgba(3,3,3,.55) 50%, rgba(3,3,3,.75) 100%),
    radial-gradient(ellipse 100% 80% at 70% 20%, rgba(0, 51, 255, 0.25) 0%, transparent 55%),
    linear-gradient(180deg, #08080c 0%, #030303 50%, #050508 100%);
  opacity: 0; transition: opacity 0.6s;
  pointer-events: none;
}
.hero-poster {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
  opacity: 0;
  transition: opacity 0.5s;
}
.hero.no-video .hero-poster {
  opacity: 0.55;
}
.hero--collage.no-video .hero-poster {
  opacity: 0;
  display: none;
}
.hero.has-video .hero-poster {
  opacity: 0;
  pointer-events: none;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(105deg, rgba(3,3,3,.94) 0%, rgba(3,3,3,.72) 42%, rgba(3,3,3,.55) 100%),
    linear-gradient(to top, rgba(3,3,3,.95) 0%, transparent 38%);
}
.hero-glow {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(90deg, rgba(0, 51, 255, 0.08) 0%, transparent 35%);
  animation: heroPulse 6s ease-in-out infinite alternate;
}
@keyframes heroPulse {
  from { opacity: 0.6; } to { opacity: 1; }
}
#hero-particles {
  position: absolute; inset: 0; z-index: 2; pointer-events: none; opacity: 0.5;
}
.hero-inner {
  position: relative; z-index: 3;
  width: 100%; max-width: var(--max); margin: 0 auto;
  padding: calc(var(--nav-h) + 16px) clamp(24px, 5vw, 48px) 48px;
  box-sizing: border-box;
}
.hero--wall .hero-inner {
  padding: 0;
}
.hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 11px; letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 16px;
  display: flex; align-items: center; gap: 14px;
}
.hero-eyebrow::before {
  content: ''; width: 32px; height: 2px; background: var(--orange);
}
.hero-title {
  font-size: clamp(3.5rem, 11vw, 8.5rem);
  color: var(--white);
  text-shadow: 0 0 80px var(--blue-glow), 0 4px 0 rgba(0,0,0,.8);
  margin-bottom: 12px;
}
.hero-title .line-blue,
.hero-title .line-accent {
  display: block;
  color: var(--orange-hi);
  -webkit-text-stroke: 0;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.hero-sub {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 400; font-style: italic;
  font-size: clamp(1.1rem, 2.2vw, 1.65rem);
  letter-spacing: 0.06em; color: var(--w60);
  max-width: 28rem; margin-bottom: 36px; line-height: 1.4;
}
.hero-sub strong { color: var(--w85); font-weight: 600; }
.hero-acts { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 0; }
.hero-wall-msg {
  margin-top: 32px; padding-top: 28px;
  border-top: 1px solid var(--border);
  max-width: 520px;
}
.hero-wall-msg p {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-style: italic;
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--w40); line-height: 1.5;
}
.hero-wall-msg .accent { color: var(--orange); }
.hero-stats {
  position: absolute; right: clamp(24px, 5vw, 56px);
  top: 50%; transform: translateY(-50%);
  z-index: 3; display: flex; flex-direction: column; gap: 8px;
}
.hero-stat {
  background: rgba(3, 3, 3, 0.85); backdrop-filter: blur(12px);
  border: 1px solid var(--border); border-left: 2px solid var(--orange);
  padding: 14px 20px; min-width: 140px;
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 100%, 0 100%);
  transition: border-left-color 0.24s;
}
.hero-stat:hover { border-left-color: var(--blue-hi); }
.hero-stat-n {
  font-family: 'Oswald', sans-serif; font-weight: 700;
  font-size: 1.75rem; color: var(--blue-hi); line-height: 1;
}
.hero-stat-l {
  font-family: 'Barlow Condensed', sans-serif; font-size: 9px;
  font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--w40); margin-top: 4px;
}

/* ── Ticker ── */
.ticker {
  background: var(--blue); height: 40px; overflow: hidden;
  display: flex; align-items: center; border-block: 1px solid rgba(0,0,0,.2);
}
.ticker-track {
  display: flex; white-space: nowrap;
  animation: ticker 32s linear infinite;
}
.ticker-item {
  display: flex; align-items: center; gap: 16px; padding: 0 32px;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-style: italic;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,.9);
}
.ticker-dot {
  width: 6px; height: 6px; background: var(--orange);
  transform: rotate(45deg); flex-shrink: 0;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── Sections shared ── */
.section { padding: var(--section-y) clamp(20px, 5vw, 48px); position: relative; }
.section-inner { max-width: var(--max); margin: 0 auto; position: relative; z-index: 1; }
.section-header { margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.section-header--center { text-align: center; }
.section-header--center .rule { margin-left: auto; margin-right: auto; }
.section-title { font-size: clamp(2.5rem, 6vw, 5rem); color: var(--white); margin-top: 12px; }
.section-desc {
  font-size: 15px; color: var(--w40); line-height: 1.75;
  max-width: 480px; margin-top: 16px;
}
.section-header--center .section-desc { margin-left: auto; margin-right: auto; }

.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }

/* ── About ── */
.about {
  background: var(--charcoal); overflow: hidden; position: relative;
}
.about::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: 0.12;
  background: repeating-linear-gradient(
    -35deg, transparent, transparent 20px,
    rgba(224, 140, 36, 0.03) 20px, rgba(224, 140, 36, 0.03) 21px
  );
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px); align-items: center;
}
.about-visual { position: relative; min-height: 420px; }
.about-wall {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.5;
  clip-path: polygon(8% 0, 100% 0, 100% 92%, 0 100%);
}
.about-visual::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(3,3,3,.7) 0%, transparent 50%, rgba(0,51,255,.15) 100%);
  clip-path: polygon(8% 0, 100% 0, 100% 92%, 0 100%);
}
.about-logo-wall {
  position: absolute; bottom: 24px; left: 24px; z-index: 2;
  width: min(180px, 40%); opacity: 0.9;
  filter: drop-shadow(0 0 24px var(--blue-glow));
}
.about-quote-block {
  position: absolute; top: 24px; right: -12px; z-index: 2;
  background: rgba(3,3,3,.88); border: 1px solid var(--orange-dim);
  padding: 20px 24px; max-width: 260px;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
}
.about-body { font-size: 15px; color: var(--w40); line-height: 1.8; max-width: 420px; }
.about-pills {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 28px;
}
.about-pill {
  background: var(--p2); border: 1px solid var(--border);
  padding: 14px 16px;
  font-family: 'Barlow Condensed', sans-serif; font-size: 12px;
  font-weight: 600; font-style: italic; letter-spacing: 0.04em;
  color: var(--w60); line-height: 1.35;
}
.grow-banner {
  margin-top: 48px; padding: 32px 40px;
  background: linear-gradient(135deg, var(--p2) 0%, var(--p1) 100%);
  border: 1px solid var(--border);
  border-left: 3px solid var(--blue);
  position: relative; overflow: hidden;
}
.grow-banner::before {
  content: ''; position: absolute; top: 0; right: 0;
  width: 40%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 51, 255, 0.08));
  transform: skewX(-12deg);
}
.grow-banner .wall-quote { color: var(--white); position: relative; z-index: 1; }

/* ── Programs ── */
.programs { background: var(--bg); }
.prog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; background: rgba(255,255,255,.03);
}
.prog-card {
  background: var(--p1); padding: 40px 32px 44px;
  position: relative; overflow: hidden;
  transition: background 0.3s, transform 0.3s var(--ease);
}
.prog-card:hover { background: var(--p2); transform: translateY(-4px); }
.prog-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  transform: scaleX(0); transform-origin: left; transition: transform 0.35s;
}
.prog-card:hover::before { transform: scaleX(1); }
.prog-card--feat {
  background: linear-gradient(180deg, #0a0c18 0%, var(--p1) 100%);
  border-top: 2px solid var(--blue);
}
.prog-badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--blue); color: var(--white);
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-size: 8px; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 5px 10px;
}
.prog-age {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--orange); border: 1px solid var(--orange-dim);
  display: inline-block; padding: 4px 10px; margin-bottom: 18px;
}
.prog-name { font-size: clamp(1.6rem, 2.5vw, 2.2rem); margin-bottom: 12px; }
.prog-tag { font-size: 14px; color: var(--w40); line-height: 1.6; margin-bottom: 20px; max-width: 280px; }
.prog-specs { display: flex; flex-direction: column; gap: 8px; }
.prog-spec {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Barlow Condensed', sans-serif; font-size: 11px;
  font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--w40);
}
.prog-spec::before {
  content: ''; width: 10px; height: 1px; background: var(--blue-hi);
  transition: width 0.24s;
}
.prog-card:hover .prog-spec::before { width: 18px; background: var(--orange); }

/* ── Athlete development ── */
.development { background: var(--p1); }
.dev-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px); align-items: center;
}
.dev-metrics { display: flex; flex-direction: column; gap: 20px; margin-top: 28px; }
.dev-metric-head {
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: 'Barlow Condensed', sans-serif; font-size: 12px;
  font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--w40); margin-bottom: 8px;
}
.dev-metric-pct { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 1.25rem; color: var(--blue-hi); }
.dev-bar {
  height: 4px; background: var(--p3); overflow: hidden;
}
.dev-bar-fill {
  height: 100%; width: 0; background: linear-gradient(90deg, var(--blue), var(--blue-hi));
  transition: width 1s var(--ease);
}
.dev-bar-fill.is-in { width: var(--w, 0); }
.dev-visual {
  position: relative; min-height: 400px;
  background: var(--p2); overflow: hidden;
}
.dev-visual img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.55;
}
.dev-visual-quote {
  position: absolute; bottom: 32px; left: 32px; right: 32px; z-index: 2;
}
.dev-pillars {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
  margin-top: 48px; background: rgba(255,255,255,.03);
}
.dev-pillar {
  background: var(--p2); padding: 28px 24px; text-align: center;
  border-top: 2px solid transparent; transition: border-color 0.25s, background 0.25s;
}
.dev-pillar:hover { background: var(--p3); border-top-color: var(--blue); }
.dev-pillar-n {
  font-family: 'Oswald', sans-serif; font-weight: 700;
  font-size: 2rem; color: var(--blue-hi); line-height: 1;
}
.dev-pillar-l {
  font-family: 'Barlow Condensed', sans-serif; font-size: 10px;
  font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--w40); margin-top: 8px;
}

/* ── Facility ── */
.facility { background: var(--bg); padding: 0; }
.facility-split {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 560px;
}
.facility-media {
  position: relative; overflow: hidden; background: var(--p1);
}
.facility-media img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.65;
}
.facility-media .ang-line { left: 48%; top: 0; bottom: 0; width: 3px; opacity: 0.5; }
.facility-content {
  padding: clamp(48px, 8vw, 80px) clamp(32px, 5vw, 60px);
  display: flex; flex-direction: column; justify-content: center;
}
.facility-rows { margin: 28px 0 36px; }
.facility-row {
  display: flex; gap: 16px; padding: 16px 0;
  border-bottom: 1px solid var(--border);
  transition: padding-left 0.3s;
}
.facility-row:hover { padding-left: 8px; }
.facility-row-n {
  font-family: 'Oswald', sans-serif; font-weight: 700;
  font-size: 1.25rem; color: rgba(0, 51, 255, 0.35); width: 28px;
}
.facility-row:hover .facility-row-n { color: var(--blue-hi); }
.facility-row-title {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-style: italic; font-size: 14px; letter-spacing: 0.06em;
  text-transform: uppercase; margin-bottom: 4px;
}
.facility-row-desc { font-size: 13px; color: var(--w40); line-height: 1.55; }

/* ── Store ── */
.store-hero {
  position: relative; min-height: 55vh; display: flex; align-items: center;
  overflow: hidden; background: var(--bg);
}
.store-hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(200deg, rgba(3,3,3,.92) 0%, rgba(3,3,3,.75) 100%),
    repeating-linear-gradient(-35deg, transparent, transparent 14px, rgba(224,140,36,.04) 14px, rgba(224,140,36,.04) 15px),
    radial-gradient(ellipse 80% 60% at 75% 30%, rgba(0, 51, 255, 0.12), transparent),
    linear-gradient(200deg, #060608, #030303);
}
.store-hero-inner {
  position: relative; z-index: 2; max-width: var(--max); margin: 0 auto;
  padding: calc(var(--nav-h) + 40px) clamp(24px, 5vw, 56px) 60px;
  width: 100%;
}
.store-hero h2 { font-size: clamp(3rem, 8vw, 6rem); margin: 12px 0; }
.store-hero h2 span { color: var(--orange); }
.store-nav {
  position: sticky; top: var(--nav-h); z-index: 100;
  background: rgba(3, 3, 3, 0.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.store-nav-inner {
  max-width: var(--max); margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 56px);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.store-tabs { display: flex; gap: 4px; overflow-x: auto; }
.store-tab {
  padding: 16px 18px; background: none; border: none;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--w40); position: relative; white-space: nowrap;
}
.store-tab::after {
  content: ''; position: absolute; bottom: 0; left: 14px; right: 14px;
  height: 2px; background: var(--orange);
  transform: scaleX(0); transition: transform 0.22s;
}
.store-tab:hover, .store-tab.on { color: var(--orange); }
.store-tab.on::after { transform: scaleX(1); }
.store-sort {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Barlow Condensed', sans-serif; font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--w40);
}
.store-sort select {
  background: var(--p2); border: 1px solid var(--border);
  color: var(--white); padding: 8px 12px;
  font-family: inherit; font-size: 11px;
}
.product-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px; background: rgba(255,255,255,.03);
}
.product-card {
  background: var(--p1); display: flex; flex-direction: column;
  transition: background 0.3s, transform 0.35s var(--ease);
  overflow: hidden;
}
.product-card:hover {
  background: var(--p2); transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,.4);
}
.product-img-wrap {
  position: relative; aspect-ratio: 1; overflow: hidden;
  background: var(--p2);
}
.product-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.55s var(--ease);
}
.product-card:hover .product-img-wrap img { transform: scale(1.06); }
.product-img-placeholder {
  position: absolute; inset: 0;
  background: linear-gradient(145deg, var(--p2), var(--p3));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Oswald', sans-serif; font-weight: 700;
  font-size: 1.5rem; color: var(--w20); letter-spacing: 0.1em;
}
.product-badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-size: 8px; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 5px 10px; background: var(--orange); color: var(--bg);
}
.product-badge.bnew { background: var(--blue); color: var(--white); }
.product-badge.blimited { background: var(--p4); color: var(--orange); border: 1px solid var(--orange-dim); }
.product-qa {
  position: absolute; inset: 0; background: rgba(3,3,3,.75);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.product-card:hover .product-qa { opacity: 1; }
.product-info { padding: 18px 20px 22px; flex: 1; display: flex; flex-direction: column; }
.product-cat {
  font-family: 'Barlow Condensed', sans-serif; font-size: 9px;
  font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--blue-hi); margin-bottom: 6px;
}
.product-name {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
  font-style: italic; font-size: 1.15rem; text-transform: uppercase;
  line-height: 1.05; margin-bottom: 6px;
}
.product-desc { font-size: 12px; color: var(--w40); line-height: 1.5; flex: 1; }
.product-foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 14px;
}
.product-price {
  font-family: 'Oswald', sans-serif; font-weight: 700;
  font-size: 1.35rem; color: var(--orange);
}
.product-view {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--w40); background: none; border: none;
  transition: color 0.2s;
}
.product-card:hover .product-view { color: var(--blue-hi); }

/* ── CTA ── */
.cta {
  position: relative; overflow: hidden;
  padding: var(--section-y) clamp(24px, 5vw, 56px);
  text-align: center;
}
.cta-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.72) 0%, rgba(14, 14, 14, 0.92) 100%),
    radial-gradient(ellipse 90% 70% at 50% 0%, rgba(0, 174, 239, 0.1), transparent 55%),
    linear-gradient(180deg, #0c0c0c, #121212);
}
.cta-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.cta-pre {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 12px;
}
.cta-title { font-size: clamp(2.5rem, 7vw, 4.5rem); margin-bottom: 8px; }
.cta-sub {
  font-family: 'Barlow Condensed', sans-serif; font-style: italic;
  font-size: 1rem; letter-spacing: 0.12em; color: var(--w40);
  margin-bottom: 28px;
}
.cta-acts { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.cta-quote {
  margin-top: 36px; font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-style: italic; font-size: 13px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--w40);
}
.cta-quote em { color: var(--orange); font-style: normal; }

/* ── Footer ── */
.footer-founder {
  background: var(--p1); border-top: 1px solid var(--border);
  padding: 20px clamp(24px, 5vw, 56px);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-founder-name {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-style: italic; font-size: 14px; letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer-founder-name span { color: var(--w40); font-weight: 600; }
.footer-tel {
  font-family: 'Oswald', sans-serif; font-weight: 700;
  font-size: 1.25rem; color: var(--blue-hi);
  transition: color 0.2s;
}
.footer-tel:hover { color: var(--orange); }
.footer {
  background: var(--charcoal); padding: 40px clamp(20px, 5vw, 48px) 0;
  border-top: 1px solid var(--border);
}
.footer-grid {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1.35fr 0.85fr 1.15fr;
  gap: 48px; padding-bottom: 48px;
}
.footer-brand-words { display: flex; align-items: baseline; gap: 4px; }
.footer-brand-iron {
  font-family: 'Oswald', sans-serif; font-weight: 700;
  font-size: 1.5rem; color: var(--blue-hi);
}
.footer-brand-elite {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
  font-style: italic; font-size: 1.5rem;
}
.footer-rule { width: 100%; height: 1px; background: var(--border); margin: 14px 0; }
.footer-tag {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 8px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--orange);
}
.footer-about { font-size: 13px; color: var(--w40); line-height: 1.65; margin-top: 14px; max-width: 280px; }
.footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.footer-social {
  width: 36px; height: 36px; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-size: 10px; color: var(--w40);
  transition: border-color 0.22s, color 0.22s, box-shadow 0.22s;
}
.footer-social__icon {
  display: block;
  width: 16px;
  height: 16px;
}
.footer-social:hover {
  border-color: var(--blue-hi); color: var(--white);
  box-shadow: 0 0 16px var(--blue-glow);
}
.footer-col-title {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--white); margin-bottom: 16px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 13px; color: var(--w40); transition: color 0.2s;
}
.footer-links a:hover { color: var(--orange-hi); }
.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding: 20px clamp(20px, 5vw, 48px) 0;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.footer-bottom__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  width: 100%;
  min-width: 0;
  padding-bottom: 4px;
}

.footer-bottom__copy {
  display: flex;
  flex-direction: column;
  gap: 9px;
  min-width: 0;
}

.footer-photo-credit {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  color: var(--w20);
  white-space: nowrap;
}

.footer-photo-credit a {
  color: var(--w40);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-photo-credit a:hover {
  color: var(--orange);
}

.footer-copyright-line {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  min-width: 0;
  max-width: 100%;
  font-size: 12px;
  color: var(--w40);
  white-space: nowrap;
}

.footer-legal { display: flex; gap: 20px; margin: 0; padding: 0; list-style: none; }
.footer-legal a { font-size: 12px; color: var(--w40); }
.footer-legal a:hover { color: var(--white); }

.jw-inline {
  font-size: 0.92em;
  letter-spacing: 0.03em;
  color: rgba(140, 145, 155, 0.32);
  opacity: 0.4;
  white-space: nowrap;
  flex-shrink: 0;
  cursor: default;
  user-select: none;
  transition: opacity 250ms ease;
}

.jw-inline .jw-cross {
  color: rgba(190, 135, 40, 0.24);
}

.jw-inline:hover {
  opacity: 0.55;
}

@media (max-width: 768px) {
  .footer-bottom__meta {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-bottom__copy {
    align-items: center;
  }

  .footer-photo-credit {
    white-space: normal;
  }

  .footer-copyright-line {
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px 6px;
    font-size: 11px;
    line-height: 1.45;
    white-space: normal;
    text-align: center;
  }

  .jw-inline {
    font-size: 0.88em;
    white-space: nowrap;
  }
}

/* ── Cart / modal / toast ── */
.overlay {
  position: fixed; inset: 0; z-index: 1200;
  background: rgba(0,0,0,.65); opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.overlay.open { opacity: 1; pointer-events: auto; }
.cart-panel {
  position: fixed; top: 0; right: 0; z-index: 1300;
  width: min(400px, 100vw); height: 100%;
  background: var(--p1); border-left: 1px solid var(--border-hi);
  transform: translateX(100%); transition: transform 0.35s var(--ease);
  display: flex; flex-direction: column;
}
.cart-panel.open { transform: translateX(0); }
.cart-head {
  padding: 24px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.cart-head h2 {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
  font-style: italic; font-size: 1.25rem; text-transform: uppercase;
}
.cart-close {
  width: 40px; height: 40px; border: 1px solid var(--border);
  background: transparent; color: var(--w60); font-size: 1.25rem;
}
.cart-items { flex: 1; overflow-y: auto; padding: 16px 24px; }
.cart-empty { text-align: center; color: var(--w40); padding: 40px 0; font-size: 14px; }
.cart-item {
  display: grid; grid-template-columns: 64px 1fr auto;
  gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--border);
}
.cart-item img { width: 64px; height: 64px; object-fit: cover; border: 1px solid var(--border); }
.cart-item-name {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 13px; text-transform: uppercase;
}
.cart-item-meta { font-size: 12px; color: var(--w40); margin-top: 4px; }
.cart-item-rm {
  background: none; border: none; color: var(--w40);
  font-size: 11px; text-decoration: underline; margin-top: 6px; padding: 0;
}
.cart-item-rm:hover { color: var(--orange); }
.cart-item-price {
  font-family: 'Oswald', sans-serif; font-weight: 700; color: var(--orange);
}
.cart-foot {
  padding: 24px; border-top: 1px solid var(--border);
}
.cart-total-row {
  display: flex; justify-content: space-between; margin-bottom: 16px;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.cart-total-amt { font-family: 'Oswald', sans-serif; font-size: 1.5rem; color: var(--orange); }
.modal {
  position: fixed; inset: 0; z-index: 1400;
  display: flex; align-items: center; justify-content: center;
  padding: 24px; pointer-events: none; opacity: 0;
  transition: opacity 0.3s;
}
.modal.open { pointer-events: auto; opacity: 1; }
.modal-bg {
  position: absolute; inset: 0; background: rgba(0,0,0,.8);
}
.modal-box {
  position: relative; width: min(920px, 100%);
  max-height: 90vh; overflow-y: auto;
  background: var(--p1); border: 1px solid var(--border-hi);
  display: grid; grid-template-columns: 1fr 1fr;
  transform: translateY(20px); transition: transform 0.35s var(--ease);
}
.modal.open .modal-box { transform: translateY(0); }
.modal-img {
  background: var(--p2); min-height: 320px; position: relative;
}
.modal-img img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.modal-body { padding: 36px 32px; }
.modal-close {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  width: 40px; height: 40px; border: 1px solid var(--border);
  background: rgba(3,3,3,.8); color: var(--white);
}
.modal-cat {
  font-family: 'Barlow Condensed', sans-serif; font-size: 10px;
  font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--blue-hi); margin-bottom: 8px;
}
.modal-name {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
  font-style: italic; font-size: 1.75rem; text-transform: uppercase;
  margin-bottom: 8px;
}
.modal-price {
  font-family: 'Oswald', sans-serif; font-weight: 700;
  font-size: 1.75rem; color: var(--orange); margin-bottom: 16px;
}
.modal-desc { font-size: 14px; color: var(--w40); line-height: 1.65; margin-bottom: 20px; }
.modal-bullets { margin-bottom: 20px; }
.modal-blt {
  font-size: 13px; color: var(--w60); padding: 6px 0 6px 16px;
  position: relative;
}
.modal-blt::before {
  content: ''; position: absolute; left: 0; top: 50%;
  width: 6px; height: 1px; background: var(--orange);
}
.sizes { margin-bottom: 20px; }
.sizes-label {
  font-family: 'Barlow Condensed', sans-serif; font-size: 10px;
  font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--w40); margin-bottom: 10px;
}
.sizes-btns { display: flex; flex-wrap: wrap; gap: 8px; }
.size-btn {
  min-width: 44px; height: 40px; padding: 0 12px;
  border: 1px solid var(--border); background: transparent;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 12px; color: var(--w60);
  transition: border-color 0.2s, color 0.2s;
}
.size-btn.on, .size-btn:hover { border-color: var(--blue-hi); color: var(--white); }
.qty-row {
  display: flex; align-items: center; gap: 16px; margin-bottom: 24px;
}
.qty-label {
  font-family: 'Barlow Condensed', sans-serif; font-size: 10px;
  font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--w40);
}
.qty-ctrl {
  display: flex; align-items: center; border: 1px solid var(--border);
}
.qty-btn {
  width: 40px; height: 40px; background: transparent; border: none;
  color: var(--w60); font-size: 1.1rem;
}
.qty-val {
  width: 48px; text-align: center;
  font-family: 'Oswald', sans-serif; font-weight: 700;
}
.toast {
  position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(80px);
  z-index: 2000; background: var(--p2); border: 1px solid var(--blue);
  padding: 14px 28px; opacity: 0; transition: transform 0.4s var(--ease), opacity 0.4s;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  box-shadow: 0 12px 40px rgba(0,0,0,.5), 0 0 24px var(--blue-glow);
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

/* ── PDF wall graphic hero (page 3) ── */
.hero--wall .hero-layout {
  position: relative;
  z-index: 3;
  flex: 1;
  min-height: 0;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  align-content: center;
  gap: 0;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  padding: calc(var(--nav-h) + 6px) clamp(20px, 5vw, 40px) 28px;
  box-sizing: border-box;
}
.hero--wall .hero-inner { padding: 0; }
.hero-ang { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.ang-lines .ang-line--1 { left: 54%; top: 0; bottom: 0; width: 3px; opacity: 0.75; }
.ang-lines .ang-line--2 { left: 58%; top: 0; bottom: 0; width: 1px; opacity: 0.4; }
.ang-lines .ang-line--3 { right: 18%; top: 15%; bottom: 20%; width: 2px; transform: skewX(8deg); opacity: 0.55; }
.hero-wall-panel {
  position: relative; overflow: hidden;
  min-height: clamp(320px, 45vh, 520px);
  border: 1px solid var(--border-hi);
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  box-shadow: 0 0 60px var(--blue-glow), inset 0 0 80px rgba(0, 51, 255, 0.06);
}
.hero-wall-panel__bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.85;
}
.hero-wall-panel__content {
  position: relative; z-index: 2; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 32px 24px; text-align: center;
  background: linear-gradient(180deg, rgba(3,3,3,.25) 0%, rgba(3,3,3,.55) 100%);
}
.hero-wall-shield {
  filter: drop-shadow(0 0 28px var(--blue-glow)) drop-shadow(0 0 12px var(--orange-dim));
  margin-bottom: 24px;
}
.pdf-quote {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-style: italic;
  text-transform: uppercase; line-height: 1.05; letter-spacing: 0.08em;
}
.pdf-quote__line { display: block; font-size: clamp(1rem, 2vw, 1.35rem); color: var(--white); }
.pdf-quote__line--accent { color: var(--orange); margin-top: 6px; }
.hero-stats--inline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: clamp(10px, 1.5vh, 16px);
}
.hero-stats--inline .hero-stat {
  position: static;
  transform: none;
  min-width: auto;
  flex: 1 1 auto;
  min-width: 100px;
  padding: 10px 14px;
}
.hero-stats--inline .hero-stat-n {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}
.hero-stats--inline .hero-stat-l {
  font-size: 8px;
  margin-top: 2px;
}

/* ── Wallpaper strip (page 4) ── */
.wallpaper {
  position: relative; height: clamp(120px, 18vw, 200px); overflow: hidden;
  border-block: 1px solid var(--border);
}
.wallpaper__img { width: 100%; height: 100%; object-fit: cover; opacity: 0.7; }
.wallpaper__fade {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--bg) 0%, transparent 15%, transparent 85%, var(--bg) 100%);
}

/* ── Athlete collage (pages 6–7) ── */
.collage {
  background: var(--bg); padding-bottom: 0; position: relative;
}
.collage::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: 0.08;
  background: repeating-linear-gradient(
    -35deg, transparent, transparent 20px,
    rgba(224, 140, 36, 0.03) 20px, rgba(224, 140, 36, 0.03) 21px
  );
}
.collage__head { padding-top: var(--section-y); padding-bottom: 2rem; }
.dim-type {
  text-shadow:
    2px 2px 0 rgba(0, 51, 255, 0.35),
    0 0 40px var(--blue-glow);
}
.collage-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 3px; background: rgba(255,255,255,.04);
  max-width: var(--max); margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 56px);
}
.collage-cell {
  position: relative; overflow: hidden; aspect-ratio: 3/4; margin: 0;
  transition: transform 0.45s var(--ease);
}
.collage-cell:hover { transform: scale(1.03); z-index: 2; }
.collage-cell img,
.collage-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.55s var(--ease), opacity 0.3s;
}
.collage-img--a { object-position: 12% 35%; }
.collage-img--b { object-position: 42% 40%; }
.collage-img--c { object-position: 68% 30%; }
.collage-img--d { object-position: 88% 45%; }
.collage__wide { object-position: center 40%; }
.collage-cell:hover img { transform: scale(1.06); opacity: 0.95; }
.collage-cell--feat { grid-column: span 1; border: 1px solid var(--orange-dim); }
.collage-cell figcaption {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 12px 14px;
  background: linear-gradient(to top, rgba(3,3,3,.92), transparent);
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--orange);
}
.collage__closeup { padding: clamp(32px, 5vw, 56px) clamp(24px, 5vw, 56px) var(--section-y); }
.collage__wide {
  width: 100%; max-height: 420px; object-fit: cover;
  border: 1px solid var(--border-hi);
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
  box-shadow: 0 24px 60px rgba(0,0,0,.5);
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .hero--wall .hero-layout { grid-template-columns: 1fr; }
  .hero-wall-panel { min-height: 280px; order: -1; }
  .collage-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .nav-links, .nav-actions .btn--accent { display: none; }
  .nav-toggle { display: flex; align-items: center; justify-content: center; }
  .hero-stats--inline { flex-direction: column; }
  .about-grid, .dev-grid, .facility-split, .footer-grid { grid-template-columns: 1fr; }
  .prog-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .about-pills, .dev-pillars { grid-template-columns: 1fr; }
  .modal-box { grid-template-columns: 1fr; }
  .facility-media { min-height: 320px; }
}
@media (max-width: 640px) {
  .product-grid { grid-template-columns: 1fr; }
  .hero-acts { flex-direction: column; }
  .hero-acts .btn { width: 100%; justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reveal-stagger, .hero-glow, .ang-sweep, .ticker-track, #hero-particles { animation: none !important; transition: none !important; }
  .reveal, .reveal-stagger, .reveal-stagger > * { opacity: 1; transform: none; }
}

/* Header logo — targeted size override (wins over global img + legacy .site-logo) */
.nav-logo.header-logo-link,
.header-logo-link {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  width: auto !important;
  min-width: 0 !important;
  max-width: clamp(240px, 28vw, 280px) !important;
  height: 64px !important;
  max-height: 64px !important;
  overflow: visible !important;
  flex: 0 0 auto !important;
}

.header-logo-image {
  display: block !important;
  width: auto !important;
  max-width: clamp(240px, 28vw, 280px) !important;
  height: auto !important;
  max-height: 72px !important;
  object-fit: contain !important;
  object-position: left center;
  animation: none !important;
  transform: none !important;
  filter: none !important;
}

@media (min-width: 901px) {
  body.home-premium .nav--premium {
    display: grid !important;
    grid-template-columns: clamp(240px, 28vw, 280px) 1fr auto;
    align-items: center;
    column-gap: clamp(12px, 2vw, 24px);
  }

  body.home-premium .nav--premium .nav-logo.header-logo-link {
    justify-self: start;
    min-width: 0;
  }

  body.home-premium .nav--premium .nav-links {
    justify-self: center;
    justify-content: center;
    min-width: 0;
    gap: clamp(14px, 2vw, 28px);
  }

  body.home-premium .nav--premium .nav-actions {
    justify-self: end;
    min-width: 0;
  }
}

@media (max-width: 768px) {
  .nav-logo.header-logo-link,
  .header-logo-link {
    width: 160px !important;
    max-width: 160px !important;
    height: 58px !important;
    max-height: 58px !important;
  }

  .header-logo-image {
    width: auto !important;
    max-width: 100% !important;
    max-height: 58px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav-logo.header-logo-link,
  .header-logo-link {
    animation: none !important;
    transform: none !important;
  }
}
