/* ===== CARS CHALLENGES — DESIGN SYSTEM ===== */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --bg:       #080808;
  --bg2:      #0d0d0d;
  --bg3:      #131313;
  --bg4:      #1a1a1a;
  --bg5:      #222222;
  --gold:     #c9a84c;
  --gold-lt:  #e8c97a;
  --gold-dk:  #9a7a30;
  --gold-dim: rgba(201,168,76,0.15);
  --white:    #f5f5f0;
  --text:     #d8d8d0;
  --muted:    #888880;
  --dim:      #555550;
  --red:      #c0392b;
  --font-head:  'Oswald', 'Impact', sans-serif;
  --font-serif: 'Oswald', 'Impact', sans-serif;
  --font-sans:  'Inter', system-ui, -apple-system, sans-serif;
  --nav-h: 72px;
  --max: 1160px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-lt); }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== NAVIGATION ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background: linear-gradient(to bottom, rgba(8,8,8,0.85) 0%, rgba(8,8,8,0) 100%);
  transition: background 0.4s var(--ease), border-color 0.4s;
  border-bottom: 1px solid transparent;
}
nav.scrolled {
  background: rgba(8,8,8,0.97);
  backdrop-filter: blur(16px);
  border-bottom-color: rgba(201,168,76,0.18);
}
.nav-logo {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--white);
  text-transform: uppercase;
}
.nav-logo span { color: var(--gold); }
.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
  align-items: center;
}
.nav-links a {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  text-shadow: 0 1px 4px rgba(0,0,0,0.8);
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a.active { color: var(--gold); }
.nav-cta {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bg) !important;
  background: var(--gold);
  padding: 10px 22px;
  transition: background 0.2s, color 0.2s !important;
}
.nav-cta:hover { background: var(--gold-lt) !important; color: var(--bg) !important; }

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

/* Mobile nav */
.nav-mobile {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(8,8,8,0.99);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gold-dim);
  z-index: 999;
  display: flex;
  flex-direction: column;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.nav-mobile.open { max-height: 400px; }
.nav-mobile a {
  padding: 18px 32px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.2s, padding-left 0.2s;
}
.nav-mobile a:hover { color: var(--gold); padding-left: 40px; }

/* ===== URGENCY BAR ===== */
.urgency-bar {
  background: linear-gradient(135deg, #1a0a0a 0%, #2a1010 100%);
  border-bottom: 1px solid rgba(192,57,43,0.4);
  text-align: center;
  padding: 11px 20px;
  margin-top: var(--nav-h);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #e8a89a;
}
.urgency-bar strong { color: #fff; }
.urgency-bar.gold-bar {
  background: linear-gradient(135deg, #0f0b02 0%, #1c1500 100%);
  border-bottom-color: rgba(201,168,76,0.3);
  color: var(--gold);
}

/* ===== HERO — Homepage video ===== */
.hero-home {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}
.hero-home::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,8,8,0.3) 0%,
    rgba(8,8,8,0.1) 40%,
    rgba(8,8,8,0.5) 70%,
    rgba(8,8,8,0.9) 100%
  );
  z-index: 1;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 24px;
}
.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold-dk);
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(60px, 10vw, 120px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 28px;
}
.hero-title em {
  font-style: normal;
  color: var(--gold);
}
.hero-date {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.hero-desc {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2.2vw, 23px);
  font-weight: 300;
  color: rgba(245,245,240,0.8);
  line-height: 1.5;
  margin-bottom: 40px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-scroll span {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ===== HERO — Event sub-page ===== */
.hero-event {
  position: relative;
  height: 92vh;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-event::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,8,8,0.65) 0%,
    rgba(8,8,8,0.2) 30%,
    rgba(8,8,8,0.6) 65%,
    rgba(8,8,8,0.95) 100%
  );
  z-index: 1;
}
.hero-event-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 40px 80px;
}
.hero-badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.35);
  padding: 6px 16px;
  margin-bottom: 20px;
}
.hero-event-title {
  font-family: var(--font-head);
  font-size: clamp(56px, 9vw, 108px);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.hero-event-title em { font-style: normal; color: var(--gold); }
.hero-meta {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-meta-item {
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.hero-meta-item strong {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 2px;
}
.hero-meta-sep {
  width: 1px;
  background: rgba(255,255,255,0.1);
  align-self: stretch;
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--bg3);
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.stats-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(201,168,76,0.04); }
.stat-icon {
  font-size: 22px;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.stat-value {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}
.stat-value.red { color: var(--red); }
.stat-value.gold { color: var(--gold); }
.stat-sub {
  font-size: 11px;
  color: var(--muted);
  margin-top: 3px;
}

/* ===== SECTION ===== */
.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 96px 40px;
}
.section-sm { padding: 64px 40px; }
.section-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-eyebrow::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold-dk);
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 56px);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-lead {
  font-family: var(--font-sans);
  font-size: clamp(16px, 1.8vw, 19px);
  font-weight: 300;
  line-height: 1.7;
  color: var(--muted);
  max-width: 700px;
  margin-bottom: 48px;
}

/* ===== DIVIDER ===== */
.divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.divider-gold {
  border: none;
  border-top: 1px solid rgba(201,168,76,0.2);
}

/* ===== EVENT CARDS (homepage) ===== */
.events-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--bg3);
}
.event-card {
  position: relative;
  height: 600px;
  overflow: hidden;
  display: block;
}
.event-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s var(--ease);
}
.event-card:hover .event-card-bg { transform: scale(1.04); }
.event-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,8,8,0.1) 0%,
    rgba(8,8,8,0.5) 60%,
    rgba(8,8,8,0.92) 100%
  );
  transition: opacity 0.4s;
}
.event-card:hover::after { opacity: 0.85; }
.event-card-content {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  z-index: 2;
  padding: 40px;
}
.event-card-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.event-card-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  margin-bottom: 10px;
}
.event-card-title em { font-style: italic; color: var(--gold); }
.event-card-sub {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}
.event-card-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  margin-bottom: 0;
}
.event-card-price {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 24px;
}
.event-card-price span {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--muted);
}

/* ===== HIGHLIGHTS GRID ===== */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.04);
  margin-top: 48px;
}
.highlight-item {
  background: var(--bg2);
  padding: 36px 30px;
  border-top: 2px solid var(--gold);
  transition: background 0.3s;
}
.highlight-item:hover { background: var(--bg3); }
.highlight-icon {
  font-size: 28px;
  margin-bottom: 16px;
}
.highlight-title {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
}
.highlight-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

/* ===== PROGRAM ===== */
.program-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.06);
  margin-top: 48px;
}
.program-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s;
}
.program-item:last-child { border-bottom: none; }
.program-item:hover { background: rgba(201,168,76,0.03); }
.program-day {
  padding: 28px 24px;
  background: var(--bg3);
  border-right: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.day-num {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.day-date {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-top: 4px;
}
.program-detail {
  padding: 28px 32px;
}
.program-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 8px;
}
.program-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
}

/* ===== INCLUDED ===== */
.included-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.05);
  margin-top: 48px;
}
.included-item {
  background: var(--bg2);
  padding: 24px 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: background 0.3s;
}
.included-item:hover { background: var(--bg3); }
.check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--gold-dim);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  margin-top: 1px;
}
.included-item p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text);
}

/* ===== PRICE BOX ===== */
.price-section {
  background: var(--bg2);
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 80px 40px;
  text-align: center;
}
.price-box {
  max-width: 520px;
  margin: 0 auto;
}
.price-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.price-amount {
  font-family: var(--font-serif);
  font-size: clamp(52px, 7vw, 80px);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.price-kc {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 20px;
}
.price-note {
  font-size: 13px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 380px;
  margin: 0 auto 36px;
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  margin-top: 48px;
}
.gallery-grid .wide { grid-column: span 2; }
.gallery-grid .tall { grid-row: span 2; }
.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: pointer;
  background: var(--bg3);
}
.gallery-grid .wide { aspect-ratio: 8/3; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease), filter 0.4s;
  filter: brightness(0.85);
}
.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(1);
}
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,8,8,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay span {
  font-size: 24px;
  color: var(--white);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.lightbox.active {
  opacity: 1;
  visibility: visible;
}
.lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  font-size: 32px;
  color: var(--muted);
  cursor: pointer;
  line-height: 1;
  background: none;
  transition: color 0.2s;
}
.lightbox-close:hover { color: var(--white); }
.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  color: var(--muted);
  cursor: pointer;
  padding: 20px;
  transition: color 0.2s;
  background: none;
}
.lightbox-prev { left: 10px; }
.lightbox-next { right: 10px; }
.lightbox-prev:hover, .lightbox-next:hover { color: var(--white); }

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.04);
  margin-top: 48px;
}
.testimonial {
  background: var(--bg2);
  padding: 36px 30px;
}
.testimonial-text {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 20px;
}
.testimonial-text::before { content: '\201C'; color: var(--gold); margin-right: 2px; }
.testimonial-text::after { content: '\201D'; color: var(--gold); margin-left: 2px; }
.testimonial-author {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.testimonial-car {
  font-size: 11px;
  color: var(--dim);
  margin-top: 2px;
}

/* ===== FORM ===== */
.form-section {
  background: var(--bg2);
  padding: 80px 40px;
}
.form-inner {
  max-width: 680px;
  margin: 0 auto;
}
.form-group {
  margin-bottom: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
input, select, textarea {
  width: 100%;
  background: var(--bg3);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 15px;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
  border-radius: 0;
}
input:focus, select:focus, textarea:focus {
  border-color: rgba(201,168,76,0.5);
  background: var(--bg4);
}
input::placeholder, textarea::placeholder { color: var(--dim); }
select { cursor: pointer; }
select option { background: var(--bg3); }
textarea { resize: vertical; min-height: 90px; }
.form-submit {
  text-align: center;
  margin-top: 32px;
}
.form-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
  line-height: 1.6;
}
.form-success {
  display: none;
  background: rgba(39,174,96,0.1);
  border: 1px solid rgba(39,174,96,0.3);
  color: #6fcf97;
  padding: 20px 24px;
  text-align: center;
  font-size: 15px;
  margin-top: 24px;
}
.form-error {
  display: none;
  background: rgba(192,57,43,0.1);
  border: 1px solid rgba(192,57,43,0.3);
  color: #e88e86;
  padding: 20px 24px;
  text-align: center;
  font-size: 15px;
  margin-top: 24px;
}
.form-success.visible, .form-error.visible { display: block; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 15px 36px;
  transition: all 0.25s var(--ease);
  cursor: pointer;
  border: none;
  border-radius: 4px;
}
.btn-gold {
  background: var(--gold);
  color: var(--bg);
}
.btn-gold:hover {
  background: var(--gold-lt);
  color: var(--bg);
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.35);
}
.btn-outline {
  background: transparent;
  border: 1px solid rgba(201,168,76,0.5);
  color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
  color: var(--gold-lt);
}
.btn-lg { padding: 18px 48px; font-size: 12px; }
.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--text);
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
}

/* ===== CONTACT BAR ===== */
.contact-bar {
  background: var(--bg2);
  padding: 72px 40px;
  text-align: center;
  border-top: 1px solid rgba(201,168,76,0.12);
  border-bottom: 1px solid rgba(201,168,76,0.12);
}
.contact-bar h2 {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 8px;
}
.contact-bar p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 40px;
}
.contact-items {
  display: flex;
  gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
}
.contact-item { text-align: center; }
.c-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.c-value {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
  transition: color 0.2s;
}
.c-value:hover { color: var(--gold); }

/* ===== STICKY MOBILE CTA ===== */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  z-index: 998;
  background: var(--gold);
  padding: 0;
}
.sticky-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 24px;
  color: var(--bg);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.sticky-cta-phone {
  font-size: 18px;
  font-weight: 700;
}

/* ===== FOOTER ===== */
footer {
  background: var(--bg);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 48px 40px;
  text-align: center;
}
.social-links {
  display: flex;
  gap: 32px;
  justify-content: center;
  margin-bottom: 20px;
}
.social-links a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}
.social-links a:hover { color: var(--white); }
footer p {
  font-size: 12px;
  color: var(--dim);
}

/* ===== ABOUT INTRO (homepage) ===== */
.about-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 96px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-number {
  font-family: var(--font-serif);
  font-size: 120px;
  font-weight: 300;
  color: rgba(201,168,76,0.07);
  line-height: 1;
  margin-bottom: -20px;
}
.about-stat-row {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}
.about-stat strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.about-stat span {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.about-img {
  position: relative;
}
.about-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  filter: brightness(0.85);
}
.about-img::before {
  content: '';
  position: absolute;
  top: -16px;
  right: -16px;
  width: 60%;
  height: 60%;
  border: 1px solid rgba(201,168,76,0.2);
  z-index: -1;
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ===== EVENTY PAGE ===== */
.eventy-header {
  padding-top: var(--nav-h);
  background: var(--bg2);
  padding-bottom: 80px;
  text-align: center;
}
.eventy-header .section-eyebrow {
  justify-content: center;
}
.eventy-header .section-eyebrow::after { display: none; }
.eventy-header .section-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold-dk);
}
.past-events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.03);
}
.past-event-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg3);
}
.past-event-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease), filter 0.4s;
  filter: brightness(0.7) saturate(0.8);
}
.past-event-card:hover img {
  transform: scale(1.05);
  filter: brightness(0.85) saturate(1);
}
.past-event-info {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
}
.past-event-name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
}
.past-event-date {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

/* ===== VIDEO SECTION ===== */
.video-section {
  position: relative;
  overflow: hidden;
  background: #000;
}
.video-section video {
  width: 100%;
  display: block;
  max-height: 75vh;
  object-fit: cover;
}
.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.play-btn {
  width: 72px;
  height: 72px;
  border: 1px solid rgba(255,255,255,0.5);
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: all;
  transition: all 0.3s;
}
.play-btn:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.15);
}
.play-btn svg { width: 24px; height: 24px; fill: white; margin-left: 4px; }
.play-btn.playing { opacity: 0; pointer-events: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .events-grid { grid-template-columns: 1fr; }
  .event-card { height: 500px; }
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .about-section { grid-template-columns: 1fr; gap: 40px; }
  .about-img { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .section { padding: 60px 20px; }
  .section-sm { padding: 40px 20px; }
  .hero-event-content { padding: 0 20px 60px; }
  .hero-meta { gap: 20px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .highlights-grid { grid-template-columns: 1fr; }
  .program-item { grid-template-columns: 80px 1fr; }
  .program-day { padding: 20px 14px; }
  .program-detail { padding: 20px; }
  .included-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid .wide { grid-column: span 1; aspect-ratio: 4/3; }
  .form-row { grid-template-columns: 1fr; }
  .form-section { padding: 48px 20px; }
  .contact-bar { padding: 48px 20px; }
  .contact-items { gap: 32px; }
  .events-grid { grid-template-columns: 1fr; }
  .past-events-grid { grid-template-columns: 1fr 1fr; }
  .sticky-cta { display: block; }
  body { padding-bottom: 60px; }
  footer { padding: 36px 20px; }
  .about-section { padding: 60px 20px; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 1px; }
  .price-section { padding: 48px 20px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 42px; }
  .hero-event-title { font-size: 40px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid .wide { grid-column: span 1; }
  .past-events-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
}

/* ===== MISC ===== */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-40 { margin-bottom: 40px; }
.mt-40 { margin-top: 40px; }

/* ===== HOME CARDS ===== */
.home-cards {
  background: #0d0d0d;
  padding: 80px 24px;
}
.home-cards > * { max-width: 1160px; }
.home-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
}
.home-card {
  text-decoration: none;
  color: inherit;
  display: block;
  border: 1px solid rgba(201,168,76,0.2);
  background: #111;
  transition: border-color 0.25s, transform 0.25s;
}
.home-card:hover {
  border-color: rgba(201,168,76,0.55);
  transform: translateY(-3px);
}
.home-card-img {
  height: 260px;
  background-size: cover;
  background-position: center;
}
.home-card-body { padding: 28px 32px; }
.home-card-tag {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.home-card-title {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}
.home-card-sub {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 16px;
}
.home-card-price {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 20px;
}
.home-card-price span {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
}
.home-card-cta {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  display: inline-block;
  padding-bottom: 2px;
}

/* Quick info — stats pod hero na event stránkách */
.quick-info {
  background: #111;
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 0;
}
.info-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 40px;
  border-right: 1px solid rgba(255,255,255,0.06);
  text-align: center;
  min-width: 140px;
}
.info-card:last-child { border-right: none; }
.info-card .icon { font-size: 24px; margin-bottom: 6px; }
.info-card .label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.info-card .value {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
}
.info-card .value.big { font-size: 26px; color: var(--gold); }
.info-card .sub {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

/* ===== WHY SECTION ===== */
.why-section {
  background: var(--dark2);
  padding: 80px 24px;
}

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

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

.why-card {
  background: var(--dark3);
  padding: 40px 32px;
  transition: background 0.25s;
}

.why-card:hover {
  background: #1e1e1e;
}

.why-icon {
  font-size: 36px;
  margin-bottom: 20px;
}

.why-card h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.why-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
}

@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== ABOUT SECTION (restored) ===== */
.about-section {
  padding: 100px 24px;
  max-width: 900px;
  margin: 0 auto;
}

.about-text {
  max-width: 720px;
}

.about-heading {
  font-family: var(--font-head);
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1;
}

/* ===== HERO GENERIC (used in romania/croatia/index) ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  margin-top: 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,8,8,0.70) 0%,
    rgba(8,8,8,0.25) 30%,
    rgba(8,8,8,0.55) 65%,
    rgba(8,8,8,0.92) 100%
  );
  z-index: 1;
}
.hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding: 120px 24px 60px;
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(60px, 10vw, 120px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.hero h1 span { color: var(--gold); font-style: normal; }

/* btn-large alias */
.btn-large { padding: 18px 48px; font-size: 12px; }

.about-para {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 680px;
}
