/* ============================================================
   HEFT — design system
   Quiet-luxury editorial. Bodoni Moda + IBM Plex Mono.
   The entire page re-dyes itself to the selected colourway.
   ============================================================ */

/* ---------- Themes (one per colourway) ---------- */
:root {
  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-io: cubic-bezier(.83, 0, .17, 1);
  --theme-fade: .9s;

  /* fixed swatch chips */
  --chip-blanc: #F2EFE6;
  --chip-ecru: #DFD3B4;
  --chip-olive: #5A5F45;
  --chip-marine: #2C3A57;
  --chip-noir: #1C1B19;
}

@property --cloth {
  syntax: '<color>';
  inherits: true;
  initial-value: #E6DABE;
}

html[data-theme="blanc"]  { --bg:#F5F3EE; --ink:#19160F; --cloth:#FBF9F3; }
html[data-theme="ecru"]   { --bg:#EAE2D1; --ink:#221B10; --cloth:#E3D6B8; }
html[data-theme="olive"]  { --bg:#363A2B; --ink:#EAE8DB; --cloth:#5C6147; }
html[data-theme="marine"] { --bg:#151C2D; --ink:#E6E4DA; --cloth:#2E3C5C; }
html[data-theme="noir"]   { --bg:#141312; --ink:#ECE8DF; --cloth:#33312D; }

html {
  --muted: color-mix(in srgb, var(--ink) 56%, transparent);
  --faint: color-mix(in srgb, var(--ink) 30%, transparent);
  --line:  color-mix(in srgb, var(--ink) 16%, transparent);
  --card:  color-mix(in srgb, var(--ink) 4%, var(--bg));
  transition: --cloth var(--theme-fade) var(--ease);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: auto; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Bodoni Moda', 'Didot', Georgia, serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  transition: background-color var(--theme-fade) var(--ease),
              color var(--theme-fade) var(--ease);
}

body.is-loading { overflow: hidden; }

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

img { display: block; width: 100%; height: 100%; object-fit: cover; }

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

:focus-visible { outline: 1px dashed var(--ink); outline-offset: 4px; }

.mono {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .16em;
  line-height: 1.7;
}

/* themed surfaces fade together */
.nav, .marquee, .weight-canvas-wrap, .swatch span, .size, .add-btn,
.bag, .footer, .preloader, li, section, figure, input {
  transition: background-color var(--theme-fade) var(--ease),
              color var(--theme-fade) var(--ease),
              border-color var(--theme-fade) var(--ease);
}

/* ---------- Grain ---------- */
.grain {
  position: fixed; inset: -50%;
  width: 200%; height: 200%;
  pointer-events: none;
  z-index: 2000;
  opacity: .07;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 6s steps(8) infinite;
}
@keyframes grain {
  0%,100% { transform: translate(0,0); } 25% { transform: translate(-2%,1%); }
  50% { transform: translate(1%,-2%); } 75% { transform: translate(-1%,2%); }
}

/* ---------- Custom cursor ---------- */
.cursor {
  position: fixed; top: 0; left: 0;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--ink);
  z-index: 9000;
  pointer-events: none;
  display: none;
  align-items: center; justify-content: center;
  transform: translate(-50%, -50%);
  transition: width .35s var(--ease), height .35s var(--ease),
              background-color .35s var(--ease), opacity .3s;
}
.cursor-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px; letter-spacing: .14em;
  color: var(--bg);
  opacity: 0; transition: opacity .25s;
  white-space: nowrap;
}
.cursor.is-link { width: 26px; height: 26px; }
.cursor.is-label { width: 72px; height: 72px; }
.cursor.is-label .cursor-label { opacity: 1; }
.cursor.is-down { width: 56px; height: 56px; }

@media (hover: hover) and (pointer: fine) {
  .cursor { display: flex; }
  body, a, button, canvas, input { cursor: none; }
}

/* ---------- Preloader ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--ink); color: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transition: transform .9s var(--ease-io);
}
.preloader.is-done { transform: translateY(-101%); }
.preloader-inner { text-align: center; }
.preloader-count {
  font-family: 'IBM Plex Mono', monospace;
  font-size: clamp(3.4rem, 9vw, 6.5rem);
  font-weight: 400;
  letter-spacing: .04em;
  font-variant-numeric: tabular-nums;
}
.preloader-unit { font-size: .35em; letter-spacing: .2em; margin-left: .35em; opacity: .55; }
.preloader-bar {
  width: min(280px, 50vw); height: 1px;
  background: color-mix(in srgb, var(--bg) 25%, transparent);
  margin: 1.6rem auto 1.1rem;
}
.preloader-bar span {
  display: block; height: 100%; width: 100%;
  background: var(--bg);
  transform-origin: left;
  transform: scaleX(0);
}
.preloader-note {
  font-family: 'IBM Plex Mono', monospace;
  font-size: .6rem; letter-spacing: .3em; opacity: .5;
}

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 800;
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 1.05rem 3.5vw;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.nav-brand {
  font-family: 'Bodoni Moda', serif;
  font-weight: 600; font-size: 1.35rem; letter-spacing: .06em;
}
.nav-brand sup { font-size: .45em; font-weight: 400; }
.nav-links { display: flex; gap: 2.6rem; justify-content: center; }
.nav-links a {
  font-family: 'IBM Plex Mono', monospace;
  font-size: .66rem; letter-spacing: .2em; text-transform: uppercase;
  position: relative; padding: .2rem 0;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--ink);
  transform: scaleX(0); transform-origin: right;
  transition: transform .45s var(--ease);
}
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-bag {
  justify-self: end;
  font-family: 'IBM Plex Mono', monospace;
  font-size: .66rem; letter-spacing: .2em;
  display: flex; align-items: center; gap: .5rem;
}
.bag-count {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 1.7em; height: 1.7em; padding: 0 .3em;
  border: 1px solid var(--ink); border-radius: 999px;
  font-size: .6rem;
}
.bag-count.bump { animation: bump .45s var(--ease); }
@keyframes bump { 40% { transform: scale(1.45); } }

/* ---------- Reveals ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s var(--ease) var(--d, 0s),
              transform 1s var(--ease) var(--d, 0s);
}
.reveal.is-in { opacity: 1; transform: none; }

.reveal-img { position: relative; overflow: hidden; }
.reveal-img img {
  clip-path: inset(0 0 100% 0);
  transform: scale(1.16);
  transition: clip-path 1.25s var(--ease) var(--d, 0s),
              transform 1.6s var(--ease) var(--d, 0s);
}
.reveal-img.is-in img { clip-path: inset(0 0 0 0); transform: scale(1); }
.reveal-img figcaption { opacity: 0; transition: opacity .8s var(--ease) calc(var(--d, 0s) + .9s); }
.reveal-img.is-in figcaption { opacity: 1; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  padding: 17vh 3.5vw 9vh;
  display: flex; flex-direction: column; justify-content: space-between;
}
.hero-stage { position: relative; }
.hero-title {
  font-size: clamp(6rem, 23.5vw, 24rem);
  font-weight: 500;
  line-height: .8;
  letter-spacing: .015em;
  text-align: center;
  overflow: hidden;
  user-select: none;
}
.hero-title .ch {
  display: inline-block;
  transform: translateY(112%);
  transition: transform 1.1s var(--ease);
  transition-delay: calc(var(--i) * 75ms + .15s);
}
body.is-ready .hero-title .ch { transform: translateY(0); }

.hero-figure {
  position: relative; z-index: 2;
  width: clamp(250px, 31vw, 460px);
  aspect-ratio: 3 / 4;
  margin: calc(clamp(6rem, 23.5vw, 24rem) * -0.38) auto 0;
  --d: .55s;
}
.hero-meta {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 2rem;
  margin-top: 5vh;
}
.hero-meta-item { color: var(--muted); }
.hero-meta-item.right { text-align: right; }
.hero-tagline {
  text-align: center;
  font-size: clamp(1.05rem, 1.6vw, 1.4rem);
  line-height: 1.5;
}
.hero-tagline em { font-weight: 400; }
.hero-scroll {
  position: absolute; bottom: 8vh; left: 3.5vw;
  display: flex; align-items: center; gap: .8rem;
  color: var(--muted);
}
.hero-scroll-line {
  display: block; width: 56px; height: 1px;
  background: var(--faint);
  overflow: hidden; position: relative;
}
.hero-scroll-line::after {
  content: ''; position: absolute; inset: 0;
  background: var(--ink);
  animation: scrollline 2.2s var(--ease-io) infinite;
}
@keyframes scrollline {
  0% { transform: translateX(-101%); } 55% { transform: translateX(0); }
  100% { transform: translateX(101%); }
}

/* ---------- Marquee ---------- */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: .95rem 0;
  overflow: hidden;
}
.marquee-track {
  display: flex; white-space: nowrap; width: max-content;
  font-family: 'IBM Plex Mono', monospace;
  font-size: .7rem; letter-spacing: .26em;
  color: var(--muted);
  animation: marquee 38s linear infinite;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Manifesto ---------- */
.manifesto { padding: 24vh 8vw; max-width: 1280px; margin: 0 auto; }
.manifesto-kicker { color: var(--muted); margin-bottom: 3.5rem; }
.manifesto-text {
  font-size: clamp(1.7rem, 3.9vw, 3.4rem);
  font-weight: 500;
  line-height: 1.28;
  letter-spacing: .005em;
}
.manifesto-text .w { opacity: .13; transition: opacity .3s linear; }
.manifesto-text .w.on { opacity: 1; }

/* ---------- Section scaffolding ---------- */
.section-kicker { color: var(--muted); margin-bottom: 1.4rem; }
.section-title {
  font-size: clamp(2.8rem, 7vw, 6.6rem);
  font-weight: 500;
  line-height: .98;
  letter-spacing: .005em;
}
.section-title em { font-weight: 400; }

/* ---------- The Weight (cloth) ---------- */
.weight { padding: 14vh 3.5vw 16vh; }
.weight-head {
  display: flex; flex-wrap: wrap; align-items: flex-end;
  justify-content: space-between; gap: 1.5rem;
  margin-bottom: 4vh;
}
.weight-instruction { color: var(--muted); padding-bottom: .8rem; }
.weight-canvas-wrap {
  height: min(70vh, 760px);
  border: 1px solid var(--line);
  background: var(--card);
  overflow: hidden;
}
#clothCanvas { width: 100%; height: 100%; display: block; touch-action: none; }
.weight-specs {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  margin-top: 4vh;
}
.weight-specs li {
  border-top: 1px solid var(--line);
  padding-top: 1.3rem;
  display: grid; gap: .8rem;
}
.spec-num { color: var(--muted); }
.weight-specs p { font-size: 1.02rem; line-height: 1.55; }

/* ---------- Collection ---------- */
.collection { padding: 12vh 3.5vw 16vh; }
.collection-head { margin-bottom: 7vh; }
.collection-note { color: var(--muted); margin-top: 1.6rem; }
.collection-stage {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 5vw;
  align-items: start;
}
.collection-figure {
  position: relative;
  aspect-ratio: 3 / 4;
  max-height: 86vh;
}
.collection-figure img {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity .9s var(--ease), transform 1.4s var(--ease),
              clip-path 1.25s var(--ease) var(--d, 0s);
}
.collection-figure.is-in img:not(.active) { transform: scale(1.045); }
.collection-figure img.active { opacity: 1; transform: scale(1); }
.collection-figure figcaption {
  position: absolute; left: 1.1rem; bottom: 1rem; z-index: 5;
  color: #F5F3EE;
  mix-blend-mode: difference;
}

.product { padding-top: 1.5rem; max-width: 480px; }
.product-index { color: var(--muted); margin-bottom: 2.2rem; }
.product-name {
  font-size: clamp(2rem, 3.4vw, 3.1rem);
  font-weight: 500; line-height: 1.05;
}
.product-shade {
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  font-weight: 400;
  margin-top: .3rem;
}
.product-desc { color: var(--muted); font-size: 1.05rem; margin-top: 1.1rem; min-height: 2.6em; }
.product-price {
  font-size: 1.7rem; font-weight: 500;
  margin: 1.6rem 0 2.2rem;
  display: flex; align-items: baseline; gap: .7rem;
}
.product-price .mono { color: var(--muted); }

.swatches { display: flex; gap: 1.1rem; margin-bottom: 2.4rem; }
.swatch {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: grid; place-items: center;
  position: relative;
}
.swatch span {
  width: 100%; height: 100%; border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--ink) 25%, transparent);
  transition: transform .35s var(--ease);
}
.swatch[data-color="blanc"] span  { background: var(--chip-blanc); }
.swatch[data-color="ecru"] span   { background: var(--chip-ecru); }
.swatch[data-color="olive"] span  { background: var(--chip-olive); }
.swatch[data-color="marine"] span { background: var(--chip-marine); }
.swatch[data-color="noir"] span   { background: var(--chip-noir); }
.swatch::after {
  content: ''; position: absolute; inset: -6px;
  border: 1px solid var(--ink); border-radius: 50%;
  opacity: 0; transform: scale(.8);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.swatch:hover span { transform: scale(.9); }
.swatch.is-active::after { opacity: 1; transform: scale(1); }

.sizes { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 2.4rem; }
.size {
  font-family: 'IBM Plex Mono', monospace;
  font-size: .7rem; letter-spacing: .12em;
  padding: .62rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: border-color .3s, background-color .3s, color .3s;
}
.size:hover { border-color: var(--ink); }
.size.is-active { background: var(--ink); color: var(--bg); border-color: var(--ink); }

.add-btn {
  position: relative;
  width: 100%;
  padding: 1.2rem 1rem;
  border: 1px solid var(--ink);
  overflow: hidden;
  font-family: 'IBM Plex Mono', monospace;
  font-size: .72rem; letter-spacing: .22em;
}
.add-btn-text { position: relative; z-index: 2; transition: color .45s var(--ease); }
.add-btn-sweep {
  position: absolute; inset: 0;
  background: var(--ink);
  transform: translateY(101%);
  transition: transform .5s var(--ease-io);
}
.add-btn:hover .add-btn-sweep, .add-btn.is-added .add-btn-sweep { transform: translateY(0); }
.add-btn:hover .add-btn-text, .add-btn.is-added .add-btn-text { color: var(--bg); }

.fit-note { color: var(--muted); margin-top: 1.8rem; line-height: 2; }

/* ---------- Editorial ---------- */
.editorial { padding: 6vh 3.5vw 14vh; }
.editorial-wide {
  position: relative;
  height: min(82vh, 880px);
  margin-bottom: 9vh;
}
.editorial-wide .parallax, .editorial-cell .parallax { height: 100%; will-change: transform; }
.parallax img { position: relative; top: -12%; height: 124%; }
.editorial-wide figcaption, .editorial-cell figcaption {
  position: absolute; left: 1.1rem; bottom: 1rem; z-index: 5;
  color: #F5F3EE; mix-blend-mode: difference;
}
.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 4vw;
  align-items: center;
}
.editorial-cell { position: relative; aspect-ratio: 3 / 4; }
.editorial-cell.offset { transform: translateY(9vh); }
.editorial-pull {
  text-align: center;
  font-size: clamp(1.6rem, 2.8vw, 2.7rem);
  font-weight: 500;
  line-height: 1.25;
  padding: 0 1vw;
}

/* ---------- Details ---------- */
.details { padding: 14vh 3.5vw; }
.details-head { margin-bottom: 7vh; }
.details-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 5vw;
}
.details-img { position: relative; }
.details-img.macro { aspect-ratio: 1 / 1; }
.details-img.stack { aspect-ratio: 4 / 3; margin-top: 5vh; }
.details-img figcaption {
  position: absolute; left: 1.1rem; bottom: 1rem; z-index: 5;
  color: #F5F3EE; mix-blend-mode: difference;
}
.details-list { list-style: none; grid-row: 1 / span 2; grid-column: 2; }
.details-list li {
  display: grid;
  grid-template-columns: 3.4rem 1fr;
  gap: 1rem;
  border-top: 1px solid var(--line);
  padding: 1.9rem 0;
}
.details-list li:last-child { border-bottom: 1px solid var(--line); }
.details-list .mono { color: var(--muted); padding-top: .35rem; }
.details-list h4 {
  font-size: 1.55rem; font-weight: 500;
  margin-bottom: .55rem;
}
.details-list p { color: var(--muted); font-size: 1.02rem; line-height: 1.6; }

/* ---------- Coda ---------- */
.coda {
  text-align: center;
  padding: 26vh 5vw;
}
.coda-text {
  font-size: clamp(2.4rem, 5.6vw, 5.2rem);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 4.5rem;
}
.coda-link {
  display: inline-block;
  padding: 1.15rem 2.6rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  letter-spacing: .22em;
  transition: background-color .4s var(--ease), color .4s var(--ease);
}
.coda-link:hover { background: var(--ink); color: var(--bg); }

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: var(--bg);
  padding: 9vh 3.5vw 2.5rem;
  overflow: hidden;
}
.footer-word {
  font-size: clamp(7rem, 27vw, 30rem);
  font-weight: 500;
  line-height: .75;
  text-align: center;
  letter-spacing: .015em;
  color: transparent;
  -webkit-text-stroke: 1px color-mix(in srgb, var(--bg) 42%, transparent);
  user-select: none;
  margin-bottom: 8vh;
  transform: translateY(.06em);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.6fr;
  gap: 4vw;
  padding-bottom: 7vh;
}
.footer-label { opacity: .45; margin-bottom: 1.3rem; }
.footer-col a {
  display: block;
  font-size: 1.15rem;
  padding: .3rem 0;
  width: max-content;
  position: relative;
}
.footer-col a::after {
  content: ''; position: absolute; left: 0; bottom: .15rem;
  width: 100%; height: 1px; background: var(--bg);
  transform: scaleX(0); transform-origin: right;
  transition: transform .45s var(--ease);
}
.footer-col a:hover::after { transform: scaleX(1); transform-origin: left; }
.news-form {
  display: flex; gap: 1rem;
  border-bottom: 1px solid color-mix(in srgb, var(--bg) 35%, transparent);
  padding-bottom: .7rem;
  max-width: 420px;
}
.news-form input {
  flex: 1;
  background: none; border: none;
  color: var(--bg);
  font-family: 'IBM Plex Mono', monospace;
  font-size: .78rem; letter-spacing: .08em;
}
.news-form input::placeholder { color: color-mix(in srgb, var(--bg) 40%, transparent); }
.news-form input:focus { outline: none; }
.news-form button { letter-spacing: .2em; font-size: .66rem; opacity: .85; }
.news-form button:hover { opacity: 1; }
.news-confirm { margin-top: 1rem; opacity: 0; transition: opacity .6s; }
.news-confirm.show { opacity: .75; }
.footer-base {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
  border-top: 1px solid color-mix(in srgb, var(--bg) 18%, transparent);
  padding-top: 1.6rem;
  opacity: .55;
  font-size: .6rem;
}

/* ---------- Bag drawer ---------- */
.bag-overlay {
  position: fixed; inset: 0; z-index: 950;
  background: color-mix(in srgb, var(--ink) 45%, transparent);
  opacity: 0; pointer-events: none;
  transition: opacity .5s var(--ease);
}
.bag-overlay.open { opacity: 1; pointer-events: auto; }
.bag {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 1000;
  width: min(430px, 94vw);
  background: var(--bg); color: var(--ink);
  border-left: 1px solid var(--line);
  transform: translateX(102%);
  transition: transform .65s var(--ease-io);
  display: flex; flex-direction: column;
  padding: 1.6rem 1.8rem;
}
.bag.open { transform: translateX(0); }
.bag-head {
  display: flex; justify-content: space-between; align-items: baseline;
  border-bottom: 1px solid var(--line);
  padding-bottom: 1.2rem;
}
.bag-head h3 { font-size: 2rem; font-weight: 500; }
.bag-close { letter-spacing: .2em; color: var(--muted); }
.bag-close:hover { color: var(--ink); }
.bag-items { list-style: none; flex: 1; overflow-y: auto; padding: .5rem 0; }
.bag-item {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 1.1rem;
  align-items: center;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
}
.bag-item-chip {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--line);
}
.bag-item-name { display: block; font-size: 1.15rem; font-weight: 500; }
.bag-item-meta { display: block; color: var(--muted); margin-top: .15rem; }
.bag-item-right { text-align: right; display: grid; gap: .4rem; }
.bag-item-price { font-size: 1.05rem; }
.bag-remove { color: var(--muted); letter-spacing: .14em; font-size: .58rem; }
.bag-remove:hover { color: var(--ink); }
.bag-empty { color: var(--muted); padding: 2.5rem 0; text-align: center; }
.bag-foot { border-top: 1px solid var(--line); padding-top: 1.3rem; }
.bag-subtotal {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 1.45rem; font-weight: 500;
  margin-bottom: 1.2rem;
}
.bag-note { color: var(--muted); margin-top: .9rem; text-align: center; }

/* ---------- Responsive ---------- */
@media (max-width: 1060px) {
  .weight-specs { grid-template-columns: repeat(2, 1fr); }
  .editorial-grid { grid-template-columns: 1fr 1fr; }
  .editorial-pull { grid-column: 1 / -1; order: -1; padding: 4vh 0; }
}
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav { grid-template-columns: 1fr auto; }
  .hero { padding-top: 14vh; }
  .hero-figure { width: min(62vw, 360px); }
  .hero-meta { grid-template-columns: 1fr; gap: 1.2rem; text-align: center; }
  .hero-meta-item.right { text-align: center; }
  .hero-scroll { display: none; }
  .collection-stage { grid-template-columns: 1fr; gap: 3rem; }
  .product { max-width: none; }
  .details-grid { grid-template-columns: 1fr; }
  .details-list { grid-row: auto; grid-column: 1; }
  .details-img.stack { margin-top: 0; }
  .editorial-wide { height: 52vw; }
  .editorial-cell.offset { transform: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 560px) {
  .weight-specs { grid-template-columns: 1fr; gap: 1.4rem; }
  .editorial-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal, .reveal-img, .reveal-img img, .reveal-img figcaption { opacity: 1; transform: none; clip-path: none; transition: none; }
  .hero-title .ch { transform: none; transition: none; }
  .marquee-track { animation: none; }
  .manifesto-text .w { opacity: 1; }
  .grain { animation: none; }
}
