:root {
  --bg: #040404;
  --bg-soft: #0f0b07;
  --surface: rgba(12, 12, 12, 0.8);
  --surface-strong: rgba(8, 8, 8, 0.94);
  --surface-soft: rgba(255, 227, 173, 0.04);
  --text: #fbf5ea;
  --text-soft: rgba(251, 245, 234, 0.76);
  --text-faint: rgba(251, 245, 234, 0.48);
  --gold: #d4a249;
  --gold-soft: #f5ddb1;
  --gold-glow: rgba(221, 174, 92, 0.22);
  --brand: #f46414;
  --brand-soft: #f6a22d;
  --brand-glow: rgba(244, 100, 20, 0.24);
  --shadow-lg: 0 36px 90px rgba(0, 0, 0, 0.46);
  --shadow-md: 0 18px 40px rgba(0, 0, 0, 0.28);
  --radius-xl: 2rem;
  --radius-lg: 1.5rem;
  --radius-md: 1rem;
  --content-width: min(1120px, calc(100vw - 2rem));
  --hero-image: url("./asset.php?name=hero&v=20260402");
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Outfit", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 50% -6%, rgba(179, 127, 43, 0.24), transparent 32%),
    radial-gradient(circle at 0% 18%, rgba(244, 100, 20, 0.06), transparent 22%),
    radial-gradient(circle at 100% 100%, rgba(212, 162, 73, 0.06), transparent 24%),
    linear-gradient(180deg, #070707 0%, #020202 44%, #030303 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  z-index: 0;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(70px);
}

body::before {
  width: 28rem;
  height: 28rem;
  top: -10rem;
  left: -8rem;
  background: radial-gradient(circle, rgba(244, 100, 20, 0.08), transparent 68%);
}

body::after {
  width: 34rem;
  height: 34rem;
  right: -10rem;
  bottom: -16rem;
  background: radial-gradient(circle, rgba(212, 162, 73, 0.08), transparent 68%);
}

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

a,
button,
input {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: 0;
  cursor: pointer;
}

#fxCanvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.ornament-layer {
  position: fixed;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.ornament {
  --ornament-size: 160px;
  --ornament-x: 0vw;
  --ornament-y: 0vh;
  --ornament-dx: 4vw;
  --ornament-dy: -6vh;
  --ornament-scale: 1;
  --ornament-opacity: 0.18;
  --ornament-delay: 0s;
  --ornament-duration: 22s;
  --ornament-blur: 0px;
  --ornament-a: rgba(244, 197, 111, 0.4);
  --ornament-b: rgba(244, 100, 20, 0.16);
  position: absolute;
  top: 0;
  left: 0;
  width: var(--ornament-size);
  height: var(--ornament-size);
  opacity: var(--ornament-opacity);
  filter: blur(var(--ornament-blur));
  will-change: transform, opacity;
  animation: ornament-drift var(--ornament-duration) ease-in-out infinite alternate;
  animation-delay: var(--ornament-delay);
  mix-blend-mode: screen;
}

.ornament__glow,
.ornament__ring,
.ornament__spark {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.ornament__glow {
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.34), transparent 14%),
    radial-gradient(circle at 50% 50%, var(--ornament-a) 0%, var(--ornament-b) 46%, transparent 78%);
  filter: blur(4px);
  animation: ornament-pulse 8s ease-in-out infinite;
}

.ornament__ring {
  inset: 22%;
  border: 1px solid rgba(255, 232, 190, 0.18);
  box-shadow:
    0 0 18px rgba(255, 224, 158, 0.08),
    inset 0 0 10px rgba(255, 255, 255, 0.02);
}

.ornament__spark {
  inset: 36%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0) 72%);
  transform: scale(0.46);
}

.page-shell {
  position: relative;
  z-index: 2;
}

.hidden {
  display: none !important;
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.85s ease,
    transform 0.85s ease;
}

.reveal--visible,
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.section {
  width: 100%;
  padding: 0 1rem 1.35rem;
}

.section-card,
.card {
  position: relative;
  width: min(100%, var(--content-width));
  margin: 0 auto;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 220, 160, 0.06);
  background:
    linear-gradient(180deg, rgba(255, 220, 160, 0.05), transparent 22%),
    linear-gradient(180deg, rgba(14, 14, 14, 0.9), rgba(4, 4, 4, 0.94));
  box-shadow:
    var(--shadow-lg),
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    inset 0 0 0 1px rgba(255, 214, 136, 0.02);
  backdrop-filter: blur(18px);
}

.section-heading {
  position: relative;
  z-index: 1;
}

.section-heading--center {
  text-align: center;
}

.section-heading h2,
.modal-card h3,
.venue-copy h2,
.venue-photo-card__overlay h2 {
  margin: 0;
  font-family: "Cinzel", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  color: var(--gold-soft);
  letter-spacing: 0.02em;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.section-heading p,
.venue-copy p,
.modal-card__intro,
.hero__text {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.8;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(216, 169, 79, 0.28);
  background: rgba(255, 214, 136, 0.08);
  color: var(--gold-soft);
  letter-spacing: 0.34em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 500;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 1rem 2.6rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.84)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.8)),
    var(--hero-image) center center / cover no-repeat;
  filter: grayscale(1) contrast(1.06) brightness(0.66);
  opacity: 0.76;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 50% 14%, rgba(255, 234, 184, 0.16), transparent 20%),
    radial-gradient(circle at 50% 72%, rgba(216, 169, 79, 0.08), transparent 28%);
}

.hero__inner {
  position: relative;
  width: min(100%, 920px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(2rem, 5vw, 3.5rem) 0 clamp(2rem, 3vw, 2.6rem);
}

.hero__inner::before {
  content: "";
  position: absolute;
  inset: 8% 12%;
  z-index: -1;
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 223, 165, 0.12), rgba(255, 223, 165, 0) 58%),
    linear-gradient(180deg, rgba(255, 223, 165, 0.028), rgba(255, 223, 165, 0));
  filter: blur(24px);
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  position: relative;
  width: min(100%, 780px);
}

.hero__content--centered {
  align-items: center;
  text-align: center;
}

.hero__logo {
  width: min(300px, 52vw);
  margin-bottom: 1.35rem;
  filter:
    drop-shadow(0 0 30px rgba(244, 100, 20, 0.26))
    drop-shadow(0 18px 28px rgba(0, 0, 0, 0.32));
}

.hero__date {
  margin: 1.1rem 0 0.75rem;
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.92;
}

.hero__title {
  margin: 0;
  max-width: none;
  font-family: "Cinzel", serif;
  font-size: clamp(2.1rem, 5.2vw, 4.2rem);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.018em;
  text-wrap: balance;
  background: linear-gradient(180deg, #fff8dd 0%, #f2cf87 18%, #d69d42 48%, #855612 86%, #f1ddb0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow:
    0 0 22px rgba(216, 169, 79, 0.14),
    0 16px 28px rgba(0, 0, 0, 0.4);
  animation: title-sheen 7s linear infinite;
}

.hero__copy {
  margin-top: 1.45rem;
  padding: clamp(1.25rem, 3vw, 1.8rem);
  max-width: 680px;
  width: 100%;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 221, 160, 0.06), rgba(255, 221, 160, 0.015) 22%, transparent 38%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.8), rgba(4, 4, 4, 0.9));
  border-color: rgba(255, 220, 160, 0.07);
  box-shadow:
    0 28px 52px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.hero__copy::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), transparent 26%, transparent 74%, rgba(255, 255, 255, 0.04));
  opacity: 0.55;
}

.hero__lead {
  margin: 0;
  max-width: 24ch;
  margin-inline: auto;
  font-size: clamp(1rem, 1.5vw, 1.28rem);
  color: var(--text);
  line-height: 1.58;
}

.hero__text {
  margin-top: 0.8rem;
  max-width: 33rem;
  margin-inline: auto;
}

.hero__address {
  margin: 0.95rem auto 0;
  max-width: 30rem;
  color: var(--gold-soft);
  line-height: 1.62;
  font-weight: 500;
}

.hero__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.2rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 225, 170, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 225, 170, 0.06), rgba(255, 225, 170, 0.02)),
    rgba(0, 0, 0, 0.22);
  color: rgba(255, 241, 210, 0.9);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin-top: 1.45rem;
}

.button-row--start {
  justify-content: flex-start;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 3.2rem;
  padding: 0.92rem 1.35rem;
  border-radius: 999px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 600;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease,
    background 0.24s ease,
    color 0.24s ease;
  position: relative;
  overflow: hidden;
}

.button:hover {
  transform: translateY(-3px);
}

.button i {
  width: 1rem;
  height: 1rem;
}

.button--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-soft));
  box-shadow:
    0 18px 34px rgba(244, 100, 20, 0.22),
    0 0 24px rgba(244, 100, 20, 0.2);
}

.button--primary::before,
.button--secondary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.18), transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.45s ease;
}

.button:hover::before {
  transform: translateX(120%);
}

.button--secondary {
  color: var(--gold-soft);
  background: rgba(255, 221, 160, 0.045);
  border: 1px solid rgba(216, 169, 79, 0.36);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 14px 28px rgba(0, 0, 0, 0.22);
}

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

.scroll-cue {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.7rem;
}

.scroll-cue__circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.7rem;
  height: 3.7rem;
  border-radius: 50%;
  background: linear-gradient(180deg, #fffef8, #f3ddaa);
  color: #111;
  box-shadow:
    0 18px 30px rgba(0, 0, 0, 0.44),
    0 0 30px rgba(255, 243, 209, 0.14);
  animation: slow-float 4.5s ease-in-out infinite;
}

.scroll-cue__circle i {
  width: 2rem;
  height: 2rem;
}

.scroll-cue__label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 241, 210, 0.76);
}

.countdown-panel {
  padding: 2.8rem clamp(1.3rem, 3vw, 2.4rem);
  overflow: hidden;
}

.countdown-panel::before,
.details-panel::before,
.venue-copy::before,
.modal-card::before {
  content: "";
  position: absolute;
  inset: auto auto 65% -8%;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 100, 20, 0.08), rgba(244, 100, 20, 0) 72%);
  pointer-events: none;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.countdown-card {
  padding: 1.45rem 1rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(216, 169, 79, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 221, 160, 0.045), transparent 24%),
    linear-gradient(180deg, rgba(19, 14, 8, 0.84), rgba(7, 7, 7, 0.94));
  text-align: center;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.countdown-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 222, 165, 0.2);
  box-shadow:
    0 24px 34px rgba(0, 0, 0, 0.18),
    0 0 20px rgba(212, 162, 73, 0.08);
}

.countdown-card__value {
  display: block;
  font-family: "Cinzel", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--gold-soft);
}

.countdown-card__label {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.details-panel {
  overflow: hidden;
  padding: 2.8rem clamp(1.4rem, 3vw, 2.5rem);
  background:
    linear-gradient(180deg, rgba(255, 221, 160, 0.05), transparent 18%),
    linear-gradient(180deg, rgba(9, 9, 9, 0.92), rgba(4, 4, 4, 0.95));
}

.details-panel__watermark {
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(540px, 72vw);
  transform: translate(-50%, -50%);
  opacity: 0.07;
  pointer-events: none;
  filter: grayscale(1) brightness(1.1);
}

.details-panel__heading p:last-child {
  max-width: 48rem;
  margin: 1rem auto 0;
}

.details-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.1rem;
}

.details-grid > * {
  min-width: 0;
}

.detail-card {
  padding: 2rem 1.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(216, 169, 79, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 221, 160, 0.035), transparent 26%),
    rgba(5, 5, 5, 0.54);
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease;
}

.detail-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 222, 165, 0.18);
  box-shadow:
    var(--shadow-md),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.detail-card--featured {
  background:
    linear-gradient(180deg, rgba(255, 221, 160, 0.08), transparent 22%),
    linear-gradient(180deg, rgba(12, 12, 12, 0.78), rgba(8, 8, 8, 0.84));
  transform: translateY(-0.5rem);
  box-shadow:
    0 28px 44px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.detail-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 6rem;
  height: 6rem;
  margin-bottom: 1.2rem;
  border-radius: 50%;
  color: #fff;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.08), transparent 28%),
    rgba(255, 255, 255, 0.03);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 0 24px rgba(212, 162, 73, 0.05);
}

.detail-card__icon i {
  width: 3.4rem;
  height: 3.4rem;
  stroke-width: 1.4;
}

.detail-card__label,
.mini-stat__label,
.site-footer__title {
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.detail-card__label {
  margin: 0;
  font-size: 0.74rem;
  color: var(--text-faint);
}

.detail-card__value {
  margin: 0.8rem 0 0;
  font-size: clamp(1.12rem, 1.6vw, 1.42rem);
  line-height: 1.5;
  color: var(--text);
}

.detail-card__helper {
  margin: 0.55rem 0 0;
  color: var(--text-soft);
}

.detail-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.95rem;
  color: var(--gold-soft);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: transform 0.2s ease, color 0.2s ease;
}

.detail-card__link:hover {
  transform: translateX(2px);
  color: #fff1cf;
}

.detail-card__link i {
  width: 0.95rem;
  height: 0.95rem;
}

.venue-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 1.35rem;
  width: min(100%, var(--content-width));
  margin: 0 auto;
  align-items: stretch;
}

.venue-layout > * {
  width: 100%;
  min-width: 0;
}

.venue-photo-card {
  overflow: hidden;
  min-height: 440px;
  background: #040404;
  isolation: isolate;
  border: 1px solid rgba(255, 223, 171, 0.1);
}

.venue-photo-card::before {
  content: "";
  position: absolute;
  inset: auto -14% 16% 42%;
  height: 15rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(230, 184, 96, 0.32), rgba(230, 184, 96, 0));
  filter: blur(22px);
  opacity: 0.46;
  pointer-events: none;
  z-index: 0;
}

.venue-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 68% 18%, rgba(255, 221, 160, 0.22), rgba(255, 221, 160, 0) 28%),
    linear-gradient(135deg, rgba(255, 214, 136, 0.08), rgba(255, 214, 136, 0) 42%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.84));
  pointer-events: none;
  z-index: 1;
}

.venue-photo-card__image {
  position: absolute;
  inset: -3%;
  width: 106%;
  height: 106%;
  object-fit: cover;
  min-height: 440px;
  filter: contrast(1.05) brightness(0.75) blur(14px);
  transform: scale(1.08);
  transform-origin: center;
  transition: transform 0.8s ease, filter 0.8s ease;
}

.venue-photo-card:hover .venue-photo-card__image {
  transform: scale(1.12);
  filter: contrast(1.08) brightness(0.82) blur(10px);
}

.venue-photo-card__signal {
  position: absolute;
  top: 1.45rem;
  left: 1.45rem;
  z-index: 2;
  max-width: min(260px, calc(100% - 2.9rem));
  padding: 1rem 1.05rem 1.05rem;
  border-radius: 1.15rem;
  border: 1px solid rgba(255, 223, 171, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 221, 160, 0.08), rgba(255, 221, 160, 0.02)),
    rgba(7, 7, 7, 0.56);
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.venue-photo-card__signal-label {
  display: inline-flex;
  margin-bottom: 0.6rem;
  color: var(--gold-soft);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.venue-photo-card__signal p {
  margin: 0;
  color: rgba(245, 235, 220, 0.8);
  font-size: 0.86rem;
  line-height: 1.58;
}

.venue-photo-card__overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2rem 2.1rem 2.15rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.88));
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
}

.venue-photo-card__overlay h2 {
  max-width: 8ch;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
}

.venue-photo-card__note {
  margin: 0;
  max-width: 34ch;
  color: rgba(245, 235, 220, 0.76);
  font-size: 0.95rem;
  line-height: 1.72;
}

.venue-copy {
  padding: 2.2rem;
  min-width: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(255, 221, 160, 0.045), transparent 24%),
    linear-gradient(180deg, rgba(9, 9, 9, 0.88), rgba(4, 4, 4, 0.94));
  border-radius: 30px;
}

.venue-copy h2 {
  max-width: 12ch;
  text-wrap: balance;
}

.venue-copy p {
  margin-top: 1rem;
  max-width: 60ch;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.65rem;
  width: 100%;
}

.mini-stat {
  padding: 1rem 0.9rem;
  border-radius: 1.2rem;
  border: 1px solid rgba(216, 169, 79, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 214, 136, 0.05), transparent 30%),
    rgba(255, 214, 136, 0.03);
  text-align: center;
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.mini-stat:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 222, 165, 0.18);
}

.mini-stat__label {
  display: block;
  font-size: 0.7rem;
  color: var(--text-faint);
}

.mini-stat__value {
  display: block;
  margin-top: 0.45rem;
  color: var(--gold-soft);
  font-size: 1.05rem;
}

.site-footer {
  padding: 0 1rem 2.7rem;
}

.site-footer__content {
  width: var(--content-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.35rem 1.5rem;
  border-radius: 1.7rem;
  border: 1px solid rgba(255, 220, 160, 0.06);
  background:
    linear-gradient(180deg, rgba(255, 220, 160, 0.04), transparent 20%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.76), rgba(4, 4, 4, 0.88));
  box-shadow:
    0 20px 44px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(16px);
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-footer__logo {
  width: min(190px, 38vw);
}

.site-footer__title {
  margin: 0;
  color: var(--gold-soft);
  font-size: 0.78rem;
}

.site-footer__tagline,
.site-footer__info,
.site-footer__copyright {
  margin: 0.25rem 0 0;
  color: var(--text-faint);
  line-height: 1.7;
}

.site-footer__copyright {
  white-space: nowrap;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 12;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.modal-overlay.is-active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  position: relative;
  width: min(100%, 460px);
  padding: 2rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(216, 169, 79, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 221, 160, 0.04), transparent 22%),
    linear-gradient(180deg, rgba(12, 12, 12, 0.98), rgba(5, 5, 5, 0.98));
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.modal-card__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  color: var(--text-faint);
  background: rgba(255, 255, 255, 0.04);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.modal-card__close:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  transform: rotate(90deg);
}

.modal-card__close i {
  width: 1.1rem;
  height: 1.1rem;
}

.modal-card h3 {
  margin-top: 1rem;
}

.modal-card__intro {
  margin-top: 0.85rem;
}

.modal-form {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.modal-form__field {
  width: 100%;
  min-height: 3.3rem;
  padding: 0.9rem 1rem;
  color: #fff;
  border-radius: 1rem;
  border: 1px solid rgba(216, 169, 79, 0.18);
  background: rgba(0, 0, 0, 0.46);
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.modal-form__field:focus {
  border-color: rgba(244, 100, 20, 0.75);
  box-shadow: 0 0 0 4px rgba(244, 100, 20, 0.08);
}

.modal-form__status {
  margin: -0.15rem 0 0;
  min-height: 1.2rem;
  font-size: 0.92rem;
  line-height: 1.5;
}

.modal-form__status--error {
  color: #ffb3a0;
}

.modal-form__status--loading {
  color: var(--gold-soft);
}

.modal-form__status--success {
  color: #d9ffb3;
}

.button.is-loading {
  pointer-events: none;
  opacity: 0.8;
}

.modal-success {
  text-align: center;
  padding-top: 1rem;
}

.modal-success__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  color: var(--gold-soft);
  background: rgba(244, 100, 20, 0.15);
}

.modal-success__icon i {
  width: 1.9rem;
  height: 1.9rem;
}

.modal-success__title {
  margin: 1rem 0 0;
  font-family: "Cinzel", serif;
  font-size: 2rem;
  color: var(--gold-soft);
}

.modal-success__text {
  margin: 0.75rem 0 0;
  color: var(--text-soft);
  line-height: 1.8;
}

@keyframes slow-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes title-sheen {
  0%,
  100% {
    filter: brightness(1);
  }
  45% {
    filter: brightness(1.02);
  }
  55% {
    filter: brightness(1.08);
  }
}

@keyframes ornament-drift {
  0% {
    transform: translate3d(var(--ornament-x), var(--ornament-y), 0) scale(var(--ornament-scale)) rotate(-8deg);
    opacity: calc(var(--ornament-opacity) * 0.78);
  }
  50% {
    transform: translate3d(
        calc(var(--ornament-x) + (var(--ornament-dx) * 0.65)),
        calc(var(--ornament-y) + (var(--ornament-dy) * 0.7)),
        0
      )
      scale(calc(var(--ornament-scale) * 1.06))
      rotate(6deg);
    opacity: var(--ornament-opacity);
  }
  100% {
    transform: translate3d(
        calc(var(--ornament-x) + var(--ornament-dx)),
        calc(var(--ornament-y) + var(--ornament-dy)),
        0
      )
      scale(var(--ornament-scale))
      rotate(10deg);
    opacity: calc(var(--ornament-opacity) * 0.7);
  }
}

@keyframes ornament-pulse {
  0%,
  100% {
    transform: scale(0.96);
    opacity: 0.72;
  }
  50% {
    transform: scale(1.06);
    opacity: 1;
  }
}

@media (max-width: 980px) {
  .hero__content {
    align-items: center;
    text-align: center;
  }

  .section {
    padding-bottom: 1rem;
  }

  .hero__inner {
    width: min(100%, 720px);
    padding-top: 1.8rem;
  }

  .countdown-grid,
  .details-grid,
  .venue-layout,
  .site-footer__content,
  .mini-grid {
    grid-template-columns: 1fr;
  }

  .button-row--start {
    justify-content: center;
  }

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

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

  .site-footer__content,
  .site-footer__info {
    text-align: center;
  }

  .site-footer__brand {
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }

  .site-footer__copyright {
    white-space: normal;
  }

  .venue-copy h2,
  .section-heading h2 {
    max-width: none;
  }

  .venue-photo-card__signal {
    top: 1.15rem;
    left: 1.15rem;
    max-width: calc(100% - 2.3rem);
    padding: 0.9rem 0.95rem;
  }

  .venue-photo-card__overlay {
    padding: 1.75rem;
  }

  .site-footer__content {
    gap: 1rem;
  }
}

@media (max-height: 760px) and (min-width: 721px) {
  .hero {
    min-height: auto;
    padding-top: 0.7rem;
    padding-bottom: 1.4rem;
  }

  .hero__inner {
    padding: 1rem 0 1.2rem;
  }

  .hero__logo {
    width: min(240px, 32vw);
    margin-bottom: 0.8rem;
  }

  .hero__date {
    margin: 0.6rem 0 0.45rem;
    font-size: 0.7rem;
    letter-spacing: 0.22em;
  }

  .hero__title {
    font-size: clamp(1.9rem, 4.4vw, 3.6rem);
    line-height: 0.92;
  }

  .hero__copy {
    margin-top: 1rem;
    padding: 1rem 1.15rem;
  }

  .hero__lead {
    font-size: 0.98rem;
  }

  .hero__text,
  .hero__address {
    font-size: 0.88rem;
    line-height: 1.58;
  }

  .hero__tags {
    margin-top: 0.95rem;
  }

  .hero__tag {
    min-height: 2rem;
    padding: 0.42rem 0.8rem;
    font-size: 0.64rem;
  }

  .button-row {
    margin-top: 1rem;
  }

  .button {
    min-height: 3rem;
    padding: 0.82rem 1.2rem;
    font-size: 0.74rem;
  }

  .scroll-cue {
    margin-top: 0.8rem;
  }

  .scroll-cue__circle {
    width: 3.2rem;
    height: 3.2rem;
  }
}

@media (max-width: 720px) {
  .hero {
    min-height: auto;
    padding-top: 0.8rem;
    padding-bottom: 1.9rem;
  }

  .ornament {
    --ornament-opacity: 0.1;
    --ornament-size: 92px;
  }

  .hero__copy,
  .countdown-panel,
  .details-panel,
  .venue-copy,
  .modal-card {
    padding: 1.35rem;
  }

  .venue-photo-card__signal {
    top: 1rem;
    left: 1rem;
    right: 1rem;
    max-width: none;
    padding: 0.82rem 0.88rem;
  }

  .venue-photo-card__signal p,
  .venue-photo-card__note {
    font-size: 0.88rem;
    line-height: 1.62;
  }

  .hero__inner {
    width: 100%;
    padding: 0.8rem 0 1.5rem;
  }

  .hero__logo {
    width: min(220px, 60vw);
    margin-bottom: 1rem;
  }

  .hero__date {
    margin-top: 0.85rem;
    max-width: 21rem;
    font-size: 0.72rem;
    line-height: 1.7;
    letter-spacing: 0.18em;
  }

  .section {
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }

  .button {
    width: 100%;
  }

  .button-row {
    flex-direction: column;
    align-items: stretch;
    gap: 0.68rem;
  }

  .scroll-cue {
    margin-top: 0.95rem;
  }

  .hero__title {
    max-width: 100%;
    font-size: clamp(1.95rem, 10vw, 3rem);
    line-height: 0.9;
    letter-spacing: 0.03em;
  }

  .hero__date,
  .eyebrow {
    letter-spacing: 0.16em;
  }

  .eyebrow {
    padding: 0.72rem 0.95rem;
    font-size: 0.64rem;
  }

  .hero__lead {
    font-size: 1rem;
  }

  .hero__text,
  .hero__address,
  .section-heading p,
  .venue-copy p,
  .modal-card__intro,
  .modal-success__text {
    font-size: 0.92rem;
    line-height: 1.68;
  }

  .hero__tags {
    gap: 0.5rem;
  }

  .hero__tag {
    width: auto;
    max-width: 100%;
    font-size: 0.66rem;
    letter-spacing: 0.12em;
  }

  .scroll-cue__circle {
    width: 3.65rem;
    height: 3.65rem;
  }

  .scroll-cue__label {
    font-size: 0.68rem;
  }

  .countdown-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .countdown-card {
    padding: 1.15rem 0.8rem;
  }

  .details-panel,
  .venue-copy {
    border-radius: 1.6rem;
  }

  .detail-card {
    padding: 1.4rem 1rem;
  }

  .detail-card__icon {
    width: 4.8rem;
    height: 4.8rem;
    margin-bottom: 0.95rem;
  }

  .detail-card__icon i {
    width: 2.6rem;
    height: 2.6rem;
  }

  .venue-photo-card,
  .venue-photo-card__image {
    min-height: 320px;
  }

  .venue-photo-card__overlay {
    padding: 1.35rem;
  }

  .venue-photo-card__overlay {
    gap: 0.72rem;
  }

  .mini-grid {
    gap: 0.7rem;
  }

  .site-footer {
    padding-bottom: 1.8rem;
  }

  .site-footer__content {
    padding: 1.2rem;
    border-radius: 1.35rem;
  }

  .site-footer__logo {
    width: min(160px, 50vw);
  }

  .modal-card {
    width: min(100%, 30rem);
  }

  .modal-card__close {
    top: 0.85rem;
    right: 0.85rem;
  }
}

@media (max-width: 460px) {
  .hero {
    padding-top: 0.65rem;
  }

  .hero__inner {
    padding: 0.7rem 0 1.25rem;
  }

  .hero__title {
    font-size: clamp(1.72rem, 9.5vw, 2.4rem);
  }

  .hero__copy {
    margin-top: 1.15rem;
    padding: 1.05rem 0.95rem 1rem;
  }

  .countdown-card__value {
    font-size: clamp(1.7rem, 9vw, 2.3rem);
  }

  .section-heading h2,
  .modal-card h3,
  .venue-copy h2,
  .venue-photo-card__overlay h2 {
    font-size: clamp(1.6rem, 9vw, 2.2rem);
  }

  .venue-photo-card__signal-label {
    font-size: 0.58rem;
    letter-spacing: 0.17em;
  }

  .hero__date,
  .eyebrow,
  .detail-card__label,
  .countdown-card__label,
  .mini-stat__label {
    letter-spacing: 0.11em;
  }
}
