@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,500;0,600;0,700;0,800;0,900;1,700&family=Cinzel:wght@700;800;900&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --ink: #07030b;
  --ink-2: #0d0614;
  --panel: #12091a;
  --white: #fffdf8;
  --muted: #c9bfd1;
  --purple: #b23cff;
  --purple-deep: #6f16c4;
  --orange: #ff6a00;
  --lime: #b7ff00;
  --line: rgba(255,255,255,.16);
  --header-h: 86px;
  --max: 1500px;
  --serif: "Cinzel", Georgia, serif;
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --sans: "Inter", Arial, sans-serif;
  --shadow: 0 30px 90px rgba(0,0,0,.42);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  min-width: 320px;
  color: var(--white);
  background:
    radial-gradient(circle at 20% 15%, rgba(119,21,180,.12), transparent 28rem),
    linear-gradient(180deg, #07030b, #0b0410 50%, #050207);
  font-family: var(--sans);
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 999;
  transform: translateY(-160%);
  padding: .8rem 1rem;
  background: var(--lime);
  color: #07030b;
  font-weight: 800;
}
.skip-link:focus { transform: translateY(0); }

.site-shell { position: relative; overflow: clip; }
.announcement-bar {
  position: fixed;
  z-index: 60;
  width:100%;
  background: #08030d;
  border-bottom: 1px solid rgba(183,255,0,.22);
  color: #e9dff0;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.announcement-inner {
  min-height: 36px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: .78rem;
}
.announcement-inner a {
  margin-left: auto;
  color: var(--lime);
  transition: color .2s ease;
}
.announcement-inner a:hover { color: #fff; }
.announcement-dot { width: 4px; height: 4px; background: var(--orange); border-radius: 50%; box-shadow: 0 0 12px var(--orange); }

.site-header {
  position: fixed;
  z-index: 60;
  top: 36px;
  left: 0;
  right: 0;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(18px, 3vw, 52px);
  border-bottom: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(5,2,8,.9), rgba(7,3,11,.48));
  backdrop-filter: blur(18px) saturate(140%);
  transition: background .25s ease, height .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled {
  height: 72px;
  background: rgba(5,2,8,.94);
  box-shadow: 0 14px 45px rgba(0,0,0,.35);
}
.brand { display: flex; align-items: center; gap: 12px; min-width: 250px; }
.brand img { width: 62px; height: 62px; object-fit: contain; filter: drop-shadow(0 0 14px rgba(175,52,255,.34)); }
.brand span { display: flex; flex-direction: column; line-height: 1; }
.brand strong { font-family: var(--display); font-size: 1.28rem; letter-spacing: .06em; text-transform: uppercase; }
.brand small { margin-top: 5px; color: #c7b8cd; font-family: var(--display); font-size: .69rem; letter-spacing: .16em; text-transform: uppercase; }

.primary-nav { display: flex; align-items: center; justify-content: flex-end; gap: clamp(12px, 1.5vw, 28px); }
.primary-nav > a,
.nav-group > button {
  position: relative;
  padding: 31px 0;
  border: 0;
  background: none;
  font-family: var(--display);
  font-size: .92rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  cursor: pointer;
}
.primary-nav > a::after,
.nav-group > button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 24px;
  height: 2px;
  background: linear-gradient(90deg,var(--purple),var(--orange));
  transition: right .22s ease;
}
.primary-nav > a:hover::after,
.nav-group > button:hover::after,
.nav-group > button[aria-expanded="true"]::after { right: 0; }
.nav-group { position: relative; }
.nav-group > button span { color: var(--lime); margin-left: 4px; }
.nav-menu {
  position: absolute;
  top: calc(100% - 8px);
  right: -20px;
  width: 255px;
  padding: 12px;
  background: rgba(10,4,15,.98);
  border: 1px solid rgba(178,60,255,.28);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.nav-group:hover .nav-menu,
.nav-group:focus-within .nav-menu,
.nav-group > button[aria-expanded="true"] + .nav-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-menu a {
  display: block;
  padding: 13px 14px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: #e8ddec;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.nav-menu a:last-child { border-bottom: 0; }
.nav-menu a:hover { color: var(--lime); background: rgba(183,255,0,.05); }
.primary-nav .nav-ticket {
  padding: 13px 18px;
  border: 1px solid var(--lime);
  color: var(--lime);
  clip-path: polygon(8px 0,100% 0,100% calc(100% - 8px),calc(100% - 8px) 100%,0 100%,0 8px);
}
.primary-nav .nav-ticket::after { display: none; }
.primary-nav .nav-ticket:hover { color: var(--ink); background: var(--lime); box-shadow: 0 0 30px rgba(183,255,0,.28); }
.nav-toggle { display: none; }

.full-bleed { position: relative; width: 100%; overflow: hidden; }
.hero {
  min-height: min(980px, 100svh);
  padding: calc(var(--header-h) + 110px) 24px 70px;
  display: grid;
  place-items: center;
  isolation: isolate;
  background: #09030e;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -4;
  background-image: url('/assets/img/hero-festival.webp');
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(180deg, rgba(3,1,6,.32), rgba(5,2,9,.05) 42%, rgba(5,2,9,.93) 100%),
    radial-gradient(circle at center, transparent 0, rgba(6,2,10,.18) 45%, rgba(4,1,7,.7) 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.35), transparent 78%);
}
.hero-scan {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 0, rgba(183,255,0,.035) 48%, transparent 52%);
  background-size: 100% 180px;
  animation: scan 7s linear infinite;
  opacity: .55;
}
@keyframes scan { from { background-position-y: -180px; } to { background-position-y: 180px; } }
.hero-content { width: min(980px, 96vw); text-align: center; display: flex; flex-direction: column; align-items: center; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--lime);
  font-family: var(--display);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.hero .eyebrow { padding: 9px 14px; border: 1px solid rgba(183,255,0,.35); background: rgba(6,3,10,.46); }
.hero-logo { width: min(690px, 74vw); max-height: 58vh; object-fit: contain; margin: -20px auto -24px; filter: drop-shadow(0 35px 60px rgba(0,0,0,.48)) drop-shadow(0 0 24px rgba(168,42,255,.2)); }
.hero-meta { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px 26px; font-family: var(--display); font-size: clamp(1rem, 2vw, 1.35rem); font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.hero-meta span { position: relative; }
.hero-meta span + span::before { content: ""; position: absolute; left: -15px; top: 50%; width: 5px; height: 5px; transform: translateY(-50%); background: var(--orange); border-radius: 50%; box-shadow: 0 0 12px var(--orange); }
.hero-copy { max-width: 730px; margin: 18px auto 26px; color: #e8dee9; line-height: 1.7; font-size: clamp(.98rem, 1.4vw, 1.16rem); text-shadow: 0 2px 16px rgba(0,0,0,.8); }
.hero-actions, .ticket-actions, .lineup-actions { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 12px; }
.button {
  min-height: 52px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  font-family: var(--display);
  font-size: .95rem;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
  clip-path: polygon(10px 0,100% 0,100% calc(100% - 10px),calc(100% - 10px) 100%,0 100%,0 10px);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: #08030d; background: linear-gradient(100deg, var(--lime), #d9ff62); box-shadow: 0 15px 38px rgba(183,255,0,.16); }
.button-primary:hover { box-shadow: 0 18px 46px rgba(183,255,0,.3); }
.button-ghost { border-color: rgba(255,255,255,.42); background: rgba(5,2,8,.24); backdrop-filter: blur(10px); }
.button-ghost:hover { border-color: var(--purple); background: rgba(178,60,255,.15); }
.button-ghost-dark { border-color: rgba(255,255,255,.22); background: rgba(255,255,255,.04); }
.button-ghost-dark:hover { border-color: var(--orange); }
.scroll-cue { position: absolute; bottom: 28px; left: 50%; width: 30px; height: 52px; border: 1px solid rgba(255,255,255,.4); border-radius: 20px; transform: translateX(-50%); }
.scroll-cue span { position: absolute; top: 10px; left: 50%; width: 4px; height: 10px; margin-left: -2px; background: var(--lime); border-radius: 4px; animation: scrollDot 1.8s ease-in-out infinite; }
@keyframes scrollDot { 0%,100% { transform: translateY(0); opacity: .4; } 50% { transform: translateY(19px); opacity: 1; } }

.signal-strip {
  position: relative;
  z-index: 4;
  margin-top: -1px;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  border-top: 1px solid rgba(178,60,255,.32);
  border-bottom: 1px solid rgba(255,106,0,.25);
  background: #09040e;
}
.signal-strip div { min-height: 118px; padding: 20px; display: flex; align-items: center; justify-content: center; gap: 12px; border-right: 1px solid rgba(255,255,255,.11); }
.signal-strip div:last-child { border-right: 0; }
.signal-strip strong { font-family: var(--display); font-size: clamp(2.5rem, 4vw, 4.7rem); font-weight: 900; line-height: .8; color: var(--white); text-shadow: 0 0 20px rgba(178,60,255,.25); }
.signal-strip span { max-width: 110px; color: #c8bdcc; font-family: var(--display); font-size: .8rem; font-weight: 700; line-height: 1.2; letter-spacing: .1em; text-transform: uppercase; }

.section { padding: clamp(80px, 9vw, 150px) clamp(20px, 4vw, 64px); }
.section-heading { max-width: 1180px; margin: 0 auto 58px; display: grid; grid-template-columns: 1.35fr .65fr; gap: 50px; align-items: end; }
.section-heading .eyebrow { grid-column: 1 / -1; margin-bottom: -28px; }
.section-heading h2,
.lineup-content h2,
.ticket-copy h2,
.overview-content h2,
.join-copy h2,
.newsletter-inner h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.2rem, 7vw, 7.8rem);
  font-weight: 900;
  line-height: .84;
  letter-spacing: -.035em;
  text-transform: uppercase;
}
.section-heading h2 em,
.ticket-copy h2 em { color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.75); font-style: normal; }
.section-heading > p:last-child { margin: 0 0 6px; color: var(--muted); font-size: 1.03rem; line-height: 1.8; }

.experience-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1.12fr .88fr; grid-template-rows: repeat(2, minmax(420px, 1fr)); gap: 18px; }
.experience-card { position: relative; min-height: 420px; overflow: hidden; background: #100718; border: 1px solid rgba(255,255,255,.14); box-shadow: 0 30px 90px rgba(0,0,0,.3); isolation: isolate; }
.experience-card:first-child { grid-row: 1 / 3; }
.card-media { position: absolute; inset: 0; z-index: -3; background-size: cover; background-position: center; transition: transform .8s cubic-bezier(.2,.7,.1,1); }
.experience-card:hover .card-media { transform: scale(1.045); }
.experience-music .card-media { background-image: url('/assets/img/music-stage.webp'); }
.experience-carnival .card-media { background-image: url('/assets/img/midway-market.webp'); }
.experience-impact .card-media { background-image: url('/assets/img/vip-impact.webp'); }
.experience-card::before { content: ""; position: absolute; inset: 0; z-index: -2; background: linear-gradient(180deg, rgba(4,2,7,.05), rgba(4,2,7,.22) 40%, rgba(4,2,7,.96) 100%); }
.experience-card::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 4px; z-index: 2; background: linear-gradient(90deg,var(--purple),var(--orange),var(--lime)); transform: scaleX(.18); transform-origin: left; transition: transform .45s ease; }
.experience-card:hover::after { transform: scaleX(1); }
.card-content { position: absolute; left: 0; right: 0; bottom: 0; padding: clamp(28px,4vw,56px); }
.card-number { position: absolute; right: 30px; bottom: 20px; color: rgba(255,255,255,.1); font-family: var(--display); font-size: 8rem; font-weight: 900; line-height: .75; }
.card-content h3 { position: relative; z-index: 1; margin: 0; font-family: var(--display); font-size: clamp(2.4rem,4.4vw,5rem); line-height: .88; text-transform: uppercase; }
.card-content p:not(.eyebrow) { position: relative; z-index: 1; max-width: 590px; margin: 16px 0 20px; color: #ddd2e0; line-height: 1.65; }
.card-content a { position: relative; z-index: 1; color: var(--lime); font-family: var(--display); font-size: .92rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }

.lineup-teaser { min-height: 860px; display: flex; align-items: center; padding: 100px clamp(22px, 6vw, 110px); isolation: isolate; }
.lineup-bg { position: absolute; inset: 0; z-index: -3; background: url('/assets/img/music-stage.webp') center / cover no-repeat; }
.lineup-teaser::before { content: ""; position: absolute; inset: 0; z-index: -2; background: linear-gradient(90deg, rgba(5,2,9,.97) 0, rgba(5,2,9,.9) 42%, rgba(5,2,9,.28) 72%, rgba(5,2,9,.7) 100%), linear-gradient(180deg, rgba(5,2,9,.6), transparent 50%, rgba(5,2,9,.86)); }
.lineup-content { width: min(800px, 100%); }
.date-lockup { display: inline-flex; align-items: flex-end; gap: 10px; margin-bottom: 16px; }
.date-lockup span { padding-bottom: 8px; color: var(--orange); font-family: var(--display); font-size: 2rem; font-weight: 900; letter-spacing: .08em; writing-mode: vertical-rl; transform: rotate(180deg); }
.date-lockup strong { font-family: var(--display); font-size: clamp(7rem,15vw,14rem); line-height: .7; letter-spacing: -.07em; }
.lineup-content h2 { font-size: clamp(3.5rem,7vw,7.2rem); }
.lineup-content p { max-width: 670px; margin: 24px 0 30px; color: #ddd0e1; line-height: 1.75; }
.lineup-actions { justify-content: flex-start; }
.text-link { color: var(--white); font-family: var(--display); font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.text-link:hover { color: var(--lime); }
.ghost-type { position: absolute; left: -1%; right: -1%; bottom: 22px; color: rgba(255,255,255,.055); font-family: var(--display); font-size: clamp(4rem,10vw,11rem); font-weight: 900; letter-spacing: -.03em; white-space: nowrap; text-align: center; }

.ticket-section { background: linear-gradient(180deg,#0b0410,#100618); }
.ticket-panel { max-width: 1400px; min-height: 630px; margin: 0 auto; display: grid; grid-template-columns: 1.05fr .95fr; overflow: hidden; background: linear-gradient(130deg,rgba(255,255,255,.055),rgba(255,255,255,.01)); border: 1px solid rgba(255,255,255,.14); box-shadow: var(--shadow); }
.ticket-copy { padding: clamp(40px,6vw,90px); display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.ticket-copy h2 { font-size: clamp(3.7rem,6vw,7.2rem); }
.ticket-copy > p:not(.eyebrow) { max-width: 660px; margin: 26px 0 30px; color: var(--muted); line-height: 1.8; }
.ticket-actions { justify-content: flex-start; }
.ticket-visual { position: relative; min-height: 540px; display: grid; place-items: center; overflow: hidden; background: radial-gradient(circle at center, rgba(178,60,255,.25), transparent 34%), linear-gradient(145deg,#130522,#060209 65%); }
.ticket-visual::before { content: ""; position: absolute; inset: 7%; border: 1px solid rgba(183,255,0,.25); clip-path: polygon(8% 0,92% 0,100% 8%,100% 92%,92% 100%,8% 100%,0 92%,0 8%); }
.ticket-visual img { position: relative; z-index: 2; width: min(540px,84%); filter: drop-shadow(0 30px 50px rgba(0,0,0,.52)); animation: floatLogo 6s ease-in-out infinite; }
@keyframes floatLogo { 0%,100% { transform: translateY(-8px); } 50% { transform: translateY(10px); } }
.ticket-orbit { position: absolute; border: 1px solid rgba(178,60,255,.35); border-radius: 50%; }
.orbit-one { width: 76%; aspect-ratio: 1; animation: spin 18s linear infinite; }
.orbit-two { width: 52%; aspect-ratio: 1; border-color: rgba(255,106,0,.35); animation: spin 12s linear infinite reverse; }
.ticket-orbit::before,
.ticket-orbit::after { content: ""; position: absolute; width: 12px; height: 12px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 24px var(--lime); }
.ticket-orbit::before { top: -6px; left: 50%; }
.ticket-orbit::after { bottom: -6px; right: 28%; background: var(--orange); box-shadow: 0 0 24px var(--orange); }
@keyframes spin { to { transform: rotate(360deg); } }
.ticket-code { position: absolute; left: 30px; bottom: 28px; color: rgba(255,255,255,.42); font-family: var(--display); font-weight: 800; letter-spacing: .22em; writing-mode: vertical-rl; }

.overview-section { min-height: 920px; padding: 110px clamp(22px,5vw,80px); display: flex; align-items: center; justify-content: flex-end; isolation: isolate; }
.overview-bg { position: absolute; inset: 0; z-index: -3; background: url('/assets/img/festival-overview.webp') center / cover no-repeat; }
.overview-section::before { content: ""; position: absolute; inset: 0; z-index: -2; background: linear-gradient(90deg, rgba(5,2,9,.28), rgba(5,2,9,.72) 47%, rgba(5,2,9,.97) 100%), linear-gradient(180deg, rgba(5,2,9,.35), rgba(5,2,9,.82)); }
.overview-content { width: min(760px,100%); }
.overview-content h2 { font-size: clamp(3.7rem,6vw,7rem); }
.overview-list { margin-top: 36px; border-top: 1px solid rgba(255,255,255,.18); }
.overview-list a { display: grid; grid-template-columns: 48px 1fr auto; gap: 18px; align-items: center; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,.16); transition: padding-left .2s ease, background .2s ease; }
.overview-list a:hover { padding-left: 14px; background: linear-gradient(90deg,rgba(178,60,255,.12),transparent); }
.overview-list span { color: var(--orange); font-family: var(--display); font-weight: 900; }
.overview-list strong { font-family: var(--display); font-size: 1.3rem; letter-spacing: .04em; text-transform: uppercase; }
.overview-list em { color: #c9bdcd; font-size: .88rem; font-style: normal; }

.join-section { background: #09040e; }
.join-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.join-card { position: relative; min-height: 760px; overflow: hidden; border: 1px solid rgba(255,255,255,.14); background: #0e0615; isolation: isolate; }
.join-image { position: absolute; inset: 0; z-index: -3; background-size: cover; background-position: center; transition: transform .9s cubic-bezier(.2,.7,.1,1); }
.join-vendors .join-image { background-image: url('/assets/img/midway-market.webp'); }
.join-team .join-image { background-image: url('/assets/img/vip-impact.webp'); }
.join-card:hover .join-image { transform: scale(1.04); }
.join-card::before { content: ""; position: absolute; inset: 0; z-index: -2; background: linear-gradient(180deg,rgba(5,2,9,.08),rgba(5,2,9,.24) 42%,rgba(5,2,9,.98) 100%); }
.join-copy { position: absolute; left: 0; right: 0; bottom: 0; padding: clamp(32px,5vw,68px); }
.join-copy h2 { font-size: clamp(3.1rem,5vw,6rem); }
.join-copy > p:not(.eyebrow) { max-width: 580px; margin: 18px 0 26px; color: #d7cbd9; line-height: 1.7; }

.newsletter-section { padding: 70px clamp(20px,4vw,64px); background: linear-gradient(110deg,#771bd2,#2e0a54 55%,#14061f); border-top: 1px solid rgba(255,255,255,.2); border-bottom: 1px solid rgba(255,255,255,.2); }
.newsletter-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr .78fr; gap: 40px; align-items: center; }
.newsletter-inner h2 { max-width: 850px; font-size: clamp(3rem,5.7vw,6.4rem); }
.newsletter-form { position: relative; display: grid; grid-template-columns: 1fr auto; align-items: stretch; }
.newsletter-form input[type="email"] { min-width: 0; height: 58px; padding: 0 18px; border: 1px solid rgba(255,255,255,.38); border-right: 0; background: rgba(5,2,9,.42); color: #fff; outline: none; }
.newsletter-form input[type="email"]:focus { border-color: var(--lime); box-shadow: inset 0 0 0 1px var(--lime); }
.newsletter-form button { min-height: 58px; padding: 0 22px; border: 0; background: var(--lime); color: #09040e; font-family: var(--display); font-weight: 900; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; }
.newsletter-form button:hover { background: #d7ff73; }
.newsletter-form button:disabled { opacity: .6; cursor: wait; }
.form-status { position: absolute; left: 0; top: calc(100% + 8px); margin: 0; font-size: .82rem; }
.hp-field { position: absolute !important; left: -9999px !important; }

.site-footer { position: relative; padding: 82px clamp(20px,4vw,64px) 28px; background: #050207; overflow: hidden; }
.footer-art { position: absolute; inset: 0; background: radial-gradient(circle at 10% 50%,rgba(178,60,255,.12),transparent 30rem), radial-gradient(circle at 90% 20%,rgba(255,106,0,.08),transparent 26rem); pointer-events: none; }
.footer-grid { position: relative; max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1.6fr repeat(3,.65fr); gap: clamp(26px,5vw,78px); }
.footer-brand img { width: 190px; margin: -42px 0 -20px; }
.footer-brand p { max-width: 430px; color: #aa9faf; line-height: 1.7; }
.footer-grid h2 { margin: 0 0 18px; color: var(--lime); font-family: var(--display); font-size: .9rem; letter-spacing: .18em; text-transform: uppercase; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; gap: 12px; }
.footer-grid a { color: #d5cad8; font-family: var(--display); font-weight: 700; letter-spacing: .035em; }
.footer-grid a:hover { color: var(--white); }
.footer-bottom { position: relative; max-width: var(--max); margin: 62px auto 0; padding-top: 18px; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.12); color: #887d8e; font-family: var(--display); font-size: .77rem; letter-spacing: .1em; text-transform: uppercase; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1120px) {
  :root { --header-h: 74px; }
  .announcement-inner { justify-content: flex-start; }
  .announcement-inner span:nth-of-type(2), .announcement-dot { display: none; }
  .site-header { padding: 0 20px; }
  .brand { min-width: 0; }
  .brand img { width: 54px; height: 54px; }
  .brand strong { font-size: 1.1rem; }
  .brand small { font-size: .61rem; }
  .nav-toggle { display: flex; width: 48px; height: 48px; padding: 13px; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.03); flex-direction: column; justify-content: center; gap: 5px; cursor: pointer; }
  .nav-toggle span:not(.sr-only) { width: 100%; height: 2px; background: #fff; transition: transform .2s ease, opacity .2s ease; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .primary-nav { position: fixed; top: calc(36px + var(--header-h)); left: 0; right: 0; height: calc(100svh - 36px - var(--header-h)); padding: 28px 22px 40px; display: block; overflow-y: auto; background: rgba(5,2,8,.98); transform: translateX(102%); transition: transform .3s ease; }
  .primary-nav.is-open { transform: translateX(0); }
  .primary-nav > a, .nav-group > button { width: 100%; padding: 18px 0; display: flex; justify-content: space-between; text-align: left; border-bottom: 1px solid rgba(255,255,255,.12); font-size: 1.2rem; }
  .primary-nav > a::after, .nav-group > button::after { bottom: -1px; }
  .nav-menu { position: static; width: 100%; padding: 0 0 0 16px; display: none; opacity: 1; visibility: visible; transform: none; background: transparent; border: 0; box-shadow: none; }
  .nav-group > button[aria-expanded="true"] + .nav-menu { display: block; }
  .nav-menu a { padding: 14px 0; }
  .primary-nav .nav-ticket { margin-top: 22px; padding: 17px 18px; justify-content: center; border: 1px solid var(--lime); }
  .section-heading { grid-template-columns: 1fr; gap: 24px; }
  .section-heading .eyebrow { margin-bottom: 0; }
  .ticket-panel, .newsletter-inner { grid-template-columns: 1fr; }
  .ticket-visual { min-height: 500px; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 800px) {
  .announcement-inner { padding: 0 12px; font-size: .66rem; }
  .announcement-inner a { margin-left: auto; }
  .brand span { display: none; }
  .hero { min-height: 900px; padding-top: 142px; }
  .hero-logo { width: min(640px,92vw); margin: -8px auto -12px; }
  .hero-meta { flex-direction: column; gap: 6px; }
  .hero-meta span + span::before { display: none; }
  .hero-copy { max-width: 560px; }
  .signal-strip { grid-template-columns: 1fr 1fr; }
  .signal-strip div:nth-child(2) { border-right: 0; }
  .signal-strip div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.11); }
  .section { padding-left: 18px; padding-right: 18px; }
  .section-heading h2, .lineup-content h2, .ticket-copy h2, .overview-content h2, .join-copy h2, .newsletter-inner h2 { line-height: .9; }
  .experience-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .experience-card:first-child { grid-row: auto; }
  .experience-card { min-height: 600px; }
  .experience-card:not(:first-child) { min-height: 520px; }
  .lineup-teaser { min-height: 810px; padding-left: 20px; padding-right: 20px; }
  .lineup-teaser::before { background: linear-gradient(90deg,rgba(5,2,9,.95),rgba(5,2,9,.66)), linear-gradient(180deg,rgba(5,2,9,.55),transparent 40%,rgba(5,2,9,.92)); }
  .ghost-type { display: none; }
  .ticket-copy { padding: 48px 24px; }
  .ticket-visual { min-height: 440px; }
  .overview-section { min-height: 860px; padding: 80px 20px; justify-content: flex-start; }
  .overview-section::before { background: linear-gradient(90deg,rgba(5,2,9,.84),rgba(5,2,9,.84)), linear-gradient(180deg,rgba(5,2,9,.42),rgba(5,2,9,.92)); }
  .overview-list a { grid-template-columns: 38px 1fr; }
  .overview-list em { grid-column: 2; }
  .join-grid { grid-template-columns: 1fr; }
  .join-card { min-height: 680px; }
  .newsletter-form { grid-template-columns: 1fr; gap: 10px; }
  .newsletter-form input[type="email"] { border-right: 1px solid rgba(255,255,255,.38); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 520px) {
  .announcement-inner span:first-child { display: none; }
  .announcement-inner a { margin: 0 auto; }
  .hero { min-height: 830px; padding-left: 14px; padding-right: 14px; }
  .hero .eyebrow { font-size: .67rem; letter-spacing: .15em; }
  .hero-actions, .ticket-actions { width: 100%; }
  .hero-actions .button, .ticket-actions .button { width: 100%; }
  .signal-strip div { min-height: 98px; padding: 14px; flex-direction: column; gap: 5px; text-align: center; }
  .signal-strip strong { font-size: 2.65rem; }
  .signal-strip span { max-width: none; font-size: .68rem; }
  .experience-card { min-height: 560px; }
  .card-content { padding: 28px 22px; }
  .card-number { font-size: 5.5rem; }
  .lineup-teaser { min-height: 760px; }
  .date-lockup strong { font-size: 8rem; }
  .lineup-actions { align-items: flex-start; }
  .ticket-visual { min-height: 360px; }
  .ticket-code { display: none; }
  .overview-list a { gap: 10px; }
  .join-card { min-height: 620px; }
  .join-copy { padding: 30px 22px; }
  .newsletter-section { padding-top: 55px; padding-bottom: 70px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

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

/* ===== HWFEST THEME + CONTRAST CORRECTION ===== */
:root {
  --white: #ffffff;
  --muted: #eee7f2;
  --purple: #a72dff;
  --purple-hot: #d55cff;
  --orange: #ff7417;
  --orange-hot: #ffad32;
  --lime: #b9ff19;
  --header-h: 82px;
}

body {
  color: #ffffff;
  background:
    radial-gradient(circle at 15% 10%, rgba(168,45,255,.24), transparent 32rem),
    radial-gradient(circle at 90% 38%, rgba(255,116,23,.12), transparent 30rem),
    linear-gradient(180deg, #08020d 0%, #10031b 46%, #050108 100%);
}

body, p, li, label, input, button { color: #ffffff; }
main p:not(.eyebrow), .site-footer p { color: #eee7f2; }

.announcement-bar {
  background: linear-gradient(90deg, #25053d, #09020e 38%, #170624 74%, #321000);
  border-bottom: 1px solid rgba(185,255,25,.56);
  box-shadow: 0 0 30px rgba(167,45,255,.18);
}
.announcement-inner { color: #ffffff; }
.announcement-inner a { color: var(--lime); text-shadow: 0 0 16px rgba(185,255,25,.34); }

.site-header {
  height: var(--header-h);
  background:
    linear-gradient(180deg, rgba(10,2,16,.98), rgba(10,2,16,.90)),
    linear-gradient(90deg, rgba(167,45,255,.15), transparent 45%, rgba(255,116,23,.12));
  border-bottom: 1px solid rgba(213,92,255,.48);
  box-shadow: 0 16px 42px rgba(0,0,0,.36), inset 0 -1px 0 rgba(255,116,23,.14);
}
.site-header.is-scrolled {
  background: rgba(8,2,13,.98);
  border-bottom-color: rgba(185,255,25,.36);
}
.brand { min-width: 220px; }
.brand img { width: 68px; height: 68px; filter: drop-shadow(0 0 18px rgba(167,45,255,.52)); }
.brand strong { color: #ffffff; text-shadow: 0 0 16px rgba(167,45,255,.32); }
.brand small { color: #f2e8f7; }

.primary-nav { gap: clamp(14px,1.9vw,34px); }
.primary-nav > a {
  color: #ffffff;
  padding: 31px 0 28px;
  font-size: .96rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-shadow: 0 2px 10px rgba(0,0,0,.8);
}
.primary-nav > a::after {
  bottom: 20px;
  height: 3px;
  background: linear-gradient(90deg, var(--purple-hot), var(--orange), var(--lime));
  box-shadow: 0 0 16px rgba(213,92,255,.5);
}
.primary-nav > a:hover { color: var(--lime); }
.primary-nav .nav-home { color: #ffffff; }
.primary-nav .nav-ticket {
  padding: 13px 18px;
  color: #09020e;
  background: linear-gradient(105deg, var(--lime), #e3ff7a);
  border: 1px solid #dfff75;
  box-shadow: 0 0 22px rgba(185,255,25,.24);
}
.primary-nav .nav-ticket:hover {
  color: #09020e;
  background: #ffffff;
  box-shadow: 0 0 30px rgba(185,255,25,.48);
}

.hero { background: #0b0211; }
.hero::before {
  background:
    linear-gradient(180deg, rgba(4,1,7,.10), rgba(7,1,12,.04) 38%, rgba(7,1,12,.78) 100%),
    radial-gradient(circle at center, transparent 0, rgba(10,2,17,.08) 52%, rgba(5,1,8,.42) 100%);
}
.hero::after { opacity: .26; }
.hero .eyebrow {
  color: #ffffff;
  border-color: rgba(185,255,25,.75);
  background: rgba(15,3,23,.78);
  box-shadow: 0 0 22px rgba(167,45,255,.25);
}
.hero-meta { color: #ffffff; text-shadow: 0 3px 16px #000; }
.hero-copy { color: #ffffff; font-weight: 600; text-shadow: 0 3px 18px #000; }

.signal-strip {
  background: linear-gradient(90deg, #210737, #100319 45%, #271006);
  border-top-color: rgba(213,92,255,.65);
  border-bottom-color: rgba(255,116,23,.55);
  box-shadow: inset 0 0 38px rgba(167,45,255,.08);
}
.signal-strip strong { color: #ffffff; text-shadow: 0 0 22px rgba(213,92,255,.55); }
.signal-strip span { color: #f5eff7; }

.intro-section {
  position: relative;
  background:
    radial-gradient(circle at 12% 22%, rgba(167,45,255,.19), transparent 30rem),
    radial-gradient(circle at 92% 75%, rgba(255,116,23,.08), transparent 28rem),
    linear-gradient(180deg,#09020f,#10041a 65%,#08020d);
}
.eyebrow { color: var(--lime); text-shadow: 0 0 14px rgba(185,255,25,.28); }
.section-heading h2,
.lineup-content h2,
.ticket-copy h2,
.overview-content h2,
.join-copy h2,
.newsletter-inner h2 {
  color: #ffffff;
  font-family: var(--serif);
  letter-spacing: -.045em;
  text-shadow: 0 4px 0 rgba(53,10,76,.65), 0 0 28px rgba(167,45,255,.28);
}
.section-heading h2 em,
.ticket-copy h2 em {
  color: var(--orange-hot);
  -webkit-text-stroke: 0;
  text-shadow: 0 2px 0 #5c2100, 0 0 26px rgba(255,116,23,.36);
}
.section-heading > p:last-child { color: #f1eaf3; font-weight: 500; }

.experience-card {
  border-color: rgba(213,92,255,.36);
  box-shadow: 0 30px 90px rgba(0,0,0,.42), inset 0 0 45px rgba(167,45,255,.05);
}
.experience-card::before {
  background: linear-gradient(180deg, rgba(4,1,7,.02), rgba(4,1,7,.08) 35%, rgba(7,1,12,.88) 77%, rgba(12,2,18,.98) 100%);
}
.card-content h3 {
  color: #ffffff;
  font-family: var(--serif);
  text-shadow: 0 3px 0 rgba(50,7,72,.72), 0 0 24px rgba(167,45,255,.30);
}
.card-content p:not(.eyebrow) { color: #ffffff; font-weight: 500; text-shadow: 0 2px 12px #000; }
.card-content a { color: var(--lime); }

.lineup-teaser::before {
  background: linear-gradient(90deg, rgba(7,1,12,.94) 0, rgba(7,1,12,.80) 39%, rgba(7,1,12,.18) 75%, rgba(7,1,12,.52) 100%), linear-gradient(180deg, rgba(7,1,12,.32), transparent 50%, rgba(7,1,12,.74));
}
.date-lockup strong { color: #ffffff; text-shadow: 0 0 34px rgba(167,45,255,.45); }
.lineup-content p { color: #ffffff; font-weight: 500; }
.text-link { color: #ffffff; }

.ticket-section {
  background:
    radial-gradient(circle at 82% 42%,rgba(167,45,255,.20),transparent 28rem),
    linear-gradient(180deg,#0a0210,#160522 58%,#09020e);
}
.ticket-panel { border-color: rgba(213,92,255,.44); background: linear-gradient(130deg,rgba(73,17,106,.35),rgba(16,3,24,.76)); }
.ticket-copy > p:not(.eyebrow) { color: #f2eaf5; }
.ticket-visual { background: radial-gradient(circle at center, rgba(167,45,255,.34), transparent 37%), linear-gradient(145deg,#26063d,#07010c 66%); }

.overview-section::before {
  background: linear-gradient(90deg, rgba(6,1,10,.12), rgba(6,1,10,.52) 44%, rgba(6,1,10,.92) 100%), linear-gradient(180deg, rgba(6,1,10,.18), rgba(6,1,10,.68));
}
.overview-list { border-top-color: rgba(255,255,255,.35); }
.overview-list a { border-bottom-color: rgba(255,255,255,.28); }
.overview-list strong { color: #ffffff; }
.overview-list em { color: #f1e8f4; }

.join-card { border-color: rgba(213,92,255,.34); }
.join-card::before { background: linear-gradient(180deg,rgba(5,1,9,.02),rgba(5,1,9,.12) 36%,rgba(7,1,12,.91) 78%,rgba(8,1,13,.99) 100%); }
.join-copy > p:not(.eyebrow) { color: #ffffff; font-weight: 500; }

.newsletter-section {
  background:
    radial-gradient(circle at 8% 50%,rgba(213,92,255,.34),transparent 24rem),
    linear-gradient(105deg,#6515ad,#2f0750 56%,#5c1b00);
}
.newsletter-inner h2 { color: #ffffff; }
.newsletter-form input[type="email"] { color: #ffffff; background: rgba(7,1,12,.66); }
.newsletter-form input[type="email"]::placeholder { color: #e7dce9; opacity: .9; }

.site-footer { background: linear-gradient(180deg,#08010c,#030105); }
.footer-brand p, .footer-grid a { color: #f0e8f2; }
.footer-grid h2 { color: var(--lime); }
.footer-bottom { color: #cfc3d3; }

.button-ghost, .button-ghost-dark { color: #ffffff; }
.button-ghost { background: rgba(9,2,14,.64); }

@media (max-width: 1120px) {
  .primary-nav {
    background:
      radial-gradient(circle at 85% 10%,rgba(255,116,23,.14),transparent 18rem),
      radial-gradient(circle at 10% 80%,rgba(167,45,255,.22),transparent 22rem),
      rgba(7,1,12,.99);
  }
  .primary-nav > a {
    color: #ffffff;
    border-bottom-color: rgba(255,255,255,.22);
    font-family: var(--serif);
    font-size: 1.35rem;
  }
  .primary-nav .nav-ticket { color: #09020e; }
}

@media (max-width: 800px) {
  .section-heading h2,
  .lineup-content h2,
  .ticket-copy h2,
  .overview-content h2,
  .join-copy h2,
  .newsletter-inner h2 { letter-spacing: -.035em; }
  .lineup-teaser::before { background: linear-gradient(90deg,rgba(7,1,12,.88),rgba(7,1,12,.52)), linear-gradient(180deg,rgba(7,1,12,.18),transparent 38%,rgba(7,1,12,.82)); }
  .overview-section::before { background: linear-gradient(90deg,rgba(7,1,12,.73),rgba(7,1,12,.73)), linear-gradient(180deg,rgba(7,1,12,.18),rgba(7,1,12,.78)); }
}


/* ===== COMPLETE INNER-PAGE SYSTEM ===== */
.inner-page-body {
  background:
    radial-gradient(circle at 12% 12%, rgba(167,45,255,.20), transparent 34rem),
    radial-gradient(circle at 88% 58%, rgba(255,116,23,.10), transparent 30rem),
    linear-gradient(180deg,#08020d 0%,#10031a 52%,#050108 100%);
}
.inner-page { position: relative; min-height: 100vh; }
.page-container { width: min(1320px, calc(100% - 48px)); margin: 0 auto; }

.page-hero {
  min-height: clamp(650px, 84svh, 920px);
  padding: calc(36px + var(--header-h) + 92px) 24px 86px;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  background: #08020d;
}
.page-hero-art {
  position: absolute;
  inset: 0;
  z-index: -4;
  background-image: var(--page-art);
  background-position: center;
  background-size: cover;
  transform: scale(1.025);
  filter: saturate(1.08) contrast(1.04);
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(5,1,9,.94) 0%, rgba(5,1,9,.76) 42%, rgba(5,1,9,.18) 77%, rgba(5,1,9,.40) 100%),
    linear-gradient(180deg, rgba(5,1,9,.34) 0%, rgba(5,1,9,.05) 42%, rgba(5,1,9,.88) 100%);
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 18% 74%, rgba(167,45,255,.26), transparent 33rem),
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: auto, 94px 94px, 94px 94px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.45), transparent 78%);
}
.page-hero-content {
  width: min(820px, 100%);
  margin-left: max(0px, calc((100vw - 1320px) / 2));
}
.page-hero-content h1 {
  margin: 0;
  max-width: 980px;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(3.4rem, 8.6vw, 8.9rem);
  line-height: .86;
  letter-spacing: -.055em;
  text-transform: uppercase;
  text-shadow: 0 5px 0 rgba(46,8,67,.68), 0 0 34px rgba(167,45,255,.28), 0 20px 70px rgba(0,0,0,.72);
}
.page-lead {
  max-width: 760px;
  margin: 24px 0 0;
  color: #fff;
  font-size: clamp(1rem, 1.6vw, 1.28rem);
  font-weight: 500;
  line-height: 1.72;
  text-shadow: 0 3px 18px #000;
}
.page-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.page-notice {
  position: relative;
  z-index: 4;
  border-top: 1px solid rgba(185,255,25,.55);
  border-bottom: 1px solid rgba(185,255,25,.35);
  background: linear-gradient(90deg, rgba(52,8,79,.96), rgba(12,2,19,.98) 52%, rgba(74,22,0,.88));
  box-shadow: 0 0 42px rgba(167,45,255,.15);
}
.page-notice .page-container {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding-top: 18px;
  padding-bottom: 18px;
}
.page-notice strong {
  flex: 0 0 auto;
  color: var(--lime);
  font-family: var(--display);
  font-size: .92rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.page-notice span { color: #fff; line-height: 1.55; }

.page-content-section {
  position: relative;
  padding: clamp(72px, 9vw, 138px) 0;
  background:
    radial-gradient(circle at 8% 26%, rgba(167,45,255,.14), transparent 28rem),
    radial-gradient(circle at 92% 80%, rgba(255,116,23,.08), transparent 25rem),
    linear-gradient(180deg,#08020d,#11041b 62%,#07020b);
}
.page-intro {
  display: grid;
  grid-template-columns: minmax(260px,.75fr) minmax(420px,1.25fr);
  gap: 22px 70px;
  align-items: end;
  margin-bottom: 55px;
}
.page-intro .eyebrow { grid-column: 1 / -1; margin: 0; }
.page-intro h2 {
  margin: 0;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(2.35rem, 5.1vw, 5.6rem);
  line-height: .91;
  letter-spacing: -.05em;
  text-shadow: 0 4px 0 rgba(54,9,76,.62), 0 0 28px rgba(167,45,255,.22);
}
.page-intro > p:last-child {
  margin: 0;
  color: #f2eaf4;
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  line-height: 1.75;
}

.page-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 18px;
  margin-top: 38px;
}
.page-card {
  position: relative;
  min-height: 290px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid rgba(213,92,255,.34);
  background:
    linear-gradient(145deg, rgba(61,13,88,.43), rgba(13,3,20,.88) 64%),
    radial-gradient(circle at 100% 0, rgba(255,116,23,.11), transparent 18rem);
  box-shadow: 0 25px 75px rgba(0,0,0,.30), inset 0 0 45px rgba(167,45,255,.045);
  clip-path: polygon(16px 0,100% 0,100% calc(100% - 16px),calc(100% - 16px) 100%,0 100%,0 16px);
}
.page-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0 72%, rgba(185,255,25,.04) 72% 73%, transparent 73%);
}
.page-card-number {
  display: block;
  margin-bottom: 34px;
  color: rgba(213,92,255,.50);
  font-family: var(--display);
  font-size: 4.4rem;
  font-weight: 900;
  line-height: .7;
  letter-spacing: -.04em;
}
.page-card h3 {
  margin: 0 0 12px;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.4vw, 2.5rem);
  line-height: 1.02;
}
.page-card p { margin: 0; color: #eee6f1; line-height: 1.7; }
.page-card a {
  display: inline-flex;
  margin-top: 24px;
  color: var(--lime);
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.detail-table {
  margin-top: 46px;
  border-top: 1px solid rgba(255,255,255,.25);
}
.detail-table > div {
  display: grid;
  grid-template-columns: minmax(170px,.4fr) minmax(260px,1fr);
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,.18);
}
.detail-table span {
  color: var(--lime);
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.detail-table strong { color: #fff; font-size: 1.05rem; line-height: 1.55; }

.faq-list { margin-top: 44px; border-top: 1px solid rgba(255,255,255,.22); }
.faq-item { border-bottom: 1px solid rgba(255,255,255,.20); }
.faq-item summary {
  list-style: none;
  padding: 25px 0;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(1.25rem,2vw,2rem);
  line-height: 1.2;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary span { color: var(--lime); font-family: var(--display); font-size: 1.7rem; transition: transform .2s ease; }
.faq-item[open] summary span { transform: rotate(45deg); }
.faq-item div { padding: 0 56px 26px 0; }
.faq-item p { margin: 0; color: #eee5f0; line-height: 1.75; }

.festival-form-panel {
  margin-top: 52px;
  padding: clamp(30px,5vw,64px);
  display: grid;
  grid-template-columns: minmax(250px,.72fr) minmax(380px,1.28fr);
  gap: 48px;
  border: 1px solid rgba(213,92,255,.42);
  background:
    radial-gradient(circle at 0 0, rgba(167,45,255,.24), transparent 26rem),
    linear-gradient(145deg, rgba(42,8,62,.72), rgba(9,2,14,.94));
  box-shadow: 0 32px 90px rgba(0,0,0,.34);
  clip-path: polygon(18px 0,100% 0,100% calc(100% - 18px),calc(100% - 18px) 100%,0 100%,0 18px);
}
.festival-form-panel h2 {
  margin: 0 0 18px;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(2rem,4vw,4.2rem);
  line-height: .95;
}
.festival-form-panel > div > p:last-child { color: #f0e7f2; line-height: 1.7; }
.festival-form { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; }
.festival-form label { display: flex; flex-direction: column; gap: 8px; }
.festival-form label:has(textarea) { grid-column: 1 / -1; }
.festival-form label > span {
  color: #fff;
  font-family: var(--display);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .10em;
  text-transform: uppercase;
}
.festival-form input,
.festival-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(5,1,9,.72);
  color: #fff;
  padding: 15px 16px;
  outline: none;
  resize: vertical;
}
.festival-form input:focus,
.festival-form textarea:focus { border-color: var(--lime); box-shadow: 0 0 0 3px rgba(185,255,25,.10); }
.festival-form .button { grid-column: 1 / -1; justify-self: start; margin-top: 4px; }

.page-cta {
  min-height: 560px;
  padding: 100px 24px;
  display: flex;
  align-items: center;
  isolation: isolate;
  background-image: var(--page-art);
  background-position: center;
  background-size: cover;
}
.page-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg,rgba(5,1,9,.95),rgba(5,1,9,.72) 50%,rgba(5,1,9,.22)), linear-gradient(180deg,rgba(5,1,9,.16),rgba(5,1,9,.78));
}
.page-cta .page-container { margin-left: max(24px, calc((100vw - 1320px) / 2)); margin-right: 24px; }
.page-cta h2 {
  max-width: 850px;
  margin: 0 0 18px;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(2.5rem,5.8vw,6.4rem);
  line-height: .90;
  letter-spacing: -.05em;
  text-shadow: 0 5px 0 rgba(49,7,70,.64), 0 0 30px rgba(167,45,255,.25);
}
.page-cta p { max-width: 690px; margin: 0 0 28px; color: #fff; font-size: 1.08rem; line-height: 1.72; text-shadow: 0 2px 16px #000; }

@media (max-width: 900px) {
  .page-container { width: min(100% - 36px, 1320px); }
  .page-hero { min-height: 720px; padding: calc(36px + var(--header-h) + 78px) 18px 65px; }
  .page-hero::before { background: linear-gradient(90deg,rgba(5,1,9,.84),rgba(5,1,9,.54)),linear-gradient(180deg,rgba(5,1,9,.25),rgba(5,1,9,.85)); }
  .page-hero-content { margin-left: 0; }
  .page-intro { grid-template-columns: 1fr; gap: 22px; }
  .page-intro .eyebrow { grid-column: auto; }
  .festival-form-panel { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .page-hero { min-height: 680px; }
  .page-hero-art { background-position: 62% center; }
  .page-hero-content h1 { font-size: clamp(3rem,17vw,5.3rem); }
  .page-notice .page-container { align-items: flex-start; flex-direction: column; gap: 8px; }
  .page-card-grid { grid-template-columns: 1fr; }
  .page-card { min-height: 250px; padding: 28px 24px; }
  .detail-table > div { grid-template-columns: 1fr; gap: 8px; }
  .festival-form { grid-template-columns: 1fr; }
  .festival-form label:has(textarea), .festival-form .button { grid-column: auto; }
  .page-cta { min-height: 500px; padding-left: 18px; padding-right: 18px; }
  .page-cta .page-container { margin-left: 0; margin-right: 0; width: 100%; }
}

/* Final correction: the official logo is the complete brand lockup. */
.brand.brand-logo-only {
  min-width: 104px;
  width: 104px;
  height: 76px;
  overflow: visible;
  flex: 0 0 104px;
}
.brand.brand-logo-only img {
  width: 104px;
  height: 104px;
  margin-top: -14px;
  object-fit: contain;
}
@media (max-width: 1180px) {
  .brand.brand-logo-only { min-width: 88px; width: 88px; flex-basis: 88px; }
  .brand.brand-logo-only img { width: 88px; height: 88px; margin-top: -7px; }
}
@media (max-width: 760px) {
  .brand.brand-logo-only { min-width: 78px; width: 78px; height: 66px; flex-basis: 78px; }
  .brand.brand-logo-only img { width: 78px; height: 78px; margin-top: -6px; }
}
