:root {
  --purple: #7b2cbf;
  --purple-dark: #311050;
  --purple-deep: #170821;
  --yellow: #ffd21f;
  --cream: #fff8e8;
  --white: #fff;
  --ink: #20162a;
  --max: 1160px;
  --shadow: 0 22px 55px rgba(30, 8, 46, 0.22);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family:
    "Albert Sans",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.62;
}
body.menu-open {
  overflow: hidden;
}
a {
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}
.skip {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 99;
  background: var(--yellow);
  padding: 0.7rem 1rem;
  font-weight: 900;
}
.skip:focus {
  top: 1rem;
}
.shell {
  width: min(calc(100% - 2rem), var(--max));
  margin-inline: auto;
}
.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  color: white;
}
.nav {
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand {
  font-family: Anton, Impact, sans-serif;
  text-decoration: none;
  font-size: 1.25rem;
  letter-spacing: 0.06em;
}
.brand small {
  display: block;
  color: var(--yellow);
  font-family: "Albert Sans", sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
.nav-links a {
  text-decoration: none;
  font-weight: 900;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--yellow);
}
.ticket-mini {
  background: var(--yellow);
  color: var(--purple-deep) !important;
  padding: 0.72rem 1.1rem;
  border-radius: 999px;
}
.menu-btn {
  display: none;
  border: 0;
  background: var(--yellow);
  color: var(--purple-deep);
  border-radius: 50%;
  width: 46px;
  height: 46px;
  font-size: 1.35rem;
  font-weight: 900;
}
.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: white;
  background: var(--purple-deep);
}
.hero iframe {
  position: absolute;
  inset: 50% auto auto 50%;
  width: max(100vw, 177.78vh);
  height: max(100vh, 56.25vw);
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
  opacity: 0.62;
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(20, 5, 30, 0.48) 0%,
    rgba(20, 5, 30, 0.05) 45%,
    var(--purple-deep) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(92%, 900px);
  text-align: center;
  padding-top: 76px;
}
.hero-logo {
  width: min(90vw, 720px);
  margin: 0 auto;
  filter: drop-shadow(0 14px 26px rgba(0, 0, 0, 0.35));
}
.hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.5rem;
  background: var(--yellow);
  color: var(--purple-deep);
  border-radius: 999px;
  padding: 0.65rem 1.25rem;
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.1rem;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 2px solid var(--yellow);
  border-radius: 999px;
  background: var(--yellow);
  color: var(--purple-deep);
  padding: 0.86rem 1.35rem;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 1000;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  transition: 0.2s;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}
.button.ghost {
  background: transparent;
  color: white;
}
.slant {
  position: relative;
}
.slant:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -34px;
  height: 70px;
  background: inherit;
  transform: skewY(-2deg);
  transform-origin: 100%;
}
.intro {
  background: var(--cream);
  padding: 7rem 0 6rem;
}
.eyebrow {
  margin: 0 0 0.6rem;
  color: var(--purple);
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
}
.display {
  font-family: Anton, Impact, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 0.98;
  font-size: clamp(3rem, 8vw, 6.7rem);
  margin: 0.1em 0 0.35em;
}
.lead {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  max-width: 820px;
}
.intro-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 4rem;
  align-items: start;
}
.stamp {
  background: var(--yellow);
  color: var(--purple-deep);
  padding: 2rem;
  border-radius: 28px;
  transform: rotate(-2deg);
  box-shadow: var(--shadow);
}
.stamp strong {
  font-family: Anton, Impact, sans-serif;
  font-size: 2.2rem;
  line-height: 1.05;
  text-transform: uppercase;
}
.day-section {
  padding: 6rem 0;
  color: white;
}
.saturday {
  background: var(--purple);
}
.sunday {
  background: var(--purple-deep);
}
.day-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.day-head .display {
  font-size: clamp(2.7rem, 6vw, 5rem);
  margin: 0;
}
.day-meta {
  font-weight: 900;
  color: var(--yellow);
  text-align: right;
}
.artist-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.artist {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #35144b;
  box-shadow: var(--shadow);
}
.artist img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: 0.35s;
}
.artist:hover img {
  transform: scale(1.035);
}
.artist-name {
  position: absolute;
  inset: auto 0 0;
  padding: 3.2rem 1.15rem 1rem;
  background: linear-gradient(transparent, rgba(13, 4, 20, 0.96));
  font-family: Anton, Impact, sans-serif;
  text-transform: uppercase;
  font-size: 1.4rem;
  letter-spacing: 0.03em;
}
.story {
  padding: 6rem 0;
  background: var(--cream);
}
.story-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
}
.story-card {
  border: 2px solid rgba(123, 44, 191, 0.2);
  border-radius: 28px;
  padding: 2rem;
  background: white;
}
.story-card h3 {
  font-family: Anton, Impact, sans-serif;
  text-transform: uppercase;
  font-size: 2rem;
  margin: 0 0 0.7rem;
}
.story-card strong {
  color: var(--purple);
}
.partners {
  padding: 5rem 0;
  background: var(--yellow);
  text-align: center;
}
.partner-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.partner-row img {
  width: 130px;
  height: 90px;
  object-fit: contain;
}
.countdown {
  padding: 5rem 0;
  background: var(--purple-deep);
  color: white;
  text-align: center;
}
.digits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 680px;
  margin: 2rem auto 0;
  gap: 0.7rem;
}
.digit {
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
}
.digit strong {
  display: block;
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(2rem, 6vw, 4rem);
  color: var(--yellow);
  line-height: 1;
}
.digit span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.page-hero {
  min-height: 440px;
  padding: 9rem 0 5rem;
  color: white;
  background:
    radial-gradient(circle at 75% 20%, #a849ed 0, transparent 38%),
    var(--purple-deep);
  display: flex;
  align-items: end;
}
.page-hero .display {
  margin: 0;
}
.content {
  padding: 5rem 0;
}
.ticket-wrap {
  min-height: 560px;
  background: white;
  border-radius: 28px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.notice {
  background: var(--yellow);
  border-radius: 18px;
  padding: 1rem 1.3rem;
  margin-bottom: 1.4rem;
  font-weight: 800;
}
.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 0.8rem;
  width: 100%;
}
.faq-list details {
  background: white;
  border: 1px solid rgba(123, 44, 191, 0.16);
  border-radius: 18px;
  overflow: hidden;
}
.faq-list details:last-child {
  grid-column: 1 / -1;
}
.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 1.15rem 3.5rem 1.15rem 1.25rem;
  font-weight: 1000;
  position: relative;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary:after {
  content: "+";
  position: absolute;
  right: 1.2rem;
  top: 0.82rem;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  background: var(--yellow);
  border-radius: 50%;
  font-size: 1.35rem;
}
.faq-list details[open] summary:after {
  content: "–";
}
.faq-body {
  padding: 0 1.25rem 1.45rem;
  max-width: 900px;
}
.faq-body p:first-child {
  margin-top: 0;
}
.rules {
  columns: 2;
  column-gap: 3rem;
  padding-left: 1.2rem;
}
.rules li {
  break-inside: avoid;
  margin-bottom: 0.55rem;
}
.faq-heading > p {
  max-width: 340px;
  margin: 0 0 0.5rem;
  color: #5f5268;
}
.faq-contact {
  margin-top: 1.25rem;
  padding: 1.8rem 2rem;
  border-radius: 24px;
  background: var(--purple);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
.faq-contact h3 {
  margin: 0;
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  line-height: 1;
  text-transform: uppercase;
}
.faq-contact p:last-child { margin-bottom: 0; }
.faq-contact .eyebrow { color: var(--yellow); }
.contact-card {
  margin-top: 3rem;
  padding: 2rem;
  border-radius: 28px;
  background: var(--purple);
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.socials {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}
.socials a {
  display: inline-flex;
  text-decoration: none;
  background: var(--yellow);
  color: var(--purple-deep);
  font-weight: 1000;
  border-radius: 999px;
  padding: 0.72rem 1rem;
}
.site-footer {
  background: #100417;
  color: white;
  padding: 3rem 0;
}
.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.footer-links {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.footer-links a {
  color: white;
  text-decoration: none;
  font-weight: 800;
}
.powered {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #cbbfd1;
  font-size: 0.8rem;
}
.powered img {
  width: 80px;
  filter: brightness(0) invert(1);
}

@media (max-width: 760px) {
  .faq-list {
    grid-template-columns: 1fr;
  }
  .faq-list details:last-child {
    grid-column: auto;
  }
  .nav {
    height: 76px;
  }
  .menu-btn {
    display: block;
  }
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--purple-deep);
    flex-direction: column;
    justify-content: center;
    font-size: 1.2rem;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    font-size: 1.05rem;
  }
  .menu-btn {
    z-index: 2;
  }
  .hero {
    min-height: 650px;
  }
  .hero-logo {
    width: 100%;
  }
  .hero-meta {
    font-size: 0.72rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  .intro-grid,
  .story-columns {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .stamp {
    transform: none;
  }
  .day-head {
    display: block;
  }
  .day-meta {
    text-align: left;
    margin-top: 0.6rem;
  }
  .artist-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .artist-name {
    font-size: 1.05rem;
  }
  .rules {
    columns: 1;
  }
  .contact-card,
  .faq-contact,
  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }
  .digits {
    grid-template-columns: repeat(2, 1fr);
  }
  .content {
    padding: 3.5rem 0;
  }
  .page-hero {
    min-height: 360px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .artist img,
  .button {
    transition: none;
  }
  .hero iframe {
    display: none;
  }
}

/* 2026 content and typography refresh */
.lead-big {
  font-size: clamp(1.55rem, 2.7vw, 2.35rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.035em;
  margin-top: 0.25rem;
}
.text-link {
  display: inline-block;
  color: var(--purple);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.32rem;
  margin-top: 0.65rem;
}
.day-copy {
  padding: 5rem 0;
  background: var(--cream);
}
.day-copy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}
.day-copy article {
  position: relative;
  overflow: hidden;
  background: white;
  border: 1px solid rgba(123, 44, 191, 0.16);
  border-radius: 28px;
  padding: 2rem 2rem 2.2rem;
}
.day-copy .number {
  position: absolute;
  right: 1.5rem;
  top: 0.7rem;
  font-family: Anton, Impact, sans-serif;
  color: rgba(123, 44, 191, 0.09);
  font-size: 6.6rem;
  line-height: 1;
}
.day-copy h3,
.practical h3 {
  font-family: Anton, Impact, sans-serif;
  text-transform: uppercase;
  line-height: 1.05;
  margin: 0.35rem 0 0.8rem;
  font-size: clamp(1.75rem, 3vw, 2.55rem);
  letter-spacing: 0.015em;
}
.day-copy p:last-child {
  max-width: 33rem;
  margin-bottom: 0;
  font-weight: 500;
}
.ticket-cta {
  background: var(--yellow);
  padding: 3.5rem 0;
}
.ticket-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.ticket-cta .eyebrow {
  color: var(--purple-deep);
}
.ticket-cta h2 {
  font-family: Anton, Impact, sans-serif;
  text-transform: uppercase;
  font-size: clamp(2.7rem, 7vw, 5.8rem);
  line-height: 0.95;
  margin: 0;
  color: var(--purple-deep);
}
.button-dark {
  background: var(--purple-deep);
  border-color: var(--purple-deep);
  color: white;
}
.practical {
  padding: 6rem 0;
  background: var(--cream);
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.section-heading .display {
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  margin-bottom: 0;
}
.practical-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.practical-grid article {
  background: white;
  border-top: 6px solid var(--yellow);
  padding: 1.5rem;
  border-radius: 0 0 22px 22px;
  box-shadow: 0 16px 38px rgba(30, 8, 46, 0.08);
}
.practical-grid h3 {
  font-size: 1.55rem;
  margin-top: 1rem;
}
.practical-grid p {
  font-size: 0.95rem;
  line-height: 1.55;
  font-weight: 500;
}
.practical-grid a {
  color: var(--purple);
  font-weight: 900;
}
.info-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--purple-deep);
  color: var(--yellow);
  font-weight: 900;
  font-size: 1rem;
}
.site-footer {
  position: relative;
  background: var(--purple-deep);
  padding: 5rem 0 2.2rem;
  border-top: 12px solid var(--yellow);
}
.footer-main {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 3.5rem;
}
.footer-punch span {
  display: block;
  color: var(--yellow);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
}
.footer-punch strong {
  display: block;
  font-family: Anton, Impact, sans-serif;
  text-transform: uppercase;
  font-size: clamp(3.2rem, 8vw, 7rem);
  line-height: 1;
  margin: 0.12em 0 0.15em;
}
.footer-punch p {
  margin: 0;
  color: #d8ccdd;
  font-weight: 600;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.17);
  padding-top: 1.7rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.footer-links {
  align-items: center;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  font-size: 0.9rem;
}
.footer-links a:hover {
  color: var(--yellow);
}
.footer-links a span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  color: var(--yellow);
}
.footer-links .social-icon {
  width: 44px;
  height: 44px;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  color: var(--yellow);
}
.social-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}
.social-icon[href*="instagram"] svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}
.social-icon[href*="instagram"] .instagram-dot {
  fill: currentColor;
  stroke: none;
}
.powered img {
  width: 76px;
  filter: brightness(0) invert(1);
  opacity: 0.88;
}
.faq-list summary {
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}
.faq-body {
  font-weight: 500;
}

@media (max-width: 900px) {
  .practical-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 760px) {
  .intro {
    padding: 5.5rem 0 4.5rem;
  }
  .lead {
    font-size: 1.05rem;
  }
  .day-section {
    padding: 4.5rem 0;
  }
  .day-copy-grid {
    grid-template-columns: 1fr;
  }
  .ticket-cta-inner,
  .section-heading,
  .footer-main,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
  .practical {
    padding: 4.5rem 0;
  }
  .practical-grid {
    grid-template-columns: 1fr;
  }
  .footer-main {
    padding-bottom: 2.5rem;
  }
  .footer-punch strong {
    font-size: 3.55rem;
  }
  .site-footer {
    padding-top: 3.7rem;
  }
  .footer-links {
    width: 100%;
    gap: clamp(0.65rem, 3.2vw, 1rem);
    justify-content: space-between;
  }
  .footer-links a {
    font-size: clamp(0.78rem, 3.6vw, 0.9rem);
  }
  .powered {
    margin-top: 0.25rem;
  }
}
