:root {
  --bg: #f4f0e9;
  --paper: #fbf9f5;
  --text: #171717;
  --muted: #6d685f;
  --line: #d9d2c7;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}
a { color: inherit; }
img { display:block; width:100%; height:100%; object-fit:cover; }
.site-header {
  max-width: 1240px;
  margin: 0 auto;
  padding: 28px 28px;
  display:flex; justify-content:space-between; align-items:center;
  border-bottom:1px solid var(--line);
}
.brand { text-decoration:none; font-weight:600; letter-spacing:.02em; }
nav { display:flex; gap:24px; }
nav a { text-decoration:none; font-size:14px; }
main, .site-footer { max-width:1240px; margin:0 auto; }
.hero, .workshop-hero {
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  min-height: 620px;
  border-bottom:1px solid var(--line);
}
.hero-copy, .workshop-hero > div:first-child {
  padding:88px 54px 76px 28px;
  display:flex; flex-direction:column; justify-content:center; align-items:flex-start;
}
.eyebrow {
  font-size:12px; letter-spacing:.16em; font-weight:700; margin:0 0 24px;
}
h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight:400;
  line-height:1.02;
  margin-top:0;
}
h1 { font-size:clamp(56px, 7vw, 104px); max-width:8ch; margin-bottom:28px; }
h2 { font-size:clamp(42px, 5vw, 72px); margin-bottom:42px; }
h3 { font-size:32px; margin-bottom:16px; }
h3 a { text-decoration:none; }
.lead { font-size:20px; max-width:590px; margin:0 0 32px; color:#333; }
.button {
  display:inline-block; padding:14px 20px; border:1px solid var(--text);
  text-decoration:none; text-transform:uppercase; letter-spacing:.09em; font-size:12px;
}
.hero-art, .card-image {
  background:#ded8ce;
  display:flex; align-items:center; justify-content:center;
  color:var(--muted); text-align:center;
}
.statement {
  padding:90px 28px;
  border-bottom:1px solid var(--line);
}
.statement p {
  max-width:900px;
  font-family:Georgia, "Times New Roman", serif;
  font-size:clamp(30px, 4vw, 54px);
  line-height:1.18;
  margin:0;
}
.catalogue { padding:90px 28px 110px; }
.section-heading { max-width:800px; }
.cards { display:grid; grid-template-columns:repeat(2, minmax(0,1fr)); gap:28px; }
.card {
  background:var(--paper);
  border:1px solid var(--line);
}
.card-image { aspect-ratio: 4 / 3; text-decoration:none; }
.card-body { padding:30px; }
.meta, .status { font-size:12px; text-transform:uppercase; letter-spacing:.08em; color:var(--muted); }
.text-link { display:inline-block; margin-top:10px; text-decoration:none; border-bottom:1px solid currentColor; }
.facts { display:flex; flex-wrap:wrap; gap:8px; margin-bottom:28px; }
.facts span { border:1px solid var(--line); padding:8px 10px; font-size:12px; }
.workshop-content { padding:80px 28px 110px; }
.prose { max-width:720px; margin:0 auto; font-size:18px; }
.prose h2 { font-size:40px; margin-top:60px; margin-bottom:18px; }
.site-footer {
  padding:28px;
  border-top:1px solid var(--line);
  color:var(--muted);
  font-size:13px;
}
@media (max-width: 760px) {
  .site-header { padding:20px; align-items:flex-start; }
  nav { gap:12px; flex-direction:column; }
  .hero, .workshop-hero { grid-template-columns:1fr; min-height:0; }
  .hero-copy, .workshop-hero > div:first-child { padding:64px 20px 52px; }
  .hero-art { min-height:360px; }
  h1 { font-size:58px; }
  .statement, .catalogue, .workshop-content { padding-left:20px; padding-right:20px; }
  .cards { grid-template-columns:1fr; }
}
