:root {
  --ink: #20201e;
  --muted: #74716a;
  --paper: #f6f4ef;
  --surface: #ebe8e0;
  --line: #d5d1c7;
  --accent: #a63f32;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Noto Serif SC", "Songti SC", SimSun, serif;
  line-height: 1.8;
}
a { color: inherit; text-decoration: none; }

.site-header {
  min-height: 76px;
  padding: 0 clamp(22px, 5vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 700; }
.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: var(--accent);
  font-size: 16px;
}
nav { display: flex; gap: 30px; font-size: 14px; }
nav a, .text-link, footer a { border-bottom: 1px solid transparent; }
nav a:hover, .text-link:hover, footer a:hover { border-color: currentColor; }

main { overflow: hidden; }
.intro {
  min-height: min(680px, calc(100vh - 76px));
  padding: clamp(80px, 14vh, 150px) clamp(22px, 10vw, 150px) 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: 1px solid var(--line);
}
.eyebrow, .section-index {
  margin: 0 0 22px;
  color: var(--accent);
  font-family: Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0;
}
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 24px; font-size: clamp(52px, 8vw, 108px); font-weight: 500; line-height: 1.08; }
.lead { max-width: 620px; margin-bottom: 42px; color: var(--muted); font-size: clamp(17px, 2vw, 22px); }
.text-link { width: fit-content; font-size: 14px; }

.works, .about { padding: clamp(72px, 10vw, 140px) clamp(22px, 7vw, 104px); }
.section-heading { margin-bottom: 56px; display: flex; justify-content: space-between; align-items: end; gap: 30px; }
.section-heading h2, .about h2 { margin: 0; font-size: clamp(32px, 5vw, 58px); font-weight: 500; line-height: 1.25; }
.section-heading > p { max-width: 310px; margin: 0; color: var(--muted); font-size: 14px; }
.work-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 70px 28px; }
.work-item--wide { grid-column: 1 / -1; }
.art-placeholder {
  width: 100%;
  aspect-ratio: 16 / 8;
  display: grid;
  place-items: center;
  color: #97938a;
  background: var(--surface);
  border: 1px solid var(--line);
  font-size: 13px;
}
.art-placeholder--portrait { aspect-ratio: 4 / 5; }
.work-meta { padding-top: 16px; display: flex; justify-content: space-between; gap: 18px; }
.work-meta h3 { margin: 0; font-size: 16px; font-weight: 500; }
.work-meta p { margin: 0; color: var(--muted); font-size: 13px; }

.about { background: #dedbd2; }
.about-layout { display: grid; grid-template-columns: minmax(260px, .8fr) minmax(300px, 1fr); gap: 80px; }
.about-copy { max-width: 620px; color: #5f5c55; font-size: 16px; }
.about-copy p:last-child { margin-bottom: 0; }
footer {
  min-height: 92px;
  padding: 24px clamp(22px, 5vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  background: var(--ink);
  font-family: Arial, sans-serif;
  font-size: 12px;
}
footer p { margin: 0; }
footer a { color: #e2ded5; }

@media (max-width: 700px) {
  .site-header { min-height: 66px; }
  nav { gap: 18px; }
  .intro { min-height: calc(100vh - 66px); }
  .section-heading { align-items: start; flex-direction: column; }
  .work-grid { grid-template-columns: 1fr; gap: 52px; }
  .work-item--wide { grid-column: auto; }
  .art-placeholder, .art-placeholder--portrait { aspect-ratio: 4 / 5; }
  .work-meta { display: block; }
  .work-meta p { margin-top: 3px; }
  .about-layout { grid-template-columns: 1fr; gap: 34px; }
  footer { align-items: flex-start; flex-direction: column; justify-content: center; }
}

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