/* ============================================================
   BNVS — BE WORTH THE ENVY
   Design system: steel-blue monochrome / brutalist-editorial
   Hand-written CSS, no build step. Swap-ready placeholders.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Grenze+Gotisch:wght@400;500;600;700;800;900&family=Archivo:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;700&display=swap');

/* ---------- Tokens ---------- */
:root {
  /* Warm espresso / bone scale (vintage-gothic) */
  --ink:        #14110D;
  --steel-950:  #181410;
  --steel-900:  #1E1812;
  --steel-850:  #241D16;
  --steel-800:  #2B2219;
  --steel-700:  #3A2E22;
  --steel-600:  #4C3B2B;
  --steel-500:  #6B563E;
  --steel-400:  #8C7457;
  --steel-300:  #B6A488;
  --steel-200:  #D4C9B5;
  --steel-100:  #EDE8DA;
  --frost:      #F2EEE3;

  --accent:        #C23B36;  /* oxblood (bright) */
  --accent-strong: #DA5750;
  --accent-deep:   #8E2420;

  --bg:        var(--ink);
  --surface:   var(--steel-900);
  --surface-2: var(--steel-850);
  --line:      var(--steel-700);
  --line-soft: rgba(182, 164, 136, 0.16);
  --text:      var(--steel-100);
  --text-dim:  var(--steel-300);
  --text-mute: var(--steel-400);
  --head:      var(--frost);

  /* Type */
  --font-display: 'Grenze Gotisch', 'UnifrakturCook', serif;
  --font-body:    'Archivo', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;

  --fs-mega:    clamp(2.6rem, 9vw, 7.5rem);
  --fs-display: clamp(2.6rem, 10vw, 9rem);
  --fs-h1:      clamp(2rem, 6.5vw, 5.5rem);
  --fs-h2:      clamp(1.7rem, 4.5vw, 3.4rem);
  --fs-h3:      clamp(1.15rem, 2.4vw, 1.7rem);
  --fs-body:    1.0625rem;
  --fs-label:   0.72rem;

  /* Layout */
  --maxw: 1480px;
  --gutter: clamp(1.1rem, 4vw, 3.5rem);
  --nav-h: 70px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 320ms;

  --z-nav: 50;
  --z-overlay: 60;
  --z-menu: 70;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
input, button { font-family: inherit; }
ul { list-style: none; padding: 0; }

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

:focus-visible {
  outline: 2px solid var(--accent-strong);
  outline-offset: 3px;
}

/* ---------- Type helpers ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: 0.005em;
  text-transform: none;
  color: var(--head);
}
.mega    { font-family: var(--font-display); font-weight: 700; line-height: 0.9; text-transform: none; font-size: var(--fs-mega); letter-spacing: 0; color: var(--head); }
.t-display { font-size: var(--fs-display); }
.t-h1 { font-size: var(--fs-h1); }
.t-h2 { font-size: var(--fs-h2); }
.t-h3 { font-size: var(--fs-h3); }

.label {
  font-family: var(--font-mono);
  font-size: var(--fs-label);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
  font-weight: 500;
}
.label--accent { color: var(--accent); }
.label--frost  { color: var(--steel-200); }

.bracket::before { content: "[ "; }
.bracket::after  { content: " ]"; }

.lead { font-size: clamp(1.05rem, 1.6vw, 1.35rem); color: var(--text-dim); line-height: 1.55; max-width: 56ch; }
.muted { color: var(--text-mute); }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(4rem, 9vw, 9rem); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.divider { border-top: 1px solid var(--line); }
.stack > * + * { margin-top: 1.1rem; }

/* ---------- Skip link ---------- */
.skip {
  position: absolute; left: 1rem; top: -100px;
  background: var(--frost); color: var(--ink);
  padding: 0.6rem 1rem; z-index: var(--z-menu); font-family: var(--font-mono);
  font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
  transition: top var(--dur) var(--ease);
}
.skip:focus { top: 1rem; }

/* ---------- Top ticker ---------- */
.ticker {
  background: var(--frost);
  color: var(--ink);
  overflow: hidden;
  border-bottom: 1px solid var(--ink);
}
.ticker__track {
  display: flex; gap: 3rem; width: max-content;
  padding-block: 0.45rem;
  font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.22em;
  text-transform: uppercase; font-weight: 500;
  animation: marquee 34s linear infinite;
}
.ticker__track span { white-space: nowrap; display: inline-flex; align-items: center; gap: 3rem; }
.ticker__track span::after { content: "✦"; color: var(--steel-500); }

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

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: var(--z-nav);
  height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(9, 13, 17, 0.72);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line-soft);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; width: 100%; }
.brand {
  font-family: var(--font-display);
  font-size: 1.65rem; letter-spacing: 0.06em; color: var(--head);
  line-height: 1; display: inline-flex; align-items: center; gap: 0.5rem;
}
.brand sup { font-family: var(--font-mono); font-size: 0.5rem; color: var(--accent); letter-spacing: 0; }
.nav__links { display: flex; align-items: center; gap: clamp(1rem, 2.5vw, 2.4rem); }
.nav__link {
  font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--text-dim);
  position: relative; padding: 0.35rem 0; transition: color var(--dur) var(--ease);
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1px; width: 0;
  background: var(--accent); transition: width var(--dur) var(--ease);
}
.nav__link:hover, .nav__link[aria-current="page"] { color: var(--head); }
.nav__link:hover::after, .nav__link[aria-current="page"]::after { width: 100%; }

.nav__right { display: flex; align-items: center; gap: 1.1rem; }
.cart-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-dim);
  border: 1px solid var(--line); padding: 0.5rem 0.8rem;
  transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.cart-btn:hover { color: var(--head); border-color: var(--steel-400); }
.cart-btn__count {
  background: var(--accent); color: var(--ink); border-radius: 999px;
  min-width: 1.25rem; height: 1.25rem; display: inline-grid; place-items: center;
  font-size: 0.65rem; font-weight: 700; padding-inline: 0.3rem;
}
.menu-toggle { display: none; }

/* ---------- Mobile menu ---------- */
.mobile-menu {
  position: fixed; inset: 0; z-index: var(--z-menu);
  background: var(--ink);
  transform: translateY(-100%);
  transition: transform 480ms var(--ease);
  display: flex; flex-direction: column;
  padding: var(--gutter);
  visibility: hidden;
}
.mobile-menu.open { transform: translateY(0); visibility: visible; }
.mobile-menu__top { display: flex; justify-content: space-between; align-items: center; }
.mobile-menu__links { margin-top: auto; margin-bottom: auto; display: grid; gap: 0.4rem; }
.mobile-menu__links a {
  font-family: var(--font-display); font-weight: 700; font-size: clamp(2.6rem, 13vw, 5rem);
  text-transform: none; color: var(--head); line-height: 1; letter-spacing: 0.01em;
  display: flex; align-items: baseline; gap: 1rem; transition: color var(--dur) var(--ease);
}
.mobile-menu__links a span { font-family: var(--font-mono); font-size: 0.8rem; color: var(--accent); }
.mobile-menu__links a:hover { color: var(--accent); }
.mobile-menu__foot { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.15em; color: var(--text-mute); text-transform: uppercase; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.7rem;
  font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.14em;
  text-transform: uppercase; font-weight: 500;
  padding: 1rem 1.6rem; border: 1px solid transparent;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease),
              border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn--solid { background: var(--frost); color: var(--ink); }
.btn--solid:hover { background: var(--accent-strong); }
.btn--ghost { border-color: var(--steel-500); color: var(--head); }
.btn--ghost:hover { border-color: var(--frost); background: var(--frost); color: var(--ink); }
.btn--accent { background: var(--accent); color: var(--ink); }
.btn--accent:hover { background: var(--accent-strong); }
.btn--block { width: 100%; }
.btn .arrow { transition: transform var(--dur) var(--ease); }
.btn:hover .arrow { transform: translate(3px, -3px); }

/* ---------- Designed placeholder media (swap for real photos) ---------- */
.ph {
  position: relative; overflow: hidden;
  background:
    linear-gradient(135deg, var(--steel-800), var(--steel-950) 70%);
  isolation: isolate;
}
.ph::before {
  /* hairline grid texture */
  content: ""; position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(var(--line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(120% 120% at 50% 30%, #000 40%, transparent 100%);
}
.ph__mono {
  position: absolute; z-index: 1; inset: 0;
  display: grid; place-items: center;
  font-family: var(--font-display); text-transform: uppercase;
  color: var(--steel-700); font-size: clamp(3rem, 14vw, 9rem); line-height: 1;
  letter-spacing: 0.04em; user-select: none;
}
.ph__tag {
  position: absolute; z-index: 2; left: 1rem; bottom: 1rem;
  font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--steel-300);
}
.ph__tag--tr { left: auto; right: 1rem; bottom: auto; top: 1rem; color: var(--accent); }
.ph img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 3; }

/* ---------- Product card ---------- */
.grid { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--bg);
  display: flex; flex-direction: column;
  text-align: left;
}
a.card { color: inherit; }
.card__media { aspect-ratio: 4 / 5; position: relative; overflow: hidden; }
.card__media .ph { position: absolute; inset: 0; }
.card__media .ph__mono { transition: transform 600ms var(--ease), color var(--dur) var(--ease); }
.card:hover .card__media .ph__mono { transform: scale(1.06); color: var(--steel-600); }
.card:hover .card__media .ph img { transform: scale(1.05); }
.card__media .ph img { transition: transform 700ms var(--ease); }
.card__quick {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 4;
  background: var(--frost); color: var(--ink);
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.85rem; text-align: center; font-weight: 600;
  transform: translateY(100%); transition: transform var(--dur) var(--ease);
}
.card:hover .card__quick, .card:focus-within .card__quick { transform: translateY(0); }
.card__body { padding: 1rem 1.1rem 1.3rem; display: flex; flex-direction: column; gap: 0.55rem; flex: 1; }
.card__row { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.card__name { font-family: var(--font-body); font-weight: 700; font-size: 0.98rem; letter-spacing: 0.01em; text-transform: uppercase; color: var(--head); }
.card__price { font-family: var(--font-mono); font-size: 0.85rem; color: var(--text-dim); white-space: nowrap; }
.card__meta { display: flex; align-items: center; gap: 0.6rem; margin-top: auto; }
.swatches { display: flex; gap: 0.35rem; }
.swatch { width: 13px; height: 13px; border-radius: 999px; border: 1px solid var(--line-soft); }

/* ---------- Marquee band ---------- */
.band {
  border-block: 1px solid var(--line);
  overflow: hidden; background: var(--surface);
}
.band__track {
  display: flex; gap: 2.5rem; width: max-content; padding-block: 1.3rem;
  animation: marquee 30s linear infinite;
}
.band__track.reverse { animation-direction: reverse; }
.band__track span {
  font-family: var(--font-display); font-weight: 700; text-transform: none;
  font-size: clamp(2rem, 4.4vw, 3.3rem); color: var(--steel-600);
  white-space: nowrap; display: inline-flex; align-items: center; gap: 2.5rem;
}
.band__track span em { color: var(--head); font-style: normal; }
.band__track span::after { content: "/"; color: var(--accent); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 700ms var(--ease), transform 700ms var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: 80ms; }
.reveal[data-d="2"] { transition-delay: 160ms; }
.reveal[data-d="3"] { transition-delay: 240ms; }
.reveal[data-d="4"] { transition-delay: 320ms; }

/* ---------- Footer ---------- */
.footer { background: var(--steel-950); border-top: 1px solid var(--line); }
.footer__mega { font-family: var(--font-display); text-transform: uppercase; color: var(--head); font-size: clamp(3.5rem, 19vw, 16rem); line-height: 0.82; letter-spacing: 0.01em; padding-block: clamp(1.5rem, 4vw, 3rem); }
.footer__cols { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 2rem; padding-block: 3rem; border-top: 1px solid var(--line); }
.footer h4 { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-mute); margin-bottom: 1.1rem; font-weight: 500; }
.footer li + li { margin-top: 0.55rem; }
.footer__cols a { color: var(--text-dim); font-size: 0.92rem; transition: color var(--dur) var(--ease); }
.footer__cols a:hover { color: var(--head); }
.footer__bottom { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; padding-block: 1.6rem; border-top: 1px solid var(--line); font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-mute); }

/* ---------- Newsletter ---------- */
.subscribe { display: flex; gap: 0; border: 1px solid var(--steel-500); max-width: 480px; }
.subscribe input {
  flex: 1; background: transparent; border: none; color: var(--head);
  padding: 1rem 1.1rem; font-family: var(--font-mono); font-size: 0.82rem; letter-spacing: 0.06em;
}
.subscribe input::placeholder { color: var(--text-mute); }
.subscribe input:focus { outline: none; background: rgba(127,184,220,0.06); }
.subscribe button { background: var(--frost); color: var(--ink); padding-inline: 1.3rem; font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; transition: background var(--dur) var(--ease); }
.subscribe button:hover { background: var(--accent-strong); }
.form-note { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.06em; color: var(--accent); margin-top: 0.8rem; min-height: 1.1em; }

/* ---------- Utilities ---------- */
.flow > * + * { margin-top: 1.4rem; }
.eyebrow-row { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.eyebrow-row .rule { flex: 1; height: 1px; background: var(--line); min-width: 30px; }
.between { display: flex; justify-content: space-between; align-items: flex-end; gap: 1.5rem; flex-wrap: wrap; }
.tag-list { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tag { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-dim); border: 1px solid var(--line); padding: 0.4rem 0.7rem; }

/* ============================================================
   Shop / filter bar
   ============================================================ */
.filter-bar { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; }
.filter {
  font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-dim); border: 1px solid var(--line); padding: 0.55rem 0.9rem;
  display: inline-flex; align-items: center; gap: 0.5rem;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.filter:hover { color: var(--head); border-color: var(--steel-400); }
.filter__n { font-size: 0.6rem; color: var(--text-mute); }
.filter[aria-pressed="true"] { background: var(--frost); color: var(--ink); border-color: var(--frost); }
.filter[aria-pressed="true"] .filter__n { color: var(--steel-500); }

/* ============================================================
   Product detail
   ============================================================ */
.pdp { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: start; }
.pdp__gallery { display: grid; grid-template-columns: 76px 1fr; gap: 1px; }
.pdp__thumbs { display: flex; flex-direction: column; gap: 1px; }
.pdp__thumb { aspect-ratio: 1; background: var(--surface); position: relative; border: 1px solid transparent; transition: border-color var(--dur) var(--ease); }
.pdp__thumb .ph { position: absolute; inset: 0; }
.pdp__thumb[aria-pressed="true"] { border-color: var(--accent); }
.pdp__main { aspect-ratio: 4/5; position: relative; }
.pdp__main .ph { position: absolute; inset: 0; }
.pdp__info { position: sticky; top: calc(var(--nav-h) + 1.5rem); }
.opt-group { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.opt {
  min-width: 48px; min-height: 48px; padding: 0 0.9rem;
  font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 0.08em;
  color: var(--text-dim); border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.opt:hover { color: var(--head); border-color: var(--steel-400); }
.opt[aria-pressed="true"] { background: var(--frost); color: var(--ink); border-color: var(--frost); }
.opt--color { width: 48px; padding: 0; }
.opt--color span { width: 20px; height: 20px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.15); }
.price-row { display: flex; align-items: baseline; gap: 1rem; }
.price { font-family: var(--font-mono); font-size: 1.4rem; color: var(--head); }
.field-label { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 0.7rem; }
.accordion { border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.1rem 0; cursor: pointer; font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--head); list-style: none; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary .pm { color: var(--accent); font-size: 1.1rem; transition: transform var(--dur) var(--ease); }
.accordion details[open] summary .pm { transform: rotate(45deg); }
.accordion .acc-body { padding-bottom: 1.2rem; color: var(--text-dim); font-size: 0.95rem; max-width: 52ch; }
.breadcrumb { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-mute); display: flex; gap: 0.6rem; flex-wrap: wrap; }
.breadcrumb a:hover { color: var(--head); }

/* ============================================================
   About page
   ============================================================ */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 5vw, 4rem); align-items: center; }
.value-row { display: grid; grid-template-columns: 64px 1fr; gap: 1.5rem; padding-block: 2rem; border-top: 1px solid var(--line); align-items: start; }
.value-row .num { font-family: var(--font-display); font-size: 2.2rem; color: var(--steel-600); line-height: 1; }
.value-row h3 { font-family: var(--font-body); font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em; color: var(--head); font-size: 1.2rem; margin-bottom: 0.6rem; }
.value-row p { color: var(--text-dim); max-width: 56ch; }

@media (max-width: 860px) {
  .pdp { grid-template-columns: 1fr; }
  .pdp__info { position: static; }
  .about-split { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .pdp__gallery { grid-template-columns: 56px 1fr; }
}

/* ============================================================
   Home page composition
   ============================================================ */
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(1.5rem, 4vw, 4rem); align-items: end; }
.hero-copy { padding-bottom: 0.5rem; }
.hero-media { display: flex; flex-direction: column; gap: 1px; }
.hero-thumbs { display: grid; grid-template-columns: repeat(3, 1fr) auto; gap: 1px; align-items: stretch; margin-top: 1px; }
.hero-count { display: flex; align-items: center; padding-inline: 0.8rem; background: var(--surface); white-space: nowrap; }

.manifesto { background: var(--frost); color: var(--ink); padding-block: clamp(4rem, 9vw, 8rem); }
.manifesto__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 5vw, 4rem); }
.manifesto__body { font-size: clamp(1.05rem, 1.5vw, 1.3rem); line-height: 1.6; color: #2b3a45; max-width: 52ch; }
.manifesto__body strong { color: var(--ink); }
.manifesto__body p + p { margin-top: 1.1rem; }
.manifesto__quote { font-family: var(--font-display); font-weight: 700; text-transform: none; color: var(--accent-deep); font-size: clamp(1.9rem, 3.4vw, 3rem); line-height: 1.02; margin-top: 2rem !important; letter-spacing: 0.005em; }

.signup-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 5vw, 4rem); align-items: center; }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; align-items: start; }
  .manifesto__grid { grid-template-columns: 1fr; }
  .signup-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(3, 1fr); }
  .footer__cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .nav__links { display: none; }
  .cart-btn span.cart-label { display: none; }
  .menu-toggle { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--head); }
  .grid--4, .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .footer__cols { grid-template-columns: 1fr 1fr; gap: 1.5rem 1rem; }
}
@media (max-width: 480px) {
  .grid--2 { grid-template-columns: 1fr; }
  .card__body { padding: 0.85rem 0.9rem 1.1rem; }
}

/* ============================================================
   BRAND ASSETS — logo, emblems, mockups
   ============================================================ */
.brand-logo { height: 26px; width: auto; display: block; transition: opacity var(--dur) var(--ease); }
.brand:hover .brand-logo { opacity: 0.7; }
.mobile-menu__top .brand-logo { height: 30px; }

.footer__mark {
  display: block; width: auto; max-width: min(100%, 560px); height: auto;
  padding-block: clamp(1.5rem, 4vw, 3rem); opacity: 0.96;
}

/* Moth / flame centrepiece */
.moth-art { position: relative; display: grid; place-items: center; padding: clamp(1.5rem, 4vw, 3rem); }
.moth-art::before {
  content: ""; position: absolute; width: 78%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(194, 59, 54, 0.16), transparent 66%);
  filter: blur(20px); z-index: 0;
}
.moth-art img { position: relative; z-index: 1; width: min(82%, 460px); height: auto; filter: drop-shadow(0 10px 40px rgba(0,0,0,0.5)); }
.moth-float { animation: mothFloat 7s ease-in-out infinite; }
@keyframes mothFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* Crown accent mark */
.crown { display: inline-block; width: auto; }
.crown--sm { height: 26px; }
.crown--md { height: 46px; }
.crown--lg { height: 90px; }

/* Mockup product media (transparent PNG on warm panel) */
.card__media .mockup, .pdp__main .mockup {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: contain; object-position: center 60%;
  padding: 8% 8% 0; z-index: 3;
  transition: transform 700ms var(--ease);
  filter: drop-shadow(0 14px 30px rgba(0,0,0,0.45));
}
.card:hover .card__media .mockup { transform: scale(1.05) translateY(-2px); }
.media-warm { background: linear-gradient(160deg, var(--steel-800), var(--steel-950)); }

/* Monogram + tags warm tuning */
.ph__mono { color: var(--steel-700); }
.card:hover .card__media .ph__mono { color: var(--steel-600); }

/* ============================================================
   ELEVATION LAYER — atmosphere, kinetic type, signature motion
   ============================================================ */

/* Base canvas: move solid bg to <html> so ambient layers can sit behind content */
html { background: var(--ink); }
body { background: transparent; }
body::before {
  content: ""; position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(120vmax 70vmax at 50% -12%, rgba(194, 59, 54, 0.10), transparent 55%),
    radial-gradient(80vmax 60vmax at 85% 6%, rgba(150, 110, 70, 0.08), transparent 60%),
    var(--ink);
}

/* Drifting aurora blob (injected) */
.fx-aurora {
  position: fixed; z-index: -1; pointer-events: none;
  width: 65vmax; height: 65vmax; border-radius: 50%;
  top: -24vmax; left: 50%;
  background: radial-gradient(circle, rgba(194, 59, 54, 0.12), transparent 62%);
  filter: blur(34px);
  animation: aurora 28s ease-in-out infinite alternate;
}
@keyframes aurora {
  from { transform: translate(-62%, 0) scale(1); }
  to   { transform: translate(-38%, 10vmax) scale(1.18); }
}

/* Film grain (injected) */
.fx-grain {
  position: fixed; inset: -120px; z-index: 200; pointer-events: none;
  opacity: 0.05; mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  animation: grain 5.2s steps(6) infinite;
}
@keyframes grain {
  0%   { transform: translate(0, 0); }
  20%  { transform: translate(-4%, 3%); }
  40%  { transform: translate(3%, -4%); }
  60%  { transform: translate(-3%, 2%); }
  80%  { transform: translate(4%, -2%); }
  100% { transform: translate(0, 0); }
}

/* Custom cursor (injected, desktop fine-pointer only) */
.fx-cursor-dot, .fx-cursor-ring {
  position: fixed; top: 0; left: 0; z-index: 9998; pointer-events: none;
  border-radius: 50%; mix-blend-mode: difference;
  translate: -50% -50%;
}
.fx-cursor-dot { width: 7px; height: 7px; background: #fff; }
.fx-cursor-ring {
  width: 38px; height: 38px; border: 1px solid rgba(255, 255, 255, 0.7);
  transition: width 280ms var(--ease), height 280ms var(--ease), background 280ms var(--ease), opacity 280ms var(--ease);
}
.fx-cursor-ring.is-hover { width: 64px; height: 64px; background: rgba(255, 255, 255, 0.12); border-color: transparent; }
.fx-cursor-ring.is-down { width: 30px; height: 30px; }
body.has-fx-cursor, body.has-fx-cursor a, body.has-fx-cursor button { cursor: none; }

/* Intro curtain (injected on home, once per session) */
.intro {
  position: fixed; inset: 0; z-index: 9999; background: var(--ink);
  display: grid; place-items: center; overflow: hidden;
  transition: transform 900ms cubic-bezier(0.76, 0, 0.24, 1);
}
.intro.done { transform: translateY(-101%); }
.intro__inner { text-align: center; }
.intro__word {
  display: block; font-family: var(--font-display); text-transform: uppercase;
  font-size: clamp(3.4rem, 15vw, 12rem); line-height: 0.9; letter-spacing: 0.05em; color: var(--head);
  clip-path: inset(0 0 110% 0); transform: translateY(0.2em);
  animation: introWord 900ms var(--ease) 120ms forwards;
}
@keyframes introWord { to { clip-path: inset(0 0 -10% 0); transform: translateY(0); } }
.intro__sub {
  display: block; margin-top: 1rem; font-family: var(--font-mono);
  font-size: 0.78rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--accent);
  opacity: 0; animation: introSub 700ms var(--ease) 620ms forwards;
}
@keyframes introSub { to { opacity: 1; letter-spacing: 0.22em; } }
.intro__count {
  position: absolute; right: clamp(1.2rem, 4vw, 3rem); bottom: clamp(1.2rem, 4vw, 3rem);
  font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 0.1em; color: var(--text-mute);
}
.intro__bar { position: absolute; left: 0; bottom: 0; height: 2px; width: 0; background: var(--accent); }

/* Lock scroll while intro is up */
body.intro-lock { overflow: hidden; height: 100vh; }

/* Kinetic hero (line-mask reveal) — only hide when JS is active */
.hero-head { letter-spacing: 0.005em; }
.hero-head .line { display: block; overflow: hidden; padding-block: 0.02em; }
.hero-head .line__in { display: block; will-change: transform; }
html.js .hero-head .line__in { transform: translateY(112%); transition: transform 1000ms var(--ease); }
html.js .hero-head.in .line__in { transform: translateY(0); }
html.js .hero-head.in .line:nth-child(1) .line__in { transition-delay: 40ms; }
html.js .hero-head.in .line:nth-child(2) .line__in { transition-delay: 130ms; }
html.js .hero-head.in .line:nth-child(3) .line__in { transition-delay: 220ms; }
html.js .hero-head.in .line:nth-child(4) .line__in { transition-delay: 310ms; }

/* Accent word sheen */
.sheen {
  background: linear-gradient(100deg, var(--accent) 28%, var(--accent-strong) 50%, var(--accent) 72%);
  background-size: 220% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: sheen 6.5s linear infinite;
}
@keyframes sheen { from { background-position: 220% 0; } to { background-position: -120% 0; } }

/* Light-sweep across media on hover */
.ph::after {
  content: ""; position: absolute; inset: 0; z-index: 5; pointer-events: none;
  background: linear-gradient(115deg, transparent 32%, rgba(233, 241, 246, 0.13) 48%, transparent 64%);
  transform: translateX(-130%); transition: transform 950ms var(--ease);
}
.card:hover .ph::after, .hero-media:hover .ph::after, .pdp__main:hover .ph::after { transform: translateX(130%); }

/* Hero media tilt wrapper */
.hero-media .ph { transition: transform 500ms var(--ease); transform-style: preserve-3d; }
.card { transition: transform 450ms var(--ease), box-shadow 450ms var(--ease); }
.card:hover { box-shadow: 0 24px 60px -30px rgba(0, 0, 0, 0.7); }

/* Footer mega drift */
.footer__mega { will-change: transform; }

/* Refined reveal: subtle blur-in */
html.js .reveal { filter: blur(6px); transition: opacity 800ms var(--ease), transform 800ms var(--ease), filter 800ms var(--ease); }
html.js .reveal.in { filter: blur(0); }

/* Progressive-enhancement safety: if JS never runs, show everything */
html:not(.js) .reveal { opacity: 1; transform: none; }
html:not(.js) .hero-head .line__in { transform: none; }

/* ============================================================
   PHOTOGRAPHY LAYER — real product shots + signature motion
   ============================================================ */

/* A photo dropped into a .ph panel fills it and gets the cover treatment.
   (.ph img already does object-fit:cover + the hover light-sweep.) */
.ph--photo { background: var(--steel-950); }
.ph--photo .ph__tag { z-index: 6; }

/* Hero: slow Ken Burns drift on the product shot */
.kenburns { will-change: transform; animation: kenburns 22s ease-in-out infinite alternate; }
@keyframes kenburns {
  from { transform: scale(1.05) translate3d(0, 0, 0); }
  to   { transform: scale(1.14) translate3d(-1.5%, -2%, 0); }
}

/* Clip-wipe reveal for editorial / lookbook photos.
   The figure is also a .reveal, so it gets .in from the IntersectionObserver. */
html.js .photo-wipe { overflow: hidden; }
html.js .photo-wipe > img {
  clip-path: inset(0 0 100% 0);
  transform: scale(1.16);
  transition: clip-path 1150ms var(--ease), transform 1500ms var(--ease);
}
html.js .photo-wipe.in > img { clip-path: inset(0 0 0 0); transform: scale(1); }
html:not(.js) .photo-wipe > img { clip-path: none; transform: none; }
/* gentle continuing zoom on hover */
.photo-wipe:hover > img { transform: scale(1.05); transition: transform 1200ms var(--ease); }

/* Parallax drift (JS-driven via --py). Base scale gives overflow room so the
   vertical drift never exposes a panel edge. */
.parallax { will-change: transform; transform: translate3d(0, var(--py, 0px), 0) scale(1.12); }

/* ---- Editorial split showcase (full back graphic) ---- */
.showcase { position: relative; overflow: hidden; }
.showcase__grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
}
.showcase__media {
  position: relative; aspect-ratio: 4 / 5; overflow: hidden;
  border: 1px solid var(--hairline); background: var(--steel-950);
}
.showcase__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.showcase__media .ph__tag { position: absolute; left: 1rem; bottom: 1rem; z-index: 6; }
.showcase__media .ph__tag--tr { left: auto; right: 1rem; bottom: auto; top: 1rem; }
.showcase__media::after {
  content: ""; position: absolute; inset: 0; z-index: 4; pointer-events: none;
  background: linear-gradient(115deg, transparent 34%, rgba(233, 241, 246, 0.12) 50%, transparent 66%);
  transform: translateX(-130%); transition: transform 1100ms var(--ease);
}
.showcase:hover .showcase__media::after { transform: translateX(130%); }
@media (max-width: 820px) {
  .showcase__grid { grid-template-columns: 1fr; }
  .showcase__media { aspect-ratio: 3 / 4; }
}

/* ---- Lookbook photo tiles ---- */
.lookbook-tile { position: relative; overflow: hidden; aspect-ratio: 3 / 4; }
.lookbook-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* PDP gallery: real thumbs + main image */
.pdp__thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.pdp__thumb[aria-pressed="true"] { border-color: var(--accent); }
.pdp__main .pdp-photo {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 3;
  animation: pdpFade 500ms var(--ease);
}
@keyframes pdpFade { from { opacity: 0; transform: scale(1.03); } to { opacity: 1; transform: scale(1); } }

/* ---------- Motion / contrast preferences ---------- */
@media (prefers-reduced-motion: reduce) {
  .kenburns { animation: none !important; }
  .parallax { transform: none !important; }
  html.js .photo-wipe > img { clip-path: none !important; transform: none !important; }
  .fx-aurora, .fx-grain, .sheen, .intro__word, .intro__sub { animation: none !important; }
  .fx-cursor-dot, .fx-cursor-ring { display: none !important; }
  body.has-fx-cursor, body.has-fx-cursor a, body.has-fx-cursor button { cursor: auto; }
  .intro { display: none !important; }
  html.js .hero-head .line__in { transform: none !important; }
  html.js .reveal { filter: none !important; }
}
@media (prefers-reduced-motion: reduce) and (min-width: 1px) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
