:root {
  --ink: #170b29;
  --ink-2: #241238;
  --cream: #fff3e9;
  --paper: #fffaf5;
  --hot: #ff2d78;
  --sun: #ff8a3d;
  --teal: #0fc2a0;
  --lime: #d4ff3f;
  --text-soft: #6b5e82;
  --line: rgba(23, 11, 41, 0.12);
  --shadow: 0 14px 34px rgba(23, 11, 41, 0.14);
}
.menu-area{
    background-color: #fff;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--cream);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  line-height: 1.6;
  overflow-x: hidden;
}
h1,
h2,
h3 {
  font-family: "Bungee", sans-serif;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0.01em;
}
.mono {
  font-family: "Poppins", sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
img,
svg {
  display: block;
  max-width: 100%;
}
.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  color: var(--hot);
}
.eyebrow::before {
  content: "♪";
  font-size: 0.95rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Bungee";
  font-weight: 400;
  font-size: 0.92rem;
  padding: 16px 30px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease;
  letter-spacing: 0.02em;
}
.btn-primary {
  background: var(--hot);
  color: #fff;
  box-shadow: 0 6px 0 #b01852;
}
.btn-primary:hover {
  transform: translateY(-2px);
}
.btn-primary:active {
  transform: translateY(3px);
  box-shadow: 0 2px 0 #b01852;
}
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 2.5px solid var(--cream);
}
.btn-ghost:hover {
  background: var(--cream);
  color: var(--ink);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  background: var(--ink);
  color: #fff;
  padding: 76px 0 60px;
  overflow: hidden;
}
.eq {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 6px;
  padding: 0 4%;
  opacity: 0.35;
  z-index: 0;
}
.eq span {
  flex: 1;
  background: linear-gradient(180deg, var(--hot), var(--sun));
  border-radius: 4px 4px 0 0;
  animation: beat 1.4s ease-in-out infinite;
}
@keyframes beat {
  0%,
  100% {
    height: 14%;
  }
  50% {
    height: var(--h, 70%);
  }
}
.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.hero h1 {
  font-size: clamp(2.3rem, 7vw, 4.6rem);
  margin: 18px 0 20px;
  color: #fff;
}
.hero h1 .c1 {
  color: var(--hot);
}
.hero h1 .c2 {
  color: var(--lime);
}
.hero p.lead {
  font-size: 1.15rem;
  color: #d8cbee;
  max-width: 520px;
  margin: 0 auto 30px;
  font-weight: 600;
}
.badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 34px;
}
.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #000;
  border: 2px solid var(--ink);
  border-radius: 100px;
  padding: 12px 18px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 3px 3px 0 var(--ink);
  animation: none;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.hero-note {
  font-size: 0.85rem;
  color: #b7a9d4;
  margin-top: 18px;
  font-family: "Poppins", sans-serif;
}

/* ---------- SECTION HEADERS ---------- */
.section {
  padding: 96px 0;
}
.section-head {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin: 14px 0 16px;
}
.section-head p {
  color: var(--text-soft);
  font-size: 1.05rem;
}

/* ---------- ABOUT / FACTS ---------- */
.about-text {
  max-width: 700px;
  margin: 0 auto 54px;
  text-align: center;
  color: var(--text-soft);
  font-size: 1.08rem;
}
.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 760px) {
  .facts {
    grid-template-columns: 1fr;
  }
}
.fact-card {
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 18px;
  padding: 30px 26px;
  text-align: center;
  box-shadow: var(--shadow);
}
.fact-card .num {
  font-family: "Bungee";
  font-size: 1.7rem;
  color: var(--hot);
  display: block;
  margin-bottom: 8px;
}
.fact-card h4 {
  font-family: "Bungee", sans-serif;
  font-weight: 800;
  font-size: 1.02rem;
  margin-bottom: 8px;
}
.fact-card p {
  color: var(--text-soft);
  font-size: 0.9rem;
}

/* ---------- STEP MAP (footwork) ---------- */
.stepmap {
  background: var(--ink);
  color: #fff;
}
.stepmap .eyebrow {
  color: var(--lime);
}
.stepmap h2 {
  color: #fff;
}
.stepmap .section-head p {
  color: #c7b9e3;
}
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 640px;
  margin: 0 auto;
}
.step-row {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 22px;
  align-items: flex-start;
  position: relative;
  padding-bottom: 44px;
}
.step-row:last-child {
  padding-bottom: 0;
}
.step-row::before {
  content: "";
  position: absolute;
  left: 29px;
  top: 52px;
  bottom: 0;
  width: 2px;
  background: repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0 6px, transparent 6px 12px);
}
.step-row:last-child::before {
  display: none;
}
.foot {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.foot svg {
  width: 34px;
  height: 34px;
}
.step-row:nth-child(odd) .foot svg {
  color: var(--hot);
  transform: rotate(-6deg);
}
.step-row:nth-child(even) .foot svg {
  color: var(--sun);
  transform: rotate(6deg) scaleX(-1);
}
.step-body h4 {
  font-family: "Bungee";
  font-weight: 400;
  font-size: 1.05rem;
  margin-bottom: 6px;
  color: #fff;
}
.step-body p {
  color: #c7b9e3;
  font-size: 0.92rem;
}
.step-time {
  font-family: "Poppins", sans-serif;
  font-size: 0.72rem;
  color: var(--lime);
  display: block;
  margin-top: 6px;
}

/* ---------- SCHEDULE (playlist) ---------- */
.schedule {
  background: var(--paper);
}
.tracklist {
  max-width: 680px;
  margin: 0 auto;
  border: 2px solid var(--ink);
  border-radius: 18px;
  overflow: hidden;
}
.track {
  display: grid;
  grid-template-columns: 44px 1fr auto auto;
  gap: 16px;
  align-items: center;
  padding: 18px 22px;
  border-bottom: 1.5px dashed var(--line);
}
.track:last-child {
  border-bottom: none;
}
.track:nth-child(odd) {
  background: #fff;
}
.track:nth-child(even) {
  background: #fff6ee;
}
.track .n {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: var(--hot);
  font-size: 0.9rem;
}
.track .name {
  font-family: "Bungee", sans-serif;
  font-weight: 800;
  font-size: 0.98rem;
}
.track .day {
  font-family: "Poppins", sans-serif;
  font-size: 0.78rem;
  color: var(--text-soft);
}
.track .time {
  font-family: "Poppins", sans-serif;
  font-size: 0.78rem;
  background: var(--ink);
  color: var(--lime);
  padding: 5px 10px;
  border-radius: 6px;
  white-space: nowrap;
}

/* ---------- BENEFITS ---------- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 860px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}
.benefit {
  padding: 26px 24px;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
  border-top: 5px solid var(--hot);
}
.benefit:nth-child(3n + 2) {
  border-top-color: var(--teal);
}
.benefit:nth-child(3n + 3) {
  border-top-color: var(--sun);
}
.benefit .ic {
  width: 36px;
  height: 36px;
  color: var(--ink);
  margin-bottom: 14px;
}
.benefit h4 {
  font-family: "Bungee", sans-serif;
  font-weight: 800;
  font-size: 1.02rem;
  margin-bottom: 6px;
}
.benefit p {
  color: var(--text-soft);
  font-size: 0.9rem;
}

/* ---------- GALLERY ---------- */
.gallery {
  background: var(--ink);
}
.gallery .eyebrow {
  color: var(--lime);
}
.gallery h2 {
  color: #fff;
}
.gallery .section-head p {
  color: #c7b9e3;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 860px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.g-tile {
  aspect-ratio: 1/1;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
}
.g-tile svg {
  width: 100%;
  height: 100%;
}

/* ---------- REVIEWS (ticket stubs) ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 860px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}
.ticket {
  position: relative;
  background: #fff;
  border: 2px dashed var(--ink);
  border-radius: 14px;
  display: flex;
  box-shadow: var(--shadow);
}
.ticket-main {
  padding: 24px 20px;
  flex: 1;
}
.ticket-main p {
  font-weight: 700;
  font-size: 0.96rem;
  margin-bottom: 14px;
}
.ticket-main .who {
  font-family: "Poppins", sans-serif;
  font-size: 0.78rem;
  color: var(--text-soft);
}
.ticket-stub {
  width: 70px;
  flex-shrink: 0;
  border-left: 2px dashed var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--ink);
}
.ticket-stub span {
  font-family: "Bungee";
  color: var(--lime);
  font-size: 0.78rem;
  writing-mode: vertical-rl;
  letter-spacing: 0.1em;
}
.ticket-stub::before,
.ticket-stub::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background: var(--cream);
  border-radius: 50%;
  left: -9px;
}
.ticket-stub::before {
  top: -9px;
}
.ticket-stub::after {
  bottom: -9px;
}

/* ---------- JOIN / LEAD FORM ---------- */
.join {
  background: linear-gradient(180deg, var(--paper) 0%, #ffe7d6 100%);
}
.join-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 44px;
  align-items: start;
}
@media (max-width: 900px) {
  .join-grid {
    grid-template-columns: 1fr;
  }
}
.join-info h2 {
  font-size: clamp(1.9rem, 3.8vw, 2.6rem);
  margin-bottom: 16px;
}
.join-info p {
  color: var(--text-soft);
  margin-bottom: 24px;
}
.join-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}
.join-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-weight: 700;
  font-size: 0.96rem;
}
.join-list li svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--hot);
  margin-top: 2px;
}
.price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  background: var(--ink);
  color: #fff;
  padding: 16px 24px;
  border-radius: 14px;
  margin-bottom: 12px;
}
.price-tag .amt {
  font-family: "Bungee";
  font-size: 1.8rem;
  color: var(--lime);
}
.price-tag .per {
  font-family: "Poppins", sans-serif;
  font-size: 0.78rem;
  color: #d8cbee;
}

.form-card {
  background: #fff;
  border-radius: 22px;
  padding: 38px;
  box-shadow: var(--shadow);
  border: 2px solid var(--ink);
}
.form-card h3 {
  font-family: "Bungee";
  font-size: 1.25rem;
  margin-bottom: 8px;
}
.form-card .sub {
  color: var(--text-soft);
  font-size: 0.92rem;
  margin-bottom: 24px;
  font-weight: 600;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 520px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}
.field {
  margin-bottom: 16px;
}
.field label {
  display: block;
  font-weight: 800;
  font-size: 0.82rem;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.field input,
.field select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 2px solid var(--line);
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  background: var(--cream);
  outline: none;
  transition: border-color 0.15s ease;
}
.field input:focus,
.field select:focus {
  border-color: var(--teal);
}
.field.invalid input,
.field.invalid select {
  border-color: var(--hot);
}
.field .err {
  display: none;
  color: var(--hot);
  font-size: 0.78rem;
  margin-top: 5px;
  font-weight: 700;
}
.field.invalid .err {
  display: block;
}
.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.82rem;
  color: var(--text-soft);
  margin: 6px 0 22px;
  font-weight: 600;
}
.consent input {
  margin-top: 3px;
}
.submit-btn {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 17px;
}
.form-success {
  display: none;
  text-align: center;
  padding: 20px 6px;
}
.form-success.show {
  display: block;
}
.form-success .check {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  color: var(--teal);
}
.form-success h3 {
  margin-bottom: 10px;
}
.form-success p {
  color: var(--text-soft);
  margin-bottom: 6px;
  font-weight: 600;
}
.ref {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: var(--hot);
}
#joinForm.hide {
  display: none;
}

/* ---------- FOOTER ---------- */
footer {
  background: var(--ink);
  color: #b7a9d4;
  padding: 60px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 760px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.footer-grid h4 {
  color: #fff;
  font-family: "Bungee", sans-serif;
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 16px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Bungee";
  color: #fff;
  font-size: 1rem;
  margin-bottom: 14px;
}
.footer-logo svg {
  width: 34px;
  height: 34px;
}
footer p {
  font-size: 0.9rem;
  line-height: 1.7;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.92rem;
}
.footer-links a:hover {
  color: #fff;
}
.socials {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.socials a:hover {
  background: var(--hot);
}
.socials svg {
  width: 18px;
  height: 18px;
  color: #fff;
}
.bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.8rem;
  color: #7a6c97;
  font-family: "Poppins", sans-serif;
}

.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
.wa-float svg {
  width: 30px;
  height: 30px;
  color: #fff;
}

::selection {
  background: var(--hot);
  color: #fff;
}
