/* ============================================================
   QUACKTORY · design: into-the-storm
   cinematic · military-precise · one accent does the work
   ============================================================ */

:root {
  --bg:      #2D3744;
  --fg:      #FFFFFF;
  --accent:  #F4B81E;
  --muted:   #B4C3CE;
  --ink:     #1B232C;
  --surface: #3A4453;
  --grid:    rgba(180,195,206,0.10);
  --line:    rgba(180,195,206,0.18);
  --line-hi: rgba(180,195,206,0.45);
}

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

html, body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Source Sans 3', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }
button { background: none; border: 0; color: inherit; font: inherit; cursor: pointer; }

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

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--accent); color: var(--ink);
  padding: 10px 18px; font-family: 'Anton', sans-serif;
  letter-spacing: 0.18em; font-size: 12px;
  z-index: 999;
}
.skip:focus { left: 16px; top: 16px; }

/* ============================================================
   TOPBAR — fixed, transparent, minimal
   ============================================================ */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 38px;
  background: linear-gradient(180deg, rgba(27,35,44,0.72) 0%, rgba(27,35,44,0) 100%);
  pointer-events: none;
}
.topbar > * { pointer-events: auto; }

.wordmark {
  font-family: 'Anton', sans-serif;
  font-size: 18px;
  letter-spacing: 0.20em;
  color: var(--fg);
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1;
  display: inline-block;
}
.wordmark--lg { font-size: 26px; letter-spacing: 0.22em; }

.nav-rail {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-rail a {
  font-family: 'Anton', sans-serif;
  font-size: 12px;
  letter-spacing: 0.20em;
  color: rgba(255,255,255,0.78);
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
  transition: color 0.25s;
}
.nav-rail a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.nav-rail a:hover { color: var(--fg); }
.nav-rail a:hover::after { transform: scaleX(1); }

.audio-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.65);
  transition: color 0.25s;
  padding: 4px 0;
}
.audio-toggle:hover { color: var(--accent); }
.audio-toggle svg {
  fill: currentColor;
  animation: equalizer 1.6s ease-in-out infinite;
}
@keyframes equalizer {
  0%, 100% { transform: scaleY(0.7); }
  50%      { transform: scaleY(1.1); }
}
.audio-label {
  font-family: 'Anton', sans-serif;
  font-size: 11px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
}

/* ============================================================
   HERO — cinematic dark, centered headline stack
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--ink);
}

.hero-media {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: contrast(1.05) brightness(0.78) saturate(0.55);
  animation: heroZoom 22s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.12); }
}
.hero-wash {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg,
      rgba(45,55,68,0.55) 0%,
      rgba(45,55,68,0.30) 40%,
      rgba(27,35,44,0.92) 100%),
    radial-gradient(ellipse at center, rgba(180,195,206,0.10) 0%, transparent 60%);
  mix-blend-mode: multiply;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(180,195,206,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(180,195,206,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  opacity: 0.6;
}
.hero-particles {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(1px 1px at 12% 22%, rgba(255,255,255,0.55), transparent 60%),
    radial-gradient(1px 1px at 28% 64%, rgba(255,255,255,0.40), transparent 60%),
    radial-gradient(1.5px 1.5px at 44% 14%, rgba(255,255,255,0.60), transparent 60%),
    radial-gradient(1px 1px at 60% 78%, rgba(255,255,255,0.45), transparent 60%),
    radial-gradient(1px 1px at 76% 30%, rgba(255,255,255,0.55), transparent 60%),
    radial-gradient(1px 1px at 88% 60%, rgba(255,255,255,0.40), transparent 60%),
    radial-gradient(1px 1px at 20% 88%, rgba(255,255,255,0.50), transparent 60%),
    radial-gradient(1px 1px at 52% 48%, rgba(255,255,255,0.35), transparent 60%),
    radial-gradient(1px 1px at 96% 18%, rgba(255,255,255,0.55), transparent 60%),
    radial-gradient(1px 1px at 36% 38%, rgba(255,255,255,0.45), transparent 60%);
  background-size: 240% 240%;
  animation: drift 70s linear infinite;
  opacity: 0.7;
}
@keyframes drift {
  from { background-position: 0 0; }
  to   { background-position: 240% 240%; }
}
.hero-flare {
  position: absolute;
  top: 8%; right: 12%;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(217,230,239,0.18) 0%, rgba(217,230,239,0) 70%);
  filter: blur(10px);
  transform: rotate(-25deg);
  pointer-events: none;
}

.hero-stack {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
  max-width: 920px;
}

.hero-rule {
  width: 1px;
  height: 90px;
  background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.7) 50%, transparent 100%);
  margin-bottom: 30px;
  opacity: 0;
  animation: ruleGrow 1.2s cubic-bezier(0.2,0.7,0.2,1) 0.2s forwards;
}
@keyframes ruleGrow {
  from { opacity: 0; transform: scaleY(0); }
  to   { opacity: 1; transform: scaleY(1); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Anton', sans-serif;
  font-size: 11px;
  letter-spacing: 0.30em;
  color: var(--fg);
  background: var(--ink);
  padding: 9px 20px 9px 14px;
  text-transform: uppercase;
  margin-bottom: 28px;
  border: 1px solid rgba(180,195,206,0.18);
  opacity: 0;
  animation: fadeUp 0.9s ease 0.5s forwards;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 8px 2px var(--accent);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.4; }
}

.hero-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(54px, 10.5vw, 128px);
  line-height: 0.88;
  letter-spacing: 0.005em;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--fg);
  margin-bottom: 26px;
  text-shadow: 0 4px 40px rgba(0,0,0,0.45);
  opacity: 0;
  animation: fadeUp 1.1s cubic-bezier(0.2,0.7,0.2,1) 0.7s forwards;
}

.hero-sub {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 14px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.86);
  max-width: 600px;
  margin-bottom: 44px;
  font-weight: 400;
  line-height: 1.6;
  opacity: 0;
  animation: fadeUp 1s ease 1.0s forwards;
}

.hero-cta {
  display: inline-block;
  font-family: 'Anton', sans-serif;
  font-size: 13px;
  letter-spacing: 0.24em;
  background: var(--accent);
  color: var(--ink);
  padding: 19px 44px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.3s ease;
  opacity: 0;
  animation: fadeUp 1s ease 1.25s forwards;
}
.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(244,184,30,0.42);
}
.hero-cta::before {
  content: '';
  position: absolute;
  top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: skewX(-22deg);
  transition: left 0.7s ease;
}
.hero-cta:hover::before { left: 130%; }
.hero-cta--sm { padding: 14px 28px; font-size: 12px; letter-spacing: 0.20em; }

.hero-credit {
  margin-top: 32px;
  font-family: 'Anton', sans-serif;
  font-size: 10px;
  letter-spacing: 0.30em;
  color: rgba(255,255,255,0.40);
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 1s ease 1.5s forwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: 'Anton', sans-serif;
  font-size: 10px;
  letter-spacing: 0.32em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  transition: color 0.25s;
}
.hero-scroll:hover { color: var(--accent); }
.hero-scroll svg { animation: bobDown 2.4s ease-in-out infinite; }
@keyframes bobDown {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(6px); }
}

/* ============================================================
   MANIFESTO CARD
   ============================================================ */
.manifesto {
  padding: 140px 24px;
  display: flex;
  justify-content: center;
  background: linear-gradient(180deg, var(--bg) 0%, #25303C 50%, var(--bg) 100%);
  position: relative;
}
.manifesto::before {
  content: '';
  position: absolute;
  top: 70px; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 40px;
  background: var(--accent);
}
.manifesto::after {
  content: 'MANIFESTO';
  position: absolute;
  top: 36px; left: 50%;
  transform: translateX(-50%);
  font-family: 'Anton', sans-serif;
  font-size: 10px;
  letter-spacing: 0.32em;
  color: var(--accent);
}

.quote-card {
  max-width: 560px;
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--line);
  position: relative;
  animation: cardIn 1.1s cubic-bezier(0.2,0.7,0.2,1) 0.3s both;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}
@keyframes cardIn {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.quote-card::before,
.quote-card::after {
  content: '';
  position: absolute;
  width: 18px; height: 18px;
  border: 1px solid var(--accent);
}
.quote-card::before { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.quote-card::after  { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }

.quote-tag {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 28px;
  border-bottom: 1px solid var(--line);
}
.quote-tag-num {
  font-family: 'Anton', sans-serif;
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--accent);
}
.quote-tag-line {
  font-family: 'Anton', sans-serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--muted);
}

.quote-media {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--ink);
}
.quote-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.08) saturate(0.65) brightness(0.78);
}
.waveform {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0.85;
}
.waveform svg {
  width: 90%; height: 88%;
  animation: waveSlide 14s linear infinite;
}
@keyframes waveSlide {
  from { transform: translateX(0); }
  to   { transform: translateX(-1.5%); }
}
.quote-corner {
  position: absolute;
  top: 14px; left: 14px;
  font-family: 'Anton', sans-serif;
  font-size: 10px;
  letter-spacing: 0.24em;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(27,35,44,0.65);
  padding: 4px 8px;
  border: 1px solid rgba(244,184,30,0.4);
}

.quote-text {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding: 44px 44px 14px;
  color: var(--fg);
}
.quote-attr {
  text-align: center;
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 26px;
  font-style: italic;
  letter-spacing: 0.02em;
}
.quote-divider {
  width: 1px;
  height: 30px;
  background: linear-gradient(180deg, var(--line) 0%, var(--accent) 50%, var(--line) 100%);
  margin: 0 auto 18px;
}
.quote-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding-bottom: 28px;
}
.quote-action-label {
  font-family: 'Anton', sans-serif;
  font-size: 11px;
  letter-spacing: 0.26em;
  color: var(--muted);
}
.close-btn {
  width: 30px; height: 30px;
  background: var(--ink);
  color: var(--fg);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(168,196,214,0.25);
  transition: all 0.2s;
}
.close-btn:hover {
  background: var(--accent);
  color: var(--ink);
  border-color: var(--accent);
}

/* ============================================================
   SECTION HEAD (shared)
   ============================================================ */
.section-head {
  max-width: 1200px;
  margin: 0 auto 64px;
  padding: 0 24px;
  text-align: center;
  position: relative;
}
.eyebrow {
  display: inline-block;
  font-family: 'Anton', sans-serif;
  font-size: 12px;
  letter-spacing: 0.34em;
  color: var(--accent);
  margin-bottom: 26px;
  text-transform: uppercase;
  position: relative;
  padding-left: 38px;
}
.eyebrow::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 28px; height: 1px;
  background: var(--accent);
}
.eyebrow--inline { padding-left: 0; margin-bottom: 14px; }
.eyebrow--inline::before { display: none; }

.section-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(40px, 6.5vw, 84px);
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 22px;
  font-weight: 400;
  letter-spacing: 0.005em;
}
.section-lede {
  font-size: 16px;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ============================================================
   LINEUP — 5 SKUs, per-item under-glow, scale bar
   ============================================================ */
.lineup {
  padding: 130px 0 110px;
  background: var(--bg);
  position: relative;
}
.lineup::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-hi), transparent);
}

.lineup-rail {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 24px;
}

.sku {
  position: relative;
  padding: 28px 18px 24px;
  cursor: pointer;
  border-right: 1px solid var(--line);
  transition: background 0.35s ease;
  outline: none;
}
.sku:last-child { border-right: 0; }
.sku:focus-visible { background: rgba(58,68,83,0.55); }
.sku:hover { background: rgba(58,68,83,0.45); }

.sku-glow {
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: 70%;
  height: 3px;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 0.45s cubic-bezier(0.2,0.7,0.2,1), box-shadow 0.45s;
  pointer-events: none;
}
.sku:hover .sku-glow,
.sku:focus-visible .sku-glow {
  transform: translateX(-50%) scaleX(1);
}

.sku[data-sku="micro"]     .sku-glow { background: #F4B81E; }
.sku[data-sku="classic"]   .sku-glow { background: #B4C3CE; }
.sku[data-sku="designer"]  .sku-glow { background: #D97757; }
.sku[data-sku="mega"]      .sku-glow { background: #7A8B5C; }
.sku[data-sku="architect"] .sku-glow { background: #FFFFFF; }

.sku:hover[data-sku="micro"]     .sku-glow { box-shadow: 0 0 28px 3px rgba(244,184,30,0.55); }
.sku:hover[data-sku="classic"]   .sku-glow { box-shadow: 0 0 28px 3px rgba(180,195,206,0.40); }
.sku:hover[data-sku="designer"]  .sku-glow { box-shadow: 0 0 28px 3px rgba(217,119,87,0.50); }
.sku:hover[data-sku="mega"]      .sku-glow { box-shadow: 0 0 28px 3px rgba(122,139,92,0.50); }
.sku:hover[data-sku="architect"] .sku-glow { box-shadow: 0 0 28px 3px rgba(255,255,255,0.45); }

.sku-frame {
  aspect-ratio: 1;
  background:
    radial-gradient(circle at 30% 30%, rgba(180,195,206,0.06) 0%, transparent 60%),
    var(--ink);
  margin-bottom: 22px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  transition: border-color 0.3s, transform 0.4s;
}
.sku-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.4) 100%);
  pointer-events: none;
}
.sku-frame img {
  max-width: 78%;
  max-height: 78%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(0,0,0,0.4));
  transition: transform 0.5s cubic-bezier(0.2,0.7,0.2,1);
}
.sku:hover .sku-frame { border-color: var(--line-hi); }
.sku:hover .sku-frame img { transform: scale(1.08) translateY(-4px); }

.sku-tag { display: flex; flex-direction: column; gap: 3px; text-align: left; }
.sku-num {
  font-family: 'Anton', sans-serif;
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--muted);
  margin-bottom: 8px;
}
.sku-name {
  font-family: 'Anton', sans-serif;
  font-size: 19px;
  letter-spacing: 0.10em;
  color: var(--fg);
  margin-bottom: 10px;
  font-weight: 400;
}
.sku-size {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 14px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 4px;
  letter-spacing: 0.01em;
}
.sku-meta {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.45;
  margin-bottom: 10px;
}
.sku-price {
  font-family: 'Anton', sans-serif;
  font-size: 14px;
  color: var(--fg);
  letter-spacing: 0.04em;
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}
.sku-price em {
  font-style: normal;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.sku-shipping {
  font-family: 'Anton', sans-serif;
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--muted);
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px dashed var(--line);
  display: inline-block;
  align-self: flex-start;
}

/* SCALE BAR — 4 cm → 3 m */
.lineup-scale {
  position: relative;
  max-width: 1400px;
  margin: 90px auto 0;
  padding: 0 24px;
  height: 70px;
}
.scale-bar {
  position: absolute;
  left: 24px; right: 24px;
  top: 8px;
  height: 1px;
  background: rgba(180,195,206,0.22);
}
.scale-bar-fill {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    var(--accent) 0%,
    #D97757 30%,
    #B4C3CE 55%,
    #7A8B5C 80%,
    var(--fg) 100%);
  height: 100%;
  transform-origin: left;
  animation: scaleFill 2.4s cubic-bezier(0.2,0.7,0.2,1) 0.6s both;
}
@keyframes scaleFill {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
.scale-tick {
  position: absolute;
  top: 0;
  left: calc(24px + (100% - 48px) * var(--p) / 100);
  transform: translateX(-50%);
  font-family: 'Anton', sans-serif;
  font-size: 11px;
  letter-spacing: 0.20em;
  color: var(--muted);
  padding-top: 24px;
  text-align: center;
  width: 60px;
  margin-left: -30px;
}
.scale-tick::before {
  content: '';
  position: absolute;
  top: -3px; left: 50%;
  transform: translateX(-50%);
  width: 8px; height: 8px;
  background: var(--muted);
  border-radius: 50%;
  border: 2px solid var(--bg);
  box-sizing: content-box;
}
.scale-tick:nth-child(2)::before { background: var(--accent); box-shadow: 0 0 12px 2px var(--accent); border-color: var(--accent); }
.scale-tick:nth-child(6)::before { background: var(--fg); box-shadow: 0 0 12px 2px var(--fg); border-color: var(--fg); }
.scale-tick:nth-child(6) { color: var(--fg); font-size: 12px; }
.scale-tick:nth-child(2) { color: var(--accent); }

/* ============================================================
   PRODUCTION — 2x2 grid of how-we-make cards
   ============================================================ */
.production {
  padding: 130px 0;
  background: linear-gradient(180deg, var(--bg) 0%, #232C37 100%);
  position: relative;
}
.production::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-hi), transparent);
}
.production-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.prod-card {
  padding: 40px 36px;
  border: 1px solid var(--line);
  margin: -1px 0 0 -1px;
  position: relative;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
  background: rgba(58,68,83,0.18);
}
.prod-card:hover {
  background: rgba(58,68,83,0.55);
  border-color: var(--accent);
  z-index: 1;
  transform: translateY(-2px);
}
.prod-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.4s;
}
.prod-card:hover::before { width: 100%; }
.prod-num {
  font-family: 'Anton', sans-serif;
  font-size: 11px;
  letter-spacing: 0.26em;
  color: var(--accent);
  display: block;
  margin-bottom: 18px;
}
.prod-h {
  font-family: 'Anton', sans-serif;
  font-size: 22px;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  text-transform: uppercase;
  font-weight: 400;
}
.prod-card p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--muted);
}

/* ============================================================
   B2B / CUSTOM
   ============================================================ */
.b2b {
  padding: 130px 0 110px;
  background: var(--bg);
  position: relative;
}
.b2b::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-hi), transparent);
}

.b2b-palette {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0;
  max-width: 1200px;
  margin: 0 auto 50px;
  padding: 0 24px;
  border-top: 1px solid var(--line-hi);
  border-bottom: 1px solid var(--line-hi);
}
.swatch {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s;
  cursor: pointer;
  border-right: 1px solid rgba(27,35,44,0.35);
  overflow: hidden;
}
.swatch:last-child { border-right: 0; }
.swatch::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.35) 100%);
  pointer-events: none;
}
.swatch:hover {
  transform: scale(1.06);
  z-index: 3;
  box-shadow: 0 0 0 2px var(--bg), 0 0 0 3px var(--accent);
}
.swatch span {
  position: relative;
  z-index: 1;
  font-family: 'Anton', sans-serif;
  font-size: 10px;
  letter-spacing: 0.22em;
  color: rgba(27,35,44,0.65);
  margin-bottom: 4px;
}
.swatch b {
  position: relative;
  z-index: 1;
  font-family: 'Anton', sans-serif;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--ink);
  font-weight: 400;
  text-transform: uppercase;
}

/* individual swatch colors */
.swatch--sun    { background: #F4B81E; }
.swatch--clay   { background: #D97757; }
.swatch--moss   { background: #7A8B5C; }
.swatch--slate  { background: #3D6B7D; }
.swatch--ink    { background: #1B232C; }
.swatch--fog    { background: #B4C3CE; }
.swatch--ember  { background: #C44536; }
.swatch--storm  { background: #5B6B7A; }
.swatch--cream  { background: #E8DCC4; }
.swatch--bark   { background: #8C5A3C; }
.swatch--shadow { background: #3A4453; }
.swatch--bone   { background: #F2EFE7; }

.swatch--ink b, .swatch--shadow b, .swatch--storm b, .swatch--slate b {
  color: var(--fg);
}
.swatch--ink span, .swatch--shadow span, .swatch--storm span, .swatch--slate span {
  color: rgba(255,255,255,0.55);
}

.b2b-meta-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 1140px;
  margin: 0 auto 56px;
  padding: 0 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.b2b-meta {
  padding: 36px 36px;
  border-right: 1px solid var(--line);
}
.b2b-meta:last-child { border-right: 0; }
.b2b-meta-h {
  display: block;
  font-family: 'Anton', sans-serif;
  font-size: 11px;
  letter-spacing: 0.30em;
  color: var(--accent);
  margin-bottom: 20px;
}
.b2b-meta ul { list-style: none; }
.b2b-meta li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 13.5px;
}
.b2b-meta li:last-child { border-bottom: 0; }
.b2b-meta li b {
  font-family: 'Anton', sans-serif;
  font-size: 13px;
  letter-spacing: 0.10em;
  color: var(--fg);
  font-weight: 400;
  flex-shrink: 0;
}
.b2b-meta li span {
  color: var(--muted);
  text-align: right;
  font-size: 13px;
}

.b2b-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  gap: 40px;
  flex-wrap: wrap;
}
.b2b-action-text { max-width: 480px; }
.b2b-action-text p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: 90px 24px 32px;
  background: var(--ink);
  border-top: 1px solid var(--line);
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 60px;
  background: var(--accent);
}
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  max-width: 1200px;
  margin: 0 auto 60px;
}
.foot-brand .wordmark { display: block; margin-bottom: 18px; }
.foot-brand p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 18px;
}
.foot-brand-id {
  font-family: 'Anton', sans-serif;
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--accent);
  display: block;
}
.foot-col h4 {
  font-family: 'Anton', sans-serif;
  font-size: 12px;
  letter-spacing: 0.26em;
  color: var(--accent);
  margin-bottom: 18px;
  font-weight: 400;
}
.foot-col a, .foot-col span {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 8px;
  transition: color 0.2s;
}
.foot-col a:hover { color: var(--fg); }

.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-family: 'Anton', sans-serif;
  font-size: 10px;
  letter-spacing: 0.22em;
  color: rgba(180,195,206,0.5);
  text-transform: uppercase;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================================
   MODAL — populated by main.js when .sku is clicked
   ============================================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}
.modal[aria-hidden="false"] {
  pointer-events: auto;
  opacity: 1;
}
.modal-back {
  position: absolute; inset: 0;
  background: rgba(27,35,44,0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.modal-card {
  position: relative;
  max-width: 920px;
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--line-hi);
  box-shadow: 0 40px 100px rgba(0,0,0,0.6);
  transform: scale(0.96) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.2,0.7,0.2,1);
  max-height: 88vh;
  overflow: auto;
}
.modal[aria-hidden="false"] .modal-card { transform: scale(1) translateY(0); }
.modal-corner {
  position: absolute;
  top: -1px; left: -1px;
  width: 30px; height: 30px;
  border-top: 2px solid var(--accent);
  border-left: 2px solid var(--accent);
  z-index: 2;
}
.modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.modal-media {
  position: relative;
  aspect-ratio: 1;
  background: var(--ink);
  overflow: hidden;
}
.modal-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.7) brightness(0.85);
}
.modal-meta-strip {
  position: absolute;
  left: 16px; bottom: 16px; right: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Anton', sans-serif;
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--fg);
  background: rgba(27,35,44,0.75);
  padding: 8px 12px;
  border: 1px solid var(--line);
  text-transform: uppercase;
}
.modal-dot {
  width: 4px; height: 4px;
  background: var(--accent);
  border-radius: 50%;
}
.modal-body {
  padding: 40px 36px 36px;
  display: flex;
  flex-direction: column;
}
.modal-title {
  font-family: 'Anton', sans-serif;
  font-size: 42px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 8px;
  line-height: 0.95;
  font-weight: 400;
}
.modal-sub {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.modal-divider {
  height: 1px;
  background: var(--line);
  margin: 18px 0;
}
.modal-specs {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
}
.modal-specs > div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 9px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 13px;
}
.modal-specs > div:last-child { border-bottom: 0; }
.modal-specs dt {
  font-family: 'Anton', sans-serif;
  font-size: 11px;
  letter-spacing: 0.20em;
  color: var(--accent);
  text-transform: uppercase;
}
.modal-specs dd {
  color: var(--fg);
  text-align: right;
  font-size: 13px;
}
.modal-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 18px;
  flex-wrap: wrap;
}
.modal-price { display: flex; flex-direction: column; }
.modal-price-h {
  font-family: 'Anton', sans-serif;
  font-size: 10px;
  letter-spacing: 0.26em;
  color: var(--accent);
  margin-bottom: 4px;
}
.modal-price-v {
  font-family: 'Anton', sans-serif;
  font-size: 22px;
  letter-spacing: 0.02em;
  color: var(--fg);
  margin-bottom: 2px;
}
.modal-price-s {
  font-size: 11px;
  color: var(--muted);
}
.modal-close {
  position: absolute;
  top: 14px; right: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Anton', sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--muted);
  padding: 6px 10px;
  background: rgba(27,35,44,0.7);
  border: 1px solid var(--line);
  transition: all 0.2s;
  z-index: 2;
}
.modal-close:hover {
  color: var(--ink);
  background: var(--accent);
  border-color: var(--accent);
}

/* ============================================================
   MOBILE
   ============================================================ */
@media (max-width: 900px) {
  .modal-grid { grid-template-columns: 1fr; }
  .modal-media { aspect-ratio: 4/3; }
}

@media (max-width: 720px) {
  .topbar { padding: 16px 20px; }
  .nav-rail { gap: 14px; }
  .nav-rail a { font-size: 10px; letter-spacing: 0.14em; }
  .audio-label { display: none; }

  .hero { min-height: 600px; }
  .hero-rule { height: 56px; margin-bottom: 22px; }
  .hero-badge { font-size: 10px; padding: 7px 14px 7px 12px; margin-bottom: 22px; }
  .hero-sub { font-size: 12px; letter-spacing: 0.16em; margin-bottom: 32px; }
  .hero-cta { padding: 16px 32px; font-size: 12px; }
  .hero-credit { margin-top: 22px; font-size: 9px; }
  .hero-scroll { bottom: 22px; }
  .hero-flare { display: none; }

  .manifesto { padding: 100px 20px 80px; }
  .manifesto::before { top: 56px; height: 30px; }
  .manifesto::after { top: 28px; font-size: 9px; }
  .quote-card::before, .quote-card::after { width: 12px; height: 12px; }
  .quote-tag { padding: 14px 20px; }
  .quote-text { font-size: 18px; padding: 32px 26px 10px; line-height: 1.4; }
  .quote-attr { margin-bottom: 18px; }
  .quote-divider { height: 24px; margin-bottom: 14px; }
  .quote-action { padding-bottom: 22px; }

  .lineup { padding: 80px 0 70px; }
  .section-head { margin-bottom: 44px; }
  .lineup-rail {
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--line);
  }
  .sku {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .sku:nth-child(2n) { border-right: 0; }
  .lineup-scale { display: none; }

  .production { padding: 80px 0; }
  .production-grid { grid-template-columns: 1fr; }
  .prod-card { padding: 28px 22px; }
  .prod-h { font-size: 18px; }

  .b2b { padding: 80px 0 70px; }
  .b2b-palette { grid-template-columns: repeat(4, 1fr); }
  .b2b-meta-row { grid-template-columns: 1fr; }
  .b2b-meta { padding: 24px 20px; border-right: 0; border-bottom: 1px solid var(--line); }
  .b2b-meta:last-child { border-bottom: 0; }
  .b2b-action { flex-direction: column; align-items: flex-start; gap: 24px; }

  .footer { padding: 60px 20px 24px; }
  .footer::before { height: 40px; }
  .foot-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 40px;
  }
  .foot-bottom { font-size: 9px; letter-spacing: 0.18em; }

  .modal { padding: 16px; }
  .modal-body { padding: 28px 22px 24px; }
  .modal-title { font-size: 32px; }
}

@media (max-width: 420px) {
  .b2b-palette { grid-template-columns: repeat(3, 1fr); }
  .foot-grid { grid-template-columns: 1fr; }
}
