/* ==========================================================================
   LAComicsFestival vol.8 — clone (HTML / CSS / jQuery)
   Design tokens are declared twice: an sRGB hex fallback first, then the
   original oklch() value. Browsers that understand oklch use the exact
   colour; older ones fall back to the hex.
   ========================================================================== */

:root {
  --brick: #b94a00;      --brick: oklch(55% 0.16 45);
  --sky: #6eccd1;        --sky: oklch(79% 0.09 200);
  --deep: #3d2013;       --deep: oklch(28% 0.05 45);
  --ink: #26160e;        --ink: oklch(22% 0.03 50);
  --cream: #f9f2dc;      --cream: oklch(96% 0.03 92);
  --teal: #128184;       --teal: oklch(55% 0.09 197);
  --wine: #892122;       --wine: oklch(42% 0.14 25);
  --card: #fffaed;       --card: oklch(98.5% 0.018 88);
  --paper: #fbf3df;      --paper: oklch(96.5% 0.028 90);

  --ink-a80: rgba(38, 22, 14, .8);
  --ink-a85: rgba(38, 22, 14, .85);
  --ink-a75: rgba(38, 22, 14, .75);
  --ink-a70: rgba(38, 22, 14, .7);
  --ink-a60: rgba(38, 22, 14, .6);
  --ink-a30: rgba(38, 22, 14, .3);
  --ink-a05: rgba(38, 22, 14, .05);
  --sky-a40: rgba(110, 204, 209, .4);
  --sky-a30: rgba(110, 204, 209, .3);
  --sky-a50: rgba(110, 204, 209, .5);
  --cream-a90: rgba(249, 242, 220, .9);
  --cream-a70: rgba(249, 242, 220, .7);
  --cream-a50: rgba(249, 242, 220, .5);

  --font-display: "Fira Sans Extra Condensed", "Fira Sans Condensed", system-ui, sans-serif;
  --font-body: "Fira Sans", system-ui, -apple-system, "Segoe UI", sans-serif;

  --shadow-block: 6px 6px 0 var(--ink);
  --shadow-block-hover: 4px 4px 0 var(--ink);
  --shadow-block-press: 2px 2px 0 var(--ink);
  --text-shadow-block:
    1px 1px 0 var(--ink),
    2px 2px 0 var(--ink),
    3px 3px 0 var(--ink),
    4px 4px 0 var(--ink),
    5px 5px 0 var(--ink),
    6px 6px 0 var(--ink);
  --radius: .75rem;
  --wrap: 72rem;
  --header-h: 61px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
html:focus-within { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--deep);
  background: var(--paper);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, p, ul, ol { margin: 0; }
ul, ol { padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
:focus-visible { outline: 3px solid var(--brick); outline-offset: 2px; }

.skip-link {
  position: absolute;
  left: .75rem;
  top: -4rem;
  z-index: 200;
  padding: .5rem 1rem;
  background: var(--brick);
  color: var(--cream);
  font-family: var(--font-display);
  font-weight: 700;
  border-radius: .5rem;
}
.skip-link:focus { top: .75rem; }

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.01em;
  line-height: 1;
}

/* ---------- layout helpers ---------- */
.paper {
  min-height: 100vh;
  background-color: var(--cream);
  background-image:
    radial-gradient(var(--ink-a05) 1px, transparent 1px),
    radial-gradient(rgba(38, 22, 14, .04) 1px, transparent 1px);
  background-size: 14px 14px, 22px 22px;
}
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 1rem; }
.section { padding-block: 3rem; }
.section--inner { padding-block: 3rem; }
.section--tight { padding-block: 2.5rem; }
.band { border-block: 2px solid var(--ink); }
.band--top { border-block: 0; border-top: 2px solid var(--ink); }
.band--cream { background: var(--cream); }
.band--sky { background: var(--sky-a30); scroll-margin-top: 5rem; }
#programma, #alley, #ekthesis, #ypefthynoi { scroll-margin-top: 5rem; }
#xoros { display: none; }

.block-card {
  background: var(--card);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow-block);
  transition: transform .15s ease, box-shadow .15s ease;
}
.brick { color: var(--brick); }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 2px solid var(--ink-a80);
  background: var(--cream-a90);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition: box-shadow .2s ease;
}
.site-header.is-stuck { box-shadow: 0 6px 18px -12px rgba(38, 22, 14, .55); }
.header-inner {
  max-width: var(--wrap);
  margin-inline: auto;
  padding: .625rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
}
.brand { display: flex; align-items: center; gap: .625rem; min-width: 0; }
.brand-logo { width: 2.5rem; height: 2.5rem; flex-shrink: 0; object-fit: contain; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.125rem;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.main-nav {
  display: none;
  align-items: center;
  gap: 1.25rem;
  font-family: var(--font-display);
  font-size: .875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.main-nav a:hover, .main-nav a:focus-visible { color: var(--brick); }
.header-right { display: flex; align-items: center; gap: .5rem; flex-shrink: 0; }
.header-right .pill { display: none; }

.pill {
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: .25rem .75rem;
  font-family: var(--font-display);
  font-size: .875rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--ink);
  white-space: nowrap;
}
.pill--sky { background: var(--sky); }

.nav-toggle {
  width: 2.75rem; height: 2.5rem;
  display: grid; place-content: center; gap: 5px;
  border: 2px solid var(--ink);
  border-radius: .5rem;
  background: var(--card);
}
.nav-toggle span {
  display: block;
  width: 20px; height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .22s ease, opacity .18s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* mobile nav drawer */
@media (max-width: 767px) {
  .main-nav {
    position: absolute;
    inset-inline: 0;
    top: 100%;
    display: block;
    background: var(--cream);
    border-bottom: 2px solid var(--ink);
    padding: 0 1rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease, padding .3s ease;
  }
  .main-nav.is-open { max-height: 20rem; padding: .5rem 1rem 1rem; }
  .main-nav a {
    display: block;
    padding: .7rem .25rem;
    font-size: 1.0625rem;
    border-bottom: 1px dashed var(--ink-a30);
  }
  .main-nav a:last-child { border-bottom: 0; }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  height: auto;
  min-height: calc(100svh - var(--header-h));
  border-bottom: 2px solid var(--ink);
  background: var(--ink) url("../img/hero-poster.jpg") center / cover no-repeat;
}
.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  transition: opacity .45s ease;
}
.hero-media.is-ready { opacity: 1; }
.hero-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: calc(100svh - var(--header-h));
  padding: 1.25rem 0 1.5rem;
  background:
    linear-gradient(to top, rgba(38, 22, 14, .9) 0%, rgba(38, 22, 14, .68) 42%, rgba(38, 22, 14, .58) 100%);
}
.hero-bottom {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
}
.hero-copy { min-width: 0; }
.hero-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: .75rem;
  flex-shrink: 0;
}
.hero-logos img {
  display: block;
  height: 4.25rem;
  width: auto;
}
.hero-logos a:hover img,
.hero-logos a:focus-visible img { opacity: .85; }
.hero-kicker {
  font-family: var(--font-display);
  font-size: .9375rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--sky);
  text-shadow: var(--text-shadow-block);
}
.hero-title {
  margin-top: .25rem;
  max-width: 48rem;
  font-size: clamp(2.125rem, 11.5vw, 4.5rem);
  line-height: .95;
  overflow-wrap: break-word;
  color: var(--cream);
  text-shadow: var(--text-shadow-block);
}
.hero-date {
  margin-top: .5rem;
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(1.35rem, 6.5vw, 2.25rem);
  line-height: 1.15;
  color: var(--cream);
  text-shadow: var(--text-shadow-block);
}
.hero-actions {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: .625rem;
}
.hero-actions .btn { text-align: center; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: .625rem 1.5rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .025em;
  box-shadow: var(--shadow-block);
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn svg { width: 1.1rem; height: 1.1rem; flex-shrink: 0; display: block; }
.btn:hover, .btn:focus-visible {
  transform: translate(2px, 2px);
  box-shadow: var(--shadow-block-hover);
}
.btn:active {
  transform: translate(4px, 4px);
  box-shadow: var(--shadow-block-press);
}
.btn--brick { background: var(--brick); color: var(--cream); }
.btn--cream { background: var(--cream); color: var(--ink); }

/* ---------- stats ---------- */
.stats { border-bottom: 2px solid var(--ink); background: var(--sky-a40); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  text-align: center;
  padding-block: 1.5rem;
}
.stat { padding: .75rem .5rem; }
.stat-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.25rem;
  line-height: 1;
  color: var(--brick);
}
.stat-label {
  margin-top: .25rem;
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--ink-a70);
}

/* ---------- section heads ---------- */
.section-head { margin-bottom: 2rem; }
.kicker {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--teal);
}
.section-head h2 {
  font-size: clamp(1.875rem, 5.5vw, 3rem);
  color: var(--ink);
}
.rule { margin-top: .75rem; width: 7rem; height: .375rem; border-radius: 999px; background: var(--brick); }

/* ---------- about ---------- */
.about-grid { display: grid; gap: 2.5rem; }
.prose { display: grid; gap: 1rem; font-size: 1rem; line-height: 1.7; color: var(--ink-a85); }
.prose-shout {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--brick);
}
.prose-sign {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ink-a85);
}
.poster { width: 100%; }

/* ---------- guests ---------- */
.guests-grid { display: grid; gap: 1.25rem; }
.guest { padding: 1.25rem; }
.guest-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
}
.guest h3 { min-width: 0; font-size: 1.5rem; color: var(--brick); }
.guest-ig {
  flex-shrink: 0;
  width: 1.35rem;
  height: 1.35rem;
  color: var(--ink);
}
.guest-ig:hover,
.guest-ig:focus-visible { color: var(--brick); }
.guest-ig svg { width: 100%; height: 100%; display: block; }
.guest p { margin-top: .5rem; font-size: 1rem; line-height: 1.6; color: rgba(38, 22, 14, .8); }
.mural-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
  width: 100%;
}
.mural-note {
  border: 2px dashed rgba(185, 74, 0, .6);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.mural-note h3 { font-size: 1.25rem; color: var(--teal); }
.mural-note p { margin-top: .25rem; font-size: 1rem; color: rgba(38, 22, 14, .8); }

/* ---------- program ---------- */
.day-tabs {
  display: flex;
  gap: .5rem;
  margin-bottom: 1.5rem;
  overflow-x: auto;
  padding-bottom: .25rem;
  scrollbar-width: none;
}
.day-tabs::-webkit-scrollbar { display: none; }
.day-tab {
  flex: 0 0 auto;
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: .5rem 1rem;
  font-family: var(--font-display);
  font-size: .875rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .025em;
  background: var(--cream);
  color: var(--ink);
  transition: background-color .18s ease, color .18s ease;
}
.day-tab:hover { background: var(--sky-a50); }
.day-tab.is-active { background: var(--brick); color: var(--cream); }

.program-list { display: grid; gap: .75rem; }
.program-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: .5rem;
  padding: 1rem;
  background: var(--card);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow-block);
  transition: transform .15s ease, box-shadow .15s ease;
}
.block-card:hover,
.block-card:focus-visible,
.program-item:hover,
.program-item:focus-visible {
  transform: translate(2px, 2px);
  box-shadow: var(--shadow-block-hover);
}
.block-card:active,
.program-item:active {
  transform: translate(4px, 4px);
  box-shadow: var(--shadow-block-press);
}
.program-time {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 900;
  color: var(--wine);
}
.program-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--ink);
}
.program-body { min-width: 0; }
.program-desc { display: block; font-size: 1.0625rem; line-height: 1.6; color: var(--ink-a75); }
.program-venue {
  flex-shrink: 0;
  justify-self: start;
  max-width: 12rem;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--sky);
  padding: .25rem .75rem;
  font-family: var(--font-display);
  font-size: .875rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  color: var(--ink);
}

/* ---------- exhibitions ---------- */
.expo-grid { display: grid; gap: 1rem; }
.expo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .5rem;
  padding: 1.25rem;
}
.expo h3 { font-size: 1.25rem; line-height: 1.15; color: var(--ink); }
.expo p { font-size: 1.0625rem; color: var(--ink-a75); }
.expo .badge { margin-top: .15rem; }
.badge {
  flex-shrink: 0;
  max-width: none;
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: .25rem .75rem;
  font-family: var(--font-display);
  font-size: .875rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
}
.badge--brick { background: var(--brick); color: var(--cream); }

/* ---------- artist alley ---------- */
.alley-legend {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1rem;
}
.alley-legend-item {
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: .25rem .75rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
}
#artist-a, #artist-b, #artist-c { scroll-margin-top: 6.5rem; }
.alley-legend-item--a { background: var(--sky); color: var(--ink); }
.alley-legend-item--b { background: var(--brick); color: var(--cream); }
.alley-legend-item--c { background: var(--wine); color: var(--cream); }
.tag-cloud {
  display: grid;
  grid-template-columns: 1fr;
  gap: .35rem .45rem;
}
.tag {
  display: flex;
  align-items: center;
  gap: .35rem;
  min-width: 0;
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: .15rem .5rem .15rem .15rem;
  font-size: .875rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink);
}
.tag--a { background: var(--sky-a40); }
.tag--b { background: rgba(185, 74, 0, .28); }
.tag--c { background: rgba(137, 33, 34, .22); }
.tag-num {
  flex-shrink: 0;
  width: 1.4rem;
  height: 1.4rem;
  margin-right: 0;
  display: grid;
  place-items: center;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: .625rem;
  font-weight: 900;
  color: var(--cream);
}
.tag--a .tag-num { background: var(--teal); }
.tag--b .tag-num { background: var(--brick); }
.tag--c .tag-num { background: var(--wine); }
.tag-name {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.tag-link {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(38, 22, 14, .35);
  text-underline-offset: .12em;
}
.tag-link:hover,
.tag-link:focus-visible {
  color: var(--brick);
  text-decoration-color: currentColor;
}

/* ---------- venues ---------- */
.venues-grid { display: grid; gap: 2rem; }
.venue-list { display: grid; gap: .5rem; }
.venue-list li { display: flex; align-items: flex-start; gap: .75rem; }
.venue-num {
  margin-top: .125rem;
  width: 1.75rem; height: 1.75rem;
  flex-shrink: 0;
  display: grid; place-items: center;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--sky);
  font-family: var(--font-display);
  font-size: .875rem;
  font-weight: 900;
  color: var(--ink);
}
.venue-name { min-width: 0; font-size: .875rem; font-weight: 600; color: var(--ink-a85); }
.floorplan { margin-top: 2rem; width: 100%; }

/* ---------- υπεύθυνοι ---------- */
#ypefthynoi .section-head { margin-bottom: 1.25rem; }
.credits-list {
  display: grid;
  gap: 0 1.35rem;
}
.credits-list li {
  display: grid;
  gap: .1rem;
  padding-block: .35rem;
  border-bottom: 1px solid var(--ink-a30);
}
.credits-role {
  font-family: var(--font-display);
  font-size: .875rem;
  font-weight: 800;
  letter-spacing: .02em;
  line-height: 1.2;
  color: var(--ink);
}
.credits-name {
  font-size: .8125rem;
  font-weight: 600;
  color: var(--brick);
  line-height: 1.25;
}

/* ---------- footer ---------- */
.site-footer { border-top: 2px solid var(--ink); background: var(--ink); color: var(--cream); }
.footer-grid {
  display: grid;
  gap: 1.25rem;
  padding-block: 2.5rem;
  align-items: center;
  justify-items: center;
  text-align: center;
}
.footer-logo { width: 8rem; height: 8rem; }
.footer-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
}
.footer-sub,
.footer-credits {
  margin-top: .85rem;
  padding-top: .85rem;
  border-top: 1px solid rgba(249, 242, 220, .18);
  font-size: .875rem;
  line-height: 1.4;
  color: var(--cream-a70);
}
.footer-sub { font-weight: 600; }
.footer-social {
  margin-top: .6rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .45rem;
}
.footer-social a {
  width: 2.25rem;
  height: 2.25rem;
  display: grid;
  place-items: center;
  color: var(--cream);
  border-radius: .4rem;
}
.footer-social a:hover,
.footer-social a:focus-visible { color: var(--sky); }
.footer-social svg { width: 1.4rem; height: 1.4rem; display: block; }
.footer-bar { border-top: 1px solid rgba(249, 242, 220, .18); }
.footer-bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .35rem 1.25rem;
  padding-block: .85rem 1.1rem;
  font-size: .875rem;
  text-align: center;
  color: var(--cream-a70);
}
.footer-bar-inner a {
  color: var(--cream);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: .15em;
}
.footer-bar-inner a:hover,
.footer-bar-inner a:focus-visible { color: var(--sky); }
.footer-heart { color: #e25555; }

/* ---------- back to top ---------- */
.back-to-top {
  position: fixed;
  right: 1rem;
  bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
  z-index: 50;
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: .75rem;
  background: var(--brick);
  color: var(--cream);
  box-shadow: var(--shadow-block);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, box-shadow .15s ease;
}
.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
.back-to-top.is-visible:hover,
.back-to-top.is-visible:focus-visible {
  transform: translate(2px, 2px);
  box-shadow: var(--shadow-block-hover);
}
.back-to-top.is-visible:active {
  transform: translate(4px, 4px);
  box-shadow: var(--shadow-block-press);
}
.back-to-top svg { width: 1.25rem; height: 1.25rem; display: block; }

/* ==========================================================================
   Breakpoints
   ========================================================================== */

/* >= 640px (sm) */
@media (min-width: 640px) {
  .hero-kicker { font-size: 1.125rem; letter-spacing: .2em; }
  .hero-title { overflow-wrap: break-word; }
  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: .75rem;
  }
  .hero-actions .btn { width: auto; }
  .prose { font-size: 1.125rem; }
  .stat-num { font-size: 3rem; }
  .expo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .expo {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "title badge"
      "desc desc";
    align-items: start;
    column-gap: .75rem;
    row-gap: .5rem;
  }
  .expo h3 { grid-area: title; }
  .expo p { grid-area: desc; }
  .expo .badge { grid-area: badge; margin-top: 0; }
  .program-item {
    grid-template-columns: 9.5rem minmax(0, 1fr) auto;
    align-items: baseline;
    gap: 1rem;
  }
  .program-venue { justify-self: end; }
  .credits-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-title { font-size: 1.875rem; }
  .tag-cloud {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(66, auto);
    grid-auto-flow: column;
  }
}

/* >= 768px (md) */
@media (min-width: 768px) {
  .nav-toggle { display: none; }
  .header-right .pill { display: inline-block; }
  .hero {
    height: 70vh;
    min-height: 28rem;
  }
  .hero-overlay {
    position: absolute;
    inset: 0;
    min-height: 0;
    padding: 2.5rem 0;
  }
  .hero-bottom {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
  }
  .hero-logos { justify-content: flex-end; }
  .hero-logos img { height: 5.25rem; }
  .hero-kicker { letter-spacing: .3em; }
  .hero-title { font-size: clamp(2.25rem, 9vw, 4.5rem); line-height: .9; }
  .hero-date { margin-top: .75rem; }
  .main-nav { display: flex; }
  .stats-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .stats-grid .stat + .stat { border-left: 1px solid var(--ink-a30); }
  .about-grid { grid-template-columns: 1.2fr 1fr; align-items: center; }
  .guests-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .venues-grid { grid-template-columns: 1fr 20rem; align-items: start; }
  .footer-grid {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    justify-items: stretch;
    text-align: left;
  }
  .footer-logo { order: 1; justify-self: end; }
  .footer-social { justify-content: flex-start; }
  .footer-sub,
  .footer-credits {
    margin-top: .4rem;
    padding-top: 0;
    border-top: 0;
  }
  .footer-bar-inner { justify-content: space-between; text-align: left; }
  .section, .section--inner { padding-block: 4rem; }
  .section--tight { padding-block: 3.5rem; }
  .tag-cloud {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: repeat(44, auto);
    grid-auto-flow: column;
  }
}

/* >= 1024px (lg) */
@media (min-width: 1024px) {
  .credits-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-title { font-size: 2rem; }
  .tag-cloud {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-template-rows: repeat(22, auto);
    grid-auto-flow: column;
  }
}

@media (max-width: 767px) {
  .mural-notes { grid-template-columns: 1fr; }
  .day-tabs {
    position: sticky;
    top: var(--header-h);
    z-index: 4;
    background: var(--cream);
    padding-block: .5rem;
  }
  .alley-legend {
    position: sticky;
    top: var(--header-h);
    z-index: 4;
    background: var(--cream);
    padding-block: .5rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  html:focus-within { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .btn:hover, .btn:focus-visible, .btn:active,
  .back-to-top.is-visible:hover, .back-to-top.is-visible:focus-visible, .back-to-top.is-visible:active,
  .block-card:hover, .block-card:focus-visible, .block-card:active,
  .program-item:hover, .program-item:focus-visible, .program-item:active {
    transform: none;
    box-shadow: var(--shadow-block);
  }
  .hero-media { display: none; }
}

/* ---------- print ---------- */
@media print {
  .site-header, .nav-toggle, .hero-actions, .back-to-top { display: none !important; }
  .paper { background: #fff; }
  .block-card, .program-item { box-shadow: none; }
}
