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

:root {
  --bg: #0c0b09;
  --ink: #f3ece2;
  --ink-soft: #d4cbbd;
  --muted: #9b9082;
  --line: rgba(243, 236, 226, 0.16);
  --fill: #f3ece2;
  --fill-ink: #0c0b09;
  --font-serif: "Newsreader", "Times New Roman", serif;
  --font-sans: "Outfit", "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --nav-h: 76px;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; width: 100%; height: auto; }
a { color: inherit; }
button, input { font: inherit; color: inherit; }

.skip {
  position: absolute;
  left: 16px;
  top: -48px;
  background: var(--fill);
  color: var(--fill-ink);
  padding: 8px 14px;
  z-index: 80;
}
.skip:focus { top: 12px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 36px;
  background: linear-gradient(180deg, rgba(12, 11, 9, 0.72), transparent);
}

.logo {
  font-family: var(--font-serif);
  font-size: 20px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.06em;
  font-weight: 400;
}

.nav-links a[aria-current="page"] {
  box-shadow: inset 0 -1px 0 var(--ink);
}

.nav-cta {
  border: 1px solid var(--ink);
  padding: 8px 16px;
}

.nav-cta:hover {
  background: var(--fill);
  color: var(--fill-ink);
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 1px;
  background: var(--ink);
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

.hero-full {
  position: relative;
  min-height: 100dvh;
}

.hero-full img {
  width: 100%;
  height: 100dvh;
  object-fit: cover;
}

.hero-full::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 11, 9, 0.18) 0%, rgba(12, 11, 9, 0.12) 40%, rgba(12, 11, 9, 0.78) 100%);
}

.hero-caption {
  position: absolute;
  left: 36px;
  right: 36px;
  bottom: 56px;
  z-index: 2;
  max-width: 720px;
}

h1 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

h1 em,
h2 em {
  font-style: italic;
}

.lede {
  margin-top: 18px;
  max-width: 38ch;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  letter-spacing: 0.04em;
  font-size: 13px;
  font-weight: 500;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease);
}

.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--fill);
  color: var(--fill-ink);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--ink);
}

.btn-ghost:hover {
  background: var(--fill);
  color: var(--fill-ink);
}

.pad {
  padding: 88px 36px;
}

.wrap { max-width: 1440px; margin: 0 auto; }

h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2.2rem, 4.4vw, 4rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  text-wrap: balance;
  max-width: 14ch;
}

.prose {
  max-width: 46ch;
  color: var(--ink-soft);
}

.prose + .prose { margin-top: 1em; }
.prose strong { color: var(--ink); font-weight: 400; }

.lookbook {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
}

.lookbook figure:nth-child(1) { grid-row: 1 / 3; }
.lookbook figure:nth-child(2) img { aspect-ratio: 3 / 4; object-fit: cover; height: 100%; }
.lookbook figure:nth-child(3) { grid-column: 3; }
.lookbook figure:nth-child(4) { grid-column: 2 / 4; }
.lookbook img { height: 100%; object-fit: cover; }

.focus-lower {
  object-position: center 82%;
}

.img-full {
  object-fit: contain !important;
  width: 100%;
  max-height: 380px !important;
  height: 380px !important;
  aspect-ratio: auto !important;
  background: #161412;
}

.pair .img-full {
  max-height: 420px !important;
  height: 420px !important;
  align-self: center;
}
.lookbook figcaption {
  padding: 12px 2px 0;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.lookbook h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0;
}

.bleed {
  position: relative;
  min-height: 88dvh;
}

.bleed img {
  width: 100%;
  height: 88dvh;
  object-fit: cover;
}

.bleed-fit {
  min-height: 0;
}

.bleed-fit img {
  height: auto;
  max-height: 72dvh;
  object-fit: contain;
  background: #161412;
}

.bleed figcaption {
  position: absolute;
  left: 36px;
  bottom: 36px;
  max-width: 420px;
  color: var(--ink);
  text-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.pair {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 12px;
  padding: 12px 36px;
}

.pair.flip { grid-template-columns: 0.85fr 1.15fr; }
.pair img { height: 78dvh; object-fit: cover; }

.pair-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 8px 12px;
  gap: 18px;
}

.pair-manifesto {
  align-items: stretch;
}

.pair-manifesto .pair-copy {
  justify-content: center;
  padding: 48px 40px 48px 56px;
  gap: 28px;
}

.pair-manifesto h2 {
  max-width: 11ch;
  font-size: clamp(2.4rem, 4.6vw, 4.2rem);
}

.pair-manifesto .prose {
  font-size: 1.05rem;
  line-height: 1.7;
}

.paper-list {
  list-style: none;
  max-width: 28ch;
}

.paper-list li {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.paper-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}

.mosaic img { aspect-ratio: 3 / 4; object-fit: cover; height: 100%; }
.mosaic figure:nth-child(2) img { aspect-ratio: 4 / 5; }
.mosaic figcaption { padding-top: 12px; color: var(--muted); font-size: 13px; }
.mosaic h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--ink);
}

.bridge {
  padding: 88px 36px;
  display: flex;
  justify-content: center;
  border-top: 1px solid var(--line);
}

.bridge p {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-style: italic;
  line-height: 1.35;
  max-width: 22ch;
  text-align: center;
  color: var(--ink-soft);
}

.paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.path {
  position: relative;
  min-height: 86dvh;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  align-items: flex-end;
  padding: 36px;
}

.path img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}

.path:hover img { transform: scale(1.04); }

.path::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(12, 11, 9, 0.78));
}

.path-copy { position: relative; z-index: 1; max-width: 36ch; }
.path h2 { color: var(--ink); }

.chapter {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 100dvh;
}

.chapter img {
  height: 100%;
  min-height: 100dvh;
  object-fit: cover;
}

.chapter-copy {
  padding: 120px 56px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
}

.facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 32px;
}

.facts dt {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.facts dd {
  font-family: var(--font-serif);
  font-size: 1.25rem;
}

blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.25;
  font-style: italic;
  max-width: 18ch;
}

blockquote + p {
  margin-top: 16px;
  color: var(--muted);
}

.join {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
}

.join img {
  height: 100%;
  min-height: 80dvh;
  object-fit: cover;
}

.join-form {
  padding: 80px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.form-row {
  display: flex;
  max-width: 440px;
  border-bottom: 1px solid var(--ink);
}

.form-row input[type="email"] {
  flex: 1;
  border: 0;
  background: transparent;
  padding: 14px 0;
  min-width: 0;
}

.form-row input::placeholder { color: var(--muted); }

.form-row button {
  background: transparent;
  border: 0;
  cursor: pointer;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
}

.form-note,
.form-error { font-size: 0.9rem; color: var(--muted); }
.form-error { color: #d7b4a6; }

.site-footer {
  padding: 28px 36px 48px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.9rem;
  border-top: 1px solid var(--line);
}

.site-footer a { text-decoration: none; color: var(--ink-soft); }

.thanks-caption {
  max-width: 640px;
}

.thanks-caption .lede {
  max-width: 36ch;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .path img { transition: none; }
}

@media (max-width: 900px) {
  :root { --nav-h: 56px; }

  html {
    scroll-padding-top: calc(var(--nav-h) + env(safe-area-inset-top));
  }

  .site-header {
    padding: env(safe-area-inset-top) 16px 0;
    height: calc(var(--nav-h) + env(safe-area-inset-top));
    background: #0c0b09;
    border-bottom: 1px solid var(--line);
  }

  .logo { font-size: 16px; letter-spacing: 0.2em; }

  .site-header nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    width: 100%;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
    margin-left: auto;
  }

  .nav-links {
    display: none;
    position: static;
    top: auto;
    left: auto;
    right: auto;
    background: #0c0b09;
    padding: 8px 20px 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-links.is-open { display: flex; }
  .nav-links a { display: block; padding: 14px 0; font-size: 16px; }
  .nav-cta { text-align: center; margin-top: 8px; }

  .hero-full {
    min-height: 100dvh;
    display: block;
  }

  .hero-full img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: center 55%;
  }

  .hero-full::after {
    display: block;
    background: linear-gradient(
      180deg,
      rgba(12, 11, 9, 0.45) 0%,
      rgba(12, 11, 9, 0.12) 28%,
      rgba(12, 11, 9, 0.88) 100%
    );
  }

  .hero-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 20px 20px calc(28px + env(safe-area-inset-bottom));
    max-width: none;
  }

  h1 {
    font-size: 2rem;
    line-height: 1.12;
  }

  h2 {
    font-size: 1.55rem;
    max-width: none;
    line-height: 1.2;
  }

  .lede {
    font-size: 0.95rem;
    max-width: none;
    margin-top: 10px;
  }

  .cta-row {
    flex-direction: column;
    margin-top: 16px;
  }

  .cta-row .btn { width: 100%; }

  .pad {
    padding: 28px 16px 20px;
  }

  .lookbook,
  .pair,
  .pair.flip,
  .mosaic,
  .paths,
  .chapter,
  .join,
  .facts {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .lookbook {
    gap: 12px 10px;
    margin-top: 16px !important;
  }

  .lookbook figure:nth-child(1),
  .lookbook figure:nth-child(2),
  .lookbook figure:nth-child(3),
  .lookbook figure:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
  }

  .lookbook img {
    height: auto;
    aspect-ratio: 3 / 4;
    object-fit: cover;
  }

  .lookbook h3 { font-size: 1rem; }
  .lookbook figcaption { font-size: 11px; padding-top: 8px; }

  .bleed {
    min-height: 0;
  }

  .bleed img {
    height: 38vh;
    min-height: 0;
  }

  .bleed figcaption {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
  }

  .pair,
  .pair.flip {
    display: flex;
    flex-direction: column;
    padding: 0;
    gap: 0;
    background: var(--bg);
  }

  .pair:not(.flip):not(.pair-manifesto) {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 0 16px 16px;
  }

  .pair:not(.flip):not(.pair-manifesto) img {
    height: 28vh;
    min-height: 150px;
    max-height: 220px;
  }

  .pair img,
  .chapter img,
  .join img {
    width: 100%;
    height: 34vh;
    min-height: 220px;
    max-height: 300px;
    object-fit: cover;
  }

  .pair.flip img { order: 0; }

  .pair-copy,
  .pair-manifesto .pair-copy,
  .chapter-copy,
  .join-form {
    padding: 18px 16px 28px;
    gap: 12px;
    background: var(--bg);
  }

  .pair-manifesto h2 {
    font-size: 1.55rem;
    max-width: none;
  }

  .paper-list { max-width: none; }
  .paper-list li { font-size: 1rem; padding: 8px 0; }

  .mosaic {
    gap: 12px 10px;
  }

  .mosaic img {
    aspect-ratio: 3 / 4;
    height: auto;
  }

  .mosaic figcaption { font-size: 12px; }
  .mosaic h3 { font-size: 1rem; }

  .bridge {
    padding: 28px 16px;
  }

  .bridge p {
    font-size: 1.25rem;
    max-width: none;
    text-align: left;
  }

  .paths {
    grid-template-columns: 1fr;
  }

  .path {
    min-height: 0;
    height: 38vh;
    padding: 16px;
  }

  .path h2 { font-size: 1.6rem; }
  .path .lede { margin-top: 6px; margin-bottom: 10px; }

  .chapter,
  .join {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  .facts { gap: 14px 16px; }
  .facts dd { font-size: 1.05rem; }

  .form-row { max-width: none; }
  .form-row input[type="email"],
  .form-row button { min-height: 48px; }

  .img-full,
  .pair .img-full {
    height: 34vh !important;
    max-height: 260px !important;
  }

  .site-footer {
    padding: 20px 16px calc(24px + env(safe-area-inset-bottom));
    flex-direction: column;
  }
}
