/* Drop 001 catalog + PDP — black void, light as accent, mute money surface.
   SaturnDesign: pure monochrome (accent = light). Inter/Syne/Google banned.
   Display = Oswald 600 · body = Archivo (self-hosted, matches fashion/style.css).
   Mechanism: HAND-NUMBERED RUN — unit totals + hangtag fraction only.
   Contested apparel name NOT decided here — "Awake" is motif only. */

@font-face {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/oswald-600.woff2") format("woff2");
}
@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/assets/fonts/archivo-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/assets/fonts/archivo-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --void: #000000;
  --ice: #F3F5F9;
  --light: #FFFFFF;
  --mute: rgba(243, 245, 249, .58);
  --soft: rgba(243, 245, 249, .74);
  --hair: rgba(243, 245, 249, .14);
  --pad: clamp(18px, 4vw, 40px);
  --shell: min(1120px, calc(100% - 2 * var(--pad)));
  --ease: cubic-bezier(.16, 1, .3, 1);
  --display: "Oswald", "Archivo", sans-serif;
  --font: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-6: 48px;
  --space-8: 64px;
  --radius: 0;
}

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

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  min-height: 100svh;
  background: var(--void);
  color: var(--ice);
  font-family: var(--font);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--ice); color: #000; }
img { max-width: 100%; display: block; }
:where(a, button, input, select, textarea):focus-visible {
  outline: 2px solid var(--light);
  outline-offset: 4px;
}

.skip {
  position: absolute; left: var(--pad); top: 0; z-index: 500;
  min-height: 44px; box-sizing: border-box;
  display: inline-flex; align-items: center;
  padding: 12px 18px; background: var(--ice); color: #000;
  font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  text-decoration: none; transform: translateY(-120%);
  transition: transform .2s var(--ease);
}
.skip:focus,
.skip:focus-visible {
  transform: translateY(12px);
  outline: 2px solid var(--light);
  outline-offset: 3px;
}
.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;
}
main:focus,
main:focus-visible { outline: none; }


.grain {
  position: fixed; inset: -40%; width: 180%; height: 180%;
  pointer-events: none; z-index: 90; opacity: .05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.scan {
  position: fixed; inset: 0; z-index: 89; pointer-events: none;
  opacity: .16; mix-blend-mode: overlay;
  background: repeating-linear-gradient(to bottom, rgba(255,255,255,.03) 0 1px, transparent 1px 3px);
}

.iced {
  filter:
    contrast(1.18) brightness(1.1) saturate(0)
    drop-shadow(0 0 1px rgba(255, 255, 255, .85))
    drop-shadow(0 0 10px rgba(243, 245, 249, .5));
}

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--pad);
  background: linear-gradient(to bottom, rgba(0,0,0,.92) 40%, transparent);
}
.wm {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; color: inherit;
}
.wm img { height: 26px; width: auto; }
.wm .name {
  font-family: var(--display); font-size: 12px; font-weight: 600;
  letter-spacing: .28em; text-transform: uppercase;
}
.nav {
  display: flex; align-items: center; gap: clamp(12px, 3vw, 28px);
}
.nav a {
  color: var(--mute); text-decoration: none;
  font-size: 11px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
  min-height: 44px; display: inline-flex; align-items: center;
  transition: color .25s var(--ease);
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--ice); }
.state-chip {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--mute); border: 1px solid var(--hair);
  min-height: 44px; padding: 0 14px;
  display: inline-flex; align-items: center;
}

/* ===== Catalog intro ===== */
.intro {
  width: var(--shell); margin: 0 auto;
  padding: clamp(48px, 10vw, 96px) 0 var(--space-6);
  text-align: center;
}
.intro .kicker {
  font-size: 11px; font-weight: 600; letter-spacing: .36em;
  text-transform: uppercase; color: var(--mute); margin-bottom: var(--space-3);
}
.intro h1 {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(32px, 7vw, 56px); letter-spacing: .04em;
  text-transform: uppercase; line-height: .95;
}
.intro .lede {
  margin: var(--space-3) auto 0; max-width: 38ch;
  font-size: 16px; color: var(--soft); line-height: 1.65;
}
.run-line {
  margin-top: var(--space-4);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--mute);
}

/* ===== Grid ===== */
.collection {
  width: var(--shell); margin: 0 auto var(--space-8);
}
.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(28px, 4vw, 48px) clamp(20px, 3vw, 36px);
}
.tile {
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
}
.frame {
  position: relative; aspect-ratio: 3 / 4; overflow: hidden;
  border: 1px solid var(--hair);
  background: radial-gradient(ellipse at 50% 28%, #141414 0%, #070707 55%, #000 100%);
  transition: border-color .35s var(--ease);
}
.tile:hover .frame, .tile:focus-visible .frame { border-color: rgba(243,245,249,.4); }
.ph { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.ph .static {
  position: absolute; inset: 0; opacity: .12; mix-blend-mode: overlay; pointer-events: none;
  background: repeating-linear-gradient(0deg, transparent 0 2px, rgba(243,245,249,.14) 2px 3px);
}
.mock { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.mock .seal-img {
  position: relative; z-index: 2; height: clamp(64px, 10vw, 100px); width: auto;
}
.mock-tee {
  background:
    radial-gradient(ellipse at 50% 22%, rgba(232,228,216,.14), transparent 48%),
    linear-gradient(180deg, #171614 0%, #0d0c0b 55%, #050505 100%);
}
.mock-tee .seal-img { height: clamp(42px, 6.5vw, 58px); transform: translate(-28%, -2%); }
.mock-tee::before {
  content: ""; position: absolute; left: 14%; right: 14%; top: 16%; bottom: 20%;
  border: 1px solid rgba(243,245,249,.07);
}
.mock-hoodie {
  background: radial-gradient(ellipse at 50% 30%, #161616 0%, #070707 58%, #000 100%);
}
.mock-hoodie::before {
  content: ""; position: absolute; width: 54%; height: 22%;
  left: 50%; top: 10%; transform: translateX(-50%);
  border: 1px solid rgba(243,245,249,.12);
  border-bottom: none; border-radius: 40% 40% 0 0;
}
.mock-hoodie .seal-img { height: clamp(52px, 7.5vw, 72px); transform: translateY(8%); }
.mock-cap {
  background: radial-gradient(ellipse at 50% 42%, #151515 0%, #080808 55%, #000 100%);
}
.mock-cap::before {
  content: ""; position: absolute; width: 62%; aspect-ratio: 1.35;
  left: 50%; top: 42%; transform: translate(-50%, -50%);
  border: 1px solid rgba(243,245,249,.16);
  border-radius: 50% 50% 46% 46%;
  box-shadow: inset 0 -18px 40px rgba(0,0,0,.55), 0 0 40px rgba(243,245,249,.04);
}
.mock-cap .seal-img { height: clamp(56px, 8vw, 78px); transform: translateY(-8%); }
.mock-artifact {
  background: linear-gradient(135deg, rgba(243,245,249,.04), transparent 40%), #060606;
}
.mock-artifact::before {
  content: ""; position: absolute; inset: 10% 12%;
  border: 1px solid rgba(243,245,249,.14);
  clip-path: polygon(0 3%, 4% 0, 100% 2%, 98% 100%, 3% 97%, 0 60%);
}
.mock-artifact .seal-row {
  position: relative; z-index: 2; display: flex; gap: 16px;
  align-items: flex-end; justify-content: center;
}
.mock-artifact .seal-row img { height: 48px; width: auto; }

.tile-body { padding: 22px 4px 0; }
.row { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.pname {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(14px, 1.5vw, 17px); letter-spacing: .06em; text-transform: uppercase;
}
.price {
  font-weight: 600; font-size: 16px; color: var(--soft);
}
.meta {
  margin-top: 8px; color: var(--mute);
  font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
}
.run-n {
  margin-top: 10px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--mute);
}

/* ===== Rules band ===== */
.rules {
  width: var(--shell); margin: 0 auto var(--space-8);
  border-top: 1px solid var(--hair); padding-top: var(--space-6);
}
.rules h2 {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(20px, 3vw, 28px); letter-spacing: .04em;
  text-transform: uppercase; margin-bottom: var(--space-3);
}
.rules ul {
  list-style: none; display: grid; gap: 12px;
  max-width: 52ch; color: var(--soft); font-size: 15px; line-height: 1.55;
}
.rules li { padding-left: 0; }
.rules li::before {
  content: "—"; color: var(--mute); margin-right: 10px;
}

/* ===== Notify ===== */
.notify {
  width: var(--shell); margin: 0 auto var(--space-8);
  text-align: center; padding: var(--space-6) 0;
  border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair);
}
.notify h2 {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(24px, 4vw, 40px); letter-spacing: .04em; text-transform: uppercase;
}
.notify p {
  margin: 16px auto 28px; max-width: 34ch; color: var(--soft); font-size: 16px;
}
.join {
  display: flex; max-width: 420px; margin: 0 auto;
  border: 1px solid var(--hair);
}
.join input {
  flex: 1; min-width: 0; background: transparent; border: 0; color: var(--ice);
  padding: 16px 18px; font-family: inherit; font-size: 16px;
}
.join input::placeholder { color: var(--mute); }
.join button {
  border: 0; border-left: 1px solid var(--hair); background: var(--ice); color: #000;
  font-family: var(--display); font-weight: 600; font-size: 11px; letter-spacing: .18em;
  text-transform: uppercase; padding: 0 22px; min-height: 52px; cursor: pointer;
  transition: background .25s var(--ease), color .25s var(--ease);
}
.join button:hover { background: transparent; color: var(--ice); }

/* ===== PDP ===== */
.pdp {
  width: var(--shell); margin: 0 auto var(--space-8);
  padding-top: var(--space-4);
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}
.gallery { position: sticky; top: 88px; }
.stage {
  position: relative; aspect-ratio: 3 / 4;
  border: 1px solid var(--hair); overflow: hidden;
  background: #050505;
}
.stage .mock, .stage .media-fill { position: absolute; inset: 0; }
.media-fill {
  width: 100%; height: 100%; object-fit: cover; object-position: center 40%;
}
.thumbs {
  display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap;
}
.thumbs button {
  width: 64px; height: 80px; border: 1px solid var(--hair);
  background: #080808; cursor: pointer; padding: 0; overflow: hidden;
  color: var(--mute); font-size: 9px; letter-spacing: .08em; text-transform: uppercase;
}
.thumbs button[aria-pressed="true"] { border-color: var(--ice); color: var(--ice); }

.pdp-body .crumb {
  font-size: 10px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--mute); margin-bottom: var(--space-3);
}
.pdp-body .crumb a { color: inherit; text-decoration: none; }
.pdp-body .crumb a:hover { color: var(--ice); }
.pdp-body h1 {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(28px, 4vw, 40px); letter-spacing: .04em;
  text-transform: uppercase; line-height: 1;
}
.pdp-price {
  margin-top: 14px; font-size: 20px; font-weight: 600; color: var(--soft);
}
.pdp-code {
  margin-top: 8px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--mute);
}
.pdp-run {
  margin-top: 16px; padding: 12px 0;
  border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ice);
}
.pdp-desc {
  margin-top: var(--space-3); color: var(--soft); max-width: 38ch;
}
.pdp-desc p + p { margin-top: 1em; }
.facts {
  margin-top: var(--space-4);
  display: grid; grid-template-columns: auto 1fr; gap: 12px 20px;
  font-size: 14px;
}
.facts dt {
  font-size: 10px; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: var(--mute); padding-top: 2px;
}
.facts dd { color: var(--soft); }
.doctrine-hit {
  margin-top: var(--space-4);
  font-family: var(--display); font-weight: 600;
  font-size: clamp(14px, 1.6vw, 16px); letter-spacing: .12em;
  text-transform: uppercase; color: var(--ice);
}
.sizes {
  display: flex; gap: 8px; margin-top: var(--space-4); flex-wrap: wrap;
}
.sizes button {
  font-family: inherit; font-size: 11px; font-weight: 500; letter-spacing: .06em;
  color: var(--ice); background: transparent; border: 1px solid var(--hair);
  min-height: 44px; min-width: 44px; padding: 0 12px; cursor: pointer;
  transition: border-color .15s var(--ease), background .15s var(--ease), color .15s var(--ease);
}
.sizes button:hover { border-color: rgba(243,245,249,.45); }
.sizes button[aria-pressed="true"] {
  background: var(--ice); color: #000; border-color: var(--ice);
}
.sizes .wide { min-width: auto; padding: 0 18px; }
.cta-stack { margin-top: var(--space-3); display: grid; gap: 12px; }
.cta {
  width: 100%; min-height: 52px; padding: 15px;
  border: 1px solid var(--ice); background: var(--ice); color: #000;
  font-family: var(--display); font-weight: 600; font-size: 11px; letter-spacing: .2em;
  text-transform: uppercase; cursor: pointer;
  transition: background .25s var(--ease), color .25s var(--ease);
  text-decoration: none; display: inline-flex; align-items: center; justify-content: center;
  box-sizing: border-box;
}
.cta:hover { background: transparent; color: var(--ice); }
.cta:disabled, .cta[aria-disabled="true"] {
  opacity: .45; cursor: not-allowed;
}
.cta:disabled:hover, .cta[aria-disabled="true"]:hover {
  background: var(--ice); color: #000;
}
.cta.ghost {
  background: transparent; color: var(--ice); border-color: var(--hair);
}
.cta.ghost:hover { border-color: var(--ice); }
.note-mute {
  margin-top: 10px; font-size: 12px; color: var(--mute); line-height: 1.5;
}

/* Related */
.related {
  width: var(--shell); margin: 0 auto var(--space-8);
  border-top: 1px solid var(--hair); padding-top: var(--space-6);
}
.related h2 {
  font-family: var(--display); font-weight: 600;
  font-size: 14px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--mute); margin-bottom: var(--space-3);
}
.related .grid { grid-template-columns: repeat(3, 1fr); }

/* Footer */
.site-footer {
  width: var(--shell); margin: 0 auto;
  padding: var(--space-6) 0 var(--space-4);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 10px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
  color: var(--mute);
}
.site-footer a { color: var(--soft); text-decoration: none; border-bottom: 1px solid var(--hair); }

.pdp-miss { grid-template-columns: 1fr; max-width: 36rem; }
.pdp-miss .pdp-body { padding-top: var(--space-4); }
.site-footer a:hover { color: var(--ice); }

#toast {
  position: fixed; left: 50%; bottom: 28px; transform: translate(-50%, 140%);
  z-index: 500; background: var(--ice); color: #000;
  font-family: var(--display); font-weight: 600; font-size: 11px; letter-spacing: .16em;
  text-transform: uppercase; padding: 14px 22px;
  transition: transform .45s var(--ease);
}
#toast.show { transform: translate(-50%, 0); }

@media (max-width: 860px) {
  .pdp { grid-template-columns: 1fr; }
  .gallery { position: static; }
  .related .grid { grid-template-columns: 1fr 1fr; }
  .wm .name { display: none; }
  .nav a.hide-sm { display: none; }
}
@media (max-width: 640px) {
  .grid { grid-template-columns: 1fr; }
  .related .grid { grid-template-columns: 1fr; }
}
@media (max-width: 380px) {
  .state-chip { display: none; }
  .join { flex-direction: column; }
  .join button { border-left: 0; border-top: 1px solid var(--hair); width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  #toast.show { transform: translate(-50%, 0); }
}
