/* =========================================================
   DISCLOSURE ERA — PUBLIC RECORD APPAREL
   Cinematic dark editorial — mirrors mockup pixel for pixel
   ========================================================= */

:root {
  --ink:        #0E0E10;
  --ink-2:      #14130f;
  --ink-3:      #1c1a16;
  --panel:      #1a1814;
  --panel-2:    #232017;
  --paper:      #E6DFD0;
  --paper-2:    #c8c0b0;
  --paper-mute: #8c8676;
  --tan:        #C9B996;
  --yellow:     #E5C547;
  --line:       rgba(230,223,208,0.12);
  --line-2:     rgba(230,223,208,0.06);

  --serif: 'Fraunces', Georgia, serif;
  --sans:  'Inter', system-ui, -apple-system, sans-serif;
  --mono:  'JetBrains Mono', ui-monospace, monospace;

  --nav-h: 64px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  background: var(--ink);
  color: var(--paper);
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: linear-gradient(180deg, rgba(14,14,16,0.85) 0%, rgba(14,14,16,0.4) 70%, transparent 100%);
  backdrop-filter: blur(4px);
}
.nav__inner {
  width: 100%;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}
.nav__brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  letter-spacing: 0.08em;
  color: var(--paper);
}
.nav__brand-mark {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
}
.nav__brand-sub {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 400;
  color: var(--paper-mute);
  letter-spacing: 0.18em;
  margin-top: 3px;
}
.nav__center {
  display: flex;
  gap: 36px;
  align-items: center;
  justify-content: center;
}
.nav__center a {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--paper);
  transition: color 0.2s;
}
.nav__center a:hover { color: var(--tan); }

.nav__right {
  display: flex;
  gap: 24px;
  justify-content: flex-end;
  align-items: center;
}
.nav__icon-link {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}
.nav__icon-link:hover { color: var(--tan); }
.nav__crosshair {
  width: 14px; height: 14px;
  color: var(--paper-mute);
}
.nav__cart-count { color: var(--paper-mute); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  background: var(--ink);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14,14,16,0.5) 0%, rgba(14,14,16,0) 25%, rgba(14,14,16,0) 70%, rgba(14,14,16,0.85) 100%),
    linear-gradient(90deg, rgba(14,14,16,0.5) 0%, rgba(14,14,16,0) 35%, rgba(14,14,16,0) 65%, rgba(14,14,16,0.3) 100%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  flex: 1;
  padding: calc(var(--nav-h) + 64px) 56px 56px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero__copy { max-width: 560px; }
.hero__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(56px, 7vw, 96px);
  letter-spacing: 0.15em;
  line-height: 1;
  margin: 0;
  color: var(--paper);
  text-transform: uppercase;
}
.hero__sub {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--paper);
  margin: 18px 0 0;
  font-weight: 500;
}
.hero__body {
  margin-top: 44px;
}
.hero__body p {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  margin: 0 0 4px;
  letter-spacing: 0.02em;
  color: var(--paper);
}
.hero__cta {
  margin-top: 44px;
  display: inline-flex;
  align-items: center;
  gap: 64px;
  padding: 18px 24px;
  border: 1px solid var(--line);
  background: rgba(20,19,15,0.55);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--paper);
  transition: background 0.2s, border-color 0.2s;
  min-width: 280px;
  justify-content: space-between;
}
.hero__cta:hover {
  background: rgba(20,19,15,0.85);
  border-color: var(--tan);
}
.hero__cta svg { width: 18px; height: 18px; }

.hero__scroll {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--paper-mute);
}
.hero__scroll svg { width: 14px; height: 14px; }

/* chips bar */
.hero__chips {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 12px;
  padding: 22px 56px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(14,14,16,0.65);
}
.chip {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--paper);
  white-space: nowrap;
  font-weight: 500;
}
.chip-sep {
  width: 14px; height: 14px;
  color: var(--paper-mute);
  flex-shrink: 0;
}

/* =========================================================
   COLLECTION GRID
   ========================================================= */
.collection {
  padding: 64px 56px 80px;
  background: var(--ink);
}
.collection__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.collection__title {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--paper);
  margin: 0;
}
.collection__view-all {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--paper);
  transition: color 0.2s;
}
.collection__view-all:hover { color: var(--tan); }
.collection__view-all svg { width: 16px; height: 16px; }

.collection__browse {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 22px;
  padding: 16px 0 26px;
}
.collection__browse-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--paper-mute);
}
.collection__browse a {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--paper);
  padding: 7px 14px;
  border: 1px solid var(--line);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.collection__browse a:hover {
  background: var(--tan);
  border-color: var(--tan);
  color: var(--ink);
}

.collection__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border: 1px solid var(--line);
}
/* 12-product grid: bottom row needs its own border */
.product-card:nth-child(n+7) { border-top: 1px solid var(--line); }

.product-card {
  display: block;
  padding: 0;
  background: var(--ink);
  border-right: 1px solid var(--line);
  transition: background 0.3s;
  position: relative;
}
.product-card:last-child { border-right: none; }
.product-card:hover { background: var(--ink-2); }
.product-card:hover .product-card__cta { color: var(--tan); }

.product-card__img-wrap {
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
  background: var(--ink-2);
  border-bottom: 1px solid var(--line);
}
.product-card__img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .product-card__img-wrap img { transform: scale(1.03); }

.product-card__meta {
  padding: 18px 16px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.product-card__num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--paper-mute);
  font-weight: 500;
}
.product-card__name {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--paper);
  font-weight: 500;
  line-height: 1.5;
  min-height: 2.6em;
}
.product-card__price {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--paper);
  font-weight: 500;
  margin-top: 4px;
}
.product-card__status {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--tan);
  margin-top: 6px;
}
.product-card--placeholder .product-card__img-wrap {
  background: var(--ink-2);
}
.product-card--placeholder .product-card__img-wrap::after {
  content: "";
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(45deg, transparent 0, transparent 12px, rgba(230,223,208,0.025) 12px, rgba(230,223,208,0.025) 13px);
}
.product-card--placeholder .product-card__placeholder-mark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--paper-mute);
}
.product-card--placeholder .product-card__placeholder-mark svg {
  width: 48px; height: 48px;
  opacity: 0.4;
}
.product-card--placeholder .product-card__name { color: var(--paper-mute); }

/* =========================================================
   MANIFESTO (mid 3-panel)
   ========================================================= */
.manifesto {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  background: var(--ink);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.manifesto__panel {
  position: relative;
  min-height: 380px;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  overflow: hidden;
  color: var(--paper);
}
.manifesto__panel:last-child { border-right: none; }

.manifesto__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.manifesto__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.manifesto__bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,14,16,0.35) 0%, rgba(14,14,16,0.7) 100%);
}

.manifesto__copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  height: 100%;
  justify-content: space-between;
}
.manifesto__copy h3 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(26px, 2.4vw, 36px);
  line-height: 1.05;
  margin: 0;
  color: var(--paper);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.manifesto__lead {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--paper);
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
}
.manifesto__btn {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  background: rgba(20,19,15,0.5);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--paper);
  font-weight: 500;
  align-self: flex-start;
  transition: background 0.2s, border-color 0.2s;
}
.manifesto__panel--image:hover .manifesto__btn {
  background: rgba(20,19,15,0.85);
  border-color: var(--tan);
}
.manifesto__btn svg { width: 16px; height: 16px; }

.manifesto__panel--dossier {
  background: var(--ink-2);
}
.dossier {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  z-index: 1;
}
.dossier li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 16px;
  align-items: flex-start;
}
.dossier__icon {
  width: 28px; height: 28px;
  color: var(--paper);
  margin-top: 2px;
}
.dossier h4 {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  margin: 0 0 4px;
  color: var(--paper);
}
.dossier p {
  font-family: var(--sans);
  font-size: 12px;
  line-height: 1.5;
  margin: 0;
  color: var(--paper-2);
  font-weight: 300;
}

.manifesto__copy--right {
  justify-content: flex-start;
  gap: 24px;
}
.newsletter {
  display: flex;
  align-items: stretch;
  background: rgba(20,19,15,0.6);
  border: 1px solid var(--line);
  max-width: 320px;
}
.newsletter input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 13px 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--paper);
  outline: none;
}
.newsletter input::placeholder {
  color: var(--paper-mute);
}
.newsletter button {
  background: rgba(20,19,15,0.7);
  border: none;
  border-left: 1px solid var(--line);
  padding: 0 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--paper);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s, color 0.2s;
}
.newsletter button:hover {
  background: var(--tan);
  color: var(--ink);
}
.newsletter button svg { width: 14px; height: 14px; }
.newsletter__msg {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--tan);
  margin: 4px 0 0;
  min-height: 1em;
}

/* =========================================================
   DETAIL STRIP
   ========================================================= */
.detail-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  background: var(--ink);
}
.detail-strip__cell {
  aspect-ratio: 1/1;
  overflow: hidden;
  border-right: 1px solid var(--line);
  background-color: var(--ink-2);
  background-image: url('detail-strip.png');
  background-size: 500% 100%;
  background-repeat: no-repeat;
  filter: brightness(0.92) saturate(0.85);
  transition: filter 0.3s, transform 0.5s ease;
}
.detail-strip__cell:last-child { border-right: none; }
.detail-strip__cell:nth-child(1) { background-position:   0% center; }
.detail-strip__cell:nth-child(2) { background-position:  25% center; }
.detail-strip__cell:nth-child(3) { background-position:  50% center; }
.detail-strip__cell:nth-child(4) { background-position:  75% center; }
.detail-strip__cell:nth-child(5) { background-position: 100% center; }
.detail-strip__cell:hover {
  filter: brightness(1.05) saturate(1);
}

/* =========================================================
   FOOTER
   ========================================================= */
.foot {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  align-items: center;
  padding: 32px 56px;
  background: var(--ink);
  border-top: 1px solid var(--line);
  gap: 24px;
}
.foot__brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.foot__mark {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--paper);
}
.foot__sub {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--paper-mute);
}
.foot__nav {
  display: flex;
  justify-content: center;
  gap: 32px;
}
.foot__nav a {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--paper);
  transition: color 0.2s;
}
.foot__nav a:hover { color: var(--tan); }
.foot__copy {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--paper-mute);
}
.foot__crosshair {
  width: 14px; height: 14px;
  color: var(--paper-mute);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1100px) {
  .collection__grid { grid-template-columns: repeat(3, 1fr); }
  .product-card:nth-child(3n) { border-right: none; }
  .product-card { border-bottom: 1px solid var(--line); }
  .manifesto { grid-template-columns: 1fr; }
  .manifesto__panel { border-right: none; border-bottom: 1px solid var(--line); min-height: 320px; }
}

@media (max-width: 720px) {
  .nav__inner { grid-template-columns: 1fr auto; padding: 0 20px; }
  .nav__center { display: none; }
  .nav__right { gap: 14px; }
  .nav__icon-link { font-size: 10px; }

  .hero__inner { padding: calc(var(--nav-h) + 40px) 24px 32px; }
  .hero__cta { min-width: 0; gap: 20px; width: 100%; }
  .hero__chips {
    flex-wrap: wrap;
    padding: 16px 20px;
    justify-content: center;
    gap: 8px;
  }
  .chip { font-size: 9px; letter-spacing: 0.18em; }
  .chip-sep { width: 10px; height: 10px; }

  .collection { padding: 40px 24px 56px; }
  .collection__grid { grid-template-columns: repeat(2, 1fr); }
  .product-card:nth-child(2n) { border-right: none; }
  .product-card { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }

  .detail-strip { grid-template-columns: repeat(3, 1fr); }
  .detail-strip__cell:nth-child(4),
  .detail-strip__cell:nth-child(5) { display: none; }

  .foot {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 24px 20px;
    gap: 16px;
  }
  .foot__brand, .foot__copy, .foot__nav { justify-content: center; align-items: center; }
  .foot__nav { flex-wrap: wrap; gap: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}
