:root {
  --ink: #171717;
  --muted: #686868;
  --paper: #f6f4ef;
  --white: #ffffff;
  --line: #d8d4cb;
  --accent: #b6312c;
  --max: 1180px;
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid rgba(216,212,203,.75);
  backdrop-filter: blur(12px);
}
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.wordmark { font-family: var(--serif); font-size: 1.35rem; font-weight: 700; letter-spacing: -.015em; }
.primary-nav { display: flex; gap: 28px; font-size: .88rem; font-weight: 650; letter-spacing: .02em; }
.primary-nav a { padding: 8px 0; border-bottom: 1px solid transparent; }
.primary-nav a:hover { border-color: var(--ink); }
.menu-toggle { display: none; border: 0; background: transparent; font: inherit; font-weight: 650; cursor: pointer; }

.hero {
  min-height: 690px;
  padding: 95px 0 88px;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, .65fr);
  gap: clamp(54px, 8vw, 120px);
  align-items: center;
}
.eyebrow {
  margin: 0 0 20px;
  font-size: .76rem;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-weight: 760;
  color: var(--accent);
}
.hero h1 {
  margin: 0;
  max-width: 790px;
  font-family: var(--serif);
  font-size: clamp(3.45rem, 6.6vw, 6.7rem);
  line-height: .96;
  letter-spacing: -.052em;
  font-weight: 500;
}
.hero h1 em { font-weight: 400; color: var(--accent); }
.hero-intro { max-width: 690px; margin: 36px 0 0; font-size: clamp(1.08rem, 1.6vw, 1.28rem); line-height: 1.65; color: #343434; }
.hero-links { display: flex; flex-wrap: wrap; gap: 13px 26px; margin-top: 35px; font-weight: 680; font-size: .92rem; }
.hero-links a { border-bottom: 1px solid var(--line); padding-bottom: 3px; }
.hero-links a:hover { border-color: var(--accent); color: var(--accent); }
.hero-portrait { margin: 0; position: relative; }
.hero-portrait::before { content: ''; position: absolute; inset: 22px -22px -22px 22px; background: var(--paper); z-index: -1; }
.hero-portrait img { aspect-ratio: 4 / 5.25; object-fit: cover; object-position: center top; filter: grayscale(8%); }

.focus-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.focus-list { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 20px 28px; flex-wrap: wrap; font-family: var(--serif); font-style: italic; font-size: 1.03rem; }
.focus-list span:not(:last-child)::after { content: '·'; margin-left: clamp(22px, 4vw, 60px); color: var(--accent); }

.section { padding: 125px 0; }
.section-heading { margin-bottom: 78px; }
.split-heading { display: grid; grid-template-columns: 1.25fr .75fr; gap: 80px; align-items: end; }
.section-heading h2, .vision-title h2, .teaching-grid h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.65rem, 4.4vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -.04em;
}
.split-heading > p { margin: 0; color: var(--muted); font-size: 1.04rem; max-width: 470px; }

.project-list { display: grid; gap: 110px; }
.project { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(300px, .72fr); gap: clamp(45px, 7vw, 95px); align-items: center; }
.project-reverse .project-image { order: 2; }
.project-reverse .project-copy { order: 1; }
.project-image { background: var(--paper); overflow: hidden; }
.project-image img { aspect-ratio: 1.42 / 1; object-fit: cover; transition: transform .5s ease; }
.project-image:hover img { transform: scale(1.018); }
.project-number { margin: 0 0 20px; font-family: var(--serif); font-size: .95rem; color: var(--muted); }
.project-kicker { margin: 0 0 10px; text-transform: uppercase; letter-spacing: .1em; font-size: .71rem; font-weight: 760; color: var(--accent); }
.project h3 { margin: 0; font-family: var(--serif); font-size: clamp(2.5rem, 4vw, 4.25rem); line-height: 1; font-weight: 500; letter-spacing: -.035em; }
.project-copy p { color: var(--muted); }
.project-copy .project-lede { margin-top: 26px; color: var(--ink); font-family: var(--serif); font-size: 1.28rem; line-height: 1.42; }
.text-link { display: inline-block; margin-top: 10px; font-weight: 700; font-size: .9rem; padding-bottom: 2px; border-bottom: 1px solid var(--ink); }
.text-link:hover { color: var(--accent); border-color: var(--accent); }
.project-textual { margin-top: 20px; }
.project-art { aspect-ratio: 1.42 / 1; background: var(--paper); display: flex; align-items: center; justify-content: center; gap: 18px; font-family: var(--serif); font-size: clamp(2.4rem, 5vw, 5.3rem); letter-spacing: -.05em; }
.project-art span:nth-child(2) { color: var(--accent); font-style: italic; }

.vision-section { background: var(--ink); color: white; padding: 125px 0; }
.vision-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(60px, 10vw, 145px); }
.vision-title { position: sticky; top: 130px; align-self: start; }
.vision-title h2 { max-width: 450px; }
.questions article { padding: 5px 0 45px; margin-bottom: 45px; border-bottom: 1px solid #464646; }
.questions article:last-child { margin-bottom: 0; }
.question-number { color: #a9a9a9; font-size: .8rem; }
.questions h3 { margin: 0; font-family: var(--serif); font-size: clamp(1.8rem, 3.1vw, 3.25rem); line-height: 1.16; font-weight: 400; letter-spacing: -.025em; }

.publications-section { padding-bottom: 135px; }
.publication-list { border-top: 1px solid var(--ink); }
.publication { display: grid; grid-template-columns: 90px 1fr 34px; gap: 24px; padding: 27px 0 29px; border-bottom: 1px solid var(--line); align-items: start; }
.pub-year { font-family: var(--serif); font-size: 1rem; color: var(--muted); }
.pub-body h3 { margin: 0 0 8px; font-family: var(--serif); font-weight: 500; line-height: 1.27; letter-spacing: -.015em; font-size: clamp(1.18rem, 2vw, 1.48rem); }
.pub-body p { margin: 0; color: var(--muted); font-size: .92rem; }
.publication > a { font-size: 1.35rem; line-height: 1; text-align: right; }
.publication:hover h3, .publication:hover > a { color: var(--accent); }
.section-action { margin-top: 38px; display: flex; justify-content: flex-end; }
.button-link { display: inline-block; border: 1px solid var(--ink); padding: 12px 17px; font-weight: 700; font-size: .88rem; }
.button-link:hover { background: var(--ink); color: white; }

.teaching-section { background: var(--paper); padding: 115px 0; }
.teaching-grid { display: grid; grid-template-columns: 1fr .82fr; gap: clamp(65px, 10vw, 140px); align-items: start; }
.teaching-copy { font-size: 1.09rem; color: #3e3e3e; }
.teaching-copy p { margin-top: 0; }
.teaching-note { margin-top: 35px !important; padding-top: 18px; border-top: 1px solid var(--line); font-size: .84rem; color: var(--muted); }

.about-section { padding: 100px 0 120px; display: grid; grid-template-columns: .4fr 1.2fr; gap: 80px; }
.about-copy { max-width: 830px; }
.about-copy p { color: var(--muted); }
.about-copy .about-lede { margin-top: 0; color: var(--ink); font-family: var(--serif); font-size: clamp(1.55rem, 2.7vw, 2.35rem); line-height: 1.3; letter-spacing: -.02em; }

.site-footer { background: var(--ink); color: white; padding: 64px 0 42px; }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 50px; align-items: start; }
.footer-name { margin: 0 0 8px; font-family: var(--serif); font-size: 1.55rem; }
.site-footer p { color: #c7c7c7; }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; font-size: .88rem; font-weight: 700; }
.footer-links a:hover { color: #ddd; }
.footer-note { grid-column: 1 / -1; margin: 35px 0 0; padding-top: 25px; border-top: 1px solid #3e3e3e; font-size: .78rem; }

@media (max-width: 900px) {
  .shell { width: min(calc(100% - 36px), var(--max)); }
  .hero { min-height: 0; grid-template-columns: 1fr; padding: 70px 0 72px; }
  .hero-portrait { max-width: 430px; }
  .focus-list { justify-content: flex-start; padding: 22px 0; }
  .focus-list span:not(:last-child)::after { margin-left: 22px; }
  .split-heading, .vision-grid, .teaching-grid, .about-section { grid-template-columns: 1fr; gap: 38px; }
  .project { grid-template-columns: 1fr; gap: 36px; }
  .project-reverse .project-image, .project-reverse .project-copy { order: initial; }
  .vision-title { position: static; }
}

@media (max-width: 680px) {
  .nav-wrap { min-height: 68px; }
  .menu-toggle { display: block; }
  .primary-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 68px;
    display: none;
    flex-direction: column;
    gap: 0;
    background: white;
    padding: 14px 18px 24px;
    border-bottom: 1px solid var(--line);
  }
  .primary-nav.is-open { display: flex; }
  .primary-nav a { padding: 12px 0; }
  .hero h1 { font-size: clamp(3.1rem, 16vw, 4.8rem); }
  .hero { gap: 55px; }
  .hero-portrait::before { inset: 14px -12px -14px 12px; }
  .section { padding: 88px 0; }
  .section-heading { margin-bottom: 55px; }
  .project-list { gap: 78px; }
  .vision-section { padding: 88px 0; }
  .publication { grid-template-columns: 58px 1fr 24px; gap: 13px; }
  .teaching-section { padding: 85px 0; }
  .about-section { padding: 82px 0 90px; }
  .footer-grid { grid-template-columns: 1fr; gap: 22px; }
  .footer-note { grid-column: auto; }
}
