/* ============ NYTKA v2 — tonal, monochrome editorial
   No accent colour at all — pure warm neutrals.
   palette:
     ink #0c0c0e
     graphite #16161a
     panel #1d1d22
     stone #54514a
     mist #9a9489
     bone #e8e3d6
     pearl #d4ccba (hover/highlight)
   type:
     Fraunces (display, variable optical-size serif)
     Inter Tight (body — already used by atlas, but rebalanced here)
     Geist Mono (mono — small captions)
============ */

*,*::before,*::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html {
  background: #0c0c0e;
  color: #e8e3d6;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 80px;
}
section { scroll-margin-top: 70px; }

:root {
  --ink: #0c0c0e;
  --ink-2: #14141a;
  --graphite: #16161a;
  --panel: #1d1d22;
  --panel-2: #25252b;
  --stone: #54514a;
  --stone-2: #3a3833;
  --mist: #9a9489;
  --bone: #e8e3d6;
  --bone-2: #d4ccba;
  --pearl: #d4ccba;

  --line: rgba(232, 227, 214, 0.08);
  --line-strong: rgba(232, 227, 214, 0.2);
  --line-bright: rgba(232, 227, 214, 0.5);

  --f-display: 'Fraunces', 'Times New Roman', serif;
  --f-body: 'Inter Tight', system-ui, sans-serif;
  --f-mono: 'Geist Mono', ui-monospace, monospace;

  --gutter: clamp(1.5rem, 4vw, 3rem);
  --max: 1640px;
  --nav-h: 64px;
  --ease: cubic-bezier(.55, .06, .22, .99);
  --ease-out: cubic-bezier(.22, 1, .36, 1);
}

body {
  font-family: var(--f-body);
  font-size: clamp(15px, 1vw, 16.5px);
  line-height: 1.55;
  background: var(--ink);
  color: var(--bone);
  font-weight: 300;
  overflow-x: hidden;
  letter-spacing: 0.005em;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
::selection { background: var(--bone); color: var(--ink); }
em { font-style: italic; font-weight: 400; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: lowercase;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all .35s var(--ease-out);
  white-space: nowrap;
  border-radius: 0;
}
.btn--sm { padding: 9px 16px; font-size: 10px; }
.btn--lg { padding: 16px 26px; font-size: 11.5px; }
.btn--xl { padding: 21px 32px; font-size: 12px; }
.btn--solid {
  background: var(--bone);
  color: var(--ink);
  border-color: var(--bone);
}
.btn--solid:hover {
  background: var(--pearl);
  border-color: var(--pearl);
}
.btn--ghost {
  background: transparent;
  color: var(--bone);
  border-color: var(--line-strong);
}
.btn--ghost:hover { border-color: var(--bone); }
.btn svg { transition: transform .35s var(--ease-out); }
.btn:hover svg { transform: translateX(3px); }

/* ---------- boot loader ---------- */
.boot {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--ink);
  transition: opacity .55s var(--ease), visibility .55s;
}
body:not(.is-loading) .boot {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.boot__layout {
  position: absolute;
  inset: 0;
  padding: clamp(20px, 3vw, 36px);
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: clamp(24px, 4vh, 48px);
}
.boot__topbar {
  display: flex;
  justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: lowercase;
  color: var(--mist);
}
.boot__center {
  display: grid;
  place-items: center;
}
.boot__mark {
  font-family: var(--f-display);
  font-variation-settings: "opsz" 144;
  font-weight: 300;
  font-size: clamp(72px, 14vw, 220px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0;
  display: flex;
  gap: clamp(8px, 1.5vw, 24px);
  color: var(--bone);
}
.boot__mark-letter {
  display: inline-block;
  opacity: 0.18;
  transition: opacity .4s var(--ease);
}
.boot__mark-letter.is-on {
  opacity: 1;
}
.boot__footer {
  display: grid;
  grid-template-columns: 60px 1fr 140px;
  gap: 20px;
  align-items: center;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--mist);
  letter-spacing: 0.12em;
}
.boot__count {
  color: var(--bone);
  letter-spacing: 0.06em;
}
.boot__rule {
  position: relative;
  height: 1px;
  background: var(--line);
  overflow: hidden;
}
.boot__rule #bootBar {
  position: absolute;
  inset: 0;
  background: var(--bone);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s var(--ease);
}
.boot__stage {
  text-align: right;
  text-transform: lowercase;
  color: var(--bone-2);
}

/* ---------- scroll progress ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 0;
  height: 1px;
  background: var(--bone);
  z-index: 100;
  transition: width .1s linear;
}

/* ---------- 3D stage — rotating corset mannequin ---------- */
.stage {
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 55% 45% at 70% 50%, #20201f 0%, #0c0c0e 70%),
    var(--ink);
  overflow: hidden;
}
.stage canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
}
.stage__noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.91 0 0 0 0 0.89 0 0 0 0 0.84 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.32;
  mix-blend-mode: overlay;
}
.stage__scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    /* strong dark scrim on the left half where typography lives */
    linear-gradient(90deg, var(--ink) 0%, rgba(12,12,14,0.95) 22%, rgba(12,12,14,0.55) 42%, rgba(12,12,14,0.1) 60%, transparent 75%),
    /* top/bottom feather */
    linear-gradient(180deg, rgba(12,12,14,0.4) 0%, transparent 18%, transparent 82%, rgba(12,12,14,0.55) 100%);
}
@media (max-width: 720px) {
  .stage__pic {
    width: 100vw;
    height: 100vh;
  }
  .stage__pic img {
    object-position: 50% center;
  }
  .stage__scrim {
    background:
      linear-gradient(180deg, var(--ink) 0%, rgba(12,12,14,0.55) 14%, rgba(12,12,14,0.35) 40%, rgba(12,12,14,0.55) 70%, rgba(12,12,14,0.95) 100%);
  }
}

/* ---------- header ---------- */
.hdr {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px var(--gutter);
  background: rgba(12, 12, 14, 0.7);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.hdr__brand {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  font-family: var(--f-display);
  font-variation-settings: "opsz" 144;
  font-weight: 300;
  font-size: 22px;
  letter-spacing: 0;
  color: var(--bone);
  line-height: 1;
}
.hdr__brand-letter {
  font-style: italic;
  font-weight: 400;
}
.hdr__brand-rest {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--mist);
  margin-left: 4px;
  align-self: center;
  text-transform: lowercase;
}
.hdr__nav {
  display: flex;
  gap: 28px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: lowercase;
}
.hdr__nav a {
  color: var(--mist);
  position: relative;
  transition: color .3s var(--ease);
  padding: 4px 0;
}
.hdr__nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--bone);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.hdr__nav a:hover { color: var(--bone); }
.hdr__nav a:hover::after { transform: scaleX(1); }
.hdr__right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.hdr__burger {
  width: 42px; height: 42px;
  display: none;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--bone);
  cursor: pointer;
  transition: border-color .3s var(--ease), color .3s var(--ease), transform .35s var(--ease);
}
.hdr__burger:hover { border-color: var(--bone); }
body.menu-open .hdr__burger { transform: rotate(45deg); }

@media (max-width: 1080px) {
  .hdr__nav { display: none; }
  .hdr__burger { display: inline-flex; }
}
@media (max-width: 520px) {
  .hdr .btn--sm { display: none; }
}

/* ---------- mobile menu ---------- */
.mmenu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--ink);
  visibility: hidden;
  opacity: 0;
  transition: opacity .55s var(--ease), visibility .55s;
  overflow-y: auto;
}
.mmenu.is-open { visibility: visible; opacity: 1; }
.mmenu__inner {
  padding: 100px var(--gutter) 40px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.mmenu__cap {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: lowercase;
  color: var(--mist);
}
.mmenu__nav { display: flex; flex-direction: column; }
.mmenu__link {
  display: flex;
  gap: 24px;
  align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--f-display);
  font-variation-settings: "opsz" 96;
  font-weight: 300;
  font-size: clamp(32px, 9vw, 52px);
  color: var(--bone);
  letter-spacing: -0.01em;
  transform: translateY(20px);
  opacity: 0;
  transition: transform .5s var(--ease) calc(var(--i) * 70ms), opacity .5s var(--ease) calc(var(--i) * 70ms), color .3s var(--ease);
}
.mmenu__link em {
  font-family: var(--f-mono);
  font-size: 12px;
  font-style: normal;
  color: var(--mist);
  letter-spacing: 0.14em;
}
.mmenu.is-open .mmenu__link { transform: translateY(0); opacity: 1; }
.mmenu__link:nth-child(1) { --i: 1; }
.mmenu__link:nth-child(2) { --i: 2; }
.mmenu__link:nth-child(3) { --i: 3; }
.mmenu__link:nth-child(4) { --i: 4; }
.mmenu__link:nth-child(5) { --i: 5; }
.mmenu__bot {
  margin-top: auto;
  display: grid;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.mmenu__addr {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: lowercase;
  color: var(--mist);
  margin: 0;
}
body.menu-open { overflow: hidden; }

/* ---------- HUD floating annotations ---------- */
.hud {
  position: fixed;
  inset: 0;
  z-index: 41;
  pointer-events: none;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: lowercase;
  color: var(--bone);
  mix-blend-mode: difference;
}
.hud__cell {
  position: absolute;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 220px;
}
/* dashed connector line — drawn before the inner block */
.hud__cell::before {
  content: '';
  height: 1px;
  background: repeating-linear-gradient(90deg, currentColor 0 4px, transparent 4px 8px);
  opacity: 0.55;
  flex-shrink: 0;
}
.hud__cell--tl { top: clamp(90px, 12vh, 130px); left: clamp(40px, 5vw, 110px); }
.hud__cell--tr { top: clamp(140px, 22vh, 200px); right: clamp(20px, 4vw, 80px); flex-direction: row-reverse; text-align: right; }
.hud__cell--ml { top: 52%; left: clamp(20px, 4vw, 60px); }
.hud__cell--br { bottom: clamp(80px, 10vh, 120px); right: clamp(40px, 6vw, 120px); flex-direction: row-reverse; text-align: right; }
.hud__cell--tl::before { width: 60px; margin-top: 14px; }
.hud__cell--tr::before { width: 90px; margin-top: 14px; }
.hud__cell--ml::before { width: 40px; margin-top: 14px; }
.hud__cell--br::before { width: 80px; margin-top: 14px; }
.hud__inner {
  display: grid;
  gap: 4px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .5s var(--ease), transform .55s var(--ease);
}
.hud__inner.is-on {
  opacity: 0.85;
  transform: translateY(0);
}
.hud__inner em {
  font-family: var(--f-display);
  font-variation-settings: "opsz" 72;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 1.8vw, 30px);
  line-height: 1;
  letter-spacing: -0.005em;
  color: var(--bone);
}
.hud__inner span {
  letter-spacing: 0.16em;
  color: var(--bone-2);
  line-height: 1.4;
}
@media (max-width: 880px) {
  .hud__cell--ml { display: none; }
  .hud__cell--tl { top: 80px; left: 16px; max-width: 130px; }
  .hud__cell--tl::before { width: 30px; }
  .hud__cell--tr { display: none; }
  .hud__cell--br { right: 16px; bottom: 90px; max-width: 150px; }
  .hud__cell--br::before { width: 30px; }
  .hud__inner em { font-size: 16px; }
  .hud__inner span { font-size: 9px; }
}

/* ---------- vertical chapter index (desktop) ---------- */
.scrollindex {
  position: fixed;
  top: 50%;
  left: clamp(12px, 1.4vw, 24px);
  transform: translateY(-50%);
  z-index: 40;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--stone);
  pointer-events: none;
  mix-blend-mode: difference;
}
.scrollindex__item {
  transition: color .35s var(--ease), letter-spacing .35s var(--ease);
  text-transform: lowercase;
}
.scrollindex__item.is-on {
  color: var(--bone);
  letter-spacing: 0.2em;
}
.scrollindex__line {
  width: 1px;
  height: 16px;
  background: var(--stone);
}
@media (max-width: 1080px) { .scrollindex { display: none; } }

/* ============================================================
   SECTIONS
   ============================================================ */
main { position: relative; z-index: 2; }

.sx {
  position: relative;
  padding: clamp(72px, 9vw, 140px) var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
}
.sx__strip {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  margin-bottom: clamp(48px, 7vw, 90px);
  border-bottom: 1px solid var(--line);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: lowercase;
  color: var(--mist);
}
.sx__h {
  font-family: var(--f-display);
  font-variation-settings: "opsz" 144;
  font-weight: 300;
  font-size: clamp(34px, 5.8vw, 92px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--bone);
  text-shadow: 0 4px 32px rgba(12, 12, 14, 0.85);
}
.sx__h em {
  color: var(--bone-2);
  font-style: italic;
  font-weight: 300;
}
.sx__sub {
  font-size: clamp(15px, 1.2vw, 18px);
  color: var(--mist);
  max-width: 620px;
  margin: 0;
  line-height: 1.55;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  padding: calc(var(--nav-h) + var(--gutter)) var(--gutter) var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr);
  grid-template-rows: auto 1fr auto;
  grid-template-areas:
    'top top'
    'main aside'
    'cta cta';
  gap: clamp(24px, 4vw, 56px);
  overflow: hidden;
}

/* Massive Roman numeral as decorative anchor */
.hero__roman {
  position: absolute;
  bottom: -8vw;
  left: -2vw;
  font-family: var(--f-display);
  font-variation-settings: "opsz" 144;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(280px, 56vw, 920px);
  line-height: 0.7;
  color: var(--bone);
  opacity: 0.04;
  letter-spacing: -0.05em;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

/* Top bar — three uneven cells (not 2-up symmetric) */
.hero__topbar {
  grid-area: top;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: clamp(12px, 2vw, 32px);
  padding-bottom: clamp(8px, 1vw, 16px);
  border-bottom: 1px solid var(--line);
  z-index: 2;
}
.hero__topbar-cell {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: lowercase;
  color: var(--mist);
  line-height: 1.4;
}
.hero__topbar-cell em {
  font-style: normal;
  color: var(--bone);
  letter-spacing: 0.18em;
}
.hero__topbar-cell--mid { text-align: center; align-items: center; }
.hero__topbar-cell--end { text-align: right; align-items: flex-end; }

/* Headline — broken across uneven rows with strong horizontal offsets */
.hero__h {
  grid-area: main;
  position: relative;
  font-family: var(--f-display);
  font-variation-settings: "opsz" 144;
  font-weight: 300;
  font-size: clamp(44px, 9.8vw, 188px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  margin: 0;
  align-self: end;
  color: var(--bone);
  z-index: 3;
  text-shadow: 0 6px 60px rgba(12, 12, 14, 0.9);
}
.hero__row {
  display: flex;
  align-items: baseline;
  gap: clamp(12px, 1.5vw, 28px);
  overflow: visible;
  white-space: nowrap;
}
.hero__row--1 { padding-left: 0; }
.hero__row--2 { padding-left: clamp(80px, 14vw, 240px); }
.hero__row--3 { padding-left: clamp(20px, 4vw, 80px); }
.hero__row--4 { padding-left: clamp(120px, 22vw, 380px); }
.hero__kicker {
  font-family: var(--f-mono);
  font-style: normal;
  font-size: clamp(11px, 0.95vw, 14px);
  letter-spacing: 0.2em;
  text-transform: lowercase;
  color: var(--mist);
  align-self: end;
  padding-bottom: 0.5em;
}
.hero__word {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  animation: reveal 1.15s var(--ease-out) calc(var(--i) * 130ms + 500ms) forwards;
}
.hero__h em {
  color: var(--bone-2);
  font-style: italic;
  font-weight: 300;
}
.hero__word--blend {
  color: var(--bone);
  text-shadow:
    0 2px 24px rgba(12, 12, 14, 0.95),
    0 0 40px rgba(12, 12, 14, 0.85),
    0 0 4px rgba(12, 12, 14, 0.7);
}
.hero__word--blend em { color: var(--bone-2); }
@keyframes reveal { to { transform: translateY(0); opacity: 1; } }

/* Aside numeric block — sits in upper-right area, breaks the grid */
.hero__aside {
  grid-area: aside;
  align-self: start;
  justify-self: end;
  display: grid;
  gap: 6px;
  text-align: right;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: lowercase;
  color: var(--mist);
  z-index: 4;
  opacity: 0;
  animation: fadeIn 1s var(--ease-out) 1.5s forwards;
}
.hero__aside-num {
  font-family: var(--f-display);
  font-variation-settings: "opsz" 144;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(36px, 4.4vw, 78px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--bone);
}
.hero__aside-cap { line-height: 1.5; }
@keyframes fadeIn { to { opacity: 1; } }

/* CTA row — full width at the bottom with auxiliary number */
.hero__cta-row {
  grid-area: cta;
  display: flex;
  align-items: end;
  gap: clamp(12px, 2vw, 28px);
  flex-wrap: wrap;
  padding-top: clamp(16px, 2.5vw, 32px);
  border-top: 1px solid var(--line);
  z-index: 4;
  opacity: 0;
  animation: fadeIn 1s var(--ease-out) 1.8s forwards;
}
.hero__cta-aux {
  margin-left: auto;
  display: grid;
  gap: 2px;
  text-align: right;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: lowercase;
  color: var(--mist);
}
.hero__cta-aux em {
  font-family: var(--f-display);
  font-variation-settings: "opsz" 72;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(18px, 1.6vw, 26px);
  letter-spacing: -0.005em;
  color: var(--bone);
  line-height: 1;
}

@media (max-width: 880px) {
  .hero { grid-template-columns: 1fr; grid-template-areas: 'top' 'main' 'aside' 'cta'; }
  .hero__aside { justify-self: start; text-align: left; }
  .hero__cta-aux { margin-left: 0; text-align: left; }
  .hero__topbar { grid-template-columns: 1fr 1fr; }
  .hero__topbar-cell--mid { display: none; }
}
@media (max-width: 720px) {
  .hero__row--2 { padding-left: clamp(20px, 8vw, 60px); }
  .hero__row--3 { padding-left: 0; }
  .hero__row--4 { padding-left: clamp(40px, 16vw, 120px); }
  .hero__roman { font-size: clamp(220px, 70vw, 420px); bottom: -10vw; }
}

/* ---------- MANIFEST ---------- */
.manifest__lead {
  margin-bottom: clamp(48px, 7vw, 96px);
  max-width: 1200px;
}
.manifest__body {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(28px, 3vw, 56px);
}
.manifest__col {
  display: grid;
  gap: 14px;
  align-content: start;
  padding-top: 16px;
  border-top: 1px solid var(--line-strong);
}
.manifest__num {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--mist);
}
.manifest__col h3 {
  font-family: var(--f-display);
  font-variation-settings: "opsz" 36;
  font-weight: 400;
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.2;
  margin: 0;
  color: var(--bone);
  letter-spacing: -0.01em;
}
.manifest__col p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--mist);
}
@media (max-width: 980px) { .manifest__body { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .manifest__body { grid-template-columns: 1fr; } }

/* ---------- PROCESS ---------- */
.process__head { margin-bottom: clamp(40px, 6vw, 80px); }
.process__list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.process__row {
  display: grid;
  grid-template-columns: clamp(60px, 8vw, 120px) 1fr;
  gap: clamp(24px, 4vw, 56px);
  padding: clamp(28px, 4vw, 48px) 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
  transition: background .4s var(--ease);
  position: relative;
}
.process__row:hover {
  background: linear-gradient(90deg, rgba(232,227,214,0.02) 0%, transparent 60%);
}
.process__no {
  font-family: var(--f-display);
  font-variation-settings: "opsz" 144;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(32px, 4vw, 56px);
  color: var(--bone-2);
  line-height: 1;
}
.process__body { display: grid; gap: 8px; }
.process__body h3 {
  font-family: var(--f-display);
  font-variation-settings: "opsz" 72;
  font-weight: 300;
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.15;
  margin: 0;
  color: var(--bone);
  letter-spacing: -0.015em;
}
.process__body p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--mist);
  margin: 0;
  max-width: 740px;
}
.process__when {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: lowercase;
  color: var(--bone-2);
  margin-top: 6px;
}

/* ---------- GARMENTS ---------- */
.garments__head { margin-bottom: clamp(48px, 7vw, 90px); }
.garments__list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.g-item {
  display: grid;
  grid-template-columns: clamp(220px, 28vw, 380px) 1fr;
  gap: clamp(24px, 4vw, 64px);
  padding: clamp(28px, 4vw, 48px) 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
  position: relative;
}
.g-item:hover .g-item__name { letter-spacing: 0; }
.g-item__l {
  display: grid;
  gap: 8px;
  align-items: baseline;
  grid-template-columns: auto auto;
  grid-template-areas: 'no price' 'name name';
}
.g-item__no {
  grid-area: no;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  color: var(--mist);
  text-transform: lowercase;
}
.g-item__price {
  grid-area: price;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  color: var(--mist);
  text-transform: lowercase;
  text-align: right;
}
.g-item__price b {
  color: var(--bone);
  font-weight: 400;
  letter-spacing: 0.05em;
}
.g-item__name {
  grid-area: name;
  font-family: var(--f-display);
  font-variation-settings: "opsz" 72;
  font-weight: 300;
  font-size: clamp(28px, 3.4vw, 50px);
  line-height: 1.08;
  margin: 6px 0 0;
  color: var(--bone);
  letter-spacing: -0.015em;
  transition: letter-spacing .35s var(--ease);
}
.g-item__name em { color: var(--bone-2); font-style: italic; font-weight: 300; }
.g-item__about {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--mist);
  margin: 0;
  max-width: 640px;
}
@media (max-width: 720px) {
  .g-item { grid-template-columns: 1fr; }
}

/* ---------- MASTER ---------- */
.master__head { margin-bottom: clamp(40px, 6vw, 80px); }
.master__layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(28px, 5vw, 80px);
  margin-bottom: clamp(40px, 6vw, 72px);
  padding-top: clamp(20px, 3vw, 32px);
  border-top: 1px solid var(--line-strong);
}
.master__name { display: grid; gap: 14px; align-content: start; }
.master__role {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: lowercase;
  color: var(--mist);
}
.master__h {
  font-family: var(--f-display);
  font-variation-settings: "opsz" 144;
  font-weight: 300;
  font-size: clamp(36px, 4.8vw, 84px);
  line-height: 0.96;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--bone);
}
.master__bio { display: grid; gap: 14px; }
.master__bio p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--bone-2);
  margin: 0;
  max-width: 720px;
}
.master__cv {
  grid-column: 1 / -1;
  list-style: none;
  margin: 14px 0 0;
  padding: 28px 0 0;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, 1fr);
}
.master__cv li {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 14px;
  font-family: var(--f-mono);
  font-size: 11.5px;
  color: var(--mist);
  align-items: baseline;
}
.master__cv li span {
  letter-spacing: 0.12em;
  color: var(--bone-2);
}
.master__cv li b {
  color: var(--bone);
  font-weight: 400;
  letter-spacing: 0.02em;
}
@media (max-width: 720px) {
  .master__layout { grid-template-columns: 1fr; }
  .master__cv { grid-template-columns: 1fr; }
}

.master__strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.master__strip > div {
  padding: clamp(20px, 2.8vw, 36px) 0;
  display: grid;
  gap: 6px;
  border-right: 1px solid var(--line);
}
.master__strip > div:last-child { border-right: 0; }
.master__strip b {
  font-family: var(--f-display);
  font-variation-settings: "opsz" 96;
  font-weight: 300;
  font-size: clamp(32px, 3.4vw, 56px);
  color: var(--bone);
  line-height: 1;
  letter-spacing: -0.02em;
}
.master__strip span {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: lowercase;
  color: var(--mist);
}
@media (max-width: 720px) { .master__strip { grid-template-columns: repeat(2, 1fr); } }

/* ---------- CONTACT ---------- */
.contact__center {
  text-align: center;
  display: grid;
  gap: clamp(20px, 3vw, 40px);
  justify-items: center;
  margin-bottom: clamp(48px, 7vw, 90px);
  padding-bottom: clamp(48px, 7vw, 90px);
  border-bottom: 1px solid var(--line);
}
.contact__h {
  font-family: var(--f-display);
  font-variation-settings: "opsz" 144;
  font-weight: 300;
  font-size: clamp(42px, 7vw, 124px);
  line-height: 1;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--bone);
  text-shadow: 0 4px 40px rgba(12, 12, 14, 0.9);
}
.contact__h em { color: var(--bone-2); font-style: italic; font-weight: 300; }
.contact__sub {
  font-size: clamp(15px, 1.2vw, 18px);
  color: var(--mist);
  max-width: 680px;
  margin: 0;
  line-height: 1.6;
}
.contact__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.contact__details {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 64px);
}
.contact__details > div {
  display: grid;
  gap: 6px;
}
.contact__details dt {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: lowercase;
  color: var(--mist);
}
.contact__details dd {
  font-size: 14px;
  color: var(--bone-2);
  margin: 0;
  line-height: 1.55;
}
@media (max-width: 760px) { .contact__details { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .contact__details { grid-template-columns: 1fr; } }

/* ---------- FOOTER ---------- */
.foot {
  position: relative;
  z-index: 3;
  padding: clamp(40px, 6vw, 80px) var(--gutter) 26px;
  background: var(--ink);
  max-width: var(--max);
  margin: 0 auto;
}
.foot__rule {
  height: 1px;
  background: var(--line);
  margin-bottom: clamp(28px, 4vw, 56px);
}
.foot__row {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: clamp(28px, 5vw, 80px);
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
}
.foot__brand-mark {
  font-family: var(--f-display);
  font-variation-settings: "opsz" 144;
  font-weight: 300;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -0.015em;
  margin: 0 0 10px;
  color: var(--bone);
}
.foot__brand-desc {
  font-size: 13.5px;
  color: var(--mist);
  margin: 0;
  line-height: 1.55;
  max-width: 360px;
}
.foot__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
}
.foot__col {
  display: grid;
  gap: 10px;
  align-content: start;
}
.foot__cap {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: lowercase;
  color: var(--mist);
  margin-bottom: 4px;
}
.foot__col a, .foot__col p {
  font-size: 13.5px;
  color: var(--bone-2);
  margin: 0;
  transition: color .3s var(--ease);
}
.foot__col a:hover { color: var(--bone); }
.foot__bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 22px;
  gap: 16px;
  flex-wrap: wrap;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: lowercase;
  color: var(--mist);
}
.foot__credit { color: var(--bone); }
.foot__credit:hover { text-decoration: underline; }
@media (max-width: 880px) {
  .foot__row { grid-template-columns: 1fr; }
  .foot__cols { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) { .foot__cols { grid-template-columns: 1fr; } }

/* ============================================================
   FORM MODAL — dark monochrome
   ============================================================ */
.formx {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity .5s var(--ease), visibility .5s;
}
body.form-open .formx { visibility: visible; opacity: 1; }
.formx__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 10, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.formx__panel {
  position: relative;
  background: linear-gradient(180deg, #1a1a1f 0%, #14141a 100%);
  border: 1px solid var(--line-strong);
  width: min(620px, 92vw);
  max-height: 92svh;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: clamp(28px, 4vw, 44px);
  padding-top: clamp(20px, 3vw, 32px);
  transform: translateY(30px) scale(0.97);
  transition: transform .55s var(--ease-out);
  box-shadow: 0 40px 100px -10px rgba(0,0,0,0.75), inset 0 1px 0 rgba(232, 227, 214, 0.06);
  scrollbar-width: thin;
  scrollbar-color: var(--bone) transparent;
}
.formx__panel::-webkit-scrollbar { width: 6px; }
.formx__panel::-webkit-scrollbar-track { background: transparent; }
.formx__panel::-webkit-scrollbar-thumb { background: rgba(232, 227, 214, 0.3); }
body.form-open .formx__panel { transform: translateY(0) scale(1); }
.formx__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px; height: 40px;
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--bone);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: border-color .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
  z-index: 2;
}
.formx__close:hover { border-color: var(--bone); transform: rotate(90deg); }
.formx__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding-bottom: 18px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--line);
  margin-right: 50px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: lowercase;
  color: var(--mist);
}
.formx__brand { color: var(--bone); letter-spacing: 0.18em; }
.formx__progress {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 22px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.formx__progress-step {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: lowercase;
  color: var(--stone);
}
.formx__progress-step em {
  font-style: normal;
  font-family: var(--f-mono);
  color: var(--stone);
  border: 1px solid var(--stone);
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  font-size: 10px;
  transition: all .3s var(--ease);
}
.formx__progress-step.is-active { color: var(--bone); }
.formx__progress-step.is-active em {
  color: var(--ink);
  background: var(--bone);
  border-color: var(--bone);
}
.formx__progress-step.is-done em {
  color: var(--bone);
  background: transparent;
  border-color: var(--bone);
}
.formx__progress-sep {
  flex: 1;
  height: 1px;
  background: var(--line-strong);
  min-width: 18px;
}
.formx__step {
  display: none;
  border: 0;
  padding: 0;
  margin: 0;
  flex-direction: column;
  gap: 18px;
}
.formx__step.is-active { display: flex; animation: stepIn .55s var(--ease-out); }
@keyframes stepIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}
.formx__legend { display: grid; gap: 6px; padding: 0; margin: 0 0 6px; }
.formx__legend h2 {
  font-family: var(--f-display);
  font-variation-settings: "opsz" 72;
  font-weight: 300;
  font-size: clamp(26px, 3vw, 36px);
  margin: 0;
  color: var(--bone);
  letter-spacing: -0.015em;
}
.formx__legend p {
  font-size: 14px;
  color: var(--mist);
  margin: 4px 0 0;
}
.formx__field { display: grid; gap: 8px; }
.formx__field > span {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: lowercase;
  color: var(--mist);
}
.formx__field input,
.formx__field textarea {
  width: 100%;
  background: rgba(232, 227, 214, 0.04);
  border: 1px solid var(--line-strong);
  padding: 14px 16px;
  color: var(--bone);
  font-family: inherit;
  font-size: 15px;
  transition: border-color .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
  resize: vertical;
  border-radius: 0;
}
.formx__field input::placeholder,
.formx__field textarea::placeholder { color: var(--stone); }
.formx__field input:focus,
.formx__field textarea:focus {
  outline: none;
  border-color: var(--bone);
  background: rgba(232, 227, 214, 0.08);
  box-shadow: 0 0 0 4px rgba(232, 227, 214, 0.06);
}
.formx__field.is-error input,
.formx__field.is-error textarea { border-color: var(--bone-2); }
.formx__err {
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--bone-2);
  letter-spacing: 0.05em;
  min-height: 12px;
}
.formx__check-grid { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.formx__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border: 1px solid var(--line-strong);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--mist);
  cursor: pointer;
  transition: all .3s var(--ease);
  background: transparent;
  text-transform: lowercase;
}
.formx__pill input { position: absolute; opacity: 0; pointer-events: none; }
.formx__pill i {
  width: 10px; height: 10px;
  border: 1px solid var(--stone);
  transition: all .3s var(--ease);
}
.formx__pill:hover { border-color: var(--bone); color: var(--bone); }
.formx__pill:has(input:checked) {
  border-color: var(--bone);
  background: rgba(232, 227, 214, 0.08);
  color: var(--bone);
}
.formx__pill:has(input:checked) i { background: var(--bone); border-color: var(--bone); }
.formx__actions {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding-top: 8px;
  flex-wrap: wrap;
}
.formx__success {
  text-align: center;
  display: grid;
  gap: 14px;
  justify-items: center;
  padding: 20px 0;
}
.formx__success-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  color: var(--bone);
  border: 1px solid var(--bone);
  border-radius: 50%;
  margin-bottom: 8px;
}
.formx__success h2 {
  font-family: var(--f-display);
  font-variation-settings: "opsz" 72;
  font-weight: 300;
  font-size: clamp(26px, 3vw, 36px);
  margin: 0;
  color: var(--bone);
}
.formx__success p { color: var(--mist); margin: 0; max-width: 380px; }
body.form-open { overflow: hidden; }

/* ---------- mobile ---------- */
@media (max-width: 720px) {
  .sx { padding: clamp(56px, 9vw, 90px) var(--gutter); }
  .hero { min-height: auto; }
  .formx { padding: 0; align-items: stretch; }
  .formx__panel {
    width: 100%;
    max-width: 100%;
    max-height: 100svh;
    height: 100svh;
    border-radius: 0;
    border: 0;
  }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero__word { transform: none; opacity: 1; }
  .stage { display: none; }
}
