/* Akar — coming-soon landing.
   Midnight Ink world, committed. One file, no framework, no build step.
   Every division is a 1px hairline; depth is tonal; the shirt carries saturation. */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,300..800&family=Fraunces:ital,opsz,wght@0,9..144,300..700;1,9..144,300..600&family=IBM+Plex+Mono:wght@300;400;500&display=swap');

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: geometricPrecision; scroll-behavior: auto; }
body { min-height: 100vh; overflow-x: hidden; }
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }

:root {
  --font-display: 'Bricolage Grotesque', ui-sans-serif, system-ui, sans-serif;
  --font-serif: 'Fraunces', 'Iowan Old Style', 'Palatino Linotype', Georgia, serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, 'SFMono-Regular', Menlo, Consolas, monospace;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* Midnight Ink — locked palette */
  --midnight: #0F0B28;
  --midnight-2: #14102E;
  --midnight-3: #1B1638;
  --bone: #F4EFE6;
  --bone-72: rgba(244, 239, 230, 0.72);
  --bone-60: rgba(244, 239, 230, 0.62);
  --bone-40: rgba(244, 239, 230, 0.44);
  --bone-24: rgba(244, 239, 230, 0.24);
  --bone-14: rgba(244, 239, 230, 0.14);
  --bone-08: rgba(244, 239, 230, 0.08);
  --purple: #6A4C9C;
  --purple-glow: rgba(106, 76, 156, 0.18);
  --gold: #B8935A;
  --gold-40: rgba(184, 147, 90, 0.42);
  --rule: rgba(244, 239, 230, 0.14);
  --rule-strong: rgba(244, 239, 230, 0.22);

  --frame-x: clamp(24px, 5vw, 72px);
  --section-y: clamp(120px, 20vh, 220px);
}

/* Themed browser surfaces */
::selection { background: var(--purple); color: var(--bone); }
:focus-visible { outline: 1px solid var(--gold); outline-offset: 3px; }
html { scrollbar-color: var(--bone-24) var(--midnight); }

body {
  background: var(--midnight);
  color: var(--bone);
  font-family: var(--font-serif);
  font-optical-sizing: auto;
  font-weight: 380;
  line-height: 1.55;
  font-variation-settings: 'SOFT' 30;
}

/* Reveal (one authored moment) */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity 900ms var(--ease-out), transform 900ms var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none; opacity: 1; transform: none; }
}

/* ═══════════════════════════════════════════════════════════════
   HERO — editorial split
   Left half is the midnight statement plate; right half is the
   photograph, framed and whole. A single tarnished-gold hairline
   runs the seam between them. Nothing overlaps the subject.
   ═══════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  background: var(--midnight);
  color: var(--bone);
  position: relative;
  isolation: isolate;
}

/* ---- Left: the statement plate ---- */
.hero-copy {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: clamp(32px, 5vh, 56px);
  padding: clamp(32px, 5vh, 52px) clamp(32px, 4vw, 72px) clamp(32px, 5vh, 52px) var(--frame-x);
  border-right: 1px solid var(--gold);
  overflow: hidden;
}
.hero-copy::before {
  /* one purple halo — the single depth device on this plate */
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 92% 62% at 26% 58%, var(--purple-glow), transparent 72%);
  pointer-events: none;
  z-index: 0;
}
.hero-copy > * { position: relative; z-index: 1; }

.hero-topline {
  display: flex;
  align-items: center;
  gap: 4px;
  animation: hero-fade-down 900ms 700ms var(--ease-out) both;
}
.hero-topline .mark-glyph {
  width: 20px; height: 20px;
  color: var(--gold);
  flex: none;
  transform: translateY(-1px);
}
.hero-topline .kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--bone-60);
}
.hero-topline .kicker::before {
  content: ''; display: inline-block;
  width: 20px; height: 1px; background: var(--bone-40);
  vertical-align: middle;
  margin: 0 14px 3px 0;
}

.hero-statement { align-self: center; }
.hero-wordmark {
  font-family: var(--font-display);
  font-weight: 380;
  font-size: clamp(88px, 17vw, 268px);
  line-height: 0.84;
  letter-spacing: -0.058em;
  color: var(--bone);
  margin: 0;
  font-variation-settings: 'wdth' 100, 'opsz' 96;
  animation: hero-wordmark-in 1500ms 150ms var(--ease-out) both;
}
.hero-proposition {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(20px, 2.1vw, 32px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--bone);
  margin: clamp(24px, 3.5vh, 40px) 0 0;
  max-width: 26ch;
  font-variation-settings: 'SOFT' 70;
  animation: hero-fade-up 1100ms 600ms var(--ease-out) both;
}

.hero-baseline {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding-top: clamp(18px, 2.5vh, 26px);
  border-top: 1px solid var(--rule);
  animation: hero-fade-up 900ms 950ms var(--ease-out) both;
}
.hero-scroll {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--bone-60);
  transition: color 250ms var(--ease-out), gap 350ms var(--ease-out);
}
.hero-scroll:hover, .hero-scroll:focus-visible { color: var(--gold); gap: 20px; }
.hero-scroll-arrow {
  width: 13px; height: 17px;
  flex: none;
  color: var(--gold);
  animation: hero-arrow-breathe 3.2s var(--ease-out) infinite;
}
.hero-scroll:hover .hero-scroll-arrow { animation: none; transform: translateY(3px); transition: transform 400ms var(--ease-out); }
.hero-index {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone-40);
  white-space: nowrap;
}

/* ---- Right: the photograph, whole ---- */
.hero-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--midnight-3);
  display: flex;
  flex-direction: column;
}
.hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% 30%;
  filter: saturate(1.04) contrast(1.03);
  animation: hero-media-in 1700ms var(--ease-out) both;
}
.hero-frame figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px clamp(18px, 2vw, 28px);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone-60);
  background: linear-gradient(to top, rgba(15, 11, 40, 0.82), rgba(15, 11, 40, 0));
  animation: hero-fade-up 900ms 1000ms var(--ease-out) both;
}

/* ---- Hero entrance ---- */
@keyframes hero-media-in {
  from { opacity: 0; transform: scale(1.05); }
  to   { opacity: 1; transform: none; }
}
@keyframes hero-wordmark-in {
  from { opacity: 0; transform: translateY(26px); letter-spacing: -0.038em; }
  to   { opacity: 1; transform: none; letter-spacing: -0.058em; }
}
@keyframes hero-fade-up {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}
@keyframes hero-fade-down {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: none; }
}
@keyframes hero-arrow-breathe {
  0%, 100% { transform: translateY(0); opacity: 0.75; }
  50%      { transform: translateY(4px); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-wordmark, .hero-proposition, .hero-topline, .hero-baseline,
  .hero-frame img, .hero-frame figcaption, .hero-scroll-arrow {
    animation: none !important;
  }
}

/* ═══════════════════════════════════════════════════════════════
   SECTION SCAFFOLD (numbered plaque)
   ═══════════════════════════════════════════════════════════════ */
.section {
  padding: var(--section-y) var(--frame-x);
  border-top: 1px solid var(--rule);
  position: relative;
}
.plaque {
  display: grid;
  grid-template-columns: minmax(220px, 22%) 1fr;
  gap: clamp(24px, 5vw, 80px);
  align-items: start;
  margin-bottom: clamp(56px, 10vh, 120px);
}
.plaque .no {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(120px, 18vw, 240px);
  line-height: 0.85;
  color: var(--gold);
  margin: 0;
  font-variation-settings: 'SOFT' 80, 'opsz' 144;
  letter-spacing: -0.03em;
}
.plaque .label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bone-60);
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
  display: inline-block;
  padding-right: 24px;
}
.plaque .manifesto {
  font-family: var(--font-display);
  font-weight: 380;
  font-size: clamp(46px, 6.4vw, 108px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  color: var(--bone);
  margin: 0;
  max-width: 14ch;
  font-variation-settings: 'wdth' 100, 'opsz' 96;
}
.plaque .manifesto em {
  font-style: normal;
  color: rgba(244, 239, 230, 0.86);
}
.plaque .lede {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.18;
  color: var(--bone);
  margin: 0;
  max-width: 22ch;
  font-variation-settings: 'SOFT' 70;
  letter-spacing: -0.01em;
}

/* ═══════════════════════════════════════════════════════════════
   01 — THE SHIRT (museum plate of details)
   ═══════════════════════════════════════════════════════════════ */
.shirt-plate {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(20px, 3vw, 48px);
  margin-top: clamp(56px, 8vh, 96px);
}
.shirt-plate figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.shirt-plate .frame {
  aspect-ratio: 4 / 5;
  outline: 1px solid var(--rule);
  outline-offset: 0;
  background: var(--midnight-3);
  overflow: hidden;
  position: relative;
}
.shirt-plate .frame img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.shirt-plate .frame.crop-cuff img { object-position: 32% 96%; transform: scale(2.6); transform-origin: 32% 96%; }
.shirt-plate .frame.crop-collar img { object-position: 46% 18%; transform: scale(1.35); transform-origin: 46% 18%; }
.shirt-plate .frame.crop-motif img { object-position: 44% 58%; transform: scale(2.4); transform-origin: 44% 58%; }
.shirt-plate figcaption {
  display: grid;
  grid-template-columns: 20px 1fr;
  column-gap: 12px;
  align-items: baseline;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bone-60);
  padding-top: 12px;
  border-top: 1px solid var(--rule);
}
.shirt-plate figcaption .n { color: var(--gold); }

/* ═══════════════════════════════════════════════════════════════
   02 — THE IDEA (proverb, quiet moment)
   ═══════════════════════════════════════════════════════════════ */
.idea {
  padding: calc(var(--section-y) * 1.1) var(--frame-x);
  border-top: 1px solid var(--rule);
  min-height: 88vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: clamp(64px, 10vh, 140px);
  position: relative;
  background: var(--midnight);
}
.idea .kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bone-40);
}
.idea .proverb {
  align-self: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(48px, 9.5vw, 172px);
  line-height: 1.02;
  color: var(--bone);
  margin: 0;
  max-width: 12ch;
  font-variation-settings: 'SOFT' 80, 'opsz' 144;
  letter-spacing: -0.03em;
  position: relative;
}
.idea .proverb::before {
  content: '';
  display: block;
  width: 84px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
  margin-bottom: clamp(28px, 5vh, 48px);
}
.idea .translation {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 20px 0 0;
}
.idea .letter {
  font-family: var(--font-serif);
  font-size: clamp(17px, 1.4vw, 21px);
  color: var(--bone);
  max-width: 46ch;
  line-height: 1.6;
  margin: 0;
  justify-self: end;
  align-self: end;
}
.idea .letter::before {
  content: ''; display: block;
  width: 40px; height: 1px; background: var(--bone-40);
  margin-bottom: 20px;
}

/* ═══════════════════════════════════════════════════════════════
   03 — THE CLOTH (specimen)
   ═══════════════════════════════════════════════════════════════ */
.cloth {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(40px, 6vw, 96px);
  margin-top: clamp(48px, 8vh, 96px);
  align-items: start;
}
.specimen {
  background: var(--bone);
  color: var(--midnight);
  padding: clamp(28px, 4vw, 56px);
  outline: 1px solid var(--rule);
  position: relative;
  min-height: 520px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 20px;
}
.specimen-head {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(15, 11, 40, 0.5);
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(15, 11, 40, 0.12);
}
.specimen-head .genus { font-style: italic; font-family: var(--font-serif); font-size: 12px; letter-spacing: 0.02em; text-transform: none; color: rgba(15,11,40,0.72); }
.specimen-plate {
  align-self: center;
  position: relative;
  padding: 24px 0;
}
.specimen-plate svg { width: 100%; height: auto; display: block; }
.specimen-plate .callout {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(15, 11, 40, 0.6);
  white-space: nowrap;
}
.specimen-plate .callout::before {
  content: ''; display: inline-block; width: 24px; height: 1px;
  background: var(--gold); vertical-align: middle; margin-right: 8px;
}
.specimen-plate .c-cap { top: 6%; left: 66%; }
.specimen-plate .c-dye { top: 44%; left: 68%; }
.specimen-plate .c-cloth { top: 82%; left: 60%; }
.specimen-foot {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(15, 11, 40, 0.55);
  padding-top: 14px;
  border-top: 1px solid rgba(15, 11, 40, 0.12);
}
.specimen-foot strong { color: rgba(15, 11, 40, 0.85); font-weight: 500; letter-spacing: 0.24em; }

.cloth-story {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 8px;
}
.cloth-story h3 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.15;
  color: var(--bone);
  margin: 0 0 8px;
  max-width: 22ch;
  font-variation-settings: 'SOFT' 70;
  letter-spacing: -0.015em;
}
.cloth-story p {
  font-family: var(--font-serif);
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.7;
  color: var(--bone-72);
  max-width: 48ch;
  margin: 0;
}
.cloth-story p + p { padding-top: 4px; }
.cloth-story .attribution {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
}

/* ═══════════════════════════════════════════════════════════════
   04 — HOW AKAR IS WORN (context cards)
   ═══════════════════════════════════════════════════════════════ */
.worn {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 3vw, 48px);
  margin-top: clamp(48px, 8vh, 96px);
}
.worn-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.worn-card .frame {
  aspect-ratio: 3 / 4;
  outline: 1px solid var(--rule);
  outline-offset: 0;
  background: var(--midnight-3);
  overflow: hidden;
  position: relative;
}
.worn-card .frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease-out);
}
.worn-card:hover .frame img { transform: scale(1.02); }
/* Two source images used four times — differentiate by aggressive crop, mirror, and a subtle evening cast. */
.worn-card .frame.office img { object-position: 50% 22%; }
.worn-card .frame.breakfast img { object-position: 50% 40%; transform: scale(1.06); }
.worn-card:hover .frame.breakfast img { transform: scale(1.08); }
.worn-card .frame.dinner {
  filter: saturate(0.72) brightness(0.86) contrast(1.06);
}
.worn-card .frame.dinner img {
  object-position: 62% 66%;
  transform: scaleX(-1) scale(1.9);
  transform-origin: 62% 66%;
}
.worn-card:hover .frame.dinner img { transform: scaleX(-1) scale(1.94); }
.worn-card .frame.occasion {
  filter: saturate(0.9) brightness(0.94);
}
.worn-card .frame.occasion img {
  object-position: 22% 82%;
  transform: scaleX(-1) scale(2.2);
  transform-origin: 22% 82%;
}
.worn-card:hover .frame.occasion img { transform: scaleX(-1) scale(2.24); }

/* Two of four contexts are honestly teased — no photograph yet. */
.worn-card .frame.tease {
  background: var(--midnight-2);
  display: grid;
  place-items: center;
  padding: clamp(28px, 3vw, 44px);
  position: relative;
}
.worn-card .frame.tease::before {
  content: '';
  position: absolute; inset: 12px;
  background-image:
    radial-gradient(circle at 6px 6px, var(--bone-08) 0.8px, transparent 1.4px);
  background-size: 14px 14px;
  opacity: 0.5;
  pointer-events: none;
}
.worn-card .frame.tease .tease-inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
  color: var(--gold);
  width: 100%;
}
.worn-card .frame.tease svg { width: 62%; max-width: 168px; height: auto; }
.worn-card .frame.tease .tease-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bone-60);
  padding-top: 14px;
  border-top: 1px solid var(--rule);
  width: 82%;
  text-align: center;
}
.worn-card .index {
  display: flex; align-items: baseline; gap: 12px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bone-40);
}
.worn-card .index::before {
  content: ''; width: 22px; height: 1px; background: var(--gold-40); display: block;
}
.worn-card .word {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 340;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.05;
  color: var(--bone);
  margin: -8px 0 0;
  font-variation-settings: 'SOFT' 70;
  letter-spacing: -0.02em;
}
.worn-card .caption {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone-60);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════
   05 — COLLECTION (teased)
   ═══════════════════════════════════════════════════════════════ */
.collection {
  padding: var(--section-y) var(--frame-x);
  border-top: 1px solid var(--rule);
}
.collection .tease {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(40px, 6vw, 96px);
  line-height: 1.05;
  color: var(--bone);
  margin: 0;
  max-width: 16ch;
  font-variation-settings: 'SOFT' 80, 'opsz' 144;
  letter-spacing: -0.02em;
}
.silhouettes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 56px);
  margin-top: clamp(64px, 10vh, 120px);
}
.silhouette {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: clamp(28px, 4vw, 56px) 24px;
  outline: 1px solid var(--rule);
  outline-offset: 0;
  background: var(--midnight);
  position: relative;
  cursor: pointer;
  transition:
    outline-color 400ms var(--ease-out),
    transform 500ms var(--ease-out),
    background 400ms var(--ease-out);
}
.silhouette::before {
  /* subtle purple halo — only visible on hover */
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 90% 70% at 50% 100%, var(--purple-glow), transparent 68%);
  opacity: 0;
  transition: opacity 500ms var(--ease-out);
  pointer-events: none;
}
.silhouette:hover, .silhouette:focus-within {
  outline-color: var(--gold-40);
  transform: translateY(-6px);
  background: var(--midnight-2);
}
.silhouette:hover::before, .silhouette:focus-within::before { opacity: 1; }
.silhouette svg {
  width: 100%; max-width: 220px; height: auto;
  color: var(--gold);
  transition: color 400ms var(--ease-out), transform 600ms var(--ease-out);
  position: relative; z-index: 1;
}
.silhouette:hover svg, .silhouette:focus-within svg {
  color: var(--bone);
  transform: translateY(-2px);
}
.silhouette .no {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bone-60);
  padding-top: 16px;
  border-top: 1px solid var(--rule);
  width: 100%;
  text-align: center;
  position: relative; z-index: 1;
  transition: color 300ms var(--ease-out), border-color 400ms var(--ease-out);
}
.silhouette:hover .no, .silhouette:focus-within .no {
  color: var(--bone);
  border-top-color: var(--gold-40);
}
.silhouette .no strong { color: var(--gold); font-weight: 400; transition: color 300ms var(--ease-out); }
.silhouette:hover .no strong, .silhouette:focus-within .no strong { color: var(--bone); }
.silhouette .name {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 340;
  font-size: 20px;
  color: var(--bone-72);
  margin: -6px 0 0;
  font-variation-settings: 'SOFT' 60;
  position: relative; z-index: 1;
  transition: color 300ms var(--ease-out);
}
.silhouette:hover .name, .silhouette:focus-within .name { color: var(--bone); }
.collection-spec {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bone-60);
  margin-top: clamp(48px, 8vh, 96px);
  padding-top: 20px;
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
.collection-spec strong { color: var(--gold); font-weight: 400; }

/* ═══════════════════════════════════════════════════════════════
   06 — THE MAKERS (teased)
   ═══════════════════════════════════════════════════════════════ */
.makers {
  padding: var(--section-y) var(--frame-x);
  border-top: 1px solid var(--rule);
}
.makers-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: clamp(40px, 8vw, 120px);
  align-items: start;
  margin-top: clamp(48px, 8vh, 96px);
}
.makers-head {
  font-family: var(--font-display);
  font-weight: 380;
  font-size: clamp(44px, 6vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.038em;
  color: var(--bone);
  margin: 0;
  max-width: 22ch;
  font-variation-settings: 'wdth' 100, 'opsz' 96;
}
.makers-copy {
  font-family: var(--font-serif);
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.7;
  color: var(--bone-72);
  max-width: 48ch;
  margin: 0;
}
.makers-foot {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 18px;
  margin-top: 32px;
  border-top: 1px solid var(--rule);
}

/* ═══════════════════════════════════════════════════════════════
   INTEREST CTA (form)
   ═══════════════════════════════════════════════════════════════ */
.interest {
  padding: calc(var(--section-y) * 0.85) var(--frame-x);
  border-top: 1px solid var(--rule);
  background: var(--midnight-2);
}
.interest-inner {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}
.interest h2 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(32px, 4.4vw, 60px);
  line-height: 1.1;
  color: var(--bone);
  margin: 0 0 20px;
  font-variation-settings: 'SOFT' 70;
  letter-spacing: -0.015em;
}
.interest p {
  font-family: var(--font-serif);
  font-size: clamp(16px, 1.3vw, 19px);
  color: var(--bone-72);
  line-height: 1.6;
  margin: 0 auto clamp(40px, 6vh, 64px);
  max-width: 42ch;
}
.interest form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: end;
  max-width: 520px;
  margin: 0 auto;
  text-align: left;
}
.interest label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bone-40);
  margin-bottom: 12px;
}
.interest input[type="email"] {
  width: 100%;
  background: transparent;
  color: var(--bone);
  border: 0;
  border-bottom: 1px solid var(--gold-40);
  padding: 10px 0 12px;
  font-family: var(--font-serif);
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.3;
  outline: none;
  transition: border-color 250ms var(--ease-out);
}
.interest input[type="email"]:focus { border-bottom-color: var(--gold); }
.interest input[type="email"]::placeholder { color: var(--bone-24); font-style: italic; }
.interest .field { position: relative; }
.interest button {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--midnight);
  background: var(--bone);
  padding: 14px 22px;
  transition: background 250ms var(--ease-out), color 250ms var(--ease-out);
  align-self: end;
  white-space: nowrap;
}
.interest button:hover { background: var(--gold); color: var(--midnight); }
.interest button:focus-visible { outline-offset: 3px; }
.interest .fine {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bone-40);
  margin-top: 32px;
}

/* ═══════════════════════════════════════════════════════════════
   07 — CLOSING (typographic moment)
   ═══════════════════════════════════════════════════════════════ */
.closing {
  min-height: 100vh;
  padding: var(--section-y) var(--frame-x);
  border-top: 1px solid var(--rule);
  display: grid;
  place-items: center;
  text-align: left;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
/* Two orbital glows drifting on independent slow paths.
   Pure radial gradients (no filter:blur) — the falloff carries the glow. */
.closing::before,
.closing::after {
  content: '';
  position: absolute;
  width: 120vmax;
  height: 120vmax;
  pointer-events: none;
  z-index: -1;
  will-change: transform;
}
.closing::before {
  background: radial-gradient(circle at 50% 50%, var(--purple-glow) 0%, rgba(106, 76, 156, 0.10) 24%, transparent 55%);
  top: -30vmax;
  left: -30vmax;
  animation: closing-drift-a 24s linear infinite;
}
.closing::after {
  background: radial-gradient(circle at 50% 50%, rgba(184, 147, 90, 0.14) 0%, rgba(184, 147, 90, 0.06) 22%, transparent 52%);
  bottom: -40vmax;
  right: -30vmax;
  animation: closing-drift-b 32s linear infinite;
  animation-delay: -7s;
}
@keyframes closing-drift-a {
  0%   { transform: translate3d(0, 0, 0); }
  25%  { transform: translate3d(20vw, -8vh, 0); }
  50%  { transform: translate3d(60vw, 20vh, 0); }
  75%  { transform: translate3d(30vw, 40vh, 0); }
  100% { transform: translate3d(0, 0, 0); }
}
@keyframes closing-drift-b {
  0%   { transform: translate3d(0, 0, 0); }
  25%  { transform: translate3d(-20vw, -12vh, 0); }
  50%  { transform: translate3d(-40vw, 8vh, 0); }
  75%  { transform: translate3d(-10vw, -20vh, 0); }
  100% { transform: translate3d(0, 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .closing::before, .closing::after { animation: none; }
}
.closing-lines {
  position: relative; z-index: 1;
  max-width: 100%;
}
.closing p {
  font-family: var(--font-display);
  font-weight: 380;
  font-size: clamp(52px, 7.2vw, 140px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: var(--bone);
  margin: 0;
  font-variation-settings: 'wdth' 100, 'opsz' 96;
  max-width: 22ch;
}
.closing p + p { color: var(--bone); margin-top: clamp(8px, 2vh, 24px); }
.closing p em { font-style: normal; color: var(--purple); }

/* ═══════════════════════════════════════════════════════════════
   FOOT
   ═══════════════════════════════════════════════════════════════ */
.foot {
  padding: 32px var(--frame-x) 40px;
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bone-40);
}
.foot .mark-glyph { width: 18px; height: 18px; color: var(--gold); }
.foot .legal { justify-self: end; text-transform: none; letter-spacing: 0.14em; font-size: 10px; }

/* ═══════════════════════════════════════════════════════════════
   THANKS PAGE
   ═══════════════════════════════════════════════════════════════ */
body.thanks {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px var(--frame-x);
  background: var(--midnight);
  position: relative;
  overflow: hidden;
}
body.thanks::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 55% at 50% 45%, var(--purple-glow), transparent 70%);
  pointer-events: none;
}
.thanks-inner {
  position: relative; z-index: 1;
  max-width: 720px;
  text-align: center;
  display: grid;
  gap: 48px;
  justify-items: center;
}
.thanks-inner .mark-glyph { width: 28px; height: 28px; color: var(--gold); }
.thanks-inner p {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(28px, 4vw, 54px);
  line-height: 1.2;
  color: var(--bone);
  margin: 0;
  max-width: 22ch;
  font-variation-settings: 'SOFT' 70;
  letter-spacing: -0.015em;
}
.thanks-inner a {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bone-60);
  padding: 12px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  min-width: 220px;
  transition: color 250ms var(--ease-out), border-color 250ms var(--ease-out);
}
.thanks-inner a:hover { color: var(--gold); border-color: var(--gold-40); }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  /* Give the statement plate slightly more room than the photograph. */
  .hero { grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); }
  .hero-wordmark { font-size: clamp(76px, 15vw, 150px); }
  .hero-proposition { font-size: clamp(18px, 2.6vw, 24px); }
  .hero-frame img { object-position: 52% 28%; }

  .plaque { grid-template-columns: 1fr; gap: 24px; }
  .plaque .no { font-size: clamp(96px, 22vw, 200px); }
  .shirt-plate { grid-template-columns: 1fr 1fr; }
  .worn { grid-template-columns: 1fr 1fr; }
  .cloth { grid-template-columns: 1fr; gap: 48px; }
  .silhouettes { grid-template-columns: 1fr; gap: 24px; }
  .makers-body { grid-template-columns: 1fr; gap: 32px; }
  .idea { min-height: 72vh; }
}

@media (max-width: 720px) {
  :root {
    --frame-x: 20px;
    --section-y: clamp(80px, 14vh, 140px);
  }
  /* Stack: statement plate on top, photograph below it. */
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    min-height: 100vh;
  }
  .hero-copy {
    border-right: 0;
    border-bottom: 1px solid var(--gold);
    padding: 26px var(--frame-x) 24px;
    gap: clamp(24px, 4vh, 36px);
    min-height: 54vh;
  }
  .hero-topline .kicker { font-size: 9.5px; letter-spacing: 0.2em; }
  .hero-topline .kicker::before { width: 12px; margin: 0 10px 3px 0; }
  .hero-wordmark { font-size: clamp(92px, 31vw, 168px); line-height: 0.86; letter-spacing: -0.052em; }
  .hero-proposition { font-size: clamp(19px, 5vw, 28px); margin-top: 20px; max-width: 22ch; }
  .hero-baseline { gap: 16px; }
  .hero-scroll { font-size: 9.5px; letter-spacing: 0.22em; }
  /* The footer already carries the year; drop it here so the row can't overflow. */
  .hero-index { display: none; }
  .hero-frame {
    min-height: 38vh;
    max-height: 44vh;
  }
  .hero-frame img { object-position: 52% 26%; }
  .hero-frame figcaption {
    font-size: 9px;
    letter-spacing: 0.18em;
    padding: 12px 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
  }

  .plaque .no { font-size: clamp(80px, 30vw, 160px); }
  .plaque .manifesto { font-size: clamp(36px, 8.6vw, 64px); }
  .shirt-plate { grid-template-columns: 1fr; gap: 24px; }
  .worn { grid-template-columns: 1fr; gap: 32px; }
  .worn-card .frame { aspect-ratio: 4 / 5; }

  .idea { grid-template-rows: auto auto auto; gap: 48px; padding: 96px var(--frame-x); }
  .idea .proverb { font-size: clamp(44px, 13vw, 96px); max-width: 100%; }
  .idea .letter { justify-self: start; }

  .cloth { gap: 32px; }
  .specimen { min-height: 420px; padding: 24px; }
  .specimen-plate .callout { font-size: 8.5px; }

  .closing p { font-size: clamp(44px, 12vw, 92px); }

  .foot { grid-template-columns: 1fr; gap: 10px; text-align: left; }
  .foot .legal { justify-self: start; }

  .interest form { grid-template-columns: 1fr; gap: 16px; }
  .interest button { width: 100%; padding: 16px 22px; }

  .thanks-inner { gap: 32px; }
}
