:root {
  --paper: #faf9f6;
  --ink: #1c2126;
  --muted: #5c6570;
  --hair: #d9d5cc;
  --sea: #29607e;
  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans: 'Inter Tight', 'Helvetica Neue', Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; height: auto; }

a { color: inherit; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--sea); }

.container { max-width: 68rem; margin: 0 auto; padding: 0 1.25rem; }
.prose { max-width: 42rem; }
.prose p + p { margin-top: 1.1em; }

/* ---------- header ---------- */
header.site {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
  padding: 1.4rem 0 1.3rem;
}
.wordmark {
  font-family: var(--sans);
  font-size: 0.95rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  text-decoration: none;
}
nav.main { display: flex; gap: 1.6rem; align-items: baseline; }
nav.main a {
  font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; padding: 0.5rem 0;
}
nav.main a[aria-current='page'] { border-bottom: 1px solid var(--ink); }
.langs { display: flex; gap: 0.9rem; }
.langs a {
  font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); text-decoration: none; padding: 0.5rem 0;
}
.langs a[aria-current='true'] { color: var(--ink); border-bottom: 1px solid var(--ink); }

/* ---------- hero ---------- */
.hero-img { width: 100%; height: min(74vh, 46rem); object-fit: cover; }
.hero-text { padding: 3.2rem 0 0; }
.hero-text .artist {
  font-size: 0.85rem; font-weight: 500; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--muted);
}
h1.show-title {
  font-family: var(--serif); font-weight: 500; font-style: italic;
  font-size: clamp(2.4rem, 6.5vw, 4.6rem);
  line-height: 1.08; margin: 0.6rem 0 1.4rem;
  max-width: 24ch; text-wrap: balance;
}
.show-facts { color: var(--muted); font-size: 0.98rem; line-height: 1.8; }
.show-facts .opening { color: var(--ink); font-weight: 500; }

.lede {
  font-family: var(--serif); font-size: 1.45rem; line-height: 1.5; font-weight: 500;
  max-width: 46rem; margin: 2.8rem 0 0;
}

/* ---------- sections ---------- */
section { padding: 4.2rem 0 0; }
section:last-of-type { padding-bottom: 4.2rem; }
h2 {
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 1.8rem;
}

/* ---------- gallery ---------- */
.works { display: grid; grid-template-columns: 1fr 1fr; gap: 2.4rem; }
@media (max-width: 640px) { .works { grid-template-columns: 1fr; gap: 1.8rem; } }
.works img { width: 100%; aspect-ratio: 1417 / 2000; object-fit: cover; background: #e8e6e0; }
.works-caption { margin-top: 1.4rem; font-size: 0.9rem; color: var(--muted); }
.works--landscape img { aspect-ratio: 4 / 3; }
.works--landscape img:last-child:nth-child(odd) { grid-column: 1 / -1; }

/* ---------- exhibition teaser ---------- */
.teaser {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2.4rem; align-items: center;
  text-decoration: none; max-width: 56rem;
}
@media (max-width: 640px) { .teaser { grid-template-columns: 1fr; gap: 1.2rem; } }
.teaser img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; background: #e8e6e0; }
.teaser-text { display: flex; flex-direction: column; gap: 0.35rem; }
.teaser-title { font-family: var(--serif); font-style: italic; font-weight: 500; font-size: 2rem; line-height: 1.1; }
.teaser-sub { font-size: 0.95rem; color: var(--muted); }
.teaser-line { font-size: 0.95rem; margin-top: 0.5rem; }
.teaser-link { font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; margin-top: 1rem; }
.teaser:hover .teaser-link { color: var(--sea); }

/* ---------- visit ---------- */
.visit-rows { max-width: 46rem; }
.visit-row {
  display: grid; grid-template-columns: 11rem 1fr; gap: 1rem;
  padding: 0.9rem 0; border-top: 1px solid var(--hair);
}
.visit-row:last-child { border-bottom: 1px solid var(--hair); }
.visit-row dt { font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); padding-top: 0.2rem; }
.visit-row dd { font-size: 1rem; }
@media (max-width: 560px) { .visit-row { grid-template-columns: 1fr; gap: 0.15rem; } }

/* ---------- about ---------- */
h1.page-title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(2.2rem, 5vw, 3.4rem); line-height: 1.1;
  margin: 1.2rem 0 2.4rem;
}
figure.portrait { margin: 0 0 3rem; }
figure.portrait figcaption { margin-top: 0.7rem; font-size: 0.9rem; color: var(--muted); }
.statement p { font-family: var(--serif); font-size: 1.28rem; line-height: 1.55; }

/* ---------- press ---------- */
.press-groups { display: grid; grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr)); gap: 2.6rem 2.4rem; margin-top: 0.6rem; }
.press-group h3 { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 1rem; }
.press-group ul { list-style: none; }
.press-group li { border-top: 1px solid var(--hair); }
.press-group li:last-child { border-bottom: 1px solid var(--hair); }
.press-group a {
  display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
  padding: 0.75rem 0.1rem; text-decoration: none; font-size: 0.97rem; min-height: 44px;
}
.press-group a .tag { font-size: 0.7rem; letter-spacing: 0.14em; color: var(--muted); }
.press-group a:hover .tag { color: var(--sea); }
.images-note { margin-top: 3rem; font-size: 0.95rem; color: var(--muted); max-width: 42rem; }

/* ---------- footer ---------- */
footer.site {
  margin-top: 5rem; padding: 2.2rem 0 3rem;
  border-top: 1px solid var(--hair);
  font-size: 0.9rem; color: var(--muted); line-height: 2;
}
footer.site a { color: inherit; }
footer.site .rows { display: flex; flex-direction: column; gap: 0.1rem; }
