/* ============================================
   FIB Benicassim Fan Site - Main Stylesheet
   ============================================ */

:root {
  --orange: #e8521a;
  --orange-light: #f07040;
  --orange-dark: #c43d10;
  --teal: #1a8fa0;
  --teal-dark: #127080;
  --yellow: #f5c518;
  --dark: #1a1a2e;
  --dark-mid: #2a2a3e;
  --light: #f8f6f2;
  --white: #ffffff;
  --grey: #6b7280;
  --grey-light: #e5e7eb;
  --text: #1f2937;
  --font-main: 'Inter', 'Segoe UI', Arial, sans-serif;
  --font-display: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  --radius: 8px;
  --shadow: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.2);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-main);
  color: var(--text);
  background: var(--light);
  line-height: 1.6;
  font-size: 16px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange); text-decoration: none; }
a:hover { color: var(--orange-dark); }
ul { list-style: none; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.75rem); }
h4 { font-size: 1.2rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.site-header {
  background: var(--dark);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  height: 70px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  height: 44px;
  width: auto;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
  line-height: 1.1;
}
.logo-text span {
  display: block;
  color: var(--orange);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.main-nav a {
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  transition: all 0.2s;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.main-nav a:hover,
.main-nav a.active {
  background: var(--orange);
  color: var(--white);
}

.nav-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.25rem !important;
}
.nav-cta:hover {
  background: var(--orange-dark) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.5rem;
}
.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   HERO SECTIONS
   ============================================ */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: brightness(0.55);
  transform: scale(1.02);
  transition: transform 8s ease;
}

.hero:hover .hero-bg { transform: scale(1.05); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,46,0.6) 0%, rgba(232,82,26,0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 4rem 1.5rem;
  max-width: 900px;
}

.hero-badge {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1.2rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.hero-content p {
  font-size: 1.2rem;
  opacity: 0.92;
  max-width: 650px;
  margin: 0 auto 2rem;
  text-shadow: 0 1px 10px rgba(0,0,0,0.3);
}

.hero-dates {
  display: inline-flex;
  gap: 2rem;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 1rem 2rem;
  margin-bottom: 2rem;
}
.hero-date-item {
  text-align: center;
}
.hero-date-item .label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.75;
  margin-bottom: 0.2rem;
}
.hero-date-item .value {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  font-family: var(--font-display);
}

.hero-divider {
  width: 1px;
  background: rgba(255,255,255,0.25);
  align-self: stretch;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: all 0.2s;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232,82,26,0.35);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}
.btn-outline:hover {
  background: var(--orange);
  color: var(--white);
}
.btn-dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.btn-dark:hover {
  background: var(--dark-mid);
  transform: translateY(-1px);
}
.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 5rem 1.5rem;
}
.section-dark {
  background: var(--dark);
  color: var(--white);
}
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--white); }
.section-orange {
  background: var(--orange);
  color: var(--white);
}
.section-orange h1, .section-orange h2, .section-orange h3 { color: var(--white); }
.section-teal {
  background: var(--teal);
  color: var(--white);
}
.section-grey {
  background: #f1f5f9;
}

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

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p { color: var(--grey); font-size: 1.05rem; }
.section-dark .section-header p { color: rgba(255,255,255,0.7); }
.section-orange .section-header p { color: rgba(255,255,255,0.85); }

.section-label {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.section-dark .section-label { background: var(--orange); }

/* ============================================
   CARDS
   ============================================ */
.cards-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
.cards-grid-2 { grid-template-columns: repeat(auto-fill, minmax(420px, 1fr)); }
.cards-grid-4 { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }

.card {
  display: block;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.card-body {
  padding: 1.5rem;
}
.card-meta {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}
.tag {
  display: inline-block;
  background: rgba(232,82,26,0.1);
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}
.tag-teal { background: rgba(26,143,160,0.1); color: var(--teal-dark); }
.tag-dark { background: rgba(26,26,46,0.08); color: var(--dark); }
.card-date {
  font-size: 0.8rem;
  color: var(--grey);
}
.card-body h3 { margin-bottom: 0.5rem; font-size: 1.15rem; }
.card-body h3 a { color: var(--dark); }
.card-body h3 a:hover { color: var(--orange); }
.card-body p { color: var(--grey); font-size: 0.95rem; }
.card-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--grey-light);
}

/* ============================================
   LINEUP
   ============================================ */
.lineup-tabs {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.lineup-tab {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.6rem 1.5rem;
  border-radius: 100px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s;
  font-family: var(--font-display);
}
.lineup-tab:hover, .lineup-tab.active {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.lineup-day { display: none; }
.lineup-day.active { display: block; }

.headliners {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.headliner-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.2s;
}
.headliner-card:hover {
  background: rgba(232,82,26,0.15);
  border-color: var(--orange);
  transform: translateY(-3px);
}
.headliner-number {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.headliner-name {
  color: var(--white);
  font-size: 1.5rem;
  font-family: var(--font-display);
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.headliner-stage {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
}

.support-acts {
  background: rgba(255,255,255,0.04);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.08);
}
.support-acts h4 {
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}
.support-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.support-name {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s;
}
.support-name:hover {
  background: var(--orange);
  color: var(--white);
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  background: var(--orange);
  padding: 2rem 1.5rem;
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  text-align: center;
}
.stat-item .number {
  font-size: 2.5rem;
  font-weight: 800;
  font-family: var(--font-display);
  color: var(--white);
  line-height: 1;
  display: block;
}
.stat-item .label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.8);
  margin-top: 0.25rem;
  display: block;
}

/* ============================================
   FEATURE BLOCKS
   ============================================ */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.feature-split.reverse { direction: rtl; }
.feature-split.reverse > * { direction: ltr; }

.feature-img {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.feature-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.4s;
}
.feature-img:hover img { transform: scale(1.04); }

.feature-text { padding: 1rem 0; }
.feature-text h2 { margin-bottom: 1rem; }
.feature-text p { color: var(--grey); margin-bottom: 1.5rem; font-size: 1.05rem; }
.feature-text ul { margin: 1rem 0 1.5rem; }
.feature-text ul li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  color: var(--grey);
  font-size: 0.95rem;
}
.feature-text ul li::before {
  content: "✓";
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

/* ============================================
   NEWSLETTER FORM
   ============================================ */
.newsletter-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 100%);
  padding: 5rem 1.5rem;
  text-align: center;
}
.newsletter-section h2 { color: var(--white); margin-bottom: 0.75rem; }
.newsletter-section p { color: rgba(255,255,255,0.7); max-width: 500px; margin: 0 auto 2.5rem; }

.newsletter-form-wrap {
  max-width: 560px;
  margin: 0 auto;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 2.5rem;
}
.newsletter-form-wrap h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 1.75rem;
  text-align: left;
}

.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.form-group input {
  width: 100%;
  padding: 0.875rem 1.1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-size: 0.95rem;
  transition: border-color 0.2s, background 0.2s;
  font-family: var(--font-main);
}
.form-group input:focus {
  outline: none;
  border-color: var(--orange);
  background: rgba(255,255,255,0.12);
}
.form-group input::placeholder { color: rgba(255,255,255,0.35); }

/* Dark input for light backgrounds */
.light-form .form-group label { color: var(--text); }
.light-form .form-group input {
  background: var(--white);
  border: 1px solid var(--grey-light);
  color: var(--text);
}
.light-form .form-group input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,82,26,0.12);
}
.light-form .form-group input::placeholder { color: #aab; }

.form-submit-btn {
  width: 100%;
  padding: 1rem;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  margin-top: 0.5rem;
}
.form-submit-btn:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232,82,26,0.35);
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #2d1a0e 100%);
  padding: 5rem 1.5rem 4rem;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232,82,26,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero h1 { color: var(--white); }
.page-hero p {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  max-width: 580px;
  margin: 0.75rem auto 0;
}

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb {
  background: var(--grey-light);
  padding: 0.75rem 1.5rem;
  font-size: 0.82rem;
}
.breadcrumb-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.breadcrumb a { color: var(--grey); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb-sep { color: var(--grey); }
.breadcrumb-current { color: var(--text); font-weight: 600; }

/* ============================================
   TIPS / ACCORDION
   ============================================ */
.tips-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}
.tip-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--orange);
  transition: transform 0.2s;
}
.tip-card:hover { transform: translateY(-3px); }
.tip-number {
  font-size: 2rem;
  font-weight: 800;
  font-family: var(--font-display);
  color: rgba(232,82,26,0.15);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.tip-card h3 { color: var(--dark); margin-bottom: 0.5rem; font-size: 1.05rem; }
.tip-card p { color: var(--grey); font-size: 0.9rem; }

/* ============================================
   TRAVEL / INFO BOXES
   ============================================ */
.info-box {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow);
}
.info-box-icon {
  width: 52px;
  height: 52px;
  background: rgba(232,82,26,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}
.info-box h3 { margin-bottom: 0.5rem; font-size: 1.1rem; }
.info-box p { color: var(--grey); font-size: 0.9rem; }

.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}
.price-table th, .price-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--grey-light);
  font-size: 0.9rem;
}
.price-table th {
  background: var(--dark);
  color: var(--white);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.price-table tr:hover td { background: rgba(232,82,26,0.04); }
.price-table .badge {
  display: inline-block;
  background: rgba(26,143,160,0.1);
  color: var(--teal-dark);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
}

/* ============================================
   STORIES
   ============================================ */
.story-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.story-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.story-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.story-body { padding: 1.5rem; }
.story-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange) 0%, var(--teal) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.author-info .name { font-weight: 700; font-size: 0.9rem; color: var(--dark); }
.author-info .year { font-size: 0.78rem; color: var(--grey); }
.story-body h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.story-body p { font-size: 0.9rem; color: var(--grey); }
blockquote {
  border-left: 3px solid var(--orange);
  padding-left: 1.25rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--grey);
}
blockquote strong { color: var(--dark); font-style: normal; }

/* ============================================
   TICKET BOXES
   ============================================ */
.ticket-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.ticket-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 2px solid var(--grey-light);
  text-align: center;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}
.ticket-card.featured {
  border-color: var(--orange);
  transform: scale(1.03);
}
.ticket-card.featured::before {
  content: "Most Popular";
  position: absolute;
  top: 1rem;
  right: -1.5rem;
  background: var(--orange);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 2rem;
  transform: rotate(45deg);
}
.ticket-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}
.ticket-card.featured:hover { transform: scale(1.03) translateY(-4px); }
.ticket-type {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--grey);
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.ticket-price {
  font-size: 2.5rem;
  font-weight: 800;
  font-family: var(--font-display);
  color: var(--dark);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.ticket-price span { font-size: 1.2rem; font-weight: 600; }
.ticket-desc { color: var(--grey); font-size: 0.85rem; margin-bottom: 1.5rem; }
.ticket-features {
  text-align: left;
  margin-bottom: 2rem;
}
.ticket-features li {
  display: flex;
  gap: 0.5rem;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}
.ticket-features li::before {
  content: "✓";
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================
   CTA BAND
   ============================================ */
.cta-band {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  padding: 4rem 1.5rem;
  text-align: center;
  color: var(--white);
}
.cta-band h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-band p { color: rgba(255,255,255,0.85); max-width: 540px; margin: 0 auto 2rem; font-size: 1.05rem; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: #111120;
  color: rgba(255,255,255,0.7);
  padding: 4rem 1.5rem 2rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand .logo-text { color: var(--white); }
.footer-brand p {
  font-size: 0.88rem;
  margin-top: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
}
.footer-col h4 {
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul a {
  color: rgba(255,255,255,0.55);
  font-size: 0.875rem;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--orange); }
.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  transition: all 0.2s;
  text-decoration: none;
}
.social-link:hover {
  background: var(--orange);
  color: var(--white);
}
.footer-bottom {
  max-width: 1200px;
  margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer-disclaimer {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.5;
  margin-top: 1rem;
}

/* ============================================
   GALLERY STRIP
   ============================================ */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  height: 280px;
}
.gallery-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s, filter 0.3s;
  filter: saturate(0.85);
}
.gallery-strip img:hover { transform: scale(1.03); filter: saturate(1.2); z-index: 1; position: relative; }

/* ============================================
   MAP / LOCATION
   ============================================ */
.map-embed {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 16/7;
}
.map-embed iframe { width: 100%; height: 100%; border: none; }

/* ============================================
   ALERT / NOTICE
   ============================================ */
.notice {
  background: rgba(232,82,26,0.08);
  border: 1px solid rgba(232,82,26,0.2);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.notice-icon { font-size: 1.25rem; flex-shrink: 0; margin-top: 0.1rem; }
.notice p { margin: 0; font-size: 0.9rem; color: var(--text); }
.notice strong { color: var(--orange-dark); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .feature-split { grid-template-columns: 1fr; gap: 2rem; }
  .feature-split.reverse { direction: ltr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .gallery-strip { grid-template-columns: repeat(3, 1fr); }
  .gallery-strip img:nth-child(n+4) { display: none; }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
    position: fixed;
    inset: 70px 0 0 0;
    background: var(--dark);
    padding: 2rem 1.5rem;
    overflow-y: auto;
    z-index: 999;
  }
  .main-nav.open { display: flex; flex-direction: column; }
  .main-nav ul { flex-direction: column; gap: 0; }
  .main-nav li { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .main-nav li:first-child { border-top: 1px solid rgba(255,255,255,0.08); }
  .main-nav a { font-size: 1.15rem; padding: 1rem 1rem; display: block; }
  .main-nav .nav-cta { margin-top: 1.5rem; text-align: center; border-radius: 8px; border: none !important; }
  .hamburger { display: flex; }
  .hero-dates { flex-wrap: wrap; gap: 1rem; }
  .cards-grid-2 { grid-template-columns: 1fr; }
  .gallery-strip { grid-template-columns: repeat(2, 1fr); height: 200px; }
  .gallery-strip img:nth-child(n+3) { display: none; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .section { padding: 3rem 1.25rem; }
  .hero { min-height: 480px; }
  .btn-group { flex-direction: column; align-items: center; }
  .ticket-card.featured { transform: none; }
  .headliners { grid-template-columns: 1fr; }
}
