/* ============================================================
   The Wandering Groove — css/style.css
   Design system ported directly from wandering-groove-handbill.html
   ============================================================ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ── DESIGN TOKENS (copied verbatim from handbill :root) ── */
:root {
  --paper:   #e8dcc8;
  --aged:    #d8c8a8;
  --ink:     #1a0f05;
  --red:     #8b2a10;
  --rust:    #a83818;
  --brown:   #4a3020;
  --smoke:   #7a6a58;
  --faded:   #b0a090;

  /* Plyr theming */
  --plyr-color-main: #8b2a10;
  --plyr-audio-controls-background: #1a0f05;
  --plyr-audio-control-color: #e8dcc8;
  --plyr-range-fill-background: #8b2a10;
  --plyr-range-track-height: 4px;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'Lora', Georgia, serif;
  overflow-x: hidden;
}

/* Grain texture over everything (copied from handbill body::after) */
body::after {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.09;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

/* ── NAV (copied from handbill) ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--ink);
  border-bottom: 3px solid var(--red);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 3rem;
}

.nav-logo {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--paper);
  text-decoration: none;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.nav-links {
  display: flex; gap: 2.5rem; list-style: none;
}

.nav-links a {
  font-family: 'Libre Baskerville', serif;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(232,220,200,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--paper); }

/* Mobile nav */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--paper);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem;
}

@media (max-width: 768px) {
  nav { padding: 0.8rem 1.2rem; }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--ink);
    padding: 1rem 2rem;
    gap: 1rem;
    border-top: 1px solid rgba(232,220,200,0.1);
  }
  .nav-links.nav-open { display: flex; }
  .nav-hamburger { display: flex; }
}

/* ── HERO (copied from handbill) ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 7rem 2rem 5rem;
  overflow: hidden;
  background-image: url('../images/band-hero.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

/* Dark gradient overlay */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(10,5,2,0.55) 0%,
      rgba(10,5,2,0.40) 40%,
      rgba(10,5,2,0.65) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Sepia tint */
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(80,40,10,0.18);
  z-index: 2;
  pointer-events: none;
}

/* Outer border frame */
.poster-frame {
  position: absolute;
  inset: 20px;
  border: 2px solid rgba(232,220,200,0.45);
  pointer-events: none;
  z-index: 3;
}
.poster-frame::before {
  content: '';
  position: absolute; inset: 5px;
  border: 1px solid rgba(232,220,200,0.2);
}
.poster-frame::after {
  content: '';
  position: absolute; inset: 8px;
  border: 0.5px solid rgba(232,220,200,0.1);
}

/* Corner ornaments */
.corner {
  position: absolute;
  width: 24px; height: 24px;
  z-index: 4;
  pointer-events: none;
}
.corner svg { width: 100%; height: 100%; }
.corner-tl { top: 14px; left: 14px; }
.corner-tr { top: 14px; right: 14px; transform: scaleX(-1); }
.corner-bl { bottom: 14px; left: 14px; transform: scaleY(-1); }
.corner-br { bottom: 14px; right: 14px; transform: scale(-1,-1); }

.hero-content { position: relative; z-index: 5; max-width: 800px; }

.hero-presenting {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 0.9rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(232,220,200,0.75);
  margin-bottom: 0.75rem;
}

/* Top rule (copied from handbill .rule-dbl) */
.rule-dbl {
  width: 220px;
  margin: 0 auto 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 3px;
  align-items: center;
}
.rule-dbl span {
  display: block;
  height: 2px;
  background: rgba(232,220,200,0.5);
}
.rule-dbl span:first-child { width: 100%; }
.rule-dbl span:last-child  { width: 70%; opacity: 0.4; }

.hero-title-top {
  font-family: 'Special Elite', cursive;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: rgba(232,220,200,0.85);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 0.1rem;
}

.hero-title-main {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(4rem, 13vw, 8rem);
  line-height: 0.85;
  color: var(--paper);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 0.1rem;
  text-shadow: 0 2px 24px rgba(0,0,0,0.7), 0 0 60px rgba(0,0,0,0.4);
}

.hero-title-sub {
  font-family: 'Special Elite', cursive;
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  color: rgba(232,220,200,0.9);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
}

.rule-dotted {
  width: 80%;
  margin: 1.4rem auto;
  height: 1px;
  border-top: 1px dashed rgba(232,220,200,0.4);
}

.hero-genres {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: clamp(0.7rem, 1.5vw, 0.88rem);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(232,220,200,0.75);
  margin-bottom: 1rem;
}

.hero-tagline {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: clamp(0.9rem, 1.8vw, 1.1rem);
  color: rgba(232,220,200,0.88);
  max-width: 40ch;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.hero-cta {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
}

.hero .btn-outline {
  color: var(--paper);
  border-color: rgba(232,220,200,0.6);
}
.hero .btn-outline:hover {
  background: rgba(232,220,200,0.12);
  border-color: var(--paper);
  color: var(--paper);
}

/* ── BUTTONS (copied from handbill) ── */
.btn {
  display: inline-block;
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.7rem 2rem;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-primary { background: var(--ink); color: var(--paper); }
.btn-primary:hover { background: var(--red); color: var(--paper); }
.btn-outline { background: transparent; color: var(--ink); border: 2px solid var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--paper); }

/* Fade in on load */
.hero-content { animation: fadeUp 0.9s 0.2s ease both; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── SECTION BASE (copied from handbill) ── */
section { padding: 6rem 2rem; position: relative; }
.section-inner { max-width: 1100px; margin: 0 auto; }

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

/* Section rule (copied from handbill) */
.section-rule {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.8rem;
}
.section-rule::before,
.section-rule::after {
  content: '';
  flex: 1;
  height: 2px;
  background: var(--ink);
}
.section-rule-label {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  white-space: nowrap;
}

.section-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1;
}

.section-sub {
  font-family: 'Special Elite', cursive;
  font-size: 0.9rem;
  color: var(--smoke);
  margin-top: 0.5rem;
  letter-spacing: 0.05em;
}

/* ── REVEAL ANIMATION (copied from handbill) ── */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ── SHOW ROW (copied from handbill) ── */
.shows-list { display: flex; flex-direction: column; }

.show-row {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid rgba(26,15,5,0.12);
  transition: all 0.2s;
}
.show-row:first-child { border-top: 1px solid rgba(26,15,5,0.12); }
.show-row:hover { padding-left: 0.6rem; }
.show-row:hover .show-venue { color: var(--red); }

.show-date-block {
  text-align: center;
  border-right: 2px solid var(--ink);
  padding-right: 1.5rem;
}

.show-month {
  font-family: 'Oswald', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
}

.show-day {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 3rem;
  line-height: 0.95;
  color: var(--ink);
}

.show-year {
  font-family: 'Libre Baskerville', serif;
  font-size: 0.62rem;
  color: var(--smoke);
  letter-spacing: 0.1em;
}

.show-venue {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.3rem;
  transition: color 0.2s;
}

.show-location {
  font-family: 'Lora', serif;
  font-style: italic;
  color: var(--smoke);
  font-size: 0.88rem;
}

.show-time {
  font-family: 'Libre Baskerville', serif;
  font-size: 0.72rem;
  color: var(--faded);
  margin-top: 0.2rem;
}

.show-tag {
  font-family: 'Oswald', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  font-weight: 600;
  color: var(--paper);
}
.show-tag.bar     { background: var(--ink); }
.show-tag.outdoor { background: var(--red); }
.show-tag.venue   { background: var(--brown); }
.show-tag.wine    { background: #6b2437; }

/* ── ABOUT / BIO SECTION ── */
.about { background: var(--aged); }
.about::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    var(--ink) 0, var(--ink) 20px,
    transparent 20px, transparent 28px
  );
  opacity: 0.15;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.about-text p {
  font-family: 'Lora', serif;
  color: var(--brown);
  line-height: 1.9;
  font-size: 1.02rem;
  margin-bottom: 1.2rem;
}

.about-text p:first-of-type::first-letter {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 3.5rem;
  float: left;
  line-height: 0.78;
  margin: 0.05em 0.08em 0 0;
  color: var(--red);
}

/* Handbill art panel (from handbill .about-poster) */
.about-poster {
  background: var(--paper);
  border: 2px solid var(--ink);
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
}
.about-poster::before {
  content: '';
  position: absolute; inset: 6px;
  border: 1px solid rgba(26,15,5,0.2);
  pointer-events: none;
}

.poster-art-title {
  font-family: 'Special Elite', cursive;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}

.poster-instruments {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.instrument-tag {
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border: 1.5px solid var(--ink);
  color: var(--ink);
}

.poster-divider {
  height: 1px;
  background: repeating-linear-gradient(
    90deg,
    var(--ink) 0, var(--ink) 5px,
    transparent 5px, transparent 10px
  );
  opacity: 0.3;
  margin: 1.2rem 0;
}

.poster-big-text {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 3rem;
  color: var(--ink);
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.01em;
}
.poster-big-text span {
  font-family: 'Special Elite', cursive;
  font-weight: 400;
  font-size: 1rem;
  display: block;
  color: var(--red);
  letter-spacing: 0.15em;
  margin-top: 0.3rem;
}

.poster-est {
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  font-size: 0.78rem;
  color: var(--smoke);
  margin-top: 1rem;
}

/* ── CONTACT / BOOKING (from handbill) ── */
.contact { background: var(--aged); }
.contact-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.booking-notice {
  background: var(--paper);
  border: 2.5px solid var(--ink);
  padding: 3rem 2.5rem;
  position: relative;
  margin-top: 2rem;
}
.booking-notice::before {
  content: '';
  position: absolute; inset: 6px;
  border: 1px solid rgba(26,15,5,0.18);
  pointer-events: none;
}

.booking-notice-top {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.8rem;
}
.booking-notice-heading {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.2rem);
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}
.booking-notice-sub {
  font-family: 'Special Elite', cursive;
  font-size: 1rem;
  color: var(--smoke);
  margin-bottom: 1.5rem;
  letter-spacing: 0.04em;
}
.booking-rule {
  height: 2px;
  background: var(--ink);
  margin: 1.2rem 0;
  opacity: 0.15;
}

/* ── CONTACT LINKS (from handbill) ── */
.contact-links {
  display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.contact-link {
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  text-decoration: none;
  color: var(--ink);
  transition: color 0.2s;
}
.contact-link:hover { color: var(--red); }
.contact-icon {
  width: 48px; height: 48px;
  border: 2px solid currentColor;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  transition: all 0.2s;
}
.contact-link:hover .contact-icon {
  background: var(--red);
  border-color: var(--red);
  color: var(--paper);
}
.contact-icon-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.contact-email-line {
  font-family: 'Special Elite', cursive;
  font-size: 0.9rem;
  color: var(--smoke);
}
.contact-email-line a { color: var(--red); text-decoration: none; }
.contact-email-line a:hover { text-decoration: underline; }

/* ── FOOTER ── */
footer {
  background: var(--ink);
  border-top: 3px solid var(--red);
  padding: 4rem 2rem 2rem;
  color: rgba(232,220,200,0.7);
  font-family: 'Libre Baskerville', serif;
  font-size: 0.78rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  color: var(--paper);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 0.8rem;
  color: rgba(232,220,200,0.5);
  margin-bottom: 1.2rem;
}

.footer-social {
  display: flex; gap: 0.75rem; flex-wrap: wrap;
}

.footer-social-link {
  width: 36px; height: 36px;
  border: 1px solid rgba(232,220,200,0.25);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  color: rgba(232,220,200,0.5);
  font-size: 0.9rem;
  transition: all 0.2s;
}
.footer-social-link:hover {
  border-color: var(--red);
  background: var(--red);
  color: var(--paper);
}

.footer-col-title {
  font-family: 'Oswald', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--faded);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  color: rgba(232,220,200,0.5);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--paper); }

/* Footer Mailchimp signup */
.footer-signup-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--faded);
  margin-bottom: 1rem;
}

.footer-signup-form {
  display: flex; flex-direction: column; gap: 0.6rem;
}

.footer-signup-form input[type="email"] {
  background: rgba(232,220,200,0.08);
  border: 1px solid rgba(232,220,200,0.2);
  color: var(--paper);
  padding: 0.6rem 0.9rem;
  font-family: 'Lora', serif;
  font-size: 0.82rem;
  outline: none;
  transition: border-color 0.2s;
}
.footer-signup-form input[type="email"]::placeholder {
  color: rgba(232,220,200,0.3);
}
.footer-signup-form input[type="email"]:focus {
  border-color: var(--red);
}

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid rgba(232,220,200,0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.68rem;
  color: rgba(232,220,200,0.3);
  letter-spacing: 0.1em;
}

/* ── FORMS ── */
.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--paper);
  border: 1.5px solid var(--brown);
  color: var(--ink);
  padding: 0.75rem 1rem;
  font-family: 'Lora', serif;
  font-size: 0.9rem;
  border-radius: 0;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--red);
}
.form-group textarea { min-height: 130px; resize: vertical; }

/* Honeypot */
.hp-field { display: none !important; }

/* ── PAGE HERO (non-home pages) ── */
.page-hero {
  padding: 10rem 2rem 5rem;
  text-align: center;
  background: var(--paper);
  position: relative;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 50% 50%, rgba(168,100,40,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero .section-rule { max-width: 600px; margin: 0 auto 0.8rem; }

/* ── MUSIC PAGE ── */
.track-item {
  background: var(--aged);
  border: 1.5px solid rgba(26,15,5,0.15);
  padding: 1.5rem 2rem;
  margin-bottom: 1.2rem;
}
.track-title {
  font-family: 'Special Elite', cursive;
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 0.8rem;
  letter-spacing: 0.05em;
}
.track-meta {
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  font-size: 0.75rem;
  color: var(--smoke);
  margin-bottom: 0.8rem;
}

/* ── MEMBER CARDS ── */
.members-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.member-card {
  text-align: center;
}
.member-name {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  margin-top: 1rem;
  margin-bottom: 0.2rem;
}
.member-role {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 0.88rem;
  color: var(--smoke);
}

/* ── TABLE ── */
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}
.schedule-table th {
  font-family: 'Oswald', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  padding: 0.6rem 1rem;
  border-bottom: 2px solid var(--ink);
  text-align: left;
}
.schedule-table td {
  font-family: 'Lora', serif;
  font-size: 0.92rem;
  color: var(--brown);
  padding: 1.1rem 1rem;
  border-bottom: 1px solid rgba(26,15,5,0.1);
  vertical-align: middle;
}
.schedule-table tr:hover td { background: rgba(26,15,5,0.04); }
.schedule-table td.date-cell {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}

/* ── VIDEO GRID ── */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2.5rem;
}
.video-item {}
.video-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
  margin-top: 1rem;
  margin-bottom: 0.3rem;
}
.video-desc {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 0.82rem;
  color: var(--smoke);
}
.video-embed-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: var(--ink);
  border: 2px solid var(--brown);
}
.video-embed-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}
.video-link-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: var(--ink);
  border: 2px solid var(--brown);
  display: block;
  text-decoration: none;
}
.video-link-wrap img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}
.video-link-wrap:hover img { opacity: 1; }
.video-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  background: rgba(10,5,0,0.7);
  border: 2px solid rgba(245,240,232,0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: background 0.2s ease;
}
.video-link-wrap:hover .video-play-btn { background: var(--red); }
.video-play-btn::after {
  content: '';
  display: block;
  width: 0; height: 0;
  border-style: solid;
  border-width: 9px 0 9px 18px;
  border-color: transparent transparent transparent #f5f0e8;
  margin-left: 4px;
}

/* ── SPONSOR GRID ── */
.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.sponsor-card {
  background: var(--paper);
  border: 1.5px solid rgba(26,15,5,0.15);
  padding: 2rem 1.5rem;
  text-align: center;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sponsor-name {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brown);
}

/* ── PRESS / EPK ── */
.press-quote {
  background: var(--aged);
  border-left: 4px solid var(--red);
  padding: 1.5rem 2rem;
  margin-bottom: 1.2rem;
  position: relative;
}
.press-quote blockquote {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--brown);
  line-height: 1.7;
  margin-bottom: 0.6rem;
}
.press-quote cite {
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  font-style: normal;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.2rem;
  margin-top: 1.5rem;
}
.download-card {
  background: var(--aged);
  border: 1.5px solid rgba(26,15,5,0.12);
  padding: 1.5rem;
  text-align: center;
  text-decoration: none;
  color: var(--ink);
  transition: all 0.2s;
  display: block;
}
.download-card:hover {
  border-color: var(--red);
  background: var(--paper);
}
.download-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  display: block;
}
.download-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 0.2rem;
}
.download-format {
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  font-size: 0.7rem;
  color: var(--faded);
}

/* ── 404 PAGE ── */
.error-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
}
.error-number {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(6rem, 20vw, 14rem);
  line-height: 0.85;
  color: var(--red);
  opacity: 0.3;
  letter-spacing: -0.04em;
}
.error-title {
  font-family: 'Special Elite', cursive;
  font-size: clamp(1.2rem, 3vw, 2rem);
  color: var(--ink);
  letter-spacing: 0.1em;
  margin: 1rem 0 0.5rem;
}
.error-sub {
  font-family: 'Lora', serif;
  font-style: italic;
  color: var(--smoke);
  font-size: 1rem;
  margin-bottom: 2rem;
}

/* ── IMAGE PLACEHOLDERS ── */
.img-placeholder {
  background: var(--aged);
  border: 2px solid var(--brown);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--smoke);
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── UTILITY ── */
a { color: var(--red); }
a:hover { color: var(--rust); }

.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }

/* ── RESPONSIVE ── */
@media (max-width: 760px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .show-row { grid-template-columns: 90px 1fr; }
  .show-row .show-tag { display: none; }
  .show-date-block { padding-right: 1rem; }
  .show-day { font-size: 2.2rem; }
  .poster-frame { inset: 10px; }
  .corner { display: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .video-grid { grid-template-columns: 1fr; }
  .members-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
  .download-grid { grid-template-columns: 1fr 1fr; }
  .schedule-table td, .schedule-table th { padding: 0.7rem 0.5rem; font-size: 0.82rem; }
}
