@import url('https://fonts.googleapis.com/css2?family=Syne:wght@600;700;800&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500&display=swap');

/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  --bg:         #FFFFFF;
  --bg2:        #F7F7F7;
  --bg3:        #F0F0F0;
  --card:       #FAFAFA;
  --border:     #E4E4E4;
  --border2:    #C8C8C8;
  --text:       #000000;
  --text2:      #6A6A6A;
  --text3:      #B0B0B0;
  --copper:     #B8722E;
  --copper-h:   #CE8A42;
  --copper-d:   #7A4C1E;
}

/* ─── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; }
button { font-family: inherit; }

/* ─── BRAND WORDMARK ─────────────────────────────────────── */
.wordmark {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  line-height: 1;
  flex-shrink: 0;
}
.wordmark-text {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.2em;
  color: var(--text);
  line-height: 1;
  user-select: none;
  text-transform: uppercase;
}
.wordmark-bar {
  height: 1.5px;
  background: var(--copper);
  width: 100%;
}

/* ─── NAV ────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px;
  height: 64px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-links {
  display: flex; align-items: center; gap: 28px; list-style: none;
}
.nav-links a {
  font-family: 'Syne', sans-serif;
  font-weight: 600; font-size: 12px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text2); text-decoration: none;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--text); }
.nav-links .nav-cta {
  background: var(--text);
  color: var(--bg) !important;
  padding: 9px 20px;
  transition: background 0.15s !important;
}
.nav-links .nav-cta:hover { background: #1A1A1A !important; }

/* ─── TICKER ─────────────────────────────────────────────── */
.ticker-wrap {
  background: var(--text);
  overflow: hidden; white-space: nowrap;
  margin-top: 64px; padding: 9px 0;
  position: relative; z-index: 10;
}
.ticker-track {
  display: inline-flex;
  animation: scroll-x 24s linear infinite;
}
.ticker-track span {
  font-family: 'Syne', sans-serif;
  font-weight: 700; font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--bg);
  padding: 0 36px;
}
.ticker-track span::before {
  content: '—';
  margin-right: 36px;
  opacity: 0.3;
}
@keyframes scroll-x {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; align-items: flex-end;
  padding: 80px 40px 64px;
  position: relative; overflow: hidden;
}
.hero-compass {
  position: absolute; right: -60px; top: 50%;
  transform: translateY(-50%);
  width: clamp(340px, 48vw, 620px);
  height: clamp(340px, 48vw, 620px);
  opacity: 0.07;
  pointer-events: none; user-select: none;
}
.hero-content {
  position: relative; z-index: 1; max-width: 840px;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 28px;
  font-family: 'Syne', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--text3);
}
.hero-tag::before {
  content: '';
  display: inline-block;
  width: 28px; height: 1px; background: var(--copper);
}
.hero-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800; text-transform: uppercase;
  font-size: clamp(52px, 8vw, 110px);
  line-height: 0.92; color: var(--text);
  margin-bottom: 32px;
}
.hero-title .em { color: var(--copper); }
.hero-body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 17px; color: var(--text2);
  line-height: 1.8; max-width: 420px;
  margin-bottom: 44px;
}
.hero-actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Syne', sans-serif;
  font-weight: 700; font-size: 12px; letter-spacing: 0.18em;
  text-transform: uppercase; text-decoration: none;
  transition: all 0.18s; cursor: pointer; border: none;
  line-height: 1;
}
.btn-solid { background: var(--text); color: var(--bg); padding: 16px 38px; }
.btn-solid:hover { background: #1A1A1A; }
.btn-solid .arr { transition: transform 0.18s; display: inline-block; }
.btn-solid:hover .arr { transform: translateX(5px); }
.btn-outline {
  background: transparent; color: var(--text2);
  padding: 16px 0;
  border-bottom: 1px solid var(--border2);
}
.btn-outline:hover { color: var(--text); border-color: var(--text3); }

/* ─── COUNTDOWN ──────────────────────────────────────────── */
.hero-foot {
  margin-top: 52px; padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; gap: 40px; flex-wrap: wrap;
}
.cd-lbl-top {
  font-family: 'Syne', sans-serif;
  font-size: 10px; font-weight: 600; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--text3);
  margin-bottom: 10px; display: block;
}
.countdown {
  display: flex; align-items: center; gap: 8px;
}
.cd-unit { text-align: center; }
.cd-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800; font-size: 36px; line-height: 1;
  color: var(--text); display: block; min-width: 44px;
  letter-spacing: -0.02em;
}
.cd-unit-lbl {
  font-size: 9px; font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text3); display: block; margin-top: 4px;
}
.cd-sep {
  font-family: 'Syne', sans-serif;
  font-weight: 800; font-size: 30px; color: var(--copper);
  margin-bottom: 14px; line-height: 1; flex-shrink: 0;
}
.hero-units {
  display: flex; align-items: center; gap: 9px;
  margin-left: auto;
}
.hero-units span {
  font-family: 'Syne', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--text2);
}

/* ─── LIVE DOT ───────────────────────────────────────────── */
.live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--copper); flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.35; transform: scale(0.78); }
}

/* ─── SECTION BASE ───────────────────────────────────────── */
.section    { padding: 80px 40px; }
.section-lg { padding: 100px 40px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Syne', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--text3);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: ''; display: inline-block;
  width: 18px; height: 1px; background: var(--copper);
}
.section-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800; text-transform: uppercase; line-height: 0.92;
  font-size: clamp(38px, 5.5vw, 72px); color: var(--text);
}
.section-title .em { color: var(--copper); }

/* ─── GATEWAY ────────────────────────────────────────────── */
.gateway {
  display: grid; grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--border);
  min-height: 360px;
}
.gateway-panel {
  display: flex; align-items: flex-end;
  padding: 52px 48px;
  text-decoration: none;
  position: relative; overflow: hidden;
  transition: background 0.22s;
}
.gateway-originals {
  background: var(--bg);
  border-right: 1px solid var(--border);
}
.gateway-colab {
  background: var(--bg2);
}
.gateway-panel:hover { background: var(--bg3); }
.gateway-mark {
  position: absolute; right: -40px; top: 50%;
  transform: translateY(-50%);
  width: 260px; height: 260px;
  opacity: 0.04; color: #000;
  pointer-events: none; user-select: none;
}
.gateway-inner { position: relative; z-index: 1; width: 100%; }
.gateway-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Syne', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--text3); margin-bottom: 16px;
}
.gateway-tag::before {
  content: ''; display: inline-block;
  width: 18px; height: 1px; background: var(--copper);
}
.gateway-name {
  font-family: 'Syne', sans-serif;
  font-weight: 800; font-size: clamp(32px, 4.5vw, 58px);
  text-transform: uppercase; line-height: 0.92;
  color: var(--text); margin-bottom: 20px;
}
.gateway-desc {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 14px; color: var(--text2); line-height: 1.72;
  max-width: 360px; margin-bottom: 32px;
}
.gateway-cta {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Syne', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--text);
}
.gateway-arr { transition: transform 0.18s; display: inline-block; }
.gateway-panel:hover .gateway-arr { transform: translateX(6px); }

/* ─── DROPS SECTION ──────────────────────────────────────── */
.drops-section {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.drops-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 48px; gap: 16px; flex-wrap: wrap;
}
.drops-head > a {
  font-family: 'Syne', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--text3); text-decoration: none;
  transition: color 0.15s; white-space: nowrap;
}
.drops-head > a:hover { color: var(--text2); }
.products-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
}

/* ─── PRODUCT CARD ───────────────────────────────────────── */
.p-card {
  display: block; text-decoration: none;
  background: var(--card); border: 1px solid var(--border);
  transition: border-color 0.2s, transform 0.2s; overflow: hidden;
}
.p-card:hover { border-color: var(--border2); transform: translateY(-2px); }
.p-img {
  aspect-ratio: 3/4; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.p-img.img-tee {
  background: linear-gradient(145deg, #F2F2F2 0%, #EBEBEB 55%, #F2F2F2 100%);
}
.p-img.img-cap {
  background: linear-gradient(145deg, #F0F0F0 0%, #E8E8E8 55%, #F0F0F0 100%);
}
.p-placeholder { text-align: center; user-select: none; }
.p-placeholder svg { opacity: 0.35; }
.p-placeholder p {
  margin-top: 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px; font-weight: 400; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--text3);
}
.p-badge {
  position: absolute; top: 14px; right: 14px;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(8px);
  border: 1px solid var(--border2);
  display: flex; align-items: center; gap: 7px; padding: 6px 12px;
}
.p-badge span {
  font-family: 'Syne', sans-serif;
  font-size: 10px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--text);
}
.p-info { padding: 18px 22px 22px; }
.p-meta {
  font-family: 'Syne', sans-serif;
  font-size: 10px; font-weight: 600; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--text3); margin-bottom: 5px;
}
.p-name {
  font-family: 'Syne', sans-serif;
  font-weight: 800; font-size: 22px; text-transform: uppercase;
  color: var(--text); margin-bottom: 8px; line-height: 1;
}
.p-desc {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 13px; color: var(--text2); line-height: 1.65; margin-bottom: 18px;
}
.p-foot {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; border-top: 1px solid var(--border);
}
.p-price {
  font-family: 'Syne', sans-serif;
  font-weight: 700; font-size: 22px; color: var(--text);
}
.p-fits {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text3);
}
.p-colors { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.p-swatch {
  width: 17px; height: 17px; border-radius: 50%;
  border: 1.5px solid transparent; cursor: default;
  transition: border-color 0.15s; flex-shrink: 0;
}
.p-swatch.active { border-color: var(--text2); }
.p-swatch-label {
  font-family: 'Syne', sans-serif;
  font-size: 10px; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--text3);
}
.colorway-row {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px;
}
.colorway-opt {
  display: flex; align-items: center; gap: 8px;
  border: 1px solid var(--border); padding: 9px 14px;
  cursor: pointer; transition: border-color 0.15s;
  background: var(--card);
}
.colorway-opt:hover { border-color: var(--border2); }
.colorway-opt.active { border-color: var(--text2); }
.colorway-dot {
  width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0;
}
.colorway-name {
  font-family: 'Syne', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--text2);
}

/* ─── PHILOSOPHY ─────────────────────────────────────────── */
.phil-section { text-align: center; border-top: 1px solid var(--border); }
.phil-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800; text-transform: uppercase; line-height: 0.92;
  font-size: clamp(46px, 7.5vw, 104px);
  margin: 0 auto 36px; max-width: 940px;
}
.phil-title .em { color: var(--copper); }
.phil-body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 17px; color: var(--text2); line-height: 1.82;
  max-width: 560px; margin: 0 auto 60px;
}
.stats-row {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border);
}
.stat { background: var(--bg); padding: 44px 24px; text-align: center; }
.stat-n {
  font-family: 'Syne', sans-serif;
  font-weight: 800; font-size: 56px; line-height: 1;
  color: var(--text); display: block; margin-bottom: 10px;
}
.stat-l {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text3);
}

/* ─── FIT GUIDE ──────────────────────────────────────────── */
.fits-section {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.fit-single-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: center;
  margin-top: 56px;
}
.fit-sil-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.fit-sil-wrap svg {
  width: 100%;
  max-width: 200px;
  height: auto;
}
.fit-intro-text {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 15px;
  color: var(--text2);
  line-height: 1.82;
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.fit-zone-table { display: flex; flex-direction: column; }
.fit-zone-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.fit-zone-key {
  font-family: 'Syne', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text3);
  padding-top: 2px;
}
.fit-zone-val {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: var(--text2);
  line-height: 1.65;
}

/* ─── NEWSLETTER ─────────────────────────────────────────── */
.nl-section { border-top: 1px solid var(--border); text-align: center; }
.nl-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800; text-transform: uppercase; line-height: 0.92;
  font-size: clamp(36px, 5.5vw, 68px); margin-bottom: 16px;
}
.nl-sub {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 15px; color: var(--text2); margin-bottom: 40px; line-height: 1.7;
}
.nl-form { display: flex; max-width: 440px; margin: 0 auto; }
.nl-input {
  flex: 1; background: var(--card); border: 1px solid var(--border); border-right: none;
  color: var(--text); font-family: 'DM Sans', sans-serif; font-size: 14px;
  padding: 14px 20px; outline: none; transition: border-color 0.15s;
}
.nl-input::placeholder { color: var(--text3); }
.nl-input:focus { border-color: var(--border2); }
.nl-btn {
  background: var(--text); color: var(--bg);
  font-family: 'Syne', sans-serif;
  font-weight: 700; font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; padding: 14px 24px;
  border: none; cursor: pointer; transition: background 0.15s; white-space: nowrap;
}
.nl-btn:hover { background: #1A1A1A; }

/* ─── FOOTER ─────────────────────────────────────────────── */
footer {
  padding: 64px 40px 36px;
  border-top: 1px solid var(--border);
  background: var(--bg2);
}
.foot-top {
  display: flex; justify-content: space-between; gap: 52px;
  margin-bottom: 56px; flex-wrap: wrap;
}
.foot-brand p {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 13px; color: var(--text3); max-width: 230px;
  line-height: 1.7; margin-top: 18px;
}
.foot-links { display: flex; gap: 56px; flex-wrap: wrap; }
.foot-col h5 {
  font-family: 'Syne', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--text3); margin-bottom: 18px;
}
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.foot-col ul a {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; color: var(--text2); text-decoration: none; transition: color 0.15s;
}
.foot-col ul a:hover { color: var(--text); }
.foot-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px; border-top: 1px solid var(--border);
  flex-wrap: wrap; gap: 14px;
}
.foot-bottom p {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px; color: var(--text3);
}
.socials { display: flex; gap: 24px; }
.socials a {
  font-family: 'Syne', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--text3); text-decoration: none; transition: color 0.15s;
}
.socials a:hover { color: var(--text); }

/* ─── DROP PAGE ──────────────────────────────────────────── */
.drop-layout {
  display: grid; grid-template-columns: 56fr 44fr;
  margin-top: 64px; min-height: calc(100vh - 64px);
}
.drop-img-panel {
  position: sticky; top: 64px; height: calc(100vh - 64px);
  background: var(--bg3); display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.drop-img-inner {
  width: 100%; height: 100%;
  background: linear-gradient(145deg, #0E0E0E 0%, #070707 52%, #0E0E0E 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  position: relative;
}
.drop-img-ghost {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-52%);
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 260px;
  color: rgba(255,255,255,0.022); letter-spacing: -0.04em;
  user-select: none; pointer-events: none; line-height: 1; white-space: nowrap;
}
.drop-img-svg { transition: all 0.35s cubic-bezier(0.4,0,0.2,1); }
.drop-img-label {
  position: absolute; bottom: 24px; left: 28px;
  font-family: 'Syne', sans-serif;
  font-size: 10px; font-weight: 600; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--text3);
}
.drop-info-panel {
  padding: 56px 48px 80px;
  border-left: 1px solid var(--border);
  overflow-y: auto;
}
.drop-number {
  font-family: 'Syne', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--text3); margin-bottom: 12px;
}
.drop-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800; font-size: 52px; text-transform: uppercase;
  line-height: 0.90; color: var(--text); margin-bottom: 22px;
}
.drop-desc {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 14px; color: var(--text2); line-height: 1.78; margin-bottom: 28px;
}
.stock-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px; background: var(--card); border: 1px solid var(--border);
  margin-bottom: 36px;
}
.stock-left { display: flex; align-items: center; gap: 9px; }
.stock-left span {
  font-family: 'Syne', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--text2);
}
.stock-right {
  font-family: 'Syne', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text3);
}
.opt-label {
  font-family: 'Syne', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--text3);
  margin-bottom: 12px; display: block;
}
.fit-opts {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-bottom: 30px;
}
.fit-opt {
  border: 1px solid var(--border); padding: 14px 8px;
  text-align: center; cursor: pointer; transition: all 0.15s;
  background: var(--card); user-select: none;
}
.fit-opt:hover { border-color: var(--border2); }
.fit-opt.active { border-color: var(--text2); background: rgba(0,0,0,0.05); }
.fit-opt-n {
  font-family: 'Syne', sans-serif;
  font-weight: 700; font-size: 15px; text-transform: uppercase;
  color: var(--text); display: block; margin-bottom: 3px;
}
.fit-opt-s {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px; color: var(--text3); letter-spacing: 0.1em; text-transform: uppercase;
}
.size-opts { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 36px; }
.size-opt {
  border: 1px solid var(--border); padding: 10px 18px;
  font-family: 'Syne', sans-serif;
  font-weight: 700; font-size: 13px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text2);
  cursor: pointer; transition: all 0.15s; background: var(--card); user-select: none;
}
.size-opt:hover { border-color: var(--border2); color: var(--text); }
.size-opt.active { border-color: var(--text); color: var(--text); background: rgba(0,0,0,0.07); }
.size-opt.sold { opacity: 0.28; cursor: not-allowed; text-decoration: line-through; pointer-events: none; }
.price-row {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px;
}
.price-big {
  font-family: 'Syne', sans-serif;
  font-weight: 800; font-size: 44px; color: var(--text); line-height: 1;
}
.price-note {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 12px; color: var(--text3); text-align: right; line-height: 1.6;
}
.add-btn {
  width: 100%; background: var(--text); color: var(--bg);
  font-family: 'Syne', sans-serif;
  font-weight: 700; font-size: 13px; letter-spacing: 0.22em;
  text-transform: uppercase; padding: 20px;
  border: none; cursor: pointer; transition: background 0.18s;
  display: flex; align-items: center; justify-content: center; gap: 12px;
  margin-bottom: 14px;
}
.add-btn:hover { background: #1A1A1A; }
.add-btn .arr { transition: transform 0.18s; }
.add-btn:hover .arr { transform: translateX(5px); }
.add-note {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 12px; color: var(--text3); text-align: center; line-height: 1.65;
}
.add-note a { color: var(--text2); text-decoration: none; }
.divider { border: none; border-top: 1px solid var(--border); margin: 36px 0; }
.material-list { display: flex; flex-direction: column; }
.material-row {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 13px; padding: 11px 0; border-bottom: 1px solid var(--border);
}
.material-row:last-child { border-bottom: none; }
.m-k {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  color: var(--text3);
}
.m-v {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  color: var(--text2); text-align: right; max-width: 60%;
}
.size-table { width: 100%; border-collapse: collapse; font-size: 13px; margin-top: 16px; }
.size-table th {
  font-family: 'Syne', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--text3);
  padding: 10px 14px; text-align: left; border-bottom: 1px solid var(--border);
}
.size-table td {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  padding: 10px 14px; color: var(--text2); border-bottom: 1px solid var(--border);
}
.size-table tr:last-child td { border-bottom: none; }
.size-table td:first-child { color: var(--text); font-weight: 500; }
.size-note {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 12px; color: var(--text3); margin-top: 12px; line-height: 1.6;
}

/* ─── COLLABS SECTION ────────────────────────────────────── */
.section-collab {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.collab-head {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: end; margin-bottom: 52px;
}
.collab-intro {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 16px; color: var(--text2); line-height: 1.82;
  max-width: 480px; justify-self: end;
}
.collab-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
}
.collab-card {
  border: 1px solid var(--border); padding: 36px 32px;
  background: var(--card);
  display: flex; flex-direction: column; gap: 10px;
  position: relative; overflow: hidden; transition: border-color 0.2s;
}
.collab-card::after {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 2px; background: transparent; transition: background 0.2s;
}
.collab-card:hover { border-color: var(--border2); }
.collab-card:hover::after { background: var(--copper); }
.collab-active::after { background: var(--copper) !important; }
.collab-status {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Syne', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--text3); margin-bottom: 6px;
}
.collab-status-open { color: var(--copper); }
.collab-num {
  font-family: 'Syne', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--text3);
}
.collab-name {
  font-family: 'Syne', sans-serif;
  font-weight: 800; font-size: 26px; text-transform: uppercase;
  color: var(--text); line-height: 1.1; margin-bottom: 4px;
}
.collab-desc {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 13px; color: var(--text2); line-height: 1.7; flex: 1;
}
.collab-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Syne', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; text-decoration: none;
  background: var(--text); color: var(--bg);
  padding: 13px 20px; margin-top: 8px; align-self: flex-start;
  transition: background 0.15s;
}
.collab-cta:hover { background: #1A1A1A; }
.collab-cta .arr { transition: transform 0.18s; display: inline-block; }
.collab-cta:hover .arr { transform: translateX(5px); }
.collab-cta-outline {
  background: transparent; color: var(--text2);
  border: 1px solid var(--border2);
}
.collab-cta-outline:hover { background: transparent; color: var(--text); border-color: var(--text3); }
.collab-card-info { background: var(--bg); }
.collab-info-mark {
  position: absolute; top: -18px; right: 14px;
  font-family: 'Syne', sans-serif;
  font-weight: 800; font-size: 108px;
  color: rgba(0,0,0,0.03);
  user-select: none; pointer-events: none; line-height: 1;
}
.collab-how {
  list-style: none;
  display: flex; flex-direction: column; gap: 14px; margin-top: 4px;
}
.collab-how li {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 13px; color: var(--text2); line-height: 1.6;
  padding-left: 18px; position: relative;
}
.collab-how li::before {
  content: '—'; position: absolute; left: 0;
  color: var(--copper); font-size: 11px;
}

/* ─── ARCHIVE SECTION ────────────────────────────────────── */
.archive-section { border-top: 1px solid var(--border); }
.archive-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; margin-top: 48px;
}
.archive-card {
  background: var(--card); border: 1px solid var(--border);
  padding: 32px; display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}
.archive-card::before {
  content: 'SOLD OUT';
  position: absolute; top: 20px; right: -28px;
  background: #1A1A1A; color: #FFFFFF;
  font-family: 'Syne', sans-serif;
  font-size: 9px; font-weight: 700; letter-spacing: 0.22em;
  padding: 5px 36px; transform: rotate(35deg);
}
.archive-drop {
  font-family: 'Syne', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--text3); margin-bottom: 8px;
}
.archive-name {
  font-family: 'Syne', sans-serif;
  font-weight: 800; font-size: 24px; text-transform: uppercase;
  color: var(--text2); margin-bottom: 4px;
}
.archive-meta {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 12px; color: var(--text3);
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav { padding: 0 20px; }
  .nav-links { display: none; }
  .section, .section-lg { padding: 56px 20px; }
  .hero { padding: 80px 20px 52px; }
  .hero-compass { display: none; }
  .products-grid { grid-template-columns: 1fr; }
  .fits-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  footer { padding: 52px 20px 32px; }
  .foot-top { flex-direction: column; }
  .nl-form { flex-direction: column; }
  .nl-input { border-right: 1px solid var(--border); border-bottom: none; }
  .nl-btn { padding: 14px; text-align: center; }
  .drop-layout { grid-template-columns: 1fr; }
  .drop-img-panel { position: relative; height: 65vw; min-height: 280px; top: auto; }
  .drop-img-ghost { font-size: 30vw; }
  .drop-info-panel { padding: 40px 20px 64px; border-left: none; border-top: 1px solid var(--border); }
  .drop-title { font-size: 42px; }
  .archive-grid { grid-template-columns: 1fr; }
  .gateway { grid-template-columns: 1fr; min-height: auto; }
  .gateway-originals { border-right: none; border-bottom: 1px solid var(--border); }
  .gateway-panel { padding: 44px 20px; }
  .gateway-mark { display: none; }
  .collab-head { grid-template-columns: 1fr; }
  .collab-grid { grid-template-columns: 1fr; }
  .hero-foot { flex-direction: column; align-items: flex-start; gap: 24px; }
  .hero-units { margin-left: 0; }
}
