:root {
  --navy-950: #06121f;
  --navy-900: #071827;
  --navy-800: #0b2536;
  --teal-500: #38d6c3;
  --teal-300: #8df6e8;
  --gold-500: #d8b46a;
  --gold-300: #f2d99a;
  --rose-500: #df2f7f;
  --rose-300: #ff8fbd;
  --mist: #d9edea;
  --pearl: #fff8ec;
  --ink: #10202b;
  --muted: #6d7b83;
  --surface-light: linear-gradient(145deg, rgba(255, 253, 247, 0.98), rgba(255, 248, 236, 0.94)), radial-gradient(circle at 100% 0%, rgba(242, 217, 154, 0.2), transparent 34%);
  --surface-dark: linear-gradient(145deg, rgba(255, 248, 236, 0.13), rgba(255, 248, 236, 0.06)), radial-gradient(circle at 100% 0%, rgba(242, 217, 154, 0.19), transparent 34%), radial-gradient(circle at 0% 100%, rgba(223, 47, 127, 0.11), transparent 34%), rgba(6, 18, 31, 0.44);
  --card-light: linear-gradient(180deg, rgba(255, 253, 247, 0.99), rgba(255, 248, 236, 0.97));
  --card-dark: linear-gradient(180deg, rgba(8, 25, 39, 0.96), rgba(5, 15, 27, 0.9));
  --line: rgba(216, 180, 106, 0.34);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
  --magic-speckles:
    radial-gradient(circle at 12% 18%, rgba(255, 248, 236, 0.68) 0 1px, transparent 1.4px),
    radial-gradient(circle at 74% 28%, rgba(242, 217, 154, 0.56) 0 1px, transparent 1.5px),
    radial-gradient(circle at 38% 82%, rgba(255, 143, 189, 0.32) 0 1px, transparent 1.5px),
    radial-gradient(circle at 88% 76%, rgba(141, 246, 232, 0.32) 0 1px, transparent 1.5px);
  --serif: "Cinzel", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--pearl);
  background:
    radial-gradient(circle at 48% -16%, rgba(242, 217, 154, 0.16), transparent 28rem),
    var(--navy-950);
  font-family: var(--sans);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: var(--magic-speckles);
  background-size: 220px 220px, 340px 340px, 420px 420px, 520px 520px;
  opacity: 0.26;
}

.site-header,
main,
.footer {
  position: relative;
  z-index: 1;
}

p,
li {
  text-wrap: pretty;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 20;
  background: var(--gold-300);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 6px;
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: min(1140px, calc(100% - 36px));
  margin: 0 auto;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background:
    linear-gradient(180deg, rgba(6, 18, 31, 0.94), rgba(6, 18, 31, 0.86)),
    radial-gradient(circle at 12% 0%, rgba(242, 217, 154, 0.14), transparent 38%);
  border-bottom: 1px solid rgba(216, 180, 106, 0.22);
  box-shadow: 0 18px 60px rgba(3, 11, 18, 0.28);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1220px, calc(100% - 28px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 40px;
  top: 3px;
  pointer-events: none;
  background: linear-gradient(135deg, transparent 36%, rgba(255, 248, 236, 0.9) 48%, var(--gold-300) 52%, transparent 64%);
  clip-path: polygon(50% 0, 58% 38%, 100% 50%, 58% 62%, 50% 100%, 42% 62%, 0 50%, 42% 38%);
  filter: drop-shadow(0 0 10px rgba(242, 217, 154, 0.72));
}

.brand-logo {
  width: 52px;
  height: 52px;
  display: block;
  border: 2px solid var(--gold-300);
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  box-shadow:
    0 0 0 4px rgba(216, 180, 106, 0.14),
    0 0 28px rgba(242, 217, 154, 0.36);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: var(--serif);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand small {
  color: var(--mist);
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links a {
  color: rgba(255, 248, 236, 0.88);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--gold-300);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: transparent;
  color: var(--pearl);
  padding: 10px 12px;
  font: inherit;
}

.promo-banner {
  position: relative;
  z-index: 1;
  padding: 12px 0;
  border-bottom: 1px solid rgba(216, 180, 106, 0.28);
  background:
    linear-gradient(90deg, rgba(223, 47, 127, 0.2), rgba(216, 180, 106, 0.2)),
    radial-gradient(circle at 18% 0%, rgba(242, 217, 154, 0.24), transparent 38%),
    rgba(7, 24, 39, 0.96);
  box-shadow: 0 18px 48px rgba(3, 11, 18, 0.18);
}

.promo-banner-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.promo-banner p {
  margin: 0;
  color: rgba(255, 248, 236, 0.94);
  font-size: 0.95rem;
  font-weight: 700;
}

.promo-code {
  display: inline-flex;
  align-items: center;
  padding: 1px 8px 2px;
  border: 1px solid rgba(242, 217, 154, 0.56);
  border-radius: 999px;
  background: rgba(255, 248, 236, 0.08);
  color: var(--gold-300);
  font-weight: 900;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.promo-link {
  color: var(--gold-300);
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.promo-link:hover,
.promo-link:focus-visible {
  color: var(--pearl);
  outline: none;
}

.btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid var(--gold-500);
  border-radius: 6px;
  background:
    linear-gradient(135deg, var(--gold-300), var(--gold-500)),
    radial-gradient(circle at 18% 10%, rgba(255, 248, 236, 0.62), transparent 38%);
  color: #17202a;
  font-weight: 800;
  text-decoration: none;
  box-shadow:
    0 14px 36px rgba(216, 180, 106, 0.22),
    inset 0 1px 0 rgba(255, 248, 236, 0.58);
  transition:
    box-shadow 180ms ease,
    transform 180ms ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: -50% -70%;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 42%, rgba(255, 248, 236, 0.58) 50%, transparent 58%);
  transform: translateX(-62%) rotate(8deg);
  transition: transform 520ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow:
    0 18px 48px rgba(216, 180, 106, 0.3),
    0 0 24px rgba(223, 47, 127, 0.18),
    inset 0 1px 0 rgba(255, 248, 236, 0.68);
}

.btn:hover::after {
  transform: translateX(62%) rotate(8deg);
}

.btn-secondary {
  background: rgba(6, 18, 31, 0.42);
  color: var(--pearl);
}

.btn-small {
  min-height: 40px;
  padding: 9px 14px;
}

.btn-full {
  width: 100%;
}

.section {
  position: relative;
  overflow: hidden;
  padding: 92px 0;
  background: var(--pearl);
  color: var(--ink);
}

.section > .container,
.intro-band > .container,
.page-hero > .container,
.final-cta > .container,
.footer > .container {
  position: relative;
  z-index: 1;
}

.section::before,
.intro-band::before,
.page-hero::before,
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    var(--magic-speckles),
    radial-gradient(circle at 8% 14%, rgba(242, 217, 154, 0.16), transparent 18rem),
    radial-gradient(circle at 92% 86%, rgba(223, 47, 127, 0.09), transparent 16rem);
  background-size: 220px 220px, 340px 340px, 420px 420px, 520px 520px, auto, auto;
  opacity: 0.28;
}

.section::after,
.intro-band::after,
.page-hero::after {
  content: "";
  position: absolute;
  top: 30px;
  right: max(18px, calc((100vw - 1140px) / 2));
  z-index: 0;
  width: 138px;
  height: 138px;
  border: 1px solid rgba(216, 180, 106, 0.46);
  border-left-color: transparent;
  border-bottom-color: rgba(223, 47, 127, 0.18);
  border-radius: 50%;
  pointer-events: none;
  transform: rotate(-28deg);
  filter: drop-shadow(0 0 18px rgba(242, 217, 154, 0.2));
  opacity: 0.48;
}

main > .section:nth-of-type(even)::after {
  right: auto;
  left: max(18px, calc((100vw - 1140px) / 2));
  transform: rotate(148deg);
}

.section-dark,
.section-deep {
  color: var(--pearl);
  background:
    radial-gradient(circle at 88% 12%, rgba(242, 217, 154, 0.13), transparent 18rem),
    radial-gradient(circle at 14% 78%, rgba(223, 47, 127, 0.1), transparent 18rem),
    radial-gradient(circle at 20% 0%, rgba(56, 214, 195, 0.14), transparent 34%),
    linear-gradient(145deg, var(--navy-950), var(--navy-800));
}

.section-dark::before,
.section-deep::before,
.intro-band::before {
  opacity: 0.42;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: auto;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 72px 0 86px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    var(--magic-speckles),
    radial-gradient(circle at 88% 14%, rgba(242, 217, 154, 0.2), transparent 18rem),
    radial-gradient(circle at 50% 100%, rgba(223, 47, 127, 0.11), transparent 20rem),
    radial-gradient(circle at 18% 18%, rgba(56, 214, 195, 0.16), transparent 30%),
    radial-gradient(circle at 74% 36%, rgba(216, 180, 106, 0.14), transparent 28%);
  background-size: 220px 220px, 340px 340px, 420px 420px, 520px 520px, auto, auto, auto, auto;
}

.hero::after {
  content: "";
  position: absolute;
  top: 48px;
  right: max(18px, calc((100vw - 1140px) / 2));
  z-index: 0;
  width: min(34vw, 330px);
  aspect-ratio: 1;
  border: 2px solid rgba(242, 217, 154, 0.48);
  border-left-color: transparent;
  border-bottom-color: rgba(223, 47, 127, 0.24);
  border-radius: 50%;
  pointer-events: none;
  transform: rotate(-30deg);
  filter: drop-shadow(0 0 30px rgba(242, 217, 154, 0.26));
  opacity: 0.68;
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 34px;
  justify-items: center;
}

.hero-copy {
  max-width: 840px;
  text-align: center;
}

.hero-art {
  position: relative;
  isolation: isolate;
  width: min(780px, 100%);
  border: 1px solid rgba(216, 180, 106, 0.42);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 248, 236, 0.06);
  box-shadow: var(--shadow);
}

.hero-art::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 0 42%, rgba(255, 248, 236, 0.22) 50%, transparent 58%),
    radial-gradient(circle at 92% 12%, rgba(242, 217, 154, 0.36), transparent 8rem);
  mix-blend-mode: screen;
}

.hero-art::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 22px;
  z-index: 2;
  width: 30px;
  height: 30px;
  pointer-events: none;
  background: linear-gradient(135deg, transparent 34%, rgba(255, 248, 236, 0.96) 48%, var(--gold-300) 52%, transparent 66%);
  clip-path: polygon(50% 0, 58% 38%, 100% 50%, 58% 62%, 50% 100%, 42% 62%, 0 50%, 42% 38%);
  filter: drop-shadow(0 0 14px rgba(242, 217, 154, 0.78));
}

.hero-art img {
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-300);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  line-height: 1.12;
  text-wrap: balance;
}

h1 {
  max-width: 860px;
  font-size: clamp(3.2rem, 8vw, 6.8rem);
}

.hero h1 {
  max-width: none;
  text-shadow:
    0 0 32px rgba(242, 217, 154, 0.24),
    0 0 52px rgba(223, 47, 127, 0.16);
}

.hero-subtitle-line {
  position: relative;
  display: inline-block;
  white-space: nowrap;
  font-size: clamp(2.7rem, 8vw, 6.8rem);
}

.hero-subtitle-line::after {
  content: "";
  position: absolute;
  top: 0.05em;
  right: -0.26em;
  width: 0.24em;
  height: 0.24em;
  pointer-events: none;
  background: linear-gradient(135deg, transparent 32%, rgba(255, 248, 236, 0.96) 48%, var(--gold-300) 52%, transparent 68%);
  clip-path: polygon(50% 0, 58% 38%, 100% 50%, 58% 62%, 50% 100%, 42% 62%, 0 50%, 42% 38%);
  filter: drop-shadow(0 0 12px rgba(242, 217, 154, 0.78));
}

h2 {
  max-width: 900px;
  font-size: clamp(2rem, 3.6vw, 3.35rem);
}

h3 {
  font-size: clamp(1.18rem, 2vw, 1.35rem);
}

.hero-lede {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 248, 236, 0.88);
  font-size: clamp(1.08rem, 2.2vw, 1.35rem);
}

.hero-details {
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0;
}

.hero-details span,
.day-label,
.ticket-ribbon {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  background:
    linear-gradient(145deg, rgba(6, 18, 31, 0.68), rgba(11, 37, 54, 0.5)),
    radial-gradient(circle at 18% 0%, rgba(242, 217, 154, 0.18), transparent 80%);
  color: var(--mist);
  padding: 8px 12px;
  font-size: 0.88rem;
  font-weight: 700;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}

.hero .button-row,
.centered .button-row {
  justify-content: center;
}

.centered-row {
  justify-content: center;
}

.intro-band {
  position: relative;
  overflow: hidden;
  padding: 56px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.split,
.venue-grid,
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.92fr);
  gap: 44px;
  align-items: center;
}

.split p {
  margin: 0;
  color: rgba(255, 248, 236, 0.84);
  font-size: 1.1rem;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 42px;
}

.section-heading .eyebrow,
.page-hero .eyebrow {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
}

.section-heading.centered .eyebrow,
.page-hero .eyebrow {
  margin-left: auto;
  margin-right: auto;
}

.section-heading .eyebrow::after,
.page-hero .eyebrow::after {
  content: "";
  width: 36px;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-300), rgba(223, 47, 127, 0.52), rgba(56, 214, 195, 0.16));
  box-shadow:
    0 0 14px rgba(242, 217, 154, 0.32),
    10px 0 16px rgba(223, 47, 127, 0.14);
}

.section-heading.centered .eyebrow::before,
.page-hero .eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(56, 214, 195, 0.16), rgba(223, 47, 127, 0.52), var(--gold-300));
  box-shadow:
    0 0 14px rgba(242, 217, 154, 0.32),
    -10px 0 16px rgba(223, 47, 127, 0.14);
}

.section-heading p:not(.eyebrow) {
  color: inherit;
  opacity: 0.78;
  font-size: 1.05rem;
}

.section-heading.centered h2,
.section-heading.centered p:not(.eyebrow) {
  margin-left: auto;
  margin-right: auto;
}

.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.centered h1,
.centered h2,
.centered p:not(.eyebrow) {
  margin-left: auto;
  margin-right: auto;
}

.guest-grid,
.two-card-grid,
.ticket-grid,
.policy-grid,
.faction-grid {
  display: grid;
  gap: 22px;
}

.guest-grid,
.two-card-grid {
  grid-template-columns: repeat(2, 1fr);
}

.guest-card,
.feature-card,
.ticket-card,
.travel-card,
.policy-grid article,
.page-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(16, 32, 43, 0.14);
  border-radius: 8px;
  background: var(--card-light);
  color: var(--ink);
  box-shadow:
    0 18px 50px rgba(6, 18, 31, 0.12),
    inset 0 0 0 1px rgba(255, 248, 236, 0.58);
}

.guest-card::before,
.feature-card::before,
.ticket-card::before,
.travel-card::before,
.policy-grid article::before,
.page-card::before,
.contact-panel::before,
.press-card::before,
.checkout-options::before,
details::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: 1;
  height: 4px;
  pointer-events: none;
  background: linear-gradient(90deg, var(--gold-300), rgba(223, 47, 127, 0.5), rgba(56, 214, 195, 0.14));
  opacity: 0.86;
}

.guest-card::after,
.feature-card::after,
.ticket-card::after,
.travel-card::after,
.policy-grid article::after,
.page-card::after,
.contact-panel::after,
.press-card::after,
.checkout-options::after,
details::after {
  content: "";
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 0;
  width: 24px;
  height: 24px;
  pointer-events: none;
  border-top: 1px solid rgba(216, 180, 106, 0.58);
  border-right: 1px solid rgba(216, 180, 106, 0.58);
  border-radius: 0 6px 0 0;
  opacity: 0.72;
}

.guest-card > *,
.feature-card > *,
.ticket-card > *,
.travel-card > *,
.policy-grid article > *,
.page-card > *,
.contact-panel > *,
.press-card > *,
.checkout-options > *,
details > * {
  position: relative;
  z-index: 1;
}

.guest-card {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 20px;
  padding: 20px;
  align-items: center;
}

.guest-image {
  display: grid;
  place-items: center;
  min-height: 190px;
  border: 1px dashed rgba(216, 180, 106, 0.72);
  border-radius: 7px;
  background:
    radial-gradient(circle at 84% 12%, rgba(242, 217, 154, 0.24), transparent 34%),
    linear-gradient(145deg, rgba(11, 37, 54, 0.9), rgba(56, 214, 195, 0.16));
  color: var(--gold-300);
  font-weight: 800;
  text-align: center;
}

.guest-photo {
  position: relative;
  min-height: 240px;
  overflow: hidden;
  border-style: solid;
  padding: 0;
}

.guest-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(6, 18, 31, 0.08), transparent 30%, rgba(6, 18, 31, 0.2)),
    radial-gradient(circle at 85% 10%, rgba(242, 217, 154, 0.24), transparent 28%);
}

.guest-photo img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  display: block;
  object-fit: cover;
  object-position: 50% 24%;
}

.feature-card,
.travel-card,
.policy-grid article,
.page-card {
  padding: 24px;
}

.page-card h2,
.contact-panel h2 {
  max-width: none;
  font-size: clamp(1.55rem, 2.2vw, 2.25rem);
}

.service-grid .page-card h2 {
  white-space: nowrap;
}

.section-deep .feature-card,
.section-deep .ticket-card,
.section-deep .travel-card,
.section-deep .policy-grid article {
  border-color: rgba(216, 180, 106, 0.42);
  background: var(--card-dark);
  color: var(--pearl);
  box-shadow:
    var(--shadow),
    inset 0 0 0 1px rgba(255, 248, 236, 0.06);
}

.large {
  min-height: 220px;
}

.cta-spacer {
  margin-top: 34px;
}

.experience {
  background:
    linear-gradient(rgba(6, 18, 31, 0.82), rgba(6, 18, 31, 0.88)),
    url("../img/midnight-ocean.jpeg") center/cover;
  color: var(--pearl);
}

.press {
  background: var(--pearl);
  color: var(--ink);
}

.press-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 30px;
  border: 1px solid rgba(16, 32, 43, 0.14);
  border-radius: 8px;
  background: var(--card-light);
  box-shadow:
    0 18px 50px rgba(6, 18, 31, 0.12),
    inset 0 0 0 1px rgba(255, 248, 236, 0.58);
}

.press-card h2 {
  font-size: clamp(2rem, 3.2vw, 3rem);
}

.press-card p:not(.eyebrow) {
  max-width: 740px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.factions.section-deep {
  background: var(--pearl);
  color: var(--ink);
}

.factions.section-deep .feature-card {
  background: var(--card-light);
  color: var(--ink);
  box-shadow:
    0 18px 50px rgba(6, 18, 31, 0.12),
    inset 0 0 0 1px rgba(255, 248, 236, 0.58);
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.faction-grid {
  grid-template-columns: repeat(3, 1fr);
}

.ticket-grid {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

.ticket-source-note {
  max-width: 760px;
  margin: 16px auto 0;
  color: rgba(255, 248, 236, 0.74);
  font-size: 0.94rem;
}

.ticket-promo-note {
  max-width: 880px;
  margin: 20px auto 0;
  padding: 15px 18px;
  border: 1px solid rgba(242, 217, 154, 0.38);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 248, 236, 0.12), rgba(255, 248, 236, 0.06)),
    radial-gradient(circle at 8% 0%, rgba(242, 217, 154, 0.18), transparent 42%);
  color: rgba(255, 248, 236, 0.88);
  font-size: 0.95rem;
  box-shadow: inset 0 0 0 1px rgba(255, 248, 236, 0.05);
}

.ticket-promo-note strong {
  color: var(--gold-300);
}

.price-note,
.status-note {
  margin: -8px 0 0;
  color: rgba(255, 248, 236, 0.78);
  font-size: 0.9rem;
}

.status-note {
  color: var(--gold-300);
  font-weight: 800;
}

.ticket-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 30px;
}

.ticket-card.featured {
  border-color: var(--gold-300);
  transform: translateY(-12px);
}

.ticket-subtitle {
  margin: 0;
  color: var(--gold-300);
  font-weight: 800;
}

.price {
  margin: 0;
  font-family: var(--serif);
  font-size: 3rem;
  line-height: 1;
}

.ticket-card ul,
.travel-card ul {
  padding-left: 18px;
}

.ticket-card li,
.travel-card li {
  margin-bottom: 9px;
}

.travel-card a,
details a {
  color: var(--gold-300);
  font-weight: 800;
}

.best-for {
  margin-top: auto;
  font-weight: 800;
}

.checkout-options {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin-top: 28px;
  padding: 24px;
  border: 1px solid rgba(216, 180, 106, 0.32);
  border-radius: 8px;
  background: var(--card-dark);
  box-shadow:
    var(--shadow),
    inset 0 0 0 1px rgba(255, 248, 236, 0.06);
}

.checkout-options h3 {
  margin-bottom: 12px;
}

.checkout-options h4 {
  margin: 18px 0 8px;
  color: var(--gold-300);
  font-family: var(--sans);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.checkout-options p {
  max-width: 760px;
  margin: 0 0 6px;
  color: rgba(255, 248, 236, 0.78);
}

.checkout-options ul {
  margin: 0;
  padding-left: 18px;
}

.checkout-options li {
  margin-bottom: 9px;
}

.past-proof {
  background:
    linear-gradient(rgba(255, 248, 236, 0.93), rgba(255, 248, 236, 0.95)),
    url("../img/night-court-01.jpg") center/cover;
}

.proof-gallery,
.gallery-grid,
.event-gallery {
  display: grid;
  gap: 14px;
}

.proof-gallery {
  grid-template-columns: repeat(6, 1fr);
}

.proof-gallery img,
.gallery-grid img,
.event-gallery img,
.page-image img {
  width: 100%;
  border: 1px solid rgba(216, 180, 106, 0.28);
  border-radius: 8px;
  object-fit: contain;
  background: rgba(6, 18, 31, 0.92);
  box-shadow: 0 20px 60px rgba(6, 18, 31, 0.12);
}

.proof-gallery img,
.gallery-grid img,
.event-gallery img {
  cursor: zoom-in;
  transition:
    border-color 180ms ease,
    filter 180ms ease,
    transform 180ms ease;
}

.proof-gallery img:hover,
.gallery-grid img:hover,
.event-gallery img:hover,
.proof-gallery img:focus-visible,
.gallery-grid img:focus-visible,
.event-gallery img:focus-visible {
  border-color: rgba(242, 217, 154, 0.88);
  filter: brightness(1.08);
  outline: none;
  transform: translateY(-2px);
}

.proof-gallery img {
  aspect-ratio: 1 / 1;
}

.page-hero {
  padding: 96px 0 78px;
}

.page-hero .container {
  max-width: 900px;
}

.page-hero h1 {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(2.4rem, 5vw, 4.25rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 248, 236, 0.86);
  font-size: 1.16rem;
}

.content-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 34px;
  align-items: center;
}

.content-grid.reverse .page-image {
  order: -1;
}

.page-card,
.contact-panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(16, 32, 43, 0.14);
  border-radius: 8px;
  background: var(--card-light);
  color: var(--ink);
  box-shadow:
    0 18px 50px rgba(6, 18, 31, 0.12),
    inset 0 0 0 1px rgba(255, 248, 236, 0.58);
}

.section-deep .page-card,
.section-deep .contact-panel {
  border-color: rgba(216, 180, 106, 0.42);
  background: var(--card-dark);
  color: var(--pearl);
  box-shadow:
    var(--shadow),
    inset 0 0 0 1px rgba(255, 248, 236, 0.06);
}

.contact-panel .button-row + .social-buttons {
  margin-top: 28px;
}

.event-gallery {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 26px;
}

.event-gallery img {
  aspect-ratio: 4 / 3;
}

.gallery-grid {
  grid-template-columns: repeat(4, 1fr);
}

.gallery-grid img {
  aspect-ratio: 1 / 1;
}

.credit-note {
  margin-top: 18px;
  color: inherit;
  opacity: 0.76;
  font-size: 0.95rem;
}

.service-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.page-card .page-image {
  margin-bottom: 20px;
}

.page-image img {
  aspect-ratio: 4 / 3;
}

.service-grid .page-image img {
  object-fit: cover;
  background: transparent;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(16, 32, 43, 0.18);
  border-radius: 6px;
  padding: 12px 14px;
  font: inherit;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.address {
  color: var(--gold-300);
  font-weight: 800;
}

.social-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin: 14px 0 0;
}

.social-button {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 248, 236, 0.24);
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  box-shadow:
    0 14px 34px rgba(3, 11, 18, 0.2),
    inset 0 1px 0 rgba(255, 248, 236, 0.22);
  transition:
    box-shadow 180ms ease,
    transform 180ms ease;
}

.social-button:hover,
.social-button:focus-visible {
  color: #fff;
  outline: none;
  transform: translateY(-2px);
  box-shadow:
    0 18px 42px rgba(3, 11, 18, 0.28),
    0 0 20px rgba(242, 217, 154, 0.24),
    inset 0 1px 0 rgba(255, 248, 236, 0.3);
}

.social-button img {
  width: 23px;
  height: 23px;
  object-fit: contain;
}

.social-button.facebook {
  background: #1877f2;
}

.social-button.instagram {
  background:
    radial-gradient(circle at 28% 108%, #fdf497 0 18%, #fd5949 38%, #d6249f 62%, #285aeb 100%);
}

.social-button.tiktok {
  background: #030303;
  box-shadow:
    0 14px 34px rgba(3, 11, 18, 0.2),
    -2px 0 0 rgba(37, 244, 238, 0.72),
    2px 0 0 rgba(254, 44, 85, 0.72);
}

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

details {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(16, 32, 43, 0.14);
  border-radius: 8px;
  margin-bottom: 12px;
  background: var(--card-light);
  box-shadow:
    0 12px 34px rgba(6, 18, 31, 0.08),
    inset 0 0 0 1px rgba(255, 248, 236, 0.58);
}

summary {
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 800;
}

details p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
}

.policy-grid {
  grid-template-columns: repeat(3, 1fr);
}

.final-cta {
  position: relative;
  padding: 110px 0;
  background:
    linear-gradient(rgba(6, 18, 31, 0.82), rgba(6, 18, 31, 0.88)),
    url("../img/pirate-ship.jpeg") center/cover;
}

.final-cta p {
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
}

.footer {
  padding: 58px 0 28px;
  background: #030b12;
  color: rgba(255, 248, 236, 0.84);
}

.footer-grid {
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  align-items: start;
}

.footer h2,
.footer h3 {
  color: var(--pearl);
  font-size: 1.1rem;
}

.footer a {
  display: block;
  margin: 8px 0;
  color: rgba(255, 248, 236, 0.84);
  text-decoration: none;
}

.footer .social-button {
  display: inline-flex;
  margin: 0;
  color: #fff;
}

.footer a:hover {
  color: var(--gold-300);
}

.footer .social-button:hover,
.footer .social-button:focus-visible {
  color: #fff;
}

.footer-bottom {
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid rgba(216, 180, 106, 0.22);
  color: rgba(255, 248, 236, 0.62);
}

.has-lightbox {
  overflow: hidden;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  place-items: center;
  padding: 72px 24px 32px;
  background: rgba(3, 11, 18, 0.92);
}

.lightbox.is-open {
  display: grid;
}

.lightbox-frame {
  width: min(100%, 1120px);
  max-height: calc(100vh - 116px);
  margin: 0;
  display: grid;
  gap: 12px;
  justify-items: center;
}

.lightbox-frame img {
  max-width: 100%;
  max-height: calc(100vh - 168px);
  border: 1px solid rgba(216, 180, 106, 0.42);
  border-radius: 8px;
  object-fit: contain;
  box-shadow: var(--shadow);
}

.lightbox-frame figcaption {
  max-width: 760px;
  color: rgba(255, 248, 236, 0.82);
  font-size: 0.95rem;
  text-align: center;
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  border: 1px solid rgba(216, 180, 106, 0.5);
  border-radius: 999px;
  padding: 10px 16px;
  background: rgba(255, 248, 236, 0.96);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.lightbox-close:hover,
.lightbox-close:focus-visible {
  background: var(--gold-300);
  outline: none;
}

@media (max-width: 980px) {
  .nav {
    flex-wrap: wrap;
    padding: 14px 0;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 0 4px;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 10px 0;
  }

  .hero {
    padding: 76px 0;
  }

  .split,
  .venue-grid,
  .content-grid,
  .service-grid,
  .contact-grid,
  .guest-grid,
  .two-card-grid,
  .faction-grid,
  .ticket-grid,
  .policy-grid {
    grid-template-columns: 1fr;
  }

  .press-card {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .experience-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-gallery,
  .gallery-grid,
  .event-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .content-grid.reverse .page-image {
    order: 0;
  }

  .ticket-card.featured {
    transform: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1140px);
  }

  .section {
    padding: 68px 0;
  }

  .hero {
    padding: 58px 0;
  }

  .button-row,
  .hero-details {
    flex-direction: column;
    align-items: stretch;
  }

  .button-row .btn {
    width: 100%;
  }

  .guest-card {
    grid-template-columns: 1fr;
  }

  .service-grid .page-card h2 {
    white-space: normal;
  }

  .experience-grid,
  .faction-grid,
  .proof-gallery,
  .gallery-grid,
  .event-gallery,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .press-card {
    padding: 24px;
  }

  h1 {
    font-size: 3rem;
  }

  .page-hero h1 {
    font-size: clamp(2.25rem, 10vw, 3rem);
  }

  h2 {
    font-size: clamp(1.85rem, 8vw, 2.45rem);
  }

  .hero-subtitle-line {
    font-size: clamp(2.25rem, 11vw, 3rem);
  }
}
