/* ============================================================
   RCR — Schedule page
   Dark, condensed, vintage-craft. Inspired by rochestercocktailrevival.com
   Built on tokens.css from The Ticketing Co design system.
   ============================================================ */

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: #0E0B0B;
  color: var(--fg-1);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* RCR runs darker than the Organizer dark token */
:root {
  --rcr-bg:        #0E0B0B;
  --rcr-bg-alt:    #161213;
  --rcr-bg-card:   #1B1717;
  --rcr-ink:       #F4E6D0;     /* warm cream */
  --rcr-ink-2:     #B5A78F;     /* tan */
  --rcr-ink-3:     #6E6258;     /* muted */
  --rcr-line:      rgba(244,230,208,0.12);
  --rcr-line-2:    rgba(244,230,208,0.22);
  --rcr-accent:    #C58F3D;     /* default accent gold */
  --rcr-rust:      #8C3A28;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

.app {
  min-height: 100vh;
  background: var(--rcr-bg);
  color: var(--rcr-ink);
}

/* =================== HERO =================== */

.hero {
  position: relative;
  border-bottom: 1px solid var(--rcr-line);
  padding: var(--sp-4) var(--sp-8) 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(197,143,61,0.10), transparent 60%),
    var(--rcr-bg);
}

.hero__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--sp-3) 0;
  border-bottom: 1px solid var(--rcr-line);
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__brand {
  display: flex; gap: var(--sp-3);
  align-items: baseline;
  color: var(--rcr-ink);
}
.hero__brand-line { font-weight: 600; }
.hero__brand-dates { color: var(--rcr-ink-2); }

.hero__sponsor {
  border: 1px solid var(--rcr-line-2);
  padding: 6px 14px;
  border-radius: 999px;
  color: var(--rcr-ink);
  transition: background 160ms;
}
.hero__sponsor:hover {
  background: var(--rcr-accent);
  color: #1a0e02;
  border-color: var(--rcr-accent);
}

.hero__body {
  text-align: center;
  padding: 64px 0 56px;
  position: relative;
}

.hero__year {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.4em;
  color: var(--rcr-accent);
  margin-bottom: 24px;
}

.hero__h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(80px, 14vw, 200px);
  line-height: 0.86;
  letter-spacing: -0.03em;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--rcr-ink);
}
.hero__h1 span:nth-child(2) {
  font-style: italic;
  font-weight: 500;
  font-size: 0.45em;
  color: var(--rcr-accent);
  letter-spacing: 0.05em;
  margin: -0.05em 0;
}

.hero__tagline {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rcr-ink-2);
  margin-bottom: 40px;
  line-height: 1.6;
}
.hero__tagline div + div { color: var(--rcr-accent); }

.hero__stats {
  display: flex;
  gap: 48px;
  justify-content: center;
  border-top: 1px solid var(--rcr-line);
  border-bottom: 1px solid var(--rcr-line);
  padding: 20px 0;
  margin: 0 auto;
  max-width: 800px;
}
.hero__stats > div {
  display: flex; flex-direction: column; align-items: center;
  gap: 4px;
}
.hero__stats strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.02em;
  color: var(--rcr-ink);
}
.hero__stats span {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rcr-ink-3);
}

.hero__nav {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 18px 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero__nav a {
  color: var(--rcr-ink-2);
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: color 160ms, border-color 160ms;
}
.hero__nav a:hover { color: var(--rcr-ink); }
.hero__nav a.active {
  color: var(--rcr-ink);
  border-bottom-color: var(--rcr-accent);
}

/* =================== MAIN =================== */

.main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px var(--sp-8) 80px;
}

.main--with-rail {
  max-width: 1480px;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 40px;
  align-items: start;
}
.main__content { min-width: 0; }

/* =================== RIGHT RAIL ACCORDION =================== */

.rail {
  position: sticky;
  top: 24px;
  border-left: 1px solid var(--rcr-line-2);
  padding-left: 24px;
  align-self: start;
}

.rail__heading {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--rcr-ink-3);
  margin-bottom: 20px;
}
.rail__heading > span:first-child { color: var(--rcr-accent); }
.rail__heading-rule {
  flex: 1;
  height: 1px;
  background: var(--rcr-line);
}

.rail__list {
  display: flex;
  flex-direction: column;
}

.rail__item {
  border-top: 1px solid var(--rcr-line);
}
.rail__item:last-child { border-bottom: 1px solid var(--rcr-line); }

.rail__btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  padding: 22px 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--rcr-ink);
  text-align: left;
  transition: color 160ms;
}
.rail__btn:hover { color: var(--rcr-accent); }
.rail__item--open .rail__btn { color: var(--rcr-accent); }

.rail__plus {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 28px;
  color: var(--rcr-ink-3);
  width: 32px;
  text-align: center;
  flex-shrink: 0;
}
.rail__item--open .rail__plus { color: var(--rcr-accent); }

.rail__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 280ms var(--ease-out);
}
.rail__item--open .rail__panel { grid-template-rows: 1fr; }
.rail__panel-inner {
  overflow: hidden;
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.6;
  color: var(--rcr-ink-2);
}
.rail__panel-inner > p {
  margin: 0 0 12px;
  padding-bottom: 4px;
}
.rail__panel-inner ul {
  list-style: none;
  margin: 0;
  padding: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.rail__panel-inner li a {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rcr-ink);
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color 160ms, border-color 160ms;
  width: max-content;
  max-width: 100%;
}
.rail__panel-inner li a:hover {
  color: var(--rcr-accent);
  border-bottom-color: var(--rcr-accent);
}
.rail__panel-inner strong { color: var(--rcr-ink); font-weight: 700; }

.rail__contact {
  margin-top: 32px;
  padding: 16px;
  background: var(--rcr-bg-alt);
  border: 1px solid var(--rcr-line);
  border-radius: 2px;
}
.rail__contact-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--rcr-accent);
  margin-bottom: 6px;
  text-transform: uppercase;
}
.rail__contact-mail {
  display: block;
  font-size: 12px;
  color: var(--rcr-ink-2);
  word-break: break-all;
  border-bottom: 1px solid var(--rcr-line);
  padding-bottom: 4px;
  transition: color 160ms;
}
.rail__contact-mail:hover { color: var(--rcr-ink); }


/* =================== FILTERS =================== */

.filters {
  border: 1px solid var(--rcr-line);
  background: var(--rcr-bg-alt);
  border-radius: 4px;
  margin-bottom: 56px;
}

.filters__row {
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid var(--rcr-line);
}
.filters__row:last-of-type { border-bottom: none; }

.filters__row--split {
  flex-wrap: wrap;
}

.filters__group {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.filters__group--right { margin-left: auto; }

.filters__label {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--rcr-ink-3);
  margin-right: 8px;
  min-width: 60px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--rcr-ink-2);
  border: 1px solid var(--rcr-line);
  padding: 6px 14px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 160ms;
  white-space: nowrap;
}
.chip:hover {
  color: var(--rcr-ink);
  border-color: var(--rcr-line-2);
}
.chip--active {
  background: var(--rcr-ink);
  color: #1a0e02;
  border-color: var(--rcr-ink);
}
.chip--active .cat-dot { box-shadow: 0 0 0 1px rgba(0,0,0,0.2); }

.cat-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.filters__select {
  appearance: none;
  background: var(--rcr-bg-card);
  color: var(--rcr-ink);
  border: 1px solid var(--rcr-line);
  padding: 7px 32px 7px 14px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 12px;
  cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'><path d='M3 5l3 3 3-3' stroke='%23B5A78F' stroke-width='1.5' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
}

.view-toggle {
  display: inline-flex;
  border: 1px solid var(--rcr-line);
  border-radius: 999px;
  padding: 3px;
}
.view-toggle__btn {
  background: transparent;
  color: var(--rcr-ink-2);
  border: none;
  padding: 5px 14px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 160ms;
}
.view-toggle__btn:hover { color: var(--rcr-ink); }
.view-toggle__btn.active {
  background: var(--rcr-accent);
  color: #1a0e02;
}

.filters__count {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
  background: var(--rcr-bg);
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--rcr-ink-2);
  letter-spacing: 0.04em;
  border-top: 1px solid var(--rcr-line);
}
.filters__count strong {
  color: var(--rcr-ink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  margin-right: 6px;
}
.filters__clear {
  background: none;
  border: none;
  color: var(--rcr-accent);
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.06em;
  cursor: pointer;
  text-transform: uppercase;
}
.filters__clear:hover { text-decoration: underline; }

/* =================== DAY HEADER =================== */

.day-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 56px 0 32px;
}
.day-group:first-child .day-header { margin-top: 0; }
.day-header__rule {
  flex: 1;
  height: 1px;
  background: var(--rcr-line-2);
}
.day-header__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 0.06em;
  margin: 0;
  color: var(--rcr-ink);
}
.day-header__count {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--rcr-accent);
}

.day-events {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* =================== ROW: EDITORIAL =================== */

.row--editorial {
  display: grid;
  grid-template-columns: 180px 1fr 200px;
  gap: 32px;
  padding: 32px 0;
  border-top: 1px solid var(--rcr-line);
  align-items: start;
  position: relative;
  transition: background 200ms;
}
.row--editorial:first-child { border-top: 1px solid var(--rcr-line-2); }
.row--editorial:last-child { border-bottom: 1px solid var(--rcr-line); }
.row--editorial:hover { background: rgba(244,230,208,0.02); }

.row__poster {
  width: 180px;
  aspect-ratio: 1 / 1;
  background: var(--rcr-bg-card);
  overflow: hidden;
  border-radius: 2px;
}

.row__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

.row__meta-top {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.18em;
}
.row__date { color: var(--rcr-accent); }
.row__time { color: var(--rcr-ink-2); }
.row__flag {
  background: var(--rcr-rust);
  color: var(--rcr-ink);
  padding: 3px 10px;
  border-radius: 2px;
  font-size: 10px;
  letter-spacing: 0.2em;
  margin-left: auto;
}

.row__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin: 0;
  text-transform: uppercase;
  color: var(--rcr-ink);
  text-wrap: balance;
}

.row__venue {
  display: flex;
  gap: 16px;
  align-items: baseline;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--rcr-ink-2);
}
.row__venue > span:first-child {
  color: var(--rcr-ink);
  font-weight: 600;
}
.row__addr { color: var(--rcr-ink-3); font-size: 12px; }

.row__desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--rcr-ink-2);
  max-width: 60ch;
  text-wrap: pretty;
}

.row__bottom {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 4px;
}

.cat-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rcr-ink-2);
}

.row__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
  padding-top: 4px;
}

.row__price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.01em;
  color: var(--rcr-ink);
}

.btn-buy {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--rcr-accent);
  color: #1a0e02;
  border: none;
  padding: 12px 20px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 160ms;
  border-radius: 2px;
}
.btn-buy:hover {
  background: var(--rcr-ink);
  color: #1a0e02;
}
.btn-buy .btn-arrow { transition: transform 160ms; }
.btn-buy:hover .btn-arrow { transform: translateX(3px); }

.btn-buy--ghost {
  background: transparent;
  color: var(--band-ink, var(--rcr-ink));
  border: 1px solid var(--band-ink, var(--rcr-ink));
}
.btn-buy--ghost:hover {
  background: var(--band-ink, var(--rcr-ink));
  color: var(--band-bg, #1a0e02);
}

/* =================== ROW: STUB =================== */

.row--stub {
  display: grid;
  grid-template-columns: 140px 12px 1fr 12px 110px;
  gap: 0;
  background: var(--rcr-bg-card);
  border: 1px solid var(--rcr-line);
  border-radius: 2px;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}
.list--stub .row--editorial { border-bottom: none; }

.stub__poster {
  background: var(--rcr-bg-card);
  width: 140px; height: 140px;
  align-self: center;
  margin: 16px;
}

.stub__perf {
  background-image: radial-gradient(circle, var(--rcr-bg) 2.5px, transparent 3px);
  background-size: 12px 12px;
  background-position: center;
  background-repeat: repeat-y;
  position: relative;
}
.stub__perf::before, .stub__perf::after {
  content: ""; position: absolute; left: -6px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--rcr-bg);
}
.stub__perf::before { top: -6px; }
.stub__perf::after { bottom: -6px; }

.stub__body {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

.stub__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--rcr-ink-3);
  letter-spacing: 0.1em;
}

.stub__serial { font-family: var(--font-mono); }
.stub__flag {
  background: var(--rcr-rust);
  color: var(--rcr-ink);
  padding: 3px 10px;
  border-radius: 2px;
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.2em;
}

.stub__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0;
  text-transform: uppercase;
  color: var(--rcr-ink);
}

.stub__meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 12px 0;
  border-top: 1px dashed var(--rcr-line-2);
  border-bottom: 1px dashed var(--rcr-line-2);
}

.stub__label {
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--rcr-ink-3);
  margin-bottom: 4px;
}
.stub__val {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--rcr-ink);
  font-weight: 500;
}

.stub__desc {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--rcr-ink-2);
}

.stub__tear {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 16px;
  background: var(--rcr-bg-alt);
}
.stub__price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--rcr-ink);
}
.btn-buy--vert {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  padding: 16px 8px;
  letter-spacing: 0.4em;
}
.btn-buy--vert .btn-arrow { transform: rotate(180deg); }

/* =================== ROW: BAND =================== */

.row--band {
  position: relative;
  display: grid;
  grid-template-columns: 200px 1fr 200px;
  gap: 32px;
  align-items: center;
  padding: 28px 32px;
  margin-bottom: 4px;
  background: var(--band-bg);
  color: var(--band-ink);
  overflow: hidden;
  border-radius: 2px;
}
.row--band:hover .band__overlay { opacity: 0.7; }

.band__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.25) 100%);
  pointer-events: none;
  transition: opacity 200ms;
}

.band__poster {
  position: relative;
  width: 160px;
  aspect-ratio: 1 / 1;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.45);
  transform: rotate(-2deg);
  transition: transform 220ms var(--ease-out);
}
.row--band:hover .band__poster { transform: rotate(0deg) scale(1.02); }

.band__body {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.band__top {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.22em;
}
.band__date { color: var(--band-ink); opacity: 0.85; }
.band__top .cat-badge { color: var(--band-ink); opacity: 0.9; }

.band__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 36px;
  line-height: 0.96;
  letter-spacing: -0.02em;
  margin: 0;
  text-transform: uppercase;
  color: var(--band-ink);
}

.band__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--band-ink);
  opacity: 0.85;
}
.band__dot { font-size: 6px; opacity: 0.6; }

.band__desc {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--band-ink);
  opacity: 0.78;
  max-width: 65ch;
}

.band__cta {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}
.band__price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  color: var(--band-ink);
}

/* =================== DENSITY =================== */

.density-compact .row--editorial { padding: 20px 0; gap: 24px; }
.density-compact .row__poster { width: 120px; }
.density-compact .row--editorial { grid-template-columns: 120px 1fr 160px; }
.density-compact .row__title { font-size: 24px; }
.density-compact .row__desc { display: none; }

.density-roomy .row--editorial { padding: 48px 0; gap: 40px; }
.density-roomy .row__poster { width: 220px; }
.density-roomy .row--editorial { grid-template-columns: 220px 1fr 220px; }
.density-roomy .row__title { font-size: 40px; }

.no-posters .row__poster,
.no-posters .stub__poster,
.no-posters .band__poster { display: none; }
.no-posters .row--editorial { grid-template-columns: 1fr 200px; }
.no-posters .row--stub { grid-template-columns: 1fr 12px 110px; }
.no-posters .row--stub > .stub__perf:first-of-type { display: none; }
.no-posters .row--band { grid-template-columns: 1fr 200px; }

/* =================== EMPTY =================== */

.empty {
  text-align: center;
  padding: 80px 0;
  border: 1px dashed var(--rcr-line);
}
.empty__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  letter-spacing: 0.04em;
  color: var(--rcr-ink);
}
.empty__sub {
  font-size: 14px;
  color: var(--rcr-ink-2);
  margin-top: 8px;
}

/* =================== CALENDAR =================== */

.cal {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  background: var(--rcr-line);
  border: 1px solid var(--rcr-line);
}
.cal__col {
  background: var(--rcr-bg);
  display: flex;
  flex-direction: column;
  min-height: 600px;
}
.cal__head {
  padding: 16px 12px 12px;
  border-bottom: 1px solid var(--rcr-line);
  text-align: center;
  background: var(--rcr-bg-alt);
}
.cal__day {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.18em;
  color: var(--rcr-accent);
}
.cal__date {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--rcr-ink);
  margin-top: 4px;
}
.cal__list {
  flex: 1;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cal__empty {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--rcr-ink-3);
  text-align: center;
  padding: 24px 0;
  letter-spacing: 0.1em;
}
.cal__item {
  background: var(--rcr-bg-card);
  border-left: 3px solid var(--rcr-accent);
  padding: 8px 10px;
  font-size: 11px;
  cursor: pointer;
  transition: background 160ms;
}
.cal__item:hover { background: var(--rcr-bg-alt); }
.cal__time {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--rcr-accent);
  margin-bottom: 2px;
}
.cal__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.02em;
  line-height: 1.15;
  color: var(--rcr-ink);
  margin-bottom: 2px;
  text-transform: uppercase;
  /* Clamp */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cal__venue {
  font-size: 10px;
  color: var(--rcr-ink-3);
}

/* =================== MAP =================== */

.map {
  position: relative;
  border: 1px solid var(--rcr-line);
  border-radius: 2px;
  overflow: hidden;
  background: var(--rcr-bg-alt);
}
.map__chrome {
  padding: 16px 24px;
  border-bottom: 1px solid var(--rcr-line);
}
.map__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.18em;
  color: var(--rcr-ink);
}
.map__sub {
  font-size: 12px;
  color: var(--rcr-ink-2);
  margin-top: 4px;
}
.map__svg {
  width: 100%;
  height: 500px;
  display: block;
  background: #0A0808;
}
.map__legend {
  padding: 12px 24px;
  font-size: 11px;
  color: var(--rcr-ink-3);
  border-top: 1px solid var(--rcr-line);
  letter-spacing: 0.06em;
  text-align: center;
}

/* =================== FOOTER =================== */

.footer {
  border-top: 1px solid var(--rcr-line-2);
  padding: 80px var(--sp-8) 32px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  background: var(--rcr-bg);
  align-items: start;
}

.footer__brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 36px;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--rcr-ink);
}
.footer__sub {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--rcr-accent);
  margin-top: 4px;
}
.footer__sub:first-of-type { margin-top: 16px; }

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.footer__nav a {
  color: var(--rcr-ink-2);
  transition: color 160ms;
  width: max-content;
  border-bottom: 1px solid transparent;
}
.footer__nav a:hover { color: var(--rcr-ink); border-bottom-color: var(--rcr-accent); }

.footer__copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--rcr-ink-3);
  letter-spacing: 0.06em;
}
.footer__socials {
  display: flex;
  gap: 16px;
}
.footer__socials a {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 11px;
  color: var(--rcr-ink-2);
  transition: color 160ms;
}
.footer__socials a:hover { color: var(--rcr-accent); }

/* =================== RESPONSIVE =================== */

@media (max-width: 1100px) {
  .main--with-rail {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .rail {
    position: static;
    border-left: none;
    border-top: 1px solid var(--rcr-line-2);
    padding: 56px 0 0;
    margin-top: 56px;
  }
  .rail__btn { font-size: 40px; }
}

@media (max-width: 960px) {
  .row--editorial,
  .density-compact .row--editorial,
  .density-roomy .row--editorial {
    grid-template-columns: 120px 1fr;
    gap: 20px;
  }
  .row__cta {
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-top: 0;
  }
  .row__title { font-size: 24px; }
  .row--stub {
    grid-template-columns: 100px 12px 1fr;
  }
  .row--stub > .stub__perf:nth-of-type(2),
  .row--stub > .stub__tear {
    display: none;
  }
  .stub__meta { grid-template-columns: repeat(2, 1fr); }
  .row--band { grid-template-columns: 120px 1fr; padding: 20px; }
  .row--band .band__cta { grid-column: 1 / -1; flex-direction: row; justify-content: space-between; }
  .footer { grid-template-columns: 1fr; }
  .hero__h1 { font-size: clamp(60px, 18vw, 120px); }
  .hero__nav { gap: 20px; flex-wrap: wrap; }
  .filters__row--split { flex-direction: column; align-items: stretch; }
  .filters__group--right { margin-left: 0; }
  .cal { grid-template-columns: repeat(7, minmax(120px, 1fr)); overflow-x: auto; }
}

/* Selection */
::selection { background: var(--rcr-accent); color: #1a0e02; }
