/* ============================================
   ORAH — Design System
   Where light meets rhythm
   ============================================ */

@font-face {
  font-family: 'Geologica';
  src: url('../assets/fonts/Geologica-VariableFont_CRSV,SHRP,slnt,wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* ============================================
   VARIABLES
   ============================================ */
:root {
  --bg:           #09090A;
  --bg-alt:       #111110;
  --bg-surface:   #181716;
  --cream:        #F2EBD4;
  --cream-muted:  rgba(242,235,212,0.55);
  --cream-subtle: rgba(242,235,212,0.10);
  --orange:       #D4561A;
  --orange-light: #E8651F;
  --orange-dim:   rgba(212,86,26,0.15);
  --border:       rgba(242,235,212,0.13);
  --border-mid:   rgba(242,235,212,0.22);

  --font: 'Geologica', system-ui, -apple-system, sans-serif;
  --nav-h: 80px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-io:  cubic-bezier(0.65, 0, 0.35, 1);
  --container: min(1280px, 100% - 48px);
  --pad: clamp(80px, 10vw, 160px);
  --pad-sm: clamp(60px, 7vw, 100px);
}

/* ============================================
   RESET
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: var(--font); background: var(--bg); color: var(--cream); line-height: 1.6; font-weight: 300; overflow-x: hidden; }
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
input, textarea, select { font-family: var(--font); }

/* ============================================
   TYPOGRAPHY SCALE
   ============================================ */
.disp-1  { font-size: clamp(36px, 11vw, 150px); font-weight: 800; line-height: 0.92; letter-spacing: -0.035em; }
.disp-2  { font-size: clamp(44px, 7vw, 100px);  font-weight: 800; line-height: 0.95; letter-spacing: -0.03em; }
.disp-3  { font-size: clamp(34px, 5vw, 68px);   font-weight: 800; line-height: 1.0;  letter-spacing: -0.025em; }
.h1      { font-size: clamp(28px, 3.5vw, 48px);  font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; }
.h2      { font-size: clamp(22px, 2.5vw, 32px);  font-weight: 600; line-height: 1.25; letter-spacing: -0.01em; }
.h3      { font-size: clamp(18px, 2vw, 24px);    font-weight: 600; line-height: 1.3; }
.label   { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; }
.body-lg { font-size: clamp(16px, 1.5vw, 20px);  font-weight: 300; line-height: 1.75; }
.body-md { font-size: 16px; font-weight: 300; line-height: 1.7; }
.body-sm { font-size: 14px; font-weight: 300; line-height: 1.65; color: var(--cream-muted); }

.text-orange { color: var(--orange); }
.text-muted  { color: var(--cream-muted); }

/* ============================================
   LAYOUT
   ============================================ */
.wrap    { width: var(--container); margin-inline: auto; }
.section { padding-block: var(--pad); }
.section-sm { padding-block: var(--pad-sm); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 30px; border-radius: var(--radius-pill);
  font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  transition: all 0.28s var(--ease-out); cursor: pointer; white-space: nowrap;
  border: 1.5px solid transparent;
}
.btn-primary   { background: var(--orange); color: #fff; border-color: var(--orange); }
.btn-primary:hover { background: var(--orange-light); border-color: var(--orange-light); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(212,86,26,0.3); }
.btn-outline   { background: transparent; color: var(--cream); border-color: var(--border-mid); }
.btn-outline:hover { border-color: var(--cream); }
.btn-outline-o { background: transparent; color: var(--orange); border-color: var(--orange); }
.btn-outline-o:hover { background: var(--orange); color: #fff; }
.btn-ghost     { background: rgba(242,235,212,0.06); color: var(--cream); border-color: transparent; }
.btn-ghost:hover { background: rgba(242,235,212,0.12); }
.btn-lg { padding: 18px 42px; font-size: 15px; }
.btn-sm { padding: 9px 20px; font-size: 12px; }
.btn-group { display: flex; gap: 10px; flex-wrap: wrap; }

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background 0.4s, border-color 0.4s, backdrop-filter 0.4s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(9,9,10,0.82);
  backdrop-filter: blur(24px) saturate(1.4);
  border-bottom-color: var(--border);
}
.header-inner {
  width: var(--container); margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.header-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.header-logo img { width: 200px; height: 52px; object-fit: cover; object-position: center 47%; }
.main-nav { display: flex; align-items: center; gap: 2px; flex: 1; justify-content: center; }
.main-nav a {
  padding: 8px 14px; font-size: 13px; font-weight: 400;
  color: var(--cream-muted); border-radius: var(--radius-pill);
  transition: color 0.2s, background 0.2s; white-space: nowrap;
}
.main-nav a:hover, .main-nav a.active { color: var(--cream); background: var(--cream-subtle); }
.header-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { width: 22px; height: 1.5px; background: var(--cream); border-radius: 2px; transition: all 0.3s var(--ease-out); display: block; }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  position: fixed; inset: var(--nav-h) 0 0 0; z-index: 899;
  background: var(--bg); display: flex; flex-direction: column;
  padding: 40px 24px 60px; gap: 0;
  transform: translateX(110%); transition: transform 0.45s var(--ease-out);
  overflow-y: auto;
}
.mobile-nav.open { transform: none; }
.mobile-nav a {
  font-size: 28px; font-weight: 700; letter-spacing: -0.02em;
  padding: 18px 0; border-bottom: 1px solid var(--border); color: var(--cream);
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--orange); }
.mobile-nav .btn { margin-top: 32px; align-self: flex-start; font-size: 13px; padding: 14px 30px; border-bottom: none; }

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100svh; display: flex; align-items: center;
  padding-top: var(--nav-h); position: relative; overflow: hidden;
}
.hero-center { text-align: center; justify-content: center; }
.hero-glow {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(ellipse 70% 60% at 55% 45%, rgba(212,86,26,0.14) 0%, transparent 65%);
}
.hero-blob {
  position: absolute; right: 5%; top: 50%; transform: translateY(-50%);
  width: clamp(250px, 40vw, 640px); opacity: 0.05;
  pointer-events: none; user-select: none;
  animation: blob-rotate 12s ease-in-out infinite;
}
.hero-content { position: relative; z-index: 1; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; border-radius: var(--radius-pill);
  border: 1px solid var(--border); margin-bottom: 28px;
}
.eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); display: block; flex-shrink: 0; }
.eyebrow-text { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cream-muted); }
.hero-title { margin-bottom: 24px; }
.hero-sub { color: var(--cream-muted); margin-bottom: 48px; max-width: 560px; }
.hero-center .hero-sub { margin-inline: auto; }
.hero-center .btn-group { justify-content: center; }
/* Ensure content doesn't push into scroll hint area */
.hero-content { padding-bottom: 100px; }

.scroll-hint {
  position: absolute; bottom: 36px; left: 0; right: 0;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  opacity: 0.4; animation: fadeUp 1s 1.8s both;
  pointer-events: none;
}
.scroll-hint span { font-size: 9px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; }
.scroll-hint-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--cream) 0%, transparent 100%);
  animation: scrollPulse 2s ease-in-out infinite;
}
/* Hide scroll hint when viewport is too short */
@media (max-height: 650px) { .scroll-hint { display: none; } }

/* ============================================
   HERO VIDÉO BACKGROUND
   ============================================ */
.hero-video-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  z-index: 0; pointer-events: none;
}
.hero-video-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(9,9,10,0.60) 0%,
    rgba(9,9,10,0.25) 35%,
    rgba(9,9,10,0.25) 60%,
    rgba(9,9,10,0.92) 100%
  );
}
.hero-video .hero-glow  { z-index: 2; }
.hero-video .hero-content { z-index: 3; }
.hero-video .scroll-hint  { z-index: 3; }

/* ============================================
   MEDIA PLACEHOLDER
   ============================================ */
.placeholder {
  position: relative; overflow: hidden;
  background: var(--bg-surface); border: 1px dashed var(--border);
  border-radius: var(--radius-md);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; color: var(--cream-muted);
}
.placeholder::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--orange-dim) 0%, transparent 55%);
  pointer-events: none;
}
.placeholder-icon { font-size: 40px; opacity: 0.35; position: relative; z-index: 1; }
.placeholder-label { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.45; position: relative; z-index: 1; }
.ph-16-9   { aspect-ratio: 16/9; }
.ph-4-3    { aspect-ratio: 4/3; }
.ph-1-1    { aspect-ratio: 1/1; }
.ph-3-4    { aspect-ratio: 3/4; }
.ph-9-16   { aspect-ratio: 9/16; }
.ph-video  { aspect-ratio: 16/9; }

/* ============================================
   SECTION HEADER
   ============================================ */
.sec-head { margin-bottom: 60px; }
.sec-head-center { text-align: center; }
.sec-head-center p { margin-inline: auto; }
.sec-head .label { color: var(--orange); display: block; margin-bottom: 14px; }
.sec-head h2 { margin-bottom: 16px; }
.sec-head p { color: var(--cream-muted); max-width: 520px; line-height: 1.7; font-size: 16px; }

/* ============================================
   EVENT CARDS
   ============================================ */
.event-card {
  border: 1px solid var(--border); border-radius: var(--radius-md);
  background: var(--bg-alt); overflow: hidden; display: flex; flex-direction: column;
  transition: border-color 0.3s, transform 0.35s var(--ease-out);
}
.event-card:hover { border-color: rgba(212,86,26,0.45); transform: translateY(-6px); }
.event-card .placeholder { border-radius: 0; border: none; }
.event-card-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--orange); color: #fff;
  padding: 4px 12px; border-radius: var(--radius-pill);
  font-size: 10px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
}
.event-card-media { position: relative; }
.event-card-body { padding: 28px 28px 32px; flex: 1; display: flex; flex-direction: column; }
.event-card-date { font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange); margin-bottom: 10px; }
.event-card-title { font-size: clamp(26px, 3vw, 36px); font-weight: 800; letter-spacing: -0.025em; line-height: 1.05; margin-bottom: 10px; }
.event-card-loc { font-size: 13px; color: var(--cream-muted); margin-bottom: 16px; display: flex; align-items: center; gap: 6px; }
.event-card-desc { font-size: 14px; color: var(--cream-muted); line-height: 1.65; margin-bottom: 28px; flex: 1; }
.event-card-footer { display: flex; gap: 10px; flex-wrap: wrap; }

/* ============================================
   ARTIST CARDS
   ============================================ */
.artist-card {
  border: 1px solid var(--border); border-radius: var(--radius-md);
  overflow: hidden; background: var(--bg-alt);
  transition: border-color 0.3s, transform 0.3s var(--ease-out);
}
.artist-card:hover { border-color: rgba(212,86,26,0.5); transform: translateY(-4px); }
.artist-card .placeholder { border-radius: 0; border: none; }
.artist-card-info { padding: 16px 20px 20px; }
.artist-card-name { font-size: 16px; font-weight: 700; letter-spacing: -0.01em; }
.artist-card-tag { font-size: 12px; color: var(--orange); font-weight: 600; margin-top: 4px; }
.artist-card.headliner { border-color: rgba(212,86,26,0.35); }
.artist-card.headliner .artist-card-name { font-size: 20px; }

/* ============================================
   DNA PILLARS
   ============================================ */
.pillar {
  padding: 36px 28px; border: 1px solid var(--border); border-radius: var(--radius-md);
  background: var(--bg-alt); transition: border-color 0.3s, background 0.3s;
}
.pillar:hover { border-color: rgba(212,86,26,0.35); background: var(--bg-surface); }
.pillar-num { font-size: 11px; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; color: var(--orange); margin-bottom: 20px; }
.pillar-icon { font-size: 28px; margin-bottom: 18px; }
.pillar-title { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.pillar-desc { font-size: 14px; color: var(--cream-muted); line-height: 1.65; }

/* ============================================
   STATS
   ============================================ */
.stats-bar { display: flex; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stat { flex: 1; padding: 48px 40px; text-align: center; border-right: 1px solid var(--border); }
.stat:last-child { border-right: none; }
.stat-num { font-size: clamp(48px, 6vw, 80px); font-weight: 800; letter-spacing: -0.04em; color: var(--orange); line-height: 1; margin-bottom: 8px; }
.stat-lbl { font-size: 13px; color: var(--cream-muted); font-weight: 400; }

/* ============================================
   TICKET CARDS
   ============================================ */
.ticket-card {
  border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 40px 32px; display: flex; flex-direction: column; background: var(--bg-alt);
  transition: border-color 0.3s;
}
.ticket-card.featured {
  border-color: var(--orange);
  background: linear-gradient(145deg, rgba(212,86,26,0.1) 0%, var(--bg-alt) 60%);
}
.ticket-type-lbl { font-size: 11px; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; color: var(--orange); margin-bottom: 14px; }
.ticket-type { font-size: 26px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 8px; }
.ticket-price { font-size: 44px; font-weight: 800; letter-spacing: -0.04em; line-height: 1; margin-bottom: 4px; }
.ticket-price sup { font-size: 24px; vertical-align: top; margin-top: 8px; }
.ticket-price small { font-size: 18px; font-weight: 400; color: var(--cream-muted); margin-left: 4px; }
.ticket-tagline { font-size: 13px; color: var(--cream-muted); margin-bottom: 28px; }
.ticket-features { display: flex; flex-direction: column; gap: 10px; flex: 1; margin-bottom: 32px; }
.ticket-features li { font-size: 14px; display: flex; gap: 10px; align-items: flex-start; line-height: 1.5; }
.ticket-features li::before { content: '✓'; color: var(--orange); font-weight: 800; flex-shrink: 0; }

/* ============================================
   FAQ
   ============================================ */
.faq { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; text-align: left; padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  font-size: 16px; font-weight: 500; color: var(--cream);
  background: none; border: none; cursor: pointer; transition: color 0.2s;
}
.faq-q:hover { color: var(--orange); }
.faq-icon { flex-shrink: 0; width: 20px; height: 20px; position: relative; transition: transform 0.3s var(--ease-out); }
.faq-icon::before, .faq-icon::after {
  content: ''; position: absolute; background: currentColor; border-radius: 1px;
}
.faq-icon::before { width: 12px; height: 1.5px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.faq-icon::after { width: 1.5px; height: 12px; top: 50%; left: 50%; transform: translate(-50%, -50%); transition: opacity 0.3s, transform 0.3s var(--ease-out); }
.faq-item.open .faq-q { color: var(--cream); }
.faq-item.open .faq-icon::after { opacity: 0; transform: translate(-50%, -50%) rotate(90deg); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height 0.42s var(--ease-out); }
.faq-a-inner { padding: 0 0 22px; font-size: 15px; color: var(--cream-muted); line-height: 1.75; max-width: 680px; }

/* ============================================
   SPONSORS
   ============================================ */
.sponsor-grid { display: flex; flex-wrap: wrap; gap: 2px; }
.sponsor-item {
  flex: 1 1 140px; height: 80px;
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  padding: 12px 24px; background: var(--bg-alt);
  transition: border-color 0.25s;
}
.sponsor-item:hover { border-color: rgba(242,235,212,0.3); }
.sponsor-item span { font-size: 13px; font-weight: 700; letter-spacing: 0.06em; color: var(--cream-muted); text-transform: uppercase; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial {
  padding: 32px; border: 1px solid var(--border); border-radius: var(--radius-md);
  background: var(--bg-alt); display: flex; flex-direction: column; gap: 24px;
}
.testimonial-quote { font-size: 17px; font-style: italic; font-weight: 300; line-height: 1.75; }
.testimonial-quote::before { content: '"'; color: var(--orange); }
.testimonial-quote::after  { content: '"'; color: var(--orange); }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--cream-subtle); display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 700; flex-shrink: 0;
}
.testimonial-name { font-size: 14px; font-weight: 700; }
.testimonial-role { font-size: 12px; color: var(--cream-muted); }

/* ============================================
   CALLOUTS
   ============================================ */
.callout-row { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.callout {
  padding: 56px 48px; border: 1px solid var(--border);
  border-radius: var(--radius-md); background: var(--bg-alt);
  display: flex; flex-direction: column; gap: 20px;
}
.callout-orange { background: var(--orange); border-color: var(--orange); color: #fff; }
.callout-orange .callout-lbl { color: rgba(255,255,255,0.6); }
.callout-orange .callout-desc { color: rgba(255,255,255,0.8); }
.callout-orange .btn-outline { border-color: rgba(255,255,255,0.5); color: #fff; }
.callout-orange .btn-outline:hover { background: #fff; color: var(--orange); border-color: #fff; }
.callout-lbl { font-size: 11px; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; color: var(--cream-muted); }
.callout-title { font-size: clamp(26px, 3vw, 40px); font-weight: 800; letter-spacing: -0.025em; line-height: 1.1; }
.callout-desc { font-size: 15px; color: var(--cream-muted); line-height: 1.65; }

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter-wrap { text-align: center; }
.newsletter-form {
  display: flex; gap: 8px; max-width: 440px;
  margin: 32px auto 0; flex-wrap: wrap; justify-content: center;
}
.newsletter-form input {
  flex: 1; min-width: 200px; padding: 14px 20px;
  border-radius: var(--radius-pill); border: 1.5px solid var(--border);
  background: var(--bg-surface); color: var(--cream); font-size: 14px;
  outline: none; transition: border-color 0.2s;
}
.newsletter-form input:focus { border-color: var(--orange); }
.newsletter-form input::placeholder { color: var(--cream-muted); }
.newsletter-note { font-size: 12px; color: var(--cream-muted); margin-top: 14px; }

/* ============================================
   TAB PROGRAMME
   ============================================ */
.tab-nav {
  display: flex; gap: 0; border-bottom: 1px solid var(--border);
  margin-bottom: 40px; overflow-x: auto;
}
.tab-nav::-webkit-scrollbar { display: none; }
.tab-btn {
  padding: 16px 28px; font-size: 14px; font-weight: 600;
  color: var(--cream-muted); background: none; border: none;
  border-bottom: 2px solid transparent; cursor: pointer;
  transition: all 0.2s; white-space: nowrap; margin-bottom: -1px;
}
.tab-btn:hover { color: var(--cream); }
.tab-btn.active { color: var(--cream); border-bottom-color: var(--orange); }
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeUp 0.35s var(--ease-out); }

.lineup-day { display: flex; flex-direction: column; gap: 3px; }
.lineup-slot {
  display: grid; grid-template-columns: 70px 1fr auto;
  align-items: center; gap: 20px; padding: 18px 24px;
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  background: var(--bg-alt); transition: border-color 0.2s;
}
.lineup-slot:hover { border-color: rgba(212,86,26,0.3); }
.lineup-slot-time { font-size: 13px; font-weight: 700; color: var(--orange); letter-spacing: 0.05em; }
.lineup-slot-name { font-size: 18px; font-weight: 700; letter-spacing: -0.01em; }
.lineup-slot-tag { font-size: 12px; color: var(--cream-muted); justify-self: end; }
.lineup-slot.headliner { border-color: rgba(212,86,26,0.35); }
.lineup-slot.headliner .lineup-slot-name { color: var(--orange); font-size: 22px; }
.lineup-slot.tba .lineup-slot-name { color: var(--cream-muted); font-weight: 400; font-style: italic; }

/* ============================================
   INFO CARDS
   ============================================ */
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
.info-card {
  padding: 24px 22px; border: 1px solid var(--border);
  border-radius: var(--radius-md); background: var(--bg-alt);
}
.info-icon { font-size: 22px; margin-bottom: 12px; }
.info-title { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; }
.info-text { font-size: 13px; color: var(--cream-muted); line-height: 1.65; }

/* ============================================
   PARTNER TIERS
   ============================================ */
.ptier {
  border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 40px 32px; display: flex; flex-direction: column;
  background: var(--bg-alt); transition: border-color 0.3s;
}
.ptier.featured { border-color: var(--orange); background: linear-gradient(145deg, rgba(212,86,26,0.09) 0%, var(--bg-alt) 55%); }
.ptier-level { font-size: 11px; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; color: var(--orange); margin-bottom: 10px; }
.ptier-name { font-size: 28px; font-weight: 800; letter-spacing: -0.025em; margin-bottom: 8px; }
.ptier-features { display: flex; flex-direction: column; gap: 10px; flex: 1; margin-bottom: 32px; }
.ptier-features li { font-size: 14px; display: flex; gap: 10px; align-items: flex-start; line-height: 1.5; }
.ptier-features li::before { content: '✓'; color: var(--orange); font-weight: 800; flex-shrink: 0; margin-top: 1px; }
.ptier-price { font-size: 34px; font-weight: 800; letter-spacing: -0.03em; line-height: 1; margin-bottom: 4px; }
.ptier-price sup { font-size: 18px; vertical-align: top; margin-top: 6px; }
.ptier-price small { font-size: 14px; font-weight: 400; color: var(--cream-muted); }
.ptier-price-note { font-size: 11px; color: var(--cream-muted); margin-bottom: 24px; text-transform: uppercase; letter-spacing: 0.08em; }

/* ============================================
   FORMS
   ============================================ */
.form-field { margin-bottom: 20px; }
.form-field label { display: block; font-size: 11px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cream-muted); margin-bottom: 8px; }
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%; padding: 14px 18px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); background: var(--bg-surface);
  color: var(--cream); font-size: 15px; outline: none; transition: border-color 0.2s;
  resize: vertical; appearance: none;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus { border-color: var(--orange); }
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--cream-muted); }
.form-field select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(242,235,212,0.4)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 44px; }
.form-field select option { background: var(--bg); color: var(--cream); }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ============================================
   PHOTO GRID
   ============================================ */
.photo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; grid-auto-flow: row dense; }
.photo-grid > div { border-radius: var(--radius-md); overflow: hidden; }
.photo-grid .placeholder { border-radius: 0; border: none; }
.photo-grid-span2 { grid-column: span 2; }
.photo-grid-span2 .placeholder { aspect-ratio: 2/1; }

/* ============================================
   VOLUNTEER ROLES
   ============================================ */
.role-list { display: flex; flex-direction: column; gap: 3px; }
.role-item {
  display: flex; align-items: center; gap: 20px;
  padding: 22px 26px; border: 1px solid var(--border); border-radius: var(--radius-sm);
  background: var(--bg-alt); transition: border-color 0.2s;
}
.role-item:hover { border-color: rgba(212,86,26,0.3); }
.role-icon { font-size: 22px; width: 44px; flex-shrink: 0; text-align: center; }
.role-name { font-size: 16px; font-weight: 700; margin-bottom: 3px; }
.role-desc { font-size: 13px; color: var(--cream-muted); }

/* ============================================
   NOTICE
   ============================================ */
.notice {
  background: rgba(212,86,26,0.1); border: 1px solid rgba(212,86,26,0.25);
  border-radius: var(--radius-sm); padding: 16px 20px;
  display: flex; gap: 12px; align-items: flex-start;
}
.notice-icon { font-size: 18px; flex-shrink: 0; line-height: 1.4; }
.notice p { font-size: 14px; color: var(--cream-muted); line-height: 1.65; }
.notice strong { color: var(--cream); font-weight: 600; }

/* ============================================
   MARQUEE
   ============================================ */
.marquee-outer { overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding-block: 18px; }
.marquee-track { display: flex; gap: 56px; width: max-content; animation: marquee 22s linear infinite; }
.marquee-track span { font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cream-muted); white-space: nowrap; }
.marquee-track .dot { color: var(--orange); }

/* Sponsor marquee */
.sponsor-marquee-outer { overflow: hidden; padding-block: 28px; }
.sponsor-marquee-outer + .sponsor-marquee-outer { padding-top: 6px; border-top: none; }
.sponsor-marquee-track { display: flex; gap: 88px; align-items: center; width: max-content; animation: marquee 44s linear infinite; }
.sponsor-marquee-track.reverse { animation-direction: reverse; animation-duration: 38s; }
.sponsor-logo { height: 46px; width: auto; max-width: 200px; object-fit: contain; display: block; flex-shrink: 0; filter: brightness(0) invert(1); opacity: 0.45; transition: opacity 0.35s; }
.sponsor-marquee-outer:hover .sponsor-logo { opacity: 0.28; }
.sponsor-logo:hover { opacity: 1 !important; }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-block { text-align: center; padding-block: var(--pad); border-top: 1px solid var(--border); }
.cta-block h2 { margin-bottom: 14px; }
.cta-block p { color: var(--cream-muted); margin-bottom: 40px; max-width: 460px; margin-inline: auto; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer { border-top: 1px solid var(--border); padding-block: 72px 40px; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 64px;
}
.footer-brand-desc { font-size: 14px; color: var(--cream-muted); line-height: 1.75; margin-top: 16px; max-width: 280px; }
.footer-col h4 { font-size: 11px; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; color: var(--cream-muted); margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 14px; color: var(--cream-muted); transition: color 0.2s; }
.footer-col ul a:hover { color: var(--cream); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px; padding-top: 32px;
  border-top: 1px solid var(--border); font-size: 13px; color: var(--cream-muted);
}
.footer-socials { display: flex; gap: 18px; }
.footer-socials a { color: var(--cream-muted); transition: color 0.2s; font-size: 14px; }
.footer-socials a:hover { color: var(--cream); }
.footer-logo img { height: 24px; }

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
  position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
  z-index: 999; background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 20px 28px;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  max-width: min(620px, calc(100% - 32px));
  backdrop-filter: blur(20px); box-shadow: 0 24px 48px rgba(0,0,0,0.5);
  animation: cookieSlide 0.5s var(--ease-out);
}
.cookie-banner p { font-size: 13px; color: var(--cream-muted); line-height: 1.6; flex: 1; min-width: 200px; }
.cookie-banner a { color: var(--orange); text-decoration: underline; }
.cookie-actions { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-banner.hidden { display: none; }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes cookieSlide {
  from { opacity: 0; transform: translateX(-50%) translateY(16px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
@keyframes scrollPulse {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50%  { opacity: 1; transform: scaleY(1); transform-origin: top; }
  100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}
@keyframes blob-rotate {
  0%, 100% { transform: translateY(-50%) rotate(0deg); }
  33%       { transform: translateY(-50%) rotate(6deg) scale(1.03); }
  66%       { transform: translateY(-50%) rotate(-4deg) scale(0.97); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.reveal.visible { opacity: 1; transform: none; }
.rd1 { transition-delay: 0.08s; }
.rd2 { transition-delay: 0.16s; }
.rd3 { transition-delay: 0.24s; }
.rd4 { transition-delay: 0.32s; }

/* ============================================
   SPLIT LAYOUT (used inline on interior pages)
   ============================================ */
.split-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.split-2-start { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
@media (max-width: 768px) {
  .split-2, .split-2-start { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================
   UTILITIES
   ============================================ */
.divider { width: 100%; height: 1px; background: var(--border); }
.chip { display: inline-flex; align-items: center; padding: 4px 12px; border-radius: var(--radius-pill); border: 1px solid var(--border); font-size: 12px; font-weight: 600; color: var(--cream-muted); }
.chip-orange { border-color: rgba(212,86,26,0.4); color: var(--orange); background: rgba(212,86,26,0.08); }
.bg-surface { background: var(--bg-surface); }
.bg-alt { background: var(--bg-alt); }
.mt8 { margin-top: 8px; } .mt16 { margin-top: 16px; } .mt24 { margin-top: 24px; } .mt40 { margin-top: 40px; } .mt60 { margin-top: 60px; }
.mb8 { margin-bottom: 8px; } .mb16 { margin-bottom: 16px; } .mb24 { margin-bottom: 24px; } .mb40 { margin-bottom: 40px; }
.gap-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}
@media (max-width: 900px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .callout-row { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  :root { --nav-h: 64px; --pad: 80px; --pad-sm: 60px; }
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-bar { flex-direction: column; }
  .stat { border-right: none; border-bottom: 1px solid var(--border); padding: 32px 24px; }
  .stat:last-child { border-bottom: none; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 40px; }
  .footer-brand { grid-column: span 2; }
  .photo-grid { grid-template-columns: 1fr 1fr; }
  .photo-grid-span2 { grid-column: span 2; }
  .hero-blob { display: none; }
  .lineup-slot { grid-template-columns: 60px 1fr; }
  .lineup-slot-tag { display: none; }
  .callout { padding: 40px 28px; }
  .form-row-2 { grid-template-columns: 1fr; }
  .header-logo img { width: 150px; height: auto; }
  .reveal[style*="grid-template-columns"] { grid-template-columns: 1fr !important; }
}
@media (max-width: 480px) {
  :root { --container: min(1280px, 100% - 32px); }
  .grid-4 { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .btn-group { flex-direction: column; }
  .hero-center .btn-group { align-items: center; }
  .cookie-banner { flex-direction: column; }
  .cookie-actions { width: 100%; }
  .cookie-actions .btn { flex: 1; justify-content: center; }
  .partner-cta-card { padding: 40px 24px !important; }
  .partner-cta-card .btn-lg { width: 100%; justify-content: center; box-sizing: border-box; }
}
