/* ==========================================================================
   ISAKUM COUTURE — Editorial Redesign
   Aesthetic: Fashion Magazine × Brutalist Precision
   ========================================================================== */

/* ————————————————— FONTS ————————————————— */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght,SOFT,WONK@9..144,300..900,0..100,0..1&family=Instrument+Serif:ital@0;1&display=swap');
@import url('https://api.fontshare.com/v2/css?f[]=satoshi@1,900,700,500,400,300&f[]=zodiak@1,2&display=swap');
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;700&display=swap');

/* ————————————————— TOKENS ————————————————— */
:root {
  /* Palette: paper cream × ink black × editorial vermilion */
  --paper: #ECE6D6;
  --paper-2: #E3DBC6;
  --paper-3: #D9CEB4;
  --ink: #141311;
  --ink-soft: #2A2723;
  --muted: #6B655A;
  --faint: #8F8877;
  --accent: #FF3D1A;       /* Vermilion */
  --accent-2: #1F3A2E;     /* Deep forest (secondary) */
  --sulphur: #E8D437;      /* Soft accent tag */

  /* Type stacks */
  --f-display: 'Fraunces', 'Times New Roman', serif;
  --f-editorial: 'Instrument Serif', 'Fraunces', serif;
  --f-body: 'Satoshi', -apple-system, BlinkMacSystemFont, sans-serif;
  --f-mono: 'JetBrains Mono', ui-monospace, monospace;

  /* Layout */
  --rail: clamp(16px, 2.5vw, 40px);
  --gutter: clamp(8px, 1.25vw, 20px);
  --edge: clamp(18px, 2.8vw, 44px);
}

/* ————————————————— RESET ————————————————— */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f-body);
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-feature-settings: 'ss01', 'ss02', 'cv01';
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}
ul { list-style: none; }

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

/* ————————————————— GRAIN & PAPER TEXTURE ————————————————— */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.35;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.08, 0 0 0 0 0.07, 0 0 0 0 0.06, 0 0 0 0.15 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 180px 180px;
}

/* ————————————————— TYPOGRAPHY HELPERS ————————————————— */
.display {
  font-family: var(--f-display);
  font-variation-settings: 'opsz' 144, 'SOFT' 30, 'WONK' 0;
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 0.88;
}
.display-italic {
  font-family: var(--f-editorial);
  font-style: italic;
  letter-spacing: -0.02em;
}
.zodiak {
  font-family: 'Zodiak', var(--f-display);
}
.mono {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.eyebrow {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.tabular { font-variant-numeric: tabular-nums; }
.amper { font-family: var(--f-editorial); font-style: italic; font-weight: 400; }

/* ————————————————— LAYOUT GRID ————————————————— */
.wrap {
  width: 100%;
  padding: 0 var(--edge);
  margin: 0 auto;
  max-width: 1680px;
}
.wrap-wide { max-width: 1800px; padding: 0 var(--edge); margin: 0 auto; }
.wrap-narrow { max-width: 1280px; padding: 0 var(--edge); margin: 0 auto; }

/* ————————————————— TOP BAR / NAV ————————————————— */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--paper);
  border-bottom: 1px solid var(--ink);
  isolation: isolate;
}
.topbar-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 14px var(--edge);
}
.brand {
  font-family: var(--f-display);
  font-variation-settings: 'opsz' 72, 'SOFT' 0, 'WONK' 1;
  font-weight: 350;
  font-size: 22px;
  letter-spacing: -0.03em;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.brand sup {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 500;
}
.brand .dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  margin: 0 3px 3px 0;
}
.nav {
  display: flex;
  justify-content: center;
  gap: 36px;
}
.nav a {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
  transition: color .25s;
}
.nav a:hover { color: var(--accent); }
.nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
}
.nav a:hover::after { transform: scaleX(1); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.chip-link {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 14px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  transition: background .25s, color .25s;
}
.chip-link:hover { background: var(--ink); color: var(--paper); }
.chip-link.filled { background: var(--ink); color: var(--paper); }
.chip-link.filled:hover { background: var(--accent); border-color: var(--accent); }

/* ————————————————— TICKER ————————————————— */
.ticker {
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  border-bottom: 1px solid var(--ink);
  padding: 9px 0;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.ticker-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: tickerScroll 48s linear infinite;
  width: max-content;
}
.ticker-track span { display: inline-flex; align-items: center; gap: 16px; }
.ticker-track .bullet {
  width: 5px; height: 5px; background: var(--accent); border-radius: 50%;
}
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ————————————————— HERO ————————————————— */
.hero {
  position: relative;
  padding: 48px var(--edge) 56px;
  border-bottom: 1px solid var(--ink);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  min-height: calc(100svh - 180px);
  max-height: 820px;
}
.hero-text {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-title {
  font-family: var(--f-display);
  font-variation-settings: 'opsz' 144, 'SOFT' 0, 'WONK' 0;
  font-weight: 300;
  font-size: clamp(52px, 7.5vw, 140px);
  line-height: 0.94;
  letter-spacing: -0.035em;
  color: var(--ink);
}
.hero-title .ital {
  font-family: var(--f-editorial);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.025em;
  color: var(--accent);
  display: inline-block;
  transform: translateY(0.02em);
}
.hero-title .underline {
  position: relative;
  display: inline-block;
  padding-bottom: 0.15em;
}
.hero-title .underline::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -0.04em;
  height: 5px;
  background: var(--accent);
  transform-origin: left;
  animation: underline 1.1s cubic-bezier(.2,.8,.2,1) 0.8s both;
}
@keyframes underline { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.hero-sub {
  max-width: 520px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}
.hero-sub em {
  font-family: var(--f-editorial);
  font-style: italic;
  color: var(--ink);
}
.hero-cta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 4px;
}

/* ————————————————— BUTTONS ————————————————— */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 26px;
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), background .2s, color .2s, border-color .2s;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--ink);
  color: var(--paper);
}
.btn-primary:hover { background: var(--accent); }
.btn-primary .arrow {
  width: 18px; height: 18px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent);
  border-radius: 50%;
  color: var(--paper);
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
}
.btn-primary:hover .arrow { transform: translateX(3px); background: var(--paper); color: var(--accent); }
.btn-ghost {
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
}
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.btn-xl { padding: 22px 34px; font-size: 12px; }

.pricing-inline {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.pricing-inline b {
  color: var(--ink);
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ————————————————— HERO CAROUSEL ————————————————— */
.hero-stage {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--paper-2);
  border: 1px solid var(--ink);
  overflow: hidden;
  border-radius: 2px;
  width: 100%;
  max-height: calc(100svh - 220px);
  justify-self: center;
  align-self: center;
}
.hero-stage.editorial { aspect-ratio: 4/5; }
@media (min-width: 1200px) {
  .hero-stage.editorial { max-width: 560px; }
}
.hero-stage-label {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 3;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--ink);
  padding: 5px 10px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.hero-stage-label .live-dot {
  width: 6px; height: 6px; background: var(--accent); border-radius: 50%;
  animation: pulse 1.4s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: .3; transform: scale(1.4); }
}
.hero-stage-caption {
  position: absolute;
  bottom: 14px; left: 14px; right: 14px;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper);
  mix-blend-mode: difference;
}
.hero-stage-caption .num {
  font-family: var(--f-display);
  font-size: 26px;
  letter-spacing: -0.02em;
  font-variation-settings: 'opsz' 72;
  font-weight: 400;
  line-height: 1;
  font-style: italic;
}
.hero-stage-slides {
  position: absolute;
  inset: 0;
}
.hero-stage-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(.4,0,.2,1);
  display: flex; align-items: center; justify-content: center;
  padding: 60px;
}
.hero-stage-slide.is-active { opacity: 1; }
.hero-stage-slide .shirt {
  width: 95%;
  aspect-ratio: 4/5;
  position: relative;
}
.hero-stage-slide.full-img {
  padding: 0;
}
.hero-stage-slide.full-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-stage-dots {
  position: absolute;
  bottom: 14px; right: 14px;
  z-index: 4;
  display: flex;
  gap: 6px;
}
.hero-stage-dots button {
  width: 22px; height: 2px;
  background: rgb(255 255 255 / 0.4);
  transition: background .25s, width .25s;
}
.hero-stage-dots button.is-active { background: var(--accent); width: 36px; }

/* ————————————————— RUNNING NUMBER STRIP ————————————————— */
.strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--paper);
}
.strip > div {
  padding: 22px var(--edge);
  border-right: 1px solid var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}
.strip > div:last-child { border-right: 0; }
.strip .num {
  font-family: var(--f-display);
  font-variation-settings: 'opsz' 144;
  font-size: clamp(40px, 5vw, 74px);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 0.9;
  color: var(--ink);
}
.strip .num .ital { font-family: var(--f-editorial); font-style: italic; color: var(--accent); }
.strip .label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ————————————————— SECTION ————————————————— */
.section {
  padding: 80px var(--edge);
  position: relative;
}
.section-tight { padding: 48px var(--edge); }
.section-dark { background: var(--ink); color: var(--paper); }
.section-dark .eyebrow { color: var(--paper-3); }
.section-dark .display-title { color: var(--paper); }

.section-head {
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--ink);
}
.section-head h2 {
  font-family: var(--f-display);
  font-variation-settings: 'opsz' 144;
  font-weight: 300;
  font-size: clamp(36px, 5.5vw, 80px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  color: var(--ink);
}
.section-head h2 .ital {
  font-family: var(--f-editorial);
  font-style: italic;
  color: var(--accent);
}

/* ————————————————— PROCESS (Manifesto) ————————————————— */
.process-rows { border-top: 1px solid var(--ink); }
.process-row {
  display: grid;
  grid-template-columns: 110px 1.4fr 2fr auto;
  gap: 32px;
  padding: 38px 0;
  align-items: start;
  border-bottom: 1px solid var(--ink);
  transition: background .3s;
  cursor: pointer;
}
.process-row:hover { background: var(--paper-2); }
.process-row .n {
  font-family: var(--f-display);
  font-weight: 300;
  font-variation-settings: 'opsz' 144;
  font-size: 82px;
  line-height: 1;
  letter-spacing: -0.04em;
}
.process-row .n .ital {
  font-family: var(--f-editorial);
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}
.process-row h3 {
  font-family: var(--f-display);
  font-size: 34px;
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -0.02em;
  font-variation-settings: 'opsz' 72;
}
.process-row h3 em {
  font-family: var(--f-editorial);
  font-style: italic;
  color: var(--accent);
}
.process-row p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 540px;
}
.process-row .stat {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: right;
  padding-top: 10px;
}

/* ————————————————— SHIRT EDITION CARDS ————————————————— */
.editions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--ink);
  border: 1px solid var(--ink);
}
.edition {
  background: var(--paper);
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: background .3s;
  min-height: 520px;
}
.edition:hover { background: var(--paper-2); }
.edition .tag {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 22px;
}
.edition h3 {
  font-family: var(--f-display);
  font-weight: 300;
  font-variation-settings: 'opsz' 144;
  font-size: 54px;
  line-height: 0.9;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.edition h3 .ital {
  font-family: var(--f-editorial);
  font-style: italic;
  color: var(--accent);
}
.edition .spec {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.8;
}
.edition .spec-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-top: 1px dashed var(--ink);
}
.edition .spec-row:last-child { border-bottom: 1px dashed var(--ink); }
.edition .spec-row span:last-child { color: var(--ink); font-weight: 500; }
.edition .blurb {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 24px;
  flex-grow: 1;
  font-family: var(--f-editorial);
  font-style: italic;
}
.edition-visual {
  aspect-ratio: 4/4;
  border: 1px solid var(--ink);
  background: var(--paper-3);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.edition-visual .shirt-svg { width: 82%; }
.edition-cta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--ink);
}
.edition-cta .price {
  font-family: var(--f-display);
  font-size: 30px;
  letter-spacing: -0.02em;
  font-weight: 500;
}
.edition-cta .price sup {
  font-size: 12px;
  font-family: var(--f-mono);
  letter-spacing: 0.1em;
  color: var(--muted);
  vertical-align: top;
  margin-left: 6px;
  font-weight: 400;
}
.edition-cta a {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color .25s;
}
.edition-cta a:hover { color: var(--accent); }
.edition-cta a .arr {
  display: inline-block;
  transition: transform .25s cubic-bezier(.2,.8,.2,1);
}
.edition-cta a:hover .arr { transform: translateX(4px); }

/* ————————————————— CATEGORIES V3 — with context, 2-col cards ————————————————— */
.section-head-v2 {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 44px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--ink);
}
.section-head-v2 h2 {
  font-family: var(--f-display);
  font-variation-settings: 'opsz' 144;
  font-weight: 300;
  font-size: clamp(40px, 5.5vw, 78px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  color: var(--ink);
}
.section-head-v2 h2 .ital {
  font-family: var(--f-editorial);
  font-style: italic;
  color: var(--accent);
}
.section-head-v2 .eyebrow-v2 {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  display: inline-block;
}
.section-head-v2 .section-lead {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 52ch;
  margin: 0;
}
.section-head-v2 .section-lead em {
  font-family: var(--f-editorial);
  font-style: italic;
  color: var(--ink);
}

.cats-v3 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.cat-v3 {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 0;
  background: var(--paper);
  border: 1px solid var(--ink);
  overflow: hidden;
  transition: background .3s, transform .3s, box-shadow .3s;
  min-height: 220px;
}
.cat-v3:hover {
  background: var(--paper-2);
  transform: translateY(-3px);
  box-shadow: 0 18px 38px -20px rgb(20 19 17 / 0.2);
}
.cat-v3-img {
  position: relative;
  overflow: hidden;
  background: var(--paper-2);
  min-height: 220px;
}
.cat-v3-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.8,.2,1);
}
.cat-v3:hover .cat-v3-img img { transform: scale(1.05); }
.cat-v3-body {
  padding: 28px 30px 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  border-left: 1px solid var(--ink);
}
.cat-v3-body h3 {
  font-family: var(--f-display);
  font-weight: 300;
  font-variation-settings: 'opsz' 144;
  font-size: clamp(26px, 2.6vw, 34px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.cat-v3-body h3 .ital {
  font-family: var(--f-editorial);
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}
.cat-v3-body p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 10px 0 0;
}
.cat-v3-cta {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px dashed var(--ink);
  transition: color .25s;
}
.cat-v3-cta .arr {
  transition: transform .3s cubic-bezier(.2,.8,.2,1);
  color: var(--accent);
}
.cat-v3:hover .cat-v3-cta { color: var(--accent); }
.cat-v3:hover .cat-v3-cta .arr { transform: translateX(5px); }

.cats-foot {
  margin-top: 28px;
  padding: 28px 32px;
  border: 1px dashed var(--ink);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}
.cats-foot > div .eyebrow-v2 {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
  display: inline-block;
}
.cats-foot > div p {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0;
  max-width: 56ch;
}

@media (max-width: 1100px) {
  .section-head-v2 { grid-template-columns: 1fr; gap: 18px; }
  .cats-v3 { grid-template-columns: 1fr; }
  .cat-v3 { grid-template-columns: 1fr 1.1fr; min-height: 180px; }
  .cat-v3-img { min-height: 180px; }
  .cat-v3-body { padding: 22px 24px; }
  .cats-foot { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .cat-v3 { grid-template-columns: 1fr; min-height: 0; }
  .cat-v3-img { aspect-ratio: 5/4; min-height: 0; }
  .cat-v3-body { padding: 18px 20px; border-left: 0; border-top: 1px solid var(--ink); }
  .cat-v3-body h3 { font-size: 24px; }
  .cats-foot { padding: 20px 18px; gap: 14px; }
  .cats-foot .btn-ghost { width: 100%; justify-content: center; }
}

/* ————————————————— CATEGORIES V2 (legacy, unused) ————————————————— */
.cats-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--ink);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.cat-v2 {
  background: var(--paper);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: background .3s;
  cursor: pointer;
}
.cat-v2:hover { background: var(--paper-2); }
.cat-v2-img {
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
  background: var(--paper-2);
}
.cat-v2-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s cubic-bezier(.2,.8,.2,1);
}
.cat-v2:hover .cat-v2-img img { transform: scale(1.04); }
.cat-v2-body {
  padding: 22px 24px 24px;
  border-top: 1px solid var(--ink);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}
.cat-v2-body h3 {
  font-family: var(--f-display);
  font-weight: 300;
  font-variation-settings: 'opsz' 144;
  font-size: clamp(26px, 2.6vw, 38px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.cat-v2-body h3 .ital {
  font-family: var(--f-editorial);
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}
.cat-v2-cta {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .25s, transform .25s;
  white-space: nowrap;
}
.cat-v2:hover .cat-v2-cta { color: var(--accent); transform: translateX(3px); }

@media (max-width: 1100px) {
  .cats-v2 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .cats-v2 { grid-template-columns: 1fr; }
  .cat-v2-body { padding: 16px 18px 18px; }
  .cat-v2-body h3 { font-size: 26px; }
}

/* ————————————————— CATEGORIES (legacy, unused) ————————————————— */
.cats {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(200px, auto);
  gap: 2px;
  background: var(--ink);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.cat {
  background: var(--paper-2);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  transition: background .3s;
  min-height: 240px;
}
.cat:hover { background: var(--paper-3); }
.cat::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--cat-bg, linear-gradient(135deg, var(--paper-3), var(--paper-2)));
  opacity: 0.7;
  transition: opacity .4s, transform 1.2s cubic-bezier(.2,.8,.2,1);
  transform: scale(1);
}
.cat:hover::before { opacity: 0.95; transform: scale(1.06); }
.cat::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgb(20 19 17 / 0.85) 0%, transparent 50%);
  opacity: 0.6;
  transition: opacity .3s;
}
.cat:hover::after { opacity: 0.85; }
.cat-inner { position: relative; z-index: 2; color: var(--paper); }
.cat-num {
  position: absolute;
  top: 22px; left: 22px;
  z-index: 2;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--paper);
}
.cat-name {
  font-family: var(--f-display);
  font-weight: 300;
  font-variation-settings: 'opsz' 144;
  font-size: clamp(28px, 3.5vw, 46px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin-bottom: 6px;
}
.cat-name .ital {
  font-family: var(--f-editorial);
  font-style: italic;
  color: var(--accent);
}
.cat-hint {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper-3);
}
.cat-arrow {
  position: absolute;
  top: 22px; right: 22px;
  width: 36px; height: 36px;
  border: 1px solid var(--paper);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  z-index: 2;
  transition: background .3s, color .3s, transform .3s;
}
.cat:hover .cat-arrow { background: var(--accent); border-color: var(--accent); transform: rotate(-45deg); }

/* Grid spans for editorial layout */
.cat.s-lg { grid-column: span 6; grid-row: span 2; min-height: 480px; }
.cat.s-md { grid-column: span 4; grid-row: span 2; min-height: 480px; }
.cat.s-sm { grid-column: span 3; }
.cat.s-w { grid-column: span 4; }
.cat.s-wx { grid-column: span 5; }
.cat.s-x { grid-column: span 3; }

/* ————————————————— MANIFESTO ————————————————— */
.manifesto {
  background: var(--ink);
  color: var(--paper);
  padding: 120px var(--edge);
  position: relative;
  overflow: hidden;
}
.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.manifesto h2 {
  font-family: var(--f-display);
  font-weight: 300;
  font-variation-settings: 'opsz' 144;
  font-size: clamp(48px, 6.5vw, 112px);
  line-height: 0.94;
  letter-spacing: -0.04em;
  color: var(--paper);
}
.manifesto h2 .ital {
  font-family: var(--f-editorial);
  font-style: italic;
  color: var(--accent);
}
.manifesto .body {
  font-size: 18px;
  line-height: 1.6;
  color: var(--paper-3);
  max-width: 520px;
}
.manifesto .body p + p { margin-top: 18px; }
.manifesto .body em {
  font-family: var(--f-editorial);
  font-style: italic;
  color: var(--paper);
}
.manifesto .signature {
  margin-top: 32px;
  font-family: var(--f-editorial);
  font-style: italic;
  font-size: 22px;
  color: var(--accent);
}

.manifesto-bg-word {
  position: absolute;
  right: -20px;
  bottom: -80px;
  font-family: var(--f-editorial);
  font-style: italic;
  font-size: clamp(160px, 25vw, 420px);
  color: transparent;
  -webkit-text-stroke: 1px rgb(255 255 255 / 0.12);
  letter-spacing: -0.04em;
  line-height: 0.8;
  pointer-events: none;
}

/* ————————————————— LOOKBOOK / GALLERY ————————————————— */
.lookbook {
  background: var(--paper);
  padding: 80px var(--edge);
}
.lookbook-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--ink);
}
.lookbook-head h2 {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(48px, 6vw, 96px);
  line-height: 0.92;
  letter-spacing: -0.04em;
}
.lookbook-head h2 .ital {
  font-family: var(--f-editorial);
  font-style: italic;
  color: var(--accent);
}

.look-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.look {
  background: var(--paper);
  border: 1px solid var(--ink);
  position: relative;
  cursor: pointer;
  transition: background .3s, transform .3s, box-shadow .3s;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.look:hover {
  background: var(--paper-2);
  transform: translateY(-3px);
  box-shadow: 0 18px 34px -20px rgb(20 19 17 / 0.2);
}
.look-media {
  aspect-ratio: 1/1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: var(--look-bg, var(--paper-2));
  overflow: hidden;
}
.look-media img {
  position: static !important;
  width: 86% !important;
  height: auto !important;
  max-height: 100% !important;
  object-fit: contain !important;
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
}
.look:hover .look-media img { transform: scale(1.04); }
.look-info {
  padding: 14px 16px 16px;
  border-top: 1px solid var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  background: var(--paper);
}
.look-info .name {
  font-family: var(--f-editorial);
  font-style: italic;
  font-size: 18px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}
.look-info .price {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--muted);
  white-space: nowrap;
  flex-shrink: 0;
}
.look-n {
  position: absolute;
  top: 10px; left: 12px;
  z-index: 2;
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--muted);
}

/* ————————————————— TESTIMONIAL ————————————————— */
.testimonial {
  padding: 100px var(--edge);
  background: var(--paper-2);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.quote {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.quote .mark {
  font-family: var(--f-editorial);
  font-style: italic;
  font-size: 80px;
  line-height: 0.6;
  color: var(--accent);
}
.quote q {
  font-family: var(--f-editorial);
  font-size: 22px;
  line-height: 1.4;
  letter-spacing: -0.01em;
  quotes: none;
  color: var(--ink);
}
.quote q::before, .quote q::after { content: ''; }
.quote cite {
  font-style: normal;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.quote cite strong { color: var(--ink); }

/* ————————————————— FOOTER ————————————————— */
.footer-cta {
  background: var(--accent);
  color: var(--paper);
  padding: 140px var(--edge) 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.footer-cta h2 {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(60px, 10vw, 180px);
  line-height: 0.9;
  letter-spacing: -0.045em;
  margin-bottom: 32px;
}
.footer-cta h2 .ital {
  font-family: var(--f-editorial);
  font-style: italic;
  color: var(--ink);
}
.footer-cta .btn {
  background: var(--ink);
  color: var(--paper);
  padding: 24px 40px;
  font-size: 13px;
}
.footer-cta .btn:hover { background: var(--paper); color: var(--ink); }
.footer-cta .btn .arrow { background: var(--accent); }

footer {
  background: var(--ink);
  color: var(--paper);
  padding: 56px var(--edge) 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgb(236 230 214 / 0.12);
}
.footer-brand {
  font-family: var(--f-display);
  font-size: 68px;
  line-height: 0.9;
  letter-spacing: -0.03em;
  font-weight: 300;
}
.footer-brand .ital { font-family: var(--f-editorial); font-style: italic; color: var(--accent); }
.footer-col h4 {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: var(--paper-3);
}
.footer-col a {
  display: block;
  padding: 4px 0;
  font-size: 14px;
  transition: color .25s;
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper-3);
}

/* ————————————————— WIZARD ————————————————— */
.wizard {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--paper);
}

/* Top bar for wizard — condensed */
.wiz-header {
  padding: 22px var(--edge) 18px;
  border-bottom: 1px solid var(--ink);
  background: var(--paper);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  position: sticky;
  top: 0;
  z-index: 50;
}
.wiz-header .left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.wiz-header .back-link {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  transition: color .25s;
}
.wiz-header .back-link:hover { color: var(--ink); }
.wiz-header .back-link[data-disabled="true"] { opacity: 0.3; pointer-events: none; }

.wiz-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.wiz-progress .crumb {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: all .3s;
}
.wiz-progress .crumb .n {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  font-family: var(--f-display);
  font-style: italic;
  font-size: 12px;
  color: var(--ink);
  font-weight: 400;
}
.wiz-progress .crumb.is-done { color: var(--accent); }
.wiz-progress .crumb.is-done .n {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--paper);
}
.wiz-progress .crumb.is-active {
  color: var(--ink);
}
.wiz-progress .crumb.is-active .n {
  background: var(--ink);
  color: var(--paper);
}
.wiz-progress .sep {
  width: 32px; height: 1px;
  background: var(--ink);
  opacity: 0.2;
}
.wiz-header .right {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}
.wiz-header .brand-mini {
  font-family: var(--f-display);
  font-weight: 350;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--ink);
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
}
.wiz-header .brand-mini .dot {
  display: inline-block;
  width: 5px; height: 5px;
  background: var(--accent);
  border-radius: 50%;
  margin-bottom: 3px;
}
.wiz-header .cancel {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .25s;
}
.wiz-header .cancel:hover { color: var(--ink); }

/* Main content container */
.wiz-main {
  flex: 1;
  padding: 56px var(--edge) 80px;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}
.wiz-pane { display: none; animation: paneIn .5s cubic-bezier(.2,.8,.2,1) both; }
.wiz-pane.is-active { display: block; }
@keyframes paneIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}

.wiz-intro-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--ink);
}
.wiz-intro-text .eyebrow {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.wiz-intro-text h1 {
  font-family: var(--f-display);
  font-weight: 300;
  font-variation-settings: 'opsz' 144;
  font-size: clamp(40px, 5.5vw, 84px);
  line-height: 0.94;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.wiz-intro-text h1 .ital {
  font-family: var(--f-editorial);
  font-style: italic;
  color: var(--accent);
}
.wiz-intro-text p {
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 56ch;
}
.wiz-intro-text p em {
  font-family: var(--f-editorial);
  font-style: italic;
  color: var(--ink);
}
.wiz-intro-meta {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: right;
}
.wiz-intro-meta strong {
  display: block;
  font-family: var(--f-display);
  font-style: italic;
  font-family: var(--f-editorial);
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--accent);
  text-transform: none;
  margin-top: 4px;
}

/* — Product cards with live mockup carousel — */
.wiz-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.wiz-product {
  background: var(--paper-2);
  border: 1px solid var(--ink);
  padding: 0;
  cursor: pointer;
  text-align: left;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s;
  overflow: hidden;
  aspect-ratio: auto;
  min-height: 520px;
}
.wiz-product:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -18px rgb(20 19 17 / 0.18);
}
.wiz-product.is-selected {
  outline: 3px solid var(--accent);
  outline-offset: -3px;
}
.wiz-product-label {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--paper);
  padding: 5px 10px;
  border: 1px solid var(--ink);
}
.wiz-product-label.accent { color: var(--accent); border-color: var(--accent); }
.wiz-product-price {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  background: var(--paper);
  padding: 4px 12px;
  border: 1px solid var(--ink);
}
.wiz-product-price sup {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  color: var(--muted);
  font-weight: 400;
  margin-left: 3px;
}
.wiz-product-stage {
  flex: 1;
  position: relative;
  overflow: hidden;
  background: var(--paper-2);
  min-height: 340px;
}
.wiz-product-stage.dark { background: #1F1D19; }
.wiz-product-stage .slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  opacity: 0;
  transition: opacity 1s cubic-bezier(.3,0,.3,1);
}
.wiz-product-stage .slide.is-active { opacity: 1; }
.wiz-product-stage .slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.wiz-product-foot {
  padding: 20px 22px 22px;
  background: var(--paper);
  border-top: 1px solid var(--ink);
}
.wiz-product-foot h3 {
  font-family: var(--f-display);
  font-weight: 300;
  font-variation-settings: 'opsz' 144;
  font-size: 32px;
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin-bottom: 8px;
}
.wiz-product-foot h3 .ital {
  font-family: var(--f-editorial);
  font-style: italic;
  color: var(--accent);
}
.wiz-product-foot .spec {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.7;
}
.wiz-product-foot .cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--ink);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
}
.wiz-product-foot .cta .arr {
  display: inline-block;
  transition: transform .3s cubic-bezier(.2,.8,.2,1);
}
.wiz-product:hover .wiz-product-foot .cta .arr { transform: translateX(4px); color: var(--accent); }

/* — Mode branch: freetext vs guided — */
.wiz-modes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.wiz-mode {
  background: var(--paper-2);
  border: 1px solid var(--ink);
  padding: 40px 36px;
  cursor: pointer;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 360px;
  transition: transform .35s, background .35s;
  position: relative;
}
.wiz-mode:hover {
  transform: translateY(-4px);
  background: var(--paper);
}
.wiz-mode.is-selected {
  outline: 3px solid var(--accent);
  outline-offset: -3px;
}
.wiz-mode .icon-wrap {
  width: 58px; height: 58px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 8px;
}
.wiz-mode h3 {
  font-family: var(--f-display);
  font-weight: 300;
  font-variation-settings: 'opsz' 144;
  font-size: 40px;
  line-height: 0.96;
  letter-spacing: -0.03em;
}
.wiz-mode h3 .ital {
  font-family: var(--f-editorial);
  font-style: italic;
  color: var(--accent);
}
.wiz-mode p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 48ch;
}
.wiz-mode .example {
  font-family: var(--f-editorial);
  font-style: italic;
  font-size: 18px;
  color: var(--muted);
  padding-left: 16px;
  border-left: 2px solid var(--accent);
}
.wiz-mode .arrow-cta {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 20px;
  border-top: 1px dashed var(--ink);
}
.wiz-mode .arrow-cta .arr {
  transition: transform .3s;
}
.wiz-mode:hover .arrow-cta { color: var(--ink); }
.wiz-mode:hover .arrow-cta .arr { transform: translateX(6px); color: var(--accent); }

/* — Freetext input — */
.wiz-freetext {
  max-width: 820px;
}
.wiz-prompt {
  width: 100%;
  padding: 26px 28px;
  border: 1px solid var(--ink);
  background: var(--paper);
  font-family: var(--f-editorial);
  font-style: italic;
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--ink);
  min-height: 200px;
  resize: vertical;
  display: block;
}
.wiz-prompt:focus {
  outline: 3px solid var(--accent);
  outline-offset: -3px;
}
.wiz-prompt::placeholder { color: var(--muted); opacity: 0.55; }
.wiz-freetext-hint {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.wiz-freetext-hint .label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.wiz-example-chip {
  padding: 8px 14px;
  border: 1px solid rgb(20 19 17 / 0.18);
  border-radius: 999px;
  font-family: var(--f-editorial);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all .25s;
  background: transparent;
}
.wiz-example-chip:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--paper);
}

/* — Category grid — square editorial icon cards — */
.wiz-cats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.wiz-cat {
  background: var(--paper);
  border: 1px solid var(--ink);
  padding: 18px 20px;
  position: relative;
  cursor: pointer;
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 18px;
  align-items: center;
  text-align: left;
  transition: background .3s, transform .3s;
  min-height: 132px;
  overflow: hidden;
}
.wiz-cat:hover {
  background: var(--paper-2);
  transform: translateY(-2px);
}
.wiz-cat.is-selected {
  outline: 3px solid var(--accent);
  outline-offset: -3px;
}
.wiz-cat .thumb {
  width: 96px; height: 96px;
  border: 1px solid var(--ink);
  background: var(--paper);
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wiz-cat .thumb img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 6px;
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
}
.wiz-cat:hover .thumb img { transform: scale(1.08); }
.wiz-cat .body { min-width: 0; }
.wiz-cat .body .nr {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.wiz-cat .body h3 {
  font-family: var(--f-display);
  font-weight: 350;
  font-variation-settings: 'opsz' 72;
  font-size: 22px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 4px;
}
.wiz-cat .body h3 .ital {
  font-family: var(--f-editorial);
  font-style: italic;
  color: var(--accent);
}
.wiz-cat .body .hint {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.4;
}

/* — Sub-niche & Motif chips — */
.wiz-subchips {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px;
  margin-bottom: 28px;
}
.wiz-subchip {
  background: var(--paper);
  border: 1px solid var(--ink);
  padding: 14px 18px;
  cursor: pointer;
  text-align: left;
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 20px;
  letter-spacing: -0.015em;
  line-height: 1.1;
  color: var(--ink);
  transition: background .25s, transform .25s;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.wiz-subchip:hover {
  background: var(--paper-2);
  transform: translateY(-2px);
}
.wiz-subchip.is-selected {
  outline: 3px solid var(--accent);
  outline-offset: -3px;
}
.wiz-subchip .arr {
  font-family: var(--f-mono);
  font-size: 14px;
  color: var(--muted);
  transition: transform .25s, color .25s;
}
.wiz-subchip:hover .arr { color: var(--accent); transform: translateX(4px); }
.wiz-subchip.motif { font-family: var(--f-display); font-style: normal; }
.wiz-subchip.motif .count {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
  display: block;
}

/* Sub-steps path crumb (within guided Flow) */
.wiz-path {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.wiz-path a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .25s, color .25s;
  cursor: pointer;
}
.wiz-path a:hover { color: var(--accent); border-color: var(--accent); }
.wiz-path .chev { color: var(--muted); opacity: .5; }
.wiz-path .current {
  color: var(--accent);
  font-family: var(--f-editorial);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
}

/* — Style chips — */
.wiz-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.wiz-chip {
  padding: 12px 20px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .25s, color .25s, border-color .25s;
  background: var(--paper);
}
.wiz-chip:hover { background: var(--paper-2); }
.wiz-chip.is-selected {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

/* — Confirm row at bottom of content — */
.wiz-confirm {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.wiz-confirm .picked {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.wiz-confirm .picked strong {
  display: block;
  font-family: var(--f-editorial);
  font-style: italic;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-top: 4px;
  text-transform: none;
}

/* Generating screen */
.wiz-generate {
  display: none;
  text-align: center;
  padding: 140px var(--edge);
  min-height: 70vh;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.wiz-generate.is-active { display: flex; }
.wiz-generate h1 {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(60px, 9vw, 150px);
  line-height: 0.9;
  letter-spacing: -0.045em;
  max-width: 1100px;
}
.wiz-generate h1 .ital {
  font-family: var(--f-editorial);
  font-style: italic;
  color: var(--accent);
}
.wiz-generate .status {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 12px;
}
.wiz-generate .status .live-dot {
  width: 7px; height: 7px; background: var(--accent); border-radius: 50%;
  animation: pulse 1.3s ease-in-out infinite;
}
.wiz-generate .progress-bar {
  width: 560px;
  max-width: 90vw;
  height: 1px;
  background: rgb(20 19 17 / 0.12);
  position: relative;
  overflow: hidden;
}
.wiz-generate .progress-bar::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  width: 30%;
  background: var(--accent);
  animation: progress 2.4s ease-in-out infinite;
}
@keyframes progress {
  0% { left: -30%; }
  100% { left: 100%; }
}

/* ————————————————— DESIGN DETAIL ————————————————— */
.pdp {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: calc(100vh - 84px);
}
.pdp-gallery {
  background: var(--paper-2);
  position: sticky;
  top: 84px;
  height: calc(100vh - 84px);
  border-right: 1px solid var(--ink);
  display: flex;
  flex-direction: column;
}
.pdp-hero {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
  overflow: hidden;
}
.pdp-hero svg { width: 70%; height: auto; filter: drop-shadow(0 20px 40px rgb(0 0 0 / 0.1)); }
.pdp-hero .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .6s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
}
.pdp-hero .slide.is-active { opacity: 1; }
.pdp-thumbs {
  display: flex;
  gap: 2px;
  padding: 16px;
  border-top: 1px solid var(--ink);
  background: var(--paper);
}
.pdp-thumb {
  width: 72px;
  height: 90px;
  border: 1px solid var(--ink);
  background: var(--paper-2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 10px;
  transition: background .25s;
}
.pdp-thumb:hover, .pdp-thumb.is-active { background: var(--paper-3); }
.pdp-thumb.is-active { outline: 2px solid var(--accent); outline-offset: -2px; }
.pdp-thumb svg { width: 100%; height: auto; }
.pdp-nav {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  gap: 8px;
  z-index: 3;
}
.pdp-nav-btn {
  width: 36px; height: 36px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .25s, color .25s;
}
.pdp-nav-btn:hover { background: var(--ink); color: var(--paper); }
.pdp-view-label {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 3;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.pdp-info {
  padding: 48px 56px 56px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.pdp-header {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pdp-breadcrumb {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.pdp-breadcrumb a {
  color: var(--muted);
  text-decoration: none;
  padding: 2px 0;
  border-bottom: 1px solid transparent;
  transition: color .2s, border-color .2s;
}
.pdp-breadcrumb a:hover {
  color: var(--ink);
  border-color: var(--ink);
}
.pdp-breadcrumb .sep {
  color: var(--muted);
  opacity: 0.4;
}
.pdp-info h1 {
  font-family: var(--f-display);
  font-weight: 300;
  font-variation-settings: 'opsz' 144;
  font-size: clamp(36px, 4.4vw, 64px);
  line-height: 1;
  letter-spacing: -0.03em;
}
.pdp-info h1 .ital { font-family: var(--f-editorial); font-style: italic; color: var(--accent); }

/* Trust strip */
.pdp-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid rgb(20 19 17 / 0.12);
  border-bottom: 1px solid rgb(20 19 17 / 0.12);
}
.pdp-trust > div {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.pdp-trust > div > svg { margin-top: 2px; flex-shrink: 0; }
.pdp-trust .trust-label {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
}
.pdp-trust .trust-text {
  font-size: 12px;
  line-height: 1.5;
  color: var(--ink-soft);
}

/* Color picker label + state */
.color-current {
  font-family: var(--f-editorial);
  font-style: italic;
  font-size: 14px;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--ink);
}
.colors {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.color {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--ink);
  cursor: pointer;
  position: relative;
  transition: transform .25s;
  padding: 0;
}
.color:hover { transform: scale(1.08); }
.color.is-selected {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* Slide images get a subtle drop-shadow for depth */
.pdp .slide img {
  filter: drop-shadow(0 18px 36px rgb(0 0 0 / 0.07));
}

/* When a color variant exposes fewer views than slots, hide unused slides & thumbs */
.pdp .slide.is-hidden,
.pdp .pdp-thumb.is-hidden {
  display: none !important;
}

/* SEO story content block */
.pdp-story {
  padding: 36px 0 0;
  border-top: 1px solid var(--ink);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.pdp-story h2 {
  font-family: var(--f-display);
  font-weight: 300;
  font-variation-settings: 'opsz' 144;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 0 4px;
}
.pdp-story h3 {
  font-family: var(--f-editorial);
  font-style: italic;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--accent);
  margin: 14px 0 0;
}
.pdp-story p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
  max-width: 62ch;
}
.pdp-story p em {
  font-family: var(--f-editorial);
  font-style: italic;
  color: var(--ink);
}
.pdp-story p strong {
  color: var(--ink);
  font-weight: 500;
}

/* Details accordions */
.pdp-details {
  display: flex;
  flex-direction: column;
}
.pdp-details details {
  border-top: 1px solid var(--ink);
  cursor: pointer;
}
.pdp-details details:last-of-type {
  border-bottom: 1px solid var(--ink);
}
.pdp-details summary {
  list-style: none;
  padding: 18px 0;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}
.pdp-details summary::-webkit-details-marker { display: none; }
.pdp-details summary .plus {
  color: var(--accent);
  font-size: 16px;
  transition: transform .25s;
}
.pdp-details details[open] summary .plus { transform: rotate(45deg); }
.pdp-details .details-body {
  padding: 0 0 22px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-soft);
}
.pdp-details .details-body p + p { margin-top: 10px; }
.pdp-details .details-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pdp-details .details-body ul li {
  padding-left: 18px;
  position: relative;
}
.pdp-details .details-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 1px;
  background: var(--accent);
}

.pdp-section h3 {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
  display: flex;
  justify-content: space-between;
}
.pdp-section h3 small { color: var(--accent); }

.size-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  background: var(--ink);
  border: 1px solid var(--ink);
}
.size {
  padding: 16px;
  background: var(--paper);
  text-align: center;
  cursor: pointer;
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: background .25s, color .25s;
  position: relative;
}
.size:hover { background: var(--paper-2); }
.size.is-selected { background: var(--ink); color: var(--paper); }
.size small {
  display: block;
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  font-weight: 400;
  color: inherit;
  opacity: 0.6;
  margin-top: 4px;
}

.colors {
  display: flex;
  gap: 8px;
}
.color {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--ink);
  cursor: pointer;
  position: relative;
  transition: transform .25s;
}
.color:hover { transform: scale(1.1); }
.color.is-selected {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.pdp-cta-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--ink);
  align-items: center;
}
.pdp-cta-row .price {
  font-family: var(--f-display);
  font-size: 46px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
}
.pdp-cta-row .price sup {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--muted);
  vertical-align: top;
  margin-left: 6px;
  font-weight: 400;
}
.pdp-cta-row .btn {
  width: 100%;
  justify-content: center;
  padding: 22px 32px;
  font-size: 12px;
}

.pdp-description {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 52ch;
}
.pdp-description em {
  font-family: var(--f-editorial);
  font-style: italic;
  color: var(--ink);
}

/* ————————————————— PALETTE DOCK (floating swatch-picker) ————————————————— */
.palette-dock {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
  background: var(--ink);
  color: var(--paper);
  border-radius: 14px;
  box-shadow: 0 12px 40px rgb(0 0 0 / 0.25);
  font-family: var(--f-mono);
  min-width: 180px;
  max-width: 220px;
  overflow: hidden;
  transition: max-width .3s cubic-bezier(.2,.8,.2,1), max-height .3s cubic-bezier(.2,.8,.2,1);
}
.palette-dock-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 14px;
  border-bottom: 1px solid rgb(236 230 214 / 0.08);
}
.palette-dock-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--paper-3);
}
.palette-dock-toggle {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--paper-3);
  transition: transform .25s, color .25s;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.palette-dock-toggle:hover { color: var(--paper); }
.palette-dock.is-collapsed .palette-dock-toggle { transform: rotate(-180deg); }
.palette-dock-list {
  list-style: none;
  padding: 6px 0;
  margin: 0;
  max-height: 400px;
  overflow-y: auto;
  transition: max-height .3s cubic-bezier(.2,.8,.2,1), opacity .2s, padding .3s;
}
.palette-dock.is-collapsed .palette-dock-list {
  max-height: 0;
  opacity: 0;
  padding: 0;
  pointer-events: none;
}
.palette-dock-item { margin: 0; }
.palette-dock-button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 8px 14px;
  background: transparent;
  border: 0;
  color: var(--paper-3);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  text-align: left;
  transition: background .2s, color .2s;
}
.palette-dock-button:hover { background: rgb(236 230 214 / 0.06); color: var(--paper); }
.palette-dock-item.is-active .palette-dock-button { color: var(--paper); background: rgb(236 230 214 / 0.08); }
.palette-dock-swatch {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid rgb(236 230 214 / 0.22);
  flex-shrink: 0;
}
.palette-dock-item.is-active .palette-dock-swatch {
  box-shadow: 0 0 0 2px var(--ink), 0 0 0 3px var(--paper);
}
.palette-dock-name { font-weight: 500; }

@media (max-width: 680px) {
  .palette-dock {
    bottom: 72px;
    left: 12px;
    min-width: 152px;
    font-size: 10px;
  }
  .palette-dock-button { padding: 7px 12px; font-size: 10px; }
}

/* ————————————————— SWITCHER (demo nav) ————————————————— */
.demo-switcher {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  background: var(--ink);
  color: var(--paper);
  border-radius: 999px;
  padding: 6px;
  display: flex;
  gap: 2px;
  box-shadow: 0 12px 40px rgb(0 0 0 / 0.25);
  font-family: var(--f-mono);
}
.demo-switcher a {
  padding: 10px 18px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper-3);
  border-radius: 999px;
  transition: background .25s, color .25s;
}
.demo-switcher a:hover { color: var(--paper); }
.demo-switcher a.is-active {
  background: var(--accent);
  color: var(--paper);
}

/* ————————————————— RESPONSIVE ————————————————— */
@media (max-width: 1100px) {
  .hero {
    padding: 32px var(--edge) 40px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: 0;
    max-height: none;
  }
  .hero-stage {
    max-width: 440px;
    margin: 0 auto;
  }
  .editions { grid-template-columns: 1fr; }
  .manifesto-grid { grid-template-columns: 1fr; gap: 40px; }
  .testimonial-grid { grid-template-columns: 1fr; gap: 32px; }
  .look-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .cats { grid-template-columns: repeat(6, 1fr); }
  .cat.s-lg, .cat.s-md { grid-column: span 6; min-height: 320px; }
  .cat.s-sm, .cat.s-w, .cat.s-wx, .cat.s-x { grid-column: span 3; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-row { grid-template-columns: 80px 1fr; gap: 16px; }
  .process-row .stat, .process-row p { grid-column: 2 / -1; }
  .pdp { grid-template-columns: 1fr; }
  .pdp-gallery { position: relative; top: 0; height: auto; border-right: 0; border-bottom: 1px solid var(--ink); }
  .pdp-info { padding: 36px var(--edge) 48px; }
  .wiz-products { grid-template-columns: 1fr; }
  .wiz-product { min-height: 460px; }
  .wiz-modes { grid-template-columns: 1fr; }
  .wiz-mode { min-height: 280px; padding: 30px 24px; }
  .wiz-cats { grid-template-columns: repeat(2, 1fr); }
  .wiz-intro-row { grid-template-columns: 1fr; }
  .wiz-intro-meta { text-align: left; }
}
@media (max-width: 680px) {
  :root {
    --edge: 18px;
  }
  .nav { display: none; }
  .topbar-inner { grid-template-columns: auto auto; padding: 12px var(--edge); }
  .brand { font-size: 18px; }
  .brand sup { display: none; }
  .ticker { padding: 7px 0; font-size: 10px; letter-spacing: 0.18em; }
  .hero { padding: 24px var(--edge) 32px; }
  .hero-grid { gap: 22px; }
  .hero-title { font-size: clamp(40px, 12vw, 62px); line-height: 0.98; }
  .hero-title .underline::after { height: 3px; bottom: -0.02em; }
  .hero-sub { font-size: 15px; }
  .hero-cta { gap: 14px; }
  .hero-cta .btn-xl { padding: 16px 22px; font-size: 11px; }
  .pricing-inline { font-size: 10px; }
  .hero-stage { max-width: 100%; aspect-ratio: 4/5; }
  .strip { grid-template-columns: repeat(2, 1fr); }
  .strip > div { padding: 16px var(--edge); }
  .strip > div:nth-child(2) { border-right: 0; }
  .strip > div:nth-child(1), .strip > div:nth-child(2) { border-bottom: 1px solid var(--ink); }
  .strip .num { font-size: 34px; }
  .section { padding: 48px var(--edge); }
  .section-tight { padding: 32px var(--edge); }
  .section-head { margin-bottom: 28px; padding-bottom: 14px; }
  .section-head h2 { font-size: clamp(32px, 9vw, 44px); }
  .process-row { padding: 24px 0; gap: 14px; }
  .process-row .n { font-size: 52px; }
  .process-row h3 { font-size: 22px; }
  .process-row p { font-size: 14px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-brand { font-size: 52px; }
  .footer-bottom { flex-direction: column; gap: 10px; align-items: flex-start; }
  .look-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .look-media { padding: 12px; }
  .look-media img { width: 88% !important; }
  .look-info { padding: 10px 12px 12px; }
  .look-info .name { font-size: 15px; }
  .cats { grid-template-columns: 1fr; }
  .cat { min-height: 180px !important; grid-column: 1 / -1 !important; padding: 18px; }
  .cat-name { font-size: 28px; }
  .lookbook { padding: 48px var(--edge); }
  .lookbook-head { grid-template-columns: 1fr; gap: 18px; margin-bottom: 28px; }
  .lookbook-head h2 { font-size: clamp(30px, 8vw, 44px); }
  .testimonial { padding: 48px var(--edge); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .quote q { font-size: 18px; }
  .edition { min-height: auto; padding: 24px 20px; }
  .edition h3 { font-size: 40px; }
  .manifesto { padding: 56px var(--edge); }
  .manifesto h2 { font-size: clamp(36px, 10vw, 54px); }
  .manifesto-bg-word { font-size: clamp(100px, 36vw, 180px); bottom: -40px; }
  .footer-cta { padding: 64px var(--edge) 56px; }
  .footer-cta h2 { font-size: clamp(44px, 14vw, 76px); }
  .size-grid { grid-template-columns: repeat(3, 1fr); }
  .pdp-trust { grid-template-columns: 1fr; gap: 14px; }
  .pdp-info { padding: 26px var(--edge) 40px; gap: 26px; }
  .pdp-info h1 { font-size: clamp(30px, 8vw, 38px); }
  .pdp-breadcrumb { font-size: 9px; }
  .pdp-story { padding: 24px 0 0; gap: 14px; }
  .pdp-story h2 { font-size: 24px; }
  .pdp-story h3 { font-size: 17px; }
  .pdp-story p { font-size: 14px; }
  .wiz-generate { padding: 56px var(--edge); }
  .wiz-generate h1 { font-size: clamp(40px, 11vw, 64px); }
  .wiz-header { grid-template-columns: 1fr auto; padding: 12px var(--edge); gap: 10px; }
  .wiz-header .right { display: none; }
  .wiz-progress { gap: 6px; grid-column: 1 / -1; justify-content: flex-start; overflow-x: auto; font-size: 9px; }
  .wiz-progress .crumb { padding: 4px 8px; gap: 6px; }
  .wiz-progress .crumb .n { width: 18px; height: 18px; font-size: 10px; }
  .wiz-progress .sep { width: 10px; }
  .wiz-main { padding: 32px var(--edge) 56px; }
  .wiz-intro-text h1 { font-size: clamp(32px, 9vw, 44px); }
  .wiz-intro-text p { font-size: 14px; }
  .wiz-cats { grid-template-columns: 1fr; gap: 8px; }
  .wiz-cat { grid-template-columns: 64px 1fr; gap: 14px; padding: 14px 16px; min-height: 92px; }
  .wiz-cat .thumb { width: 64px; height: 64px; }
  .wiz-cat .body h3 { font-size: 20px; }
  .wiz-products { gap: 10px; }
  .wiz-product { min-height: 380px; }
  .wiz-product-stage { min-height: 220px; }
  .wiz-product-foot { padding: 14px 16px 16px; }
  .wiz-product-foot h3 { font-size: 24px; }
  .wiz-product-price { font-size: 16px; padding: 3px 8px; }
  .wiz-product-label { font-size: 9px; padding: 3px 8px; }
  .wiz-mode h3 { font-size: 32px; }
  .wiz-prompt { font-size: 18px; padding: 18px 20px; min-height: 140px; }
  .wiz-subchip { font-size: 16px; padding: 12px 14px; }
  .wiz-chips { gap: 6px; margin-bottom: 22px; }
  .wiz-chip { padding: 9px 14px; font-size: 10px; }
  .wiz-confirm { flex-direction: column; align-items: stretch; gap: 12px; }
  .wiz-confirm .btn { width: 100%; justify-content: center; }
  .wiz-path { font-size: 9px; gap: 6px; }
  .btn-xl { padding: 16px 22px; font-size: 11px; }
  .pdp-cta-row { grid-template-columns: 1fr; gap: 12px; }
  .pdp-cta-row .btn { width: 100%; justify-content: center; }
  .demo-switcher { bottom: 12px; padding: 4px; }
  .demo-switcher a { padding: 8px 12px; }
}

/* ————————————————— REVEAL ANIMATIONS ————————————————— */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s cubic-bezier(.2,.8,.2,1), transform 1s cubic-bezier(.2,.8,.2,1);
}
.reveal.is-in { opacity: 1; transform: none; }

.char-reveal {
  display: inline-block;
  overflow: hidden;
}
.char-reveal > span {
  display: inline-block;
  transform: translateY(105%);
  animation: charRise 1s cubic-bezier(.2,.8,.2,1) both;
  animation-delay: calc(var(--i, 0) * 0.025s);
}
@keyframes charRise {
  to { transform: none; }
}
