:root {
  --ink: #252126;
  --muted: #696067;
  --paper: #f7f3ee;
  --rose: #e8bbc2;
  --rose-deep: #8f4055;
  --plum: #40263b;
  --cream: #fffaf2;
  --lime: #d8eb91;
  --line: rgba(37, 33, 38, 0.18);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px clamp(24px, 5vw, 76px);
  border-bottom: 1px solid var(--line);
}

.wordmark {
  color: var(--ink);
  font-family: "DM Mono", monospace;
  font-size: 14px;
  letter-spacing: -0.04em;
  text-decoration: none;
  white-space: nowrap;
}

nav { display: flex; gap: 28px; }

nav a,
.footer-links a {
  font-size: 13px;
  font-weight: 600;
  text-underline-offset: 4px;
}

.hero {
  min-height: 790px;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: clamp(48px, 8vw, 132px);
  align-items: center;
  padding: 84px clamp(24px, 7vw, 112px) 100px;
}

.eyebrow,
.section-marker,
.project-kind,
.project-number,
.project-note,
.portrait-wrap figcaption {
  font-family: "DM Mono", monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow { margin: 0 0 28px; color: var(--rose-deep); }

h1 {
  max-width: 830px;
  margin: 0;
  font-size: clamp(62px, 7.7vw, 124px);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.91;
}

em {
  font-family: "Newsreader", serif;
  font-weight: 400;
}

h1 em { color: var(--rose-deep); }

.intro {
  max-width: 610px;
  margin: 40px 0 0;
  color: var(--muted);
  font-size: clamp(19px, 2vw, 27px);
  line-height: 1.55;
}

.portrait-wrap { margin: 0; align-self: end; }

.portrait-field {
  position: relative;
  aspect-ratio: 4 / 5;
  margin: 0 18px 20px 0;
}

.portrait-field::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 22px -18px -20px 22px;
  background: var(--rose);
  pointer-events: none;
}

.portrait-field::after {
  content: "";
  position: absolute;
  z-index: 2;
  width: clamp(54px, 6vw, 88px);
  aspect-ratio: 1;
  right: -34px;
  bottom: 34px;
  background: var(--lime);
  border-radius: 50%;
  pointer-events: none;
}

.portrait-field img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 36%;
  filter: saturate(0.92) contrast(0.98);
  box-shadow: 0 22px 48px rgba(64, 38, 59, 0.13);
}

.portrait-wrap figcaption { margin-top: 14px; color: var(--muted); }

.statement {
  padding: 120px clamp(24px, 10vw, 160px);
  background: var(--plum);
  color: var(--cream);
}

.section-marker { margin: 0 0 48px; color: var(--rose); }

.statement-copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(42px, 8vw, 130px);
}

.statement-copy p {
  margin: 0;
  font-size: clamp(23px, 2.5vw, 38px);
  letter-spacing: -0.03em;
  line-height: 1.42;
}

.signature-line {
  max-width: 1080px;
  margin: 142px auto 0;
  text-align: center;
  font-size: clamp(42px, 5.8vw, 88px);
  letter-spacing: -0.055em;
  line-height: 1.04;
}

.signature-line em { color: var(--rose); }

.making { padding: 128px clamp(24px, 7vw, 112px); }

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 68px;
}

.section-heading .section-marker { margin: 0; color: var(--rose-deep); }

h2 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1;
}

.projects {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.project {
  min-height: 630px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(28px, 4vw, 58px);
  border-radius: 22px;
  text-decoration: none;
  transition: transform 220ms ease, border-radius 220ms ease;
}

.project:hover { transform: translateY(-8px); border-radius: 42px; }

.project-autolitics { background: var(--ink); color: var(--cream); }
.project-patch { background: var(--lime); color: var(--ink); }

.project-topline { display: flex; justify-content: space-between; gap: 24px; }
.project-link { font-size: 13px; font-weight: 600; }
.project-copy { max-width: 610px; }
.project-kind { margin: 0 0 18px; opacity: 0.7; }

.project h3 {
  margin: 0 0 28px;
  font-family: "Newsreader", serif;
  font-size: clamp(48px, 5.4vw, 82px);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.project-copy > p:last-child {
  margin: 0;
  font-size: clamp(18px, 1.7vw, 25px);
  line-height: 1.5;
}

.project-note { opacity: 0.65; }

.interlude {
  padding: 150px clamp(24px, 12vw, 190px);
  background: var(--rose);
}

.interlude > p:first-child {
  margin: 0 0 34px;
  font-family: "Newsreader", serif;
  font-size: 28px;
  font-style: italic;
}

.interlude h2 { max-width: 1080px; }

.interlude-note {
  max-width: 670px;
  margin: 54px 0 0 auto;
  font-size: 18px;
  line-height: 1.7;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 60px;
  align-items: center;
  padding: 50px clamp(24px, 5vw, 76px);
  background: var(--ink);
  color: var(--cream);
  font-size: 13px;
}

.footer-links { display: flex; gap: 28px; }
.copyright { color: rgba(255,255,255,0.55); }

@media (max-width: 820px) {
  .site-header { padding: 22px 24px; }
  .site-header nav { gap: 0; }
  .site-header nav a:first-child { display: none; }
  .hero { min-height: auto; grid-template-columns: 1fr; padding-top: 64px; }
  h1 { font-size: clamp(56px, 16vw, 84px); }
  .portrait-wrap { width: min(82%, 460px); margin-left: auto; }
  .statement-copy, .projects { grid-template-columns: 1fr; }
  .statement { padding: 88px 24px; }
  .statement-copy { gap: 34px; }
  .statement-copy p { font-size: 21px; line-height: 1.5; }
  .signature-line { margin-top: 84px; text-align: left; font-size: 44px; }
  .section-heading { display: block; }
  .section-heading .section-marker { margin-bottom: 28px; }
  .project { min-height: 540px; }
  .interlude { padding: 96px 24px; }
  footer { grid-template-columns: 1fr; gap: 22px; }
  .copyright { margin: 0; }
}

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