/* ═══════════════════════════════════════════════════════════
   Bad Behaviour — main.css
   Barlow Condensed  UI / nav / labels
   Helvetica Neue    display headlines / pull quotes
   Barlow            body text
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;700;800&family=Barlow:wght@400;600&display=swap');

/* ── Tokens ──────────────────────────────────────────────── */
:root {
  --black:     #0d0d0d;
  --off-black: #1a1a1a;
  --white:     #f5f4f0;
  --accent:    #e040a0;
  --muted:     #999;
  --link:      #7ecfe0;
  --border:    rgba(255,255,255,0.08);
  --max-w:     1200px;
  --pad-x:     clamp(1.5rem, 5vw, 4rem);
  --gap:       clamp(2rem, 5vw, 4rem);
  --space-m:   2rem;
  --font-ui:   'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --font-disp: 'Helvetica Neue', HelveticaNeue, Helvetica, Arial, sans-serif;
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; height: auto; }
a { color: var(--link); }
a:hover { text-decoration: underline; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 2px; }

/* ── Skip link ───────────────────────────────────────────── */
.skip-link {
  position: absolute; top: -4rem; left: 1rem;
  background: var(--accent); color: #fff;
  padding: 0.6rem 1.2rem; font-weight: 600; font-size: 0.9rem;
  z-index: 200; transition: top 0.2s; border-radius: 0 0 4px 4px;
  text-decoration: none;
}
.skip-link:focus { top: 0; }

/* ── Header ──────────────────────────────────────────────── */
.site-header {
  position: absolute; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; padding: 1.25rem 0 1.25rem var(--pad-x); gap: 1rem;
}
.logo {
  max-width:160px;
}
.main-nav { position: relative; padding: 1.1rem 2.5rem; }
.main-nav::before {
  content: ''; position: absolute; inset: 0; background: #000;
  transform: rotate(2deg) scaleX(1.08) scaleY(1.9);
  transform-origin: center; z-index: 0; pointer-events: none;
}
.main-nav ul { position: relative; z-index: 1; list-style: none; display: flex; gap: clamp(1.5rem, 2.8vw, 2.5rem); }
.main-nav a {
  font-family: var(--font-ui); font-weight: 700; font-size: 0.85rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--white); text-decoration: none; transition: color 0.2s;
}
.main-nav a:hover { color: var(--accent); text-decoration: none; }
.main-nav a[aria-current="page"] { color: var(--accent); border-bottom: 2px solid var(--accent); padding-bottom: 2px; }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative; width: 100%;
  height: clamp(380px, 52vw, 600px);
  background-size: cover; background-position: center 30%;
  background-color: var(--off-black);
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.6) 100%);
  pointer-events: none;
}
.byline-panel {
  position: absolute; bottom: 0; left: var(--pad-x); z-index: 10;
  display: inline-block; background: #000;
  clip-path: polygon(0% 12%, 96% 3%, 100% 110%, 0% 120%);
  padding: 3rem 3.5rem 2.75rem 2.5rem;
}
.byline-label {
  display: block; font-family: var(--font-disp); font-weight: 400;
  font-size: 1.125rem; color: var(--white); margin-bottom: 0.5rem;
}
.byline-panel h1 {
  font-family: var(--font-disp); font-weight: 400;
  font-size: clamp(2rem, 3.5vw, 3rem); letter-spacing: -0.01em;
  line-height: 1.1; color: var(--white);
}

/* ── Card grid (blog + exhibitions listing) ──────────────── */
.listing-outer {
  max-width: var(--max-w); margin: 0 auto;
  padding: var(--gap) var(--pad-x) calc(var(--gap) * 2);
}
.card-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border); border: 1px solid var(--border);
}
.card { background: var(--black); overflow: hidden; transition: background 0.25s; }
.card a { display: block; color: inherit; text-decoration: none; }
.card:hover { background: var(--off-black); }
.card__img { aspect-ratio: 4/3; overflow: hidden; background: #111; }
.card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease, opacity 0.3s; }
.card:hover .card__img img { transform: scale(1.04); opacity: 0.82; }
.card__body { padding: 1.25rem 1.4rem 2rem; }
.card__tag {
  display: inline-block; font-family: var(--font-ui); font-weight: 700;
  font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 0.55rem;
}
.card__body h2 {
  font-family: var(--font-disp); font-weight: 300;
  font-size: clamp(1rem, 1.4vw, 1.2rem); line-height: 1.3;
  color: var(--white); margin-bottom: 0.6rem; letter-spacing: -0.01em;
}
.card__body p {
  font-size: 0.83rem; line-height: 1.65; color: rgba(245,244,240,0.55);
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.card__cta {
  display: inline-block; margin-top: 0.9rem;
  font-family: var(--font-ui); font-weight: 700; font-size: 0.7rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--link); transition: color 0.2s;
}
.card:hover .card__cta { color: var(--white); }
.card__year {
  display: block; font-family: var(--font-ui); font-weight: 700;
  font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 0.35rem;
}
.card__venue {
  display: block; margin-top: 0.8rem; font-family: var(--font-ui);
  font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(245,244,240,0.3);
}
.badge-current {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--accent); color: #fff;
  font-family: var(--font-ui); font-weight: 700; font-size: 0.65rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 0.3rem 0.7rem; border-radius: 2px; margin-bottom: 0.5rem;
}
.badge-current::before {
  content: ''; display: block; width: 6px; height: 6px;
  border-radius: 50%; background: #fff; animation: blink 1.8s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

/* ── Interview layout ────────────────────────────────────── */
.interview-body {
  max-width: 1280px; margin: 0 auto;
  padding: var(--gap) var(--pad-x) calc(var(--gap) * 1.6);
  display: grid;
  grid-template-columns: 640px clamp(60px, 8vw, 140px) 420px;
  justify-content: center; align-items: start;
}
.interview-qa-col { grid-column: 1; }
.interview-sidebar {
  grid-column: 3; display: flex; flex-direction: column; gap: 2.5rem;
}
.interview-qa { display: flex; flex-direction: column; gap: 2.4rem; }
.qa-block dt {
  font-family: var(--font-ui); font-weight: 700; font-size: 0.9rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--white); margin-bottom: 0.65rem;
}
.qa-block dd { color: rgba(245,244,240,0.82); font-size: 0.97rem; margin-left: 0; }
.pull-quote blockquote {
  font-family: var(--font-disp); font-weight: 300;
  font-size: clamp(1.5rem, 3vw, 2.5rem); line-height: 1.3; color: var(--white);
}
.pull-quote blockquote::before { content: '\2018'; }
.pull-quote blockquote::after  { content: '\2019'; }
.artist-image { border-radius: 2px; overflow: hidden; }
.artist-image img { width: 100%; transition: transform 0.4s ease; }
.artist-image:hover img { transform: scale(1.02); }
.artist-image figcaption { font-size: 0.78rem; color: var(--muted); padding: 0.6rem 0 0; font-style: italic; }
.artist-link { font-size: 0.9rem; margin-top: 2rem; }
.artist-link a { color: var(--link); }

/* ── Exhibition detail ───────────────────────────────────── */
.exhibition-header-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: var(--gap) var(--pad-x) 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap); align-items: start;
}
.exhibition-subtitle {
  font-family: var(--font-disp); font-weight: 300;
  font-size: clamp(1.1rem, 2vw, 1.6rem); color: rgba(245,244,240,0.7); margin-bottom: 0.5rem;
}
.exhibition-tagline {
  font-family: var(--font-disp); font-weight: 300;
  font-size: clamp(1rem, 1.6vw, 1.3rem); color: rgba(245,244,240,0.5);
  font-style: italic; margin-top: 0.4rem;
}
.event-details { display: flex; flex-direction: column; }
.event-detail-row {
  display: grid; grid-template-columns: 130px 1fr;
  padding: 0.85rem 0; border-bottom: 1px solid var(--border);
}
.event-detail-row:first-child { border-top: 1px solid var(--border); }
.detail-label {
  font-family: var(--font-ui); font-weight: 700; font-size: 0.72rem;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted);
}
.detail-value { font-size: 0.92rem; color: rgba(245,244,240,0.8); line-height: 1.55; }
.detail-value small { font-size: 0.8rem; color: var(--muted); }
.crowdfunder-block { margin-top: 2rem; }
.crowdfunder-label {
  font-family: var(--font-ui); font-weight: 700; font-size: 0.72rem;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted);
  display: block; margin-bottom: 0.75rem;
}
.btn-crowdfund {
  display: inline-block; font-family: var(--font-ui); font-weight: 700;
  font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase;
  background: var(--accent); color: #fff; padding: 0.75rem 1.6rem;
  text-decoration: none; transition: background 0.2s;
}
.btn-crowdfund:hover { background: #c0307a; text-decoration: none; }
.exhibition-body {
  max-width: var(--max-w); margin: 0 auto; padding: var(--gap) var(--pad-x);
}
.intro-text {
  font-family: var(--font-disp); font-weight: 300;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem); line-height: 1.7;
  color: var(--white); margin-bottom: 1.2rem;
}
.exhibition-body p { font-size: 0.97rem; color: rgba(245,244,240,0.75); line-height: 1.8; margin-bottom: 1rem; }
.section-header {
  display: flex; align-items: baseline; justify-content: space-between;
  border-bottom: 1px solid var(--border); padding-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-ui); font-weight: 700; font-size: 0.72rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted);
}
.section-link {
  font-family: var(--font-ui); font-weight: 700; font-size: 0.68rem;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--link);
  text-decoration: none;
}
.section-link:hover { color: var(--white); text-decoration: none; }
.artist-works { max-width: var(--max-w); margin: 0 auto; padding: var(--gap) var(--pad-x); border-top: 1px solid var(--border); }
.works-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1px; background: var(--border); }
.work-item { background: var(--black); overflow: hidden; }
.work-item figure img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform 0.4s; display: block; }
.work-item:hover img { transform: scale(1.03); }
.work-item figcaption { padding: 0.75rem 1rem 1.2rem; font-size: 0.82rem; color: rgba(245,244,240,0.6); }
.work-year { color: var(--muted); }
.artists-name-grid {
  max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x) var(--gap);
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1px; background: var(--border); border: 1px solid var(--border);
}
.artist-name-item {
  padding: 1rem 1.25rem; background: var(--black);
  font-family: var(--font-disp); font-weight: 300; font-size: 1rem;
  color: rgba(245,244,240,0.75);
}

/* ── Artist page ─────────────────────────────────────────── */
.artist-content {
  max-width: var(--max-w); margin: 0 auto; padding: var(--gap) var(--pad-x);
  display: grid; grid-template-columns: 1fr 380px; gap: var(--gap); align-items: start;
}
.artist-medium {
  font-family: var(--font-ui); font-weight: 700; font-size: 0.72rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-bottom: 1.25rem;
}
.artist-bio { color: rgba(245,244,240,0.82); font-size: 1rem; line-height: 1.8; }
.artist-main-image { border-radius: 2px; overflow: hidden; }
.artist-main-image img { width: 100%; }

/* ── Press listing ───────────────────────────────────────── */
.press-listing { max-width: var(--max-w); margin: 0 auto; padding: var(--gap) var(--pad-x) calc(var(--gap)*2); }
.press-row {
  display: grid; grid-template-columns: 200px 1fr; gap: 2rem;
  padding: 1.5rem 0; border-bottom: 1px solid var(--border);
}
.press-row:first-child { border-top: 1px solid var(--border); }
.press-pub-name {
  display: block; font-family: var(--font-ui); font-weight: 700;
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--white);
}
.press-pub-year { display: block; font-size: 0.75rem; color: var(--muted); margin-top: 0.25rem; }
.press-excerpt { font-size: 0.92rem; color: rgba(245,244,240,0.7); margin-bottom: 0.75rem; }
.press-read-link {
  font-family: var(--font-ui); font-weight: 700; font-size: 0.72rem;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--link);
}
.press-read-link:hover { color: var(--white); text-decoration: none; }

/* ── About ───────────────────────────────────────────────── */
.about-body {
  max-width: 1280px; margin: 0 auto;
  padding: var(--gap) var(--pad-x) calc(var(--gap)*2);
  display: grid; grid-template-columns: 620px clamp(60px,6vw,100px) 360px;
  justify-content: center; align-items: start;
}
.about-main { grid-column: 1; }
.about-side  { grid-column: 3; display: flex; flex-direction: column; gap: 2.5rem; }
.about-main .lede {
  font-family: var(--font-disp); font-weight: 300;
  font-size: clamp(1.1rem, 1.6vw, 1.35rem); line-height: 1.65;
  color: var(--white); margin-bottom: 2rem;
}
.about-main p { font-size: 1rem; line-height: 1.8; color: rgba(245,244,240,0.78); margin-bottom: 1.4rem; }
.about-section-label {
  font-family: var(--font-ui); font-weight: 700; font-size: 0.72rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent);
  margin: 2.5rem 0 0.6rem; padding-top: 2rem; border-top: 1px solid var(--border);
}
.about-main .about-section-label:first-of-type { border-top: none; padding-top: 0; margin-top: 0; }
.team-list { list-style: none; }
.team-list li {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 0.6rem 0; border-bottom: 1px solid var(--border);
  font-size: 0.92rem; color: rgba(245,244,240,0.75);
}
.team-list li:last-child { border-bottom: none; }
.team-role { font-size: 0.75rem; color: var(--muted); }
.about-link { color: var(--link); }
.about-pull {
  font-family: var(--font-disp); font-weight: 300;
  font-size: clamp(1.3rem, 2.2vw, 2rem); line-height: 1.35; color: var(--white);
  border-left: 2px solid var(--accent); padding-left: 1.25rem;
}
.about-map img { width: 100%; opacity: 0.7; transition: opacity 0.3s; }
.about-map:hover img { opacity: 1; }
.about-map figcaption { font-size: 0.75rem; color: var(--muted); margin-top: 0.5rem; }

/* ── Event / generic page ────────────────────────────────── */
.page-content {
  max-width: var(--max-w); margin: 0 auto;
  padding: var(--gap) var(--pad-x) calc(var(--gap)*1.6);
  color: rgba(245,244,240,0.82); font-size: 1rem; line-height: 1.8;
}
.page-content p { margin-bottom: 1.4rem; }
.page-content h2 {
  font-family: var(--font-disp); font-weight: 300;
  font-size: clamp(1.4rem,2.5vw,2rem); margin: 2rem 0 1rem; color: var(--white);
}
.event-details-wrap { max-width: var(--max-w); margin: 0 auto; padding: var(--gap) var(--pad-x) 0; }
.press-content { max-width: var(--max-w); margin: 0 auto; padding: var(--gap) var(--pad-x) calc(var(--gap)*2); }
.press-item { padding: 2rem 0; border-bottom: 1px solid var(--border); }
.press-item:first-child { border-top: 1px solid var(--border); }
.press-publication {
  font-family: var(--font-ui); font-weight: 700; font-size: 0.72rem;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.5rem;
}
.press-excerpt { font-size: 0.92rem; color: rgba(245,244,240,0.7); margin-bottom: 0.75rem; }

/* ── Home ────────────────────────────────────────────────── */
body.home .site-header { position: relative; background: var(--black); border-bottom: 1px solid var(--border); }
.home-focus { max-width: 1000px; margin: 0 auto; padding: 2rem 1rem 4rem; }
.home-featured { margin-bottom: 6px; }
.home-featured a { display: block; position: relative; text-decoration: none; }
.home-featured img { display: block; width: 100%; height: auto; }
h3.home-cta {
  position: absolute; bottom: 0; left: 0; margin: 0;
  background: rgba(255,255,255,0.9); color: #1a1917;
  font-family: var(--font-ui); font-weight: 400; font-size: 0.75rem;
  letter-spacing: 0.12em; text-transform: uppercase; padding: 0.6rem 1rem;
}
.home-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.home-col-main { aspect-ratio: 3/4; }
.home-col-main a { display: block; position: relative; text-decoration: none; height: 100%; }
.home-col-main img { display: block; width: 100%; height: 100%; object-fit: cover; }
.home-col-side { display: flex; flex-direction: column; gap: 6px; }
.home-col-side-row { flex: 1; min-height: 0; }
.home-col-side-row a { display: block; position: relative; text-decoration: none; height: 100%; overflow: hidden; }
.home-col-side-row img { display: block; width: 100%; height: 100%; object-fit: cover; }
.home-col-main h3, .home-col-side-row h3 {
  position: absolute; bottom: 0; left: 0; margin: 0;
  background: rgba(255,255,255,0.9); color: #1a1917;
  font-family: var(--font-ui); font-weight: 400; font-size: 0.75rem;
  letter-spacing: 0.12em; text-transform: uppercase; padding: 0.6rem 1rem;
}
.home-featured a:hover img, .home-col-main a:hover img, .home-col-side-row a:hover img { opacity: 0.88; transition: opacity 0.3s; }

/* ── Footer ──────────────────────────────────────────────── */
.site-footer { background: var(--off-black); border-top: 1px solid var(--border); padding: 2.5rem var(--pad-x); }
.footer-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem;
}
.footer-brand p:first-child {
  font-family: var(--font-ui); font-weight: 700; font-size: 0.85rem;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--white);
}
.footer-brand p:last-child { font-size: 0.78rem; color: var(--muted); font-style: italic; margin-top: 0.15rem; }
.footer-nav ul { list-style: none; display: flex; gap: clamp(1rem,3vw,2.5rem); }
.footer-nav a {
  font-family: var(--font-ui); font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted);
  text-decoration: none; transition: color 0.2s;
}
.footer-nav a:hover { color: var(--white); }
.footer-social { display: flex; align-items: center; gap: 1rem; }
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; color: var(--muted); border-radius: 50%;
  transition: color 0.2s, background 0.2s; text-decoration: none;
}
.footer-social a:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.footer-social svg { width: 18px; height: 18px; fill: currentColor; }
.footer-copy { width: 100%; text-align: right; font-size: 0.75rem; color: var(--muted); padding-top: 0.5rem; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 960px) {
  .card-grid { grid-template-columns: repeat(2,1fr); }
  .interview-body { grid-template-columns: 1fr; }
  .interview-qa-col { grid-column: 1; }
  .interview-sidebar { grid-column: 1; order: -1; margin-bottom: 2rem; }
  .exhibition-header-inner { grid-template-columns: 1fr; }
  .artist-content { grid-template-columns: 1fr; }
  .about-body { grid-template-columns: 1fr; }
  .about-main { grid-column: 1; }
  .about-side { grid-column: 1; order: -1; margin-bottom: 2rem; }
  .press-row { grid-template-columns: 1fr; gap: 0.5rem; }
}
@media (max-width: 600px) {
  .card-grid { grid-template-columns: 1fr; }
  .site-header {
    flex-direction: column; align-items: center;
    padding: 1.25rem var(--pad-x); background: black; position: relative;
  }
  .main-nav::before { display: none; }
  .main-nav { width: 100%; padding: 0; }
  .main-nav ul { justify-content: center; gap: clamp(1rem,5vw,2rem); }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-copy { text-align: left; }
  .home-columns { grid-template-columns: 1fr; }
  .home-col-main { aspect-ratio: 4/3; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}

/* ── Artists A-Z listing ─────────────────────────────────── */
.artists-listing {
  max-width: var(--max-w); margin: 0 auto;
  padding: var(--gap) var(--pad-x) calc(var(--gap) * 2);
}
.artists-intro {
  font-family: var(--font-disp); font-weight: 300;
  font-size: clamp(1rem, 1.5vw, 1.25rem); color: rgba(245,244,240,0.7);
  max-width: 700px; margin-bottom: var(--gap); line-height: 1.7;
}
.artists-az {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 var(--gap);
}
.artist-letter-group { margin-bottom: 2.5rem; }
.artist-letter {
  display: block; font-family: var(--font-disp); font-weight: 300;
  font-size: clamp(2rem, 4vw, 3rem); color: var(--accent);
  line-height: 1; margin-bottom: 0.75rem;
  border-bottom: 1px solid var(--border); padding-bottom: 0.4rem;
}
.artist-letter-group ul { list-style: none; }
.artist-letter-group li {
  font-size: 0.88rem; line-height: 1.9;
  color: rgba(245,244,240,0.65);
}
.artist-letter-group li a {
  color: var(--link); text-decoration: none; transition: color 0.2s;
}
.artist-letter-group li a:hover { color: var(--white); text-decoration: none; }

/* card__tag as link */
a.card__tag {
  text-decoration: none;
  transition: color 0.2s;
}
a.card__tag:hover { color: var(--white); text-decoration: none; }

@media (max-width: 960px) {
  .artists-az { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .artists-az { grid-template-columns: 1fr; }
}

/* ── Venues page ─────────────────────────────────────────── */
.venues-outer {
  max-width: var(--max-w); margin: 0 auto;
  padding: var(--gap) var(--pad-x) calc(var(--gap) * 2);
}
.venues-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}
.venues-col { display: flex; flex-direction: column; gap: 3.5rem; }

.venues-pull {
  font-family: var(--font-disp); font-weight: 300; font-style: italic;
  font-size: clamp(1.6rem, 3vw, 2.4rem); line-height: 1.25;
  color: var(--white); margin-bottom: 0.5rem;
}

.venue__name {
  font-family: var(--font-ui); font-weight: 800;
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--white); margin-bottom: 0.5rem;
}
.venue__desc {
  font-size: 0.92rem; line-height: 1.7;
  color: rgba(245,244,240,0.65); margin-bottom: 1.25rem;
}
.venue__desc:last-of-type { margin-bottom: 0; }

/* Top URL (appears before images in Flying Dutchman) */
.venue__url--top { margin-bottom: 1.25rem; display: block; }

/* Images — stacked (one above other) */
.venue__images--stack {
  display: flex; flex-direction: column; gap: 4px;
  margin-bottom: 1rem;
}
.venue__images--stack img {
  width: 100%; display: block;
  aspect-ratio: 4/3; object-fit: cover;
}

/* Images — side by side pair */
.venue__images--pair {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4px;
  margin-bottom: 1rem;
}
.venue__images--pair img {
  width: 100%; display: block;
  aspect-ratio: 3/2; object-fit: cover;
}

.venue__url {
  display: inline-block;
  font-family: var(--font-ui); font-weight: 700;
  font-size: 0.75rem; letter-spacing: 0.1em;
  color: var(--accent); text-decoration: none;
  transition: color 0.2s; margin-top: 0.5rem;
}
.venue__url:hover { color: var(--white); text-decoration: none; }

.venue__link { color: var(--accent); text-decoration: none; }
.venue__link:hover { color: var(--white); text-decoration: none; }

@media (max-width: 720px) {
  .venues-grid { grid-template-columns: 1fr; }
  .venue__images--pair { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .venue__images--pair { grid-template-columns: 1fr; }
  .venue__images--pair img { aspect-ratio: 4/3; }
}

/* ── Exhibition gallery, awards & selectors ──────────────── */

.exhibition-section-header {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 var(--pad-x) 0.75rem;
  border-bottom: 1px solid var(--border);
}

/* Awards */
.exhibition-awards {
  max-width: var(--max-w); margin: 0 auto;
  padding: var(--gap) var(--pad-x) 0;
  border-top: 1px solid var(--border);
}
.awards-grid {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 var(--pad-x) var(--gap);
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1px; background: var(--border); border: 1px solid var(--border);
}
.award-item {
  background: var(--black); padding: 1.25rem 1.4rem;
  display: flex; flex-direction: column; gap: 0.4rem;
}
.award-label {
  font-family: var(--font-ui); font-weight: 700; font-size: 0.68rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent);
}
.award-winner {
  font-family: var(--font-disp); font-weight: 300;
  font-size: clamp(1rem, 1.4vw, 1.2rem); color: var(--white);
}

/* Selection panel */
.exhibition-selectors {
  max-width: var(--max-w); margin: 0 auto;
  padding: var(--gap) var(--pad-x) 0;
  border-top: 1px solid var(--border);
}
.selectors-grid {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 var(--pad-x) var(--gap);
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1px; background: var(--border); border: 1px solid var(--border);
}
.selector-item {
  background: var(--black); padding: 1.25rem 1.4rem;
  display: flex; flex-direction: column; gap: 0.3rem;
}
.selector-name {
  font-family: var(--font-disp); font-weight: 300;
  font-size: 1rem; color: var(--white);
}
.selector-role {
  font-size: 0.8rem; color: rgba(245,244,240,0.45); font-style: italic;
}

/* Gallery */
.exhibition-gallery {
  max-width: var(--max-w); margin: 0 auto;
  padding: var(--gap) var(--pad-x) calc(var(--gap) * 2);
  border-top: 1px solid var(--border);
}
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border); border: 1px solid var(--border);
  margin-top: 0;
}
.gallery-item { overflow: hidden; background: #111; aspect-ratio: 4/3; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.5s ease, opacity 0.3s;
}
.gallery-item:hover img { transform: scale(1.04); opacity: 0.85; }

@media (max-width: 960px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .gallery-grid    { grid-template-columns: 1fr; }
  .awards-grid     { grid-template-columns: 1fr; }
  .selectors-grid  { grid-template-columns: 1fr; }
}
