:root{
  --ink:#25105a;
  --coral:#ff5f76;
  --yellow:#ffbf1f;
  --purple:#6f34e8;
  --paper:#fffdf9;
  --muted:#f7f3ef;
  --line:#dfd8d4;
  --text:#17131d;
  --green:#23b26d;
  --red:#e34c4c;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Poppins",system-ui,sans-serif;
  background:var(--paper);
  color:var(--text);
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}

/* ---------- SHARED HEADER ---------- */
.site-header{
  width:min(1420px,92vw);
  margin:0 auto;
  min-height:110px;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:2rem;
  position:relative;
  z-index:50;
}
.brand{width:max-content;line-height:.9;color:var(--ink)}
.brand-main{display:block;font-size:2rem;font-weight:800;letter-spacing:.04em}
.brand-flower{color:var(--yellow)}
.brand-sub{
  display:block;
  margin-top:.45rem;
  color:var(--coral);
  font-size:.88rem;
  font-weight:800;
  letter-spacing:.55em;
}
.nav{display:flex;align-items:center;gap:2.4rem;font-weight:700}
.nav-link{padding:.75rem 1.25rem;border-radius:999px;color:var(--ink)}
.nav-link.active{background:var(--yellow)}
.ticket-link{display:flex;gap:.55rem;align-items:center}
.menu-dots{
  display:none;
  justify-self:end;
  border:0;
  background:transparent;
  font-size:1.8rem;
  letter-spacing:.15em;
  color:var(--ink);
  cursor:pointer;
}

/* ---------- HOMEPAGE / HERO STAGE ---------- */
/* Full-bleed video hero. Breaks out of the 1420px container on purpose —
   this is the one place the site goes edge-to-edge. */
.hero-stage{
  position:relative;
  width:100vw;
  margin-left:calc(50% - 50vw);
  min-height:94vh;
  overflow:hidden;
  display:flex;
  align-items:flex-end;
  color:#fffdf9;
}
.hero-media{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg,rgba(16,7,22,.68) 0%,rgba(16,7,22,.28) 48%,rgba(16,7,22,.08) 100%),
    url('homepage-hero.png') center center/cover no-repeat;
}
.hero-video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  /* If assets/hero-loop.mp4 is missing, the browser shows nothing here and
     .hero-media's gradient behind it is what the visitor sees instead. */
}
.hero-scrim{
  position:absolute;
  inset:0;
  background:
    linear-gradient(0deg, rgba(16,7,22,.92) 0%, rgba(16,7,22,.35) 46%, rgba(16,7,22,.15) 100%),
    linear-gradient(100deg, rgba(16,7,22,.55) 0%, transparent 55%);
}
.hero-grain{
  position:absolute;
  inset:0;
  background:repeating-linear-gradient(102deg,transparent 0 48px,rgba(255,255,255,.04) 49px 50px);
}
.hero-stage-inner{
  position:relative;
  z-index:2;
  width:min(1420px,92vw);
  margin:0 auto;
  padding:9rem 0 4.5rem;
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:3rem;
}
.hero-kicker{
  display:inline-flex;
  align-items:center;
  gap:.6rem;
  color:var(--yellow);
  font-weight:800;
  letter-spacing:.28em;
  text-transform:uppercase;
  font-size:.85rem;
  margin-bottom:1.4rem;
}
.hero-copy h1{
  margin:0;
  max-width:760px;
  font-family:"Anton",sans-serif;
  font-weight:400;
  font-size:clamp(4.2rem,7.4vw,8.4rem);
  line-height:1.08;
  letter-spacing:-.02em;
}
.hero-copy h1 span{display:block;margin-bottom:.12em}
.hero-copy h1 span:last-child{margin-bottom:0}
.hero-copy h1 .accent-coral{color:var(--coral)}
.accent-dot{display:inline!important;color:var(--yellow)}
.hero-tagline{
  margin:1.6rem 0 2.2rem;
  max-width:520px;
  font-size:clamp(1.05rem,1.3vw,1.3rem);
  line-height:1.65;
  color:#f1ece6;
}
.hero-tagline strong{color:#fff}
.hero-actions{display:flex;gap:1rem;flex-wrap:wrap}

.btn{
  min-height:62px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:1rem;
  padding:0 2rem;
  border-radius:999px;
  text-transform:uppercase;
  font-weight:800;
  font-size:.9rem;
  border:0;
  cursor:pointer;
}
.btn-primary{background:var(--coral);color:white}
.btn-secondary{border:2px solid #fff;color:#fff;background:transparent}
.arrow-circle{
  width:30px;
  height:30px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:var(--yellow);
  color:var(--ink);
}

/* Floating "what's on" card, docked bottom-right over the video */
.hero-float{
  position:relative;
  z-index:2;
  width:min(320px,100%);
  padding:1.5rem 1.6rem;
  border-radius:22px;
  background:rgba(23,19,29,.55);
  border:1px solid rgba(255,255,255,.18);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
}
.hero-float .eyebrow{color:var(--yellow)}
.hero-float h2{
  margin:.3rem 0 .9rem;
  font-family:"Anton",sans-serif;
  font-weight:400;
  font-size:2.1rem;
  line-height:.95;
}
.hero-float .meta{font-size:.92rem;line-height:1.9;color:#f1ece6}
.hero-float .price-row{
  display:flex;justify-content:space-between;align-items:center;
  margin-top:1.1rem;padding-top:1.1rem;border-top:1px solid rgba(255,255,255,.18);
}
.hero-float .price-row strong{font-size:1.3rem;color:var(--yellow)}
.hero-float .going{
  display:flex;align-items:center;gap:.6rem;margin-top:1rem;font-size:.85rem;color:#f1ece6
}
.avatars{display:flex}
.avatars span{
  width:26px;height:26px;border-radius:50%;background:#ece7e3;
  display:grid;place-items:center;margin-left:-8px;border:2px solid rgba(23,19,29,.55);
  font-size:.8rem;
}
.avatars span:first-child{margin-left:0}

/* ---------- INNER PAGE SHARED ---------- */
.page-shell{width:min(1280px,92vw);margin:2rem auto 7rem}
.eyebrow{color:var(--coral);font-size:.82rem;font-weight:800;letter-spacing:.18em;text-transform:uppercase}
.display-title{
  font-family:"Anton",sans-serif;color:var(--ink);font-size:clamp(4rem,9vw,8rem);
  line-height:.87;margin:.25rem 0 1rem;font-weight:400
}
.lede{max-width:730px;font-size:1.15rem;line-height:1.75;color:#3c3742}
.section-title{
  font-family:"Anton",sans-serif;color:var(--ink);font-size:clamp(2.6rem,5vw,4.8rem);
  font-weight:400;line-height:.95;margin:0 0 1.2rem
}
.card{
  background:#fff;border:1px solid #eee8e3;border-radius:24px;
  box-shadow:0 18px 50px rgba(37,16,90,.08)
}
.text-link{color:var(--coral);text-decoration:underline}

/* ---------- EVENTS LIST ---------- */
.events-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;margin-top:3rem}
.event-card{overflow:hidden;position:relative}
.event-art{
  aspect-ratio:4/5;position:relative;padding:1.5rem;color:#fff;
  display:flex;flex-direction:column;justify-content:flex-end;overflow:hidden
}
.event-art.purple{
  background:radial-gradient(circle at 75% 18%,rgba(255,95,118,.75),transparent 25%),
             radial-gradient(circle at 32% 62%,rgba(255,191,31,.95),transparent 18%),
             linear-gradient(145deg,#24104f,#6f34e8 55%,#140821)
}
.event-art.orange{
  background:radial-gradient(circle at 65% 35%,rgba(255,255,255,.24),transparent 16%),
             linear-gradient(145deg,#ff7d45,#ffbf1f 62%,#6f34e8)
}
.event-art.blue{
  background:radial-gradient(circle at 25% 22%,rgba(255,191,31,.8),transparent 18%),
             linear-gradient(145deg,#1d2c78,#3d68e4 55%,#ff5f76)
}
.event-art:before{
  content:"";position:absolute;inset:0;
  background:repeating-linear-gradient(102deg,transparent 0 46px,rgba(255,255,255,.055) 47px 49px)
}
.event-art > *{position:relative;z-index:2}
.event-chip{
  position:absolute;top:1rem;right:1rem;background:var(--coral);
  padding:.6rem .8rem;border-radius:999px;font-size:.75rem;font-weight:800
}
.event-art .script{font-family:"Caveat",cursive;color:var(--yellow);font-size:2rem;margin-bottom:.2rem}
.event-art h2{font-family:"Anton",sans-serif;font-size:3.25rem;line-height:.96;margin:.2rem 0}
.event-art p{margin:.4rem 0 0;font-weight:700}
.event-info{padding:1.2rem 1.25rem 1.4rem}
.event-info .meta{font-size:.92rem;color:#5f5964;line-height:1.75}
.event-info .price-row{display:flex;justify-content:space-between;align-items:center;margin-top:1rem}
.event-info strong{color:var(--ink)}
.empty-note{
  margin-top:3rem;padding:1.4rem 1.6rem;border:1px dashed #cabfd5;
  border-radius:18px;color:#62596a;background:#fff
}

/* ---------- EVENT DETAIL ---------- */
.detail-layout{display:grid;grid-template-columns:1.05fr .95fr;gap:3rem;align-items:stretch;margin-top:2rem}
.event-media-column{display:flex;flex-direction:column;gap:1.5rem;height:100%}
.event-media-column:has(.event-video-frame){display:grid;grid-template-rows:minmax(420px,1.65fr) minmax(260px,1fr)}
.detail-poster{
  min-height:0;border-radius:28px;position:relative;overflow:hidden;padding:2.7rem;color:white;
  display:flex;flex-direction:column;justify-content:flex-end;
  background:
    radial-gradient(circle at 70% 30%,rgba(255,0,201,.75),transparent 24%),
    radial-gradient(circle at 50% 58%,rgba(255,153,0,.95),transparent 24%),
    radial-gradient(circle at 20% 20%,rgba(99,39,187,.85),transparent 30%),
    linear-gradient(145deg,#1b0b29 0%,#33104f 40%,#100716 100%)
}
.poster-kicker{font-family:"Caveat",cursive;font-size:4.4rem;font-weight:700;transform:rotate(-4deg)}
.poster-title{font-family:"Anton",sans-serif;color:var(--yellow);font-size:7rem;line-height:.93;transform:rotate(-3deg)}
.poster-tagline{max-width:36rem;margin:1.5rem 0 0;font-weight:700;line-height:1.55;color:#fff}
.poster-meta{display:grid;gap:.35rem;margin-top:1.35rem;font-size:.92rem;line-height:1.45;color:#fff}
.poster-meta strong{font-weight:800}
.detail-poster > *{position:relative;z-index:2}
.event-video-frame{position:relative;min-height:260px;border-radius:28px;overflow:hidden;background:#100716}
.event-video-frame iframe,.event-video-frame video{position:absolute;inset:0;width:100%;height:100%;border:0;object-fit:cover;background:#100716}
.detail-panel{padding:2rem;height:100%;display:flex;flex-direction:column}
.detail-panel h1{
  font-family:"Anton",sans-serif;color:var(--ink);font-size:clamp(3rem,5vw,5rem);
  line-height:.95;font-weight:400;margin:.2rem 0 1.2rem
}
.info-stack{display:grid;gap:.75rem;margin:1.4rem 0 1.8rem}
.info-row{padding:1rem 1.1rem;border-radius:15px;background:#faf6f3}
.ticket-box{border-top:1px solid var(--line);margin-top:auto;padding-top:1.5rem}
.ticket-option{display:flex;justify-content:space-between;gap:1rem;align-items:center;padding:1rem 0}
.quantity{display:flex;align-items:center;gap:.7rem}
.quantity button{
  width:32px;height:32px;border-radius:50%;border:1px solid var(--line);
  background:white;cursor:pointer
}

/* ---------- FORMS / CHECKOUT ---------- */
.form-card{max-width:760px;margin:3rem auto 0;padding:2rem}
.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
label{display:grid;gap:.5rem;font-weight:700;color:var(--ink)}
input,textarea,select{
  width:100%;padding:1rem 1.05rem;border:1px solid #d8d1cc;
  border-radius:14px;background:#fff;font:inherit
}
textarea{min-height:130px;resize:vertical}
.full{grid-column:1/-1}
.notice{padding:1rem 1.1rem;border-radius:14px;background:#fff8db;color:#5f4b00;margin-bottom:1.2rem}

/* ---------- INTEREST FORM (about page, "what's next") ---------- */
.interest-form{
  margin-top:2rem;
  padding:2.4rem 2.6rem;
  display:grid;
  gap:0;
}
.interest-form .form-grid{margin-bottom:.4rem}
.chip-label{
  margin:1.7rem 0 .9rem;
  font-weight:800;
  font-size:.95rem;
  color:var(--ink);
}
.chip-group{display:flex;flex-wrap:wrap;gap:.65rem}
.chip{position:relative;cursor:pointer;margin:0}
.chip input{position:absolute;opacity:0;width:1px;height:1px;pointer-events:none}
.chip span{
  display:inline-flex;
  align-items:center;
  padding:.7rem 1.2rem;
  border-radius:999px;
  border:2px solid var(--line);
  background:#fff;
  font-weight:700;
  font-size:.9rem;
  color:var(--ink);
  transition:background .15s ease,border-color .15s ease,color .15s ease,transform .1s ease;
}
.chip:hover span{border-color:var(--coral)}
.chip input:checked + span{
  background:var(--coral);
  border-color:var(--coral);
  color:#fff;
  transform:scale(1.03);
}
.chip input:focus-visible + span{outline:2px solid var(--ink);outline-offset:2px}
.interest-form .full{margin-top:1.7rem}
.full-width{width:100%;margin-top:1.8rem}
.feedback-thanks{margin-top:2rem;padding:2.4rem 2.6rem}
.feedback-thanks h3{
  font-family:"Anton",sans-serif;font-weight:400;color:var(--ink);
  font-size:2.1rem;line-height:1.15;margin:.5rem 0
}

/* ---------- MY TICKET ---------- */
.ticket-card{
  max-width:760px;margin:3rem auto 0;padding:2rem;
  display:grid;grid-template-columns:1fr 220px;gap:2rem;align-items:center
}
.ticket-qr{display:grid;justify-items:center;gap:.7rem;color:#665f69;font-size:.72rem;font-weight:700;text-transform:uppercase;letter-spacing:.06em}
#ticketQr{width:210px;height:210px;padding:10px;border-radius:18px;background:#fff;box-shadow:0 10px 30px rgba(37,16,90,.12)}
#ticketQr img,#ticketQr canvas{display:block;width:190px!important;height:190px!important}
.status-valid{
  display:inline-flex;padding:.45rem .7rem;border-radius:999px;
  background:#dff6e8;color:#187947;font-weight:800;font-size:.78rem
}

/* ---------- POLICIES / ABOUT ---------- */
.policy-stack{display:grid;gap:1.2rem;margin-top:2rem}
.policy-card{padding:1.5rem 1.7rem}
.policy-card h2{color:var(--ink);margin-top:0}
.policy-card{scroll-margin-top:1.5rem}
.policy-card p{line-height:1.75;color:#3c3742}
.policy-card p:last-child{margin-bottom:0}
.policy-intro p{margin:.35rem 0}
.policy-links{display:flex;align-items:center;flex-wrap:wrap;gap:.55rem;margin-top:1.5rem;color:var(--ink);font-size:.82rem;font-weight:800;letter-spacing:.08em}
.policy-links a{padding:.35rem 0;border-bottom:1px solid transparent}
.policy-links a:hover{border-bottom-color:var(--coral)}
.policy-links span{color:var(--coral)}
.policy-updated{margin-top:1.5rem;color:#665f69;font-size:.9rem}

/* ---------- COOKIE CONSENT ---------- */
.cookie-consent{
  position:fixed;z-index:1000;left:50%;bottom:1.25rem;width:min(760px,calc(100vw - 2rem));
  transform:translate(-50%,calc(100% + 2.5rem));opacity:0;visibility:hidden;
  display:grid;grid-template-columns:1fr auto;gap:1rem 1.5rem;align-items:center;
  padding:1.15rem 1.25rem;border:1px solid rgba(255,255,255,.13);border-radius:18px;
  background:#17131d;color:#fff;box-shadow:0 18px 55px rgba(0,0,0,.28);
  transition:transform .22s ease,opacity .22s ease,visibility .22s ease
}
.cookie-consent.is-visible{transform:translate(-50%,0);opacity:1;visibility:visible}
.cookie-consent p{margin:0;font-size:.9rem;line-height:1.55;color:#f2edf3}
.cookie-consent p strong{color:var(--yellow)}
.cookie-policy-link{display:inline-block;margin-top:.35rem;color:var(--yellow);font-size:.78rem;font-weight:800}
.cookie-policy-link:hover{text-decoration:underline;text-underline-offset:3px}
.cookie-actions{display:flex;gap:.55rem;flex-wrap:wrap;justify-content:flex-end}
.cookie-button{border:1px solid rgba(255,255,255,.35);border-radius:999px;padding:.7rem .9rem;background:transparent;color:#fff;font:inherit;font-size:.72rem;font-weight:800;cursor:pointer;white-space:nowrap}
.cookie-button-primary{border-color:var(--yellow);background:var(--yellow);color:var(--ink)}
.cookie-button:focus-visible,.cookie-policy-link:focus-visible{outline:2px solid var(--yellow);outline-offset:3px}
.about-grid{display:grid;grid-template-columns:1fr 1fr;gap:2rem;margin-top:3rem}
.about-title{font-size:clamp(3.8rem,7.5vw,7rem);max-width:1100px}
.about-intro{display:grid;gap:.45rem}
.about-intro p,.about-feedback-copy p{margin:0}
.about-story{margin-top:3rem;padding:2.2rem 2.4rem;max-width:980px}
.about-story p{max-width:820px;line-height:1.75;color:#3c3742}
.about-punchline{margin:1.6rem 0 0!important;color:var(--ink)!important;font-size:1.15rem}
.about-feedback-copy{display:grid;gap:.45rem;font-size:1rem}
.about-faq{margin-top:4.5rem}
.faq-list{display:grid;gap:.75rem;margin-top:1.5rem}
.faq-item{border:1px solid #e7dfda;border-radius:16px;background:#fff;box-shadow:0 8px 24px rgba(37,16,90,.045);overflow:hidden}
.faq-item summary{position:relative;padding:1.15rem 3.4rem 1.15rem 1.25rem;color:var(--ink);font-weight:800;cursor:pointer;list-style:none}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary:after{content:"+";position:absolute;right:1.25rem;top:50%;transform:translateY(-50%);color:var(--coral);font-size:1.5rem;font-weight:600}
.faq-item[open] summary:after{content:"−"}
.faq-item summary:focus-visible{outline:2px solid var(--coral);outline-offset:-3px}
.faq-item p{margin:0;padding:0 1.25rem 1.25rem;max-width:950px;color:#4a444d;line-height:1.7}
.feedback-options{display:grid;grid-template-columns:repeat(2,1fr);gap:1rem;margin-top:1rem}
.feedback-option{
  padding:1.2rem;border:1px solid var(--line);border-radius:16px;
  background:#fff;font-weight:700
}

/* ---------- SHARED FOOTER ---------- */
/* One row, every page, no exceptions: copyright left, About us button
   center, "Let's connect" right. No social icons (none exist yet —
   traffic comes from promoters/influencers), no repeated nav links, no
   duplicate blurbs. All "about us" info lives on about.php only. */
.site-footer{
  border-top:1px solid var(--line);
  padding:1.05rem 4vw;
  background:#fffaf6;
}
.footer-row{
  width:min(1420px,92vw);
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:1.5rem;
}
.footer-copyright{
  font-size:.85rem;
  color:#5f5964;
  justify-self:start;
}
.footer-about-link{
  justify-self:center;
  padding:.4rem .3rem;
  font-size:.95rem;
  font-weight:800;
  letter-spacing:.01em;
  color:var(--coral);
  border-radius:6px;
  transition:color .15s ease;
}
.footer-about-link:hover{
  color:var(--ink);
  text-decoration:underline;
  text-underline-offset:3px;
}
.footer-about-link:focus-visible{
  outline:2px solid var(--coral);
  outline-offset:3px;
}
.footer-about-link:active{
  color:#7a1f2c;
}
.connect-script{
  color:var(--text);
  font-family:"Caveat",cursive;
  font-size:2rem;
  justify-self:end;
  text-decoration:none;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width:1000px){
  .site-header{gap:1rem}
  .nav{gap:.6rem}
  .nav-link{padding:.7rem .85rem}
  .hero-stage{min-height:auto;padding-bottom:0}
  .hero-stage-inner{
    flex-direction:column;
    align-items:flex-start;
    padding:7rem 0 3rem;
    gap:2.5rem;
  }
  .hero-float{width:100%}
  .events-grid{grid-template-columns:1fr 1fr}
  .detail-layout,.about-grid{grid-template-columns:1fr}
  .event-media-column,.event-media-column:has(.event-video-frame){display:flex;height:auto}
  .event-video-frame{aspect-ratio:16/9;min-height:0}
}

@media (max-width:640px){
  .site-header{min-height:90px;grid-template-columns:1fr auto}
  .brand-main{font-size:1.45rem}
  .brand-sub{font-size:.62rem}
  .menu-dots{display:block;position:relative;width:44px;height:44px;padding:0;font-size:0;letter-spacing:0;border-radius:50%}
  .menu-dots:before{content:"";position:absolute;left:10px;top:21px;width:24px;height:2px;border-radius:2px;background:var(--ink);box-shadow:0 -7px 0 var(--ink),0 7px 0 var(--ink)}
  .nav{display:none;position:absolute;top:calc(100% - 6px);left:0;right:0;padding:.75rem;background:var(--paper);border:1px solid var(--line);border-radius:16px;box-shadow:0 18px 42px rgba(37,16,90,.16);flex-direction:column;align-items:stretch;gap:.2rem}
  .nav.is-open{display:flex}
  .nav-link{justify-content:center;text-align:center;padding:.85rem 1rem}
  .hero-stage{min-height:88vh}
  .hero-stage-inner{width:90vw;padding:6.5rem 0 2.5rem}
  .hero-copy h1{font-size:clamp(3.4rem,17vw,5.6rem)}
  .hero-actions{display:grid}
  .btn{width:100%}

  .events-grid,.form-grid{grid-template-columns:1fr}
  .interest-form{padding:1.8rem 1.6rem}
  .ticket-card{grid-template-columns:1fr}
  .display-title{font-size:clamp(3.6rem,18vw,6rem)}
  .about-title{font-size:clamp(3rem,13vw,4.8rem)}
  .about-story{padding:1.7rem 1.5rem}
  .poster-title{font-size:5rem}
  .detail-poster{min-height:560px;padding:2rem}
  .poster-meta{left:2rem}
  .footer-row{grid-template-columns:1fr;justify-items:center;text-align:center;gap:.5rem}
  .footer-copyright,.connect-script{justify-self:center}
  .cookie-consent{grid-template-columns:1fr;bottom:.75rem;padding:1rem}
  .cookie-actions{justify-content:stretch}
  .cookie-button{flex:1}
}
@media (prefers-reduced-motion:reduce){
  .cookie-consent{transition:none}
}
