/* =====================================================================
   TheUnsaid.US — site styles
   Built on the design-system tokens (paper #F1EDE2 / ink #14130F,
   Jost + IBM Plex Mono). Flat serigraphy logic: no gradients, no
   shadows, radius 0, hairlines and negative space do the work.
   ===================================================================== */

/* ---- Webfonts (DS tokens/fonts.css) ---- */
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,300;0,400;0,500;1,300;1,400&family=IBM+Plex+Mono:ital,wght@0,300;0,400;1,300;1,400&display=swap");

/* ---- Tokens ---- */
:root {
  --paper: #F1EDE2;
  --paper-dim: #E7E2D4;
  --ink: #14130F;

  /* collection inks */
  --ink-spiral: #4B5468;
  --ink-loop:   #5C614A;
  --ink-crash:  #7C4A39;
  --ink-quiet:  #6E7466;
  --ink-stays:  #8A6A41;

  --font-sans: "Jost", "Century Gothic", "Futura", sans-serif;
  --font-mono: "IBM Plex Mono", "SFMono-Regular", "Menlo", monospace;

  --track-wordmark: 0.42em;
  --track-label: 0.22em;
  --track-phrase: 0.01em;

  --maxw: 1240px;
  --pad-x: clamp(22px, 6vw, 96px);
  --radius-media: 2px;

  color-scheme: light;
}

/* ---- Atmosphere: the two Home variations ---- */
body.theme-paper { --bg: var(--paper); --fg: var(--ink); --bg-inv: var(--ink);   --fg-inv: var(--paper); }
body.theme-ink   { --bg: var(--ink);   --fg: var(--paper); --bg-inv: var(--paper); --fg-inv: var(--ink);   }

/* Derived tones recompute from local --fg / --bg, so they're correct
   in both the base atmosphere and any inverse section. */
.section,
.site-header,
.site-footer {
  --c-soft:  color-mix(in oklab, var(--fg) 66%, var(--bg));
  --c-faint: color-mix(in oklab, var(--fg) 44%, var(--bg));
  --c-line:  color-mix(in oklab, var(--fg) 20%, transparent);
  --c-line-strong: color-mix(in oklab, var(--fg) 34%, transparent);
  --c-panel: color-mix(in oklab, var(--fg) 4%, var(--bg));
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  transition: background .5s ease, color .5s ease;
}
img { display: block; max-width: 100%; height: auto; }
[hidden] { display: none !important; }
a { color: inherit; text-decoration: none; }
a:hover { color: inherit; }
button { font: inherit; color: inherit; }
::selection { background: var(--ink-stays); color: var(--paper); }

/* ---- Layout helpers ---- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad-x); }
.section { background: var(--bg); color: var(--fg); }
.section.inverse { --bg: var(--bg-inv); --fg: var(--fg-inv); background: var(--bg); color: var(--fg); }
.section-pad { padding-block: clamp(72px, 12vh, 160px); }

/* Editorial section index tag */
.section-index {
  width: 100%;
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: .14em;
  color: var(--c-faint);
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 clamp(28px, 5vh, 56px);
  text-transform: lowercase;
}
.section-index::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--c-line);
}

/* Small caps label with wide tracking (brand voice) */
.label {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  color: var(--c-faint);
}
.mono {
  font-family: var(--font-mono);
  font-weight: 300;
  letter-spacing: .02em;
}

/* ---- Type scale ---- */
.display {
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.01em;
  font-size: clamp(42px, 9vw, 120px);
  margin: 0;
}
.h-xl { font-weight: 300; line-height: 1.08; letter-spacing: -0.005em; font-size: clamp(32px, 5.2vw, 64px); margin: 0; }
.h-lg { font-weight: 300; line-height: 1.12; font-size: clamp(28px, 4vw, 46px); margin: 0; }
.h-md { font-weight: 400; line-height: 1.2;  font-size: clamp(22px, 2.6vw, 30px); margin: 0; }
.lead {
  font-weight: 300;
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.6;
  color: var(--c-soft);
  max-width: 34ch;
}
.body-copy { font-weight: 400; font-size: 17px; line-height: 1.62; color: var(--c-soft); max-width: 46ch; }
.body-copy p { margin: 0 0 1.35em; }
.body-copy p:last-child { margin-bottom: 0; }

/* the unsaid layer — hidden whisper */
.unsaid {
  font-family: var(--font-mono);
  font-weight: 300;
  text-transform: lowercase;
  letter-spacing: .04em;
  font-size: 13px;
  line-height: 1.55;
  color: var(--c-faint);
}

/* =====================================================================
   Header
   ===================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in oklab, var(--bg) 88%, transparent);
  backdrop-filter: saturate(1.1) blur(10px);
  border-bottom: 1px solid var(--c-line);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
}
.brand { display: flex; align-items: center; }
.brand img { height: 26px; width: auto; }
.brand .wordmark-text {
  font-weight: 300;
  letter-spacing: var(--track-wordmark);
  text-transform: uppercase;
  font-size: 15px;
}
.nav { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 38px); }
.nav a {
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--c-soft);
  padding: 6px 0;
  position: relative;
  transition: color .25s ease;
}
.nav a:hover { color: var(--fg); }
.nav a.shop {
  color: var(--fg);
  border: 1px solid var(--c-line-strong);
  padding: 9px 18px;
  transition: background .25s ease, color .25s ease;
}
.nav a.shop:hover { background: var(--fg); color: var(--bg); }
.nav-toggle { display: none; }

/* atmosphere switcher (design tool, not part of final chrome) */
.atmos {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 5px;
  border: 1px solid var(--c-line-strong);
  background: color-mix(in oklab, var(--bg) 90%, transparent);
  backdrop-filter: blur(8px);
  font-family: var(--font-mono);
}
.atmos button {
  border: 0;
  background: transparent;
  color: var(--c-faint);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: lowercase;
  padding: 7px 12px;
  cursor: pointer;
  transition: color .2s ease, background .2s ease;
}
.atmos button[aria-pressed="true"] { background: var(--fg); color: var(--bg); }
.atmos .atmos-cap { color: var(--c-faint); font-size: 9px; letter-spacing: .18em; padding-left: 6px; padding-right: 2px; text-transform: uppercase; }

/* =====================================================================
   Buttons
   ===================================================================== */
.btns { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 15px 26px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .25s ease, color .25s ease, border-color .25s ease, opacity .25s ease;
  white-space: nowrap;
}
.btn .arrow { font-family: var(--font-mono); font-size: 12px; transition: transform .25s ease; }
.btn:hover .arrow { transform: translateX(4px); }
.btn--solid { background: var(--fg); color: var(--bg); }
.btn--solid:hover { opacity: .82; }
.btn--ghost { border-color: var(--c-line-strong); color: var(--fg); }
.btn--ghost:hover { background: var(--fg); color: var(--bg); }

/* =====================================================================
   Hero
   ===================================================================== */
.hero { position: relative; overflow: hidden; }
.hero .wrap { padding-top: clamp(56px, 11vh, 130px); padding-bottom: clamp(56px, 11vh, 130px); }
.hero-eyebrow { margin-bottom: clamp(28px, 5vh, 48px); }
.hero h1 { max-width: 15ch; font-size: clamp(40px, 7.4vw, 96px); }
.hero h1 .soft { color: var(--c-soft); }
.hero-sub {
  margin-top: clamp(40px, 6.5vh, 72px);
  padding-top: clamp(28px, 4vh, 40px);
  border-top: 1px solid var(--c-line);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
}
.hero .btns { margin-top: 40px; }
.hero-microcopy {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid var(--c-line);
  max-width: 40ch;
}

/* Faint oversized watermark echo of the wordmark rule */
.hero-gesture {
  margin-top: clamp(40px, 7vh, 80px);
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--c-faint);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: lowercase;
}
.hero-gesture .rule { width: 72px; height: 1px; background: var(--c-line-strong); }

/* =====================================================================
   Two-column editorial statement blocks
   ===================================================================== */
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(32px, 7vw, 110px);
  align-items: start;
}
.split .col-head { position: sticky; top: 100px; }
.split .col-head .h-lg { max-width: 12ch; }
.split .col-head .kicker { margin-bottom: 20px; }
.split .col-body { padding-top: 6px; }

/* =====================================================================
   Featured phrases
   ===================================================================== */
.phrase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--c-line);
  border-left: 1px solid var(--c-line);
}
.phrase-cell {
  border-right: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  padding: clamp(28px, 3.4vw, 46px);
  min-height: clamp(220px, 26vw, 320px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: background .35s ease;
}
.phrase-cell:hover { background: var(--c-panel); }
.phrase-cell .p-index {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--c-faint);
}
.phrase-cell .p-text {
  font-weight: 300;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.16;
  letter-spacing: -0.005em;
  margin-top: 26px;
}
.phrase-cell .p-foot {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-top: 26px;
}
.phrase-cell .p-unsaid {
  font-family: var(--font-mono);
  font-weight: 300;
  text-transform: lowercase;
  font-size: 12px;
  letter-spacing: .03em;
  color: var(--c-faint);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .6s ease, transform .6s ease;
  max-width: 60%;
  text-align: left;
}
.phrase-cell:hover .p-unsaid { opacity: 1; transform: none; }
.phrase-cell .p-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .06em;
  color: var(--tag-ink, var(--c-faint));
  white-space: nowrap;
}

/* =====================================================================
   Collections preview
   ===================================================================== */
.collections-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: clamp(48px, 7vh, 80px);
}
.collections-head .h-lg { max-width: 16ch; }
.coll-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--c-line);
  border: 1px solid var(--c-line);
}
.coll-card {
  background: var(--bg);
  padding: clamp(26px, 2.6vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 300px;
  transition: background .35s ease;
  position: relative;
}
.coll-card:hover { background: var(--c-panel); }
.coll-card .cc-top { display: flex; align-items: center; justify-content: space-between; }
.coll-card .cc-name { font-weight: 400; font-size: clamp(21px, 2vw, 26px); letter-spacing: -0.005em; }
.coll-card .cc-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: lowercase;
  color: var(--cc-ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.coll-card .cc-label::before { content: ""; width: 7px; height: 7px; background: var(--cc-ink); border-radius: 50%; }
.coll-card .cc-desc { font-size: 14.5px; line-height: 1.55; color: var(--c-soft); max-width: 32ch; }
.coll-card .cc-phrases { list-style: none; margin: auto 0 0; padding: 16px 0 0; border-top: 1px solid var(--c-line); display: grid; gap: 7px; }
.coll-card .cc-phrases li { font-size: 13.5px; color: var(--c-soft); line-height: 1.35; }
.coll-card .cc-phrases li::before { content: "— "; color: var(--c-faint); }
.coll-card .cc-go {
  margin-top: 18px;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--fg);
  display: inline-flex;
  gap: 10px;
  align-items: center;
}
.coll-card .cc-go .arrow { font-family: var(--font-mono); transition: transform .25s ease; }
.coll-card:hover .cc-go .arrow { transform: translateX(4px); }

/* =====================================================================
   Product preview — placeholder slots for real mockups
   ===================================================================== */
.product-head { max-width: 26ch; margin-bottom: clamp(36px, 5vh, 56px); }
.product-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(14px, 1.6vw, 22px);
}
.mockup {
  position: relative;
  background: var(--c-panel);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-media);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mockup::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent 0 11px,
    var(--c-line) 11px 12px
  );
  opacity: .5;
}
.mockup .slot-label {
  position: relative;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: lowercase;
  color: var(--c-faint);
  text-align: center;
  padding: 8px 14px;
  background: var(--bg);
  border: 1px solid var(--c-line);
}
.mockup.wide { aspect-ratio: 16 / 10; }
.mockup.tall { aspect-ratio: 3 / 4; }
.m-6 { grid-column: span 6; }
.m-4 { grid-column: span 4; }
.m-8 { grid-column: span 8; }
.m-12 { grid-column: span 12; }
.product-note {
  margin-top: 22px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--c-faint);
  text-transform: lowercase;
}

/* =====================================================================
   Brand statement (big centered-ish editorial)
   ===================================================================== */
.statement .wrap { max-width: 1000px; }
.statement .h-xl { max-width: 18ch; }
.statement .body-copy { margin-top: clamp(30px, 5vh, 46px); max-width: 40ch; }

/* =====================================================================
   Final CTA
   ===================================================================== */
.final .wrap { display: flex; flex-direction: column; align-items: flex-start; gap: clamp(30px, 5vh, 48px); }
.final .display { max-width: 14ch; }
.final .social-line {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  padding-top: 26px;
  border-top: 1px solid var(--c-line);
  width: 100%;
}
.final .social-line a { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--c-soft); transition: color .25s ease; }
.final .social-line a:hover { color: var(--fg); }

/* =====================================================================
   Footer
   ===================================================================== */
.site-footer { border-top: 1px solid var(--c-line); background: var(--bg); color: var(--fg); }
.site-footer .wrap { padding-block: clamp(48px, 8vh, 88px); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.footer-top .f-brand img { height: 30px; margin-bottom: 20px; }
.footer-top .f-brand p { max-width: 32ch; }
.f-col h4 { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--c-faint); font-weight: 400; margin: 0 0 16px; }
.f-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.f-col a { font-size: 14px; color: var(--c-soft); transition: color .25s ease; }
.f-col a:hover { color: var(--fg); }
.footer-bottom {
  margin-top: clamp(40px, 7vh, 72px);
  padding-top: 22px;
  border-top: 1px solid var(--c-line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom .mono { font-size: 12px; color: var(--c-faint); letter-spacing: .04em; }

/* =====================================================================
   /links page
   ===================================================================== */
.links-page { min-height: 100vh; display: flex; flex-direction: column; }
.links-main { flex: 1; display: flex; align-items: center; justify-content: center; padding: clamp(48px, 9vh, 96px) var(--pad-x); }
.links-card { width: 100%; max-width: 440px; text-align: center; }
.links-card .links-logo { height: 54px; width: auto; margin: 0 auto clamp(22px, 4vh, 34px); }
.links-card .links-tag {
  font-family: var(--font-mono);
  font-weight: 300;
  font-size: 13px;
  letter-spacing: .02em;
  color: var(--c-soft);
  max-width: 30ch;
  margin: 0 auto clamp(34px, 6vh, 52px);
  line-height: 1.55;
}
.links-list { display: grid; gap: 12px; }
.link-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 17px 22px;
  border: 1px solid var(--c-line-strong);
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--fg);
  transition: background .25s ease, color .25s ease;
}
.link-btn .lb-meta { flex: none; font-family: var(--font-mono); font-size: 11px; letter-spacing: .04em; text-transform: lowercase; color: var(--c-faint); white-space: nowrap; transition: color .25s ease; }
.link-btn > span:first-child { white-space: nowrap; }
.link-btn .arrow { font-family: var(--font-mono); transition: transform .25s ease; }
.link-btn:hover { background: var(--fg); color: var(--bg); }
.link-btn:hover .lb-meta { color: color-mix(in oklab, var(--bg) 66%, var(--fg)); }
.link-btn:hover .arrow { transform: translateX(4px); }
.link-btn.primary { background: var(--fg); color: var(--bg); }
.link-btn.primary .lb-meta { color: color-mix(in oklab, var(--bg) 66%, var(--fg)); }
.link-btn.primary:hover { opacity: .85; }
.links-foot { padding: 28px var(--pad-x); text-align: center; }
.links-foot .mono { font-size: 11px; letter-spacing: .1em; color: var(--c-faint); text-transform: lowercase; }
.links-foot a { color: var(--c-soft); }

/* =====================================================================
   Image placeholders — drop a real <img> inside any .mockup and the
   striped placeholder + label hide automatically (:has). Until then
   they read as intentional reserved slots for the product photography.
   ===================================================================== */
.mockup > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
}
.mockup:has(img)::before { display: none; }
.mockup:has(img) .slot-label { display: none; }
.mockup .slot-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: lowercase;
  color: var(--slot-ink, var(--c-faint));
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.mockup .slot-tag::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--slot-ink, var(--c-faint)); }

/* =====================================================================
   Hero — visual (copy + product object)
   ===================================================================== */
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.hero-grid .hero h1,
.hero-copy h1 { font-size: clamp(38px, 5.6vw, 78px); }
.hero-figure .mockup { aspect-ratio: 3 / 4; }
.hero-copy .btns { margin-top: 40px; }

/* =====================================================================
   Featured phrases — as product objects
   ===================================================================== */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.2vw, 34px);
}
.feat-item { display: flex; flex-direction: column; }
.feat-item .mockup { aspect-ratio: 4 / 5; }
.feat-item .f-body { padding-top: 20px; display: flex; flex-direction: column; gap: 14px; }
.feat-item .f-phrase {
  font-weight: 300;
  font-size: clamp(19px, 1.7vw, 23px);
  line-height: 1.2;
  letter-spacing: -0.005em;
}
.feat-item .f-foot {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--c-line);
}
.feat-item .f-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .08em;
  color: var(--tag-ink, var(--c-faint));
  white-space: nowrap;
}
.feat-item .f-num { font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; color: var(--c-faint); }

/* Collection card figure */
.coll-card .cc-figure { aspect-ratio: 3 / 2; margin-bottom: 4px; }

/* =====================================================================
   Responsive
   ===================================================================== */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-figure { max-width: 360px; }
  .hero-sub { grid-template-columns: 1fr; gap: 26px; }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split .col-head { position: static; }
  .phrase-grid { grid-template-columns: repeat(2, 1fr); }
  .coll-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-top .f-brand { grid-column: 1 / -1; }
  .m-6, .m-4, .m-8 { grid-column: span 6; }
}

@media (max-width: 620px) {
  .nav { gap: 0; }
  .nav a:not(.shop) { display: none; }
  .feat-grid { grid-template-columns: 1fr 1fr; }
  .phrase-grid { grid-template-columns: 1fr; }
  .coll-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .m-6, .m-4, .m-8, .m-12 { grid-column: span 12; }
  .phrase-cell .p-unsaid { opacity: 1; transform: none; } /* touch: always show whisper */
  .final .social-line { gap: 16px; }
}

/* =====================================================================
   Interior page hero (Collections / About / Contact)
   ===================================================================== */
.page-hero .wrap { padding-top: clamp(52px, 9vh, 108px); padding-bottom: clamp(40px, 7vh, 84px); }
.page-hero .ph-eyebrow { margin-bottom: clamp(22px, 4vh, 40px); }
.page-hero h1 { max-width: 16ch; font-size: clamp(34px, 5.2vw, 70px); line-height: 1.06; letter-spacing: -0.01em; }
.page-hero .ph-lead { margin-top: clamp(26px, 4vh, 40px); max-width: 44ch; }
.page-hero .ph-meta {
  margin-top: clamp(34px, 5vh, 52px);
  padding-top: 22px;
  border-top: 1px solid var(--c-line);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 30px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: lowercase;
  color: var(--c-faint);
}

/* =====================================================================
   Collections — full editorial feature rows
   ===================================================================== */
.coll-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 84px);
  align-items: center;
  padding-block: clamp(48px, 8vh, 96px);
  border-top: 1px solid var(--c-line);
}
.coll-feature:first-of-type { border-top: 0; padding-top: clamp(8px, 2vh, 24px); }
.coll-feature .cf-media .mockup { aspect-ratio: 4 / 5; }
.coll-feature:nth-child(even) .cf-media { order: 2; }
.cf-body { display: flex; flex-direction: column; }
.cf-topline { display: flex; align-items: baseline; gap: 16px; margin-bottom: 18px; }
.cf-num { font-family: var(--font-mono); font-size: 12px; letter-spacing: .14em; color: var(--c-faint); }
.cf-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: lowercase;
  color: var(--cf-ink, var(--c-faint));
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cf-label::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--cf-ink, var(--c-faint)); }
.cf-name { font-weight: 300; line-height: 1.08; letter-spacing: -0.01em; font-size: clamp(32px, 4.4vw, 54px); margin: 0; }
.cf-desc { margin-top: 20px; font-size: 16px; line-height: 1.6; color: var(--c-soft); max-width: 40ch; }
.cf-phrases { list-style: none; margin: clamp(24px, 4vh, 34px) 0 0; padding: 22px 0 0; border-top: 1px solid var(--c-line); display: grid; gap: 11px; }
.cf-phrases li { font-weight: 300; font-size: clamp(17px, 1.5vw, 20px); line-height: 1.3; color: var(--fg); }
.cf-phrases li span { display: block; font-family: var(--font-mono); font-size: 12px; letter-spacing: .02em; color: var(--c-faint); text-transform: lowercase; margin-top: 4px; }
.cf-phrases li::before { content: "— "; color: var(--cf-ink, var(--c-faint)); }
.coll-feature .btns { margin-top: clamp(26px, 4vh, 38px); }

/* Collections closing band */
.coll-note .wrap { max-width: 760px; text-align: center; }
.coll-note .h-lg { max-width: 22ch; margin-inline: auto; }
.coll-note .btns { justify-content: center; margin-top: clamp(30px, 5vh, 44px); }

/* =====================================================================
   About — supporting media + founder note
   ===================================================================== */
.about-media { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(14px, 1.6vw, 22px); margin-bottom: clamp(20px, 4vh, 40px); }
.about-media .mockup.wide { aspect-ratio: 16 / 10; }
.about-media .m-7 { grid-column: span 7; }
.about-media .m-5 { grid-column: span 5; }
.about-media .m-7 .mockup, .about-media .m-5 .mockup { aspect-ratio: auto; height: 100%; }
.creed { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--c-line); border: 1px solid var(--c-line); margin-top: clamp(40px, 6vh, 64px); }
.creed .creed-cell { background: var(--bg); padding: clamp(28px, 3vw, 44px); }
.creed .creed-cell h4 { margin: 0 0 14px; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; font-weight: 400; color: var(--c-faint); }
.creed .creed-cell p { margin: 0; font-weight: 300; font-size: clamp(18px, 1.7vw, 22px); line-height: 1.32; color: var(--fg); }
.creed .creed-cell.no p::before { content: "✕  "; color: var(--ink-crash); font-family: var(--font-mono); font-size: .8em; }
.creed .creed-cell.yes p::before { content: "→  "; color: var(--ink-loop); font-family: var(--font-mono); font-size: .8em; }
.founder-note { margin-top: clamp(48px, 8vh, 90px); padding-top: clamp(32px, 5vh, 48px); border-top: 1px solid var(--c-line); display: grid; grid-template-columns: minmax(0, 0.4fr) minmax(0, 1fr); gap: clamp(24px, 5vw, 72px); }
.founder-note .fn-sig { font-weight: 300; font-size: clamp(20px, 2vw, 26px); line-height: 1.2; }
.founder-note .fn-sig .mono { display: block; font-size: 12px; letter-spacing: .08em; text-transform: lowercase; color: var(--c-faint); margin-top: 10px; }

/* =====================================================================
   Contact
   ===================================================================== */
.contact-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: clamp(40px, 6vw, 96px); align-items: start; }
.contact-email { display: block; margin-bottom: clamp(34px, 5vh, 52px); }
.contact-email .ce-label { margin-bottom: 14px; }
.contact-email a { font-weight: 300; font-size: clamp(26px, 3.4vw, 44px); letter-spacing: -0.01em; line-height: 1.05; color: var(--fg); border-bottom: 1px solid var(--c-line-strong); padding-bottom: 6px; transition: color .25s ease, border-color .25s ease; display: inline-block; }
.contact-email a:hover { color: var(--ink-stays); border-color: var(--ink-stays); }
.contact-channels { display: grid; gap: 1px; background: var(--c-line); border: 1px solid var(--c-line); }
.contact-channels a { background: var(--bg); padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; gap: 20px; transition: background .25s ease; }
.contact-channels a:hover { background: var(--c-panel); }
.contact-channels .ch-name { font-size: 14px; letter-spacing: .04em; }
.contact-channels .ch-what { font-family: var(--font-mono); font-size: 12px; letter-spacing: .02em; text-transform: lowercase; color: var(--c-faint); text-align: right; }
.contact-channels .ch-handle { display: block; font-family: var(--font-mono); font-size: 11px; letter-spacing: .04em; color: var(--c-soft); margin-top: 3px; }

.contact-form { display: grid; gap: 18px; }
.field { display: grid; gap: 8px; }
.field label { font-family: var(--font-mono); font-size: 12px; letter-spacing: .04em; text-transform: lowercase; color: var(--c-faint); }
.field input, .field textarea, .field select {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--fg);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--c-line-strong);
  padding: 10px 2px;
  border-radius: 0;
  transition: border-color .25s ease;
}
.field textarea { resize: vertical; min-height: 96px; line-height: 1.5; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--fg); }
.field input::placeholder, .field textarea::placeholder { color: var(--c-faint); }
.contact-form .form-foot { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: 8px; }
.contact-form .form-note { font-family: var(--font-mono); font-size: 11px; letter-spacing: .02em; text-transform: lowercase; color: var(--c-faint); max-width: 30ch; line-height: 1.5; }
.contact-form .btn { border: 0; }

@media (max-width: 900px) {
  .coll-feature { grid-template-columns: 1fr; gap: 28px; }
  .coll-feature .cf-media { max-width: 420px; }
  .coll-feature:nth-child(even) .cf-media { order: 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .founder-note { grid-template-columns: 1fr; gap: 16px; }
  .about-media .m-7, .about-media .m-5 { grid-column: span 12; }
  .about-media .m-7 .mockup, .about-media .m-5 .mockup { aspect-ratio: 16 / 10; }
}
@media (max-width: 620px) {
  .creed { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; scroll-behavior: auto; }
}
