/* =========================
   CDMX COMEDY FESTIVAL CSS
   Cleaned + rewritten to keep the large agenda style
========================= */

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

/* =========================
   ROOT THEME
========================= */
:root {
  --bg-dark: #050505;
  --bg-black: #000000;
  --bg-soft: #0d0d0d;
  --surface: #111111;
  --surface-2: #171717;

  --gold: #e7cf72;
  --gold-soft: #f0dc92;
  --gold-dark: #c9ae4b;

  --text: #f4ecd3;
  --text-soft: #c8bea6;
  --text-muted: #8d8677;
  --text-body: #94908c;

  --white: #ffffff;
  --border: rgba(231, 207, 114, 0.14);
  --border-strong: rgba(231, 207, 114, 0.28);

  --container: 1200px;
  --container-wide: 1280px;

  --shadow-soft: 0 12px 36px rgba(0, 0, 0, 0.32);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", Arial, sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

p {
  color: var(--text-body);
}

/* =========================
   GLOBAL PAGE + LAYOUT
========================= */
.page {
  min-height: 100vh;
  background: var(--bg-dark);
}

.section {
  padding: 90px 20px;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
}

.text-center {
  text-align: center;
}

.text-gold {
  color: var(--gold);
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* =========================
   TYPOGRAPHY
========================= */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.08;
  font-weight: 800;
}

.section-title {
  color: var(--gold);
  text-align: center;
  margin-bottom: 56px;
}

.section-title h1,
.section-title h2 {
  margin-bottom: 14px;
}

.section-title p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--text-body);
}

/* =========================
   BUTTONS
========================= */
.btn,
button,
input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 54px;
  padding: 14px 28px;
  background: var(--gold);
  color: #111111;
  border: 1px solid var(--gold-dark);
  border-radius: 0;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  cursor: pointer;
}

.btn:hover,
button:hover,
input[type="submit"]:hover {
  background: var(--gold-soft);
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--gold);
  color: #111111;
  border: 1px solid var(--gold-dark);
}

.btn-primary:hover {
  background: var(--gold-soft);
  color: #111111;
}

.btn-secondary {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}

.btn-secondary:hover {
  background: var(--gold);
  color: #111111;
}

.btn-gold,
.browse-btn,
.festival-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: #111111;
  border: 1px solid var(--gold-dark);
  border-radius: 0;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn-gold:hover,
.browse-btn:hover,
.festival-btn:hover {
  background: var(--gold-soft);
  color: #111111;
  transform: translateY(-1px);
}

/* =========================
   SITE HEADER / NAV
========================= */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.94);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  background: rgba(0, 0, 0, 0.98);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo a {
  color: var(--gold);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-cta .btn-primary,
.nav-links .btn-primary {
  padding: 11px 18px;
  min-width: unset;
  min-height: unset;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 34px;
  height: 26px;
  position: relative;
  z-index: 1100;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--gold);
  margin: 6px 0;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.desktop-only {
  display: inline-block;
}

.mobile-only {
  display: none;
}

/* =========================
   HERO
========================= */
.hero {
  position: relative;
  min-height: 760px;
  background: var(--bg-black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-bg img.active {
  opacity: 1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.78));
  z-index: 1;
}

.hero-inner,
.hero-footer {
  position: relative;
  z-index: 2;
}

.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 120px 20px 190px;
  text-align: center;
}

.eyebrow {
  margin-bottom: 28px;
  color: var(--gold);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 900px;
  margin: 0 auto 26px;
  font-size: clamp(44px, 7vw, 86px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-copy {
  max-width: 700px;
  margin: 0 auto 30px;
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.75;
  font-weight: 500;
}

.hero-copy .watch-link {
  color: var(--gold);
  font-weight: 700;
}

.cta-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* =========================
   HERO FOOTER / COUNTDOWN
========================= */
.hero-footer {
  position: absolute;
  right: 0;
  bottom: -72px;
  left: 0;
  z-index: 5;
}

.hero-footer-inner {
  display: flex;
  justify-content: center;
  gap: 30px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.festival-meta {
  padding-bottom: 24px;
  color: var(--gold);
}

.socials {
  display: flex;
  gap: 18px;
  margin-bottom: 14px;
  font-size: 26px;
  line-height: 1;
}

.socials a {
  color: var(--gold);
}

.date-row {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text-soft);
  font-size: 20px;
  font-weight: 500;
}

.date-icon {
  color: var(--gold);
  font-size: 24px;
}

.countdown-card {
  background: #000;
  padding: 30px 40px;
  border-radius: 12px;
  overflow: visible;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  align-items: start;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.count-num {
  width: 140px;
  height: 140px;
  background: #6f93bf;
  color: #e7c85b;
  font-size: 84px;
  font-weight: 800;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.count-label {
  margin-top: 12px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.after-hero-space {
  height: 140px;
  background: var(--bg-dark);
}

/* =========================
   STATS
========================= */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(180px, 1fr));
  gap: 28px;
  align-items: stretch;
}

.stat-box {
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 34px 20px;
}

.stat-number {
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 72px;
  line-height: 1;
  font-weight: 800;
}

.stat-line {
  width: 62px;
  height: 2px;
  margin: 0 auto 12px;
  background: var(--gold);
}

.stat-label {
  color: var(--text-soft);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* =========================
   FEATURED ARTISTS / PARTNERS
========================= */
.featured-artists,
.festival-showcase {
  padding: 90px 20px;
  background: var(--bg-black);
}

.festival-showcase {
  background: var(--bg-dark);
}

.featured-header {
  max-width: var(--container-wide);
  margin: 0 auto 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.featured-header h2 {
  color: var(--gold);
  font-size: clamp(40px, 6vw, 74px);
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.browse-btn {
  padding: 16px 24px;
  font-size: 14px;
  line-height: 1;
}

.artists-grid {
  max-width: var(--container-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.artist-card {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
}

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

.artist-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 130px;
  padding: 20px 18px 18px;
  background: var(--surface);
  color: var(--text);
}

.artist-info h3 {
  margin-bottom: 18px;
  font-size: 28px;
  line-height: 1.05;
  font-weight: 800;
  color: var(--gold);
}

.artist-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.artist-meta span,
.artist-meta a {
  color: var(--text-soft);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

.artist-meta a:hover {
  color: var(--gold);
}

/* =========================
   SUBMIT CTA SECTION
========================= */
.submit-section {
  background: #000;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
}

.submit-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.submit-inner h2 {
  color: var(--gold);
  font-size: clamp(32px, 4vw, 64px);
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.submit-inner .btn {
  display: inline-flex;
}

/* =========================
   FESTIVAL AGENDA
   This is the screenshot 2 style.
========================= */
#schedule {
  scroll-margin-top: 120px;
  background: var(--bg-dark);
}

#schedule.section {
  padding: 90px 20px;
}

#schedule .container {
  max-width: var(--container);
  margin: 0 auto;
}

#schedule .agenda-grid {
  display: block;
}

#schedule .agenda-content,
#schedule .centered-agenda {
  max-width: 900px;
  width: 100%;
  margin: 0;
  text-align: left;
}

#schedule .section-title,
#schedule .centered-agenda .section-title {
  color: var(--gold);
  text-align: left;
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.08;
  text-transform: uppercase;
  margin: 0 0 32px;
}

#schedule .agenda-day {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  margin: 0 0 44px;
}

#schedule .agenda-day + .agenda-day {
  margin-top: 0;
}

#schedule .agenda-day h3 {
  color: var(--gold);
  font-size: clamp(2rem, 3.4vw, 3.8rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
  margin: 0 0 14px;
}

#schedule .agenda-day p {
  color: var(--text-body);
  font-size: 1.08rem;
  font-weight: 300;
  line-height: 1.55;
  margin: 0 0 10px;
}

#schedule .agenda-day em {
  font-style: italic;
  font-weight: 300;
}

#schedule .btn-gold {
  min-width: 270px;
  min-height: 54px;
  padding: 16px 28px;
  font-size: 1rem;
  letter-spacing: 0.03em;
}

/* =========================
   TICKET / PASSES PAGE
========================= */
.ticket-page,
.tickets-page,
.pass-page {
  padding: 120px 20px 100px;
  background: var(--bg-black);
  min-height: 100vh;
}

.ticket-page h1,
.tickets-page h1,
.pass-page h1 {
  text-align: center;
  font-size: clamp(32px, 4vw, 56px);
  margin-bottom: 56px;
  color: var(--gold);
}

.ticket-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  position: relative;
}

.ticket-grid::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(-0.5px);
}

.ticket-item {
  text-align: center;
  padding: 68px 54px;
}

.ticket-item h2,
.ticket-item h3 {
  color: var(--gold);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.15;
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}

.ticket-item p {
  max-width: 470px;
  margin: 0 auto 26px;
  color: var(--text-body);
  font-size: 18px;
  line-height: 1.5;
}

.ticket-item .btn,
.ticket-item .btn-primary {
  min-width: 270px;
}

/* Passes page sections, if you keep the class names */
.ticket-hero {
  padding-top: 56px;
  padding-bottom: 64px;
}

.image-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  margin-bottom: 52px;
  overflow: hidden;
}

.image-strip img {
  width: 100%;
  height: 335px;
  object-fit: cover;
}

.subhead {
  font-size: clamp(1.5rem, 2vw, 2.3rem);
  font-weight: 400;
  text-align: center;
  margin-bottom: 18px;
}

.intro-copy {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text-body);
}

.passes-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0;
  align-items: stretch;
  max-width: 1120px;
  margin: 0 auto;
}

.passes-divider {
  background: var(--border);
  width: 1px;
  height: 100%;
}

.passes-col {
  display: grid;
  gap: 100px;
  padding: 24px 56px;
}

.pass-card {
  text-align: center;
}

.pass-card h3 {
  color: var(--gold);
  text-transform: uppercase;
  font-size: clamp(1.8rem, 2.7vw, 3.25rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 22px;
}

.pass-card p {
  max-width: 460px;
  margin: 0 auto 28px;
  color: var(--text-body);
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.45;
}

/* =========================
   CONTENT / STANDARD PAGES
========================= */
.content-section,
.standard-section,
.sponsorship-section {
  padding: 100px 20px;
  background: var(--bg-dark);
}

.content-card,
.standard-card {
  max-width: var(--container);
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 56px 48px;
}

.content-card h1,
.content-card h2,
.standard-card h1,
.standard-card h2 {
  margin-bottom: 20px;
}

.content-card p,
.standard-card p,
.standard-card li {
  color: var(--text-body);
  font-size: 18px;
  line-height: 1.8;
}

.standard-card ul,
.standard-card ol,
.content-card ul,
.content-card ol {
  margin-top: 16px;
  padding-left: 20px;
}

/* =========================
   SUBMISSIONS PAGE
========================= */
.submission-page {
  padding: 130px 20px 90px;
  background: var(--bg-black);
  color: var(--text);
  min-height: 100vh;
}

.submission-container {
  max-width: 900px;
  margin: 0 auto;
}

.submission-page h1 {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
  margin-bottom: 18px;
  color: var(--gold);
  text-transform: uppercase;
}

.submission-page h2,
.submission-page h3 {
  color: var(--gold);
  margin-bottom: 14px;
  text-transform: uppercase;
}

.section-copy,
.submission-intro p,
.submission-page p,
.submission-page li {
  color: var(--text-body);
  line-height: 1.8;
  font-size: 17px;
}

.section-copy {
  margin-bottom: 28px;
}

.submission-intro {
  margin-bottom: 32px;
}

.submission-intro p {
  margin-bottom: 18px;
}

.submission-rules,
.payment-box,
.submission-form {
  margin-top: 30px;
  padding: 28px;
  border-radius: 0;
  background: var(--surface);
  border: 1px solid var(--border);
}

.submission-rules ul {
  padding-left: 20px;
  margin-top: 12px;
}

.submission-form {
  margin-top: 32px;
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--gold);
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.05em;
}

.submission-form input,
.submission-form textarea,
.submission-form select,
input,
textarea,
select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 0;
  background: #0c0c0c;
  color: var(--text);
}

.submission-form textarea,
textarea {
  min-height: 140px;
  resize: vertical;
}

.submission-form input:focus,
.submission-form textarea:focus,
.submission-form select:focus,
input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--gold-dark);
  box-shadow: none;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-right: 10px;
}

.form-errors,
.errorlist {
  color: #ffb3a3;
  margin-top: 8px;
  padding-left: 18px;
}

.payment-links a {
  color: var(--gold);
  font-weight: 700;
}

.payment-links a:hover {
  text-decoration: underline;
}

/* =========================
   ACCORDION
========================= */
.accordion {
  max-width: 900px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}

.accordion-item {
  border-bottom: 1px solid var(--border);
}

.accordion-header {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.05rem;
  padding: 22px 0;
  text-align: left;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.icon,
.accordion-icon {
  transition: transform 0.3s ease;
  color: var(--gold);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  color: var(--text-body);
}

.accordion-content p,
.accordion-content ol,
.accordion-content ul {
  padding-bottom: 18px;
}

.accordion-item.active .accordion-content {
  max-height: 6000px;
}

.accordion-item.active .icon,
.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

.submission-page .accordion-content {
  max-height: 0;
  overflow: hidden;
  display: block;
  transition: max-height 0.4s ease;
}

.submission-page .accordion-item.active .accordion-content {
  max-height: 6000px;
}

.submission-page .accordion-content-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
  overflow: visible;
  padding: 24px 0 0;
}

/* =========================
   SPONSORSHIP / PARTNER PAGES
========================= */
.sponsor-container,
.partner-container,
.sponsorship-hero-inner,
.sponsor-form-container {
  max-width: 980px;
  margin: 0 auto;
}

.sponsor-packages-section,
.additional-sponsorship-section,
.sponsor-form-section {
  padding: 88px 20px;
}

.sponsorship-hero {
  padding: 140px 20px 88px;
}

.sponsor-section-title,
.sponsorship-hero h1,
.sponsor-form-section h1,
.partner-content h2 {
  text-align: center;
  margin-bottom: 18px;
}

.sponsor-section-copy,
.sponsor-form-intro,
.sponsorship-hero .hero-copy {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
  line-height: 1.7;
}

.partner-section {
  padding: 72px 20px 84px;
}

.partner-container {
  max-width: 1040px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: center;
}

.partner-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}

.partner-content h2 {
  text-align: left;
}

.partner-list {
  text-align: left;
  margin: 0 0 30px;
  padding-left: 22px;
}

.partner-list li + li {
  margin-top: 14px;
}

.partner-image-wrap {
  display: flex;
  justify-content: center;
}

.partner-image {
  width: 100%;
  max-width: 460px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.sponsor-accordion {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.sponsor-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  overflow: hidden;
  backdrop-filter: blur(8px);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.sponsor-item:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  background: rgba(255, 255, 255, 0.075);
}

.sponsor-item.active {
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.22);
  background: rgba(255, 255, 255, 0.085);
}

.sponsor-header {
  width: 100%;
  background: transparent;
  border: 0;
  color: inherit;
  padding: 24px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  text-align: left;
}

.sponsor-header-main {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
}

.sponsor-title {
  text-align: left;
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.sponsor-price {
  flex-shrink: 0;
  text-align: right;
  font-size: 1.15rem;
  font-weight: 700;
  opacity: 0.92;
}

.accordion-icon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: inherit;
  flex-shrink: 0;
}

.sponsor-item.active .accordion-icon {
  transform: rotate(180deg);
  background: rgba(255, 255, 255, 0.16);
}

.sponsor-item .accordion-content {
  display: grid;
  grid-template-rows: 0fr;
  max-height: none;
  transition: grid-template-rows 0.35s ease;
}

.sponsor-item.active .accordion-content {
  grid-template-rows: 1fr;
}

.accordion-content-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
  overflow: hidden;
  padding: 0 26px 0;
}

.sponsor-item.active .accordion-content-inner {
  padding-bottom: 24px;
}

.accordion-content-inner p,
.accordion-content-inner li {
  line-height: 1.7;
  opacity: 0.92;
}

.accordion-content-inner ul,
.accordion-content-inner ol {
  margin: 6px 0 0;
  padding-left: 20px;
}

.accordion-content-inner li + li {
  margin-top: 10px;
}

.sponsor-form-container {
  max-width: 760px;
}

.sponsor-form {
  max-width: 800px;
  margin: 34px auto 0;
  padding: 32px;
  text-align: left;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

.sponsor-form .form-group {
  margin-bottom: 18px;
}

.form-row,
.form-row-3,
.sponsor-form .form-row,
.sponsor-form .form-row-3 {
  display: grid;
  gap: 14px;
}

.form-row,
.sponsor-form .form-row {
  grid-template-columns: 1fr 1fr;
}

.form-row-3,
.sponsor-form .form-row-3 {
  grid-template-columns: 1fr 1fr 1fr;
}

.radio-group,
.radio-option {
  width: 100%;
}

.radio-group label,
.radio-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.radio-group input[type="radio"],
.radio-option input {
  width: auto;
  margin-left: auto;
}

.field-helper {
  margin-bottom: 10px;
  opacity: 0.8;
}

.sponsor-submit-btn {
  display: block;
  width: 100%;
  min-height: 56px;
  margin-top: 12px;
  border: 0;
  border-radius: 12px;
  background: #000;
  color: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.sponsor-submit-btn:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

/* =========================
   TABLES
========================= */
table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border: 1px solid var(--border);
}

th,
td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

th {
  color: var(--gold);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* =========================
   SITE FOOTER
========================= */
.site-footer {
  background: #050505;
  color: var(--text-soft);
  padding: 70px 20px 30px;
  border-top: 1px solid var(--border);
}

.footer-container {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col h3,
.footer-col h4 {
  color: var(--gold);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.footer-col p {
  font-size: 15px;
  margin-bottom: 14px;
  line-height: 1.7;
  color: var(--text-body);
}

.social-links a {
  color: var(--gold);
  font-weight: 600;
}

.social-links a:hover {
  text-decoration: underline;
}

.email-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.email-form input {
  flex: 1;
  min-width: 180px;
  padding: 12px 14px;
  border-radius: 0;
  border: 1px solid var(--border);
  font-size: 14px;
  background: #0c0c0c;
  color: var(--text);
}

.email-form button {
  background: var(--gold);
  color: #111111;
  border: 1px solid var(--gold-dark);
  padding: 12px 16px;
  border-radius: 0;
  font-weight: 700;
  cursor: pointer;
}

.email-form button:hover {
  background: var(--gold-soft);
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 8px;
}

.footer-col a {
  color: var(--text-soft);
  font-size: 14px;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 13px;
  color: var(--text-muted);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1400px) {
  .artist-info h3 {
    font-size: 24px;
  }

  .artist-meta span,
  .artist-meta a {
    font-size: 14px;
  }
}

@media (max-width: 1200px) {
  .countdown-card {
    min-width: 560px;
  }

  .count-num {
    font-size: 56px;
  }
}

@media (max-width: 1100px) {
  .featured-artists,
  .festival-showcase {
    padding: 70px 20px;
  }

  .artists-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 980px) {
  .hero-inner {
    padding: 100px 20px 220px;
  }

  .hero-footer {
    position: static;
    margin-top: -60px;
    padding-bottom: 40px;
  }

  .hero-footer-inner {
    flex-direction: column;
    align-items: stretch;
    padding: 0 20px;
  }

  .festival-meta {
    padding-bottom: 0;
  }

  .countdown-card {
    width: 100%;
    min-width: 100%;
  }

  .countdown-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 24px;
  }

  .after-hero-space {
    height: 40px;
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: inline-block;
    margin-top: 10px;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 20px;
    width: min(300px, calc(100% - 40px));
    background: rgba(10, 10, 10, 0.98);
    border: 1px solid var(--border);
    padding: 20px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    font-size: 15px;
    width: 100%;
  }

  .footer-container,
  .partner-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .partner-content,
  .partner-content h2 {
    text-align: center;
  }

  .partner-list {
    max-width: 680px;
    margin: 0 auto 28px;
  }

  .email-form {
    flex-direction: column;
  }

  .email-form button {
    width: 100%;
  }

  .ticket-grid,
  .passes-grid {
    grid-template-columns: 1fr;
  }

  .ticket-grid::before,
  .passes-divider {
    display: none;
  }

  .ticket-item {
    padding: 48px 24px;
    border-bottom: 1px solid var(--border);
  }

  .ticket-item:last-child {
    border-bottom: none;
  }

  .passes-col {
    gap: 64px;
    padding: 12px 0;
  }

  .image-strip {
    grid-template-columns: 1fr;
  }

  .image-strip img {
    height: 260px;
  }

  .sponsor-header-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .sponsor-price {
    text-align: left;
  }
}

@media (max-width: 700px) {
  .featured-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .artists-grid {
    grid-template-columns: 1fr;
  }

  .artist-meta {
    flex-wrap: wrap;
  }

  .intro-card,
  .content-card,
  .standard-card {
    padding: 34px 24px;
  }

  #schedule .agenda-content,
  #schedule .centered-agenda {
    max-width: 100%;
  }

  #schedule .section-title,
  #schedule .centered-agenda .section-title {
    font-size: clamp(2.2rem, 11vw, 3.4rem);
  }

  #schedule .agenda-day h3 {
    font-size: clamp(1.9rem, 10vw, 3rem);
  }

  #schedule .btn-gold {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 56px 18px;
  }

  .eyebrow {
    font-size: 16px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
    min-width: 0;
  }

  .date-row {
    font-size: 17px;
  }

  .count-num {
    width: 100px;
    height: 100px;
    font-size: 42px;
  }

  .count-label {
    font-size: 14px;
  }

  .submission-page {
    padding: 120px 16px 60px;
  }

  .submission-rules,
  .payment-box,
  .submission-form {
    padding: 20px;
  }

  .ticket-item h2,
  .ticket-item h3 {
    font-size: 34px;
  }

  .ticket-item p,
  .pass-card p,
  .intro-copy {
    font-size: 16px;
  }

  .sponsor-packages-section,
  .additional-sponsorship-section,
  .sponsor-form-section,
  .partner-section {
    padding: 64px 16px;
  }

  .sponsorship-hero {
    padding: 120px 16px 70px;
  }

  .sponsor-header {
    padding: 20px 18px;
  }

  .accordion-content-inner {
    padding: 0 18px 0;
  }

  .sponsor-item.active .accordion-content-inner {
    padding-bottom: 20px;
  }

  .sponsor-form {
    padding: 22px 18px;
  }

  .form-row,
  .form-row-3,
  .sponsor-form .form-row,
  .sponsor-form .form-row-3 {
    grid-template-columns: 1fr;
  }
}

/* =========================
   AGENDA CENTERING
========================= */

.centered-agenda {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.agenda-day {
  margin-bottom: 40px;
}

.agenda-day h3 {
  margin-bottom: 10px;
}

.agenda-day p {
  margin-bottom: 12px;
}

/* Center buttons */
.btn-gold {
  display: inline-block;
  margin: 10px auto 20px;
}

/* If multiple events in a day, tighten spacing */
.agenda-day p + .btn-gold {
  margin-top: 8px;
}

/* Optional: nicer spacing between blocks */
.agenda-day + .agenda-day {
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* =========================
   FORCE AGENDA CENTERING
========================= */

#schedule .container {
  display: flex;
  justify-content: center;
}

#schedule .agenda-content,
#schedule .centered-agenda {
  max-width: 760px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

#schedule .section-title,
#schedule .centered-agenda .section-title {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

#schedule .agenda-day {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

#schedule .agenda-day h3,
#schedule .agenda-day p {
  text-align: center;
}

#schedule .btn-gold {
  display: inline-flex;
  margin: 10px auto 24px;
}