/* ========================================================
   HYBRIDA LAB V2 — Global Architect Design System
   Born X Raised impact × Stampd architectural grid
   Muted, desaturated, cinematic.
   ======================================================== */

:root {
  --font-display: 'Inter', 'Helvetica Neue', sans-serif;
  --font-body: 'Inter', 'Helvetica Neue', sans-serif;
  --font-mono: 'Roboto Mono', 'Courier New', monospace;

  --text-xs:   clamp(0.625rem, 0.58rem + 0.22vw, 0.75rem);
  --text-sm:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-base: clamp(0.875rem, 0.83rem + 0.22vw, 1rem);
  --text-lg:   clamp(1rem,     0.92rem + 0.4vw,  1.25rem);
  --text-xl:   clamp(1.25rem,  1rem    + 1vw,    2rem);
  --text-2xl:  clamp(1.75rem,  1rem    + 2.5vw,  3.5rem);
  --text-3xl:  clamp(2.5rem,   1rem    + 4vw,    5rem);
  --text-hero: clamp(3rem,     0.5rem  + 8vw,    9rem);

  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  --color-bg:          #D6D2C4;
  --color-surface:     #ccc8b8;
  --color-surface-2:   #c2bead;
  --color-divider:     #b8b4a3;
  --color-border:      #a8a494;

  --color-text:        #1a1a1a;
  --color-text-muted:  #4a4a42;
  --color-text-faint:  #8a8778;
  --color-text-inverse:#D6D2C4;

  --color-primary:       #006B3F;
  --color-primary-hover: #005530;
  --color-primary-active:#003d22;

  --color-black:  #1a1a1a;
  --color-white:  #f5f4f0;

  --transition-fast:   180ms cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 400ms cubic-bezier(0.16, 1, 0.3, 1);

  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1200px;
}

.site-wrapper {
  width: 100%;
  overflow-x: hidden;
}

/* ========================================================
   SIGNAL FEED — Top Bar Marquee (Directive 1)
   ======================================================== */

.signal-feed {
  background: var(--color-primary);
  padding: 6px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 200;
}

.signal-feed__track {
  display: flex;
  gap: var(--space-4);
  animation: signalScroll 30s linear infinite;
  width: fit-content;
}

.signal-feed__item {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  color: var(--color-text-inverse);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  flex-shrink: 0;
}

.signal-feed__sep {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(214, 210, 196, 0.35);
  flex-shrink: 0;
}

@keyframes signalScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-33.33%); }
}

/* ========================================================
   NAVIGATION
   ======================================================== */

.nav {
  position: fixed;
  top: 28px; /* below signal feed */
  left: 0;
  right: 0;
  z-index: 100;
  padding: var(--space-4) var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition-smooth), top var(--transition-smooth);
}

.nav--scrolled {
  background: rgba(214, 210, 196, 0.94);
  backdrop-filter: blur(12px);
  top: 0;
}

.nav__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav__logo-img {
  height: 36px;
  width: auto;
  transition: opacity var(--transition-fast);
}

.nav--scrolled .nav__logo-img {
  opacity: 0.9;
}

.nav__links {
  display: flex;
  gap: var(--space-8);
  list-style: none;
}

.nav__links a {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-decoration: none;
  color: var(--color-white);
  position: relative;
}

.nav--scrolled .nav__links a {
  color: var(--color-text);
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width var(--transition-fast);
}

.nav__links a:hover::after {
  width: 100%;
}

.nav__menu-btn {
  display: none;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  color: var(--color-white);
}

.nav--scrolled .nav__menu-btn {
  color: var(--color-text);
}

.nav__menu-btn span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: currentColor;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

/* ── Mobile menu — full-screen takeover when hamburger is tapped ─── */
/* Default state: panel hidden off-canvas. Only revealed below 768px
   when .nav--mobile-open is added by JS. */
.nav__mobile-panel {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(16px);
  z-index: 90;             /* below the nav bar (z=100) so close-X stays clickable */
  padding: 96px 32px 48px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 240ms ease, transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1);
  visibility: hidden;
}
.nav--mobile-open .nav__mobile-panel {
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}
.nav__mobile-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.nav__mobile-list a {
  font-family: var(--font-display, var(--font-mono));
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #FAF7EC;
  text-decoration: none;
  display: inline-block;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: border-color 160ms ease, color 160ms ease;
}
.nav__mobile-list a:hover,
.nav__mobile-list a:focus-visible {
  border-bottom-color: #FAF7EC;
  outline: none;
}
.nav__mobile-meta {
  margin-top: auto;
  padding-top: 32px;
  border-top: 1px solid rgba(250, 247, 236, 0.12);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(250, 247, 236, 0.62);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.nav__mobile-meta a {
  color: rgba(250, 247, 236, 0.85);
  text-decoration: none;
}

/* Hamburger morphs into an X when open */
.nav--mobile-open .nav__menu-btn {
  color: #FAF7EC !important;
  z-index: 110;
  position: relative;
}
.nav--mobile-open .nav__menu-btn span:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}
.nav--mobile-open .nav__menu-btn span:nth-child(2) {
  transform: translateY(-3.5px) rotate(-45deg);
}

/* Lock the body scroll when menu is open */
body.body--menu-open {
  overflow: hidden;
}

/* The mobile panel only matters at mobile widths — desktop hides it. */
@media (min-width: 769px) {
  .nav__mobile-panel { display: none !important; }
}

/* ========================================================
   HERO
   ======================================================== */

/* ============================================================
   HERO — Editorial Full-Bleed · Corner-Stamped
   Cinematic image, subtle bottom-gradient, type anchors edges.
   Center stays open. Born x Raised corner marks + Stampd scale.
   ============================================================ */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  background: #0A0A0A;
  isolation: isolate;
}

/* ── Full-bleed image layer ─────────────────────────────── */
.hero__frame {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  filter: saturate(0.86) contrast(1.04);
}

/* Subtle bottom-gradient only — lets the photograph speak */
.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(10,10,10,0.00) 0%,
      rgba(10,10,10,0.00) 48%,
      rgba(10,10,10,0.42) 80%,
      rgba(10,10,10,0.60) 100%
    ),
    linear-gradient(
      180deg,
      rgba(10,10,10,0.35) 0%,
      rgba(10,10,10,0.00) 18%
    );
  pointer-events: none;
  z-index: 2;
}

/* ── Corner stamps (top-left / top-right) ───────────────── */
.hero__stamp {
  position: absolute;
  z-index: 4;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(244, 242, 236, 0.78);
  line-height: 1.6;
  white-space: nowrap;
}
.hero__stamp strong      { color: #F4F2EC; font-weight: 600; }
.hero__stamp em          { font-style: normal; font-weight: 400; color: rgba(244,242,236,0.55); margin-right: 6px; }
.hero__stamp-sep         { color: rgba(244,242,236,0.42); }
.hero__stamp-arrow       { color: rgba(244,242,236,0.42); margin: 0 4px; }

.hero__stamp--tl { top: 36px; left: 40px; }
.hero__stamp--tr { top: 36px; right: 40px; text-align: right; }

/* ── Bottom-left anchor: wordmark + tagline ─────────────── */
.hero__anchor {
  position: absolute;
  bottom: 56px;
  left: 40px;
  z-index: 4;
  max-width: 90%;
}

/* Wordmark lockup: HYBRIDA display, with LAB / EST. / route sub-line. */
.hero__wordmark {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero__wordmark-main {
  display: block;
  font-family: var(--font-mono);
  font-weight: 500;
  /* Editorial presence. Poster tracking. */
  font-size: clamp(36px, 6vw, 88px);
  line-height: 0.98;
  letter-spacing: 0.02em;
  color: #F4F2EC;
  text-transform: none;
}
.hero__wordmark-sub {
  display: block;
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: clamp(8px, 0.85vw, 11px);
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: rgba(244, 242, 236, 0.52);
  padding-top: 4px;
  border-top: 1px solid rgba(244, 242, 236, 0.22);
}

/* Tagline: Pause. — Decide. — Proceed. */
.hero__tagline {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 22px 0 0;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(244,242,236,0.76);
}
.hero__tagline span {
  display: inline-flex;
  align-items: center;
}
.hero__tagline span:not(:last-child)::after {
  content: '';
  display: inline-block;
  width: 14px;
  height: 1px;
  background: rgba(244,242,236,0.40);
  margin-left: 14px;
}

/* ── Bottom-right scroll indicator ──────────────────────── */
.hero__scroll {
  position: absolute;
  bottom: 56px;
  right: 40px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  text-decoration: none;
  color: rgba(244,242,236,0.72);
  transition: color 220ms ease;
}
.hero__scroll:hover,
.hero__scroll:focus-visible { color: #F4F2EC; outline: none; }

.hero__scroll-num {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: inherit;
}
.hero__scroll-label {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(244,242,236,0.55);
}
.hero__scroll-line {
  display: block;
  width: 1px;
  height: 44px;
  background: rgba(244,242,236,0.28);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: #F4F2EC;
  animation: heroScrollPulse 2400ms cubic-bezier(0.76, 0, 0.24, 1) infinite;
}
@keyframes heroScrollPulse {
  0%   { transform: translateY(-110%); }
  100% { transform: translateY(260%); }
}

/* ── Bottom-center: Kiko signature mark ─────────────────── */
.hero__kiko-mark {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.44em;
  text-transform: uppercase;
  color: rgba(244,242,236,0.32);
  white-space: nowrap;
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero__stamp--tl,
  .hero__stamp--tr { font-size: 9px; letter-spacing: 0.22em; }
  .hero__anchor    { left: 32px; bottom: 48px; }
  .hero__scroll    { right: 32px; bottom: 48px; }
}

@media (max-width: 900px) {
  .hero__stamp--tl,
  .hero__stamp--tr { top: 24px; }
  .hero__stamp--tl { left: 24px; }
  .hero__stamp--tr { right: 24px; max-width: 56%; white-space: normal; line-height: 1.7; text-align: right; }
  .hero__anchor    { left: 24px; bottom: 44px; }
  .hero__wordmark-main { font-size: clamp(32px, 8vw, 64px); letter-spacing: 0.02em; }
  .hero__wordmark-sub  { letter-spacing: 0.26em; font-size: 9px; }
  .hero__tagline   { font-size: 9px; letter-spacing: 0.26em; gap: 10px; margin-top: 16px; }
  .hero__tagline span:not(:last-child)::after { width: 10px; margin-left: 10px; }
  .hero__scroll    { right: 24px; bottom: 44px; }
  .hero__scroll-num { font-size: 9px; }
  .hero__kiko-mark { bottom: 14px; font-size: 7px; letter-spacing: 0.32em; }
}

@media (max-width: 540px) {
  /* On phones the two top stamps overlap each other. Hide the long
     coordinates stamp here — the drop-stamp on the left keeps the visual
     anchor; the city pair already shows in the bottom-left wordmark sub. */
  .hero__stamp--tr { display: none; }
  .hero__stamp--tl {
    font-size: 8px;
    letter-spacing: 0.18em;
    max-width: calc(100% - 48px);  /* never crowd the right edge */
  }
  .hero__wordmark-main { font-size: clamp(28px, 10vw, 48px); }
  .hero__wordmark-sub  { letter-spacing: 0.22em; font-size: 8px; }
  .hero__tagline   { gap: 8px; font-size: 8px; letter-spacing: 0.20em; }
  .hero__tagline span:not(:last-child)::after { width: 8px; margin-left: 8px; }
  .hero__kiko-mark { display: none; }
}


/* ============================================================
   ESSENTIALS — Daily-driver lineup
   Light cream section sandwiched between Hero (full-bleed image)
   and Drop (warm charcoal). Provides palette breath. Three-tile
   grid; each tile is a self-contained mini-PDP launcher.
   ============================================================ */

.essentials {
  position: relative;
  background: #EDE8D9;          /* warm Urban Fog cream */
  color: #15181A;
  padding: 88px 48px 96px;
  overflow: hidden;
  border-top: 1px solid rgba(21, 24, 26, 0.10);
  border-bottom: 1px solid rgba(21, 24, 26, 0.10);
}

/* Faint cross-hatch backdrop for tactility */
.essentials::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(45deg, rgba(21,24,26,0.025) 25%, transparent 25%, transparent 75%, rgba(21,24,26,0.025) 75%),
    linear-gradient(45deg, rgba(21,24,26,0.025) 25%, transparent 25%, transparent 75%, rgba(21,24,26,0.025) 75%);
  background-size: 12px 12px;
  background-position: 0 0, 6px 6px;
  pointer-events: none;
  opacity: 0.7;
}

.essentials > * { position: relative; z-index: 1; }

/* Corner stamps */
.essentials__stamps--top {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(21,24,26,0.62);
  margin-bottom: 56px;
}
.essentials__stamp strong { color: #15181A; font-weight: 600; }
.essentials__stamp-sep    { opacity: 0.5; padding: 0 6px; }

/* Heading block */
.essentials__head {
  max-width: 720px;
  margin: 0 auto 64px;
  text-align: center;
}
.essentials__eyebrow {
  display: block;
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 11px;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: rgba(21,24,26,0.55);
  margin-bottom: 18px;
}
.essentials__title {
  font-family: var(--font-display, 'Mona Sans', system-ui);
  font-size: clamp(56px, 8vw, 104px);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.025em;
  text-transform: none;
  margin: 0 0 24px;
  color: #15181A;
}
.essentials__title-em {
  font-style: italic;
  font-weight: 400;
  color: rgba(21,24,26,0.70);
}
.essentials__sub {
  font-family: var(--font-body, 'Inter', system-ui);
  font-size: 14px;
  line-height: 1.65;
  letter-spacing: 0.005em;
  color: rgba(21,24,26,0.78);
  max-width: 560px;
  margin: 0 auto;
}

/* 3-tile editorial grid */
.essentials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1320px;
  margin: 0 auto;
}

.essentials__tile {
  background: #FAF7EC;          /* a half-shade lighter than the section */
  border: 1px solid rgba(21,24,26,0.12);
  cursor: pointer;
  transition: transform 280ms cubic-bezier(0.2, 0.8, 0.2, 1),
              box-shadow 280ms ease,
              border-color 200ms ease;
  display: flex;
  flex-direction: column;
}
.essentials__tile:hover,
.essentials__tile:focus-within {
  transform: translateY(-3px);
  box-shadow: 0 18px 48px -22px rgba(21,24,26,0.30);
  border-color: rgba(21,24,26,0.28);
  outline: none;
}

.essentials__tile-media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #E8E1CD;
}
.essentials__tile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;  /* favors upper torso, where the chest hit lives */
  transition: opacity 240ms ease, transform 600ms ease;
}
.essentials__tile:hover .essentials__tile-img {
  transform: scale(1.025);
}
.essentials__tile-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: rgba(21,24,26,0.78);
  color: #FAF7EC;
  padding: 5px 9px;
  border-radius: 1px;
  backdrop-filter: blur(2px);
}

.essentials__tile-meta {
  padding: 26px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.essentials__tile-title {
  font-family: var(--font-display, 'Mona Sans', system-ui);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0 0 4px;
  color: #15181A;
}
.essentials__tile-tag {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(21,24,26,0.55);
  margin: 0 0 14px;
}
.essentials__tile-blurb {
  font-family: var(--font-body, 'Inter', system-ui);
  font-size: 13px;
  line-height: 1.55;
  color: rgba(21,24,26,0.78);
  margin: 0 0 22px;
  flex: 1;
}

/* Swatch row */
.essentials__tile-swatches {
  display: flex;
  gap: 10px;
  margin-bottom: 22px;
}
.essentials__swatch {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(21,24,26,0.32);
  cursor: pointer;
  padding: 0;
  position: relative;
  transition: transform 160ms ease, border-color 160ms ease;
}
.essentials__swatch:hover {
  transform: scale(1.12);
  border-color: rgba(21,24,26,0.62);
}
.essentials__swatch.is-active {
  border: 1px solid #15181A;
  box-shadow: 0 0 0 2px #FAF7EC, 0 0 0 3px #15181A;
}
.essentials__swatch--cream  { background: #E9E1C9; }
.essentials__swatch--black  { background: #15181A; }
.essentials__swatch--grey   { background: #6F7378; }
.essentials__swatch--navy   { background: #1F2A3D; }
.essentials__swatch--white  { background: #F4F1E6; }
.essentials__swatch--green  { background: #2C4F3D; }
.essentials__swatch--red    { background: #B73224; }
.essentials__swatch--yellow { background: #D9A03A; }

/* Foot — price + CTA */
.essentials__tile-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid rgba(21,24,26,0.10);
}
.essentials__tile-price {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #15181A;
}
.essentials__tile-cta {
  background: #15181A;
  color: #FAF7EC;
  border: none;
  padding: 11px 18px;
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 160ms ease, padding 200ms ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.essentials__tile-cta:hover {
  background: #2C4F3D;
  padding-right: 22px;
}

/* Bottom rail */
.essentials__rail {
  margin-top: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(21,24,26,0.62);
}
.essentials__rail strong { color: #15181A; font-weight: 700; }
.essentials__rail-sep { opacity: 0.5; }

/* ── Tablet ─────────────────────────────────────── */
@media (max-width: 1100px) {
  .essentials__grid { gap: 24px; }
  .essentials      { padding: 72px 36px; }
  .essentials__head { margin-bottom: 48px; }
  .essentials__tile-meta { padding: 22px 20px 20px; }
}

/* ── Mobile-tablet ──────────────────────────────── */
@media (max-width: 900px) {
  .essentials__grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 540px;
  }
  .essentials__tile-media { aspect-ratio: 4 / 5; }
  .essentials__tile-img { object-position: center 25%; }
}

/* ── Mobile ─────────────────────────────────────── */
@media (max-width: 540px) {
  .essentials { padding: 56px 20px 64px; }
  .essentials__stamps--top {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 36px;
    font-size: 9px;
  }
  .essentials__head { margin-bottom: 36px; }
  .essentials__title { font-size: clamp(48px, 14vw, 72px); }
  .essentials__sub { font-size: 13px; }
  .essentials__tile-title { font-size: 24px; }
  .essentials__tile-blurb { font-size: 12.5px; }
  .essentials__rail {
    margin-top: 40px;
    font-size: 9px;
    letter-spacing: 0.18em;
  }
}


/* ============================================================
   LATEST DROP — Drop 001 Announcement
   Warm charcoal backdrop, product hero + spec column,
   corner stamps top and bottom. Continues the hero's dark
   palette before the scroll pivots back to beige.
   ============================================================ */

.drop {
  position: relative;
  min-height: 100vh;
  background: #15181A;    /* warm charcoal, not pure black */
  color: rgba(244,242,236,0.88);
  padding: 88px 48px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 48px;
}

/* ── Top / bottom stamp rows ─────────────────────────────── */
.drop__stamps {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}
.drop__stamps--bottom { align-items: flex-end; }

/* ── Drop Architecture inline block (merged from former Material Study) ── */
.drop__architecture {
  margin-top: 80px;
  padding-top: 56px;
  border-top: 1px solid rgba(244,242,236,0.10);
}
.drop__arch-divider {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 48px;
}
.drop__arch-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.40em;
  text-transform: uppercase;
  color: #F4F2EC;
  font-weight: 600;
  white-space: nowrap;
}
.drop__arch-line {
  flex: 1;
  height: 1px;
  background: rgba(244,242,236,0.18);
}
.drop__arch-id {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: rgba(244,242,236,0.42);
  white-space: nowrap;
}

.drop__arch-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.drop__arch-image {
  display: flex;
  align-items: center;
  justify-content: center;
}
.drop__arch-img {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  filter: saturate(0.92) contrast(1.04);
}

.drop__arch-text {
  padding-top: 8px;
  max-width: 520px;
}
.drop__arch-title {
  margin: 0 0 16px;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.005em;
  color: #F4F2EC;
}
.drop__arch-lead {
  margin: 0 0 18px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  line-height: 1.7;
  text-transform: uppercase;
  color: #F4F2EC;
  font-weight: 500;
}
.drop__arch-body {
  margin: 0 0 28px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.13em;
  line-height: 1.95;
  color: rgba(244,242,236,0.65);
  text-transform: uppercase;
}
.drop__arch-specs {
  margin: 0;
  padding: 22px 0 0;
  border-top: 1px solid rgba(244,242,236,0.12);
}
.drop__arch-specs-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  padding: 9px 0;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.drop__arch-specs-row dt {
  margin: 0;
  color: rgba(244,242,236,0.42);
}
.drop__arch-specs-row dd {
  margin: 0;
  color: #F4F2EC;
  font-weight: 500;
}

@media (max-width: 1100px) {
  .drop__arch-grid { gap: 48px; }
}
@media (max-width: 900px) {
  .drop__architecture { margin-top: 56px; padding-top: 36px; }
  .drop__arch-divider { gap: 12px; margin-bottom: 32px; }
  .drop__arch-label,
  .drop__arch-id      { font-size: 8px; letter-spacing: 0.26em; }
  .drop__arch-grid    { grid-template-columns: 1fr; gap: 32px; }
  .drop__arch-img     { max-width: 100%; aspect-ratio: 4/5; }
  .drop__arch-text    { padding-top: 0; }
  .drop__arch-title   { font-size: clamp(24px, 6vw, 36px); }
  .drop__arch-specs-row { grid-template-columns: 100px 1fr; gap: 12px; font-size: 9px; }
}
@media (max-width: 540px) {
  .drop__arch-divider { flex-wrap: wrap; }
  .drop__arch-line    { display: none; }
}

.drop__stamp {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: rgba(244,242,236,0.52);
  white-space: nowrap;
}
.drop__stamp strong   { color: #F4F2EC; font-weight: 600; }
.drop__stamp-sep      { color: rgba(244,242,236,0.35); }
.drop__stamp--tr,
.drop__stamp--br      { text-align: right; }

/* ── Body: product image + metadata column ─────────────── */
.drop__body {
  flex: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.drop__product {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
}
.drop__product-img {
  max-width: 100%;
  max-height: 66vh;
  height: auto;
  width: auto;
  object-fit: contain;
  filter: saturate(0.92) drop-shadow(0 40px 80px rgba(0,0,0,0.45));
}

/* ── Metadata column ─────────────────────────────────────── */
.drop__meta {
  max-width: 480px;
}

.drop__eyebrow {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(244,242,236,0.45);
  margin-bottom: 28px;
}

.drop__title {
  margin: 0 0 44px;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: clamp(52px, 7.8vw, 108px);
  line-height: 0.92;
  letter-spacing: -0.01em;
  color: #F4F2EC;
  text-transform: none;
}
.drop__title-index {
  display: inline-block;
  margin-top: 10px;
  font-style: italic;
  font-weight: 400;
  font-size: 0.42em;
  letter-spacing: 0.12em;
  color: rgba(244,242,236,0.50);
}

/* Spec rows — key/value list, bordered top and bottom */
.drop__specline {
  margin-bottom: 40px;
  padding: 22px 0;
  border-top:    1px solid rgba(244,242,236,0.16);
  border-bottom: 1px solid rgba(244,242,236,0.16);
}
.drop__specline-row {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 24px;
  padding: 9px 0;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  line-height: 1.55;
}
.drop__specline-key {
  color: rgba(244,242,236,0.42);
}
.drop__specline-val {
  color: #F4F2EC;
  font-weight: 500;
}

/* CTA button */
.drop__cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 15px 28px;
  background: transparent;
  border: 1px solid rgba(244,242,236,0.55);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: #F4F2EC;
  text-decoration: none;
  transition: background 260ms ease, color 260ms ease, border-color 260ms ease;
}
.drop__cta:hover,
.drop__cta:focus-visible {
  background: #F4F2EC;
  color: #15181A;
  border-color: #F4F2EC;
  outline: none;
}
.drop__cta-arrow {
  display: inline-block;
  transition: transform 260ms ease;
}
.drop__cta:hover .drop__cta-arrow,
.drop__cta:focus-visible .drop__cta-arrow { transform: translateX(5px); }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1100px) {
  .drop { padding: 72px 36px; }
  .drop__body { gap: 56px; }
  .drop__title { font-size: clamp(44px, 9vw, 84px); }
  .drop__meta { max-width: 420px; }
}

@media (max-width: 900px) {
  .drop { padding: 56px 28px; min-height: auto; gap: 40px; }
  .drop__stamps { font-size: 9px; }
  .drop__stamp  { font-size: 9px; letter-spacing: 0.20em; }
  .drop__body {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 16px 0;
  }
  .drop__product       { padding: 0; }
  .drop__product-img   { max-height: 50vh; }
  .drop__meta          { max-width: 100%; }
  .drop__title         { font-size: clamp(40px, 11vw, 68px); margin-bottom: 32px; }
  .drop__specline      { margin-bottom: 32px; padding: 18px 0; }
  .drop__specline-row  { grid-template-columns: 96px 1fr; gap: 16px; font-size: 9px; padding: 7px 0; }
  .drop__cta           { font-size: 9px; letter-spacing: 0.22em; padding: 13px 24px; }
}

@media (max-width: 540px) {
  .drop            { padding: 48px 20px; }
  .drop__stamps    { flex-direction: column; gap: 6px; }
  .drop__stamp--tr,
  .drop__stamp--br { text-align: left; }
}


/* ============================================================
   LOOKBOOK — Drop Campaign · 3 Vertical Editorial Frames
   Dark pivot before Manifesto. Placeholder plates swap for
   <img> elements when real campaign photography ships.
   ============================================================ */

.lookbook {
  position: relative;
  min-height: 100vh;
  background: #0E1012;
  color: rgba(244,242,236,0.88);
  display: flex;
  flex-direction: column;
}

.lookbook__eyebrow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 40px;
  border-bottom: 1px solid rgba(244,242,236,0.10);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(244,242,236,0.52);
  gap: 24px;
}
.lookbook__eyebrow-title {
  color: #F4F2EC;
  font-weight: 600;
  letter-spacing: 0.40em;
}

.lookbook__grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(244,242,236,0.06);
  min-height: 80vh;
}

.lookbook__frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #121518;
  transition: filter 420ms ease, transform 420ms ease;
}
.lookbook__frame:hover { filter: brightness(1.10); }

/* Real campaign photography — fills frame, keeps caption legible via veil */
.lookbook__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.92) contrast(1.02);
  transition: transform 620ms cubic-bezier(0.76, 0, 0.24, 1);
}
.lookbook__frame:hover .lookbook__img { transform: scale(1.03); }

/* Bottom-gradient veil so caption reads cleanly on any shot */
.lookbook__frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10,10,10,0.15) 0%,
    rgba(10,10,10,0.00) 35%,
    rgba(10,10,10,0.00) 55%,
    rgba(10,10,10,0.60) 100%
  );
  pointer-events: none;
  z-index: 1;
}
.lookbook__caption { z-index: 2; }

/* Placeholder plate: will be replaced by a real <img> element later.
   Uses the frame's --tone variable for a subtle per-frame color shift. */
.lookbook__plate {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,0.26) 0%,
      rgba(0,0,0,0.00) 48%,
      rgba(0,0,0,0.42) 100%
    ),
    radial-gradient(
      ellipse at 50% 32%,
      var(--tone, #1A1D20) 0%,
      #0E1012 100%
    );
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 22px;
}
.lookbook__plate::before {
  content: attr(data-label);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(244,242,236,0.26);
}

/* Caption — bottom-left + bottom-right of each frame */
.lookbook__caption {
  position: absolute;
  bottom: 26px;
  left: 26px;
  right: 26px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 2px 16px;
  font-family: var(--font-mono);
  text-transform: uppercase;
}
.lookbook__caption-phase {
  grid-column: 1;
  grid-row: 1;
  font-size: 13px;
  letter-spacing: 0.26em;
  color: rgba(244,242,236,0.45);
}
.lookbook__caption-phase strong {
  color: #F4F2EC;
  font-weight: 600;
}
.lookbook__caption-meta {
  grid-column: 1;
  grid-row: 2;
  font-size: 9px;
  letter-spacing: 0.26em;
  color: rgba(244,242,236,0.58);
  margin-top: 4px;
}
.lookbook__caption-date {
  grid-column: 2;
  grid-row: 1 / -1;
  align-self: end;
  font-size: 8px;
  letter-spacing: 0.34em;
  color: rgba(244,242,236,0.35);
}

/* CTA at bottom of section */
.lookbook__cta {
  display: inline-flex;
  align-self: center;
  align-items: center;
  gap: 14px;
  margin: 40px auto;
  padding: 14px 28px;
  background: transparent;
  border: 1px solid rgba(244,242,236,0.42);
  color: rgba(244,242,236,0.82);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  transition: background 260ms, color 260ms, border-color 260ms;
}
.lookbook__cta:hover,
.lookbook__cta:focus-visible {
  background: #F4F2EC;
  color: #0E1012;
  border-color: #F4F2EC;
  outline: none;
}
.lookbook__cta-arrow { display: inline-block; transition: transform 260ms; }
.lookbook__cta:hover .lookbook__cta-arrow,
.lookbook__cta:focus-visible .lookbook__cta-arrow { transform: translateX(5px); }

/* Responsive — stack to single column, each frame ~64vh */
@media (max-width: 900px) {
  .lookbook__eyebrow {
    padding: 16px 24px;
    font-size: 8px;
    letter-spacing: 0.22em;
  }
  .lookbook__eyebrow-title { letter-spacing: 0.28em; }
  .lookbook__grid          { grid-template-columns: 1fr; min-height: auto; }
  .lookbook__frame         { min-height: 60vh; }
  .lookbook__caption-phase { font-size: 12px; }
  .lookbook__cta           { margin: 26px auto; padding: 12px 22px; font-size: 9px; letter-spacing: 0.22em; }
}

@media (max-width: 540px) {
  .lookbook__eyebrow {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    padding: 14px 20px;
  }
  .lookbook__eyebrow-left,
  .lookbook__eyebrow-right { color: rgba(244,242,236,0.38); }
  .lookbook__caption       { bottom: 20px; left: 20px; right: 20px; }
}


/* ============================================================
   LOOKBOOK MODAL — full archive grid (12 frames)
   Fires from .lookbook__cta. Same takeover pattern as PDP.
   ============================================================ */

.lb-modal {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: none;
  background: #0E1012;
  overflow: hidden;
}
.lb-modal--active {
  display: flex;
  flex-direction: column;
  animation: lbFadeIn 320ms ease-out;
}
@keyframes lbFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.lb-modal__bar {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 56px;
  border-bottom: 1px solid rgba(244,242,236,0.10);
  background: #0E1012;
}
.lb-modal__title {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(244,242,236,0.60);
}
.lb-modal__title strong  { color: #F4F2EC; font-weight: 600; }
.lb-modal__sep           { color: rgba(244,242,236,0.32); }

.lb-modal__close {
  background: none;
  border: none;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(244,242,236,0.65);
  cursor: pointer;
  padding: 6px 0;
  transition: color 220ms;
}
.lb-modal__close:hover,
.lb-modal__close:focus-visible { color: #F4F2EC; outline: none; }

.lb-modal__grid {
  flex: 1;
  overflow-y: auto;
  padding: 32px 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  align-content: start;
}
.lb-modal__frame {
  position: relative;
  margin: 0;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #15181A;
  cursor: pointer;
  transition: filter 320ms, transform 420ms cubic-bezier(0.76, 0, 0.24, 1);
}
.lb-modal__frame:hover { filter: brightness(1.08); }
.lb-modal__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 520ms cubic-bezier(0.76, 0, 0.24, 1);
}
.lb-modal__frame:hover .lb-modal__img { transform: scale(1.05); }

.lb-modal__foot {
  flex: 0 0 auto;
  padding: 14px 40px;
  border-top: 1px solid rgba(244,242,236,0.10);
  background: #0E1012;
  text-align: center;
}
.lb-modal__foot-tag {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(244,242,236,0.42);
}

@media (max-width: 1100px) {
  .lb-modal__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 800px) {
  .lb-modal__bar  { padding: 0 24px; height: 48px; }
  .lb-modal__grid { grid-template-columns: repeat(2, 1fr); padding: 24px; gap: 6px; }
  .lb-modal__foot { padding: 12px 24px; }
  .lb-modal__title { font-size: 9px; letter-spacing: 0.24em; }
}
@media (max-width: 540px) {
  /* At one column, the grid aspect-ratio trick fails on some iOS Safari
     versions, leaving images squeezed into thin horizontal strips. Switch
     to a flex column where each image renders at its natural ratio. */
  .lb-modal__grid {
    display: flex;
    flex-direction: column;
    padding: 18px 18px 28px;
    gap: 8px;
  }
  .lb-modal__frame {
    aspect-ratio: auto;
    width: 100%;
    height: auto;
  }
  .lb-modal__img {
    width: 100%;
    height: auto;
    object-fit: initial;
    display: block;
  }
}


/* ============================================================
   SIZE GUIDE MODAL — fires from footer "Size Guide" button
   Beige editorial canvas, mono typography, tabular spec data.
   ============================================================ */

.sg-modal {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: none;
  background: var(--skin-bg);
  overflow: hidden;
}
.sg-modal--active {
  display: flex;
  flex-direction: column;
  animation: sgFadeIn 320ms ease-out;
}
@keyframes sgFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.sg-modal__bar {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 56px;
  border-bottom: 1px solid rgba(10,10,10,0.10);
  background: var(--skin-bg);
}
.sg-modal__title {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(10,10,10,0.55);
}
.sg-modal__title strong { color: #0A0A0A; font-weight: 600; }
.sg-modal__sep          { color: rgba(10,10,10,0.32); }

.sg-modal__close {
  background: none;
  border: none;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(10,10,10,0.55);
  cursor: pointer;
  padding: 6px 0;
  transition: color 220ms;
}
.sg-modal__close:hover,
.sg-modal__close:focus-visible { color: #0A0A0A; outline: none; }

.sg-modal__body {
  flex: 1;
  overflow-y: auto;
  padding: 56px 40px;
  max-width: 960px;
  margin: 0 auto;
  width: 100%;
}

.sg-modal__intro {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.10em;
  line-height: 1.85;
  color: rgba(10,10,10,0.62);
  text-transform: uppercase;
  max-width: 64ch;
  margin: 0 0 56px;
}

.sg-modal__section {
  margin-bottom: 56px;
}
.sg-modal__section-title {
  margin: 0 0 20px;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0A0A0A;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(10,10,10,0.18);
}

.sg-modal__table-wrap {
  overflow-x: auto;
}
.sg-modal__table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
}
.sg-modal__table th,
.sg-modal__table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid rgba(10,10,10,0.10);
}
.sg-modal__table th {
  font-size: 9px;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: rgba(10,10,10,0.45);
  font-weight: 500;
  border-bottom: 1px solid rgba(10,10,10,0.20);
}
.sg-modal__table td {
  color: #0A0A0A;
}
.sg-modal__table tbody tr:hover {
  background: rgba(10,10,10,0.02);
}

.sg-modal__note {
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid rgba(10,10,10,0.12);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.10em;
  line-height: 1.75;
  color: rgba(10,10,10,0.55);
  text-transform: uppercase;
}
.sg-modal__note a {
  color: #0A0A0A;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.sg-modal__foot {
  flex: 0 0 auto;
  padding: 14px 40px;
  border-top: 1px solid rgba(10,10,10,0.10);
  background: var(--skin-bg);
  text-align: center;
}
.sg-modal__foot-tag {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(10,10,10,0.40);
}

@media (max-width: 800px) {
  .sg-modal__bar     { padding: 0 24px; height: 48px; }
  .sg-modal__title   { font-size: 9px; letter-spacing: 0.24em; }
  .sg-modal__body    { padding: 36px 24px; }
  .sg-modal__intro   { font-size: 11px; letter-spacing: 0.08em; margin-bottom: 36px; }
  .sg-modal__section { margin-bottom: 36px; }
  .sg-modal__section-title { font-size: 15px; letter-spacing: 0.10em; }
  .sg-modal__table th,
  .sg-modal__table td { padding: 10px 12px; font-size: 11px; }
  .sg-modal__foot    { padding: 12px 24px; }
}
@media (max-width: 540px) {
  .sg-modal__body    { padding: 24px 18px; }
  .sg-modal__table th,
  .sg-modal__table td { padding: 8px 10px; font-size: 10px; }
}


/* ========================================================
   SIGNALS — Hybrid Narrative (Directive 2)
   ======================================================== */

.signals {
  padding: clamp(var(--space-16), 10vw, var(--space-32)) var(--space-6);
  background: var(--color-bg);
}

.signals__inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: start;
}

.signals__label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: var(--space-4);
}

.signals__heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-2xl);
  line-height: 1.05;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.signals__body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 52ch;
}

.signals__body + .signals__body {
  margin-top: var(--space-4);
}

/* ========================================================
   MATERIAL STUDY — 001 / The 'Why'
   ======================================================== */

.material-study {
  background: #2A2A28;
  padding: clamp(var(--space-16), 8vw, var(--space-24)) var(--space-6);
}

.material-study__inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-8), 5vw, var(--space-20));
  align-items: center;
}

.material-study__image-col {
  overflow: hidden;
  position: relative;
  border-radius: 0;
}

.material-study__img {
  width: 100%;
  display: block;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center;
  /* Tuned for real photography — keep colors honest, gentle bump to contrast */
  filter: saturate(0.92) contrast(1.04);
  transition: transform var(--transition-smooth);
  border-radius: 0;
}

.material-study__image-col:hover .material-study__img {
  transform: scale(1.02);
}

.material-study__archive-id {
  position: absolute;
  bottom: var(--space-4);
  left: var(--space-4);
  font-family: var(--font-mono);
  font-size: 7px;
  font-weight: 500;
  color: rgba(245, 244, 240, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  background: rgba(26, 26, 26, 0.55);
  padding: 4px 8px;
  backdrop-filter: blur(4px);
  pointer-events: none;
}

.material-study__text-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.material-study__label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: rgba(245, 244, 240, 0.22);
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.material-study__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: var(--text-2xl);
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.93;
}

.material-study__lead {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: rgba(245, 244, 240, 0.72);
  line-height: 1.3;
  letter-spacing: -0.01em;
  padding: var(--space-4) 0;
  border-top: 1px solid rgba(245, 244, 240, 0.08);
  border-bottom: 1px solid rgba(245, 244, 240, 0.08);
  margin: 0;
}

.material-study__body {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: rgba(245, 244, 240, 0.5);
  line-height: 1.8;
  max-width: 50ch;
}

.material-study__specs {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(245, 244, 240, 0.08);
}

.material-study__spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-3) 0;
  border-bottom: 1px solid rgba(245, 244, 240, 0.05);
}

.material-study__spec-key {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(245, 244, 240, 0.28);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.material-study__spec-val {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(245, 244, 240, 0.78);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.material-study__cta {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(245, 244, 240, 0.65);
  border: 1px solid rgba(245, 244, 240, 0.22);
  padding: var(--space-3) var(--space-6);
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  border-radius: 0;
  margin-top: var(--space-2);
}

.material-study__cta:hover {
  color: #1a1a1a;
  background: rgba(245, 244, 240, 0.92);
  border-color: rgba(245, 244, 240, 0.92);
}

/* ---- Section Divider — thin HR between Material Study & Archive ---- */
.section-divider {
  border: none;
  border-top: 1px solid rgba(245, 244, 240, 0.07);
  margin: 0;
  background: #2A2A28;
}

/* ========================================================
   COLOR REGISTRY — 5×2 Big Block Grid
   ======================================================== */

.color-registry {
  background: #0D0D0D;
  padding: 0 0 15vh;
  overflow: hidden;
}

/* Section label — same vocab as Material Study, Journal, Origin */
.color-registry__label {
  padding: 36px 40px 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(10,10,10,0.42);
}

/* 5-col × 2-row grid — 100vh total */
.signal-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  /* auto rows so the collapsed drawer row can fully disappear;
     card height is guaranteed below via .signal-col min-height */
  grid-auto-rows: auto;
  width: 100%;
  min-height: 100vh;
  border: 1px solid #E8E6E1;
}

/* ---- Block ---- */
.signal-col {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-right: 1px solid #E8E6E1;
  border-bottom: 1px solid #E8E6E1;
  min-height: 50vh;   /* cards own their own row height now */
}

/* remove redundant edges */
.signal-col:nth-child(5n) { border-right: none; }
.signal-col:nth-child(n+6) { border-bottom: none; }
/* ---- Technical spec overlay — quiet, always present ---- */
.signal-col::after {
  content: '280 GSM / 100% COTTON';
  position: absolute;
  top: 16px;
  right: 12px;
  font-family: var(--font-mono);
  font-size: 6px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--col-text-dim, rgba(232,230,225,0.22));
  line-height: 1;
  text-align: right;
  z-index: 4;
  pointer-events: none;
  transition: opacity 0.28s linear;
}

.signal-col:hover::after {
  opacity: 0;
}



/* Background slab */
.signal-col::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--col-bg, #1A1A1A);
  z-index: 0;
  transition: filter 0.28s linear;
}

.signal-col:hover::before {
  filter: brightness(0.48) saturate(0.65);
}

/* ---- Vertical ID tag — top-left, always present ---- */
.signal-col__id {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  writing-mode: vertical-rl;
  font-family: var(--font-mono);
  font-size: 7px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--col-text-dim, rgba(232,230,225,0.3));
  z-index: 4;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  transition: opacity 0.28s linear;
}

.signal-col:hover .signal-col__id {
  opacity: 0;
}

/* ---- Shirt image — 10% inset, contain ---- */
.signal-col__img-wrap {
  position: absolute;
  inset: 10%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.28s linear;
}

.signal-col:hover .signal-col__img-wrap {
  opacity: 1;
}

.signal-col__img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
  display: block;
  filter: saturate(0.35) contrast(1.14) brightness(0.88);
}

/* ---- Centered ghost CTA ---- */
.signal-col__cta-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  opacity: 0;
  transition: opacity 0.28s linear 0.08s;
  pointer-events: none;
}

.signal-col:hover .signal-col__cta-wrap {
  opacity: 1;
  pointer-events: auto;
}

.signal-col__atc {
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--col-text-on, rgba(232,230,225,0.88));
  border: 1px solid var(--col-text-mid, rgba(232,230,225,0.5));
  background: transparent;
  padding: 8px 16px;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.18s linear, background 0.18s linear, border-color 0.18s linear;
}

.signal-col__atc:hover {
  background: var(--col-text-on, rgba(232,230,225,0.9));
  color: var(--col-bg, #1A1A1A);
  border-color: transparent;
}

.signal-col__atc--added {
  color: rgba(0,107,63,0.9) !important;
  border-color: rgba(0,107,63,0.4) !important;
  background: transparent !important;
}

/* ---- Bottom info bar ---- */
.signal-col__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 14px 12px;
  z-index: 4;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.28s linear, transform 0.28s linear;
  border-top: 1px solid rgba(232,230,225,0.08);
}

.signal-col:hover .signal-col__info {
  opacity: 1;
  transform: translateY(0);
}

.signal-col__info-left {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.signal-col__colorname {
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--col-text-on, rgba(232,230,225,0.9));
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.signal-col__hexcode {
  font-family: var(--font-mono);
  font-size: 7px;
  letter-spacing: 0.12em;
  color: var(--col-text-mid, rgba(232,230,225,0.55));
  text-transform: uppercase;
}

.signal-col__behavior {
  font-family: var(--font-mono);
  font-size: 7.5px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--col-text-mid, rgba(232,230,225,0.6));
  margin: 0;
  text-align: right;
  flex-shrink: 0;
  max-width: 50%;
  word-break: break-word;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .signal-grid {
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(2, 50vw);
    height: auto;
  }
  /* Same fix as the 600px breakpoint: rows here are 50vw, so cards must
     not insist on min-height: 50vh (which is taller on portrait orientation
     and would push content into adjacent cards). */
  .signal-col { min-height: 50vw; }
}

@media (max-width: 600px) {
  .signal-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(5, 50vw);
    height: auto;
  }
  /* Cards default to min-height: 50vh (designed for 5-up landscape rows).
     At mobile we run a 2-up grid where rows are 50vw — match the card
     min-height to the row so the card doesn't overflow into the next one
     on hover/tap (was causing the colorway overlay to bleed across cards). */
  .signal-col { min-height: 50vw; }

  .signal-col:nth-child(5n)  { border-right: 1px solid #E8E6E1; }
  .signal-col:nth-child(n+6) { border-bottom: 1px solid #E8E6E1; }
  .signal-col:nth-child(2n)  { border-right: none; }
  .signal-col:nth-child(n+9) { border-bottom: none; }
}


/* ========================================================
   ETHOS
   ======================================================== */

.ethos {
  padding: clamp(var(--space-16), 10vw, var(--space-32)) var(--space-6);
  background: var(--color-bg);
  border-top: 1px solid var(--color-divider);
}

.ethos__inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.ethos-block {
  padding: var(--space-8) 0;
  border-top: 2px solid var(--color-primary);
}

.ethos-block__number {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  letter-spacing: 0.15em;
  margin-bottom: var(--space-4);
}

.ethos-block__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-lg);
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: var(--space-3);
}

.ethos-block__desc {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* ========================================================
   MARQUEE
   ======================================================== */

.marquee {
  padding: var(--space-6) 0;
  background: var(--color-primary);
  overflow: hidden;
  white-space: nowrap;
}

.marquee__track {
  display: flex;
  gap: var(--space-12);
  animation: marquee 25s linear infinite;
  width: fit-content;
}

.marquee__item {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: var(--text-xl);
  color: rgba(214, 210, 196, 0.25);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  flex-shrink: 0;
}

.marquee__item--active {
  color: var(--color-text-inverse);
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========================================================
   FOOTER — Complete Ecosystem (Directive 5)
   ======================================================== */

.footer {
  background: var(--color-black);
  padding: clamp(var(--space-12), 8vw, var(--space-20)) var(--space-6);
}

.footer__inner {
  max-width: var(--content-wide);
  margin: 0 auto;
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: var(--space-8);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid rgba(245, 244, 240, 0.1);
}

.footer__col-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(245, 244, 240, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: var(--space-4);
}

.footer__col-link {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: rgba(245, 244, 240, 0.6);
  text-decoration: none;
  padding: var(--space-1) 0;
}

.footer__col-link:hover {
  color: var(--color-white);
}

.footer__col-static {
  cursor: default;
}

.footer__col-static:hover {
  color: rgba(245, 244, 240, 0.6);
}

.footer__col-static--emphasis {
  color: rgba(245, 244, 240, 0.8);
  font-style: italic;
}

.footer__col-link--ig {
  display: flex;
  align-items: center;
  color: rgba(245, 244, 240, 0.7);
}

.footer__col-link--ig:hover {
  color: var(--color-white);
}

/* Footer Size Guide button — looks like a link */
.footer__col-btn {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  text-align: left;
  font: inherit;
  cursor: pointer;
  color: inherit;
  display: block;
}

/* Newsletter capture (Drop Alerts column) */
.footer__col-newsletter-blurb {
  margin: 0 0 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  line-height: 1.55;
  color: rgba(245, 244, 240, 0.55);
  max-width: 24ch;
}

.footer__newsletter {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 8px;
  border: 1px solid rgba(245, 244, 240, 0.20);
  transition: border-color 200ms;
}
.footer__newsletter:focus-within {
  border-color: rgba(245, 244, 240, 0.55);
}
.footer__newsletter-input {
  flex: 1;
  background: transparent;
  border: none;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.10em;
  color: rgba(245, 244, 240, 0.85);
  padding: 10px 12px;
  outline: none;
  min-width: 0;
}
.footer__newsletter-input::placeholder {
  color: rgba(245, 244, 240, 0.30);
}
.footer__newsletter-btn {
  background: rgba(245, 244, 240, 0.08);
  border: none;
  border-left: 1px solid rgba(245, 244, 240, 0.20);
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
  color: rgba(245, 244, 240, 0.85);
  padding: 10px 16px;
  cursor: pointer;
  transition: background 200ms, color 200ms;
}
.footer__newsletter-btn:hover,
.footer__newsletter-btn:focus-visible {
  background: rgba(245, 244, 240, 0.85);
  color: var(--color-primary, #0A0A0A);
  outline: none;
}
.footer__newsletter-msg {
  display: block;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(245, 244, 240, 0.55);
  min-height: 14px;
  margin-top: 4px;
}
.footer__newsletter-msg--ok      { color: rgba(180, 240, 180, 0.80); }
.footer__newsletter-msg--error   { color: rgba(240, 180, 180, 0.80); }

/* Kiko Mascot — safety space = sunglasses width (~20% mascot width) */
.footer__mascot {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-12) 0;
}

.footer__mascot-wrapper {
  width: 140px;
  /* Safety space on all sides = sunglasses width ≈ 28px (20% of 140px) */
  padding: 28px;
}

.footer__mascot-wrapper svg {
  width: 100%;
  height: auto;
  opacity: 0.4;
  transition: opacity var(--transition-fast);
}

.footer__mascot-wrapper:hover svg {
  opacity: 0.7;
}

.footer__bottom {
  padding-top: var(--space-8);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__copyright {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(245, 244, 240, 0.25);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.footer__attribution {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(245, 244, 240, 0.2);
  text-decoration: none;
  letter-spacing: 0.1em;
}

.footer__attribution:hover {
  color: rgba(245, 244, 240, 0.5);
}

/* ========================================================
   WHATSAPP FAB (Directive 4)
   ======================================================== */

.whatsapp-fab {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  z-index: 90;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.whatsapp-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}

/* ========================================================
   CART DRAWER
   ======================================================== */

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 150;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-smooth), visibility var(--transition-smooth);
}

.cart-overlay--open {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 380px;
  max-width: 90vw;
  background: #1a1a1a;
  z-index: 160;
  transform: translateX(100%);
  transition: transform var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.cart-drawer--open {
  transform: translateX(0);
}

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-6);
  border-bottom: 1px solid rgba(245, 244, 240, 0.08);
}

.cart-drawer__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-lg);
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cart-drawer__close {
  color: rgba(245, 244, 240, 0.5);
  font-size: 18px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  background: none;
}

.cart-drawer__close:hover {
  color: var(--color-white);
}

.cart-drawer__items {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-4) var(--space-6);
}

.cart-drawer__empty {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: rgba(245, 244, 240, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-align: center;
  padding: var(--space-12) 0;
}

.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) 0;
  border-bottom: 1px solid rgba(245, 244, 240, 0.06);
}

.cart-item__info {
  flex: 1;
}

.cart-item__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--color-white);
}

.cart-item__serial {
  font-family: var(--font-mono);
  font-size: 9px;
  color: rgba(245, 244, 240, 0.25);
  letter-spacing: 0.2em;
  margin-top: 2px;
}

/* PDP items carry richer SKU info — show weight / size / qty above serial */
.cart-item__meta {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 244, 240, 0.55);
  margin-top: 4px;
}

.cart-item__right {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.cart-item__price {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  color: var(--color-white);
  font-weight: 500;
}

.cart-item__remove {
  font-size: 12px;
  color: rgba(245, 244, 240, 0.3);
  cursor: pointer;
  background: none;
  border: none;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-item__remove:hover {
  color: #E05038;
}

.cart-drawer__footer {
  padding: var(--space-6);
  border-top: 1px solid rgba(245, 244, 240, 0.08);
}

.cart-drawer__total {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-lg);
  color: var(--color-white);
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}

.cart-drawer__checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  width: 100%;
  padding: var(--space-4);
  background: #25D366;
  color: var(--color-white);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border: none;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.cart-drawer__checkout:hover {
  background: #20bd5a;
}

/* ========================================================
   SCROLL REVEAL
   ======================================================== */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================================
   RESPONSIVE
   ======================================================== */

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__menu-btn { display: flex; }
  .nav { top: 26px; }
  .nav__logo-img { height: 22px; }

  .material-study__inner {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .material-study__img {
    aspect-ratio: 4/3;
  }

  .material-study__title {
    font-size: var(--text-xl);
  }

  .signals__inner {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .collection__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .color-registry__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .color-registry__header {
    align-items: flex-start;
    flex-direction: column;
    gap: var(--space-2);
  }

  .ethos__inner {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-3);
    text-align: center;
  }

  .hero__scroll { display: none; }

  .whatsapp-fab {
    width: 48px;
    height: 48px;
    bottom: var(--space-4);
    right: var(--space-4);
  }

  .whatsapp-fab svg {
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 480px) {
  .collection__grid {
    grid-template-columns: 1fr;
  }

  .color-registry__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__top {
    grid-template-columns: 1fr;
  }

  .collection__header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-2);
  }
}


/* ==============================================
   DIGITAL SPECIMEN ARCHIVE
   ============================================== */

.digital-specimen {
  position: relative;
  background: #080808;
  overflow: hidden;
  padding: 0 0 clamp(60px, 8vw, 120px);
}

/* Top bar -------------------------------------------------- */
.digital-specimen__topbar {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px clamp(24px, 5vw, 72px);
  border-bottom: 1px solid rgba(232, 230, 225, 0.10);
}

.digital-specimen__archive-tag {
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(232, 230, 225, 0.35);
  white-space: nowrap;
  flex-shrink: 0;
}

.digital-specimen__topbar-line {
  flex: 1;
  height: 1px;
  background: rgba(232, 230, 225, 0.08);
}

.digital-specimen__coord {
  font-family: var(--font-mono);
  font-size: 7px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(232, 230, 225, 0.22);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Main inner — two columns --------------------------------- */
.digital-specimen__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: clamp(48px, 7vw, 100px) clamp(24px, 5vw, 72px);
  align-items: start;
}

/* Left — headline ------------------------------------------ */
.digital-specimen__left {
  position: relative;
  padding-right: clamp(32px, 4vw, 64px);
  border-right: 1px solid rgba(232, 230, 225, 0.10);
}

.digital-specimen__eyebrow {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(232, 230, 225, 0.28);
  margin-bottom: 28px;
}

.digital-specimen__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #E8E6E1;
  margin: 0 0 40px;
}

/* Right — body + meta -------------------------------------- */
.digital-specimen__right {
  padding-left: clamp(32px, 4vw, 64px);
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.digital-specimen__body {
  font-family: var(--font-display);
  font-size: clamp(14px, 1.5vw, 17px);
  font-weight: 400;
  line-height: 1.72;
  color: rgba(232, 230, 225, 0.58);
  max-width: 52ch;
  margin: 0;
}

/* Metadata grid -------------------------------------------- */
.digital-specimen__meta {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(232, 230, 225, 0.10);
  border-bottom: 1px solid rgba(232, 230, 225, 0.10);
}

.digital-specimen__meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid rgba(232, 230, 225, 0.06);
  gap: 16px;
}

.digital-specimen__meta-row:last-child {
  border-bottom: none;
}

.digital-specimen__meta-key {
  font-family: var(--font-mono);
  font-size: 7.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(232, 230, 225, 0.30);
}

.digital-specimen__meta-val {
  font-family: var(--font-mono);
  font-size: 7.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(232, 230, 225, 0.62);
  text-align: right;
}

.digital-specimen__meta-val--live {
  color: #4A8F5C;
  position: relative;
}

.digital-specimen__meta-val--live::before {
  content: '●';
  margin-right: 6px;
  font-size: 6px;
  vertical-align: middle;
  animation: dsa-pulse 2s ease-in-out infinite;
}

@keyframes dsa-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.25; }
}

/* Scanlines ------------------------------------------------ */
.digital-specimen__scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0px,
    transparent 3px,
    rgba(0, 0, 0, 0.18) 3px,
    rgba(0, 0, 0, 0.18) 4px
  );
  pointer-events: none;
  z-index: 10;
  mix-blend-mode: multiply;
}

/* Bottom rule ---------------------------------------------- */
.digital-specimen__footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px clamp(24px, 5vw, 72px);
  border-top: 1px solid rgba(232, 230, 225, 0.08);
  margin-top: clamp(40px, 5vw, 72px);
}

.digital-specimen__footer-id {
  font-family: var(--font-mono);
  font-size: 7px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(232, 230, 225, 0.20);
}

.digital-specimen__footer-mark {
  font-family: var(--font-mono);
  font-size: 7px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(232, 230, 225, 0.32);
}

/* Responsive ----------------------------------------------- */
@media (max-width: 768px) {
  .digital-specimen__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .digital-specimen__left {
    border-right: none;
    border-bottom: 1px solid rgba(232, 230, 225, 0.10);
    padding-right: 0;
    padding-bottom: 40px;
  }

  .digital-specimen__right {
    padding-left: 0;
  }

  .digital-specimen__footer-bar {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}



/* ==============================================
   REGISTRY SWITCHER
   ============================================== */

.registry-switcher {
  background: #FAF9F6;
  border-bottom: 1px solid rgba(51, 51, 51, 0.12);
  position: sticky;
  top: 0;
  z-index: 20;
}

.registry-switcher__inner {
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.registry-switcher__inner::-webkit-scrollbar {
  display: none;
}

.registry-switcher__tab {
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(51, 51, 51, 0.38);
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 16px 32px 14px;
  cursor: pointer;
  transition: color 0.25s linear, border-color 0.25s linear;
  white-space: nowrap;
  position: relative;
}

.registry-switcher__tab:hover {
  color: rgba(51, 51, 51, 0.72);
}

.registry-switcher__tab--active {
  color: #333333;
  border-bottom-color: #333333;
}

/* Active indicator dot (alternative to underline) */
.registry-switcher__tab--active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 3px;
  background: #333333;
  border-radius: 50%;
}

/* ── Registry panels ─────────────────────────────── */

.registry-panels {
  position: relative;
}

.registry-panel {
  display: none;
  opacity: 0;
  transition: opacity 0.3s linear;
}

.registry-panel--active {
  display: block;
  opacity: 1;
}

/* Mobile tweaks */
@media (max-width: 768px) {
  .registry-switcher__tab {
    padding: 14px 20px 12px;
    font-size: 8px;
  }
}



/* ==============================================
   320G RESERVED / LAB_TAG slot
   ============================================== */

/* Diagonal stripe background for the reserved slot */
.signal-col--reserved::before {
  background: repeating-linear-gradient(
    -45deg,
    #0D0D0D 0px,
    #0D0D0D 18px,
    #141414 18px,
    #141414 20px
  ) !important;
  filter: none !important;
}

/* Reserved label — centered, mono, ghosted */
.signal-col__reserved-label {
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(232, 230, 225, 0.22);
  text-align: center;
  line-height: 2.2;
  pointer-events: none;
}

/* Show reserved label at partial opacity by default; fully on hover */
.signal-col--reserved .signal-col__img-wrap {
  opacity: 0.45;
  transition: opacity 0.28s linear;
}
.signal-col--reserved:hover .signal-col__img-wrap {
  opacity: 1;
}

/* On hover, dim the stripe even further */
.signal-col--reserved:hover::before {
  filter: brightness(0.32) !important;
}

/* Ghost the CTA differently for reserved */
.signal-col--reserved .signal-col__atc {
  border-color: rgba(232, 230, 225, 0.18);
  color: rgba(232, 230, 225, 0.45);
}
.signal-col--reserved .signal-col__atc:hover {
  background: rgba(232, 230, 225, 0.08);
  color: rgba(232, 230, 225, 0.70);
  border-color: rgba(232, 230, 225, 0.28);
}

/* Pulse the reserved-label on hover */
.signal-col--reserved:hover .signal-col__reserved-label {
  animation: reserved-pulse 2.4s ease-in-out infinite;
  color: rgba(232, 230, 225, 0.45);
}

@keyframes reserved-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}



/* ==============================================
   230G AIR — Spec Bar
   ============================================== */

.air230-spec-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 18px;
  padding: 12px clamp(16px, 3vw, 28px);
  background: #FAF9F6;
  border-bottom: 1px solid rgba(51, 51, 51, 0.10);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.air230-spec-bar::-webkit-scrollbar { display: none; }

.air230-spec-bar__item {
  font-family: var(--font-mono);
  font-size: 7px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(51, 51, 51, 0.55);
  white-space: nowrap;
}

.air230-spec-bar__item em {
  font-style: normal;
  font-weight: 700;
  color: rgba(51, 51, 51, 0.80);
  margin-right: 6px;
}

.air230-spec-bar__sep {
  font-family: var(--font-mono);
  font-size: 7px;
  color: rgba(51, 51, 51, 0.20);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .air230-spec-bar {
    gap: 8px 12px;
    padding: 10px 16px;
  }
}



/* ==============================================
   BILINGUAL KANJI COLORNAMES
   ============================================== */

/* Override font stack on colorname to load Noto Sans JP
   for Gothic/sans-serif Japanese rendering */
.signal-col__colorname {
  font-family:
    'Roboto Mono',
    'Noto Sans JP',
    'Hiragino Kaku Gothic ProN',
    'Hiragino Sans',
    'Yu Gothic UI',
    system-ui,
    -apple-system,
    sans-serif;
  font-weight: 600;
  /* Kanji renders at same weight as English via unified font-weight */
}

/* The // separator: slightly dimmed, same size */
.signal-col__colorname {
  /* Use word-spacing to breathe around // */
  word-spacing: 0.05em;
}

/* Ensure the switcher tab kanji series label inherits mono */
.registry-switcher__tab {
  font-family:
    'Roboto Mono',
    'Noto Sans JP',
    'Hiragino Kaku Gothic ProN',
    system-ui,
    sans-serif;
}

/* Smoother transition on colorname / info bar (150ms per spec) */
.signal-col__info {
  transition: opacity 0.15s linear, transform 0.15s linear;
}

.signal-col__colorname,
.signal-col__hexcode,
.signal-col__behavior {
  transition: opacity 0.15s linear;
}



/* ==============================================
   260G CORE — Collection Header + Spec Bar
   ============================================== */

/* Bilingual collection header */
.core260-header {
  background: #0D0D0D;
  padding: 18px clamp(16px, 3vw, 28px) 10px;
  border-bottom: 1px solid rgba(232, 230, 225, 0.06);
}

.core260-header__title {
  font-family:
    'Roboto Mono',
    'Noto Sans JP',
    'Hiragino Kaku Gothic ProN',
    'Hiragino Sans',
    system-ui, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: rgba(232, 230, 225, 0.55);
}

/* Spec bar */
.core260-spec-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 18px;
  padding: 12px clamp(16px, 3vw, 28px);
  background: #111110;
  border-bottom: 1px solid rgba(232, 230, 225, 0.08);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.core260-spec-bar::-webkit-scrollbar { display: none; }

.core260-spec-bar__item {
  font-family: var(--font-mono);
  font-size: 7px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(232, 230, 225, 0.38);
  white-space: nowrap;
}

.core260-spec-bar__item em {
  font-style: normal;
  font-weight: 700;
  color: rgba(232, 230, 225, 0.68);
  margin-right: 6px;
}

.core260-spec-bar__sep {
  font-family: var(--font-mono);
  font-size: 7px;
  color: rgba(232, 230, 225, 0.14);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .core260-header {
    padding: 14px 16px 8px;
  }
  .core260-spec-bar {
    padding: 10px 16px;
    gap: 8px 12px;
  }
}



/* ==============================================
   ARCHIVE DRAWER — Shinobi Protocol
   ============================================== */

/* Root container — fills viewport when open */
.archive-drawer {
  position: fixed;
  inset: 0;
  z-index: 300;
  pointer-events: none;
  visibility: hidden;
}

.archive-drawer--open {
  pointer-events: auto;
  visibility: visible;
}

/* ── Overlay backdrop ──────────────────────────── */
.archive-drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.58);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  cursor: pointer;
}

.archive-drawer--open .archive-drawer__overlay {
  opacity: 1;
}

/* ── Slide panel ───────────────────────────────── */
.archive-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: clamp(340px, 42vw, 560px);
  background: #F4F3F0;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 48px rgba(0,0,0,0.22);
}

.archive-drawer--open .archive-drawer__panel {
  transform: translateX(0);
}

/* ── Top bar ───────────────────────────────────── */
.archive-drawer__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(51,51,51,0.10);
  flex-shrink: 0;
}

.archive-drawer__file-tag {
  font-family: var(--font-mono);
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: rgba(51,51,51,0.38);
}

.archive-drawer__close {
  font-family: var(--font-mono);
  font-size: 7.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(51,51,51,0.55);
  background: transparent;
  border: 1px solid rgba(51,51,51,0.18);
  padding: 6px 12px;
  cursor: pointer;
  transition: color 0.18s linear, border-color 0.18s linear, background 0.18s linear;
  display: flex;
  align-items: center;
  gap: 6px;
}

.archive-drawer__close:hover {
  color: #1A1A1A;
  border-color: #1A1A1A;
  background: rgba(26,26,26,0.05);
}

.archive-drawer__close span {
  font-size: 14px;
  line-height: 1;
}

/* ── Title block ───────────────────────────────── */
.archive-drawer__head {
  padding: 20px 20px 16px;
  border-bottom: 1px solid rgba(51,51,51,0.08);
  flex-shrink: 0;
}

.archive-drawer__title {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: #1A1A1A;
  margin: 0;
  line-height: 1.5;
}

/* ── Primary image ─────────────────────────────── */
.archive-drawer__hero {
  flex-shrink: 0;
  background: #FFFFFF;
  border-bottom: 1px solid rgba(51,51,51,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  max-height: 52vh;
  overflow: hidden;
}

.archive-drawer__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* ── Metadata table ────────────────────────────── */
.archive-drawer__meta {
  flex-shrink: 0;
  padding: 4px 0;
  border-bottom: 1px solid rgba(51,51,51,0.08);
}

.archive-drawer__meta-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 20px;
  border-bottom: 1px solid rgba(51,51,51,0.05);
}

.archive-drawer__meta-row:last-child {
  border-bottom: none;
}

.archive-drawer__meta-key {
  font-family: var(--font-mono);
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(51,51,51,0.38);
  flex-shrink: 0;
}

.archive-drawer__meta-val {
  font-family: var(--font-mono);
  font-size: 7px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(51,51,51,0.78);
  text-align: right;
  word-break: break-word;
}

.archive-drawer__meta-val--active {
  color: #3A6B48;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Pulsing status dot */
.archive-drawer__pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3A6B48;
  display: inline-block;
  flex-shrink: 0;
  animation: drawer-pulse 2s ease-in-out infinite;
}

@keyframes drawer-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.3; transform: scale(0.7); }
}

/* ── Other modifications ───────────────────────── */
.archive-drawer__other {
  flex: 1;
  padding: 20px;
}

.archive-drawer__other-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 14px;
}

.archive-drawer__other-title {
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(51,51,51,0.50);
}

.archive-drawer__other-count {
  font-family: var(--font-mono);
  font-size: 7px;
  letter-spacing: 0.18em;
  color: rgba(51,51,51,0.28);
}

.archive-drawer__locked-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.archive-drawer__locked-file {
  background: #E2E0DC;
  border: 1px solid rgba(51,51,51,0.10);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px 8px;
  font-family: var(--font-mono);
  font-size: 6.5px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(51,51,51,0.32);
  text-align: center;
}

.archive-drawer__locked-icon {
  font-size: 18px;
  opacity: 0.18;
  display: block;
}

/* ── Mobile ────────────────────────────────────── */
@media (max-width: 600px) {
  .archive-drawer__panel {
    width: 100%;
  }
}


/* ==============================================
   PROTOCOL FOLDERS — Accordion inside Drawer
   ============================================== */

.archive-drawer__folders {
  flex: 1;
  padding: 20px 20px 32px;
  overflow-y: auto;
}

.archive-drawer__folders-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(51,51,51,0.10);
}

.archive-drawer__folders-label {
  font-family: var(--font-mono);
  font-size: 7.5px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(51,51,51,0.40);
}

.archive-drawer__folders-count {
  font-family: var(--font-mono);
  font-size: 6.5px;
  letter-spacing: 0.18em;
  color: rgba(51,51,51,0.22);
}

/* Individual folder */
.archive-folder {
  border-bottom: 1px solid rgba(51,51,51,0.08);
}

.archive-folder__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  appearance: none;
  -webkit-appearance: none;
}

.archive-folder__toggle:focus-visible {
  outline: 1px dashed rgba(51,51,51,0.30);
  outline-offset: 2px;
}

.archive-folder__icon {
  font-size: 6px;
  color: rgba(51,51,51,0.28);
  flex-shrink: 0;
}

.archive-folder__name {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #333;
  flex: 1;
}

.archive-folder__meta {
  font-family: var(--font-mono);
  font-size: 6.5px;
  letter-spacing: 0.14em;
  color: rgba(51,51,51,0.30);
  flex-shrink: 0;
}

.archive-folder__chevron {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 300;
  color: rgba(51,51,51,0.35);
  flex-shrink: 0;
  transition: transform 0.28s ease;
  line-height: 1;
}

.archive-folder--open .archive-folder__chevron {
  color: #333;
}

/* Folder body — accordion collapse */
.archive-folder__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease;
}

/* Folder thumbnail grid */
.archive-folder__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 4px 0 16px;
}

.archive-folder__thumb {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.archive-folder__img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  background: #E5E3DF;
  display: block;
}

.archive-folder__thumb-label {
  font-family: var(--font-mono);
  font-size: 5.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(51,51,51,0.38);
  line-height: 1.6;
}

.archive-folder__locked {
  background: #E8E6E2;
  border: 1px solid rgba(51,51,51,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  aspect-ratio: 3/4;
  font-family: var(--font-mono);
  font-size: 5.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(51,51,51,0.25);
  text-align: center;
}

.archive-folder__locked-sq {
  font-size: 12px;
  opacity: 0.14;
  display: block;
}


/* ==============================================
   ACTIVE SIGNALS — Protocol Entry Grid
   ============================================== */

.active-signals {
  background: #0A0A0A;
  padding: 80px 0;
  position: relative;
}

.active-signals__header {
  text-align: center;
  margin-bottom: 52px;
  padding: 0 24px;
}

.active-signals__eyebrow {
  display: block;
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: rgba(244, 243, 240, 0.30);
  margin-bottom: 14px;
}

.active-signals__title {
  font-family: var(--font-mono);
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #F4F3F0;
  margin: 0 0 10px;
}

.active-signals__sub {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244,243,240,0.28);
  margin: 0;
}

/* 3-column grid */
.active-signals__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (max-width: 768px) {
  .active-signals__grid {
    grid-template-columns: 1fr;
    gap: 2px;
    padding: 0 16px;
  }
}

/* Signal card */
.active-signals__card {
  display: flex;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  appearance: none;
  -webkit-appearance: none;
  position: relative;
  overflow: hidden;
  transition: opacity 0.25s ease;
}

.active-signals__card:hover {
  opacity: 0.88;
}

.active-signals__card:focus-visible {
  outline: 1px solid rgba(244,243,240,0.40);
  outline-offset: -1px;
}

.active-signals__img-wrap {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #1A1A1A;
  position: relative;
}

.active-signals__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: grayscale(22%) contrast(1.04);
  transition: transform 0.5s ease, filter 0.35s ease;
}

.active-signals__card:hover .active-signals__img {
  transform: scale(1.035);
  filter: grayscale(0%) contrast(1.06);
}

/* Card body */
.active-signals__card-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 16px 22px;
  border-top: 1px solid rgba(244,243,240,0.08);
  background: #0F0F0F;
}

.active-signals__card-id {
  font-family: var(--font-mono);
  font-size: 6px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(244,243,240,0.22);
}

.active-signals__card-name {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #F4F3F0;
  margin: 4px 0 2px;
}

.active-signals__card-desc {
  font-family: var(--font-mono);
  font-size: 7.5px;
  letter-spacing: 0.10em;
  color: rgba(244,243,240,0.35);
  line-height: 1.6;
}

.active-signals__card-cta {
  font-family: var(--font-mono);
  font-size: 7px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(244,243,240,0.45);
  margin-top: 10px;
  transition: color 0.2s ease;
}

.active-signals__card:hover .active-signals__card-cta {
  color: #F4F3F0;
}



/* ==============================================
   DRAWER-ENABLED SPECIMEN — click indicator
   ============================================== */

/* Make drawer cards clearly clickable */
.signal-col[data-drawer] {
  cursor: pointer;
}

/* Thin accent ring that appears on hover to hint interactivity */
.signal-col[data-drawer]::before {
  outline: 0px solid rgba(232, 230, 225, 0);
  transition: filter 0.28s linear, outline 0.2s linear;
}

.signal-col[data-drawer]:hover::before {
  outline: 1px solid rgba(232, 230, 225, 0.30);
}

/* Small "OPEN FILE" tag that fades in above the CTA button */
.signal-col[data-drawer] .signal-col__cta-wrap::before {
  content: 'OPEN FILE';
  display: block;
  font-family: var(--font-mono);
  font-size: 6px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--col-text-mid);
  text-align: center;
  margin-bottom: 8px;
  opacity: 0;
  transition: opacity 0.2s linear;
}

.signal-col[data-drawer]:hover .signal-col__cta-wrap::before {
  opacity: 1;
}



/* ==============================================
   MOBILE AFFORDANCE — Grid item open tag + Pulse
   ============================================== */

/* On mobile: show a persistent [ 📂 OPEN_FILE ] badge on every signal-col */
@media (max-width: 767px) {

  /* Visible badge — bottom-left of each cell */
  .signal-col::after {
    content: '📂  OPEN_FILE';
    position: absolute;
    bottom: 8px;
    left: 8px;
    font-family: var(--font-mono);
    font-size: 6px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--col-text-mid);
    background: rgba(0,0,0,0.18);
    padding: 3px 7px;
    pointer-events: none;
    white-space: nowrap;
    z-index: 4;
  }

  /* Hide the desktop OPEN FILE pseudo (only for [data-drawer] cards) */
  .signal-col[data-drawer] .signal-col__cta-wrap::before {
    display: none;
  }

  /* Mobile has no :hover, so the tee mockup image (which only fades in on
     hover by default) would never appear — leaving cards as solid color blocks.
     Show the image by default at full opacity on touch screens.
     A soft drop shadow makes the tee silhouette visible even when the tee
     color closely matches the card background (e.g., bone tee on bone card). */
  .signal-col__img-wrap {
    opacity: 1 !important;
  }
  .signal-col__img {
    filter: saturate(0.4) contrast(1.18) brightness(0.92)
            drop-shadow(0 4px 12px rgba(0,0,0,0.18));
  }

  /* The hover-only "tech spec" overlay uses the same ::after slot we just
     reassigned to OPEN_FILE, so the per-card "280 GSM / 100% COTTON" stamp
     no longer applies on mobile — that's intentional (more breathing room). */

  /* Hide the typewriter behavior <p> on mobile — it's wired for hover only,
     and we explicitly disable that on touch in JS. The static colorname +
     hexcode in .signal-col__info-left already carries the metadata. */
  .signal-col__behavior {
    display: none;
  }

  /* Make the persistent info-bar (colorname + hex) ALWAYS visible on mobile,
     not just on hover, so customers can see what each card represents without
     tapping it first. */
  .signal-col__info {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ── Pulse animation ── */
@keyframes signalPulse {
  0%   { box-shadow: 0 0 0 0   rgba(244,243,240,0.55); }
  50%  { box-shadow: 0 0 0 10px rgba(244,243,240,0); }
  100% { box-shadow: 0 0 0 0   rgba(244,243,240,0); }
}

/* Class applied by IntersectionObserver */
.signal-col--pulse {
  animation: signalPulse 1.8s ease-out 2;
}


/* ==============================================
   MOBILE BOTTOM SHEET — Full component
   ============================================== */

/* Hide bottom sheet on desktop */
.mobile-sheet {
  display: none;
}

@media (max-width: 767px) {

  /* Show bottom sheet, hide desktop side drawer */
  .mobile-sheet {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 400;
    pointer-events: none;
    visibility: hidden;
  }

  .mobile-sheet--open {
    pointer-events: auto;
    visibility: visible;
  }

  /* Backdrop overlay */
  .mobile-sheet__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.60);
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .mobile-sheet--open .mobile-sheet__overlay {
    opacity: 1;
  }

  /* Slide-up panel */
  .mobile-sheet__panel {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 92vh;
    background: #FFFFFF;
    border-radius: 14px 14px 0 0;
    transform: translateY(100%);
    transition: transform 0.36s cubic-bezier(0.32, 0.72, 0, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    will-change: transform;
  }

  .mobile-sheet--open .mobile-sheet__panel {
    transform: translateY(0);
  }

  /* Drag handle bar */
  .mobile-sheet__handle-bar {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 0 8px;
    cursor: grab;
    -webkit-user-select: none;
    user-select: none;
  }

  .mobile-sheet__handle-bar:active { cursor: grabbing; }

  .mobile-sheet__handle {
    display: block;
    width: 40px;
    height: 4px;
    border-radius: 4px;
    background: rgba(0,0,0,0.14);
  }

  /* Top bar */
  .mobile-sheet__topbar {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 20px 10px;
    border-bottom: 1px solid rgba(0,0,0,0.07);
  }

  .mobile-sheet__file-tag {
    font-family: var(--font-mono);
    font-size: 7px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(0,0,0,0.28);
  }

  .mobile-sheet__close {
    font-family: var(--font-mono);
    font-size: 8px;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    color: rgba(0,0,0,0.45);
    background: none;
    border: 1px solid rgba(0,0,0,0.12);
    padding: 5px 10px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }

  .mobile-sheet__close:active {
    background: rgba(0,0,0,0.04);
  }

  /* Scrollable body */
  .mobile-sheet__body {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }

  /* ── BASE SPECIMEN ── */
  .mobile-sheet__base {
    display: flex;
    gap: 0;
    padding: 20px 20px 0;
  }

  .mobile-sheet__base-img-wrap {
    flex-shrink: 0;
    width: 110px;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: #F0EEE9;
    border-radius: 4px;
  }

  .mobile-sheet__base-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
  }

  .mobile-sheet__base-meta {
    flex: 1;
    padding: 4px 0 0 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .mobile-sheet__base-id {
    font-family: var(--font-mono);
    font-size: 6.5px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(0,0,0,0.28);
  }

  .mobile-sheet__base-name {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #111;
    line-height: 1.4;
    margin: 2px 0 4px;
  }

  .mobile-sheet__base-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-mono);
    font-size: 6.5px;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    color: #2E7D32;
    margin-bottom: 10px;
  }

  /* Pulsing green dot for active status */
  .mobile-sheet__pulse-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4CAF50;
    animation: pulseGreen 2.4s ease-in-out infinite;
    flex-shrink: 0;
  }

  @keyframes pulseGreen {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.4; transform: scale(0.75); }
  }

  /* Mini metadata table inside base specimen */
  .mobile-sheet__base-table {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .mobile-sheet__base-row {
    display: flex;
    flex-direction: column;
    gap: 1px;
  }

  .mobile-sheet__base-key {
    font-family: var(--font-mono);
    font-size: 5.5px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(0,0,0,0.28);
  }

  .mobile-sheet__base-val {
    font-family: var(--font-mono);
    font-size: 7px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(0,0,0,0.72);
  }

  /* ── SERIES DIVIDER ── */
  .mobile-sheet__series-label-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 20px 10px;
    border-bottom: 1px solid rgba(0,0,0,0.07);
    margin-top: 24px;
  }

  .mobile-sheet__series-label-text {
    font-family: var(--font-mono);
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 0.30em;
    text-transform: uppercase;
    color: rgba(0,0,0,0.32);
  }

  .mobile-sheet__series-label-count {
    font-family: var(--font-mono);
    font-size: 6px;
    letter-spacing: 0.18em;
    color: rgba(0,0,0,0.20);
  }

  /* ── INDIVIDUAL SERIES ── */
  .mobile-sheet__series {
    padding: 0 0 4px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }

  .mobile-sheet__series-header {
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding: 14px 20px 10px;
  }

  .mobile-sheet__series-id {
    font-family: var(--font-mono);
    font-size: 6px;
    letter-spacing: 0.20em;
    color: rgba(0,0,0,0.22);
    flex-shrink: 0;
  }

  .mobile-sheet__series-name {
    font-family: var(--font-mono);
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    color: #111;
    flex: 1;
  }

  .mobile-sheet__series-count {
    font-family: var(--font-mono);
    font-size: 6px;
    letter-spacing: 0.14em;
    color: rgba(0,0,0,0.24);
    flex-shrink: 0;
  }

  /* Horizontal scrollable row */
  .mobile-sheet__series-row {
    display: flex;
    gap: 10px;
    padding: 0 20px 16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .mobile-sheet__series-row::-webkit-scrollbar {
    display: none;
  }

  /* Series card */
  .mobile-sheet__series-card {
    flex-shrink: 0;
    width: 100px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    scroll-snap-align: start;
  }

  .mobile-sheet__series-img-wrap {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: #EEEDE9;
    border-radius: 3px;
  }

  .mobile-sheet__series-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
  }

  .mobile-sheet__series-card-id {
    font-family: var(--font-mono);
    font-size: 5.5px;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    color: rgba(0,0,0,0.26);
  }

  .mobile-sheet__series-card-name {
    font-family: var(--font-mono);
    font-size: 7.5px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(0,0,0,0.72);
    line-height: 1.3;
  }

  /* Locked card */
  .mobile-sheet__series-card--locked {
    width: 100px;
    aspect-ratio: 3/4;
    background: #EEEDE9;
    border: 1px solid rgba(0,0,0,0.07);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: var(--font-mono);
    font-size: 6px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(0,0,0,0.22);
    text-align: center;
    border-radius: 3px;
  }

  /* Override flex-direction for locked (no label below the box) */
  .mobile-sheet__series-card.mobile-sheet__series-card--locked {
    flex-direction: column;
  }

  .mobile-sheet__locked-sq {
    font-size: 14px;
    opacity: 0.12;
    display: block;
  }

  /* Footer breathing room (accounts for iOS safe area) */
  .mobile-sheet__footer-space {
    height: max(32px, env(safe-area-inset-bottom, 16px));
  }

  /* On mobile: suppress desktop archive drawer */
  .archive-drawer {
    display: none !important;
  }

} /* end @media (max-width: 767px) */


/* ================================================================
   SHOP THE LOOK — The Proceed Phase
   Brand Colours (Brand Manual Page 03):
     Hunter Green   PANTONE 7735C  #1C4B2E
     Urban Fog Beige PANTONE 454C  #C9C3A4
     Signal Red      PANTONE 2032C #DE4F3C
     Signal Yellow   PANTONE 6002C #F0C840
     Signal Purple   PANTONE 2093C #7B72B0
     Black           PANTONE Black C #0A0A0A
   ================================================================ */

:root {
  --stl-green:   #1C4B2E;
  --stl-beige:   #C9C3A4;
  --stl-red:     #DE4F3C;
  --stl-yellow:  #F0C840;
  --stl-purple:  #7B72B0;
  --stl-black:   #0A0A0A;
  --stl-fog:     #E8E4D9;   /* lighter fog for backgrounds */
  --stl-gap:     10px;
}

/* ── Wipe Transition Overlay ─────────────────────────────────── */
.stl-wipe {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: var(--stl-green);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transform: translateX(-100%);
  will-change: transform;
}

.stl-wipe--in  { animation: stlWipeIn  0.52s cubic-bezier(0.86, 0, 0.07, 1) forwards; }
.stl-wipe--out { animation: stlWipeOut 0.52s cubic-bezier(0.86, 0, 0.07, 1) forwards; }

@keyframes stlWipeIn {
  from { transform: translateX(-100%); }
  to   { transform: translateX(0); }
}
@keyframes stlWipeOut {
  from { transform: translateX(0); }
  to   { transform: translateX(100%); }
}

.stl-wipe__inner {
  font-family: var(--font-mono);
  font-size: clamp(10px, 1.4vw, 16px);
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: rgba(201,195,164,0.55);   /* Urban Fog Beige dimmed */
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: stlWipeTextIn 0.3s ease 0.2s forwards;
}

@keyframes stlWipeTextIn {
  to { opacity: 1; }
}

.stl-wipe__proceed {
  color: var(--stl-beige);
  font-weight: 700;
}


/* ── Section container ───────────────────────────────────────── */
.stl {
  background: var(--stl-fog);
  display: none;           /* hidden until triggered */
  position: relative;
  overflow: hidden;
}

.stl--active {
  display: block;
}


/* ── Phase progress bar ──────────────────────────────────────── */
.stl__phase-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 14px 24px;
  background: var(--stl-black);
  border-bottom: 1px solid rgba(201,195,164,0.12);
}

.stl__phase-step {
  font-family: var(--font-mono);
  font-size: 7px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: rgba(201,195,164,0.28);
}

.stl__phase-step--active {
  color: var(--stl-beige);
  font-weight: 700;
}

.stl__phase-divider {
  font-size: 6px;
  color: rgba(201,195,164,0.16);
}


/* ── Colorway bar (dynamic) ──────────────────────────────────── */
.stl__colorway-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 40px;
  background: var(--stl-black);
  border-bottom: 1px solid rgba(201,195,164,0.08);
}

.stl__colorway-label {
  font-family: var(--font-mono);
  font-size: 6.5px;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: rgba(201,195,164,0.28);
  flex-shrink: 0;
}

.stl__colorway-swatch {
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(201,195,164,0.20);
  flex-shrink: 0;
  transition: background 0.3s ease;
}

.stl__colorway-name {
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stl-beige);
  flex: 1;
}

.stl__colorway-serial {
  font-family: var(--font-mono);
  font-size: 6.5px;
  letter-spacing: 0.20em;
  color: rgba(201,195,164,0.35);
}

.stl__colorway-price {
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--stl-beige);
  flex-shrink: 0;
}


/* ── Hero Macro — Hunter Green full-bleed ────────────────────── */
.stl__hero {
  position: relative;
  background: var(--stl-green);
  min-height: 520px;
  overflow: hidden;
}

.stl__hero-bg {
  position: absolute;
  inset: 0;
  background: var(--stl-green);
  /* Subtle noise texture overlay */
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 3px,
      rgba(0,0,0,0.04) 3px,
      rgba(0,0,0,0.04) 4px
    );
}

.stl__hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 1400px;
  margin: 0 auto;
  min-height: 520px;
  align-items: center;
}

.stl__hero-img-wrap {
  height: 520px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.15);
}

.stl__hero-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: luminosity;
  opacity: 0.88;
  display: block;
  padding: 24px;
}

.stl__hero-text-wrap {
  padding: 60px 48px 60px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stl__hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 7px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: rgba(201,195,164,0.40);
}

.stl__hero-headline {
  font-family: var(--font-mono);
  font-size: clamp(18px, 2.4vw, 32px);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--stl-beige);
  line-height: 1.35;
  margin: 0;
}

.stl__hero-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 7px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(201,195,164,0.45);
}

.stl__hero-pantone {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

/* Pantone chip swatches */
.stl__pantone-chip {
  display: inline-block;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.stl__pantone-chip--green  { background: var(--stl-green);  border: 1px solid rgba(201,195,164,0.25); }
.stl__pantone-chip--beige  { background: var(--stl-beige);  border: 1px solid rgba(28,75,46,0.20); }
.stl__pantone-chip--red    { background: var(--stl-red); }
.stl__pantone-chip--yellow { background: var(--stl-yellow); }
.stl__pantone-chip--purple { background: var(--stl-purple); }

.stl__pantone-label {
  font-family: var(--font-mono);
  font-size: 6.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(201,195,164,0.38);
}

/* Kiko watermark */
.stl__kiko-mark {
  position: absolute;
  bottom: 24px;
  right: 28px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  pointer-events: none;
}

.stl__kiko-img {
  width: 68px;
  opacity: 0.10;
  filter: brightness(10);
  display: block;
}

.stl__kiko-caption {
  font-family: var(--font-mono);
  font-size: 5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(201,195,164,0.22);
  text-align: right;
}


/* ── Section Header ──────────────────────────────────────────── */
.stl__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding: 52px 40px 36px;
  background: var(--stl-fog);
}

.stl__head-left,
.stl__head-right {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stl__head-eyebrow {
  font-family: var(--font-mono);
  font-size: 7.5px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(10,10,10,0.35);
}

.stl__head-title {
  font-family: var(--font-mono);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stl-black);
  margin: 0;
  line-height: 1;
}

.stl__head-sub {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.10em;
  color: rgba(10,10,10,0.45);
  line-height: 1.8;
  margin: 0;
  text-align: right;
}

.stl__pantone-row {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-end;
  margin-top: 6px;
}


/* ── Masonry Grid ────────────────────────────────────────────── */
.stl__masonry {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: 460px 340px 400px;
  gap: var(--stl-gap);
  padding: 0 var(--stl-gap) var(--stl-gap);
  background: var(--stl-black);
}

/* Grid placements — editorial asymmetric layout */
.stl__item--A { grid-column: 1 / 4; grid-row: 1; }         /* Large landscape top-left */
.stl__item--B { grid-column: 4 / 6; grid-row: 1 / 3; }     /* Tall portrait top-right, 2 rows */
.stl__item--C { grid-column: 1;     grid-row: 2; }          /* Small text tile middle-left */
.stl__item--D { grid-column: 2 / 4; grid-row: 2; }         /* Medium detail middle-center */
.stl__item--E { grid-column: 1 / 3; grid-row: 3; }         /* Wide bottom-left */
.stl__item--F { grid-column: 3;     grid-row: 3; }          /* Small accent bottom-center */
.stl__item--G { grid-column: 4 / 6; grid-row: 3; }         /* Medium bottom-right */

/* Base item styles */
.stl__item {
  position: relative;
  overflow: hidden;
  background: #111;
}

.stl__img-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.stl__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.55s ease, filter 0.35s ease;
  filter: grayscale(18%) contrast(1.04);
}

/* Detail shots: object-fit contain to show full garment */
.stl__img-wrap--detail .stl__img {
  object-fit: contain;
  padding: 10%;
  background: #1A1A1A;
}

.stl__img--textured {
  filter: grayscale(30%) contrast(1.10) brightness(0.92);
}

.stl__item:hover .stl__img {
  transform: scale(1.025);
  filter: grayscale(0%) contrast(1.05);
}

/* Item footer label */
.stl__item-foot {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 16px 12px;
  background: linear-gradient(to top, rgba(0,0,0,0.72), transparent);
  display: flex;
  align-items: baseline;
  gap: 10px;
  pointer-events: none;
}

.stl__item-id {
  font-family: var(--font-mono);
  font-size: 6px;
  letter-spacing: 0.28em;
  color: rgba(201,195,164,0.40);
  flex-shrink: 0;
}

.stl__item-name {
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(201,195,164,0.85);
  flex: 1;
}

.stl__item-weight {
  font-family: var(--font-mono);
  font-size: 6.5px;
  letter-spacing: 0.14em;
  color: rgba(201,195,164,0.30);
  flex-shrink: 0;
}


/* ── Text Tile (Item C) ──────────────────────────────────────── */
.stl__item--text {
  background: var(--stl-green);
}

.stl__text-tile {
  padding: 28px 22px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stl__text-tile-kicker {
  font-family: var(--font-mono);
  font-size: 6.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(201,195,164,0.40);
}

.stl__text-tile-body {
  font-family: var(--font-mono);
  font-size: clamp(9px, 1vw, 11px);
  line-height: 1.75;
  letter-spacing: 0.04em;
  color: rgba(201,195,164,0.80);
  margin: 16px 0;
  flex: 1;
}

.stl__text-tile-attr {
  font-family: var(--font-mono);
  font-size: 6px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(201,195,164,0.28);
}

.stl__text-tile-pantone {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 14px;
}


/* ── Accent Tile (Item F) ────────────────────────────────────── */
.stl__item--accent {
  background: var(--stl-black);
  border: 1px solid rgba(201,195,164,0.08);
}

.stl__accent-tile {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 24px;
}

.stl__accent-code {
  font-family: var(--font-mono);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 900;
  letter-spacing: 0.10em;
  color: rgba(201,195,164,0.12);
  line-height: 1;
}

.stl__accent-slash {
  font-family: var(--font-mono);
  font-size: 32px;
  color: var(--stl-purple);
  opacity: 0.60;
  line-height: 1;
}

.stl__accent-num {
  font-family: var(--font-mono);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(201,195,164,0.18);
}

.stl__accent-tags {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 5.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(201,195,164,0.18);
}

.stl__accent-tags--active {
  color: var(--stl-beige);
  font-weight: 700;
}

.stl__accent-chip {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  margin-top: 10px;
  opacity: 0.65;
}


/* ── Interactive Hotspot Dots — PANTONE 2093C ────────────────── */
.stl__hotspot {
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 10;
  cursor: pointer;
}

.stl__hotspot-dot {
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--stl-purple);
  box-shadow: 0 0 0 0 rgba(123,114,176,0.55);
  animation: hotspotPulse 2.8s ease-in-out infinite;
  transition: transform 0.2s ease;
}

.stl__hotspot:hover .stl__hotspot-dot {
  transform: scale(1.5);
  animation-play-state: paused;
}

@keyframes hotspotPulse {
  0%   { box-shadow: 0 0 0 0   rgba(123,114,176,0.55); }
  60%  { box-shadow: 0 0 0 10px rgba(123,114,176,0); }
  100% { box-shadow: 0 0 0 0   rgba(123,114,176,0); }
}

/* Tooltip */
.stl__tooltip {
  position: absolute;
  bottom: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  width: 200px;
  background: var(--stl-black);
  border: 1px solid rgba(201,195,164,0.14);
  padding: 14px 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
  white-space: normal;
}

.stl__tooltip--left {
  left: auto;
  right: calc(100% + 14px);
  bottom: 50%;
  transform: translateY(50%) translateX(4px);
}

.stl__hotspot:hover .stl__tooltip,
.stl__hotspot:focus-within .stl__tooltip {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.stl__hotspot:hover .stl__tooltip--left,
.stl__hotspot:focus-within .stl__tooltip--left {
  transform: translateY(50%) translateX(0);
}

.stl__tooltip-title {
  font-family: var(--font-mono);
  font-size: 6.5px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--stl-beige);
  margin-bottom: 2px;
}

.stl__tooltip-line {
  font-family: var(--font-mono);
  font-size: 7px;
  letter-spacing: 0.10em;
  color: rgba(201,195,164,0.55);
  line-height: 1.5;
}

.stl__tooltip-cta {
  font-family: var(--font-mono);
  font-size: 6.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stl-beige);
  background: var(--stl-green);
  border: none;
  padding: 6px 10px;
  cursor: pointer;
  margin-top: 6px;
  width: 100%;
  text-align: left;
  transition: background 0.2s ease;
}

.stl__tooltip-cta:hover {
  background: #2a6840;
}


/* ── Scroll Progress Indicator ───────────────────────────────── */
.stl__scroll-progress {
  position: sticky;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--stl-black);
  padding: 8px 40px;
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 20;
  border-top: 1px solid rgba(201,195,164,0.08);
}

.stl__scroll-track {
  flex: 1;
  height: 1px;
  background: rgba(201,195,164,0.12);
  position: relative;
}

.stl__scroll-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: var(--stl-purple);
  transition: width 0.1s linear;
}

.stl__scroll-label {
  font-family: var(--font-mono);
  font-size: 6px;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: rgba(201,195,164,0.22);
  flex-shrink: 0;
}


/* ── Checkout Module ─────────────────────────────────────────── */
.stl__checkout {
  background: var(--stl-beige);
  padding: 48px 40px;
  border-top: 1px solid rgba(10,10,10,0.10);
}

.stl__checkout-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
}

.stl__checkout-eyebrow {
  font-family: var(--font-mono);
  font-size: 7px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(10,10,10,0.35);
  display: block;
  margin-bottom: 14px;
}

.stl__checkout-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.stl__checkout-piece {
  display: flex;
  align-items: center;
  gap: 14px;
}

.stl__checkout-swatch {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(10,10,10,0.14);
  flex-shrink: 0;
  transition: background 0.3s ease;
}

.stl__checkout-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.stl__checkout-name {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stl-black);
}

.stl__checkout-serial {
  font-family: var(--font-mono);
  font-size: 7px;
  letter-spacing: 0.22em;
  color: rgba(10,10,10,0.35);
}

.stl__checkout-price {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  color: var(--stl-green);
}

.stl__checkout-specline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 6.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(10,10,10,0.38);
}

.stl__checkout-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
  flex-shrink: 0;
}

.stl__proceed-btn {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--stl-beige);
  background: var(--stl-green);
  border: none;
  padding: 16px 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: background 0.22s ease, letter-spacing 0.22s ease;
  min-width: 260px;
  justify-content: space-between;
}

.stl__proceed-btn:hover {
  background: #2a6840;
  letter-spacing: 0.32em;
}

.stl__proceed-arrow {
  font-size: 12px;
  transition: transform 0.22s ease;
}

.stl__proceed-btn:hover .stl__proceed-arrow {
  transform: translateX(4px);
}

.stl__back-btn {
  font-family: var(--font-mono);
  font-size: 7.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(10,10,10,0.40);
  background: none;
  border: 1px solid rgba(10,10,10,0.14);
  padding: 10px 20px;
  cursor: pointer;
  min-width: 260px;
  text-align: center;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.stl__back-btn:hover {
  color: var(--stl-black);
  border-color: rgba(10,10,10,0.30);
}


/* ── Mobile Responsive ───────────────────────────────────────── */
@media (max-width: 900px) {
  .stl__hero-content {
    grid-template-columns: 1fr;
  }
  .stl__hero-img-wrap {
    height: 280px;
  }
  .stl__hero-text-wrap {
    padding: 32px 24px;
  }

  .stl__masonry {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 260px 260px 220px 220px auto;
    padding: 0 6px 6px;
    gap: 6px;
  }
  .stl__item--A { grid-column: 1 / 3; grid-row: 1; }
  .stl__item--B { grid-column: 1;     grid-row: 2; }
  .stl__item--C { grid-column: 2;     grid-row: 2; }
  .stl__item--D { grid-column: 1 / 3; grid-row: 3; }
  .stl__item--E { grid-column: 1;     grid-row: 4; }
  .stl__item--F { grid-column: 2;     grid-row: 4; }
  .stl__item--G { grid-column: 1 / 3; grid-row: 5; }

  .stl__head {
    flex-direction: column;
    padding: 32px 20px 24px;
  }
  .stl__head-sub { text-align: left; }
  .stl__pantone-row { justify-content: flex-start; }

  .stl__colorway-bar {
    padding: 10px 20px;
    flex-wrap: wrap;
    gap: 8px;
  }

  .stl__checkout-inner {
    flex-direction: column;
    gap: 28px;
  }
  .stl__checkout-right {
    align-items: stretch;
    width: 100%;
  }
  .stl__proceed-btn,
  .stl__back-btn {
    min-width: 0;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .stl__masonry {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .stl__item--A,
  .stl__item--B,
  .stl__item--C,
  .stl__item--D,
  .stl__item--E,
  .stl__item--F,
  .stl__item--G { grid-column: 1; grid-row: auto; }

  .stl__item { height: 280px; }
  .stl__item--C { height: auto; min-height: 200px; }
  .stl__item--F { height: 160px; }
}

/* ============================================================
   MUSEUM SKIN — Stampd Reference
   Urban Fog Beige global. Black text + 1px borders only.
   Product first. Brand second. Noise zero.
   Pantone 454C background · Pantone Black C type
   ============================================================ */

:root {
  --skin-bg:       #C9C3A4;   /* PANTONE 454C — Urban Fog Beige */
  --skin-black:    #0A0A0A;   /* PANTONE Black C */
  --skin-border:   rgba(10,10,10,0.14);
  --skin-muted:    rgba(10,10,10,0.45);
  --skin-faint:    rgba(10,10,10,0.28);
}

/* ── 1. Global page canvas ─────────────────────────────── */
html, body {
  background-color: var(--skin-bg) !important;
  color: var(--skin-black) !important;
}

/* Override root CSS vars to pull every var(--color-*) reference */
:root {
  --color-bg:          #C9C3A4 !important;
  --color-surface:     #C4BE9E !important;
  --color-surface-2:   #BEB898 !important;
  --color-divider:     rgba(10,10,10,0.12) !important;
  --color-border:      rgba(10,10,10,0.16) !important;
  --color-text:        #0A0A0A !important;
  --color-text-muted:  rgba(10,10,10,0.50) !important;
  --color-text-faint:  rgba(10,10,10,0.30) !important;
  --color-text-inverse:#C9C3A4 !important;
  --color-primary:       #0A0A0A !important;
  --color-primary-hover: rgba(10,10,10,0.72) !important;
  --color-primary-active:#0A0A0A !important;
  --color-black:  #0A0A0A !important;
  --color-white:  #C9C3A4 !important;
}

/* ── 2. Signal feed marquee — strip green ─────────────── */
.signal-feed {
  background: var(--skin-bg) !important;
  border-bottom: 1px solid var(--skin-border) !important;
}
.signal-feed__item  { color: var(--skin-muted)  !important; }
.signal-feed__sep   { color: var(--skin-border) !important; }

/* ── 3. Navigation ─────────────────────────────────────── */
.nav__links a                  { color: var(--skin-black) !important; }
.nav__menu-btn                 { color: var(--skin-black) !important; }
.nav--scrolled {
  background: rgba(201,195,164,0.96) !important;
  backdrop-filter: blur(12px);
}
/* Logo — HIDDEN over the hero (redundant with the big wordmark down-left).
   Fades in BLACK once the user scrolls past into the beige sections,
   so the brand mark returns for the long scroll. */
.nav__logo {
  opacity: 0;
  visibility: hidden;
  transition: opacity 320ms ease, visibility 320ms ease;
}
.nav--scrolled .nav__logo {
  opacity: 1;
  visibility: visible;
}
.nav__logo-img               { filter: brightness(0) !important; }   /* black on beige */

/* ── 4. Hero — OPTED OUT of skin override.
   The reworked hero owns its own cinematic dark palette
   (image-driven, light-on-dark type). Leaving it untouched. */

/* ── 5. Material Study — strip #2A2A28 dark ───────────── */
.material-study {
  background: var(--skin-bg) !important;
  border-top: 1px solid var(--skin-border);
  border-bottom: 1px solid var(--skin-border);
}
.material-study__label      { color: var(--skin-muted) !important; }
.material-study__title      { color: var(--skin-black) !important; }
.material-study__lead       { color: var(--skin-black) !important;
                              border-top-color: var(--skin-border) !important;
                              border-bottom-color: var(--skin-border) !important; }
.material-study__body       { color: var(--skin-muted) !important; }
.material-study__spec-row   { border-bottom-color: var(--skin-border) !important; }
.material-study__specs      { border-top-color: var(--skin-border) !important; }
.material-study__spec-key   { color: var(--skin-faint) !important; }
.material-study__spec-val   { color: var(--skin-black) !important; }
.material-study__cta {
  color: var(--skin-muted) !important;
  border-color: var(--skin-border) !important;
}
.material-study__cta:hover  { color: var(--skin-bg) !important;
                               background: var(--skin-black) !important;
                               border-color: var(--skin-black) !important; }
.material-study__archive-id { color: var(--skin-muted) !important;
                               background: rgba(201,195,164,0.65) !important; }
.section-divider            { background: var(--skin-bg) !important;
                               border-top-color: var(--skin-border) !important; }

/* ── 6. Color Registry — strip #0D0D0D ─────────────────── */
.color-registry {
  background: var(--skin-bg) !important;
  padding-bottom: 10vh !important;
}
.registry-header,
.registry-header__left,
.registry-header__right { color: var(--skin-black) !important; }
.registry-header__eyebrow,
.registry-header__label,
.registry-counter        { color: var(--skin-muted) !important; }

/* Registry tab switcher */
.registry-tabs { border-bottom-color: var(--skin-border) !important; }
.registry-tab  { color: var(--skin-muted) !important; background: transparent !important; }
.registry-tab--active,
.registry-tab:hover { color: var(--skin-black) !important; border-bottom-color: var(--skin-black) !important; }

/* Signal grid borders → thin black 1px */
.signal-grid {
  border-color: var(--skin-border) !important;
  background: transparent !important;
}
.signal-col {
  border-right-color:   var(--skin-border) !important;
  border-bottom-color:  var(--skin-border) !important;
}
/* The product color block keeps its own --col-bg — don't touch */
.signal-col__img-wrap  { background: transparent !important; }

/* Signal-col info bar — text on beige, not forced white */
.signal-col__info      { background: var(--skin-bg) !important;
                          border-top: 1px solid var(--skin-border) !important; }
.signal-col__colorname,
.signal-col__id        { color: var(--skin-black) !important; }
.signal-col__hexcode   { color: var(--skin-muted)  !important; }
.signal-col__atc {
  background: var(--skin-black) !important;
  color: var(--skin-bg) !important;
  border-color: var(--skin-black) !important;
}
.signal-col__atc:hover {
  background: transparent !important;
  color: var(--skin-black) !important;
}

/* ── 7. Archive / Drawer ─────────────────────────────── */
.archive-cta,
.archive-cta__label     { color: var(--skin-muted) !important; }
.archive-cta:hover .archive-cta__label { color: var(--skin-black) !important; }

.archive-drawer {
  background: var(--skin-bg)   !important;
  border-left: 1px solid var(--skin-border) !important;
}
.archive-drawer__header { border-bottom-color: var(--skin-border) !important; }
.archive-drawer__title  { color: var(--skin-black) !important; }
.archive-drawer__close  { color: var(--skin-muted) !important; }
.archive-drawer__close:hover { color: var(--skin-black) !important; }

.archive-item {
  border-bottom-color: var(--skin-border) !important;
  background: transparent !important;
}
.archive-item__name,
.archive-item__serial   { color: var(--skin-black) !important; }
.archive-item__price    { color: var(--skin-muted)  !important; }

/* Archive accordion */
.archive-folder__head   { background: transparent !important;
                           border-bottom-color: var(--skin-border) !important;
                           color: var(--skin-muted) !important; }
.archive-folder__head:hover { color: var(--skin-black) !important; }
.archive-folder__body   { background: transparent !important; }

/* ── 8. Active Signals section ───────────────────────── */
.active-signals         { background: var(--skin-bg) !important;
                           border-top: 1px solid var(--skin-border) !important; }
.active-signals__eyebrow,
.active-signals__kicker { color: var(--skin-muted)  !important; }
.active-signals__title  { color: var(--skin-black)  !important; }
.active-signals__card   { border: 1px solid var(--skin-border) !important;
                           background: transparent !important; }

/* ── 9. Footer / lower sections ─────────────────────── */
.site-footer {
  background: var(--skin-bg) !important;
  border-top: 1px solid var(--skin-border) !important;
  color: var(--skin-muted) !important;
}
.site-footer a          { color: var(--skin-muted) !important; }
.site-footer a:hover    { color: var(--skin-black) !important; }

/* ── 10. Mobile sheet ────────────────────────────────── */
.mobile-sheet__panel {
  background: var(--skin-bg) !important;
  border-top: 1px solid var(--skin-border) !important;
}
.mobile-sheet__handle-bar { background: var(--skin-border) !important; }
.mobile-sheet__header     { border-bottom: 1px solid var(--skin-border) !important; }
.mobile-sheet__title      { color: var(--skin-black) !important; }
.mobile-sheet__close      { color: var(--skin-muted) !important; }
.mobile-sheet__series-label { color: var(--skin-muted) !important; }

/* ── 11. STL Wipe overlay — black for drama, not green ── */
.stl-wipe               { background: var(--skin-black) !important; }
.stl-wipe__phase        { color: rgba(201,195,164,0.55) !important; }
.stl-wipe__proceed      { color: var(--skin-bg) !important; }

/* ============================================================
   MUSEUM STL — Single Product. Full Attention.
   ============================================================ */

/* Override all previous .stl rules */
.stl {
  display: none;
  background: var(--skin-bg) !important;
  min-height: 100vh;
  padding: 0;
  /* Kill old layout properties */
  grid-template-columns: unset !important;
  grid-template-rows:    unset !important;
}
.stl--active { display: block !important; }

/* Kill the old sub-components we're replacing */
.stl__phase-bar,
.stl__colorway-bar,
.stl__hero,
.stl__head,
.stl__masonry,
.stl__scroll-progress,
.stl__checkout { display: none !important; }

/* ── New: Museum Header ──────────────────────────────── */
.stl__mh {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 60px;
  border-bottom: 1px solid var(--skin-border);
}
.stl__mh-phase {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--skin-muted);
}
.stl__mh-phase strong {
  font-weight: 600;
  color: var(--skin-black);
}
.stl__mh-serial {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--skin-faint);
}

/* ── New: Product Stage ──────────────────────────────── */
.stl__stage {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 120px;
  min-height: 68vh;
  background: var(--skin-bg);
}
.stl__stage-img {
  max-height: 62vh;
  max-width: 680px;
  width: 100%;
  object-fit: contain;
  display: block;
}

/* ── New: Museum Label Row ───────────────────────────── */
.stl__ml {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top:    1px solid var(--skin-border);
  border-bottom: 1px solid var(--skin-border);
  padding: 28px 60px;
  gap: 0;
}
.stl__ml-col {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding-right: 48px;
}
.stl__ml-col + .stl__ml-col {
  padding-left: 48px;
  padding-right: 48px;
  border-left: 1px solid var(--skin-border);
}
.stl__ml-col:last-child  { padding-right: 0; }
.stl__ml-key {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--skin-faint);
}
.stl__ml-val {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--skin-black);
  font-weight: 400;
}

/* ── New: Actions Bar ────────────────────────────────── */
.stl__act {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 60px;
}
.stl__act-back {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--skin-muted);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color 180ms;
}
.stl__act-back:hover { color: var(--skin-black); }

.stl__act-right {
  display: flex;
  align-items: center;
  gap: 18px;
}
.stl__act-swatch {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid var(--skin-border);
  flex-shrink: 0;
}
.stl__act-name {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--skin-muted);
  max-width: 22ch;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.stl__act-price {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--skin-black);
}
.stl__act-proceed {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--skin-bg);
  background: var(--skin-black);
  border: 1px solid var(--skin-black);
  padding: 11px 22px;
  cursor: pointer;
  transition: background 180ms, color 180ms;
}
.stl__act-proceed:hover {
  background: transparent;
  color: var(--skin-black);
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 900px) {
  .stl__mh      { padding: 16px 32px; }
  .stl__stage   { padding: 56px 40px; min-height: 52vh; }
  .stl__stage-img { max-height: 50vh; max-width: 100%; }
  .stl__ml      { grid-template-columns: repeat(2, 1fr);
                   padding: 24px 32px; row-gap: 20px; }
  .stl__ml-col + .stl__ml-col:nth-child(3) { border-left: none; padding-left: 0; padding-top: 20px; border-top: 1px solid var(--skin-border); }
  .stl__act     { padding: 20px 32px; }
}
@media (max-width: 600px) {
  .stl__mh      { padding: 14px 20px; }
  .stl__stage   { padding: 40px 20px; min-height: 46vh; }
  .stl__ml      { grid-template-columns: 1fr 1fr; padding: 20px; row-gap: 16px; }
  .stl__ml-col + .stl__ml-col { padding-left: 16px; }
  .stl__ml-col + .stl__ml-col:nth-child(3) { padding-left: 0; }
  .stl__act     { flex-direction: column; align-items: flex-start; gap: 16px; padding: 20px; }
  .stl__act-right { flex-wrap: wrap; gap: 10px; }
  .stl__act-proceed { padding: 10px 18px; }
}


/* ============================================================
   BRAND MANIFESTO — 100vh typographic statement
   Editorial split layout: display type left · body right
   Corner serials give it a "document plate" feel.
   ============================================================ */

.manifesto {
  position: relative;
  min-height: 100vh;
  width: 100%;
  background: var(--skin-bg);
  border-top: 1px solid rgba(10,10,10,0.08);
  border-bottom: 1px solid rgba(10,10,10,0.08);
  padding: 11vh 7vw 12vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.manifesto__frame {
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

/* Corner serials — tiny archival/document-plate marks */
.manifesto__corner {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(10,10,10,0.32);
  white-space: nowrap;
}
.manifesto__corner--tl { top: -48px; left:  0; }
.manifesto__corner--tr { top: -48px; right: 0; }
.manifesto__corner--br { bottom: -56px; right: 0; }

/* Eyebrow row — sits above the grid */
.manifesto__eyebrow {
  display: block;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(10,10,10,0.42);
  margin-bottom: 72px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(10,10,10,0.10);
}

/* Two-column editorial grid */
.manifesto__grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 88px;
  align-items: end;
}

/* ── Display tagline ─────────────────────────────────────── */
.manifesto__display { align-self: start; }

.manifesto__words {
  margin: 0;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: clamp(56px, 11.5vw, 176px);
  line-height: 0.96;
  letter-spacing: -0.01em;   /* tight display tracking */
  color: #0A0A0A;
  text-transform: none;
}
.manifesto__word {
  display: block;
}
.manifesto__coda {
  display: block;
  margin-top: 22px;
  font-family: var(--font-mono);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(16px, 1.9vw, 26px);
  letter-spacing: 0.20em;
  color: rgba(10,10,10,0.48);
  text-transform: uppercase;
}

/* ── Manifesto body ──────────────────────────────────────── */
.manifesto__body {
  max-width: 380px;
  padding-bottom: 12px;
}
.manifesto__body p {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  line-height: 1.95;
  text-transform: uppercase;
  color: rgba(10,10,10,0.68);
  margin: 0 0 22px;
}
.manifesto__body p:last-of-type { margin-bottom: 32px; }

.manifesto__signoff {
  display: block;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: rgba(10,10,10,0.40);
  padding-top: 20px;
  border-top: 1px solid rgba(10,10,10,0.14);
}

/* ── Monotone Kiko anchor ───────────────────────────────── */
.manifesto__kiko {
  position: absolute;
  bottom: -16px;
  right: -8px;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}
.manifesto__kiko-img {
  height: 58px;
  width: auto;
  display: block;
  filter: grayscale(100%) brightness(0);
  opacity: 0.07;
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1100px) {
  .manifesto        { padding: 10vh 5vw; }
  .manifesto__grid  { gap: 56px; }
  .manifesto__body  { max-width: 340px; }
}

@media (max-width: 900px) {
  .manifesto            { padding: 9vh 6vw 10vh; min-height: auto; }
  .manifesto__eyebrow   { margin-bottom: 48px; padding-bottom: 14px; }
  .manifesto__grid      {
    grid-template-columns: 1fr;
    gap: 56px;
    align-items: start;
  }
  .manifesto__words     { font-size: clamp(44px, 14vw, 96px); }
  .manifesto__body      { max-width: 100%; }
  .manifesto__corner--tl,
  .manifesto__corner--tr { top: -32px; font-size: 7px; letter-spacing: 0.26em; }
  .manifesto__corner--br { bottom: -36px; font-size: 7px; letter-spacing: 0.26em; }
  .manifesto__kiko      { bottom: -10px; right: -4px; }
  .manifesto__kiko-img  { height: 44px; }
}

@media (max-width: 540px) {
  .manifesto            { padding: 7vh 6vw 8vh; }
  .manifesto__eyebrow   { font-size: 8px; letter-spacing: 0.28em; margin-bottom: 32px; }
  .manifesto__words     { font-size: clamp(40px, 16vw, 72px); }
  .manifesto__coda      { letter-spacing: 0.18em; margin-top: 14px; }
  .manifesto__body p    { font-size: 11px; letter-spacing: 0.10em; line-height: 1.85; }
  .manifesto__corner    { display: none; }
}

/* ============================================================
   STL SNAP SLIDER — Shop the Look / 280G Colorway
   4 slides: Hunter Green · Concrete · Urban Fog Beige · Black
   Signal dots: PANTONE 2032C · 6002C · 2093C · Black C
   All copy: 10px · 0.4em tracking · Pantone Black C
   Kiko: Monotone General Usage · 48px safe space
   ============================================================ */

/* ── Container ──────────────────────────────────────────── */
.stl {
  display:  none;
  position: relative;
  height:   100vh;
  background: var(--skin-bg) !important;
  overflow: hidden;
}
.stl--active { display: block !important; }

/* ── Header / footer bars ───────────────────────────────── */
.stl__bar {
  position: absolute;
  left:  0;
  right: 0;
  height: 56px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 56px;
  background: var(--skin-bg);
}
.stl__bar--head {
  top: 0;
  border-bottom: 1px solid rgba(10,10,10,0.10);
}
.stl__bar--foot {
  bottom: 0;
  border-top: 1px solid rgba(10,10,10,0.10);
}

.stl__bar-phase {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(10,10,10,0.38);
}
.stl__bar-phase strong {
  color: #0A0A0A;
  font-weight: 600;
}
.stl__bar-colorway {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(10,10,10,0.32);
  transition: color 400ms;
}

/* ── Viewport — clips horizontal overflow ───────────────── */
.stl__viewport {
  position: absolute;
  top:    56px;
  bottom: 56px;
  left:   0;
  right:  0;
  overflow: hidden;
}

/* ── Track — horizontal strip of all slides ─────────────── */
.stl__track {
  display: flex;
  height: 100%;
  transition: transform 700ms cubic-bezier(0.76, 0, 0.24, 1);
  will-change: transform;
}
.stl__track--dragging { transition: none; }

/* ── Individual slide ───────────────────────────────────── */
.stl__slide {
  flex-shrink: 0;
  width: 100vw;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--skin-bg);
}

/* Nudge content fractionally above true center — product breathes upward */
.stl__slide-inner {
  display: flex;
  align-items: center;
  gap: 72px;
  margin-top: -3vh;
}

/* ── Product image — silhouette on beige, no frames ─────── */
.stl__product {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stl__img {
  height: 78vh;
  max-height: 760px;
  max-width: 520px;
  width: auto;
  object-fit: contain;
  display: block;
  /* Subtle desaturation for cinematic beige harmony */
  filter: saturate(0.88) contrast(1.02);
  /* Soft radial vignette — fades the photo's grey studio backdrop
     edges into the beige slide bg, so the photo sits as an editorial
     "frame within frame" instead of a hard-edged rectangle. */
  -webkit-mask-image: radial-gradient(ellipse 70% 80% at center 45%, #000 62%, transparent 100%);
          mask-image: radial-gradient(ellipse 70% 80% at center 45%, #000 62%, transparent 100%);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}

/* ── Technical copy column ──────────────────────────────── */
/* All text: 10px · 0.4em tracking · Pantone Black C */
.stl__copy {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 175px;
  flex-shrink: 0;
}

.stl__copy-meta,
.stl__copy-title,
.stl__copy-specs,
.stl__copy-signal,
.stl__copy-price {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(10,10,10,0.08);
}
.stl__copy-price {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom:  0;
}

/* Base: all copy spans inherit these values */
.stl__copy span {
  font-family:    var(--font-mono);
  font-size:      10px;
  letter-spacing: 0.40em;
  text-transform: uppercase;
  line-height:    1.7;
  display:        block;
}

/* ── Opacity hierarchy: same size, different presence ───── */
/* Brand / ID (most faint) */
.stl__copy-meta span:first-child { color: rgba(10,10,10,0.28); }
.stl__copy-meta span:last-child  { color: rgba(10,10,10,0.20); }

/* Garment name · colorway · pantone ref */
.stl__copy-title span:first-child  { color: #0A0A0A; font-weight: 500; }
.stl__copy-title span:nth-child(2) { color: rgba(10,10,10,0.58); }
.stl__copy-title span:nth-child(3) { color: rgba(10,10,10,0.32); }

/* Utilitarian specs */
.stl__copy-specs span { color: rgba(10,10,10,0.48); }

/* Philosophy / signal line */
.stl__copy-signal span {
  color: rgba(10,10,10,0.30);
  font-style: italic;
  letter-spacing: 0.28em;  /* slightly tighter on italics */
}

/* Price — full Black C */
.stl__copy-price span {
  color:     #0A0A0A;
  font-size: 11px;
  font-weight: 500;
}

/* ── Kiko — Monotone General Usage ─────────────────────── */
/* Position: bottom-left; Safe space: 48px from every edge  */
/* 48px ≈ one sunglasses width                              */
.stl__kiko {
  position:       absolute;
  bottom:         72px;   /* 56px footer + 16px breathing */
  left:           48px;   /* one-sunglasses safe zone      */
  z-index:        25;
  pointer-events: none;
  user-select:    none;
}
.stl__kiko-img {
  height:  34px;
  width:   auto;
  display: block;
  /* Monotone: force to full black, low opacity on beige */
  filter:  grayscale(100%) brightness(0);
  opacity: 0.09;
}

/* ── Signal dot navigation ──────────────────────────────── */
/* PANTONE 2032C (Red) · 6002C (Yellow) · 2093C (Purple) · Black C */
.stl__dotnav {
  position:  absolute;
  bottom:    18px;           /* centered inside 56px footer bar */
  left:      50%;
  transform: translateX(-50%);
  display:   flex;
  align-items: center;
  gap: 24px;
  z-index: 30;
}

.stl__sigdot {
  position: relative;
  /* Visible dot: 7×7 circle */
  width:    7px;
  height:   7px;
  border-radius: 50%;
  background:    var(--dot-color, #888);
  background-clip: content-box;
  border:   none;
  cursor:   pointer;
  /* Ghost hit area — 10px padding each side */
  padding:  10px;
  box-sizing: content-box;
  margin:   -10px;
  opacity:  0.25;
  transition: opacity 320ms, transform 320ms;
}

/* Colorway label — appears above active dot only */
.stl__sigdot::after {
  content:   attr(data-label);
  position:  absolute;
  bottom:    calc(100% + 10px);
  left:      50%;
  transform: translateX(-50%);
  font-family:    var(--font-mono);
  font-size:      7px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color:          transparent;
  white-space:    nowrap;
  transition:     color 320ms;
  pointer-events: none;
}

.stl__sigdot--active {
  opacity:   1;
  transform: scale(1.55);
}
.stl__sigdot--active::after {
  color: rgba(10,10,10,0.32);
}
.stl__sigdot:hover:not(.stl__sigdot--active) {
  opacity: 0.60;
}

/* ── Footer action buttons ──────────────────────────────── */
.stl__back-btn {
  font-family:    var(--font-mono);
  font-size:      9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color:          rgba(10,10,10,0.42);
  background:     none;
  border:         none;
  cursor:         pointer;
  padding:        0;
  transition:     color 180ms;
}
.stl__back-btn:hover { color: #0A0A0A; }

.stl__proceed-btn {
  font-family:    var(--font-mono);
  font-size:      9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color:          var(--skin-bg);
  background:     #0A0A0A;
  border:         1px solid #0A0A0A;
  padding:        11px 22px;
  cursor:         pointer;
  transition:     background 180ms, color 180ms;
}
.stl__proceed-btn:hover {
  background: transparent;
  color:      #0A0A0A;
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1100px) {
  .stl__bar        { padding: 0 40px; }
  .stl__kiko       { left: 32px; }
  .stl__slide-inner{ gap: 52px; }
  .stl__img        { height: 60vh; max-width: 400px; }
  .stl__copy       { width: 155px; }
}

@media (max-width: 800px) {
  .stl__bar        { padding: 0 24px; height: 48px; }
  .stl__bar--head  { /* recalc viewport */ }
  .stl__bar--foot  { height: 48px; }
  .stl__viewport   { top: 48px; bottom: 48px; }
  .stl__slide-inner{ gap: 32px; }
  .stl__img        { height: 52vh; max-width: 320px; }
  .stl__copy       { width: 136px; }
  .stl__copy span  { font-size: 9px; letter-spacing: 0.32em; }
  .stl__kiko       { bottom: 60px; left: 24px; }
  .stl__kiko-img   { height: 28px; }
  .stl__dotnav     { bottom: 13px; gap: 18px; }
}

@media (max-width: 540px) {
  .stl__slide      { align-items: flex-start; padding-top: 7vh; }
  .stl__slide-inner{
    flex-direction: column;
    gap: 18px;
    padding: 0 24px 0;
    margin-top: 0;
    align-items: flex-start;
  }
  .stl__img  { height: 42vh; max-width: 100%; }
  .stl__copy { width: 100%; }
  .stl__copy span { font-size: 9px; letter-spacing: 0.25em; }
  .stl__kiko { bottom: 58px; left: 16px; }
  .stl__kiko-img { height: 24px; }
  .stl__dotnav { bottom: 11px; gap: 14px; }
  .stl__sigdot { width: 6px; height: 6px; }
}


/* ============================================================
   COLORWAY DRAWER — Stampd-style inline expansion
   Click a color card → filmstrip of graphic designs slides in
   between that row and the next.
   ============================================================ */

.signal-drawer {
  grid-column: 1 / -1;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  background: #F4F2EC;
  border-top: 1px solid #E8E6E1;
  border-bottom: 1px solid #E8E6E1;
  transition: max-height 480ms cubic-bezier(0.76, 0, 0.24, 1),
              opacity 280ms 80ms ease-out;
  will-change: max-height, opacity;
}
.signal-drawer--open {
  max-height: 62vh;
  opacity: 1;
}

.signal-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 40px 14px;
  border-bottom: 1px solid rgba(10,10,10,0.08);
}
.signal-drawer__eyebrow {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(10,10,10,0.40);
}
.signal-drawer__eyebrow strong {
  color: #0A0A0A;
  font-weight: 500;
  margin-left: 6px;
}
.signal-drawer__close {
  background: none;
  border: none;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(10,10,10,0.45);
  cursor: pointer;
  padding: 6px 0;
  transition: color 200ms;
}
.signal-drawer__close:hover,
.signal-drawer__close:focus-visible { color: #0A0A0A; outline: none; }

.signal-drawer__track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(10,10,10,0.06);
}

.graphic-card {
  position: relative;
  background: #F4F2EC;
  padding: 26px 32px 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  text-align: center;
  transition: background 280ms;
  min-height: 44vh;
}
.graphic-card:hover,
.graphic-card:focus-visible {
  background: #FFFFFF;
  outline: none;
}
.graphic-card__tee {
  width: 100%;
  max-width: 240px;
  aspect-ratio: 5 / 6;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.graphic-card__tee svg {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 2px 20px rgba(10,10,10,0.06));
}
/* Real tee photograph — drops into the same slot as the SVG */
.graphic-card__tee-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 4px 24px rgba(10,10,10,0.10));
  transition: transform 360ms cubic-bezier(0.76, 0, 0.24, 1);
}
.graphic-card:hover .graphic-card__tee-img {
  transform: scale(1.04);
}
.graphic-card__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-family: var(--font-mono);
  text-transform: uppercase;
}
.graphic-card__name {
  color: #0A0A0A;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
}
.graphic-card__serial {
  color: rgba(10,10,10,0.35);
  font-size: 8px;
  letter-spacing: 0.28em;
  margin-top: 2px;
}
.graphic-card__price {
  color: #0A0A0A;
  font-size: 10px;
  letter-spacing: 0.26em;
  margin-top: 10px;
}

/* Expanded card state — subtle darken so the user sees what's selected */
.signal-col--expanded::before {
  filter: brightness(0.52) saturate(0.70);
}
.signal-col--expanded .signal-col__id { opacity: 0.85; }

/* Drawer responsive behavior */
@media (max-width: 1100px) {
  .signal-drawer__track { grid-template-columns: repeat(3, 1fr); }
  .signal-drawer--open  { max-height: 58vh; }
  .graphic-card         { padding: 22px 24px; min-height: 40vh; }
  .graphic-card__tee    { max-width: 200px; }
}
@media (max-width: 800px) {
  .signal-drawer__head  { padding: 18px 24px 12px; }
  .signal-drawer__track { grid-template-columns: 1fr; }
  .signal-drawer--open  { max-height: 180vh; }
  .graphic-card         { min-height: 46vh; }
}

@media (prefers-reduced-motion: reduce) {
  .signal-drawer { transition: none !important; }
}

/* ============================================================
   SLIDER POLISH — a11y, phase-bar tracking, reduced motion
   ============================================================ */

/* ── Phase bar: active-step tracking ───────────────────────── */
.stl__bar-phase-step {
  color:       rgba(10,10,10,0.38);
  font-weight: 400;
  transition:  color 420ms, font-weight 420ms;
}
.stl__bar-phase-step--active {
  color:       #0A0A0A;
  font-weight: 600;
}

/* ── Focus-visible — keyboard nav rings on STL slider ────── */
.stl__sigdot:focus-visible {
  outline:        1px solid rgba(10,10,10,0.55);
  outline-offset: 6px;
  border-radius:  50%;
}

/* ── Reduced motion — kill slide animation, keep functional ── */
@media (prefers-reduced-motion: reduce) {
  .stl__track {
    transition: none !important;
  }
  .stl__sigdot,
  .stl__bar-phase-step,
  .stl__bar-colorway {
    transition: none !important;
  }
  .stl__sigdot--active {
    transform: scale(1.2); /* subtle, no bounce */
  }
}


/* ============================================================
   JOURNAL / FIELD NOTES
   Replaces Digital Specimen Archive. Dated editorial entries
   in a bordered list. Beige canvas, mono typography, restrained.
   ============================================================ */

.journal {
  background: var(--skin-bg);
  border-top: 1px solid rgba(10,10,10,0.08);
  border-bottom: 1px solid rgba(10,10,10,0.08);
  padding: 10vh 7vw;
}

.journal__frame {
  max-width: 1400px;
  margin: 0 auto;
}

.journal__topbar {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 48px;
}
.journal__tag {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: #0A0A0A;
  font-weight: 600;
}
.journal__topbar-line {
  flex: 1;
  height: 1px;
  background: rgba(10,10,10,0.18);
}
.journal__coord {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: rgba(10,10,10,0.45);
  white-space: nowrap;
}

.journal__head {
  margin-bottom: 56px;
}
.journal__eyebrow {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(10,10,10,0.42);
  margin-bottom: 22px;
}
.journal__title {
  margin: 0;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 0.94;
  letter-spacing: -0.01em;
  color: #0A0A0A;
}

/* Entry list */
.journal__entries {
  list-style: none;
  padding: 0;
  margin: 0 0 48px;
  border-top: 1px solid rgba(10,10,10,0.20);
}
.journal__entry {
  display: grid;
  grid-template-columns: 148px 1fr;
  gap: 40px;
  padding: 30px 16px 30px 0;
  border-bottom: 1px solid rgba(10,10,10,0.10);
  transition: background 280ms ease, padding 280ms ease;
}
.journal__entry:hover {
  background: rgba(10,10,10,0.02);
  padding-left: 8px;
}

.journal__entry-date {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(10,10,10,0.45);
  padding-top: 4px;
}

.journal__entry-body {
  max-width: 640px;
}

.journal__entry-cat {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(10,10,10,0.55);
  padding: 5px 10px;
  border: 1px solid rgba(10,10,10,0.22);
  margin-bottom: 16px;
}

.journal__entry-title {
  margin: 0 0 12px;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: clamp(20px, 2.4vw, 32px);
  line-height: 1.18;
  letter-spacing: -0.005em;
  color: #0A0A0A;
}
.journal__entry-teaser {
  margin: 0 0 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.10em;
  line-height: 1.75;
  color: rgba(10,10,10,0.65);
  text-transform: uppercase;
  max-width: 52ch;
}
.journal__entry-link {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: #0A0A0A;
  text-decoration: none;
  border-bottom: 1px solid #0A0A0A;
  padding-bottom: 3px;
  transition: color 200ms, border-color 200ms;
}
.journal__entry-link:hover { color: rgba(10,10,10,0.55); border-bottom-color: rgba(10,10,10,0.35); }

.journal__cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 28px;
  background: transparent;
  border: 1px solid #0A0A0A;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: #0A0A0A;
  text-decoration: none;
  transition: background 260ms, color 260ms;
}
.journal__cta:hover,
.journal__cta:focus-visible {
  background: #0A0A0A;
  color: var(--skin-bg);
  outline: none;
}
.journal__cta-arrow { display: inline-block; transition: transform 260ms; }
.journal__cta:hover .journal__cta-arrow,
.journal__cta:focus-visible .journal__cta-arrow { transform: translateX(5px); }

@media (max-width: 900px) {
  .journal            { padding: 8vh 6vw; }
  .journal__topbar    { gap: 16px; margin-bottom: 36px; }
  .journal__head      { margin-bottom: 40px; }
  .journal__entry     { grid-template-columns: 1fr; gap: 14px; padding: 24px 0; }
  .journal__entry:hover { padding-left: 0; }
  .journal__entry-date { padding-top: 0; }
}
@media (max-width: 540px) {
  .journal__title         { font-size: clamp(32px, 9vw, 56px); }
  .journal__entry-title   { font-size: clamp(18px, 5vw, 24px); }
  .journal__entry-teaser  { font-size: 10px; letter-spacing: 0.06em; }
  .journal__cta           { font-size: 9px; letter-spacing: 0.22em; padding: 12px 22px; }
}


/* ============================================================
   ORIGIN — The Engineered Collision
   Replaces Signals + Ethos. Dual-city anchor, ingredient
   ledger, preserved Kikonasu + "Asian Precision / LA / South
   American Grit" copy. Corner serials match Manifesto's feel.
   ============================================================ */

.origin {
  position: relative;
  min-height: 100vh;
  background: var(--skin-bg);
  border-top: 1px solid rgba(10,10,10,0.08);
  border-bottom: 1px solid rgba(10,10,10,0.08);
  padding: 11vh 7vw 12vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.origin__frame {
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

.origin__corner {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(10,10,10,0.32);
  white-space: nowrap;
}
.origin__corner--tl { top: -48px; left:  0; }
.origin__corner--tr { top: -48px; right: 0; }
.origin__corner--br { bottom: -56px; right: 0; }

.origin__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 84px;
  align-items: start;
}

.origin__display {
  max-width: 560px;
}

.origin__eyebrow {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(10,10,10,0.42);
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(10,10,10,0.12);
}

.origin__title {
  margin: 0 0 40px;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: clamp(48px, 7vw, 104px);
  line-height: 0.92;
  letter-spacing: -0.01em;
  color: #0A0A0A;
}
.origin__title-arrow {
  display: inline-block;
  font-style: normal;
  margin: 0 0.18em;
  color: rgba(10,10,10,0.38);
  font-weight: 300;
}

.origin__lead {
  margin: 0 0 22px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1.7;
  color: #0A0A0A;
  text-transform: uppercase;
  max-width: 50ch;
}
.origin__body {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  line-height: 1.95;
  color: rgba(10,10,10,0.68);
  text-transform: uppercase;
  max-width: 46ch;
}

/* Dual coordinate plate */
.origin__coords {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: center;
  padding: 22px 0;
  border-top: 1px solid rgba(10,10,10,0.14);
  border-bottom: 1px solid rgba(10,10,10,0.14);
  margin-bottom: 36px;
}
.origin__coord {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: var(--font-mono);
  text-transform: uppercase;
}
.origin__coord-label {
  font-size: 8px;
  letter-spacing: 0.36em;
  color: rgba(10,10,10,0.42);
}
.origin__coord-city {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: #0A0A0A;
  text-transform: none;
  margin-top: 2px;
}
.origin__coord-val {
  font-size: 9px;
  letter-spacing: 0.22em;
  color: rgba(10,10,10,0.58);
  margin-top: 2px;
}
.origin__coord-arrow {
  font-size: 22px;
  color: rgba(10,10,10,0.28);
  font-weight: 300;
  line-height: 1;
}

/* Ingredient ledger */
.origin__ledger {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.origin__ledger-item {
  display: grid;
  grid-template-columns: 36px 160px 1fr;
  gap: 20px;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid rgba(10,10,10,0.10);
  font-family: var(--font-mono);
  text-transform: uppercase;
}
.origin__ledger-item:last-child { border-bottom: none; }
.origin__ledger-num {
  font-size: 9px;
  letter-spacing: 0.28em;
  color: rgba(10,10,10,0.38);
}
.origin__ledger-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.20em;
  color: #0A0A0A;
}
.origin__ledger-note {
  font-size: 9px;
  letter-spacing: 0.16em;
  color: rgba(10,10,10,0.55);
  line-height: 1.55;
}

/* Responsive */
@media (max-width: 1100px) {
  .origin { padding: 10vh 5vw; }
  .origin__grid { gap: 56px; }
}
@media (max-width: 900px) {
  .origin { padding: 9vh 6vw 10vh; min-height: auto; }
  .origin__eyebrow { margin-bottom: 28px; padding-bottom: 14px; }
  .origin__grid    { grid-template-columns: 1fr; gap: 56px; }
  .origin__title   { font-size: clamp(40px, 11vw, 72px); margin-bottom: 32px; }
  .origin__corner--tl,
  .origin__corner--tr { top: -32px; font-size: 7px; letter-spacing: 0.26em; }
  .origin__corner--br { bottom: -36px; font-size: 7px; letter-spacing: 0.26em; }
  .origin__coords  { grid-template-columns: 1fr; text-align: center; gap: 24px; }
  .origin__coord-arrow { transform: rotate(90deg); }
  .origin__ledger-item { grid-template-columns: 32px 120px 1fr; gap: 14px; }
}
@media (max-width: 540px) {
  .origin__ledger-item { grid-template-columns: 1fr; gap: 4px; padding: 16px 0; }
  .origin__ledger-num  { color: rgba(10,10,10,0.32); }
  .origin__corner      { display: none; }
}

/* ── Studio · Field Notes — flat-lay documentation strip ───────────── */
.origin__studio {
  margin-top: 88px;
  padding-top: 56px;
  border-top: 1px solid rgba(10,10,10,0.10);
}
.origin__studio-head {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
}
.origin__studio-tag {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: #0A0A0A;
  font-weight: 600;
  white-space: nowrap;
}
.origin__studio-line {
  flex: 1;
  height: 1px;
  background: rgba(10,10,10,0.16);
}
.origin__studio-loc {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: rgba(10,10,10,0.45);
  white-space: nowrap;
}

.origin__studio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(10,10,10,0.08);
}
.origin__studio-frame {
  position: relative;
  margin: 0;
  background: #F4F2EC;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}
.origin__studio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.94);
  transition: transform 520ms cubic-bezier(0.76, 0, 0.24, 1);
}
.origin__studio-frame:hover .origin__studio-img {
  transform: scale(1.04);
}
.origin__studio-cap {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(10,10,10,0.62);
  background: rgba(244,242,236,0.85);
  padding: 8px 10px;
  backdrop-filter: blur(4px);
}
.origin__studio-cap strong {
  color: #0A0A0A;
  font-weight: 600;
}

.origin__studio-note {
  margin: 36px 0 0;
  max-width: 64ch;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  line-height: 1.85;
  color: rgba(10,10,10,0.62);
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .origin__studio       { margin-top: 56px; padding-top: 36px; }
  .origin__studio-head  { gap: 14px; margin-bottom: 24px; }
  .origin__studio-tag,
  .origin__studio-loc   { font-size: 8px; letter-spacing: 0.22em; }
  .origin__studio-grid  { grid-template-columns: 1fr; gap: 8px; background: transparent; }
  .origin__studio-frame { aspect-ratio: 3 / 4; }
  .origin__studio-note  { font-size: 10px; letter-spacing: 0.10em; line-height: 1.75; }
}
@media (max-width: 540px) {
  .origin__studio-head  { flex-wrap: wrap; gap: 8px; }
  .origin__studio-line  { display: none; }
}


/* ============================================================
   PRODUCT DETAIL PAGE (PDP) — Full-screen takeover modal
   Fires from a graphic-tile click inside the Color Registry
   drawer. Carries Graphic × Colorway × Size × Qty into cart.
   ============================================================ */

.pdp {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  background: var(--skin-bg);
  overflow: hidden;
  isolation: isolate;
}
.pdp--active {
  display: block;
  animation: pdpFadeIn 320ms ease-out;
}
@keyframes pdpFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.pdp__shell {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── Top + bottom bars ─────────────────────────────────── */
.pdp__bar {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 56px;
  height: 56px;
  background: var(--skin-bg);
}
.pdp__bar--head { border-bottom: 1px solid rgba(10,10,10,0.10); }
.pdp__bar--foot { border-top:    1px solid rgba(10,10,10,0.10); }

.pdp__serial {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: rgba(10,10,10,0.50);
}
.pdp__serial strong  { color: #0A0A0A; font-weight: 600; }
.pdp__serial .pdp__sep { color: rgba(10,10,10,0.30); }

.pdp__close,
.pdp__back,
.pdp__cart {
  background: none;
  border: none;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(10,10,10,0.55);
  cursor: pointer;
  padding: 6px 0;
  transition: color 220ms;
}
.pdp__close:hover,
.pdp__back:hover,
.pdp__cart:hover { color: #0A0A0A; outline: none; }

.pdp__phase {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: rgba(10,10,10,0.40);
}
.pdp__phase strong { color: #0A0A0A; font-weight: 600; }

/* ── Body: image + meta two-column ─────────────────────── */
.pdp__body {
  flex: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  overflow: hidden;
}

/* ── Left column: hero product image ───────────────────── */
.pdp__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
  background: linear-gradient(
    180deg,
    rgba(10,10,10,0.02) 0%,
    rgba(10,10,10,0.00) 40%
  );
  overflow: hidden;
}
.pdp__img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 30px 60px rgba(10,10,10,0.10));
}

/* ── Right column: meta + actions ──────────────────────── */
.pdp__meta {
  padding: 56px 56px 56px 48px;
  border-left: 1px solid rgba(10,10,10,0.08);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pdp__eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(10,10,10,0.42);
  display: block;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(10,10,10,0.10);
}

.pdp__title {
  margin: 0 0 14px;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: clamp(36px, 4.4vw, 64px);
  line-height: 0.96;
  letter-spacing: -0.01em;
  color: #0A0A0A;
}

.pdp__sub {
  margin: 0 0 32px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(10,10,10,0.55);
  display: flex;
  flex-wrap: wrap;
  gap: 0 10px;
}
.pdp__sub-sep { color: rgba(10,10,10,0.30); }

.pdp__price-row {
  margin-bottom: 0;
}
.pdp__price {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: clamp(20px, 2vw, 28px);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #0A0A0A;
}

.pdp__rule {
  border: 0;
  border-top: 1px solid rgba(10,10,10,0.10);
  margin: 26px 0;
}

/* Field labels (Size / Qty) */
.pdp__field {
  display: flex;
  align-items: center;
  gap: 32px;
}
.pdp__field-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: rgba(10,10,10,0.45);
  min-width: 56px;
}

/* Size selector */
.pdp__size-options {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.pdp__size-btn {
  width: 48px;
  height: 48px;
  background: transparent;
  border: 1px solid rgba(10,10,10,0.20);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #0A0A0A;
  cursor: pointer;
  transition: background 200ms, color 200ms, border-color 200ms;
}
.pdp__size-btn:hover {
  border-color: rgba(10,10,10,0.55);
}
.pdp__size-btn[aria-checked="true"] {
  background: #0A0A0A;
  color: var(--skin-bg);
  border-color: #0A0A0A;
}
.pdp__size-btn:focus-visible {
  outline: 2px solid rgba(10,10,10,0.60);
  outline-offset: 2px;
}

/* Qty stepper */
.pdp__qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(10,10,10,0.20);
}
.pdp__qty-btn {
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 400;
  color: #0A0A0A;
  cursor: pointer;
  transition: background 200ms;
}
.pdp__qty-btn:hover { background: rgba(10,10,10,0.05); }
.pdp__qty-btn:focus-visible { outline: 1px solid rgba(10,10,10,0.55); outline-offset: -1px; }
.pdp__qty-val {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: #0A0A0A;
  border-left: 1px solid rgba(10,10,10,0.14);
  border-right: 1px solid rgba(10,10,10,0.14);
  height: 40px;
}

/* Add to Archive — primary CTA */
.pdp__add {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 24px;
  background: #0A0A0A;
  border: 1px solid #0A0A0A;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--skin-bg);
  cursor: pointer;
  transition: background 240ms, color 240ms;
}
.pdp__add:hover,
.pdp__add:focus-visible {
  background: transparent;
  color: #0A0A0A;
  outline: none;
}
.pdp__add-arrow { transition: transform 240ms; }
.pdp__add:hover .pdp__add-arrow,
.pdp__add:focus-visible .pdp__add-arrow { transform: translateX(5px); }
.pdp__add--added {
  background: rgba(10,10,10,0.08);
  color: #0A0A0A;
  border-color: rgba(10,10,10,0.20);
}

/* Specs ledger */
.pdp__specs {
  margin: 32px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.pdp__specs-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(10,10,10,0.08);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
}
.pdp__specs-row:last-child { border-bottom: none; }
.pdp__specs-row dt {
  margin: 0;
  color: rgba(10,10,10,0.42);
}
.pdp__specs-row dd {
  margin: 0;
  color: #0A0A0A;
  font-weight: 500;
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1100px) {
  .pdp__bar    { padding: 0 36px; }
  .pdp__media  { padding: 36px; }
  .pdp__meta   { padding: 36px; }
  .pdp__title  { font-size: clamp(32px, 5vw, 48px); }
}

@media (max-width: 800px) {
  .pdp__shell  { height: 100vh; }
  .pdp__bar    { padding: 0 22px; height: 48px; }
  .pdp__phase  { display: none; }
  .pdp__body   {
    grid-template-columns: 1fr;
    grid-template-rows: 50vh 1fr;
    overflow-y: auto;
  }
  .pdp__media  { padding: 24px; }
  .pdp__meta   {
    border-left: none;
    border-top: 1px solid rgba(10,10,10,0.08);
    padding: 28px 22px;
    overflow-y: visible;
  }
  .pdp__title  { font-size: clamp(28px, 7vw, 40px); }
  .pdp__field  { gap: 18px; }
  .pdp__field-label { min-width: 40px; font-size: 8px; letter-spacing: 0.26em; }
  .pdp__size-btn { width: 42px; height: 42px; }
  .pdp__rule   { margin: 20px 0; }
  .pdp__add    { font-size: 10px; letter-spacing: 0.22em; padding: 16px 20px; }
}

@media (max-width: 540px) {
  .pdp__bar    { padding: 0 18px; }
  .pdp__close,
  .pdp__back,
  .pdp__cart   { font-size: 8px; letter-spacing: 0.20em; }
  .pdp__serial { font-size: 8px; letter-spacing: 0.22em; }
}


/* ============================================================
   FOOTER TICKER — drop-release ticker
   Replaces the standalone marquee band. Top-line of footer.
   ============================================================ */

.footer__ticker {
  overflow: hidden;
  border-top:    1px solid rgba(244,242,236,0.10);
  border-bottom: 1px solid rgba(244,242,236,0.10);
  padding: 14px 0;
  background: inherit;
  user-select: none;
}
.footer__ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
  animation: marquee 48s linear infinite;
}
.footer__ticker-item {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: rgba(244,242,236,0.42);
}
.footer__ticker-item--em {
  color: #F4F2EC;
  font-weight: 500;
}
.footer__ticker-sep {
  color: rgba(244,242,236,0.24);
  font-size: 10px;
}

