:root {
  --ink: #0b0c0c;
  --ink-soft: #111313;
  --panel: #151717;
  --panel-2: #1b1d1c;
  --paper: #f4f1e9;
  --muted: #a8aaa3;
  --line: rgba(244, 241, 233, .13);
  --line-strong: rgba(244, 241, 233, .24);
  --accent: #c8a77a;
  --accent-soft: #ead7bc;
  --max: 1240px;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow: 0 24px 80px rgba(0, 0, 0, .34);
  --radius: 28px;
  color-scheme: dark;
}

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

html {
  min-width: 320px;
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 78% 0%, rgba(200, 167, 122, .07), transparent 32rem),
    radial-gradient(circle at 0% 55%, rgba(111, 128, 112, .06), transparent 34rem),
    var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  content: "";
  background-image: url("/assets/images/noise.png");
  opacity: .22;
  mix-blend-mode: soft-light;
}

body.nav-open { overflow: hidden; }

img,
svg { display: block; max-width: 100%; }

img {
  height: auto;
  background: var(--panel);
}

a {
  color: inherit;
  text-decoration-thickness: .08em;
  text-underline-offset: .18em;
}

button,
input,
textarea { font: inherit; }

button { color: inherit; }

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

:focus-visible {
  outline: 2px solid var(--accent-soft);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-180%);
  transition: transform .2s ease;
}

.skip-link:focus { transform: translateY(0); }

.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 110;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  background: var(--accent);
}

.shell {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 48px), 820px);
  margin-inline: auto;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--accent-soft);
  font-size: .76rem;
  font-weight: 650;
  letter-spacing: .16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.kicker::before {
  width: 26px;
  height: 1px;
  content: "";
  background: currentColor;
}

.display {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.5rem, 8vw, 8.3rem);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .88;
}

.page-title {
  max-width: 11ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.4rem, 7vw, 7.3rem);
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: .92;
}

.section-title {
  max-width: 15ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 5.3rem);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .98;
}

.prose {
  color: #c9cbc4;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
}

.prose p { margin: 0 0 1.25em; }
.prose strong { color: var(--paper); }

.rule {
  height: 1px;
  border: 0;
  margin: 0;
  background: var(--line);
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition:
    background .25s ease,
    border-color .25s ease,
    backdrop-filter .25s ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(11, 12, 12, .78);
  backdrop-filter: blur(18px) saturate(120%);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 13px;
  color: var(--paper);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--accent-soft);
  font-family: var(--serif);
  font-size: .78rem;
  letter-spacing: -.04em;
}

.brand-copy {
  display: grid;
  gap: 1px;
  line-height: 1;
}

.brand-name {
  font-family: var(--serif);
  font-size: 1.08rem;
  letter-spacing: .08em;
}

.brand-sub {
  color: var(--muted);
  font-size: .56rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-link {
  position: relative;
  color: #d1d2cc;
  font-size: .88rem;
  text-decoration: none;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--accent);
  transform: scaleX(0);
  transition: transform .2s ease;
}

.nav-link:hover,
.nav-link[aria-current="page"] { color: var(--paper); }

.nav-link:hover::after,
.nav-link[aria-current="page"]::after { transform: scaleX(1); }

.header-note {
  justify-self: end;
  color: var(--muted);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 18px;
  height: 1px;
  background: currentColor;
  transition: transform .25s ease, opacity .25s ease;
}

.nav-toggle-lines { position: relative; }
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  position: absolute;
  left: 0;
  content: "";
}
.nav-toggle-lines::before { top: -5px; }
.nav-toggle-lines::after { top: 5px; }

.nav-open .nav-toggle-lines { background: transparent; }
.nav-open .nav-toggle-lines::before { top: 0; transform: rotate(45deg); }
.nav-open .nav-toggle-lines::after { top: 0; transform: rotate(-45deg); }

/* Buttons */
.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: transparent;
  color: var(--paper);
  font-size: .86rem;
  font-weight: 620;
  letter-spacing: .03em;
  text-decoration: none;
  transition:
    color .2s ease,
    background .2s ease,
    border-color .2s ease,
    transform .2s ease;
}

.button::after {
  content: "↗";
  color: var(--accent-soft);
  font-size: 1rem;
}

.button:hover {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-2px);
}

.button:hover::after { color: var(--ink); }

.button-primary {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--ink);
}

.button-primary::after { color: var(--ink); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--accent-soft);
  font-size: .84rem;
  font-weight: 650;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link::after {
  content: "→";
  transition: transform .2s ease;
}

.text-link:hover::after { transform: translateX(5px); }

/* Home hero */
.home-hero {
  position: relative;
  min-height: 100svh;
  padding: 132px 0 58px;
}

.home-hero::after {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  content: "";
  background: linear-gradient(transparent, var(--line), transparent);
  opacity: .55;
}

.hero-grid {
  display: grid;
  min-height: calc(100svh - 190px);
  grid-template-columns: minmax(0, .86fr) minmax(440px, 1.14fr);
  align-items: center;
  gap: clamp(40px, 7vw, 104px);
}

.hero-copy { position: relative; z-index: 2; }

.hero-copy .display { max-width: 7.8ch; }

.hero-lead {
  max-width: 540px;
  margin: 34px 0 0;
  color: #c2c4bd;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.hero-visual {
  position: relative;
  min-height: min(72vh, 760px);
}

.hero-frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 120px 18px 18px 18px;
  box-shadow: var(--shadow);
}

.hero-frame::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(8, 9, 9, .08), rgba(8, 9, 9, .5)),
    linear-gradient(90deg, transparent 50%, rgba(8, 9, 9, .14));
}

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

.hero-index {
  position: absolute;
  right: 28px;
  bottom: 26px;
  z-index: 2;
  color: #ddd5c8;
  font-family: var(--serif);
  font-size: .95rem;
  letter-spacing: .12em;
}

.hero-stamp {
  position: absolute;
  bottom: -28px;
  left: -46px;
  z-index: 3;
  display: grid;
  width: 126px;
  height: 126px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: rgba(13, 14, 14, .88);
  color: var(--accent-soft);
  font-family: var(--serif);
  font-size: .72rem;
  letter-spacing: .13em;
  line-height: 1.5;
  text-align: center;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.hero-meta {
  position: absolute;
  right: -16px;
  top: 54px;
  z-index: 3;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(12, 13, 13, .74);
  color: #d7d8d2;
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: max(24px, calc((100vw - var(--max)) / 2));
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: .66rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.scroll-cue::before {
  width: 32px;
  height: 1px;
  content: "";
  background: currentColor;
}

/* Sections */
.section {
  padding: clamp(88px, 11vw, 158px) 0;
}

.section-compact { padding: clamp(72px, 8vw, 112px) 0; }

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 430px);
  align-items: end;
  gap: 60px;
  margin-bottom: 56px;
}

.section-heading .prose { margin: 0; }

.feature-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 18px;
}

.feature-card,
.story-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
  text-decoration: none;
}

.feature-card {
  min-height: 650px;
  border-radius: var(--radius);
}

.feature-card-secondary {
  min-height: 316px;
}

.feature-stack {
  display: grid;
  gap: 18px;
}

.card-image {
  position: absolute;
  inset: 0;
}

.card-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 26%, rgba(7, 8, 8, .88) 100%);
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s cubic-bezier(.2, .7, .2, 1);
}

.feature-card:hover .card-image img,
.story-card:hover .card-image img { transform: scale(1.035); }

.card-content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: clamp(26px, 4vw, 48px);
}

.card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 13px;
  color: #d3c7b6;
  font-size: .69rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.card-meta span + span::before {
  margin-right: 10px;
  content: "•";
  opacity: .55;
}

.card-title {
  max-width: 13ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 4.2rem);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1;
}

.feature-card-secondary .card-title { font-size: clamp(1.7rem, 2.7vw, 2.8rem); }

.split-panel {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.split-media {
  min-height: 620px;
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-copy {
  display: flex;
  min-height: 620px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 7vw, 100px);
}

.split-copy .section-title { max-width: 9ch; }

.split-copy .prose {
  max-width: 520px;
  margin: 30px 0 0;
}

.split-copy .text-link { margin-top: 24px; align-self: flex-start; }

.manifesto {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) 1.28fr;
  gap: clamp(60px, 10vw, 150px);
}

.manifesto-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.manifesto-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 28px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
}

.manifesto-item:last-child { border-bottom: 1px solid var(--line); }

.manifesto-num {
  color: var(--accent);
  font-family: var(--serif);
  font-size: .88rem;
}

.manifesto-item h3 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
}

.manifesto-item p {
  max-width: 610px;
  margin: 0;
  color: var(--muted);
}

.quote-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 10vw, 138px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(120deg, rgba(200, 167, 122, .11), transparent 46%),
    var(--panel);
}

.quote-panel::after {
  position: absolute;
  top: -160px;
  right: -160px;
  width: 420px;
  height: 420px;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "";
}

.quote {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5.2vw, 5.6rem);
  letter-spacing: -.045em;
  line-height: 1.03;
}

.quote em {
  color: var(--accent-soft);
  font-style: italic;
}

.quote-credit {
  margin-top: 28px;
  color: var(--muted);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

/* Inner pages */
.page-hero {
  padding: 170px 0 94px;
  border-bottom: 1px solid var(--line);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  align-items: end;
  gap: 64px;
}

.page-hero .prose { margin: 0; }

.page-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 34px;
}

.pill {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #c7c8c2;
  font-size: .67rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.story-card {
  min-height: 500px;
  grid-column: span 4;
  border-radius: 20px;
}

.story-card-wide { grid-column: span 8; }

.story-card .card-title {
  max-width: 15ch;
  font-size: clamp(1.75rem, 2.8vw, 3rem);
}

.story-card .card-content { padding: 28px; }

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0 0 38px;
}

.filter-button {
  min-height: 38px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: .2s ease;
}

.filter-button:hover,
.filter-button.is-active {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--ink);
}

.gallery-card[hidden] { display: none; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.gallery-card {
  position: relative;
  min-height: 520px;
  grid-column: span 6;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--panel);
}

.gallery-card:nth-child(3n) { grid-column: span 12; min-height: 650px; }

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s ease;
}

.gallery-card:hover img { transform: scale(1.025); }

.gallery-caption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 16px;
  background: rgba(9, 10, 10, .72);
  backdrop-filter: blur(16px);
}

.gallery-caption h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 400;
}

.gallery-caption span {
  color: var(--muted);
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* About */
.about-lead {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(52px, 10vw, 140px);
}

.about-lead .section-title { max-width: 10ch; }

.fact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 72px;
}

.fact {
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--panel);
}

.fact-value {
  display: block;
  color: var(--accent-soft);
  font-family: var(--serif);
  font-size: 3.1rem;
  line-height: 1;
}

.fact-label {
  display: block;
  margin-top: 54px;
  color: var(--muted);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 18px;
}

.contact-card {
  min-height: 520px;
  padding: clamp(34px, 6vw, 72px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.contact-card-accent {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    radial-gradient(circle at 80% 15%, rgba(200, 167, 122, .18), transparent 20rem),
    var(--panel-2);
}

.contact-email {
  overflow-wrap: anywhere;
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 4.4rem);
  letter-spacing: -.04em;
  line-height: 1;
  text-decoration: none;
}

.contact-email:hover { color: var(--accent-soft); }

.contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 24px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

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

.contact-list span:first-child {
  color: var(--muted);
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* Article */
.article-hero {
  padding: 164px 0 38px;
}

.article-hero .page-title { max-width: 14ch; }

.article-deck {
  max-width: 720px;
  margin: 30px 0 0;
  color: #c5c6c0;
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 30px;
  margin-top: 34px;
  color: var(--muted);
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.article-cover {
  width: min(calc(100% - 48px), 1440px);
  height: min(72vw, 760px);
  margin: 34px auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
}

.article-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-body {
  padding: 88px 0 130px;
}

.article-layout {
  display: grid;
  grid-template-columns: 180px minmax(0, 760px);
  justify-content: center;
  gap: 54px;
}

.article-aside {
  position: sticky;
  top: 120px;
  align-self: start;
  color: var(--muted);
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.article-aside p { margin: 0 0 8px; }

.article-content {
  color: #d1d2cc;
  font-family: var(--serif);
  font-size: clamp(1.16rem, 1.7vw, 1.35rem);
  line-height: 1.82;
}

.article-content > p:first-child::first-letter {
  float: left;
  margin: .1em .12em 0 0;
  color: var(--accent-soft);
  font-size: 4.8em;
  line-height: .74;
}

.article-content h2 {
  margin: 2.2em 0 .7em;
  color: var(--paper);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1.05;
}

.article-content blockquote {
  margin: 2.2em 0;
  padding: 1.1em 0 1.1em 1.3em;
  border-left: 1px solid var(--accent);
  color: var(--paper);
  font-size: 1.35em;
  font-style: italic;
  line-height: 1.35;
}

.article-inline-image {
  margin: 2.5em -120px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
}

.article-inline-image img { width: 100%; }

/* Privacy / legal */
.legal {
  padding: 80px 0 130px;
}

.legal h2 {
  margin: 2.2em 0 .5em;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
}

.legal ul { padding-left: 1.2em; color: #c9cbc4; }

/* 404 */
.not-found {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: 120px 0 64px;
  text-align: center;
}

.not-found-code {
  margin: 0;
  color: var(--accent-soft);
  font-family: var(--serif);
  font-size: clamp(8rem, 30vw, 26rem);
  letter-spacing: -.08em;
  line-height: .72;
  opacity: .16;
}

.not-found-copy {
  position: relative;
  z-index: 1;
  max-width: 650px;
  margin-top: -6vw;
}

.not-found-copy h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: 1;
}

.not-found-copy p { margin: 24px auto 30px; color: var(--muted); }

/* Footer */
.site-footer {
  padding: 64px 0 30px;
  border-top: 1px solid var(--line);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 72px;
  padding-bottom: 64px;
}

.footer-title {
  max-width: 11ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 5.6rem);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: 1;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(110px, 1fr));
  gap: 38px;
}

.footer-nav h2 {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: .65rem;
  font-weight: 650;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.footer-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-nav li + li { margin-top: 8px; }

.footer-nav a {
  color: #d4d5cf;
  text-decoration: none;
}

.footer-nav a:hover { color: var(--accent-soft); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .67rem;
  letter-spacing: .09em;
  text-transform: uppercase;
}

/* Motion */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity .7s ease,
    transform .7s cubic-bezier(.2, .7, .2, 1);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js [data-reveal-delay="1"] { transition-delay: .08s; }
.js [data-reveal-delay="2"] { transition-delay: .16s; }
.js [data-reveal-delay="3"] { transition-delay: .24s; }

/* Responsive */
@media (max-width: 1080px) {
  .header-inner { grid-template-columns: 1fr auto; }
  .site-nav {
    position: fixed;
    inset: 0;
    z-index: -1;
    display: grid;
    place-items: center;
    background: rgba(11, 12, 12, .97);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
  }

  .nav-open .site-nav {
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    gap: 18px;
  }

  .nav-link {
    font-family: var(--serif);
    font-size: clamp(2.3rem, 8vw, 4.6rem);
    letter-spacing: -.04em;
  }

  .nav-link::after { bottom: -2px; }

  .nav-toggle {
    position: relative;
    z-index: 2;
    display: grid;
    justify-self: end;
  }

  .header-note { display: none; }

  .hero-grid {
    grid-template-columns: minmax(0, .85fr) minmax(380px, 1.15fr);
    gap: 50px;
  }

  .hero-frame { border-radius: 80px 18px 18px 18px; }
  .hero-stamp { left: -24px; }

  .story-card { grid-column: span 6; }
  .story-card-wide { grid-column: span 12; }

  .article-layout { grid-template-columns: minmax(0, 760px); }
  .article-aside { display: none; }
}

@media (max-width: 820px) {
  .shell,
  .narrow { width: min(calc(100% - 32px), var(--max)); }

  .header-inner { min-height: 72px; }

  .home-hero {
    min-height: auto;
    padding: 124px 0 86px;
  }

  .home-hero::after { display: none; }

  .hero-grid {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .hero-copy .display { max-width: 8ch; }
  .hero-visual { min-height: 66svh; }
  .hero-frame { border-radius: 74px 18px 18px 18px; }
  .hero-meta { right: 10px; }
  .hero-stamp { bottom: -38px; left: 18px; width: 112px; height: 112px; }

  .scroll-cue { display: none; }

  .section-heading,
  .page-hero-grid,
  .manifesto,
  .split-panel,
  .about-lead,
  .contact-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .section-heading { align-items: start; gap: 30px; }
  .section-heading .prose { max-width: 620px; }

  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 560px; }
  .feature-card-secondary { min-height: 390px; }

  .split-media,
  .split-copy { min-height: 520px; }

  .manifesto { gap: 50px; }

  .story-grid,
  .gallery-grid { gap: 14px; }

  .story-card,
  .story-card-wide,
  .gallery-card,
  .gallery-card:nth-child(3n) {
    grid-column: span 12;
  }

  .gallery-card,
  .gallery-card:nth-child(3n) { min-height: 560px; }

  .fact-grid { grid-template-columns: 1fr; margin-top: 50px; }
  .fact { min-height: 160px; }
  .fact-label { margin-top: 34px; }

  .article-cover {
    width: min(calc(100% - 32px), 1440px);
    height: 72svh;
  }

  .article-inline-image { margin-inline: 0; }

  .footer-top { gap: 48px; }
}

@media (max-width: 560px) {
  body { font-size: 15px; }

  .brand-sub { display: none; }

  .display { font-size: clamp(3.6rem, 19vw, 6rem); }
  .page-title { font-size: clamp(3.3rem, 17vw, 5.4rem); }
  .section-title { font-size: clamp(2.8rem, 14vw, 4.5rem); }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button { width: 100%; }

  .hero-visual { min-height: 560px; }
  .hero-frame { border-radius: 56px 14px 14px 14px; }
  .hero-meta { top: 18px; font-size: .58rem; }
  .hero-stamp { width: 98px; height: 98px; font-size: .6rem; }

  .feature-card { min-height: 500px; }
  .feature-card-secondary { min-height: 360px; }

  .card-content { padding: 24px; }
  .card-title { font-size: 2.6rem; }
  .feature-card-secondary .card-title { font-size: 2.2rem; }

  .split-media,
  .split-copy { min-height: 430px; }

  .split-copy { padding: 34px 26px; }

  .manifesto-item {
    grid-template-columns: 40px 1fr;
    gap: 16px;
  }

  .quote-panel { padding: 46px 26px; }

  .page-hero { padding: 142px 0 72px; }

  .story-card { min-height: 470px; }
  .gallery-card,
  .gallery-card:nth-child(3n) { min-height: 500px; }

  .gallery-caption {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .contact-card { min-height: 420px; padding: 34px 26px; }
  .contact-list li { grid-template-columns: 1fr; gap: 6px; }

  .article-hero { padding-top: 142px; }
  .article-cover { height: 62svh; border-radius: 18px; }
  .article-body { padding-top: 62px; }

  .footer-nav { grid-template-columns: 1fr 1fr; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
