/* ============================================================
   SESO — Summer's End Smokeout 2026 (unofficial fan site)
   Dark Northwoods / aurora festival theme. Mobile-first.
   ============================================================ */

:root {
  /* Night-forest base */
  --ink: #0a1410;          /* deepest background */
  --ink-2: #0f1d17;        /* raised surfaces */
  --ink-3: #16281f;        /* cards */
  --line: #23352b;         /* borders */

  /* Aurora accents */
  --aurora: #46f0a8;       /* primary green */
  --aurora-2: #35d3ff;     /* teal */
  --violet: #b98cff;       /* aurora violet */
  --ember: #ff8a3d;        /* festival ember/amber CTA */
  --ember-2: #ffb057;

  --text: #eaf5ee;
  --muted: #9fb7a9;

  --maxw: 1100px;
  --radius: 16px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);

  --font-display: "Anton", Impact, "Arial Narrow Bold", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--aurora); }

img { max-width: 100%; display: block; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

/* ---------------- Unofficial notice bar ---------------- */
.unofficial-bar {
  background: #05100b;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
  text-align: center;
  padding: 7px 16px;
  position: relative;
  z-index: 60;
}
.unofficial-bar p { margin: 0; }
.unofficial-bar a { color: var(--aurora-2); font-weight: 600; }

/* ---------------- Header / nav ---------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 20, 16, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  text-decoration: none;
  color: var(--text);
}
.brand-mark {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 2px;
  background: linear-gradient(120deg, var(--aurora), var(--aurora-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.brand-sub { font-family: var(--font-display); color: var(--ember); font-size: 1.1rem; }

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px; width: 22px;
  margin: 0 auto;
  background: var(--text);
  transition: transform 0.25s, opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-menu {
  display: none;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: var(--ink-2);
  border-bottom: 1px solid var(--line);
  flex-direction: column;
  padding: 10px 20px 18px;
  gap: 2px;
}
.nav-menu.open { display: flex; }
.nav-menu a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  padding: 12px 6px;
  border-bottom: 1px solid var(--line);
}
.nav-menu a:last-child { border-bottom: none; }
.nav-menu .nav-ticket { margin-top: 10px; text-align: center; }

/* Secondary nav link — deliberately quiet, not competing with Lineup/Tickets */
.nav-menu a.nav-secondary { color: var(--muted); font-weight: 500; }
.nav-menu a.nav-secondary:hover { color: var(--text); }

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-block;
  font-weight: 700;
  text-decoration: none;
  border-radius: 999px;
  padding: 12px 22px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
  border: 1px solid transparent;
}
.btn:active { transform: translateY(1px); }
.btn-lg { padding: 15px 30px; font-size: 1.05rem; }

.btn-ticket {
  background: linear-gradient(120deg, var(--ember), var(--ember-2));
  color: #2a1200;
  box-shadow: 0 10px 26px rgba(255, 138, 61, 0.35);
}
.btn-ticket:hover { filter: brightness(1.06); transform: translateY(-2px); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-color: var(--aurora);
}
.btn-ghost:hover { background: rgba(70, 240, 168, 0.12); transform: translateY(-2px); }

/* ---------------- Hero ---------------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 64px 20px 72px;
  text-align: center;
  isolation: isolate;
  background:
    radial-gradient(120% 90% at 50% -10%, #123125 0%, var(--ink) 60%);
}
.hero-aurora {
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 70%;
  background:
    radial-gradient(60% 100% at 20% 0%, rgba(70, 240, 168, 0.30), transparent 60%),
    radial-gradient(55% 100% at 75% 10%, rgba(53, 211, 255, 0.24), transparent 60%),
    radial-gradient(50% 100% at 50% 0%, rgba(185, 140, 255, 0.20), transparent 65%);
  filter: blur(24px);
  z-index: -3;
  animation: aurora-drift 14s ease-in-out infinite alternate;
}
@keyframes aurora-drift {
  from { transform: translateX(-3%) scaleY(1); opacity: 0.85; }
  to   { transform: translateX(4%) scaleY(1.08); opacity: 1; }
}
.hero-stars {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    radial-gradient(1.5px 1.5px at 12% 18%, #fff, transparent),
    radial-gradient(1.5px 1.5px at 28% 42%, #cfe, transparent),
    radial-gradient(1px 1px at 47% 12%, #fff, transparent),
    radial-gradient(1.5px 1.5px at 63% 30%, #fff, transparent),
    radial-gradient(1px 1px at 78% 15%, #dff, transparent),
    radial-gradient(1.5px 1.5px at 88% 40%, #fff, transparent),
    radial-gradient(1px 1px at 38% 55%, #fff, transparent);
  opacity: 0.5;
}
.hero-pines {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 120px;
  z-index: -1;
  background:
    repeating-linear-gradient(135deg, transparent 0 26px, rgba(6, 16, 11, 0.9) 26px 30px);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='120' viewBox='0 0 240 120'%3E%3Cpath fill='%23000' d='M0 120h240V96l-18-10 6-4-16-12 6-4-18-14-16 14 6 4-16 12 6 4-16 10-14-14 5-4-15-12 5-4-16-12-16 12 5 4-15 12 5 4-16 14 6 4-16 12 6 4L0 96z'/%3E%3C/svg%3E") repeat-x bottom / 240px 120px;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='120' viewBox='0 0 240 120'%3E%3Cpath fill='%23000' d='M0 120h240V96l-18-10 6-4-16-12 6-4-18-14-16 14 6 4-16 12 6 4-16 10-14-14 5-4-15-12 5-4-16-12-16 12 5 4-15 12 5 4-16 14 6 4-16 12 6 4L0 96z'/%3E%3C/svg%3E") repeat-x bottom / 240px 120px;
}

.hero-inner { position: relative; max-width: 900px; margin: 0 auto; }
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--aurora);
  margin: 0 0 14px;
}
.hero-title { margin: 0; line-height: 0.92; }
.hero-title-line {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 22vw, 11rem);
  letter-spacing: 3px;
  background: linear-gradient(120deg, var(--aurora) 0%, var(--aurora-2) 45%, var(--violet) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 60px rgba(70, 240, 168, 0.25);
}
.hero-title-sub {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 4.6vw, 2.1rem);
  letter-spacing: 1px;
  color: var(--text);
  margin-top: 6px;
}
.hero-facts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 12px;
  margin: 22px auto 0;
  color: var(--muted);
  font-weight: 500;
  max-width: 640px;
}
.hero-facts .dot { color: var(--line); }
.badge-21 {
  background: var(--ember);
  color: #2a1200;
  font-weight: 800;
  padding: 2px 10px;
  border-radius: 999px;
}

/* Countdown */
.countdown {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 30px auto 8px;
  flex-wrap: wrap;
}
.cd-unit {
  min-width: 74px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 8px;
  backdrop-filter: blur(4px);
}
.cd-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.3rem;
  line-height: 1;
  color: var(--aurora);
  font-variant-numeric: tabular-nums;
}
.cd-label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.62rem;
  color: var(--muted);
  margin-top: 6px;
}
.countdown-live {
  font-family: var(--font-display);
  color: var(--aurora);
  font-size: 1.4rem;
  letter-spacing: 1px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 26px;
}

/* ---------------- Sections ---------------- */
.section { padding: 62px 0; border-top: 1px solid var(--line); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 7vw, 3.4rem);
  letter-spacing: 1px;
  line-height: 1;
  margin: 0 0 24px;
}
.section-title .tk {
  background: linear-gradient(120deg, var(--aurora), var(--aurora-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lede { font-size: 1.25rem; color: var(--text); max-width: 760px; }
.body { color: var(--muted); max-width: 760px; }
.body strong { color: var(--text); }
.center { text-align: center; margin-left: auto; margin-right: auto; }
.note {
  color: var(--ember-2);
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 18px;
}
.subhead {
  font-family: var(--font-display);
  letter-spacing: 1px;
  font-size: 1.5rem;
  margin: 36px 0 16px;
}

/* About chips */
.about-chips {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.about-chips li {
  border: 1px solid var(--line);
  background: var(--ink-3);
  color: var(--text);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
}

/* ---------------- Lineup ---------------- */
.poster { margin: 0; }
.zoomable {
  display: block;
  position: relative;
  width: 100%;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink-2);
  cursor: zoom-in;
  box-shadow: var(--shadow);
}
.zoomable img { width: 100%; height: auto; }
.zoom-hint {
  position: absolute;
  right: 12px; bottom: 12px;
  background: rgba(5, 16, 11, 0.82);
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  pointer-events: none;
}
figcaption {
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
  margin-top: 12px;
}

.headliners {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.headliners li {
  font-family: var(--font-display);
  letter-spacing: 0.5px;
  font-size: 1.35rem;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(180deg, var(--ink-3), var(--ink-2));
  position: relative;
  padding-left: 40px;
}
.headliners li::before {
  content: "";
  position: absolute;
  left: 16px; top: 50%;
  width: 10px; height: 10px;
  transform: translateY(-50%) rotate(45deg);
  background: linear-gradient(120deg, var(--aurora), var(--aurora-2));
  border-radius: 2px;
}

/* ---------------- Map ---------------- */
.map-figure { margin: 20px 0 0; }

/* ---------------- Know Before You Go ---------------- */
.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.info-card {
  border: 1px solid var(--line);
  background: var(--ink-3);
  border-radius: var(--radius);
  padding: 20px;
}
.info-card h3 {
  margin: 0 0 6px;
  font-size: 1.1rem;
  color: var(--aurora);
}
.info-card p { margin: 0; color: var(--muted); }
.info-card.highlight {
  border-color: var(--ember);
  background: linear-gradient(160deg, rgba(255, 138, 61, 0.14), var(--ink-3));
}
.info-card.highlight h3 { color: var(--ember-2); }

/* ---------------- Get Involved ---------------- */
.involved-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.involved-card {
  display: block;
  text-decoration: none;
  color: var(--text);
  border: 1px solid var(--line);
  background: var(--ink-3);
  border-radius: var(--radius);
  padding: 22px;
  transition: transform 0.15s, border-color 0.15s, background 0.15s;
}
.involved-card:hover {
  transform: translateY(-3px);
  border-color: var(--aurora);
  background: var(--ink-2);
}
.involved-card h3 { margin: 0 0 6px; font-size: 1.2rem; }
.involved-card p { margin: 0 0 12px; color: var(--muted); }
.link-cue { color: var(--aurora); font-weight: 700; font-size: 0.95rem; }

/* ---------------- Official links ---------------- */
.official { background: linear-gradient(180deg, var(--ink), #06110c); }
.official-note {
  color: var(--muted);
  max-width: 760px;
  margin: 0 0 26px;
}
.official-note strong { color: var(--aurora); }
.official-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.official-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-decoration: none;
  color: var(--text);
  border: 1px solid var(--line);
  background: var(--ink-3);
  border-radius: var(--radius);
  padding: 20px 22px;
  transition: transform 0.15s, border-color 0.15s;
}
.official-card:hover { transform: translateY(-3px); border-color: var(--aurora-2); }
.oc-kicker {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.7rem;
  color: var(--muted);
  font-weight: 700;
}
.oc-title { font-weight: 700; font-size: 1.12rem; }
.official-card.primary {
  border-color: var(--ember);
  background: linear-gradient(150deg, rgba(255, 138, 61, 0.18), var(--ink-3));
}
.official-card.primary .oc-title { color: var(--ember-2); }

/* ---------------- Nurhop page ---------------- */
.nurhop-lede { font-size: 1.2rem; color: var(--text); max-width: 720px; }
.campsite-card {
  border: 1px solid var(--line);
  background: var(--ink-3);
  border-radius: var(--radius);
  padding: 24px;
  max-width: 720px;
  margin-top: 8px;
}
.campsite-card h3 {
  font-family: var(--font-display);
  letter-spacing: 1px;
  font-size: 1.5rem;
  margin: 0 0 12px;
}
.campsite-details {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  gap: 10px;
}
.campsite-details li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px dashed var(--line);
  padding-top: 10px;
  color: var(--muted);
}
.campsite-details .cd-key { font-weight: 600; color: var(--text); }
.campsite-details .cd-val { color: var(--ember-2); font-weight: 600; }
.unofficial-label {
  display: block;
  margin-top: 18px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}
.nurhop-cta { margin-top: 28px; }

/* ---------------- Footer ---------------- */
.site-footer {
  border-top: 1px solid var(--line);
  background: #05100b;
  padding: 40px 0;
  text-align: center;
}
.footer-title {
  font-family: var(--font-display);
  letter-spacing: 1px;
  font-size: 1.4rem;
  margin: 0 0 6px;
}
.footer-line { color: var(--muted); margin: 0 0 14px; }
.footer-unofficial { color: var(--muted); font-size: 0.85rem; margin: 0; }
.footer-unofficial a { color: var(--aurora-2); font-weight: 600; }
.footer-credit { color: var(--muted); font-size: 0.82rem; margin: 12px 0 0; }
.footer-credit a { color: var(--aurora-2); font-weight: 600; }

/* ---------------- Lightbox ---------------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(3, 8, 6, 0.96);
  display: flex;
  flex-direction: column;
}
.lightbox[hidden] { display: none; }
.lightbox-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  flex: 0 0 auto;
}
.lightbox-hint { color: var(--muted); font-size: 0.82rem; }
.lightbox-close {
  width: 44px; height: 44px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--ink-3);
  color: var(--text);
  font-size: 1.1rem;
  cursor: pointer;
}
.lightbox-stage {
  flex: 1 1 auto;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  display: grid;
  place-items: center;
  touch-action: pinch-zoom pan-x pan-y;
}
.lightbox-stage img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  transition: transform 0.05s linear;
  cursor: zoom-in;
  user-select: none;
}
.lightbox-stage.zoomed { place-items: start; }
.lightbox-stage.zoomed img { max-width: none; max-height: none; cursor: zoom-out; }

/* ---------------- Reveal on scroll ---------------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
  .reveal.in { opacity: 1; transform: none; }
}

/* ---------------- Responsive ---------------- */
@media (min-width: 620px) {
  .info-grid { grid-template-columns: repeat(2, 1fr); }
  .involved-grid { grid-template-columns: repeat(2, 1fr); }
  .official-grid { grid-template-columns: repeat(2, 1fr); }
  .headliners { grid-template-columns: repeat(2, 1fr); }
  .map-figure { max-width: 620px; margin-left: auto; margin-right: auto; }
}

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .nav-menu {
    display: flex;
    position: static;
    flex-direction: row;
    align-items: center;
    background: none;
    border: none;
    padding: 0;
    gap: 22px;
  }
  .nav-menu a { border: none; padding: 6px 0; font-size: 0.95rem; }
  .nav-menu .nav-ticket { margin-top: 0; padding: 10px 20px; }
  .info-grid { grid-template-columns: repeat(3, 1fr); }
  .official-grid { grid-template-columns: repeat(3, 1fr); }
  .headliners { grid-template-columns: repeat(3, 1fr); }
  .poster { max-width: 780px; margin: 0 auto; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-aurora { animation: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   2026 SCHEDULE
   ============================================================ */

/* Per-stage accent (never color alone — every stage is also
   labelled by name and marked with a patterned dot). */
.stage-big    { --stg: var(--ember);    --stg-soft: rgba(255, 138, 61, 0.14); }
.stage-forest { --stg: var(--aurora);   --stg-soft: rgba(70, 240, 168, 0.13); }
.stage-dab    { --stg: var(--aurora-2); --stg-soft: rgba(53, 211, 255, 0.13); }

.wrap-wide { max-width: 1280px; }

.schedule { background: linear-gradient(180deg, #06110c, var(--ink)); }

/* Stage production credits key */
.stage-key {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px 18px;
  margin: 22px 0 8px;
}
.sk-item { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 0.92rem; }
.sk-item strong { color: var(--text); }
.sk-dot {
  width: 14px; height: 14px; flex: 0 0 auto;
  border-radius: 4px;
  background: var(--stg);
  box-shadow: 0 0 10px var(--stg);
}

/* ---- controls (sticky when scrolling the schedule) ---- */
.sched-controls {
  position: sticky;
  top: 60px;
  z-index: 30;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 14px 24px;
  margin: 20px 0 22px;
  padding: 14px;
  background: rgba(6, 17, 12, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.control-group { display: flex; flex-direction: column; gap: 8px; }
.control-label {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--muted);
}
.day-tabs { display: flex; flex-wrap: wrap; gap: 8px; }
.day-tab {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  min-width: 84px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--ink-3);
  color: var(--text);
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.15s, background 0.15s, transform 0.1s;
}
.day-tab:hover { border-color: var(--aurora); }
.day-tab .dt-day { font-family: var(--font-display); font-size: 1.05rem; letter-spacing: 0.5px; }
.day-tab .dt-date { font-size: 0.74rem; color: var(--muted); }
.day-tab.active {
  border-color: transparent;
  background: linear-gradient(120deg, var(--aurora), var(--aurora-2));
  color: #05100b;
}
.day-tab.active .dt-date { color: #05231a; }

.stage-filters { display: flex; flex-wrap: wrap; gap: 8px; }
.stage-filter {
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--ink-3);
  color: var(--text);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.15s, background 0.15s;
}
.stage-filter:hover { border-color: var(--aurora); }
.stage-filter.active { background: var(--text); color: var(--ink); border-color: var(--text); }
.stage-filter.sf-big.active    { background: var(--ember);    border-color: var(--ember);    color: #2a1200; }
.stage-filter.sf-forest.active { background: var(--aurora);   border-color: var(--aurora);   color: #05231a; }
.stage-filter.sf-dab.active    { background: var(--aurora-2); border-color: var(--aurora-2); color: #042430; }

.sched-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-left: auto; align-self: center; }
.sched-btn { padding: 10px 18px; font-size: 0.92rem; cursor: pointer; font-family: inherit; }
.sched-btn[aria-pressed="true"] { background: rgba(70, 240, 168, 0.14); }

/* Visible focus for all schedule controls */
.day-tab:focus-visible,
.stage-filter:focus-visible,
.sched-btn:focus-visible,
.zoomable:focus-visible {
  outline: 3px solid var(--aurora-2);
  outline-offset: 2px;
}

.sched-day-caption {
  color: var(--muted);
  font-weight: 600;
  margin: 0 0 12px;
}

/* ---- desktop timetable ---- */
.sched-grid { display: none; } /* shown at wider widths */
.sched-corner { }
.col-head {
  padding: 10px 6px 12px;
  border-bottom: 3px solid var(--stg);
  text-align: center;
}
.col-head .col-dot {
  display: inline-block;
  width: 12px; height: 12px;
  border-radius: 4px;
  background: var(--stg);
  box-shadow: 0 0 10px var(--stg);
  margin-bottom: 6px;
}
.col-stage {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: 0.5px;
  font-size: 1.15rem;
  color: var(--text);
}
.col-credit { margin: 2px 0 0; font-size: 0.76rem; color: var(--muted); line-height: 1.3; }

.roaming-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
  padding: 10px 16px;
  border-radius: 10px;
  background: linear-gradient(120deg, rgba(185, 140, 255, 0.22), rgba(255, 138, 61, 0.16));
  border: 1px solid var(--violet);
}
.rb-label {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--violet);
}
.rb-name { font-family: var(--font-display); font-size: 1.1rem; letter-spacing: 0.5px; }
.rb-note { color: var(--muted); font-size: 0.85rem; }

.sched-axis { position: relative; }
.axis-tick { position: absolute; left: 0; right: 6px; transform: translateY(-50%); }
.axis-time {
  font-size: 0.72rem;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.col-track {
  position: relative;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.015);
  background-image: repeating-linear-gradient(
    to bottom,
    transparent 0 calc(var(--grid-step) - 1px),
    var(--line) calc(var(--grid-step) - 1px) var(--grid-step)
  );
}
.time-card {
  position: absolute;
  left: 4px; right: 4px;
  overflow: hidden;
  padding: 7px 9px 8px 12px;
  border-radius: 9px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--stg);
  background: linear-gradient(180deg, var(--ink-3), var(--ink-2));
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}
.tc-artist { margin: 0; font-weight: 700; font-size: 0.95rem; line-height: 1.15; color: var(--text); }
.tc-time { margin: 2px 0 0; font-size: 0.8rem; color: var(--stg); font-variant-numeric: tabular-nums; font-weight: 600; }
.tc-note { margin: 4px 0 0; font-size: 0.72rem; color: var(--muted); line-height: 1.3; }
.col-empty { color: var(--muted); font-size: 0.85rem; padding: 12px 8px; }

/* set labels / badges */
.set-badges { list-style: none; display: flex; flex-wrap: wrap; gap: 4px; padding: 0; margin: 5px 0 0; }
.set-badge {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 999px;
  border: 1px solid;
  white-space: nowrap;
}
.badge-b2b       { color: var(--aurora-2); border-color: var(--aurora-2); background: rgba(53, 211, 255, 0.12); }
.badge-takeover  { color: var(--violet);   border-color: var(--violet);   background: rgba(185, 140, 255, 0.14); }
.badge-surprise  { color: var(--ember-2);  border-color: var(--ember);    background: rgba(255, 138, 61, 0.14); }
.badge-comedy    { color: #ffd36b;         border-color: #e9b949;         background: rgba(233, 185, 73, 0.14); }
.badge-roaming   { color: var(--violet);   border-color: var(--violet);   background: rgba(185, 140, 255, 0.14); }
.badge-extended  { color: var(--aurora);   border-color: var(--aurora);   background: rgba(70, 240, 168, 0.12); }
.badge-featured  { color: #ff9ea6;         border-color: #ff6b78;         background: rgba(255, 107, 120, 0.14); }
.badge-latenight { color: #cdd9ff;         border-color: #7f93d6;         background: rgba(127, 147, 214, 0.14); }

/* ---- mobile / chronological card list ---- */
.sched-list { display: grid; gap: 12px; margin-top: 6px; }
.list-card {
  padding: 14px 16px 15px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--stg);
  border-radius: var(--radius);
  background: var(--ink-3);
}
.lc-stage {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--stg);
}
.lc-stage .stage-dot { width: 10px; height: 10px; border-radius: 3px; background: var(--stg); box-shadow: 0 0 8px var(--stg); }
.lc-artist { margin: 6px 0 2px; font-size: 1.25rem; font-weight: 700; line-height: 1.15; }
.lc-time { margin: 0; font-size: 1rem; font-weight: 600; color: var(--text); font-variant-numeric: tabular-nums; }
.lc-note { margin: 8px 0 0; font-size: 0.85rem; color: var(--muted); }
.roaming-card { border-left-color: var(--violet); background: linear-gradient(120deg, rgba(185, 140, 255, 0.12), var(--ink-3)); }
.roaming-card .lc-stage { color: var(--violet); }

/* ---- full weekend view ---- */
.sched-weekend { margin-top: 8px; }
.sched-weekend[hidden] { display: none; }
.sched-weekend:focus { outline: none; }
.weekend-print-head { display: none; }
.weekend-day { margin: 0 0 30px; padding-top: 20px; border-top: 1px solid var(--line); }
.weekend-day-title {
  display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap;
  font-family: var(--font-display); letter-spacing: 1px;
  font-size: 1.8rem; margin: 0 0 14px;
}
.weekend-day-title .wd-day {
  background: linear-gradient(120deg, var(--aurora), var(--aurora-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.weekend-day-title .wd-date { font-family: var(--font-body); font-size: 0.95rem; font-weight: 600; color: var(--muted); letter-spacing: 0; }
.weekend-roaming { margin: 0 0 14px; color: var(--muted); font-size: 0.9rem; }
.weekend-roaming strong { color: var(--violet); }
.weekend-stages { display: grid; grid-template-columns: 1fr; gap: 18px; }
.weekend-stage { border: 1px solid var(--line); border-left: 5px solid var(--stg); border-radius: 12px; padding: 14px 16px; background: var(--ink-2); }
.weekend-stage-title { margin: 0 0 10px; font-size: 1.05rem; color: var(--stg); display: flex; flex-direction: column; }
.weekend-stage-credit { font-size: 0.72rem; color: var(--muted); font-weight: 500; }
.weekend-set-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.weekend-set { display: flex; gap: 12px; padding: 7px 0; border-top: 1px dashed var(--line); }
.weekend-set:first-child { border-top: none; }
.ws-time { flex: 0 0 118px; color: var(--muted); font-size: 0.82rem; font-variant-numeric: tabular-nums; font-weight: 600; padding-top: 1px; }
.ws-body { display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 8px; }
.ws-artist { font-weight: 700; }
.ws-note { flex-basis: 100%; color: var(--muted); font-size: 0.82rem; }
.ws-badge {
  font-size: 0.6rem; font-weight: 800; letter-spacing: 0.5px; text-transform: uppercase;
  padding: 1px 6px; border-radius: 999px; border: 1px solid var(--line); color: var(--muted);
}

/* ---- lineup full list ---- */
.lineup-count { font-family: var(--font-body); font-size: 0.85rem; font-weight: 600; color: var(--muted); letter-spacing: 0; }
.lineup-list {
  list-style: none; padding: 0; margin: 14px 0 0;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px 14px;
}
.lineup-list li {
  position: relative; padding-left: 18px; font-weight: 600; font-size: 0.98rem; color: var(--text);
}
.lineup-list li::before {
  content: ""; position: absolute; left: 0; top: 0.55em;
  width: 7px; height: 7px; transform: rotate(45deg);
  background: linear-gradient(120deg, var(--aurora), var(--aurora-2)); border-radius: 1px;
}
.lineup-cta { margin-top: 30px; }

/* ---- poster gallery ---- */
.poster-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 24px; }
.poster-card { margin: 0; }
.poster-card .zoomable { cursor: zoom-in; }
.poster-card figcaption { margin-top: 10px; }
.poster-card figcaption strong { color: var(--text); }
.poster-card figcaption a { font-weight: 600; }

/* ============================================================
   RESPONSIVE — schedule
   ============================================================ */
@media (min-width: 620px) {
  .stage-key { grid-template-columns: 1fr; }
  .weekend-stages { grid-template-columns: repeat(3, 1fr); }
}

/* Switch from stacked cards to the desktop timetable only when there
   is genuinely room for readable columns. */
@media (min-width: 860px) {
  .sched-list { display: none; }
  .sched-grid { display: grid; column-gap: 14px; row-gap: 8px; align-items: start; }
  .poster-gallery { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 900px) {
  .lineup-list { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   PRINT — clean full four-day schedule, no chrome
   ============================================================ */
@media print {
  .unofficial-bar,
  .site-header,
  .hero,
  .about,
  .lineup,
  .map,
  .info,
  .involved,
  .official,
  .graphics,
  .site-footer,
  .lightbox,
  .sched-controls,
  .stage-key,
  .sched-day-panel,
  .sched-day-caption {
    display: none !important;
  }

  html, body { background: #fff !important; color: #000 !important; }
  .section { padding: 0 !important; border: none !important; }
  .schedule { background: #fff !important; }
  .schedule .section-title,
  .schedule .lede { display: none !important; }

  .sched-weekend, .sched-weekend[hidden] { display: block !important; }
  .weekend-print-head { display: block !important; text-align: center; margin-bottom: 16px; }
  .wp-title { font-family: var(--font-display); font-size: 1.5rem; margin: 0 0 4px; }
  .wp-sub { margin: 0; font-size: 0.85rem; color: #333; }

  .weekend-day { break-inside: avoid; border-top: 2px solid #000; }
  .weekend-day-title .wd-day { color: #000 !important; -webkit-text-fill-color: #000; }
  .weekend-day-title .wd-date { color: #333 !important; }
  .weekend-stages { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .weekend-stage { background: #fff !important; border: 1px solid #000; border-left: 4px solid #000; break-inside: avoid; }
  .weekend-stage-title { color: #000 !important; }
  .weekend-stage-credit { color: #333 !important; }
  .ws-time, .ws-note, .weekend-stage-credit { color: #333 !important; }
  .ws-artist { color: #000 !important; }
  .ws-badge { border-color: #666; color: #333; }
  .weekend-roaming, .weekend-roaming strong { color: #000 !important; }
  a[href]::after { content: ""; } /* don't print URLs */
}
