:root {
  --paper: #f5f1e9;
  --paper-soft: #ede6da;
  --ink: #1f2522;
  --muted: #6e6a61;
  --earth: #9b6a50;
  --green: #253f32;
  --line: rgba(31, 37, 34, .14);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: fixed;
  z-index: 20;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px clamp(24px, 5vw, 72px);
  color: #fff;
  mix-blend-mode: difference;
}

.brand img {
  display: block;
  width: 116px;
  height: auto;
  filter: brightness(2.2) contrast(.85);
}

nav {
  display: flex;
  gap: clamp(20px, 3vw, 42px);
  font-size: 13px;
  letter-spacing: .02em;
}

nav a { opacity: .82; }
nav a:hover { opacity: 1; }

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #111;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.70) 0%, rgba(0,0,0,.44) 34%, rgba(0,0,0,.08) 72%),
    linear-gradient(0deg, rgba(0,0,0,.24), rgba(0,0,0,.06) 50%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  width: min(620px, 86vw);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 92px 0 72px clamp(28px, 6.2vw, 96px);
  color: #fff;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -.035em;
}

h1 {
  max-width: 11ch;
  font-size: clamp(52px, 5.8vw, 90px);
  line-height: .98;
}

.hero-copy p {
  max-width: 390px;
  margin: 30px 0 0;
  color: rgba(255,255,255,.86);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.66;
}

.editorial-scene {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: var(--paper);
  padding: clamp(94px, 12vw, 170px) clamp(28px, 8vw, 128px);
}

.scene-found {
  display: grid;
  grid-template-columns: minmax(110px, 16vw) 1fr;
  align-items: center;
  gap: clamp(34px, 8vw, 110px);
}

.scene-marker {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: .12em;
}

.scene-marker span {
  display: block;
  width: clamp(44px, 4vw, 70px);
  height: 1px;
  background: var(--line);
}

.scene-copy h2 em {
  color: var(--earth);
  font-style: italic;
}

.scene-photo {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.scene-photo img,
.photo-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.scene-copy h2,
.pair-copy h2,
.closing h2,
.cta h2 {
  font-size: clamp(46px, 5.6vw, 88px);
  line-height: 1;
  max-width: 11ch;
}

.editorial-pair {
  display: grid;
  min-height: 86vh;
  background: var(--paper);
}

.pair-one { grid-template-columns: 58vw 1fr; }
.pair-two {
  grid-template-columns: 43vw 1fr;
  margin-top: 8vh;
}

.photo-frame {
  margin: 0;
  min-height: 70vh;
  overflow: hidden;
  background: var(--paper-soft);
}

.pair-copy {
  display: flex;
  align-items: center;
  min-height: 70vh;
  padding: clamp(54px, 8vw, 122px);
}

.left-copy { padding-left: clamp(28px, 7vw, 112px); }

.closing {
  min-height: 56vh;
  display: flex;
  align-items: flex-end;
  padding: clamp(96px, 12vw, 164px) clamp(28px, 8vw, 128px) clamp(54px, 7vw, 92px);
  background: var(--paper-soft);
}

.closing h2 {
  max-width: 13ch;
  font-size: clamp(48px, 6vw, 92px);
}

.closing h2 em {
  color: var(--earth);
  font-style: italic;
}

.institutional-line {
  display: flex;
  justify-content: flex-end;
  padding: clamp(26px, 4vw, 56px) clamp(28px, 8vw, 128px) clamp(34px, 5vw, 72px);
  background: var(--paper);
}

.institutional-line p {
  max-width: 460px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.75;
}

.project-notes {
  width: min(1120px, calc(100% - clamp(56px, 16vw, 256px)));
  margin: 0 auto;
  padding: clamp(34px, 5vw, 72px) 0 clamp(52px, 7vw, 96px);
  background: var(--paper);
}

.project-note {
  display: grid;
  grid-template-columns: minmax(220px, .7fr) minmax(220px, 1fr);
  gap: clamp(28px, 8vw, 120px);
  align-items: baseline;
  padding: clamp(26px, 3.4vw, 44px) 0;
  border-top: 1px solid var(--line);
}

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

.project-note-title {
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1;
  letter-spacing: -.035em;
}

.project-note-meta {
  color: var(--muted);
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.65;
}

.project-note:hover .project-note-title {
  opacity: .72;
}

.cta {
  min-height: 62vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(96px, 12vw, 170px) clamp(28px, 8vw, 128px);
  background: var(--paper);
}

.cta h2 { margin-bottom: 34px; }

.button {
  display: inline-flex;
  align-items: center;
  width: max-content;
  border: 1px solid rgba(31,37,34,.28);
  padding: 17px 26px;
  color: var(--ink);
  font-size: 14px;
  transition: background .35s ease, color .35s ease, border-color .35s ease;
}

.button:hover {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.site-footer {
  display: grid;
  grid-template-columns: .8fr 1fr 1fr 1.2fr .8fr auto;
  gap: 22px;
  align-items: center;
  padding: 34px clamp(24px, 5vw, 72px);
  background: var(--paper-soft);
  color: var(--muted);
  font-size: 13px;
}

.site-footer strong {
  color: var(--ink);
  font-size: 24px;
  letter-spacing: -.05em;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 900ms ease, transform 900ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .button { transition: none; }
}

@media (max-width: 900px) {
  .site-header { padding: 24px; }
  .brand img { width: 88px; }
  nav a:not(:last-child) { display: none; }

  .hero-copy {
    justify-content: flex-end;
    padding: 92px 26px 74px;
  }

  h1 { font-size: clamp(46px, 15vw, 72px); }

  .editorial-scene,
  .pair-one,
  .pair-two,
  .project-note,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .editorial-scene {
    min-height: 70vh;
    padding: 88px 26px;
  }

  .scene-found {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .scene-marker { gap: 18px; }

  .scene-photo { aspect-ratio: 4 / 3; }

  .pair-two {
    display: flex;
    flex-direction: column-reverse;
    margin-top: 0;
  }

  .photo-frame { min-height: 56vh; }

  .pair-copy {
    min-height: auto;
    padding: 78px 26px;
  }

  .scene-copy h2,
  .pair-copy h2,
  .closing h2,
  .cta h2 {
    font-size: clamp(44px, 12vw, 70px);
  }

  .closing {
    min-height: 52vh;
    padding: 96px 26px 52px;
  }

  .institutional-line {
    justify-content: flex-start;
    padding: 28px 26px 70px;
  }

  .project-notes {
    width: calc(100% - 52px);
    padding: 28px 0 72px;
  }

  .project-note { gap: 12px; }

  .cta { padding: 84px 26px 96px; }

  .site-footer { align-items: start; }
}
