:root {
  --paper: #eee7d9;
  --ink: #16150f;
  --muted: #6f6a60;
  --rust: #8c3d29;
  --gold: #b98a45;
  --dark: #17160f;
  --line: rgba(22, 21, 15, .2);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}
a { color: inherit; }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 100; background: white; color: black; padding: .75rem 1rem; }
.skip-link:focus { top: 1rem; }

header { position: absolute; inset: 0 0 auto; z-index: 5; display: flex; align-items: center; justify-content: space-between; padding: 1.6rem clamp(1.25rem, 4vw, 4.5rem); border-bottom: 1px solid rgba(255,255,255,.22); color: #f4eee4; }
.signature { font-family: Georgia, "Times New Roman", serif; font-size: 1rem; font-style: italic; text-decoration: none; }
nav { display: flex; align-items: center; gap: clamp(1rem, 3vw, 2.8rem); }
nav a { color: rgba(255,255,255,.75); font-size: .76rem; text-decoration: none; }
nav a:hover, nav a:focus-visible { color: white; }
.nav-contact { border: 1px solid rgba(255,255,255,.38); border-radius: 999px; padding: .5rem 1rem; }

.hero { position: relative; min-height: 100svh; display: grid; grid-template-columns: 1.08fr .92fr; overflow: hidden; background: var(--dark); color: #f5efe5; }
.hero-copy { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: 8rem clamp(1.25rem, 7vw, 8rem) 5rem; background: radial-gradient(circle at 80% 28%, rgba(155,103,54,.18), transparent 38%), linear-gradient(140deg, #191810, #211c13); }
.hero-copy::before { content: ""; position: absolute; inset: 0; z-index: -1; opacity: .16; background-image: repeating-linear-gradient(112deg, transparent 0 64px, rgba(255,255,255,.13) 65px, transparent 66px); }
.eyebrow, .section-label { margin: 0 0 1.8rem; color: #d5a564; font-size: .68rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
h1, h2, p { margin-top: 0; }
h1 { margin-bottom: 2rem; font-family: Georgia, "Times New Roman", serif; font-size: clamp(4.3rem, 8vw, 9rem); font-weight: 400; line-height: .79; letter-spacing: -.055em; }
h1 em { color: #d6a25c; font-weight: 400; }
.introduction { max-width: 550px; margin-bottom: 2.2rem; color: rgba(255,255,255,.72); font-size: clamp(1.05rem, 1.6vw, 1.3rem); }
.hero-links { display: flex; flex-wrap: wrap; align-items: center; gap: 1.25rem 2rem; }
.button { display: inline-flex; align-items: center; gap: .8rem; min-height: 3.25rem; padding: .8rem 1.25rem; border-radius: 999px; background: #d6a25c; color: #1b170f; font-size: .8rem; font-weight: 750; letter-spacing: .04em; text-decoration: none; transition: transform .25s, background .25s; }
.button:hover { transform: translateY(-2px); background: #e7bb7e; }
.text-link { color: rgba(255,255,255,.7); font-size: .8rem; text-decoration: none; }
.portrait { position: relative; min-height: 100%; margin: 0; overflow: hidden; background: #32291d; }
.portrait::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(23,22,15,.35), transparent 35%), linear-gradient(0deg, rgba(23,22,15,.62), transparent 32%); pointer-events: none; }
.portrait img { width: 100%; height: 100%; min-height: 100svh; object-fit: cover; object-position: center 44%; filter: saturate(.72) sepia(.1) contrast(1.04); }
.portrait figcaption { position: absolute; z-index: 2; left: 1.5rem; bottom: 1.5rem; color: rgba(255,255,255,.72); font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; }
.hero-number { position: absolute; z-index: 3; right: 1.5rem; bottom: 1.15rem; margin: 0; color: rgba(255,255,255,.5); font: .7rem ui-monospace, SFMono-Regular, Menlo, monospace; }

.statement { display: grid; grid-template-columns: .55fr 1.25fr; gap: 4vw 7vw; padding: clamp(5rem, 11vw, 10rem) clamp(1.25rem, 8vw, 9rem); }
.statement .section-label { color: var(--rust); }
.statement h2, .work h2, .contact h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(3rem, 6.8vw, 7rem); font-weight: 400; line-height: .95; letter-spacing: -.05em; }
.statement h2 { max-width: 1100px; }
.statement-copy { grid-column: 2; max-width: 720px; display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; color: var(--muted); font-size: 1.02rem; }

.work { padding: clamp(5rem, 10vw, 9rem) clamp(1.25rem, 6vw, 6rem); background: #d8cfbd; }
.work-heading { display: grid; grid-template-columns: .55fr 1.45fr; gap: 3rem; margin-bottom: clamp(4rem, 8vw, 8rem); }
.work .section-label { color: var(--rust); }
.work-list { border-top: 1px solid var(--line); }
.work-list > a { display: grid; grid-template-columns: 70px 1.35fr 1fr auto; gap: 2rem; align-items: center; padding: 2rem 0; border-bottom: 1px solid var(--line); text-decoration: none; transition: padding .25s, color .25s; }
.work-list > a:hover { padding-left: .75rem; color: var(--rust); }
.work-index { color: #777066; font: .67rem ui-monospace, SFMono-Regular, Menlo, monospace; }
.work-name { font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.4rem, 2.3vw, 2.25rem); }
.work-detail { color: #69645c; font-size: .85rem; }
.work-arrow { font-size: 1.2rem; }

.quote { padding: clamp(5rem, 11vw, 10rem) 1.25rem; text-align: center; background: var(--rust); color: #f3eadd; }
.quote p { margin-bottom: 1rem; font-family: Georgia, "Times New Roman", serif; font-size: clamp(3.5rem, 10vw, 10rem); font-style: italic; line-height: .9; letter-spacing: -.06em; }
.quote span { color: rgba(255,255,255,.62); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; }

.contact { padding: clamp(5rem, 10vw, 9rem) clamp(1.25rem, 8vw, 9rem); background: #f0eadf; }
.contact .section-label { color: var(--rust); }
.contact h2 { margin-bottom: 3.5rem; }
.contact > a { display: inline-flex; gap: 1rem; padding-bottom: .5rem; border-bottom: 1px solid var(--ink); font-size: clamp(1rem, 2vw, 1.5rem); text-decoration: none; }

footer { display: grid; grid-template-columns: 1.5fr repeat(3, auto); gap: 2rem; align-items: center; padding: 2rem clamp(1.25rem, 4vw, 4.5rem); background: var(--dark); color: #999486; font-size: .7rem; }
footer p { margin: 0; }
footer a { text-decoration: none; }
footer a:hover { color: white; }

@media (max-width: 780px) {
  nav > a:not(.nav-contact) { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { min-height: 78svh; padding-top: 8rem; }
  .portrait { height: 65svh; }
  .portrait img { min-height: 0; }
  .statement, .work-heading { grid-template-columns: 1fr; }
  .statement-copy { grid-column: 1; grid-template-columns: 1fr; }
  .work-list > a { grid-template-columns: 40px 1fr auto; gap: 1rem; }
  .work-detail { grid-column: 2; }
  .work-arrow { grid-column: 3; grid-row: 1 / 3; }
  footer { grid-template-columns: 1fr; gap: .8rem; }
}

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