:root {
  --paper: #e9e4da;
  --paper-deep: #d7d0c4;
  --ink: #11110f;
  --stone: #a8a094;
  --moss: #676d5e;
  --line: rgba(17, 17, 15, 0.22);
  --serif: Baskerville, "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body::before {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  content: "";
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.75'/%3E%3C/svg%3E");
}
a { color: inherit; }
img { display: block; max-width: 100%; }
::selection { background: var(--ink); color: var(--paper); }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.page-shell { width: min(100%, 1800px); margin: 0 auto; overflow: hidden; }
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  padding: 0 clamp(22px, 4vw, 72px);
  border-bottom: 1px solid var(--line);
}
.wordmark {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.wordmark-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--ink);
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: -0.05em;
}
nav { display: flex; align-items: center; gap: clamp(20px, 3vw, 42px); }
nav a {
  position: relative;
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
nav a::after, .email-link::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 280ms ease;
}
nav a:hover::after, nav a:focus-visible::after,
.email-link:hover::after, .email-link:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  min-height: calc(100svh - 86px);
  padding: clamp(44px, 6vw, 96px) clamp(22px, 4vw, 72px) 34px;
  gap: clamp(40px, 6vw, 110px);
}
.hero-copy { display: flex; min-width: 0; flex-direction: column; align-items: flex-start; }
.folio, .section-index {
  margin: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.folio span { padding: 0 7px; color: var(--moss); }
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 760px;
  margin: auto 0 36px;
  font-family: var(--serif);
  font-size: clamp(72px, 9.2vw, 156px);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.77;
}
h1 em { font-weight: 400; color: var(--moss); }
.lede {
  width: 100%;
  max-width: 580px;
  margin: 0 0 56px;
  font-family: var(--serif);
  font-size: clamp(24px, 2.25vw, 38px);
  line-height: 1.12;
}
.hero-meta {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}
.hero-meta > div { display: grid; grid-template-columns: 36px 1fr; padding: 16px 16px 0 0; }
.hero-meta > div + div { padding-left: 18px; border-left: 1px solid var(--line); }
.hero-meta span { font-size: 10px; font-weight: 700; }
.hero-meta p { margin: 0; font-size: 12px; line-height: 1.45; }

.hero-art { align-self: stretch; margin: 0; }
.art-frame { position: relative; min-height: calc(100% - 24px); overflow: hidden; background: #5c5b58; }
.art-frame::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: inset 0 0 0 10px rgba(17,17,15,0.05);
  content: "";
  pointer-events: none;
}
.art-frame img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  object-position: 55% center;
  filter: grayscale(1) contrast(1.12) brightness(0.97);
  transform: scale(1.015);
  transition: transform 900ms cubic-bezier(.2,.65,.2,1), filter 600ms ease;
}
.hero-art:hover img { filter: grayscale(1) contrast(1.18) brightness(0.99); transform: scale(1.035); }
.archive-plate {
  position: absolute;
  right: 0;
  bottom: 42px;
  display: flex;
  width: min(290px, 55%);
  min-height: 94px;
  padding: 18px 22px;
  flex-direction: column;
  justify-content: space-between;
  background: var(--ink);
  color: var(--paper);
}
.archive-plate span { font-family: var(--serif); font-size: 30px; letter-spacing: -0.06em; }
.archive-plate small { font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; }
figcaption { padding-top: 9px; font-size: 9px; letter-spacing: 0.06em; color: rgba(17,17,15,0.58); }

.meander { height: 24px; margin: 0 clamp(22px, 4vw, 72px); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.meander svg { width: 100%; height: 100%; }
.meander path { fill: none; stroke: var(--ink); stroke-width: 1; vector-effect: non-scaling-stroke; }

.section { padding: clamp(92px, 12vw, 190px) clamp(22px, 4vw, 72px); }
.statement-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr); gap: clamp(50px, 10vw, 190px); margin-top: clamp(46px, 7vw, 100px); }
.statement h2, .method > h2, .contact h2, .section-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(52px, 7vw, 112px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.9;
}
.statement-copy { align-self: end; }
.statement-copy p { max-width: 540px; margin-bottom: 24px; font-size: clamp(17px, 1.4vw, 22px); line-height: 1.45; }
.statement-copy p:last-child { margin-bottom: 0; color: rgba(17,17,15,0.64); }

.section-dark { background: var(--ink); color: var(--paper); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 32px; margin-bottom: 70px; }
.section-heading h2 { font-size: clamp(54px, 7.5vw, 116px); }
.work-ledger { border-top: 1px solid rgba(233,228,218,0.32); }
.work-row {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 28px;
  padding: 36px 0;
  align-items: start;
  border-bottom: 1px solid rgba(233,228,218,0.25);
}
.work-number, .work-link { padding-top: 8px; font-size: 9px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; }
.work-row h3 { margin-bottom: 8px; font-family: var(--serif); font-size: clamp(34px, 4vw, 62px); font-weight: 400; letter-spacing: -0.04em; }
.work-row p { max-width: 680px; margin: 0; color: rgba(233,228,218,0.64); font-size: 15px; }
.work-link { color: #b8c0a5; text-decoration: none; white-space: nowrap; }
.work-link:hover, .work-link:focus-visible { text-decoration: underline; text-underline-offset: 5px; }

.method > h2 { max-width: 980px; margin: 52px 0 100px; }
.method-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.method-grid article { min-height: 270px; padding: 24px 28px 0 0; }
.method-grid article + article { padding-left: 28px; border-left: 1px solid var(--line); }
.method-grid span { font-size: 10px; font-weight: 700; }
.method-grid h3 { margin: 72px 0 12px; font-family: var(--serif); font-size: 30px; font-weight: 400; }
.method-grid p { max-width: 360px; color: rgba(17,17,15,0.62); font-size: 14px; }

.contact { padding-bottom: 68px; background: var(--paper-deep); }
.contact-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 60px; align-items: end; margin-top: 58px; }
.email-link { position: relative; display: flex; justify-content: space-between; padding: 16px 0; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); text-decoration: none; font-size: clamp(16px, 1.5vw, 22px); }
.email-link::after { bottom: -1px; height: 3px; }
footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 26px;
  padding: 24px clamp(22px, 4vw, 72px);
  background: var(--ink);
  color: var(--paper);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.legal-nav { gap: 18px; }
.legal-nav a { font-size: inherit; }

.js [data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity 650ms ease, transform 650ms cubic-bezier(.22,.72,.28,1); }
.js [data-reveal].is-visible { opacity: 1; transform: translateY(0); }
:focus-visible { outline: 2px solid var(--moss); outline-offset: 4px; }

@media (max-width: 900px) {
  .site-header { min-height: 74px; }
  nav a:not(:last-child) { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 42px; }
  .hero-copy { min-height: 590px; }
  h1 { margin-top: auto; font-size: clamp(70px, 19vw, 132px); }
  .hero-art { min-height: 540px; }
  .art-frame img { min-height: 540px; object-position: 56% center; }
  .statement-grid, .contact-grid { grid-template-columns: 1fr; }
  .statement-copy { max-width: 640px; }
  .section-heading { display: block; }
  .section-heading h2 { margin-top: 48px; }
  .method-grid { grid-template-columns: 1fr; }
  .method-grid article { min-height: 210px; padding: 24px 0; }
  .method-grid article + article { padding-left: 0; border-top: 1px solid var(--line); border-left: 0; }
  .method-grid h3 { margin-top: 52px; }
}

@media (max-width: 580px) {
  .wordmark > span:last-child { max-width: 116px; line-height: 1.15; }
  .site-header { padding-inline: 18px; }
  .hero { padding: 28px 18px 24px; gap: 24px; }
  .hero-copy { min-height: 520px; }
  h1 { margin-bottom: 28px; line-height: 0.82; }
  .lede { width: 100%; max-width: 100%; margin-bottom: 36px; font-size: 23px; overflow-wrap: break-word; }
  .hero-meta { grid-template-columns: 1fr; }
  .hero-meta > div + div { padding-left: 0; border-top: 1px solid var(--line); border-left: 0; }
  .hero-art, .art-frame img { min-height: 430px; }
  .art-frame img { object-position: 54% center; }
  .archive-plate { bottom: 26px; min-height: 82px; }
  .meander { margin-inline: 18px; }
  .section { padding: 86px 18px; }
  .statement-grid { margin-top: 42px; gap: 38px; }
  .work-row { grid-template-columns: 38px 1fr; gap: 14px; }
  .work-link { grid-column: 2; justify-self: start; }
  .contact { padding-bottom: 48px; }
  footer { grid-template-columns: 1fr; gap: 14px; padding-inline: 18px; }
  .legal-nav { flex-wrap: wrap; gap: 12px 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .js [data-reveal] { opacity: 1; transform: none; }
}
