/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red: #D22B2B;
  --red-dark: #A01E1E;
  --red-light: #FF3C3C;
  --gold: #C9A84C;
  --gold-light: #F0C96A;
  --black: #0A0A0A;
  --near-black: #111111;
  --dark: #1A1A1A;
  --dark2: #222222;
  --dark3: #2D2D2D;
  --mid: #444444;
  --muted: #888888;
  --light: #CCCCCC;
  --lighter: #E8E8E8;
  --white: #F8F8F6;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --container: 1160px;
  --header-h: 72px;
  --radius: 6px;
  --radius-lg: 12px;
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }
img { max-width: 100%; display: block; }
p { margin-bottom: 1rem; color: var(--light); }
p:last-child { margin-bottom: 0; }
em { font-style: italic; color: var(--gold-light); }

/* ===== CONTAINER ===== */
.container {
  width: min(var(--container), 100% - 2rem);
  margin-inline: auto;
}

/* ===== TYPOGRAPHY ===== */
h1,h2,h3,h4 { color: var(--white); line-height: 1.1; }
h1 { font-family: var(--font-display); font-size: clamp(3rem,8vw,6rem); letter-spacing: 0.02em; }
h2 { font-family: var(--font-display); font-size: clamp(2rem,5vw,3.5rem); letter-spacing: 0.02em; }
h3 { font-size: 1.25rem; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red-light);
  margin-bottom: 0.75rem;
}

.text-center { text-align: center; }
.mt-lg { margin-top: 3rem; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-transform: uppercase;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.btn-outline:hover {
  border-color: var(--red-light);
  color: var(--red-light);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--gold-light);
  border: none;
  padding-left: 0;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-transform: none;
}
.btn-ghost:hover { color: var(--white); letter-spacing: 0.05em; }

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(10,10,10,0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.logo-m5 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--red-light);
  letter-spacing: 0.02em;
  line-height: 1;
}
.logo-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.3;
}
.logo-text em { font-style: normal; color: var(--gold); display: block; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-link {
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.06); }
.nav-link.active { color: var(--red-light); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ===== MAIN ===== */
main { padding-top: var(--header-h); }

/* ===== SECTIONS ===== */
.section {
  padding: 5rem 0;
}
.bg-alt-section {
  background: var(--near-black);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.bg-dark-section {
  background: var(--dark2);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* ===== GRIDS ===== */
.section-grid { display: grid; gap: 4rem; align-items: start; }
.two-col { grid-template-columns: 1fr 1fr; }

/* ===== PAGE HERO ===== */
.page-hero {
  padding: 5rem 0 4rem;
  background: var(--near-black);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(210,43,43,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero h1 { font-size: clamp(2.5rem,6vw,4.5rem); }
.page-hero-sub { font-size: 1.1rem; color: var(--muted); margin-top: 0.75rem; }
.page-hero--shows::before { background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 70%); }
.page-hero--legal { padding: 3.5rem 0 3rem; }
.page-hero--legal h1 { font-size: clamp(2rem,5vw,3.5rem); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--black);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(210,43,43,0.15) 0%, transparent 50%, rgba(201,168,76,0.08) 100%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem 0;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 13vw, 9rem);
  line-height: 0.9;
  letter-spacing: 0.01em;
  margin-bottom: 1.5rem;
}
.hero-title span {
  color: var(--red-light);
  display: block;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--light);
  max-width: 540px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.hero-dates {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.hero-date-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  min-width: 90px;
  transition: all var(--transition);
}
.hero-date-item:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-3px);
}
.hero-date-item.highlight {
  background: rgba(210,43,43,0.15);
  border-color: rgba(210,43,43,0.4);
}
.hd-day { font-family: var(--font-display); font-size: 2rem; line-height: 1; color: var(--white); }
.hd-month { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; color: var(--red-light); text-transform: uppercase; }
.hd-city { font-size: 0.72rem; color: var(--muted); margin-top: 0.4rem; text-align: center; }

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--muted), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:0.4;transform:scaleY(1)} 50%{opacity:1;transform:scaleY(1.1)} }

/* ===== BAND STATS ===== */
.band-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.stat-card {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.stat-card.accent {
  background: rgba(210,43,43,0.12);
  border-color: rgba(210,43,43,0.35);
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--white);
  line-height: 1;
}
.stat-card.accent .stat-num { color: var(--red-light); }
.stat-label { font-size: 0.8rem; color: var(--muted); font-weight: 500; }

/* ===== SHOWS GRID ===== */
.shows-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.show-card {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: relative;
  transition: all var(--transition);
}
.show-card:hover {
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-4px);
  background: var(--dark3);
}
.show-card--destaque {
  border-color: rgba(201,168,76,0.4);
  background: rgba(201,168,76,0.06);
}
.show-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
  margin-bottom: 1rem;
}
.show-date {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  margin-bottom: 1rem;
}
.sd-day {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--white);
  line-height: 1;
}
.sd-month {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--red-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.show-estado {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red-light);
  background: rgba(210,43,43,0.12);
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  display: inline-block;
  margin-bottom: 0.5rem;
}
.show-info h3 { font-size: 1.1rem; margin-bottom: 0.35rem; }
.show-local { font-size: 0.82rem; color: var(--muted); margin-bottom: 0.25rem; }
.show-cap { font-size: 0.75rem; color: var(--mid); }

/* ===== HITS ===== */
.hits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0;
  margin-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.hit-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  border-right: 1px solid rgba(255,255,255,0.06);
  transition: background var(--transition);
  animation: fadeUp 0.5s ease both;
  animation-delay: var(--delay, 0s);
}
.hit-item:hover { background: rgba(255,255,255,0.03); }
.hit-num { font-size: 0.7rem; color: var(--mid); min-width: 22px; font-weight: 600; }
.hit-name { font-size: 0.9rem; color: var(--light); }

/* ===== CTA ===== */
.cta-box {
  background: linear-gradient(135deg, rgba(210,43,43,0.12) 0%, rgba(201,168,76,0.06) 100%);
  border: 1px solid rgba(210,43,43,0.25);
  border-radius: var(--radius-lg);
  padding: 4rem 3rem;
  text-align: center;
}
.cta-box h2 { margin-bottom: 1rem; }
.cta-box p { max-width: 540px; margin-inline: auto; margin-bottom: 2rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== SHOW DETAIL ===== */
.show-detail {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 2rem;
}
.show-detail--destaque {
  border-color: rgba(201,168,76,0.35);
}
.show-detail-header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  padding: 2rem 2.5rem;
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.show-detail-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  text-align: center;
}
.sdd-num {
  font-family: var(--font-display);
  font-size: 4.5rem;
  color: var(--white);
  line-height: 1;
}
.show-detail--destaque .sdd-num { color: var(--gold-light); }
.sdd-mes { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; color: var(--red-light); text-transform: uppercase; }
.sdd-ano { font-size: 0.7rem; color: var(--mid); }

.show-detail-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}
.badge-estado {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(210,43,43,0.15);
  color: var(--red-light);
  border: 1px solid rgba(210,43,43,0.3);
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
}
.badge-headliner {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(201,168,76,0.15);
  color: var(--gold-light);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
}
.show-dia-semana { font-size: 0.8rem; color: var(--muted); }
.show-detail-main h2 {
  font-size: 2.5rem;
  margin-bottom: 0.25rem;
}
.show-local-name { font-size: 1rem; color: var(--light); margin-bottom: 0.15rem; }
.show-endereco { font-size: 0.82rem; color: var(--muted); margin-bottom: 1rem; }
.show-chips { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--muted);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
}

.show-detail-body {
  padding: 2rem 2.5rem;
}
.show-detail-body h3 {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.setores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.75rem;
}
.setor-card {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 1rem;
}
.setor-icon {
  color: var(--red-light);
  flex-shrink: 0;
  margin-top: 2px;
}
.setor-card strong { display: block; font-size: 0.9rem; color: var(--white); margin-bottom: 0.25rem; }
.setor-card p { font-size: 0.8rem; color: var(--muted); margin: 0; }

/* ===== INFO CARDS ===== */
.info-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.info-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  text-align: center;
}
.info-icon { font-size: 2rem; margin-bottom: 1rem; }
.info-card h4 { margin-bottom: 0.5rem; }
.info-card p { font-size: 0.88rem; }

/* ===== SOBRE ===== */
.sobre-values { display: flex; flex-direction: column; gap: 1.5rem; }
.value-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.value-item:last-child { border-bottom: none; padding-bottom: 0; }
.value-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--red-light);
  line-height: 1;
  flex-shrink: 0;
  width: 52px;
  opacity: 0.6;
}
.value-item h4 { margin-bottom: 0.35rem; }
.value-item p { font-size: 0.9rem; margin: 0; }

/* ===== TIMELINE ===== */
.timeline { position: relative; max-width: 760px; margin-inline: auto; margin-top: 3rem; }
.timeline::before {
  content: '';
  position: absolute;
  left: 80px;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.15) 10%, rgba(255,255,255,0.15) 90%, transparent);
}
.timeline-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
  position: relative;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: 80px;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--dark3);
  border: 2px solid rgba(255,255,255,0.25);
  transform: translateX(-50%);
}
.tl-current::before {
  background: var(--red);
  border-color: var(--red-light);
  box-shadow: 0 0 12px rgba(210,43,43,0.5);
}
.tl-year {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--muted);
  text-align: right;
  padding-top: 0.25rem;
}
.tl-current .tl-year { color: var(--red-light); }
.tl-content h4 { margin-bottom: 0.35rem; }
.tl-content p { font-size: 0.9rem; margin: 0; }

/* ===== MEMBERS ===== */
.members-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.member-card {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  transition: all var(--transition);
}
.member-card:hover {
  border-color: rgba(210,43,43,0.3);
  transform: translateY(-3px);
}
.member-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(210,43,43,0.15);
  border: 2px solid rgba(210,43,43,0.3);
  color: var(--red-light);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.member-card h4 { margin-bottom: 0.25rem; font-size: 0.95rem; }
.member-role {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.member-card p { font-size: 0.82rem; }

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.service-card {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all var(--transition);
}
.service-card:hover {
  border-color: rgba(210,43,43,0.3);
  transform: translateY(-3px);
  background: var(--dark3);
}
.service-ico { font-size: 2rem; margin-bottom: 1rem; }
.service-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.service-card p { font-size: 0.88rem; margin-bottom: 1rem; }
.service-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.stag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
}

/* ===== PROCESS ===== */
.process-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.process-steps { display: flex; flex-direction: column; gap: 0; }
.process-step {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.process-step:first-child { padding-top: 0; }
.process-step:last-child { border-bottom: none; }
.ps-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--red-light);
  opacity: 0.5;
  line-height: 1;
  flex-shrink: 0;
  width: 40px;
}
.ps-content h4 { margin-bottom: 0.35rem; }
.ps-content p { font-size: 0.88rem; margin: 0; }

/* ===== PARTNERS ===== */
.partners-row {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}
.partner-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 2rem 2.5rem;
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  min-width: 200px;
}
.pb-icon { font-size: 2.5rem; margin-bottom: 0.5rem; }
.partner-badge strong { font-size: 1rem; color: var(--white); }
.partner-badge span { font-size: 0.78rem; color: var(--muted); letter-spacing: 0.06em; }

/* ===== LEGAL ===== */
.legal-container {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 4rem;
  align-items: start;
}
.legal-toc {
  position: sticky;
  top: calc(var(--header-h) + 2rem);
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.legal-toc h4 {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}
.legal-toc a {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
  padding: 0.35rem 0;
  border-left: 2px solid transparent;
  padding-left: 0.75rem;
  margin-left: -0.75rem;
  transition: all var(--transition);
}
.legal-toc a:hover { color: var(--white); border-left-color: var(--red); }

.legal-intro {
  background: rgba(210,43,43,0.07);
  border-left: 3px solid var(--red);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 2.5rem;
}
.legal-intro p { color: var(--light); margin: 0; }

.legal-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.legal-section:last-child { border-bottom: none; }
.legal-section h2 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--white);
}
.legal-section ul {
  list-style: none;
  margin: 0.75rem 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.legal-section ul li {
  padding-left: 1.25rem;
  position: relative;
  font-size: 0.9rem;
  color: var(--light);
}
.legal-section ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--red-light);
  font-size: 0.8rem;
}
.legal-section strong { color: var(--white); }

.contact-info-block {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 1rem 0;
}
.contact-info-block p { font-size: 0.9rem; margin-bottom: 0.5rem; }
.contact-info-block p:last-child { margin-bottom: 0; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--near-black);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 4rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-brand .logo-m5 { font-size: 2.5rem; display: block; margin-bottom: 0.5rem; }
.footer-brand p { font-size: 0.82rem; color: var(--mid); margin-top: 0.75rem; }
.footer-links { display: flex; flex-direction: column; }
.footer-links h4 {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}
.footer-links a {
  font-size: 0.88rem;
  color: var(--mid);
  padding: 0.3rem 0;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-info h4 {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}
.footer-info p { font-size: 0.85rem; color: var(--mid); margin-bottom: 0.35rem; }
.footer-info strong { color: var(--light); }
.disclaimer { font-size: 0.75rem !important; color: var(--mid); margin-top: 1rem !important; font-style: italic; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.25rem 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p { font-size: 0.75rem; color: var(--mid); margin: 0; }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; }
  .process-section { grid-template-columns: 1fr; gap: 2.5rem; }
  .legal-container { grid-template-columns: 1fr; }
  .legal-toc { position: static; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .show-detail-header { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .section { padding: 3.5rem 0; }
  .hero-title { font-size: clamp(3rem,15vw,5rem); }
  .hero-cta { flex-direction: column; }
  .hero-dates { gap: 0.75rem; }
  .hero-date-item { min-width: 75px; padding: 0.75rem 0.9rem; }
  .band-stats { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .main-nav { display: none; }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: var(--header-h) 0 0 0;
    background: rgba(10,10,10,0.97);
    padding: 2rem;
    gap: 0.5rem;
    z-index: 99;
  }
  .nav-toggle { display: flex; }
  .nav-link { padding: 0.75rem 1rem; font-size: 1.1rem; }
  .cta-box { padding: 2.5rem 1.5rem; }
  .show-detail-header { padding: 1.5rem; }
  .show-detail-body { padding: 1.5rem; }
  .page-hero { padding: 3rem 0 2.5rem; }
}
