/* ============================================================
   NOT FEST 2026 — Bachata Edition: Back to Flavor
   Caribbean dusk: deep ink-navy × ocean blue × warm mango
   ============================================================ */

@font-face {
  font-family: 'Hyperwave One';
  src: url('/fonts/hyperwave-one.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  /* brand */
  --primary: #2F6BC8;          /* festival blue */
  --primary-deep: #1E4C97;
  --primary-soft: #6E9BE0;
  --ink: #0E1B33;              /* deep navy — dark sections */
  --ink-2: #14264a;
  --paper: #F7F4EE;            /* warm cream — light sections */
  --white: #ffffff;

  /* flavor accents */
  --mango: #6FA5FF;
  --coral: #1E71F6;
  --flavor-grad: linear-gradient(100deg, #1E71F6 0%, #6FA5FF 100%);

  --text: #25324b;
  --text-soft: #5b6a85;
  --line: rgba(14, 27, 51, 0.1);

  --ukraine-blue: #0057b7;
  --ukraine-yellow: #ffd700;

  --radius: 20px;
  --shadow: 0 16px 40px rgba(14, 27, 51, 0.1);
  --shadow-lg: 0 24px 60px rgba(14, 27, 51, 0.16);

  --font-display: 'Unbounded', 'Golos Text', sans-serif;
  --font-body: 'Golos Text', 'Segoe UI', sans-serif;
  --font-motto: 'Hyperwave One', 'Unbounded', cursive;
}

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

html {
  scroll-behavior: smooth;
  /* body's overflow-x alone doesn't stop horizontal panning on mobile —
     the rotated/scaled marquee pokes past the viewport without this */
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--paper);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  /* kill double-tap-to-zoom on mobile; pinch zoom stays available */
  touch-action: manipulation;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

h1, h2, h3 { font-family: var(--font-display); color: var(--ink); line-height: 1.2; }

h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); font-weight: 700; }

section { padding: 6rem 0; }

img { max-width: 100%; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  padding: 0.95rem 2.1rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}
.btn:hover { transform: translateY(-3px); }

.btn-flavor {
  background: var(--flavor-grad);
  color: #fff;
  box-shadow: 0 12px 30px rgba(30, 113, 246, 0.35);
}
.btn-flavor:hover { box-shadow: 0 18px 40px rgba(30, 113, 246, 0.45); }

.btn-blue {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(47, 107, 200, 0.35);
}
.btn-blue:hover { background: var(--primary-deep); }

.btn-ghost {
  background: rgba(10, 21, 42, 0.55);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.18); }

.btn-ghost-dark {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-ghost-dark:hover { background: var(--ink); color: var(--white); }

.btn-white { background: var(--white); color: var(--primary-deep); box-shadow: var(--shadow); }

.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }

.btn-block { display: block; width: 100%; }
.btn-lg { padding: 1.15rem 3rem; font-size: 1.05rem; }

.btn-disabled, .btn:disabled {
  background: var(--line);
  color: var(--text-soft);
  box-shadow: none;
  cursor: not-allowed;
}
.btn-disabled:hover, .btn:disabled:hover { transform: none; box-shadow: none; background: var(--line); }

/* ---------- Section headers ---------- */
.section-header { text-align: center; max-width: 760px; margin: 0 auto 3.5rem; }
.section-header p { margin-top: 1rem; color: var(--text-soft); font-size: 1.05rem; }

.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(47, 107, 200, 0.1);
  border: 1px solid rgba(47, 107, 200, 0.25);
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  margin-bottom: 1.2rem;
}

.section-header-light h2 { color: var(--white); }
.section-header-light p { color: rgba(255, 255, 255, 0.7); }
.section-header-light .section-tag {
  color: var(--mango);
  background: rgba(111, 165, 255, 0.1);
  border-color: rgba(111, 165, 255, 0.35);
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0.9rem 0;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}
.nav.scrolled {
  background: rgba(14, 27, 51, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  padding: 0.6rem 0;
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-logo { display: flex; align-items: center; }
.nav-logo img {
  height: 68px;
  width: auto;
  display: block;
  transition: transform 0.25s ease, height 0.3s ease;
}
.nav.scrolled .nav-logo img { height: 54px; }
.nav-logo:hover img { transform: scale(1.04); }

.nav-links { display: flex; align-items: center; gap: 1.4rem; }
.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--mango); }

.nav-cta {
  font-family: var(--font-display);
  background: var(--flavor-grad);
  color: #fff !important;
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.8rem !important;
}

/* Language toggle (UK ⇄ EN) */
.nav-lang {
  font-family: var(--font-display);
  font-size: 0.72rem !important;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff !important;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  line-height: 1;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}
.nav-lang:hover {
  color: var(--mango) !important;
  border-color: var(--mango);
  background: rgba(111, 165, 255, 0.1);
}

.nav-burger { display: none; background: none; border: none; cursor: pointer; padding: 0.4rem; }
.nav-burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

@media (max-width: 920px) {
  .nav-burger { display: block; }
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: rgba(14, 27, 51, 0.97);
    padding: 1.5rem;
    gap: 1.1rem;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav { background: rgba(14, 27, 51, 0.85); backdrop-filter: blur(14px); }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(20, 38, 74, 0.78) 0%, rgba(14, 27, 51, 0.82) 60%),
    url('/img/main-bg.webp') center / cover no-repeat;
  color: var(--white);
  overflow: hidden;
  padding: 7rem 1.5rem 6rem;
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; }

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  animation: heroFloat 14s ease-in-out infinite alternate;
}
.hero-glow-1 {
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(47, 107, 200, 0.55) 0%, transparent 70%);
  top: -180px; left: -120px;
}
.hero-glow-2 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(30, 113, 246, 0.32) 0%, transparent 70%);
  bottom: -140px; right: -100px;
  animation-delay: 4s;
}

@keyframes heroFloat {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to   { transform: translate3d(40px, 30px, 0) scale(1.08); }
}

.hero-grain {
  position: absolute; inset: 0;
  opacity: 0.5;
  background-image: radial-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 22px 22px;
}

/* ---------- Hero dancers (artists) ---------- */
.hero-dancers {
  position: absolute;
  inset: 0;
  pointer-events: none;
  /* own stacking context: dancers always stay under hero content & wave */
  z-index: 0;
}

.dancer {
  position: absolute;
  bottom: 0;
  animation: dancerIn 1.1s ease both;
  /* shadow on the wrapper, mask on the img — combining them on one
     element triggers Safari's black-box rendering bug */
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.45));
}
.dancer img {
  height: 100%;
  width: auto;
  display: block;
  /* gently dissolve the lowest part into the wave */
  -webkit-mask-image: linear-gradient(to top, transparent 0%, #000 14%);
  mask-image: linear-gradient(to top, transparent 0%, #000 14%);
}

/* DESKTOP: split-screen hero — text left, all artists on the RIGHT half.
   floor: Jose(big) → Merdan → Guillermo&Anastasiia → Brandy&Olga → Raul (край)
   top row: Tania, Alona, Maria (біля Raul), Dj-Estrella (кут)
   mid-air: Dj-Anastasiia */
/* positions in rem (computed at 1440×950), anchored to the RIGHT edge */
.dancer { height: 25rem; }
.dancer-l1 { left: auto; right: 22rem;   bottom: auto; top: 15.8rem; z-index: 7; height: 35.2rem; animation-delay: 0.5s; } /* Jose — більший */
.dancer-l3 { left: auto; right: 6.3rem;  bottom: 15.4rem; z-index: 2; animation-delay: 0.8s; }
.dancer-l5 { left: auto; right: 32.4rem; bottom: auto; top: 14.6rem; z-index: 2; animation-delay: 1.1s; } /* G&A */
.dancer-r5 { left: auto; right: 11rem;   z-index: 7; animation-delay: 1.15s; }
.dancer-r2 { left: auto; right: 2.5rem;  top: auto; bottom: 0; z-index: 8; animation-delay: 0.7s; }
.dancer-r1 { right: -1.8rem; z-index: 9; animation-delay: 0.55s; }
/* top row */
.dancer-l2 { left: auto; right: 17.7rem; bottom: auto; top: 15.8rem; height: 16.8rem; z-index: 4; animation-delay: 0.65s; }
.dancer-l4 { left: auto; right: 0; bottom: auto; top: 14.2rem; z-index: 4; animation-delay: 0.95s; }
/* mid-air: Estrella, DjA */
.dancer-r4 { left: auto; right: 35.2rem; bottom: 4.4rem; height: 17.8rem; z-index: 2; animation-delay: 1s; }
.dancer-r3 { left: auto; right: 31.5rem; bottom: -1.2rem; z-index: 8; animation-delay: 0.85s; }

@keyframes dancerIn {
  from { opacity: 0; transform: translateY(46px); }
}

/* ≤1080 (планшет): усі артисти одним гуртом знизу у 3 ряди, рівномірний розмір */
@media (max-width: 1080px) {
  /* задній ряд */
  .dancer-l2 { left: 6%;                                                                                                         
          right: auto;                                                                                                      
          top: auto;                                                                                                        
          bottom: 18rem;                                                                                                    
          height: 13rem;                                                                                                    
          z-index: 1;  }
  .dancer-l4 { left: 28%;                                                                                                        
          right: auto;                                                                                                      
          top: auto;                                                                                                        
          bottom: 3rem;                                                                                                     
          height: 24rem;                                                                                                    
          z-index: 1; }
  .dancer-l5 { left: 47%;                                                                                                        
          right: auto;                                                                                                      
          top: auto;                                                                                                        
          bottom: 11rem;                                                                                                    
          height: 24rem;                                                                                                    
          z-index: 1; }
  .dancer-r4 { right: -34px;                                                                                                     
          left: auto;                                                                                                       
          top: auto;                                                                                                        
          bottom: 15rem;                                                                                                    
          height: 15rem;                                                                                                    
          z-index: 1;   }
  /* середній ряд */
  .dancer-l3 { left: 13%;                                                                                                        
          right: auto;                                                                                                       
          top: auto;                                                                                                        
          bottom: 4.5rem;                                                                                                   
          height: 20rem;                                                                                                    
          z-index: 8; }
  .dancer-r3 { left: -2%;                                                                                                        
          right: auto;                                                                                                      
          top: auto;                                                                                                        
          bottom: 14.5rem;                                                                                                  
          height: 20rem;                                                                                                    
          z-index: 0;  }
  .dancer-r2 { right: 10%;                                                                                                       
          left: auto;                                                                                                       
          top: auto;                                                                                                        
          bottom: 2.5rem;                                                                                                   
          height: 20rem;                                                                                                    
          z-index: 4; }
  /* передній ряд */
  .dancer-l1 { left: -2rem;                                                                                                      
          right: auto;                                                                                                      
          top: auto;                                                                                                        
          bottom: -1rem;                                                                                                    
          height: 26rem;                                                                                                    
          z-index: 7; }
  .dancer-r5 {  left: 34%;                                                                                                        
          right: auto;                                                                                                      
          top: auto;                                                                                                        
          bottom: 3rem;                                                                                                     
          height: 20rem;                                                                                                    
          z-index: 8;  }
  .dancer-r1 { right: -1.5rem;                                                                                                   
          left: auto;                                                                                                       
          top: auto;                                                                                                        
          bottom: 39px;                                                                                                     
          height: 20rem;                                                                                                    
          z-index: 9; }
}
/* ≤640 (мобільний): той самий гурт у 3 ряди, рівномірний розмір */
@media (max-width: 640px) {
  .dancer { opacity: 0.95; }
  /* задній ряд */
  .dancer-l2 { left: 6%;
        bottom: 5rem;
        height: 14rem;
        z-index: 10; }
  .dancer-l4 { left: 19%;
        bottom: 9rem;
        height: 19rem; }
  .dancer-l5 { left: 61%;
        bottom: 13rem;
        height: 18rem;
        z-index: -1; }
  .dancer-r4 { right: -30px;
        bottom: 24rem;
        height: 13rem;
        z-index: -3; }
  /* середній ряд */
  .dancer-l3 { left: 0%;
        bottom: 11.5rem;
        height: 17rem;
        z-index: 1; }
  .dancer-r3 { left: 0%;
        bottom: 26.5rem;
        height: 19rem;
        z-index: -1; }
  .dancer-r2 { right: 12%;
        bottom: 2.5rem;
        height: 16rem; }
  /* передній ряд */
  .dancer-l1 { left: -4.5rem;
        bottom: -8.75rem;
        height: 31rem; }
  .dancer-r5 { left: -2%;
        bottom: 21.25rem;
        height: 17rem;
        z-index: -1; }
  .dancer-r1 { right: -0.5rem;
        bottom: 30px;
        height: 17.5rem; }
}

/* split-screen text column on desktop */
@media (min-width: 1081px) {
  .hero { justify-content: flex-start; text-align: left; }
  .hero .hero-content {
    margin: 0 0 0 max(3vw, calc((100vw - 1280px) / 2));
    max-width: 580px;
  }
  .hero .countdown-timer { justify-content: flex-start; }
  .hero .hero-actions { justify-content: flex-start; }
}

.ukraine-flag {
  position: absolute;
  top: 84px; right: 22px;
  display: flex;
  flex-direction: column;
  width: 52px; height: 34px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35);
  z-index: 2;
}
.ukraine-flag .blue { height: 50%; background: var(--ukraine-blue); }
.ukraine-flag .yellow { height: 50%; background: var(--ukraine-yellow); }

.hero-content { position: relative; z-index: 2; }

.hero-kicker {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.4vw, 1.5rem);
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.4rem;
  animation: fadeInUp 0.9s ease both;
}

.hero-title {
  font-family: var(--font-motto);
  font-weight: 400;
  color: var(--white);
  line-height: 1;
  font-size: clamp(2.7rem, 8vw, 6.5rem);
  white-space: nowrap;
  margin-bottom: 1.8rem;
  animation: fadeInUp 0.9s ease 0.15s both;
}
.hero-title-flavor {
  background: var(--flavor-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  /* brush glyphs overhang the box — pad so background-clip:text covers them */
  padding: 0.18em 0.22em;
  margin: -0.18em -0.22em;
}
@media (max-width: 380px) {
  .hero-title { white-space: normal; }
}

.hero-sub {
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.4rem;
  animation: fadeInUp 0.9s ease 0.45s both;
}
.hero-x { color: var(--mango); font-weight: 700; }

.hero-meta {
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 1.8vw, 1.05rem);
  font-weight: 600;
  color: var(--mango);
  letter-spacing: 0.06em;
  margin-bottom: 2.4rem;
  animation: fadeInUp 0.9s ease 0.55s both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.4rem;
  animation: fadeInUp 0.9s ease 0.75s both;
}

.hero-wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  line-height: 0;
  z-index: 1;
}
.hero-wave svg { width: 100%; height: 110px; display: block; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(34px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- Countdown ---------- */
.countdown-timer {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s ease 0.65s both;
}

.countdown-item {
  background: rgba(10, 21, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 0.9rem 1.4rem;
  min-width: 96px;
}

.countdown-item-value {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  color: var(--white);
  font-variant-numeric: tabular-nums;
}

.countdown-item-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.2rem;
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: var(--primary);
  overflow: hidden;
  padding: 0.85rem 0;
  transform: rotate(-1.2deg) scale(1.02);
  /* pulled up so the ribbon is visible inside the hero viewport */
  margin: -5.5rem 0 0;
  position: relative;
  z-index: 3;
  box-shadow: 0 14px 34px rgba(47, 107, 200, 0.35);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--white);
  white-space: nowrap;
}
.marquee-track i { color: var(--mango); font-style: normal; font-size: 0.6rem; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   IDEA / MANIFESTO
   ============================================================ */
.idea-section { background: var(--paper); padding-top: 7.5rem; }

.idea-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 4rem;
  align-items: start;
}

.idea-title {
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  font-weight: 800;
  margin: 0.4rem 0 1.6rem;
}
.idea-title em {
  font-style: normal;
  background: var(--flavor-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.idea-statement {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--ink);
  border-left: 4px solid var(--primary);
  padding-left: 1.2rem;
}

.idea-right p { margin-bottom: 1.2rem; font-size: 1.05rem; }
.idea-accent {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--primary);
  font-size: 1.1rem !important;
}

.idea-quote {
  margin-top: 4.5rem;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.88);
  border-radius: var(--radius);
  padding: clamp(2rem, 5vw, 3.5rem);
  text-align: center;
  font-size: clamp(1.05rem, 2.4vw, 1.4rem);
  line-height: 1.7;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.idea-quote::before {
  content: '';
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 107, 200, 0.4) 0%, transparent 70%);
  top: -190px; right: -120px;
}
.idea-quote strong { color: var(--mango); }
.idea-quote p { position: relative; z-index: 1; }

@media (max-width: 860px) {
  .idea-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ============================================================
   TWO WORLDS
   ============================================================ */
.worlds-section { background: var(--white); }

.worlds-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.6rem;
  align-items: stretch;
}

.world-card {
  border-radius: var(--radius);
  padding: 2.4rem;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.world-card h3 { font-size: 1.4rem; margin: 0.6rem 0 1rem; }
.world-card p { margin-bottom: 1.2rem; }
.world-card ul { list-style: none; }
.world-card li {
  padding-left: 1.6rem;
  position: relative;
  margin-bottom: 0.55rem;
  font-weight: 500;
}
.world-card li::before {
  content: '●';
  position: absolute;
  left: 0;
  font-size: 0.6rem;
  top: 0.45em;
}

.world-label {
  font-family: var(--font-display);
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
}

.world-dominican {
  background: linear-gradient(150deg, #f4f8ff 0%, #e9f1ff 100%);
  border: 1px solid rgba(30, 113, 246, 0.25);
}
.world-dominican .world-label { background: rgba(30, 113, 246, 0.14); color: #1E71F6; }
.world-dominican li::before { color: var(--coral); }

.world-sensual {
  background: linear-gradient(150deg, #f0f5ff 0%, #e2ecfc 100%);
  border: 1px solid rgba(47, 107, 200, 0.25);
}
.world-sensual .world-label { background: rgba(47, 107, 200, 0.13); color: var(--primary-deep); }
.world-sensual li::before { color: var(--primary); }

.worlds-bridge {
  display: flex;
  align-items: center;
  justify-content: center;
}
.worlds-bridge span {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  width: 74px; height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--mango);
  box-shadow: var(--shadow-lg);
}

.worlds-promise {
  margin: 3.5rem auto 0;
  max-width: 680px;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--ink);
  font-style: italic;
}

@media (max-width: 860px) {
  .worlds-grid { grid-template-columns: 1fr; }
  .worlds-bridge { padding: 0.4rem 0; }
}

/* ============================================================
   MYTHS
   ============================================================ */
.myths-section { background: var(--paper); }

.myths-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.myth-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.9rem;
  box-shadow: var(--shadow);
  border-top: 4px solid transparent;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.myth-card:hover { transform: translateY(-6px); border-top-color: var(--mango); }

.myth-think {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-soft);
  text-decoration: line-through;
  text-decoration-color: var(--coral);
  text-decoration-thickness: 2px;
  margin-bottom: 0.9rem;
}
.myth-truth { color: var(--text); }
.myth-truth::before {
  content: '→ ';
  color: var(--primary);
  font-weight: 700;
}

/* ============================================================
   WHY ATTEND
   ============================================================ */
.why-attend { background: var(--white); }

.why-intro { max-width: 640px; margin: 1rem auto 0; }

.reasons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.reason-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 2.1rem;
  border: 1px solid var(--line);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.reason-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

.reason-icon { font-size: 2.1rem; margin-bottom: 1rem; }
.reason-card h3 { font-size: 1.12rem; margin-bottom: 0.7rem; }
.reason-card p { font-size: 0.96rem; color: var(--text-soft); }

/* ============================================================
   ABOUT / FORMAT (bento)
   ============================================================ */
.about-section { background: var(--paper); }

.about-statement {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.9rem);
  font-weight: 700;
  line-height: 1.35;
  color: var(--ink);
  text-align: center;
  max-width: 860px;
  margin: 0 auto 3.5rem;
}
.about-statement span {
  background: var(--flavor-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
}

.about-card {
  border-radius: var(--radius);
  padding: 2.2rem;
  position: relative;
  overflow: hidden;
}

.about-kicker {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 0.35rem 0.95rem;
  border-radius: 999px;
  margin-bottom: 1.3rem;
}

/* Mission tile — dark with blue glow */
.about-mission {
  grid-column: span 7;
  background:
    radial-gradient(85% 70% at 85% -10%, rgba(47, 107, 200, 0.45) 0%, transparent 60%),
    var(--ink);
}
.about-mission .about-kicker {
  background: rgba(111, 165, 255, 0.12);
  color: var(--mango);
  border: 1px solid rgba(111, 165, 255, 0.3);
}
.about-mission-text {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  font-weight: 600;
  line-height: 1.4;
  color: var(--white);
  margin-bottom: 1.6rem;
}

.about-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.about-chips + .about-chips { margin-top: 0.6rem; }
.chip {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.38rem 0.9rem;
  border-radius: 999px;
  white-space: nowrap;
}
.chip-no {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.5);
  text-decoration: line-through;
  text-decoration-color: var(--coral);
  text-decoration-thickness: 1.5px;
}
.chip-yes {
  background: rgba(111, 165, 255, 0.14);
  color: var(--mango);
  border: 1px solid rgba(111, 165, 255, 0.35);
}

/* Goal tile — blue gradient */
.about-goal {
  grid-column: span 5;
  background: linear-gradient(140deg, var(--primary) 0%, var(--primary-deep) 100%);
}
.about-goal .about-kicker {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}
.about-goal-lead {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.about-goal-list { list-style: none; }
.about-goal-list li {
  padding: 0.65rem 0 0.65rem 1.7rem;
  position: relative;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.25);
}
.about-goal-list li:last-child { border-bottom: none; color: var(--mango); font-weight: 700; }
.about-goal-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--mango);
  font-weight: 700;
}

/* Format tiles */
.about-format {
  grid-column: span 6;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about-format:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.about-format h4 {
  font-family: var(--font-display);
  font-size: 1.02rem;
  color: var(--ink);
  margin: 1rem 0 0.9rem;
}
.format-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border-radius: 14px;
  background: rgba(47, 107, 200, 0.1);
  font-size: 1.3rem;
}
.about-format ul { list-style: none; }
.about-format li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.55rem;
  font-size: 0.94rem;
  color: var(--text-soft);
}
.about-format li::before {
  content: '●';
  position: absolute;
  left: 0; top: 0.45em;
  color: var(--primary);
  font-size: 0.55rem;
}

/* Essence banner — main meaning, full-width blue */
.about-essence {
  margin-top: 1.5rem;
  background: linear-gradient(120deg, var(--primary) 0%, var(--primary-deep) 100%);
  border-radius: var(--radius);
  padding: 2.8rem 2.2rem;
  text-align: center;
  box-shadow: 0 18px 44px rgba(47, 107, 200, 0.35);
  position: relative;
  overflow: hidden;
}
.about-essence::before {
  content: '';
  position: absolute;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(111, 165, 255, 0.28) 0%, transparent 70%);
  top: -180px; right: -100px;
}
.about-essence .about-kicker {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}
.about-essence p {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.8vw, 1.8rem);
  font-weight: 700;
  color: var(--white);
}

/* Journey strip */
.about-journey {
  margin-top: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.6rem 2.2rem;
  box-shadow: var(--shadow);
}
.about-journey h3 {
  text-align: center;
  font-size: 1.25rem;
  margin-bottom: 2.2rem;
}

.journey-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.1rem;
  position: relative;
}
.journey-steps::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 8%; right: 8%;
  height: 2px;
  background: linear-gradient(90deg, rgba(47, 107, 200, 0.3) 0%, rgba(30, 113, 246, 0.5) 100%);
}
.journey-steps li { position: relative; z-index: 1; text-align: center; }

.journey-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  margin: 0 auto 0.9rem;
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 700;
  background: #E4EDFB;
  color: var(--primary-deep);
  border: 2px solid rgba(47, 107, 200, 0.35);
}
.journey-steps li p { font-size: 0.86rem; color: var(--text-soft); line-height: 1.45; }

.journey-final .journey-num {
  background: var(--flavor-grad);
  color: #fff;
  border: none;
  box-shadow: 0 8px 20px rgba(30, 113, 246, 0.4);
}
.journey-final p { color: var(--ink) !important; font-weight: 700; }

@media (max-width: 980px) {
  .about-mission, .about-goal { grid-column: span 12; }
  .about-format { grid-column: span 6; }
  .journey-steps { grid-template-columns: repeat(3, 1fr); row-gap: 1.8rem; }
  .journey-steps::before { display: none; }
}
@media (max-width: 640px) {
  .about-format { grid-column: span 12; }
  .journey-steps { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   AUDIENCE
   ============================================================ */
.audience-section { background: var(--white); }

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

.audience-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--line);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.audience-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.audience-icon { font-size: 2rem; margin-bottom: 0.9rem; }
.audience-card h3 { font-size: 1.1rem; margin-bottom: 0.7rem; }
.audience-card p { font-size: 0.95rem; color: var(--text-soft); }

/* not-for accordion */
.not-for {
  max-width: 820px;
  margin: 0 auto;
  background: var(--paper);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
}

.not-for-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  padding: 1.4rem 1.8rem;
}
.not-for-arrow { transition: transform 0.3s ease; color: var(--primary); }
.not-for.open .not-for-arrow { transform: rotate(180deg); }

.not-for-content { max-height: 0; overflow: hidden; transition: max-height 0.45s ease; }
.not-for.open .not-for-content { max-height: 700px; }

.not-for-inner { padding: 0 1.8rem 1.8rem; }
.not-for-intro { font-weight: 600; margin-bottom: 1.1rem; }
.not-for-list p {
  margin-bottom: 0.9rem;
  padding-left: 1.3rem;
  border-left: 3px solid var(--mango);
  color: var(--text-soft);
}

.audience-outro {
  text-align: center;
  margin-top: 2.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--ink);
}

/* ============================================================
   LINE-UP (dark)
   ============================================================ */
.lineup-section {
  background:
    radial-gradient(90% 60% at 80% 10%, rgba(47, 107, 200, 0.25) 0%, transparent 60%),
    var(--ink);
}

.lineup-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.lineup-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.lineup-card:hover { transform: translateY(-6px); border-color: rgba(111, 165, 255, 0.45); }

.lineup-photo {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 30% 25%, rgba(47, 107, 200, 0.45) 0%, transparent 55%),
    radial-gradient(circle at 75% 80%, rgba(30, 113, 246, 0.3) 0%, transparent 55%),
    var(--ink-2);
}
.lineup-photo span {
  font-family: var(--font-motto);
  font-size: 5rem;
  color: rgba(255, 255, 255, 0.35);
}
.lineup-photo img { width: 100%; height: 100%; object-fit: cover; }

.lineup-info { padding: 1.5rem; }
.lineup-info h3 { color: var(--white); font-size: 1.05rem; margin: 0.7rem 0 0.5rem; }
.lineup-info p { color: rgba(255, 255, 255, 0.6); font-size: 0.9rem; }

.lineup-style {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
}
.lineup-style-dominican { background: rgba(30, 113, 246, 0.18); color: var(--mango); }
.lineup-style-sensual { background: rgba(47, 107, 200, 0.25); color: #9dbdf2; }
.lineup-style-dj { background: rgba(255, 255, 255, 0.1); color: rgba(255, 255, 255, 0.75); }

.lineup-note {
  text-align: center;
  margin-top: 2.8rem;
  color: rgba(255, 255, 255, 0.7);
}
.lineup-note a { color: var(--mango); font-weight: 600; }

/* ============================================================
   SCHEDULE
   ============================================================ */
.schedule-section { background: var(--paper); }

.schedule-tabs { display: flex; justify-content: center; margin-bottom: 3rem; }

.tab-container {
  display: inline-flex;
  background: var(--white);
  border-radius: 999px;
  padding: 0.35rem;
  box-shadow: var(--shadow);
  gap: 0.25rem;
  flex-wrap: wrap;
  justify-content: center;
}

.tab-button {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  border: none;
  background: transparent;
  color: var(--text-soft);
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease;
}
.tab-button.active { background: var(--primary); color: var(--white); }

.schedule-content { display: none; }
.schedule-content.active { display: block; animation: fadeInUp 0.5s ease; }

.day-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.day-header h3 {
  display: inline-block;
  font-size: 1.35rem;
  padding-bottom: 0.6rem;
  border-bottom: 3px solid var(--mango);
}

.timeline {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  padding-left: 0;
}

.timeline-item {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 1.6rem;
  margin-bottom: 1.4rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--primary);
}

.time-badge {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.86rem;
  color: var(--primary-deep);
  white-space: nowrap;
}

.timeline-body h4 { font-family: var(--font-display); color: var(--ink); font-size: 1.06rem; margin-bottom: 0.6rem; }
.timeline-body p { color: var(--text-soft); font-size: 0.96rem; }

.tags { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 0.7rem; }
.tag {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
}
.tag-primary { background: rgba(47, 107, 200, 0.12); color: var(--primary-deep); }
.tag-secondary { background: rgba(111, 165, 255, 0.2); color: #1E4C97; }

.lab-list { list-style: none; }
.lab-list li {
  padding-left: 1.4rem;
  position: relative;
  margin-bottom: 0.4rem;
  color: var(--text-soft);
  font-size: 0.96rem;
}
.lab-list li::before {
  content: '●';
  position: absolute;
  left: 0; top: 0.45em;
  color: var(--mango);
  font-size: 0.55rem;
}

@media (max-width: 640px) {
  .timeline-item { grid-template-columns: 1fr; gap: 0.6rem; }
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing-section { background: var(--white); }

.earlybird-banner {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
  background: linear-gradient(100deg, var(--primary) 0%, var(--primary-deep) 100%);
  border-radius: var(--radius);
  padding: 1.4rem 1.8rem;
  color: var(--white);
  margin-bottom: 3rem;
  box-shadow: 0 16px 40px rgba(47, 107, 200, 0.35);
}
.earlybird-icon { font-size: 2rem; }
.earlybird-text { flex: 1; min-width: 220px; }
.earlybird-title { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; }
.earlybird-sub { opacity: 0.85; font-size: 0.9rem; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.8rem;
  margin-bottom: 3rem;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pricing-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.pricing-featured { border: 2px solid var(--coral); }

.pricing-ribbon {
  position: absolute;
  top: 22px; right: -38px;
  transform: rotate(45deg);
  background: var(--flavor-grad);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.45rem 2.6rem;
  z-index: 2;
}
.pricing-ribbon-party { background: var(--ink); color: var(--white); }

.pricing-head {
  padding: 2.2rem 2rem 1.8rem;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.pricing-head h3 { font-size: 1.4rem; margin-bottom: 0.4rem; }
.pricing-head p { color: var(--text-soft); font-size: 0.92rem; margin-bottom: 1.4rem; }

.pricing-head-blue {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
}
.pricing-head-blue h3 { color: var(--white); }
.pricing-head-blue p { color: rgba(255, 255, 255, 0.75); }
.pricing-head-blue .price-value, .pricing-head-blue .price-currency { color: var(--white); }
.pricing-head-blue .price-wave { background: rgba(255, 255, 255, 0.18); color: var(--white); }

.pricing-head-night { background: var(--ink); }
.pricing-head-night h3 { color: var(--white); }
.pricing-head-night p { color: rgba(255, 255, 255, 0.7); }
.pricing-head-night .price-value, .pricing-head-night .price-currency { color: var(--mango); }
.pricing-head-night .price-wave { background: rgba(255, 255, 255, 0.12); color: rgba(255, 255, 255, 0.85); }

.price {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 0.3rem;
  margin-bottom: 1rem;
}
.price-currency { font-weight: 600; color: var(--text-soft); margin-top: 0.4rem; }
.price-value {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.price-wave {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  background: rgba(30, 113, 246, 0.1);
  color: #1E71F6;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
}

.pricing-body {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pricing-features { list-style: none; flex: 1; margin-bottom: 1.6rem; }
.pricing-features li {
  padding-left: 1.8rem;
  position: relative;
  margin-bottom: 0.8rem;
  font-size: 0.96rem;
}
.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  font-weight: 700;
  color: var(--primary);
}

.pricing-help {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  background: var(--paper);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  border: 1px solid var(--line);
}
.pricing-help-icon {
  width: 72px; height: 72px;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  background: var(--flavor-grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
}
.pricing-help h3 { margin-bottom: 0.6rem; font-size: 1.25rem; }
.pricing-help p { color: var(--text-soft); margin-bottom: 1.6rem; }

/* ============================================================
   ORGANIZER
   ============================================================ */
.organizer-section { background: var(--paper); }

.organizer-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
  align-items: start;
  margin-bottom: 4.5rem;
}

.organizer-photo { position: relative; }
.organizer-photo img {
  width: 100%;
  border-radius: var(--radius);
  display: block;
}

.organizer-badge {
  position: absolute;
  top: -18px; right: -14px;
  width: 108px; height: 108px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transform: rotate(8deg);
}
.organizer-badge-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-soft);
  font-weight: 600;
}
.organizer-badge-value { font-family: var(--font-display); font-weight: 700; color: var(--primary); }

.organizer-text h3 {
  font-size: 1.45rem;
  margin-bottom: 1.4rem;
  padding-bottom: 0.9rem;
  position: relative;
}
.organizer-text h3::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 64px; height: 3px;
  background: var(--flavor-grad);
  border-radius: 2px;
}
.organizer-text > p { margin-bottom: 1.2rem; }

.organizer-stats {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.6rem;
  margin: 1.8rem 0;
  box-shadow: var(--shadow);
}
.stat { flex: 1; min-width: 110px; }
.stat-value {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--primary);
}
.stat p { font-size: 0.85rem; color: var(--text-soft); }

.organizer-quote {
  font-style: italic;
  color: var(--text-soft);
  border-left: 3px solid var(--mango);
  padding-left: 1.2rem;
  margin-bottom: 1.8rem;
}

.organizer-social { display: flex; align-items: center; gap: 0.8rem; font-weight: 600; }
.organizer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  background: var(--white);
  border-radius: 50%;
  text-decoration: none;
  color: var(--primary-deep);
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}
.organizer-social a:hover { transform: translateY(-3px); background: var(--primary); color: var(--white); }

.festivals-gallery { text-align: center; }
.festivals-gallery h3 { font-size: 1.45rem; margin-bottom: 2rem; }

.festivals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.festival-card {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  height: 240px;
  box-shadow: var(--shadow);
}
.festival-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.festival-card:hover img { transform: scale(1.06); }

.festival-card-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.1rem 1.2rem;
  background: linear-gradient(to top, rgba(14, 27, 51, 0.92), transparent);
  color: var(--white);
  text-align: left;
}
.festival-card-overlay h4 { font-family: var(--font-display); font-size: 0.98rem; margin-bottom: 0.2rem; }
.festival-card-overlay p { font-size: 0.82rem; opacity: 0.85; }

@media (max-width: 860px) {
  .organizer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .organizer-badge { right: 6px; }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--white); }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.6rem;
}

.testimonial-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 1.2rem;
  border: 1px solid var(--line);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.testimonial-card img {
  width: 100%;
  border-radius: 14px;
  display: block;
  margin-bottom: 1rem;
}
.testimonial-card h4 { font-family: var(--font-display); font-size: 0.98rem; color: var(--ink); }
.testimonial-card figcaption p { font-size: 0.82rem; color: var(--text-soft); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--paper); }

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

.accordion-item {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--line);
  margin-bottom: 0.9rem;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.accordion-item.active { box-shadow: var(--shadow); }

.accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1.3rem 1.6rem;
  text-align: left;
}
.accordion-header h3 {
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--ink);
}

.accordion-icon {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.accordion-item.active .accordion-icon { transform: rotate(45deg); }

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.accordion-item.active .accordion-content { max-height: 400px; }
.accordion-content p { padding: 0 1.6rem 1.4rem; color: var(--text-soft); }

/* ============================================================
   PROFILE CREATOR
   ============================================================ */
.creator-section { background: var(--white); }

.creator-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
  margin-bottom: 3rem;
}

.creator-text h3 {
  font-size: 1.45rem;
  margin-bottom: 1.3rem;
  padding-bottom: 0.9rem;
  position: relative;
}
.creator-text h3::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 64px; height: 3px;
  background: var(--flavor-grad);
  border-radius: 2px;
}
.creator-text > p { margin-bottom: 1.4rem; }

.creator-features { list-style: none; margin-bottom: 2rem; }
.creator-features li {
  padding-left: 1.9rem;
  position: relative;
  margin-bottom: 0.7rem;
  font-weight: 500;
}
.creator-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  font-weight: 700;
  color: var(--primary);
}

.creator-example figure {
  position: relative;
  max-width: 360px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: rotate(2.5deg);
  transition: transform 0.35s ease;
}
.creator-example figure:hover { transform: rotate(0deg) scale(1.02); }
.creator-example img { display: block; width: 100%; }
.creator-example figcaption {
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  padding: 0.75rem;
}

.creator-cta {
  text-align: center;
  background: var(--paper);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 2.6rem 2rem;
}
.creator-cta h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--ink);
  margin-bottom: 0.8rem;
}
.creator-cta p { max-width: 640px; margin: 0 auto 1.7rem; color: var(--text-soft); }
.creator-cta strong { color: var(--primary-deep); }

@media (max-width: 860px) {
  .creator-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ============================================================
   CONTACT (dark)
   ============================================================ */
.contact-section {
  background:
    radial-gradient(80% 60% at 15% 90%, rgba(30, 113, 246, 0.16) 0%, transparent 60%),
    var(--ink);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.4rem;
  margin-bottom: 3rem;
}

.contact-method {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem;
  text-align: center;
  text-decoration: none;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.contact-method:hover { transform: translateY(-5px); border-color: rgba(111, 165, 255, 0.5); }
.contact-icon { font-size: 1.8rem; margin-bottom: 0.8rem; }
.contact-method h4 {
  font-family: var(--font-display);
  color: var(--mango);
  font-size: 0.92rem;
  margin-bottom: 0.4rem;
}
.contact-method p { color: rgba(255, 255, 255, 0.85); font-size: 0.92rem; word-break: break-word; }

.community-card {
  text-align: center;
  background: linear-gradient(120deg, var(--primary) 0%, var(--primary-deep) 100%);
  border-radius: var(--radius);
  padding: 3rem 2rem;
  box-shadow: 0 20px 50px rgba(47, 107, 200, 0.4);
}
.community-card h3 { color: var(--white); font-size: 1.4rem; margin-bottom: 0.8rem; }
.community-card p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
  margin: 0 auto 1.8rem;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.cta-section {
  background:
    radial-gradient(100% 80% at 50% 110%, rgba(47, 107, 200, 0.4) 0%, transparent 65%),
    var(--ink-2);
  text-align: center;
  padding: 6rem 1.5rem;
}

.cta-section h2 {
  color: var(--white);
  font-size: clamp(1.9rem, 5vw, 3rem);
  margin-bottom: 2.4rem;
}
.cta-flavor {
  font-family: var(--font-motto);
  font-weight: 400;
  font-size: 1.25em;
  background: var(--flavor-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding: 0.18em 0.22em;
  margin: -0.18em -0.22em;
}

.cta-section .countdown-timer { margin-bottom: 2.6rem; animation: none; }

.cta-note {
  margin-top: 1.6rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.95rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.75);
  padding: 4rem 0 2.5rem;
  border-top: 3px solid;
  border-image: var(--flavor-grad) 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
  text-align: left;
}

.footer-logo {
  width: 190px;
  height: auto;
  display: block;
  margin-bottom: 1.2rem;
}

.footer-col h4 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 1.1rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid rgba(111, 165, 255, 0.4);
  display: inline-block;
}
.footer-col p { margin-bottom: 0.5rem; font-size: 0.93rem; }
.footer-tagline { margin-top: 0.9rem; color: rgba(255, 255, 255, 0.55); }

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.55rem; }
.footer-col a { color: var(--primary-soft); text-decoration: none; transition: color 0.2s ease; font-size: 0.93rem; }
.footer-col a:hover { color: var(--mango); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.8rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}
.footer-bottom p { margin-bottom: 0.3rem; }

/* ============================================================
   REVEAL ON SCROLL
   ============================================================ */
.reveal { opacity: 0; transition: opacity 0.7s ease, transform 0.7s ease; will-change: opacity, transform; }
.reveal.fade-bottom { transform: translateY(36px); }
.reveal.fade-left { transform: translateX(36px); }
.reveal.fade-right { transform: translateX(-36px); }
.reveal.visible { opacity: 1; transform: translate(0, 0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   STAY / ACCOMMODATION (Nadiya — official partner)
   ============================================================ */
.stay-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(70% 55% at 85% 8%, rgba(30, 113, 246, 0.18) 0%, transparent 60%),
    radial-gradient(60% 50% at 10% 100%, rgba(111, 165, 255, 0.12) 0%, transparent 60%),
    var(--ink);
  color: #fff;
}

.stay-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.2rem;
  align-items: center;
  margin-bottom: 3.5rem;
}
.stay-info h3 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  line-height: 1.2;
  margin-bottom: 1.1rem;
  color: #fff;
}
.stay-info p { color: rgba(255, 255, 255, 0.78); margin-bottom: 1.1rem; }
.stay-info strong { color: #fff; }

.stay-partner {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  border-radius: 14px;
  padding: 0.7rem 1.1rem;
  margin-bottom: 1.6rem;
}
.stay-partner img { height: 40px; width: auto; display: block; }
.stay-partner span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
}

.stay-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 1.3rem 1.5rem;
  margin: 1.6rem 0;
}
.stay-fact { flex: 1; min-width: 110px; }
.stay-fact-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--mango);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.stay-fact-label { font-size: 0.82rem; color: rgba(255, 255, 255, 0.7); margin: 0; }

.stay-note {
  border-left: 3px solid var(--coral);
  padding: 0.2rem 0 0.2rem 1.1rem;
  margin: 1.6rem 0;
  color: rgba(255, 255, 255, 0.9);
}
.stay-note code {
  font-family: var(--font-display);
  font-size: 0.95em;
  font-weight: 700;
  color: var(--mango);
  background: rgba(111, 165, 255, 0.12);
  padding: 0.1rem 0.5rem;
  border-radius: 6px;
}
.stay-info a { color: var(--mango); text-decoration: none; }
.stay-info a:hover { text-decoration: underline; }

.stay-media { position: relative; }
.stay-media-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.stay-media-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.stay-badge {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  background: var(--flavor-grad);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(30, 113, 246, 0.4);
  transform: rotate(9deg);
}
.stay-badge-value { font-family: var(--font-display); font-size: 1.7rem; font-weight: 800; line-height: 1; }
.stay-badge-label { font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; margin-top: 0.2rem; }

/* Rate list */
.stay-rates {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 0.6rem 2rem;
  color: var(--text);
}
.stay-rate-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  flex-wrap: wrap;
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--line);
}
.stay-rate-row:last-child { border-bottom: none; }
.stay-room { display: flex; align-items: center; gap: 0.8rem; flex-wrap: wrap; }
.stay-room-name { font-weight: 600; color: var(--ink); font-size: 1.02rem; }
.stay-cap {
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--primary-deep);
  background: rgba(47, 107, 200, 0.1);
  border-radius: 999px;
  padding: 0.2rem 0.65rem;
  white-space: nowrap;
}
.stay-price { display: flex; align-items: baseline; gap: 0.5rem; flex-wrap: wrap; justify-content: flex-end; }
.stay-price > span { white-space: nowrap; }
.stay-price-old { font-size: 0.92rem; text-decoration: line-through; color: var(--text-soft); opacity: 0.75; }
.stay-price-new { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--coral); }
.stay-price-eur { font-size: 0.85rem; color: var(--text-soft); }
.stay-price-unit { font-size: 0.8rem; color: var(--text-soft); font-weight: 400; }

.stay-legend {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  margin: 1.4rem 0 0;
}

.stay-cta {
  margin-top: 2.6rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 2.2rem;
  text-align: center;
}
.stay-cta-icon { font-size: 2.4rem; line-height: 1; margin-bottom: 0.8rem; }
.stay-cta h3 { font-family: var(--font-display); color: #fff; font-size: 1.3rem; margin-bottom: 0.6rem; }
.stay-cta p { color: rgba(255, 255, 255, 0.78); margin-bottom: 1.5rem; }
.stay-cta p code {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--mango);
  background: rgba(111, 165, 255, 0.12);
  padding: 0.1rem 0.5rem;
  border-radius: 6px;
}
.stay-cta-phone { margin-top: 1rem !important; font-size: 0.92rem; color: rgba(255, 255, 255, 0.7) !important; }

@media (max-width: 860px) {
  .stay-grid { grid-template-columns: 1fr; gap: 2.4rem; }
  .stay-badge { width: 92px; height: 92px; top: -14px; right: -6px; }
  .stay-rates { padding: 0.4rem 1.3rem; }
  .stay-rate-row { padding: 0.95rem 0; }
}

/* Stay — room photo cards + premium (Lux) strip */
.stay-rooms {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.6rem;
  margin-top: 1rem;
}
.stay-room-card {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}
.stay-room-card:hover { transform: translateY(-4px); }
.stay-room-media { height: 200px; overflow: hidden; }
.stay-room-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.stay-room-card:hover .stay-room-media img { transform: scale(1.05); }
.stay-room-body { padding: 1.4rem; display: flex; flex-direction: column; flex: 1; color: var(--text); }
.stay-room-head { display: flex; align-items: center; justify-content: space-between; gap: 0.6rem; margin-bottom: 0.55rem; }
.stay-room-body h4 { font-family: var(--font-display); font-size: 1.06rem; color: var(--ink); font-weight: 600; line-height: 1.25; }
.stay-room-desc { font-size: 0.9rem; color: var(--text-soft); margin-bottom: 1rem; flex: 1; }
.stay-room-card .stay-price { justify-content: flex-start; margin-bottom: 1.1rem; }
.stay-room-actions { display: flex; flex-direction: column; gap: 0.55rem; margin-top: auto; }
.stay-room-actions .btn { width: 100%; text-align: center; }
.stay-room-details { text-align: center; font-size: 0.82rem; font-weight: 600; color: var(--primary); text-decoration: none; }
.stay-room-details:hover { text-decoration: underline; }

.stay-premium { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; margin-top: 1.6rem; }
.stay-premium-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 1.5rem 1.6rem 1.5rem 1.9rem;
  overflow: hidden;
}
.stay-premium-card::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 5px; background: var(--flavor-grad); }
.stay-premium-info { min-width: 0; flex: 1; }
.stay-premium-tag {
  display: inline-block; font-family: var(--font-display); font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--mango);
  background: rgba(111, 165, 255, 0.12); border-radius: 999px; padding: 0.22rem 0.65rem; margin-bottom: 0.55rem;
}
.stay-premium-info h4 { font-family: var(--font-display); color: #fff; font-size: 1.12rem; margin-bottom: 0.4rem; display: flex; align-items: center; gap: 0.6rem; flex-wrap: wrap; }
.stay-premium-info h4 .stay-cap { background: rgba(111, 165, 255, 0.16); color: var(--mango); }
.stay-premium-desc { font-size: 0.88rem; color: rgba(255, 255, 255, 0.68); margin: 0; }
.stay-premium-buy { text-align: right; }
.stay-premium-buy .stay-price { justify-content: flex-end; margin-bottom: 0.8rem; }
.stay-premium-buy .stay-price-old { color: rgba(255, 255, 255, 0.5); }
.stay-premium-buy .stay-price-new { color: #fff; }
.stay-premium-buy .stay-price-eur, .stay-premium-buy .stay-price-unit { color: rgba(255, 255, 255, 0.6); }

@media (max-width: 860px) {
  .stay-premium { grid-template-columns: 1fr; }
  .stay-premium-buy { text-align: left; }
  .stay-premium-buy .stay-price { justify-content: flex-start; }
}
