:root {
  --bg: #f4ecdf;
  --bg-deep: #e6d8c2;
  --surface: rgba(255, 250, 244, 0.78);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --line: rgba(37, 31, 28, 0.12);
  --text: #251f1c;
  --muted: #6d6258;
  --accent: #b6573c;
  --accent-2: #1f5d58;
  --shadow: 0 20px 45px rgba(37, 31, 28, 0.08);
  --radius: 24px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  font-family: Georgia, "Noto Serif SC", serif;
  background:
    radial-gradient(circle at top left, rgba(182, 87, 60, 0.16), transparent 28%),
    radial-gradient(circle at 85% 18%, rgba(31, 93, 88, 0.18), transparent 20%),
    linear-gradient(180deg, #f8f1e7 0%, var(--bg) 100%);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  background: rgba(248, 241, 231, 0.82);
  border-bottom: 1px solid rgba(37, 31, 28, 0.08);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 16px;
}
.brand {
  font-size: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-size: 15px;
}
.nav a:hover { color: var(--accent); }
.hero {
  padding: 72px 0 40px;
}
.eyebrow {
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 18px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.95fr;
  gap: 28px;
  align-items: stretch;
}
.hero-copy,
.hero-panel,
.section-card,
.work-card,
.note-card,
.list-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-copy {
  padding: 34px;
}
.hero h1 {
  margin: 0;
  font-size: clamp(48px, 8vw, 94px);
  line-height: 0.92;
  max-width: 8ch;
}
.hero p {
  margin: 22px 0 0;
  max-width: 62ch;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.9;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 15px;
}
.button {
  background: var(--text);
  color: #fff9f3;
}
.button-secondary {
  border: 1px solid var(--line);
  color: var(--accent-2);
  background: rgba(255,255,255,0.45);
}
.hero-panel {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(160deg, rgba(255,255,255,0.8), rgba(230,216,194,0.75)),
    linear-gradient(180deg, rgba(182,87,60,0.08), rgba(31,93,88,0.08));
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.stat {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.66);
  border: 1px solid rgba(37,31,28,0.08);
}
.stat strong {
  display: block;
  font-size: 28px;
  margin-bottom: 6px;
}
.stat span {
  color: var(--muted);
  font-size: 14px;
}
.panel-note {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(37,31,28,0.08);
  color: var(--muted);
  line-height: 1.8;
}
.section {
  padding: 28px 0 0;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  margin-bottom: 18px;
}
.section-title {
  font-size: clamp(28px, 5vw, 44px);
  margin: 0;
}
.section-kicker {
  color: var(--muted);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.work-card,
.note-card,
.list-card,
.section-card {
  padding: 24px;
}
.work-card h3,
.note-card h3,
.list-card h3,
.section-card h3 {
  margin: 0 0 12px;
  font-size: 26px;
}
.work-card p,
.note-card p,
.list-card p,
.section-card p,
.section-card li,
.list-card li {
  color: var(--muted);
  line-height: 1.8;
}
.work-link {
  margin-top: 18px;
  color: var(--accent-2);
  font-weight: bold;
}
.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}
.timeline {
  display: grid;
  gap: 14px;
}
.timeline-item {
  padding: 16px 0 0 18px;
  border-left: 2px solid rgba(37,31,28,0.12);
  position: relative;
}
.timeline-item::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  position: absolute;
  left: -6px;
  top: 21px;
}
.muted { color: var(--muted); }
.footer {
  padding: 48px 0 72px;
  color: var(--muted);
  font-size: 14px;
}
.page-hero {
  padding: 56px 0 12px;
}
.page-hero h1 {
  margin: 0;
  font-size: clamp(38px, 7vw, 72px);
}
.page-hero p {
  color: var(--muted);
  max-width: 60ch;
  line-height: 1.8;
}
.list {
  margin: 0;
  padding-left: 18px;
}
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}
.tag {
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(37,31,28,0.08);
  padding: 8px 12px;
  color: var(--muted);
  font-size: 13px;
}
.back-link {
  display: inline-block;
  margin-top: 20px;
  color: var(--accent-2);
}
@media (max-width: 900px) {
  .hero-grid,
  .grid-3,
  .split {
    grid-template-columns: 1fr;
  }
  .topbar-inner {
    padding: 10px 0;
    align-items: start;
    flex-direction: column;
  }
}
.art-section {
  margin-top: 28px;
}
.art-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 420px));
  justify-content: center;
  gap: 18px;
}
.art-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.art-image {
  aspect-ratio: 4 / 3;
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  background: rgba(255,255,255,0.6);
}
.art-copy {
  padding: 18px 20px 20px;
}
.art-copy h3 {
  margin: 0 0 8px;
  font-size: 24px;
}
.art-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}
@media (max-width: 900px) {
  .art-grid {
    grid-template-columns: 1fr;
  }
}
.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(15, 12, 10, 0.82);
  z-index: 40;
}
.lightbox.is-open {
  display: flex;
}
.lightbox-panel {
  position: relative;
  width: min(100%, 980px);
  max-height: calc(100vh - 48px);
  background: rgba(255, 250, 244, 0.96);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}
.lightbox-image {
  display: block;
  width: 100%;
  max-height: calc(100vh - 170px);
  object-fit: contain;
  background: rgba(255,255,255,0.72);
}
.lightbox-copy {
  padding: 16px 20px 20px;
}
.lightbox-copy h3 {
  margin: 0 0 8px;
  font-size: 24px;
}
.lightbox-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}
.lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(37,31,28,0.12);
  background: rgba(255,255,255,0.92);
  font-size: 24px;
  line-height: 1;
}
.art-card button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}
.art-grid {
  grid-template-columns: repeat(auto-fit, minmax(170px, 220px));
  gap: 14px;
}
.art-card {
  border-radius: 18px;
}
.art-image {
  max-height: 132px;
}
.art-copy {
  padding: 12px 14px 14px;
}
.art-copy h3 {
  font-size: 18px;
  margin-bottom: 6px;
}
.art-copy p {
  font-size: 14px;
  line-height: 1.6;
}
@media (max-width: 900px) {
  .lightbox {
    padding: 16px;
  }
  .lightbox-panel {
    width: 100%;
  }
  .lightbox-image {
    max-height: calc(100vh - 220px);
  }
}
