/* ==========================================================================
   Tallinn Bachata Experience 2026 — 5th Anniversary
   Theme: Purple + Gold + Black/White
   ========================================================================== */

:root {
  /* Brand palette */
  --purple-900: #1a0b2e;
  --purple-800: #2a1250;
  --purple-700: #3d1a6e;
  --purple-600: #5a2a9e;
  --purple-500: #7b3fd1;
  --purple-400: #9d68e8;
  --gold-600: #b8860b;
  --gold-500: #d4af37;
  --gold-400: #e8c86a;
  --gold-300: #f3dd94;

  --black: #0a0710;
  --ink: #120b1e;
  --white: #ffffff;
  --off-white: #f4f0fa;
  --muted: #b9adcf;

  /* Roles */
  --bg: var(--black);
  --bg-alt: #130b22;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-2: rgba(255, 255, 255, 0.07);
  --border: rgba(212, 175, 55, 0.22);
  --text: var(--off-white);

  --gradient-purple: linear-gradient(135deg, var(--purple-700), var(--purple-500));
  --gradient-gold: linear-gradient(135deg, var(--gold-500), var(--gold-300));
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 10px 40px rgba(212, 175, 55, 0.25);

  --radius: 16px;
  --radius-sm: 10px;
  --maxw: 1200px;
  --font-head: "Poppins", "Segoe UI", system-ui, sans-serif;
  --font-body: "Poppins", "Segoe UI", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Decorative animated background glow */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(600px circle at 15% 10%, rgba(123, 63, 209, 0.18), transparent 45%),
    radial-gradient(700px circle at 85% 85%, rgba(212, 175, 55, 0.10), transparent 45%);
  z-index: -1;
  pointer-events: none;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.15; letter-spacing: -0.5px; }
h1 { font-weight: 800; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.gold-text {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.purple-text { color: var(--purple-400); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 16px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.btn-gold {
  background: var(--gradient-gold);
  color: var(--black);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 14px 44px rgba(212, 175, 55, 0.4); }
.btn-outline {
  background: transparent;
  border-color: var(--gold-500);
  color: var(--gold-300);
}
.btn-outline:hover { background: rgba(212, 175, 55, 0.12); transform: translateY(-3px); }
.btn-purple {
  background: var(--gradient-purple);
  color: var(--white);
}
.btn-purple:hover { transform: translateY(-3px); box-shadow: 0 14px 44px rgba(123, 63, 209, 0.45); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  backdrop-filter: blur(14px);
  background: rgba(10, 7, 16, 0.72);
  border-bottom: 1px solid var(--border);
}
.site-header .container.nav { position: relative; }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { height: 48px; width: auto; display: block; }
.brand-fallback { display: none; align-items: center; gap: 12px; }
.site-footer .brand-logo { height: 56px; }
@media (max-width: 560px) { .brand-logo { height: 40px; } }
.brand .logo-mark {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--gradient-purple);
  display: grid; place-items: center;
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--gold-300);
  border: 1.5px solid var(--gold-500);
  box-shadow: var(--shadow-gold);
}
.brand .brand-name { font-family: var(--font-head); font-size: 1.15rem; font-weight: 600; letter-spacing: 1px; }
.brand .brand-name small { display: block; font-family: var(--font-body); font-size: 0.62rem; letter-spacing: 3px; color: var(--gold-400); text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a {
  padding: 10px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); background: var(--surface-2); }
.nav-links a.active { color: var(--gold-300); }
.nav-cta { margin-left: 10px; }
/* Always-visible Buy Tickets button next to the logo */
.header-cta { margin-left: 16px; margin-right: auto; padding: 8px 16px; font-size: 0.82rem; }
@media (max-width: 560px) { .header-cta { margin-left: 8px; padding: 6px 12px; font-size: 0.72rem; letter-spacing: 0.3px; } }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
.nav-toggle:focus-visible { box-shadow: 0 0 0 2px var(--gold-500); }
.nav-toggle span { width: 26px; height: 2px; background: var(--gold-300); transition: 0.3s; border-radius: 2px; }

@media (max-width: 1280px) {
  .nav-links a { padding: 10px 11px; font-size: 0.86rem; }
  .nav-cta { display: none; }
}

@media (max-width: 980px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1;
    flex-direction: column;
    gap: 0;
    background: rgba(12, 7, 22, 0.98);
    backdrop-filter: blur(16px);
    padding: 16px 24px 28px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    transition: transform 0.35s ease;
    align-items: stretch;
    max-height: calc(100vh - 100%);
    overflow-y: auto;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 14px 12px; font-size: 1rem; border-bottom: 1px solid rgba(255,255,255,0.05); border-radius: 0; }
  .nav-cta { margin: 14px 0 0; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--black);
  z-index: 0;
}
.hero-video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  /* 16:9 sized to comfortably cover the hero, with over-scale to hide YouTube's title/branding overlays */
  width: 177.78%;
  min-width: 100%;
  height: 100%;
  min-height: 56.25vw;
  transform: translate(-50%, -50%) scale(1.4);
  pointer-events: none;
  border: 0;
}
/* Wide viewports: width-first sizing */
@media (min-aspect-ratio: 16/9) {
  .hero-video iframe {
    width: 100%;
    height: 56.25%;
    min-height: 100%;
  }
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(10,7,16,0.55) 0%, rgba(10,7,16,0.70) 60%, var(--black) 100%),
    radial-gradient(circle at 70% 30%, rgba(123,63,209,0.20), transparent 55%);
}
.hero-inner { z-index: 2; }
.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,7,16,0.55) 0%, rgba(10,7,16,0.75) 60%, var(--black) 100%),
    var(--gradient-purple);
  background-image:
    linear-gradient(180deg, rgba(10,7,16,0.5) 0%, rgba(10,7,16,0.72) 55%, var(--black) 100%),
    url("https://crazylion.online/wp-content/uploads/2025/11/tallinn-bex-2026-facebook-event.png");
  background-size: cover;
  background-position: center;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(123,63,209,0.25), transparent 55%);
}
.hero-inner { position: relative; z-index: 2; max-width: 760px; padding: 60px 0; }
.hero h1 { font-size: clamp(2.6rem, 6vw, 5rem); margin: 10px 0 20px; }
.hero .lead { font-size: 1.15rem; color: var(--muted); max-width: 560px; margin-bottom: 14px; }
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 22px;
  margin: 26px 0 32px;
  font-size: 0.95rem;
}
.hero-meta div { display: flex; align-items: center; gap: 8px; }
.hero-meta .ic { color: var(--gold-400); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 18px;
  border: 1px solid var(--gold-500);
  border-radius: 100px;
  background: rgba(212,175,55,0.08);
  font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-300);
}

/* Countdown */
.countdown { display: flex; gap: 16px; margin-top: 34px; }
.countdown .unit {
  min-width: 78px;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 10px;
  backdrop-filter: blur(6px);
}
.countdown .num { font-family: var(--font-head); font-size: 2rem; color: var(--gold-300); line-height: 1; }
.countdown .lbl { font-size: 0.68rem; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-top: 6px; }

/* ---------- Sections ---------- */
.section { padding: 90px 0; }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 54px; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.section-head p { color: var(--muted); }
.section-alt { background: var(--bg-alt); }

/* Page hero (interior pages) */
.page-hero {
  padding: 120px 0 70px;
  text-align: center;
  position: relative;
  background:
    linear-gradient(180deg, rgba(26,11,46,0.6), var(--black)),
    var(--gradient-purple);
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 4rem); margin-bottom: 14px; }
.page-hero p { color: var(--muted); max-width: 620px; margin: 0 auto; }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.card:hover { transform: translateY(-6px); border-color: var(--gold-500); box-shadow: var(--shadow-lg); }
.card .card-icon {
  width: 54px; height: 54px; border-radius: 14px;
  display: grid; place-items: center;
  background: var(--gradient-purple);
  color: var(--gold-300);
  font-size: 1.5rem;
  margin-bottom: 18px;
  border: 1px solid var(--border);
}
.card h3 { font-size: 1.5rem; margin-bottom: 10px; color: var(--white); }
.card p { color: var(--muted); font-size: 0.95rem; }

/* Feature stats */
.stats { display: flex; flex-wrap: wrap; justify-content: center; gap: 50px; text-align: center; }
.stats .stat .num { font-family: var(--font-head); font-size: 3rem; color: var(--gold-300); line-height: 1; }
.stats .stat .lbl { color: var(--muted); letter-spacing: 1px; text-transform: uppercase; font-size: 0.78rem; margin-top: 8px; }

/* Artist / hotel / gallery cards with image */
.tile {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
}
.tile .tile-img {
  aspect-ratio: 3/4;
  background: var(--gradient-purple);
  background-size: cover;
  background-position: center;
  position: relative;
}
.tile.tile-wide .tile-img { aspect-ratio: 4/3; }
.tile .tile-img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,7,16,0.92) 100%);
}
.tile .tile-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px; z-index: 2; }
.tile .tile-body h3 { color: var(--white); font-size: 1.4rem; }
.tile .tile-body .role { color: var(--gold-300); font-size: 0.82rem; letter-spacing: 1.5px; text-transform: uppercase; }
.tile .tag {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: rgba(10,7,16,0.7); border: 1px solid var(--gold-500);
  color: var(--gold-300); font-size: 0.7rem; letter-spacing: 1px; text-transform: uppercase;
  padding: 5px 12px; border-radius: 100px; backdrop-filter: blur(4px);
}

/* Hotel card */
.hotel-card { display: grid; grid-template-columns: 1.1fr 1fr; gap: 0; overflow: hidden; border-radius: var(--radius); border: 1px solid var(--border); background: var(--surface); }
.hotel-card .hotel-img { min-height: 280px; background: var(--gradient-purple); background-size: cover; background-position: center; }
.hotel-card .hotel-info { padding: 32px; }
.hotel-card .hotel-info h3 { font-size: 1.7rem; color: var(--white); margin-bottom: 6px; }
.hotel-card .stars { color: var(--gold-400); margin-bottom: 12px; letter-spacing: 2px; }
.hotel-card ul { list-style: none; margin: 16px 0; }
.hotel-card li { padding: 5px 0 5px 26px; position: relative; color: var(--muted); font-size: 0.92rem; }
.hotel-card li::before { content: "✦"; position: absolute; left: 0; color: var(--gold-400); }
.hotel-card .price { font-family: var(--font-head); font-size: 1.3rem; color: var(--gold-300); margin: 10px 0 18px; }
@media (max-width: 760px) { .hotel-card { grid-template-columns: 1fr; } .hotel-card.reverse .hotel-img { order: -1; } }

/* Gallery */
.gallery-grid { columns: 3; column-gap: 18px; }
@media (max-width: 900px) { .gallery-grid { columns: 2; } }
@media (max-width: 560px) { .gallery-grid { columns: 1; } }
.gallery-grid .g-item {
  break-inside: avoid;
  margin-bottom: 18px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--gradient-purple);
  aspect-ratio: var(--ar, 1);
  cursor: pointer;
  transition: transform 0.3s, filter 0.3s;
  position: relative;
}
.gallery-grid .g-item:hover { transform: scale(1.02); filter: brightness(1.1); }
.gallery-grid .g-item span { position: absolute; inset: 0; display: grid; place-items: center; color: rgba(255,255,255,0.5); font-family: var(--font-head); font-size: 1.1rem; }

/* Schedule */
.schedule-tabs { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 40px; }
.schedule-tabs button {
  padding: 12px 22px; border-radius: 100px; cursor: pointer;
  background: var(--surface); border: 1px solid var(--border); color: var(--muted);
  font-weight: 600; font-size: 0.9rem; transition: 0.25s; font-family: var(--font-body);
}
.schedule-tabs button:hover { color: var(--white); }
.schedule-tabs button.active { background: var(--gradient-gold); color: var(--black); border-color: transparent; }
.day-panel { display: none; }
.day-panel.active { display: block; animation: fade 0.4s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(10px);} to { opacity: 1; transform: none; } }
.day-theme {
  text-align: center; margin-bottom: 30px; padding: 16px; border-radius: var(--radius-sm);
  background: var(--surface); border: 1px solid var(--border);
}
.day-theme .dress { color: var(--gold-300); font-family: var(--font-head); font-size: 1.3rem; }
.day-theme .venue-addr { margin-top: 8px; font-family: var(--font-body); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.3px; color: var(--gold-400); }

/* Schedule photo gallery — portrait 4:5 tiles */
.photo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 900px) { .photo-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .photo-grid { grid-template-columns: 1fr; } }
.photo-grid .photo-link { display: block; }
.photo-grid .photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--gradient-purple);
  transition: transform 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease;
}
.photo-grid .photo-link:hover .photo { transform: translateY(-4px) scale(1.02); filter: brightness(1.08); box-shadow: var(--shadow-lg); }

/* Lightbox overlay */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(5, 3, 10, 0.92);
  backdrop-filter: blur(6px);
}
.lightbox.open { display: flex; animation: fade 0.25s ease; }
.lightbox-img {
  max-width: min(92vw, 720px);
  max-height: 90vh;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}
.lightbox-close {
  position: absolute;
  top: 16px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.6rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.lightbox-close:hover { opacity: 1; color: var(--gold-300); }
.day-theme .venue-addr a { color: inherit; text-decoration: underline; text-decoration-color: rgba(212,175,55,0.4); text-underline-offset: 3px; transition: color 0.2s; }
.day-theme .venue-addr a:hover { color: var(--gold-300); text-decoration-color: var(--gold-300); }
.timeline { max-width: 780px; margin: 0 auto; }
.slot {
  display: grid; grid-template-columns: 120px 1fr; gap: 20px;
  padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.slot .time { color: var(--gold-400); font-weight: 600; font-family: var(--font-head); font-size: 1.1rem; }
.slot .what h4 { color: var(--white); font-size: 1.15rem; margin-bottom: 4px; }
.slot .what p { color: var(--muted); font-size: 0.9rem; }
.slot .room { display: inline-block; margin-top: 6px; font-size: 0.72rem; letter-spacing: 1px; text-transform: uppercase; color: var(--gold-300); border: 1px solid var(--border); padding: 3px 10px; border-radius: 100px; }
/* Experience Week = separate add-on: solid purple tag (vs outline gold pass tags) */
.slot .room.room-ew {
  color: var(--white);
  background: var(--gradient-purple);
  border-color: transparent;
  font-weight: 600;
}
.slot .room.room-ew::before { content: "✦ "; }
/* Tint + purple left-accent on the whole Experience Week row */
.slot:has(.room-ew) {
  border-left: 3px solid var(--purple-500);
  padding-left: 16px;
  background: linear-gradient(90deg, rgba(123, 63, 209, 0.10), transparent 70%);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
/* Full Pass = premium: solid gold badge */
.slot .room.room-full {
  color: var(--black);
  background: var(--gradient-gold);
  border-color: transparent;
  font-weight: 700;
}
.slot:has(.room-full) {
  border-left: 3px solid var(--gold-500);
  padding-left: 16px;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.10), transparent 70%);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
/* All Passes = open to everyone: green badge */
.slot .room.room-all {
  color: #eafff2;
  background: linear-gradient(135deg, #1f8a4c, #35c46f);
  border-color: transparent;
  font-weight: 600;
}
.slot:has(.room-all) {
  border-left: 3px solid #35c46f;
  padding-left: 16px;
  background: linear-gradient(90deg, rgba(53, 196, 111, 0.10), transparent 70%);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
/* Competition = red */
.slot .room.room-comp {
  color: #fff;
  background: linear-gradient(135deg, #b3202f, #ef4444);
  border-color: transparent;
  font-weight: 600;
}
.slot:has(.room-comp) {
  border-left: 3px solid #ef4444;
  padding-left: 16px;
  background: linear-gradient(90deg, rgba(239, 68, 68, 0.10), transparent 70%);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
/* Schedule colour legend */
.sched-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
  margin: 0 auto 30px;
  font-size: 0.82rem;
  color: var(--muted);
}
.sched-legend span { display: inline-flex; align-items: center; gap: 8px; }
.sched-legend .dot { width: 12px; height: 12px; border-radius: 50%; display: inline-block; }
.sched-legend .dot-full { background: var(--gradient-gold); }
.sched-legend .dot-all { background: linear-gradient(135deg, #1f8a4c, #35c46f); }
.sched-legend .dot-comp { background: linear-gradient(135deg, #b3202f, #ef4444); }
.sched-legend .dot-ew { background: var(--gradient-purple); }
@media (max-width: 560px) { .slot { grid-template-columns: 84px 1fr; gap: 12px; } }

/* FAQ accordion */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-sm); margin-bottom: 14px; overflow: hidden; background: var(--surface); }
.faq-q {
  width: 100%; text-align: left; padding: 20px 24px; cursor: pointer;
  background: none; border: none; color: var(--white); font-size: 1.05rem; font-weight: 600;
  display: flex; justify-content: space-between; align-items: center; gap: 16px; font-family: var(--font-body);
}
.faq-q .plus { color: var(--gold-400); font-size: 1.4rem; transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-a p { padding: 0 24px 22px; color: var(--muted); }

/* Forms / contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.82rem; letter-spacing: 1px; text-transform: uppercase; color: var(--gold-400); margin-bottom: 8px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 16px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.05); border: 1px solid var(--border); color: var(--white);
  font-family: var(--font-body); font-size: 0.95rem;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--gold-500); }
.field textarea { min-height: 130px; resize: vertical; }
.contact-list { list-style: none; }
.contact-list li { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.contact-list .ic { color: var(--gold-400); font-size: 1.3rem; }
.contact-list a:hover { color: var(--gold-300); }

/* CTA band */
.cta-band {
  text-align: center;
  padding: 80px 24px;
  background: var(--gradient-purple);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.cta-band h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.cta-band p { color: rgba(255,255,255,0.85); max-width: 560px; margin: 0 auto 28px; }

/* Split feature */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; } }
.split .split-media { aspect-ratio: 4/3; border-radius: var(--radius); background: var(--gradient-purple); background-size: cover; background-position: center; border: 1px solid var(--border); }
.split h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 18px; }
.split p { color: var(--muted); margin-bottom: 16px; }
.check-list { list-style: none; margin-top: 20px; }
.check-list li { padding: 8px 0 8px 32px; position: relative; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--gold-400); font-weight: 700; }

/* Footer */
.site-footer { background: var(--ink); border-top: 1px solid var(--border); padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 40px; }
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: var(--gold-300); font-family: var(--font-body); font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 18px; }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 10px; }
.site-footer a { color: var(--muted); font-size: 0.92rem; }
.site-footer a:hover { color: var(--gold-300); }
.footer-about p { color: var(--muted); font-size: 0.92rem; margin-top: 14px; }
.socials { display: flex; gap: 12px; margin-top: 18px; }
.socials a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--border); display: grid; place-items: center; color: var(--gold-300); transition: 0.25s; }
.socials a:hover { background: var(--gradient-gold); color: var(--black); border-color: transparent; }
.footer-bottom { text-align: center; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.07); color: var(--muted); font-size: 0.85rem; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* Notice box */
.notice {
  background: rgba(212,175,55,0.08);
  border: 1px dashed var(--gold-500);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  color: var(--gold-300);
  font-size: 0.9rem;
  margin: 20px 0;
}

/* Ticket Tailor widget wrapper — light background so the widget's dark text is legible */
.tickets-embed {
  max-width: 860px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid var(--gold-500);
  border-radius: var(--radius);
  padding: 24px;
  min-height: 320px;
  box-shadow: var(--shadow-gold);
}
.tickets-embed iframe { width: 100% !important; border: 0; }
.tt-widget-fallback { text-align: center; padding: 40px 16px; color: #1a0b2e; }
.tt-widget-fallback a { color: var(--purple-600); font-weight: 600; }
