:root {
  --ink: #171612;
  --ink-soft: #24221d;
  --cream: #fffaf1;
  --white: #ffffff;
  --pink: #f6c7d8;
  --pink-strong: #f07aad;
  --purple: #6c5073;
  --purple-dark: #4f3a56;
  --yellow: #fff34f;
  --muted: #695f63;
  --line: rgba(23, 22, 18, .18);
  --radius: 26px;
  --max: 1180px;
  --shadow-hard: 8px 8px 0 var(--ink);
  --shadow-soft: 0 24px 70px rgba(23, 22, 18, .18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 108px; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 5%, rgba(255, 243, 79, .42), transparent 18rem),
    linear-gradient(180deg, var(--pink) 0 460px, var(--cream) 460px 100%);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .11;
  background-image:
    linear-gradient(var(--ink) 1px, transparent 1px),
    linear-gradient(90deg, var(--ink) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, #000, transparent 72%);
}
img { display: block; max-width: 100%; }
a { color: inherit; }
.container { width: min(var(--max), calc(100% - 44px)); margin-inline: auto; }
.skip-link, .sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); }
.skip-link:focus { width: auto; height: auto; clip: auto; z-index: 999; padding: 12px 16px; background: var(--yellow); }

.site-header {
  position: fixed;
  inset: 18px 20px auto;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 66px;
  padding: 10px 12px;
  border: 2px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  color: var(--white);
  background: rgba(23, 22, 18, .94);
  box-shadow: 0 18px 55px rgba(23, 22, 18, .25);
  backdrop-filter: blur(16px);
  transition: transform .25s ease, min-height .25s ease;
}
.site-header::after {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: -7px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--pink), var(--pink-strong), var(--yellow));
}
.site-header.is-scrolled { min-height: 58px; transform: translateY(-7px); }
.brand { display: inline-flex; align-items: center; gap: 10px; padding-right: 12px; border-radius: 999px; text-decoration: none; margin-left: 15px; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--yellow);
  font-family: "Archivo Black", Inter, sans-serif;
  font-size: 12px;
  box-shadow: inset 7px 7px 0 var(--pink), inset -7px -7px 0 rgba(108, 80, 115, .45);
}
.brand-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo img {
  display: block;
  width: auto;
  height: 58px;
  max-width: 120px;
}

.site-header.is-scrolled .brand-logo img {
  height: 48px;
}

@media (max-width: 760px) {
  .brand-logo img {
    height: 46px;
    max-width: 96px;
  }

  .site-header.is-scrolled .brand-logo img {
    height: 42px;
  }
}
.brand-text { font-size: 13px; font-weight: 900; text-transform: uppercase; letter-spacing: .04em; }
.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav a {
  border-radius: 999px;
  padding: 10px 12px;
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .05em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}
.site-nav a:hover, .site-nav a:focus-visible { outline: none; color: var(--ink); background: var(--yellow); transform: translateY(-1px); }
.nav-toggle { display: none; border: 0; background: transparent; padding: 8px; cursor: pointer; }
.nav-toggle span:not(.sr-only) { display: block; width: 27px; height: 2px; margin: 5px 0; border-radius: 99px; background: var(--white); }

h1, h2, h3, p { margin: 0; }
h1, h2 {
  font-family: "Archivo Black", Inter, sans-serif;
  line-height: .98;
  letter-spacing: -.045em;
  text-transform: uppercase;
}
h1 { font-size: clamp(42px, 7vw, 86px); max-width: 780px; }
h2 { font-size: clamp(28px, 3.6vw, 48px); max-width: 780px; }
h3 { font-size: clamp(19px, 1.6vw, 25px); line-height: 1.08; letter-spacing: -.035em; }
.eyebrow { margin-bottom: 12px; color: var(--purple-dark); font-size: 12px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.lead { max-width: 650px; margin-top: 18px; color: var(--ink-soft); font-size: clamp(17px, 1.55vw, 21px); }
.lead-small { margin-top: 18px; color: var(--muted); font-size: 18px; }
.section { padding: 92px 0; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 34px; margin-bottom: 30px; }
.section-head > p { max-width: 440px; color: var(--muted); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 45px;
  padding: 0 17px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  background: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .05em;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform .18s ease, box-shadow .18s ease;
}
.button:hover { transform: translate(-2px, -2px); box-shadow: 8px 8px 0 var(--ink); }
.button-ghost { background: var(--cream); }

.hero { position: relative; padding: 116px 0 56px; overflow: hidden; }
.hero::after {
  content: "JAZZ";
  position: absolute;
  right: -4vw;
  bottom: -2vw;
  z-index: -1;
  color: rgba(108, 80, 115, .08);
  font-family: "Archivo Black", Inter, sans-serif;
  font-size: clamp(150px, 24vw, 380px);
  line-height: .8;
}
.hero-image {
  width: min(1460px, calc(100% - 42px));
  margin-inline: auto;
  border: 2px solid var(--ink);
  border-radius: 28px;
  overflow: hidden;
  background: var(--pink);
  box-shadow: 12px 12px 0 var(--purple-dark);
  transform: rotate(-.45deg);
}
.hero-image img { width: 100%; height: clamp(330px, 51vw, 690px); object-fit: cover; object-position: center top; }
.hero-panel {
  position: relative;
  z-index: 2;
  margin-top: -58px;
  padding: clamp(25px, 4vw, 44px);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, .96);
  box-shadow: 10px 10px 0 var(--yellow), var(--shadow-soft);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 24px; }

.ticker { overflow: hidden; border-block: 2px solid var(--ink); background: var(--ink); color: var(--yellow); }
.ticker-track { display: flex; width: max-content; animation: ticker 26s linear infinite; }
.ticker span { display: inline-flex; padding: 13px 24px; font-family: "Archivo Black", Inter, sans-serif; font-size: 18px; text-transform: uppercase; white-space: nowrap; }
.ticker span::after { content: "·"; margin-left: 24px; color: var(--pink); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.split { display: grid; grid-template-columns: .92fr 1.08fr; gap: 56px; align-items: start; }
.copy-block { display: grid; gap: 18px; color: var(--ink-soft); font-size: 18px; }

.program { border-block: 2px solid var(--ink); background: var(--cream); }
.program-toolbar {
  position: sticky;
  top: 92px;
  z-index: 20;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: fit-content;
  margin-bottom: 18px;
  padding: 8px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--white);
  box-shadow: 6px 6px 0 var(--purple-dark);
}
.day-tab {
  min-width: 62px;
  border: 0;
  border-radius: 999px;
  padding: 11px 16px;
  color: var(--ink);
  background: transparent;
  font: 900 13px/1 Inter, sans-serif;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}
.day-tab:hover { transform: translateY(-1px); background: var(--pink); }
.day-tab.active { background: var(--ink); color: var(--yellow); }
.program-meta { display: flex; justify-content: space-between; gap: 16px; margin-bottom: 26px; padding-top: 8px; border-top: 2px solid var(--ink); color: var(--muted); font-size: 13px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.lineup-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(18px, 2.4vw, 30px); }
.lineup-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(22px, 3vw, 34px);
}

.artist-card {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  border-radius: var(--radius);
  background: var(--ink);
  transition: transform .25s ease, box-shadow .25s ease;
}

.artist-card:hover {
  transform: translateY(-6px);
  box-shadow: 10px 10px 0 var(--ink), 0 20px 45px rgba(23, 22, 18, .22);
}

.artist-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  z-index: 0;
  filter: saturate(.98) contrast(1.02);
  transition: transform .35s ease, filter .35s ease;
}

.artist-card:hover > img {
  transform: scale(1.045);
  filter: saturate(1.08) contrast(1.05);
}

.artist-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(23, 22, 18, .78) 0%,
    rgba(23, 22, 18, .42) 32%,
    rgba(23, 22, 18, .10) 68%,
    rgba(23, 22, 18, .02) 100%
  );
  pointer-events: none;
}

.artist-card::after {
  display: none;
}

.artist-card-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  padding: 18px;
  color: #fff;
  inset: auto 14px 18px;
  gap: 8px;
}

.artist-card-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 2px;
}

.artist-card-kicker span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 23px;
  padding: 4px 8px;
  border-radius: 0;
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 3px 3px 0 rgba(23, 22, 18, .9);
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.artist-card h3 {
  display: inline;
  width: fit-content;
  max-width: 94%;
  margin: 0;
  padding: 4px 8px 6px;
  overflow: visible;
  background: var(--yellow);
  color: var(--ink);
  font-family: "Archivo Black", Inter, sans-serif;
  font-size: clamp(19px, 1.45vw, 25px);
  line-height: .98;
  letter-spacing: -.045em;
  text-transform: uppercase;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.artist-card p {
  display: none;
}

.artist-card .more-link {
  display: inline-flex;
  justify-self: start;
  align-items: center;
  width: fit-content;
  min-height: 32px;
  margin-top: 2px;
  padding: 0 12px;
  border: 2px solid var(--yellow);
  border-radius: 999px;
  color: var(--yellow);
  background: rgba(23, 22, 18, .52);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .06em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.artist-card .more-link:hover {
  background: var(--yellow);
  color: var(--ink);
}

.artist-card[hidden] {
  display: none;
}

.location-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 32px; align-items: stretch; }
.practical { background: var(--pink); border-block: 2px solid var(--ink); }
.practical-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.info-card {
  padding: 24px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 7px 7px 0 rgba(23, 22, 18, .88);
}
.info-card h3 { margin-bottom: 11px; font-family: "Archivo Black", Inter, sans-serif; text-transform: uppercase; }
.info-card p { color: var(--ink-soft); }
.dark-card { background: var(--ink); color: var(--white); }
.dark-card p { color: rgba(255,255,255,.82); }
.dark-card .button { margin-top: 18px; }

.faq-list { display: grid; gap: 12px; max-width: 900px; }
.faq-list details {
  border: 2px solid var(--ink);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 5px 5px 0 var(--ink);
  overflow: hidden;
}
.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 19px 20px;
  cursor: pointer;
  font-weight: 900;
  text-transform: uppercase;
}
.faq-list summary::after { content: "+"; color: var(--purple-dark); font-family: "Archivo Black", Inter, sans-serif; font-size: 24px; }
.faq-list details[open] summary::after { content: "–"; }
.faq-list details p { padding: 0 20px 20px; color: var(--muted); }

.site-footer { padding: 34px 0; color: var(--white); background: var(--ink); }
.footer-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px; font-size: 13px; font-weight: 800; text-transform: uppercase; }
.footer-inner strong { color: var(--yellow); }

.artist-page { padding-top: 86px; }
.back-link { display: inline-flex; margin-bottom: 24px; color: var(--ink); font-weight: 900; text-transform: uppercase; text-decoration: none; }
.back-link:hover { text-decoration: underline; }
.artist-hero-grid { display: grid; grid-template-columns: 1fr minmax(320px, 520px); gap: 34px; align-items: end; }
.artist-photo { margin: 0; border: 2px solid var(--ink); border-radius: 24px; overflow: hidden; background: var(--pink); box-shadow: var(--shadow-hard); }
.artist-photo img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.artist-tags { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 22px; }
.artist-tags span { padding: 8px 11px; border: 2px solid var(--ink); border-radius: 999px; background: var(--yellow); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.artist-content { display: grid; grid-template-columns: 1fr 330px; gap: 24px; align-items: start; padding-top: 0; }
.artist-bio h2 { font-size: clamp(24px, 2.6vw, 36px); margin-bottom: 18px; }
.artist-bio div { display: grid; gap: 15px; color: var(--ink-soft); font-size: 18px; }
.artist-side { position: sticky; top: 108px; }
.media-section { padding-top: 0; }
.media-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.media-embed { overflow: hidden; border: 2px solid var(--ink); border-radius: 20px; background: var(--white); box-shadow: var(--shadow-hard); }
.media-embed iframe { display: block; width: 100%; min-height: 315px; border: 0; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .lineup-grid { grid-template-columns: repeat(2, 1fr); }
  .split, .location-grid, .artist-hero-grid, .artist-content { grid-template-columns: 1fr; }
  .practical-grid, .media-grid { grid-template-columns: 1fr; }
  .artist-side { position: static; }
}
@media (max-width: 760px) {
  .site-header { inset: 12px 12px auto; border-radius: 24px; align-items: flex-start; flex-wrap: wrap; }
  .brand-text { display: none; }
  .nav-toggle { display: block; margin-left: auto; }
  .site-nav { display: none; flex-basis: 100%; flex-direction: column; align-items: stretch; padding: 6px 0 3px; }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 13px 14px; }
  .hero { padding-top: 104px; }
  .hero-panel { margin-top: -30px; }
  .section { padding: 66px 0; }
  .section-head { display: grid; gap: 14px; }
  .program-toolbar { top: 82px; width: 100%; justify-content: space-between; border-radius: 22px; }
  .day-tab { flex: 1; min-width: 0; }
  .program-meta { display: grid; gap: 7px; }
  .lineup-grid { grid-template-columns: 1fr; }
  .artist-card {
    min-height: 0;
  }

  .artist-card h3 {
    font-size: clamp(22px, 8vw, 34px);
  }
  h1 { font-size: clamp(38px, 13vw, 62px); }
  h2 { font-size: clamp(26px, 9vw, 40px); }
}

.admin-login-page,
.admin-page {
  background: #f8cbdf;
  color: #2b1730;
}

.admin-login {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.admin-login-card {
  width: min(420px, 100%);
  background: #fff;
  border: 2px solid #6c5073;
  border-radius: 28px;
  padding: 32px;
  box-shadow: 12px 12px 0 #6c5073;
}

.admin-login-card h1 {
  margin-bottom: 8px;
  font-size: 28px;
}

.admin-login-card p {
  margin-bottom: 24px;
}

.admin-login-card label {
  display: block;
  margin-bottom: 16px;
  font-weight: 700;
}

.admin-login-card input {
  width: 100%;
  margin-top: 6px;
  padding: 13px 14px;
  border: 2px solid #6c5073;
  border-radius: 14px;
  font: inherit;
}

.admin-error {
  margin-bottom: 18px;
  padding: 12px 14px;
  border-radius: 14px;
  background: #ffe8e8;
  color: #8a1f1f;
  font-weight: 700;
}

.admin-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 18px 28px;
  background: #6c5073;
  color: #fff;
}

.admin-header div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.admin-header span {
  font-size: 13px;
  opacity: 0.8;
}

.admin-header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.admin-header a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.admin-main {
  width: min(1180px, calc(100% - 32px));
  margin: 40px auto;
}

.admin-main h1 {
  font-size: 34px;
  margin-bottom: 24px;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 28px;
}

.admin-stats article {
  background: #fff;
  border: 2px solid #6c5073;
  border-radius: 22px;
  padding: 24px;
  box-shadow: 8px 8px 0 #6c5073;
}

.admin-stats span {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
}

.admin-stats strong {
  font-size: 42px;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.day-tab {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.artist-card[hidden] {
  display: none;
}

.hero-image img {
  transform: translateY(var(--parallax-y, 0));
  transition: transform 0.1s linear;
}

@media (max-width: 760px) {
  .admin-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-stats {
    grid-template-columns: 1fr;
  }
}

.admin-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.admin-title-row p {
  margin-top: 8px;
  color: rgba(43, 23, 48, .72);
}

.admin-filter {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.admin-filter input {
  width: min(420px, 100%);
  padding: 13px 14px;
  border: 2px solid #6c5073;
  border-radius: 999px;
  font: inherit;
}

.admin-table-wrap {
  overflow-x: auto;
  background: #fff;
  border: 2px solid #6c5073;
  border-radius: 24px;
  box-shadow: 10px 10px 0 #6c5073;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 860px;
}

.admin-table th,
.admin-table td {
  padding: 16px;
  border-bottom: 1px solid rgba(108, 80, 115, .22);
  text-align: left;
  vertical-align: middle;
}

.admin-table th {
  color: #6c5073;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.admin-table td small {
  display: block;
  max-width: 520px;
  margin-top: 5px;
  color: rgba(43, 23, 48, .68);
}

.admin-table tr:last-child td {
  border-bottom: 0;
}

.admin-thumb {
  width: 74px;
  height: 74px;
  border: 2px solid #6c5073;
  border-radius: 14px;
  object-fit: cover;
  background: #f8cbdf;
}

.admin-no-image {
  display: inline-flex;
  padding: 8px 10px;
  border-radius: 999px;
  background: #f2edf4;
  color: #6c5073;
  font-size: 12px;
  font-weight: 800;
}

.admin-badge {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-badge.active {
  background: #dbffe6;
  color: #116327;
}

.admin-badge.inactive {
  background: #ffe5e5;
  color: #8a1f1f;
}

.admin-table-actions {
  text-align: right;
}

.button-small {
  min-height: 36px;
  padding: 0 12px;
  font-size: 11px;
  box-shadow: 4px 4px 0 var(--ink);
}

.admin-empty,
.admin-success {
  padding: 22px;
  border: 2px solid #6c5073;
  border-radius: 22px;
  background: #fff;
  box-shadow: 8px 8px 0 #6c5073;
}

.admin-success {
  margin-bottom: 22px;
  background: #dbffe6;
  color: #116327;
  font-weight: 900;
}

.admin-form {
  display: grid;
  gap: 22px;
}

.admin-form-card {
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 2px solid #6c5073;
  border-radius: 24px;
  background: #fff;
  box-shadow: 8px 8px 0 #6c5073;
}

.admin-form-card h2 {
  font-size: 24px;
  margin-bottom: 4px;
}

.admin-form label {
  display: grid;
  gap: 7px;
  font-weight: 900;
}

.admin-form input[type="text"],
.admin-form input[type="url"],
.admin-form input[type="number"],
.admin-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 2px solid #6c5073;
  border-radius: 14px;
  font: inherit;
  background: #fff;
}

.admin-form textarea {
  resize: vertical;
}

.admin-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.admin-checkbox {
  display: flex !important;
  align-items: center;
  gap: 10px !important;
  align-self: end;
  padding: 13px 0;
}

.admin-checkbox input {
  width: 20px;
  height: 20px;
}

.admin-image-preview {
  width: 220px;
  overflow: hidden;
  border: 2px solid #6c5073;
  border-radius: 18px;
  background: #f8cbdf;
}

.admin-image-preview img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.admin-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

@media (max-width: 760px) {
  .admin-title-row,
  .admin-filter,
  .admin-form-grid {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .admin-filter input {
    width: 100%;
  }
}

.admin-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.admin-tabs a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border: 2px solid #6c5073;
  border-radius: 999px;
  background: #fff;
  color: #6c5073;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.admin-tabs a.active {
  background: #6c5073;
  color: #fff;
}

.admin-artist-cell {
  display: flex;
  align-items: center;
  gap: 12px;
}

.admin-thumb.small {
  width: 46px;
  height: 46px;
  border-radius: 10px;
}

.admin-form select,
.admin-form input[type="date"],
.admin-form input[type="time"] {
  width: 100%;
  padding: 13px 14px;
  border: 2px solid #6c5073;
  border-radius: 14px;
  font: inherit;
  background: #fff;
}

.admin-table-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  align-items: center;
}

.admin-inline-form {
  display: inline-flex;
  margin: 0;
}

.button-danger {
  background: #ffe5e5;
  color: #8a1f1f;
  border-color: #8a1f1f;
  box-shadow: 4px 4px 0 #8a1f1f;
}

.button-danger:hover {
  box-shadow: 6px 6px 0 #8a1f1f;
}

.admin-form input[type="file"] {
  width: 100%;
  padding: 13px 14px;
  border: 2px dashed #6c5073;
  border-radius: 14px;
  font: inherit;
  background: #fff;
}

@media (max-width: 760px) {
  .admin-table-actions {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

.artist-card {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.artist-card .more-link {
  display: none !important;
}

.artist-card:focus-visible {
  outline: 4px solid var(--yellow);
  outline-offset: 5px;
}

.food-page {
  padding-top: 86px;
}

.food-hero {
  padding-bottom: 40px;
}

.menu-category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.menu-card,
.foodtruck-card {
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 8px 8px 0 var(--ink);
}

.menu-card {
  padding: 24px;
}

.menu-card h3,
.foodtruck-content h3 {
  margin-bottom: 18px;
  font-family: "Archivo Black", Inter, sans-serif;
  text-transform: uppercase;
}

.menu-list,
.foodtruck-menu {
  display: grid;
  gap: 14px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.menu-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.menu-item strong {
  display: block;
  font-weight: 900;
}

.menu-item p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}

.menu-item span {
  flex: 0 0 auto;
  color: var(--purple-dark);
  font-weight: 900;
  white-space: nowrap;
}

.food-section {
  border-top: 2px solid var(--ink);
  background: var(--pink);
}

.foodtruck-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.foodtruck-card figure {
  margin: 0;
  border-bottom: 2px solid var(--ink);
}

.foodtruck-card figure img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.foodtruck-content {
  padding: 22px;
}

.foodtruck-content > p {
  margin-bottom: 20px;
  color: var(--ink-soft);
}

@media (max-width: 980px) {
  .menu-category-grid,
  .foodtruck-grid {
    grid-template-columns: 1fr;
  }
}

.admin-edit-details {
  position: relative;
}

.admin-edit-details summary {
  list-style: none;
  cursor: pointer;
}

.admin-edit-details summary::-webkit-details-marker {
  display: none;
}

.admin-mini-form {
  position: absolute;
  right: 0;
  top: 46px;
  z-index: 30;
  width: min(420px, 90vw);
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 2px solid #6c5073;
  border-radius: 18px;
  background: #fff;
  box-shadow: 8px 8px 0 #6c5073;
}

.admin-mini-form label {
  display: grid;
  gap: 6px;
  font-weight: 900;
}

.admin-mini-form input[type="text"],
.admin-mini-form input[type="number"],
.admin-mini-form textarea {
  width: 100%;
  padding: 11px 12px;
  border: 2px solid #6c5073;
  border-radius: 12px;
  font: inherit;
}

.admin-stats {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 980px) {
  .admin-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .admin-stats {
    grid-template-columns: 1fr;
  }
}

.admin-table td {
  vertical-align: middle;
}

.admin-table td.admin-table-actions {
  display: table-cell !important;
  vertical-align: middle !important;
  text-align: right;
  white-space: nowrap;
}

.admin-table td.admin-table-actions .button,
.admin-table td.admin-table-actions .admin-inline-form {
  display: inline-flex;
  vertical-align: middle;
}

.admin-table td.admin-table-actions .admin-inline-form {
  margin: 0 0 0 8px;
}

.admin-table td.admin-table-actions .button {
  align-items: center;
  justify-content: center;
}

.artist-bio-text {
  white-space: pre-line;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.75;
}

.artist-bio-text p {
  margin: 0 0 16px;
}

.artist-socials {
  display: flex !important;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 14px;
  width: fit-content;
  max-width: 100%;
  margin-top: 26px;
}

.artist-social-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 10px 18px 10px 10px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
  text-decoration: none;
  box-shadow: 6px 6px 0 var(--ink);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  width: auto;
  flex: 0 0 auto;
}

.artist-social-link:hover {
  transform: translate(-2px, -2px);
  box-shadow: 9px 9px 0 var(--ink);
  background: var(--pink);
}

.artist-social-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--ink);
  color: var(--yellow);
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

.artist-social-link span:last-child {
  display: grid;
  gap: 1px;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.artist-social-link small {
  color: var(--purple-dark);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
@media (max-width: 760px) {
  .hero-image img {
    object-position: left top;
  }
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 100;
  pointer-events: none;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner-content {
  width: min(920px, 100%);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 18px;
  border: 2px solid var(--ink);
  border-radius: 24px;
  background: rgba(255, 250, 241, .98);
  color: var(--ink);
  box-shadow: 10px 10px 0 var(--ink);
  pointer-events: auto;
}

.cookie-banner strong {
  display: block;
  margin-bottom: 4px;
  font-family: "Archivo Black", Inter, sans-serif;
  font-size: 18px;
  line-height: 1;
  text-transform: uppercase;
}

.cookie-banner p {
  max-width: 620px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.cookie-banner-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 12px;
}

.cookie-btn {
  min-height: 40px;
  padding-inline: 15px;
  font-size: 11px;
}

@media (max-width: 760px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .cookie-banner-content {
    display: grid;
    gap: 16px;
    padding: 16px;
    border-radius: 20px;
  }

  .cookie-banner-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .cookie-btn {
    width: 100%;
  }
}

.foodtruck-socials {
  width: auto;
  margin-top: 22px;
}

.foodtruck-socials .artist-social-link {
  width: auto !important;
  max-width: max-content;
  flex: 0 0 auto;
}
.foodtruck-socials {
  gap: 10px;
  margin-top: 18px;
}

.foodtruck-socials .artist-social-link {
  min-height: 44px;
  padding: 7px 13px 7px 7px;
  gap: 9px;
  box-shadow: 4px 4px 0 var(--ink);
}

.foodtruck-socials .artist-social-link:hover {
  box-shadow: 6px 6px 0 var(--ink);
}

.foodtruck-socials .artist-social-icon {
  width: 30px;
  height: 30px;
  font-size: 14px;
}

.foodtruck-socials .artist-social-link span:last-child {
  font-size: 11px;
  line-height: 1;
}

.foodtruck-socials .artist-social-link small {
  font-size: 8px;
}