:root {
  color: #fff8e7;
  background: #04060d;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  --gold: #ffd36a;
  --gold-deep: #b87618;
  --pink: #f04aa8;
  --pink-soft: #ff8bd1;
  --navy: #070b17;
  --ink: #04060d;
  --cream: #fff6df;
  --muted: #c9bfa9;
  --line: rgba(255, 211, 106, 0.22);
  --panel: rgba(12, 18, 32, 0.82);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 22% 10%, rgba(240, 74, 168, 0.22), transparent 26rem),
    radial-gradient(circle at 82% 6%, rgba(255, 211, 106, 0.18), transparent 28rem),
    linear-gradient(180deg, #03050c 0%, #08101f 48%, #04060d 100%);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem clamp(1rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(4, 6, 13, 0.78);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: max-content;
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 2vw, 1.18rem);
  font-weight: 700;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 2.3rem;
  height: 2.3rem;
  place-items: center;
  border: 1px solid rgba(255, 211, 106, 0.5);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 211, 106, 0.34), rgba(240, 74, 168, 0.14));
  color: var(--gold);
  font-family: Inter, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0;
}

nav {
  display: none;
  align-items: center;
  gap: 1rem;
  color: rgba(255, 248, 231, 0.78);
  font-size: 0.92rem;
}

nav a {
  text-decoration: none;
}

nav a:hover,
nav a:focus-visible {
  color: var(--gold);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3.1rem;
  padding: 0.88rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary,
.button-small {
  background: linear-gradient(135deg, #ffe08a, #ffbc36 48%, #ff5dbb);
  color: #170812;
  box-shadow: 0 16px 42px rgba(255, 166, 55, 0.28);
}

.button-secondary {
  border-color: rgba(255, 211, 106, 0.38);
  background: rgba(255, 255, 255, 0.06);
  color: var(--cream);
}

.button-small {
  min-height: 2.45rem;
  padding: 0.65rem 0.95rem;
  font-size: 0.86rem;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - 4.2rem);
  padding: clamp(2rem, 6vw, 5.8rem) clamp(1rem, 4vw, 3rem) 4rem;
}

.hero::after {
  position: absolute;
  right: -12vw;
  bottom: -8rem;
  left: -12vw;
  z-index: -1;
  height: 22rem;
  content: "";
  background:
    linear-gradient(170deg, transparent 52%, rgba(255, 211, 106, 0.18) 53%, transparent 56%),
    radial-gradient(ellipse at center, rgba(255, 211, 106, 0.11), transparent 65%);
  transform: rotate(-2deg);
}

.ambient {
  position: absolute;
  z-index: -1;
  pointer-events: none;
  filter: blur(18px);
}

.ambient-one {
  top: 5.5rem;
  right: 15vw;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: rgba(255, 211, 106, 0.18);
}

.ambient-two {
  bottom: 7rem;
  left: 5vw;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  background: rgba(240, 74, 168, 0.15);
}

.hero-inner,
.section-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.hero-inner {
  display: grid;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}

.hero-copy {
  max-width: 45rem;
}

.badge-row,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.42rem 0.78rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: #1a0d08;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.badge-gold {
  background: linear-gradient(135deg, #ffe38f, #ffb22e);
}

.badge-pink {
  background: linear-gradient(135deg, #ff8bd1, #f04aa8);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
  line-height: 0.98;
}

h1 {
  max-width: 12ch;
  margin-bottom: 1rem;
  font-size: clamp(3rem, 13vw, 7.6rem);
}

h2 {
  max-width: 13ch;
  margin-bottom: 1rem;
  font-size: clamp(2.15rem, 7vw, 4.5rem);
}

.hero-subtitle,
.section p,
.final-cta p,
footer {
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.7;
}

.hero-subtitle {
  max-width: 40rem;
  margin-bottom: 1.35rem;
  color: #f3dcc0;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}

.detail-card {
  display: grid;
  gap: 0.85rem;
  max-width: 40rem;
  margin: 1.5rem 0;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 211, 106, 0.12), rgba(240, 74, 168, 0.07)),
    rgba(4, 6, 13, 0.72);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
}

.detail-row {
  display: grid;
  grid-template-columns: 2.45rem 1fr;
  gap: 0.8rem;
  align-items: center;
}

.detail-icon,
.feature-icon {
  position: relative;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 211, 106, 0.13);
  color: var(--gold);
}

.detail-icon::before,
.feature-icon::before {
  width: 42%;
  height: 42%;
  border: 2px solid currentcolor;
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 22px rgba(255, 211, 106, 0.42);
}

.detail-icon::after,
.feature-icon::after {
  position: absolute;
  width: 28%;
  height: 2px;
  background: var(--pink-soft);
  content: "";
  transform: rotate(-35deg);
}

.detail-icon {
  width: 2.45rem;
  height: 2.45rem;
}

.detail-row p {
  margin-bottom: 0.12rem;
  color: var(--pink-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.detail-row strong {
  color: var(--cream);
  font-size: 0.98rem;
  line-height: 1.35;
}

.hero-poster {
  position: relative;
  width: min(26rem, 82vw);
  margin: 0 auto;
}

.hero-poster::before {
  position: absolute;
  inset: -1.2rem;
  z-index: -1;
  content: "";
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 211, 106, 0.38), transparent 58%),
    radial-gradient(circle at 80% 72%, rgba(240, 74, 168, 0.22), transparent 44%);
  filter: blur(12px);
}

.hero-poster img,
.guest-panel img,
.full-flyer img {
  border: 1px solid rgba(255, 211, 106, 0.28);
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.section {
  padding: clamp(3.8rem, 8vw, 6.8rem) clamp(1rem, 4vw, 3rem);
}

.eyebrow {
  margin-bottom: 0.75rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.features-grid,
.schedule-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.feature-card,
.schedule-card,
.location-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.22);
}

.feature-card {
  padding: 1.25rem;
}

.feature-icon {
  width: 3.1rem;
  height: 3.1rem;
  margin-bottom: 1rem;
}

.feature-card h3,
.schedule-card h3 {
  margin-bottom: 0.55rem;
  color: var(--cream);
  font-size: 1.25rem;
}

.feature-card p {
  margin-bottom: 0;
  font-size: 0.98rem;
}

.guest-section {
  background:
    linear-gradient(90deg, rgba(240, 74, 168, 0.12), transparent 45%),
    linear-gradient(180deg, rgba(255, 211, 106, 0.06), rgba(255, 255, 255, 0));
}

.guest-panel {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
  padding: clamp(1rem, 4vw, 2rem);
  border: 1px solid rgba(240, 74, 168, 0.38);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(240, 74, 168, 0.18), rgba(255, 211, 106, 0.09)),
    var(--panel);
}

.guest-panel p {
  max-width: 46rem;
  margin: 1rem 0 0;
  color: #f5d8ec;
}

.guest-panel img {
  width: min(11rem, 44vw);
}

.schedule-card {
  padding: 1.25rem;
}

.schedule-card p {
  margin-bottom: 0.4rem;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
}

.schedule-card span {
  color: var(--muted);
  line-height: 1.6;
}

.location-layout {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.location-card {
  display: grid;
  align-content: center;
  gap: 1rem;
  padding: clamp(1.25rem, 4vw, 2rem);
}

.location-pin {
  width: fit-content;
  padding: 0.42rem 0.7rem;
  border: 1px solid rgba(240, 74, 168, 0.42);
  border-radius: 999px;
  background: rgba(240, 74, 168, 0.12);
  color: var(--pink-soft);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.location-card p {
  margin: 0;
  color: var(--cream);
  font-size: clamp(1.2rem, 3vw, 1.75rem);
  line-height: 1.3;
}

iframe {
  width: 100%;
  min-height: 21rem;
  border: 1px solid rgba(255, 211, 106, 0.22);
  border-radius: 8px;
  filter: saturate(0.8) contrast(1.05);
}

blockquote {
  margin: 1.5rem 0 0;
  padding: clamp(1.25rem, 4vw, 2rem);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 3vw, 2.05rem);
  line-height: 1.42;
}

.full-flyer {
  display: grid;
  justify-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.full-flyer img {
  width: min(34rem, 100%);
}

.full-flyer a {
  color: var(--gold);
  font-weight: 800;
}

.final-cta {
  padding: clamp(4rem, 9vw, 7.5rem) clamp(1rem, 4vw, 3rem);
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 211, 106, 0.23), transparent 32rem),
    linear-gradient(180deg, rgba(240, 74, 168, 0.1), rgba(4, 6, 13, 0.65));
}

.final-cta h2 {
  max-width: 14ch;
  margin-right: auto;
  margin-left: auto;
}

.final-cta p {
  max-width: 38rem;
  margin-right: auto;
  margin-left: auto;
}

.centered {
  justify-content: center;
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 1.25rem clamp(1rem, 4vw, 3rem) 5.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 0.92rem;
}

footer p {
  margin: 0;
}

.mobile-sticky {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 20;
  display: inline-flex;
  justify-content: center;
  padding: 0.95rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffe08a, #ffbc36 48%, #ff5dbb);
  color: #170812;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
}

@media (min-width: 680px) {
  nav {
    display: flex;
  }

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

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

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

@media (min-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1.15fr) minmax(20rem, 0.85fr);
  }

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

  .location-layout {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .mobile-sticky {
    display: none;
  }

  footer {
    padding-bottom: 1.25rem;
  }
}

@media (max-width: 520px) {
  .site-header {
    padding: 0.75rem 1rem;
  }

  .site-header .button {
    display: none;
  }

  .hero {
    padding-top: 1.4rem;
  }

  .hero-poster {
    width: min(17rem, 78vw);
  }

  h1 {
    margin-top: 0.75rem;
  }

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