/* ===========================================================================
   PLINTH.GG  —  The Gallery for Video Games
   Gallery-white surface system. Depth read through value + 28px radius only.
   Zero box-shadows anywhere. Token architecture: primitive -> semantic ->
   component. Hash/block comments only, never double slashes.
   =========================================================================== */

/* ---- PRIMITIVE TOKENS ---------------------------------------------------- */
:root {
  /* Neutral gallery scale */
  --c-canvas:        #f5f5f7;   /* the flat-lit wall            */
  --c-card:          #ffffff;   /* surfaces lifting by value    */
  --c-ink:           #1d1d1f;   /* primary text + dark stage    */
  --c-graphite:      #707070;   /* secondary text               */
  --c-silver-mist:   #e8e8ed;   /* input fields, soft fills     */
  --c-fog:           #d2d2d7;   /* hairline dividers            */
  --c-obsidian:      #1d1d1f;   /* dark stage band              */
  --c-pure-black:    #000000;   /* dark pill on gradients       */
  --c-white:         #ffffff;

  /* The single permission-to-act accent + its inline-link sibling */
  --c-violet:        #5b3df5;   /* Plinth Violet  — pills, actions */
  --c-violet-link:   #4a2fd6;   /* Link Violet    — inline links   */
  --c-violet-ring:   rgba(91, 61, 245, 0.45);

  /* Frosted control */
  --c-frost:         rgba(210, 210, 215, 0.64);

  /* Spacing scale (4px base) */
  --sp-1: 4px;  --sp-2: 8px;  --sp-3: 12px; --sp-4: 16px;
  --sp-5: 24px; --sp-6: 32px; --sp-7: 48px; --sp-8: 64px;
  --sp-9: 80px; --sp-10: 104px; --sp-11: 120px;

  /* Radius */
  --r-card: 28px;
  --r-pill: 999px;
  --r-tab:  14px;

  /* Geometry */
  --wrap-max: 1200px;
  --wrap-w:   92%;
  --measure:  75ch;

  /* Type family — SF Pro Display/Text intent via Inter + system-ui */
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Motion */
  --ease-calm: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---- SEMANTIC TOKENS ----------------------------------------------------- */
:root {
  --bg-page:        var(--c-canvas);
  --bg-surface:     var(--c-card);
  --bg-input:       var(--c-silver-mist);
  --text-primary:   var(--c-ink);
  --text-secondary: var(--c-graphite);
  --border-hair:    var(--c-fog);
  --accent:         var(--c-violet);
  --accent-link:    var(--c-violet-link);
}

/* ---- RESET --------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { overflow-x: hidden; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  color: var(--text-primary);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--accent-link); text-decoration: none; }
a:hover { text-decoration: underline; }
button { font-family: inherit; }
h1, h2, h3, h4 { color: var(--text-primary); margin: 0 0 var(--sp-4); }

/* ---- TYPOGRAPHY: size-scaled negative tracking --------------------------- */
.display, h1.display {
  font-size: clamp(56px, 9vw, 96px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -2.11px;
}
.heading-xl {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -1.4px;
}
.heading-lg {
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -1.0px;
}
.heading-md {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.6px;
}
.heading-sm {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.4px;
}
.lede {
  font-size: clamp(19px, 2.2vw, 24px);
  font-weight: 300;
  line-height: 1.45;
  letter-spacing: -0.3px;
  color: var(--text-primary);
}
.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin: 0 0 var(--sp-3);
}
.body-copy { font-size: 17px; line-height: 1.7; letter-spacing: -0.1px; }
.body-copy p { max-width: var(--measure); margin: 0 0 var(--sp-5); }
.muted { color: var(--text-secondary); }

/* ---- LAYOUT WRAPPER ------------------------------------------------------ */
.wrap {
  width: var(--wrap-w);
  max-width: var(--wrap-max);
  margin: 0 auto;
}
.section { padding: var(--sp-11) 0; }
.section-tight { padding: var(--sp-9) 0; }
.full-bleed { width: 100%; }

.visually-hidden, .skip-link {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}
.skip-link:focus {
  position: fixed; top: 12px; left: 12px;
  width: auto; height: auto; clip: auto;
  background: var(--c-ink); color: #fff;
  padding: 10px 18px; border-radius: var(--r-pill); z-index: 200;
}

/* ---- BUTTONS (flat, value + radius only) --------------------------------- */
.btn-pill {
  display: inline-flex; align-items: center; justify-content: center;
  gap: var(--sp-2);
  border: none; cursor: pointer;
  padding: 14px 30px;
  border-radius: var(--r-pill);
  font-size: 16px; font-weight: 600; letter-spacing: -0.2px;
  line-height: 1;
  transition: transform 0.25s var(--ease-calm), background-color 0.25s var(--ease-calm), opacity 0.25s var(--ease-calm);
  text-decoration: none;
}
.btn-pill:hover { text-decoration: none; transform: translateY(-1px); }
.btn-violet { background: var(--accent); color: #fff; }
.btn-violet:hover { background: #4a2fd6; color: #fff; }
.btn-dark { background: var(--c-pure-black); color: #fff; }
.btn-dark:hover { background: #161616; color: #fff; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  padding: 12px 22px; border-radius: var(--r-pill);
  border: 1px solid var(--border-hair);
  background: transparent; color: var(--text-primary);
  font-size: 15px; font-weight: 600; letter-spacing: -0.2px;
  cursor: pointer; transition: border-color 0.25s var(--ease-calm), color 0.25s var(--ease-calm);
}
.btn-ghost:hover { border-color: var(--c-ink); text-decoration: none; }

.text-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 600; color: var(--accent-link); letter-spacing: -0.2px;
}
.text-link .arrow { transition: transform 0.25s var(--ease-calm); }
.text-link:hover { text-decoration: none; }
.text-link:hover .arrow { transform: translateX(4px); }

/* ---- FOCUS-VISIBLE ------------------------------------------------------- */
a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, select:focus-visible, .btn-pill:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: var(--r-tab);
}

/* ---- NAVIGATION ---------------------------------------------------------- */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(245, 245, 247, 0.82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--border-hair);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav-brand { display: inline-flex; align-items: center; gap: 10px; color: var(--c-ink); }
.nav-brand:hover { text-decoration: none; }
.nav-logo { border-radius: 8px; }
.nav-wordmark { font-weight: 800; letter-spacing: -0.5px; font-size: 19px; }
.nav-gg { font-weight: 800; letter-spacing: -0.5px; font-size: 19px; color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: var(--sp-5); }
.nav-link { color: var(--text-primary); font-weight: 500; font-size: 15px; letter-spacing: -0.2px; }
.nav-link:hover { color: var(--accent-link); text-decoration: none; }
.nav-link.is-active { color: var(--accent); font-weight: 600; }
.nav-cta { padding: 10px 20px; font-size: 14px; }

/* ---- HERO ---------------------------------------------------------------- */
.hero {
  position: relative;
  background: var(--c-canvas);
  padding: var(--sp-11) 0 var(--sp-9);
}
.hero-inner { display: grid; gap: var(--sp-7); }
.hero-head { max-width: 14ch; }
.hero h1 { margin-bottom: var(--sp-5); }
.hero .lede { max-width: 46ch; margin-bottom: var(--sp-6); }
.hero-actions { display: flex; gap: var(--sp-4); align-items: center; flex-wrap: wrap; }

.hero-figure {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-card);
  overflow: hidden;
}
.hero-figure img, .ratio-16x9 img, .ratio-1x1 img { width: 100%; height: 100%; object-fit: cover; }
/* z-index layering: photograph base, gradient above, type on top */
.hero-figure .layer-photo { position: absolute; inset: 0; z-index: 1; }
.hero-figure .layer-grad {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(184deg, rgba(7,18,14,0.55) 0%, rgba(12,59,46,0.15) 55%, rgba(16,185,129,0.0) 100%);
}
.hero-figure .layer-type {
  position: absolute; z-index: 3; left: var(--sp-7); bottom: var(--sp-7); right: var(--sp-7);
  color: #fff;
}
.hero-figure .layer-type .caption { color: rgba(255,255,255,0.86); font-size: 15px; max-width: 52ch; }

/* Full-bleed hero backdrop variant */
.hero-bleed { position: relative; min-height: 78vh; display: flex; align-items: flex-end; overflow: hidden; padding: 0; }
.hero-bleed .layer-photo { position: absolute; inset: 0; z-index: 1; }
.hero-bleed .layer-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-bleed .layer-grad {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(184deg, rgba(20,16,8,0.20) 0%, rgba(20,16,8,0.42) 62%, rgba(8,6,4,0.82) 100%);
}
.hero-bleed .hero-bleed-copy { position: relative; z-index: 3; padding: var(--sp-11) 0 var(--sp-9); color: #fff; }
.hero-bleed .hero-bleed-copy h1, .hero-bleed .hero-bleed-copy .lede { color: #fff; }
.hero-bleed .hero-bleed-copy .eyebrow { color: rgba(255,255,255,0.78); }
.hero-bleed .hero-bleed-copy .lede { color: rgba(255,255,255,0.92); }

/* ---- ASPECT-RATIO FRAMES ------------------------------------------------- */
.ratio-16x9 { position: relative; width: 100%; aspect-ratio: 16 / 9; overflow: hidden; }
.ratio-1x1  { position: relative; width: 100%; aspect-ratio: 1 / 1; overflow: hidden; }
.framed { border-radius: var(--r-card); }

/* ---- CARDS (gallery grammar) --------------------------------------------- */
.card {
  background: var(--bg-surface);
  border-radius: var(--r-card);
  padding: var(--sp-6);
}
.card-flat { background: var(--bg-surface); border-radius: var(--r-card); overflow: hidden; }

/* ---- GALLERY GRID -------------------------------------------------------- */
.exhibit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}
.exhibit-card {
  background: var(--bg-surface);
  border-radius: var(--r-card);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.exhibit-card .thumb { width: 100%; aspect-ratio: 1 / 1; }
.exhibit-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.exhibit-card-body { padding: var(--sp-6); display: flex; flex-direction: column; gap: var(--sp-3); flex: 1; }
.exhibit-genre { font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-secondary); }
.exhibit-card h3 { margin: 0; font-size: 26px; font-weight: 700; letter-spacing: -0.7px; }
.exhibit-card .studio { color: var(--text-secondary); font-size: 14px; margin: 0; }
.exhibit-card .summary { font-size: 15.5px; line-height: 1.55; color: var(--text-primary); margin: 0; }

/* Score on card: big numeral, small caption */
.score-block { display: flex; align-items: baseline; gap: 8px; margin-top: auto; }
.score-num { font-size: 56px; font-weight: 700; letter-spacing: -2px; line-height: 1; color: var(--c-ink); }
.score-cap { font-size: 15px; font-weight: 500; color: var(--text-secondary); }
.exhibit-foot { display: flex; align-items: center; justify-content: space-between; padding-top: var(--sp-3); border-top: 1px solid var(--border-hair); }

/* ---- EDITORIAL FEATURE STRIP (index) ------------------------------------- */
.feature-row { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: var(--sp-7); align-items: center; }
.feature-row.reverse { grid-template-columns: 0.9fr 1.1fr; }
.feature-row.reverse .feature-media { order: 2; }
.feature-row.reverse .feature-copy { order: 1; }
.feature-media { border-radius: var(--r-card); overflow: hidden; }
/* Full-figure media: show the whole image at its natural height, never cropped. */
.feature-media-full { border-radius: var(--r-card); overflow: hidden; background: var(--bg-surface); }
.feature-media-full img { width: 100%; height: auto; display: block; object-fit: contain; }

/* ---- EXHIBIT GRADIENT BANDS (per-game backdrops) ------------------------- */
.exhibit-band {
  position: relative;
  color: #fff;
  border-radius: 0;
  padding: var(--sp-11) 0;
  overflow: hidden;
}
.exhibit-band h2, .exhibit-band h3, .exhibit-band p { color: #fff; }
.exhibit-band .eyebrow { color: rgba(255,255,255,0.78); }
.exhibit-band-inner { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-7); align-items: center; }
.exhibit-band-media { border-radius: var(--r-card); overflow: hidden; }
.exhibit-band .band-score { font-size: clamp(72px, 11vw, 132px); font-weight: 700; letter-spacing: -3px; line-height: 0.9; }

/* ---- DARK STAGE BAND ----------------------------------------------------- */
.dark-stage { background: var(--c-obsidian); color: #fff; padding: var(--sp-11) 0; }
.dark-stage h2, .dark-stage h3, .dark-stage p { color: #fff; }
.dark-stage .eyebrow { color: rgba(255,255,255,0.7); }
.dark-stage .muted { color: rgba(255,255,255,0.7); }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-6); }
.stat .stat-num { font-size: clamp(40px, 5vw, 60px); font-weight: 700; letter-spacing: -1.5px; line-height: 1; }
.stat .stat-label { color: rgba(255,255,255,0.7); font-size: 15px; margin-top: var(--sp-2); }

/* ---- ARTICLE ------------------------------------------------------------- */
.article-header { padding: var(--sp-9) 0 var(--sp-7); }
.article-meta { display: flex; flex-wrap: wrap; gap: var(--sp-4); color: var(--text-secondary); font-size: 14.5px; margin-bottom: var(--sp-5); }
.article-meta span { display: inline-flex; align-items: center; gap: 6px; }
.article-cover {   width: 100%; border-radius: var(--r-card); overflow: hidden; }
.article-cover img { width: 100%; height: 100%; object-fit: cover; }
.article-body { padding: var(--sp-9) 0; }
.article-body h2 { font-size: clamp(28px, 3.4vw, 38px); font-weight: 700; letter-spacing: -0.8px; margin-top: var(--sp-8); }
.article-body h2:first-child { margin-top: 0; }
.article-body h3 { font-size: 22px; font-weight: 600; letter-spacing: -0.4px; margin-top: var(--sp-6); }
.article-body p { font-size: 17px; line-height: 1.75; letter-spacing: -0.1px; max-width: var(--measure); margin: 0 0 var(--sp-5); }
.article-body figure { margin: var(--sp-7) 0; }
.article-body figure img { width: 100%; border-radius: var(--r-card); max-width: 500px;
    height: auto; }
.article-body figcaption { color: var(--text-secondary); font-size: 14px; margin-top: var(--sp-3); }
.pull-quote {
  font-size: clamp(24px, 3vw, 32px); font-weight: 600; letter-spacing: -0.6px;
  line-height: 1.25; color: var(--c-ink); max-width: 26ch;
  border-left: 3px solid var(--accent); padding-left: var(--sp-5);
  margin: var(--sp-8) 0;
}

/* Verdict block */
.verdict {
  background: var(--bg-surface);
  border-radius: var(--r-card);
  padding: var(--sp-8);
  display: grid; grid-template-columns: auto 1fr; gap: var(--sp-7); align-items: center;
}
.verdict-score { text-align: center; }
.verdict-score .big { font-size: clamp(88px, 12vw, 140px); font-weight: 700; letter-spacing: -4px; line-height: 0.85; }
.verdict-score .out { color: var(--text-secondary); font-size: 18px; font-weight: 500; }
.band-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-5); margin-top: var(--sp-5); }
.band-item { border-top: 1px solid var(--border-hair); padding-top: var(--sp-3); }
.band-item .band-name { font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-secondary); }
.band-item .band-val { font-size: 30px; font-weight: 700; letter-spacing: -1px; }

/* ---- SUBSCRIPTION (Private View) ----------------------------------------- */
.private-view { background: var(--c-obsidian); color: #fff; padding: var(--sp-11) 0; }
.private-view-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: var(--sp-8); align-items: center; }
.private-view .eyebrow { color: rgba(255,255,255,0.72); }
.private-view-title { color: #fff; font-size: clamp(28px, 3.6vw, 40px); font-weight: 700; letter-spacing: -1px; line-height: 1.08; }
.private-view-lede { color: rgba(255,255,255,0.78); font-size: 17px; max-width: 52ch; }
.private-view-form { display: flex; flex-wrap: wrap; gap: var(--sp-3); align-items: center; }
.private-view-form .field { flex: 1 1 240px; }

/* ---- FORMS --------------------------------------------------------------- */
.field {
  width: 100%;
  background: var(--bg-input);
  border: 1px solid transparent;
  border-radius: var(--r-tab);
  padding: 14px 16px;
  font-size: 16px; color: var(--c-ink);
  font-family: inherit;
  transition: border-color 0.2s var(--ease-calm), box-shadow 0.2s var(--ease-calm);
}
.field::placeholder { color: #9a9aa0; }
.field:focus { outline: none; border-color: var(--accent); }
.field:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }
textarea.field { min-height: 150px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
.form-field { margin-bottom: var(--sp-4); }
.form-field label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 6px; letter-spacing: -0.2px; }
.form-note { width: 100%; font-size: 15px; margin: 8px 0 0; }
.form-note.is-good { color: #0c7a4a; font-weight: 600; }
.private-view-form .form-note.is-good { color: #6ee7b7; }

/* ---- CONTACT ------------------------------------------------------------- */
.contact-stage { min-height: calc(100vh - 64px); display: flex; align-items: center; padding: var(--sp-9) 0; }
.contact-card { background: var(--bg-surface); border-radius: var(--r-card); padding: clamp(28px, 5vw, 56px); width: 100%; max-width: 720px; margin: 0 auto; }
.contact-head { display: flex; align-items: center; gap: var(--sp-4); margin-bottom: var(--sp-6); }
.contact-head img { width: 52px; height: 52px; }

/* ---- LEGAL --------------------------------------------------------------- */
.legal-body { padding: var(--sp-9) 0; }
.legal-body h2 { font-size: 26px; font-weight: 600; letter-spacing: -0.5px; margin-top: var(--sp-7); }
.legal-body p, .legal-body li { font-size: 16.5px; line-height: 1.7; max-width: var(--measure); color: var(--text-primary); }
.legal-body ul { padding-left: var(--sp-5); }
.legal-body li { margin-bottom: var(--sp-2); }

/* ---- FOOTER -------------------------------------------------------------- */
.site-foot { background: var(--c-canvas); border-top: 1px solid var(--border-hair); padding: var(--sp-9) 0 var(--sp-6); }
.foot-inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: var(--sp-7); }
.foot-tag { color: var(--text-secondary); font-size: 15px; max-width: 36ch; margin-top: var(--sp-4); }
.foot-head { font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-secondary); margin-bottom: var(--sp-4); }
.foot-col { display: flex; flex-direction: column; gap: var(--sp-3); }
.foot-col a { color: var(--text-primary); font-size: 15px; }
.foot-col a:hover { color: var(--accent-link); text-decoration: none; }
.foot-base { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4); margin-top: var(--sp-8); padding-top: var(--sp-5); border-top: 1px solid var(--border-hair); color: var(--text-secondary); font-size: 14px; flex-wrap: wrap; }
.foot-base-links a { color: var(--text-secondary); }
.foot-base-links a:hover { color: var(--accent-link); text-decoration: none; }

/* ---- COOKIE CONSENT (frosted) -------------------------------------------- */
.cookie-consent[hidden] { display: none !important; }
.cookie-consent {
  position: fixed; left: 50%; transform: translateX(-50%);
  bottom: 20px; z-index: 150;
  width: 92%; max-width: 720px;
  display: flex; align-items: center; gap: var(--sp-5);
  background: var(--c-frost);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: var(--r-card);
  padding: var(--sp-4) var(--sp-5);
}
.cookie-copy { margin: 0; font-size: 14.5px; color: var(--c-ink); line-height: 1.45; }
.cookie-consent .btn-pill { flex-shrink: 0; padding: 11px 22px; font-size: 14px; }

/* ---- SECTION HEADERS ----------------------------------------------------- */
.section-head { margin-bottom: var(--sp-8); max-width: 40ch; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; max-width: 52ch; }

/* ---- AOS (calm fade-in-up) ----------------------------------------------- */
[data-aos] { opacity: 0; transform: translateY(20px); transition: opacity 0.6s var(--ease-calm), transform 0.6s var(--ease-calm); }
[data-aos].aos-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-aos] { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---- RESPONSIVE ---------------------------------------------------------- */
@media (max-width: 960px) {
  .exhibit-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-row, .feature-row.reverse,
  .exhibit-band-inner, .private-view-inner { grid-template-columns: 1fr; }
  .feature-row.reverse .feature-media { order: 0; }
  .feature-row.reverse .feature-copy { order: 0; }
  .verdict { grid-template-columns: 1fr; text-align: center; }
  .verdict-score .big { line-height: 1; }
  .band-list { text-align: left; }
  .foot-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .nav-links { gap: var(--sp-3); }
  .nav-link { display: none; }
  .nav-cta { display: inline-flex; }
  .exhibit-grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .foot-inner { grid-template-columns: 1fr; }
  .hero-figure .layer-type { left: var(--sp-5); right: var(--sp-5); bottom: var(--sp-5); }
  .cookie-consent { flex-direction: column; align-items: flex-start; }
}
