/* JAEV — jaev.gallery */

:root {
  --ink: #111;
  --muted: #767676;
  --paper: #fff;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --font: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
a:hover, a:focus-visible { text-decoration: underline; text-underline-offset: 0.2em; }

h1, h2, h3 { font-weight: inherit; font-size: inherit; margin: 0; }
p { margin: 0; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

/* ── Header ────────────────────────────────────────────────────────────── */

.site-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem 2rem;
  padding: var(--gutter);
}

.logo {
  font-weight: 700;
  letter-spacing: 0.08em;
}

.site-header ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-header [aria-current="page"]:not(.logo) { color: var(--muted); }

/* ── Main ──────────────────────────────────────────────────────────────── */

main {
  flex: 1;
  padding: 0 var(--gutter);
}

/* ── Home ──────────────────────────────────────────────────────────────── */

.home {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  padding-top: 12vh;
  max-width: 32rem;
}

.home-place { color: var(--muted); }

.home-current { display: grid; gap: 0.1rem; }
.home-title { font-style: italic; }
.home-year { margin-bottom: 1.5rem; }
.home-current a { text-decoration: underline; text-underline-offset: 0.2em; }

/* ── Exhibition ────────────────────────────────────────────────────────── */

.exhibition { max-width: 40rem; padding-top: 6vh; }
.exhibition header { margin-bottom: 3rem; }
.exhibition h1 { font-style: italic; }
.exhibition-dates { color: var(--muted); }

.prose > * + * { margin-top: 1em; }

/* ── Footer ────────────────────────────────────────────────────────────── */

.site-footer {
  padding: var(--gutter);
  color: var(--muted);
  font-size: 0.8125rem;
}

/* ── Exhibition list ───────────────────────────────────────────────────── */

.exhibitions { padding-top: 6vh; max-width: 40rem; }
.exhibition-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 2rem; }
.exhibition-list a { display: grid; gap: 0.1rem; }
.exhibition-list-title { font-style: italic; }
.exhibition-list-dates { color: var(--muted); }
