:root {
  --paper: #f3f0ea;
  --ink: #101010;
  --line: rgba(16, 16, 16, .24);
  --pad: clamp(22px, 4vw, 68px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
}
a { color: inherit; }
img { display: block; width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 0 var(--pad);
  border-bottom: 1px solid var(--line);
  background: rgba(243, 240, 234, .92);
  backdrop-filter: blur(12px);
}
.logo { font-size: 1.25rem; font-weight: 800; letter-spacing: -.04em; text-decoration: none; }
nav { display: flex; gap: clamp(18px, 3vw, 48px); }
nav a, .menu { font-size: .72rem; letter-spacing: .14em; text-decoration: none; text-transform: uppercase; }
.menu { display: none; border: 0; background: transparent; color: inherit; }

.hero {
  min-height: calc(100vh - 76px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(54px, 8vh, 100px) var(--pad) var(--pad);
}
.eyebrow { margin: 0; font-size: .7rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.hero h1 {
  margin: 7vh 0;
  max-width: 1200px;
  font-size: clamp(4.1rem, 12.5vw, 12rem);
  line-height: .77;
  letter-spacing: -.085em;
  text-transform: uppercase;
}
.hero h1 em { font-family: Georgia, serif; font-weight: 400; text-transform: none; }
.hero-bottom { display: flex; align-items: end; justify-content: space-between; gap: 40px; }
.hero-bottom p { max-width: 410px; margin: 0; font-size: clamp(1.05rem, 1.7vw, 1.45rem); line-height: 1.25; }
.arrow-link { font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; text-underline-offset: 6px; }
.arrow-link span { font-size: 1.4rem; }

.statement {
  display: flex;
  justify-content: space-between;
  padding: 22px var(--pad);
  background: var(--ink);
  color: var(--paper);
  font-size: clamp(.8rem, 1.2vw, 1rem);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.collection, .about, .journal, .contact { padding: clamp(90px, 12vw, 180px) var(--pad); }
.section-heading { display: grid; grid-template-columns: 1fr 2fr; margin-bottom: clamp(50px, 8vw, 110px); }
.section-heading h2, .about h2, .contact h2 {
  margin: 0;
  font-size: clamp(3rem, 7vw, 7.5rem);
  line-height: .9;
  letter-spacing: -.065em;
}
.gallery { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(24px, 4vw, 72px); align-items: start; }
.piece { margin: 0; }
.piece-wide { grid-row: span 2; }
.piece-lower { margin-top: 14vw; }
.piece img { aspect-ratio: 4/5; object-fit: cover; background: #e8e2d8; }
.piece-wide img { aspect-ratio: 4/5.5; }
figcaption { display: flex; justify-content: space-between; padding-top: 12px; font-size: .72rem; letter-spacing: .11em; text-transform: uppercase; }
.collection-note { width: min(520px, 80%); margin: 100px 0 0 auto; font-family: Georgia, serif; font-size: clamp(1.6rem, 3vw, 3rem); line-height: 1.15; }

.about { background: var(--ink); color: var(--paper); }
.about-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 8vw; margin-top: 70px; }
.about-grid div { align-self: end; font-size: 1.05rem; line-height: 1.55; }
.about-grid div p + p { margin-top: 2em; }

.journal article { display: grid; grid-template-columns: 1fr 2fr 1fr; gap: 30px; padding: 36px 0; border-top: 1px solid var(--line); }
.journal article:last-child { border-bottom: 1px solid var(--line); }
.article-date { font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; }
.journal h3 { margin: 0; font-size: clamp(1.6rem, 3vw, 3.6rem); line-height: 1; letter-spacing: -.04em; }
.journal article > p:last-child { margin: 0; line-height: 1.45; }

.contact { min-height: 80vh; display: flex; flex-direction: column; justify-content: space-between; background: #c9ff46; }
.contact h2 { margin: 12vh 0; }
.contact > a { font-size: clamp(1.5rem, 4vw, 4.5rem); text-underline-offset: 9px; }
.contact > a span { font-size: .65em; }
footer { display: flex; justify-content: space-between; padding: 28px var(--pad); background: var(--ink); color: var(--paper); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; }

@media (max-width: 720px) {
  .menu { display: block; }
  nav { position: absolute; top: 76px; left: 0; right: 0; display: none; flex-direction: column; padding: 28px var(--pad); background: var(--paper); border-bottom: 1px solid var(--line); }
  nav.open { display: flex; }
  .hero { min-height: 80vh; }
  .hero h1 { font-size: clamp(3.8rem, 20vw, 6.5rem); }
  .hero-bottom { align-items: start; flex-direction: column; }
  .statement p:nth-of-type(2) { display: none; }
  .section-heading, .about-grid { grid-template-columns: 1fr; gap: 35px; }
  .gallery { grid-template-columns: 1fr; }
  .piece-wide { grid-row: auto; }
  .piece-lower { margin-top: 20px; }
  .collection-note { width: 100%; margin-top: 70px; }
  .journal article { grid-template-columns: 1fr; gap: 12px; }
  .contact { min-height: 65vh; }
  footer { gap: 20px; flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
