/* African Culture Festival — design tokens & layout */
:root {
  --c-black: #0d0d0d;
  --c-brown-deep: #1f1408;
  --c-burnt: #c45c26;
  --c-gold: #e8a317;
  --c-gold-bright: #f9b115;
  --c-red: #b81828;
  --c-red-rich: #d2232a;
  --c-green: #0f6a3a;
  --c-green-bright: #008751;
  --c-cream: #f5efe4;
  --c-cream-dim: #e8ddca;
  --c-ink: #1a1a1a;
  --font-display: "Bebas Neue", Impact, system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --radius: 1rem;
  --radius-sm: 0.5rem;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  --shadow-sm: 0 8px 24px rgba(0, 0, 0, 0.2);
  --header-h: 5.25rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}
  /* RSVP / closed CTAs inert: show as unavailable */
a.is-rsvp-dead,
a[data-rsvp-dead],
a.is-cta-dead,
a[data-cta-dead],
span.is-cta-dead {
  cursor: not-allowed;
  opacity: 0.7;
  pointer-events: auto;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
  .btn__spinner,
  .scroll-hint {
    animation: none !important;
  }
  .hero__poster {
    animation: none !important;
  }
  .hero__tw-cursor,
  .hero__title .hero__tw-cursor,
  .hero__title.is-hero-typing .hero__tw-cursor {
    animation: none !important;
    display: none !important;
  }
}

.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link:focus {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 10001;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0.75rem 1.15rem;
  clip: auto;
  white-space: normal;
  background: var(--c-cream);
  color: var(--c-black);
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-decoration: none;
  box-shadow: var(--shadow);
  outline: 2px solid var(--c-gold);
  outline-offset: 2px;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
@media (max-width: 860px) {
  html.nav-open,
  body.nav-open {
    overflow: hidden;
  }
}
#main:focus {
  outline: none;
}
#main:focus-visible {
  outline: 2px solid var(--c-gold);
  outline-offset: 4px;
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--c-cream);
  background: var(--c-black);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
  overflow-wrap: break-word;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.07;
  background-image: repeating-linear-gradient(
      120deg,
      var(--c-gold) 0 2px,
      transparent 2px 18px
    ),
    repeating-linear-gradient(-20deg, var(--c-red) 0 1px, transparent 1px 12px);
}
body > * {
  position: relative;
  z-index: 1;
}

a {
  color: var(--c-gold-bright);
  text-decoration: none;
  transition: color 0.2s, opacity 0.2s;
}
a:hover {
  color: #ffd066;
}
img,
iframe {
  max-width: 100%;
  display: block;
}
.text-gold {
  color: var(--c-gold-bright);
}
.serif {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: none;
  line-height: 1.1;
}
.display {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: 0.03em;
  margin: 0 0 0.5rem;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--c-cream);
}
/* Hero h1: typewriter surface (a11y: full title in aria-label on the h1) */
.hero__title .hero__tw {
  display: inline;
}
.hero__title .hero__tw-white,
.hero__title .hero__tw-gold {
  display: inline;
  white-space: pre-wrap;
}
.hero__title .hero__tw-cursor {
  display: none;
  width: 0.07em;
  min-width: 2px;
  height: 0.72em;
  margin-left: 0.05em;
  vertical-align: -0.08em;
  background: linear-gradient(180deg, var(--c-gold-bright) 0%, var(--c-burnt) 100%);
  border-radius: 1px;
  box-shadow: 0 0 8px rgba(232, 163, 23, 0.55);
  animation: hero-cursor 0.85s step-end infinite;
}
.hero__title.is-hero-typing .hero__tw-cursor {
  display: inline-block;
}
@keyframes hero-cursor {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.15;
  }
}
.hero__title[data-hero-typewriter-done] .hero__tw-cursor {
  display: none !important;
}
.text-center {
  text-align: center;
}
.max-w-mx {
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}
.lede {
  font-size: 1.2rem;
  line-height: 1.5;
  opacity: 0.95;
  margin: 0;
}
.prose p {
  margin: 0 0 1rem;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--c-gold);
  margin: 0 0 0.75rem;
}
.section {
  position: relative;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}
.section--tight {
  padding-top: 2.5rem;
  padding-bottom: 4.5rem;
}
.section--count {
  background: linear-gradient(180deg, #120c08, var(--c-black) 30%);
  border-top: 1px solid rgba(232, 163, 23, 0.15);
}
.section--pattern {
  background: radial-gradient(ellipse at 50% 0%, rgba(196, 92, 38, 0.2), transparent 55%),
    var(--c-brown-deep);
}
.section--duo {
  background: #100a05;
  border-block: 1px solid rgba(255, 255, 255, 0.06);
}
.section--proof {
  background: linear-gradient(160deg, var(--c-green) -40%, #0a0a0a 45%);
  border-top: 1px solid rgba(0, 135, 81, 0.3);
}
.section--proof .section-inner {
  text-align: center;
}
.section--proof .section-sub {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-inner {
  width: min(100% - 2rem, 70rem);
  margin: 0 auto;
  padding: 0 0.5rem;
}
.section-title {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  margin: 0 0 0.5rem;
}
.section-sub {
  font-size: 1.1rem;
  opacity: 0.85;
  margin: 0 0 2rem;
}
.section-head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 3rem;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.35s var(--ease), box-shadow 0.35s;
}
.site-header.is-scrolled,
.nav-open .site-header {
  background: rgba(10, 8, 6, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 1.5rem, 70rem);
  margin: 0 auto;
  gap: 0.5rem 0.75rem;
  flex-wrap: nowrap;
}
.site-header__social {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex: 0 0 auto;
}
.site-header__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  color: var(--c-cream);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.2s, color 0.2s, transform 0.2s var(--ease), box-shadow 0.2s;
  text-decoration: none;
}
.site-header__social-link:hover,
.site-header__social-link:focus-visible {
  color: #fff;
  background: rgba(232, 163, 23, 0.2);
  box-shadow: 0 0 0 1px rgba(232, 163, 23, 0.45);
  transform: translateY(-1px);
  outline: none;
}
.site-header__social-svg {
  width: 1.15rem;
  height: 1.15rem;
  display: block;
}
@media (min-width: 861px) {
  .primary-nav {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-width: 0;
    gap: 0.35rem;
  }
  .primary-nav__list {
    flex: 1 1 auto;
    justify-content: center;
    flex-wrap: nowrap;
    min-width: 0;
  }
  .primary-nav__cta {
    flex-shrink: 0;
    margin-left: 0.15rem;
  }
}
.site-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  flex-shrink: 0;
  min-width: 0;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--c-cream);
  flex-shrink: 0;
  text-decoration: none;
}
.site-logo:hover {
  color: #fff;
}
.site-logo__img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--c-gold), 0 4px 16px rgba(0, 0, 0, 0.4);
  flex-shrink: 0;
}
.site-logo__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.site-logo__line {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}
.site-logo__sub {
  display: block;
  font-size: 0.65rem;
  opacity: 0.75;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.12rem;
  color: var(--c-gold);
  white-space: nowrap;
}

/* Organizer credit — Tanto Events Inc (not a sponsor) */
.organizer-credit {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem 0.65rem;
  margin: 0;
  font-family: var(--font-body);
}
.organizer-credit__label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 239, 228, 0.78);
  white-space: nowrap;
}
.organizer-credit__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 0.35rem;
  padding: 0.2rem 0.45rem;
  line-height: 0;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
}
.organizer-credit__logo {
  display: block;
  width: auto;
  height: 1.55rem;
  max-width: 7.5rem;
  object-fit: contain;
}
.organizer-credit--header {
  margin-left: calc(52px + 0.65rem);
  max-width: 16rem;
  gap: 0.35rem;
}
.organizer-credit--header .organizer-credit__label {
  font-size: 0.58rem;
  letter-spacing: 0.1em;
}
.organizer-credit--header .organizer-credit__name {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--c-cream);
  white-space: nowrap;
}
.organizer-credit--hero {
  margin: 0.85rem 0 1.15rem;
  gap: 0.45rem 0.65rem;
}
.organizer-credit--hero .organizer-credit__label {
  font-size: 0.75rem;
  color: rgba(245, 239, 228, 0.9);
}
.organizer-credit--hero .organizer-credit__name {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
}
.organizer-credit--footer {
  flex-wrap: nowrap;
  justify-content: center;
  gap: 0.45rem 0.55rem;
  white-space: nowrap;
}
.organizer-credit--footer .organizer-credit__label {
  font-size: 0.65rem;
  color: rgba(245, 239, 228, 0.85);
}
.organizer-credit--footer .organizer-credit__mark {
  padding: 0.22rem 0.4rem;
  flex-shrink: 0;
}
.organizer-credit--footer .organizer-credit__logo {
  height: 1.65rem;
  max-width: 7.5rem;
}
.site-footer__organizer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 0;
  opacity: 1;
}
@media (max-width: 860px) {
  .site-header {
    height: auto;
    min-height: var(--header-h);
    padding: 0.35rem 0;
  }
  .site-brand {
    max-width: calc(100% - 3.5rem);
  }
}
@media (min-width: 861px) and (max-width: 1180px) {
  .primary-nav__link {
    font-size: 0.78rem;
    padding: 0.42rem 0.5rem;
  }
  .primary-nav__link--cta,
  .primary-nav__cta {
    font-size: 0.82rem;
    padding: 0.45rem 0.85rem;
  }
  .site-logo__line {
    font-size: 0.72rem;
  }
  .site-logo__sub {
    font-size: 0.58rem;
  }
  .site-logo__img {
    width: 46px;
    height: 46px;
  }
  .organizer-credit--header {
    margin-left: calc(46px + 0.65rem);
  }
}

.primary-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.primary-nav__link {
  color: var(--c-cream);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  opacity: 0.9;
  text-decoration: none;
}
.primary-nav__link:hover,
.primary-nav__link.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  opacity: 1;
}
.primary-nav__item--dropdown {
  position: relative;
}
.primary-nav__trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  line-height: inherit;
}
.primary-nav__caret {
  display: inline-block;
  width: 0.45rem;
  height: 0.45rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  opacity: 0.75;
  transition: transform 0.2s var(--ease);
}
.primary-nav__item--dropdown.is-open .primary-nav__caret {
  transform: rotate(-135deg) translateY(1px);
}
.primary-nav__submenu {
  list-style: none;
  margin: 0;
  padding: 0.35rem;
  display: none;
  min-width: 11.5rem;
  background: rgba(12, 10, 8, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.primary-nav__item--dropdown.is-open .primary-nav__submenu {
  display: block;
}
.primary-nav__sublink {
  display: block;
  padding: 0.55rem 0.85rem;
  border-radius: var(--radius-sm);
  color: var(--c-cream);
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  opacity: 0.92;
}
.primary-nav__sublink:hover,
.primary-nav__sublink.is-active,
.primary-nav__sublink:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  opacity: 1;
  outline: none;
}
@media (min-width: 861px) {
  .primary-nav__submenu {
    position: absolute;
    top: calc(100% + 0.35rem);
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
  }
  .primary-nav__item--dropdown:hover .primary-nav__submenu,
  .primary-nav__item--dropdown:focus-within .primary-nav__submenu {
    display: block;
  }
}
.primary-nav__link--cta,
.primary-nav__cta {
  background: linear-gradient(120deg, var(--c-burnt), var(--c-red-rich));
  color: #fff !important;
  box-shadow: 0 4px 20px rgba(180, 24, 40, 0.4);
}
.primary-nav__link--cta:hover,
.primary-nav__cta:hover {
  filter: brightness(1.05);
  background: linear-gradient(120deg, #d76a32, #e02a3a) !important;
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  cursor: pointer;
  position: relative;
}
.nav-toggle__bar,
.nav-toggle__bar::before,
.nav-toggle__bar::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  position: absolute;
  left: 12px;
  top: 50%;
  border-radius: 1px;
  transition: transform 0.25s var(--ease);
}
.nav-toggle__bar::before {
  transform: translateY(-7px);
  left: 0;
}
.nav-toggle__bar::after {
  transform: translateY(7px);
  left: 0;
}
.nav-open .nav-toggle__bar {
  background: transparent;
}
.nav-open .nav-toggle__bar::before {
  transform: rotate(45deg) translate(0, 0);
  left: 0;
  top: 0;
}
.nav-open .nav-toggle__bar::after {
  transform: rotate(-45deg) translate(0, 0);
  left: 0;
  top: 0;
}
@media (max-width: 860px) {
  .nav-toggle {
    display: block;
    margin-left: auto;
  }
  .primary-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(8, 6, 4, 0.98);
    padding: 1rem 1.5rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s var(--ease), opacity 0.3s;
    flex-direction: column;
    align-items: stretch;
  }
  .primary-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .primary-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
  }
  .primary-nav__item--dropdown {
    width: 100%;
  }
  .primary-nav__trigger {
    width: 100%;
    justify-content: space-between;
    text-align: left;
  }
  .primary-nav__submenu {
    position: static;
    transform: none;
    margin-top: 0.15rem;
    border: 0;
    box-shadow: none;
    background: rgba(0, 0, 0, 0.22);
    padding: 0.25rem;
  }
  .primary-nav__link--cta,
  .primary-nav__cta {
    text-align: center;
    margin-left: 0;
    margin-top: 0.5rem;
    align-self: stretch;
  }
}
@media (min-width: 861px) {
  .nav-toggle {
    display: none !important;
  }
}
#main {
  padding-top: var(--header-h);
  overflow-x: hidden;
  max-width: 100%;
}

/* Hero */
.hero {
  min-height: min(90vh, 56rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding: 3rem 0 4rem;
  isolation: isolate;
  /* Clip decorative layers; negative insets on .hero__bg no longer break viewport width */
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  /* Vertical bleed only — horizontal negative inset caused horizontal page scroll on narrow viewports */
  top: -4rem;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background: radial-gradient(ellipse 80% 60% at 30% 20%, rgba(196, 92, 38, 0.45), transparent 55%),
    radial-gradient(ellipse 70% 50% at 80% 60%, rgba(0, 135, 81, 0.25), transparent 50%),
    linear-gradient(180deg, #1a0f0a, var(--c-black) 80%);
  z-index: 0;
  will-change: transform;
}
.hero__mesh {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: linear-gradient(135deg, rgba(232, 163, 23, 0.06) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 12h6v-6H0v6zm6 0h6V6H6v6zm6 0h6V6h-6v6zM0 18h6v-6H0v6zm6 0h6v-6H6v6zm6 0h6v-6h-6v6z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 2.5rem;
  padding: 0 0.5rem;
  width: min(100% - 2rem, 70rem);
  margin: 0 auto;
}
@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero__actions {
    justify-content: center;
  }
}
.hero__lede {
  max-width: 32rem;
  margin: 0 0 1.5rem;
}
@media (min-width: 901px) {
  .hero__lede {
    margin-left: 0;
  }
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__badge {
  position: relative;
  width: min(16rem, 60vw);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: conic-gradient(from 180deg, var(--c-green-bright), var(--c-gold-bright), var(--c-red-rich), var(--c-green-bright));
  padding: 3px;
  box-shadow: var(--shadow);
}
.hero__badge::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--c-cream);
  z-index: 0;
}
.hero__logo {
  position: relative;
  z-index: 1;
  width: 86%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.15));
}
/* Full-width gradient frame + soft “aura” (inner surface crops the image) */
.hero__poster {
  --hero-poster-r: 1.2rem;
  position: relative;
  z-index: 0;
  width: 100%;
  max-width: min(28rem, 100%);
  margin: 0 auto;
  border-radius: var(--hero-poster-r);
  padding: 3px;
  background: conic-gradient(
    from 220deg,
    #c45c26,
    #f9b115,
    #0f6a3a,
    #e8a317,
    #d2232a,
    #c45c26
  );
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.14),
    0 22px 56px rgba(0, 0, 0, 0.55),
    0 0 0 0 rgba(232, 163, 23, 0.35);
  line-height: 0;
  animation: hero-poster-aura 7s ease-in-out infinite;
}
/* Wider frame for landscape festival banners (3:2 / 16:9 style artwork) */
.hero__poster--landscape {
  max-width: min(48rem, 100%);
}
.hero__poster--landscape .hero__banner {
  max-height: min(56vh, 30rem);
  width: 100%;
  object-fit: contain;
  object-position: center;
}
@media (max-width: 900px) {
  .hero__poster--landscape .hero__banner {
    max-height: min(48vh, 24rem);
  }
}
@keyframes hero-poster-aura {
  0%,
  100% {
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.12),
      0 20px 50px rgba(0, 0, 0, 0.5),
      0 0 48px -8px rgba(232, 163, 23, 0.28);
    filter: brightness(1);
  }
  50% {
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.2),
      0 28px 64px rgba(0, 0, 0, 0.58),
      0 0 72px -2px rgba(249, 177, 21, 0.42);
    filter: brightness(1.04);
  }
}
.hero__poster-surface {
  border-radius: calc(var(--hero-poster-r) - 3px);
  overflow: hidden;
  line-height: 0;
  background: #070504;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.5);
}
.hero__banner {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  /* Cap portrait shots so the visual doesn’t tower over the copy (e.g. zoomed / short viewports) */
  max-height: min(68vh, 32rem);
  object-fit: contain;
  object-position: center;
  margin-inline: auto;
}
.scroll-hint {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.45);
  animation: float 2.5s ease-in-out infinite;
}
.scroll-hint::after {
  content: "";
  display: block;
  width: 1px;
  height: 1.5rem;
  background: linear-gradient(rgba(255, 255, 255, 0.3), transparent);
  margin: 0.35rem auto 0;
}
@keyframes float {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(6px);
  }
}
@media (max-width: 900px) {
  .scroll-hint {
    position: static;
    transform: none;
    margin: 1rem auto 0;
    text-align: center;
  }
  .scroll-hint::after {
    margin: 0.5rem auto 0;
  }
}

/* Buttons */
.btn {
  --btn-bg: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  color: #fff;
  background: var(--btn-bg);
  transition: transform 0.2s var(--ease), box-shadow 0.2s, filter 0.2s, border-color 0.2s, background 0.2s;
  text-align: center;
  line-height: 1.2;
  min-height: 3rem;
  box-sizing: border-box;
}
.btn:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}
.btn:active {
  transform: translateY(0);
}
.btn--primary {
  background: linear-gradient(120deg, var(--c-burnt), #b81828, var(--c-gold-bright) 200%);
  background-size: 200% 100%;
  box-shadow: 0 6px 28px rgba(196, 92, 38, 0.45);
  color: #fff;
}
.btn--secondary {
  background: var(--c-green-bright);
  color: #fff;
  box-shadow: 0 6px 24px rgba(0, 107, 63, 0.45);
}
.btn--light {
  background: var(--c-cream);
  color: var(--c-black) !important;
  box-shadow: var(--shadow-sm);
}
.btn--light:hover {
  color: #000 !important;
  filter: none;
  background: #fff;
}
.btn--ghost {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.2);
  color: #fff !important;
  backdrop-filter: blur(4px);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}
.btn--outline {
  border: 1px solid var(--c-gold);
  color: var(--c-gold-bright) !important;
  background: transparent;
}
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.btn__spinner {
  width: 1.1rem;
  height: 1.1rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
.btn[data-loading] .btn__spinner[hidden] {
  display: none;
}
.btn[data-loading] .btn__spinner:not([hidden]) {
  display: block;
}
.btn[data-loading] .btn__text[hidden] {
  display: none;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Countdown */
.count-card {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
  background: linear-gradient(145deg, rgba(30, 20, 12, 0.9), rgba(10, 8, 6, 0.95));
  border-radius: var(--radius);
  border: 1px solid rgba(232, 163, 23, 0.2);
  box-shadow: var(--shadow);
}
.countdown {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  margin-top: 2rem;
}
.countdown__item {
  min-width: 4.5rem;
}
.countdown__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  line-height: 1;
  color: var(--c-gold-bright);
  text-shadow: 0 0 32px rgba(249, 177, 21, 0.35);
}
.countdown__label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  opacity: 0.6;
  margin-top: 0.35rem;
}
[data-ended="true"] .countdown__num {
  color: var(--c-cream);
  opacity: 0.5;
}

/* Split & quote */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  width: min(100% - 2rem, 70rem);
  margin: 0 auto;
  padding: 0 0.5rem;
}
.split--loose {
  max-width: 52rem;
}
/* Sponsors: 2×3 grid — row 1: both H2s; row 2: both sublines; row 3: list | form (tops align) */
.sponsors-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr);
  column-gap: 2.5rem;
  row-gap: 0.55rem;
  align-items: start;
  width: 100%;
  box-sizing: border-box;
}
.sponsors-layout__title,
.sponsors-layout__form-heading {
  font-size: 1.5rem;
  margin: 0;
  line-height: 1.2;
  color: #f2ebe0;
}
.sponsors-layout__lede,
.sponsors-layout__form-meta {
  margin: 0 0 0.65rem;
  font-size: 0.95rem;
  line-height: 1.6;
}
.sponsors-layout__lede {
  color: rgba(245, 239, 228, 0.72);
  max-width: none;
}
.sponsors-layout__form-meta {
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(245, 239, 228, 0.66);
}
.sponsors-layout__list {
  margin: 0;
  min-width: 0;
}
.sponsors-layout__inquiry {
  min-width: 0;
  margin: 0;
}
@media (min-width: 900px) {
  .sponsors-layout {
    column-gap: 3.25rem;
    row-gap: 0.6rem;
  }
}
@media (max-width: 899px) {
  .sponsors-layout {
    grid-template-columns: 1fr;
    row-gap: 0;
  }
  .sponsors-layout__title {
    order: 1;
  }
  .sponsors-layout__lede {
    order: 2;
    margin-bottom: 0.85rem;
  }
  .sponsors-layout__list {
    order: 3;
    margin-bottom: 0.25rem;
  }
  .sponsors-layout__form-heading {
    order: 4;
    align-self: start;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  .sponsors-layout__form-meta {
    order: 5;
    margin-bottom: 1rem;
  }
  .sponsors-layout__inquiry {
    order: 6;
  }
}
@media (max-width: 800px) {
  .split {
    grid-template-columns: 1fr;
  }
}
.quote-card {
  background: linear-gradient(160deg, rgba(196, 92, 38, 0.2), rgba(0, 0, 0, 0.3));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
}
.quote-card__text {
  font-size: 1.35rem;
  font-style: italic;
  margin: 0 0 1rem;
  line-height: 1.4;
  color: #fff;
}
.quote-card__att {
  margin: 0;
  font-size: 0.85rem;
  opacity: 0.6;
  letter-spacing: 0.05em;
}

/* Highlights grid */
.hi-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 1.25rem;
}
.hi-grid--3 {
  max-width: 60rem;
  margin: 0 auto;
}
.hi-card {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem 1.6rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.2);
}
.hi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-color: rgba(232, 163, 23, 0.35);
}
.hi-card--wide {
  grid-column: 1 / -1;
  max-width: 44rem;
  margin: 0 auto;
  width: 100%;
}
.hi-card--flat {
  background: rgba(255, 255, 255, 0.04);
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, 0.07);
}
.hi-card--flat:hover {
  border-color: rgba(232, 163, 23, 0.25);
}
.hi-card__icon {
  font-size: 1.4rem;
  color: var(--c-gold);
  margin-bottom: 0.5rem;
  opacity: 0.9;
}
.hi-card__title {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 0.4rem;
  color: #fff;
  letter-spacing: 0.01em;
}
.hi-card p {
  margin: 0;
  font-size: 0.95rem;
  opacity: 0.88;
  line-height: 1.55;
}
.list-check {
  list-style: none;
  padding: 0;
  margin: 0;
}
.list-check li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.7rem;
}
.list-check li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--c-green-bright);
  font-weight: 800;
  font-size: 0.9rem;
  top: 0.1rem;
}

/* Details & map */
.details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  max-width: 42rem;
}
@media (max-width: 600px) {
  .details-grid {
    grid-template-columns: 1fr;
  }
}
.details-block {
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
}
.details-block__label {
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--c-gold);
  margin: 0 0 0.35rem;
}
.details-block__val {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.25rem;
  color: #fff;
}
.details-block__sub {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.7;
  line-height: 1.4;
}
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 20rem;
}
.map {
  width: 100%;
  height: 22rem;
  border: 0;
  display: block;
  filter: saturate(0.9) contrast(1.02);
}
.cta-duo {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 1.25rem;
  padding: 0 0.5rem;
  width: min(100% - 2rem, 70rem);
  margin: 0 auto;
}
@media (max-width: 800px) {
  .cta-duo {
    grid-template-columns: 1fr;
  }
}
.cta-panel {
  background: linear-gradient(135deg, rgba(196, 92, 38, 0.35), rgba(20, 12, 8, 0.7));
  border: 1px solid rgba(255, 200, 100, 0.25);
  border-radius: var(--radius);
  padding: 2rem 1.75rem 2.25rem;
  text-align: left;
  box-shadow: var(--shadow-sm);
}
.cta-panel--dark {
  background: linear-gradient(150deg, rgba(0, 90, 55, 0.45), #0c0a08);
  border-color: rgba(0, 135, 81, 0.35);
}
.cta-panel__title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
  line-height: 1;
  color: #fff;
}
.cta-panel p {
  margin: 0 0 1.25rem;
  opacity: 0.9;
  max-width: 32rem;
}

/* Footer */
.site-footer {
  background: #050302;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 3rem 0 2rem;
  font-size: 0.9rem;
}
.site-footer__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem 3rem;
  margin-bottom: 2rem;
}
.site-footer__brand {
  font-weight: 800;
  font-size: 1.05rem;
  margin: 0 0 0.4rem;
  letter-spacing: 0.02em;
  color: #fff;
}
.site-footer__meta {
  max-width: 20rem;
  margin: 0;
  opacity: 0.75;
  line-height: 1.5;
}
.site-footer__social {
  list-style: none;
  margin: 1.1rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}
.site-footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  color: var(--c-cream);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s var(--ease);
  text-decoration: none;
}
.site-footer__social-link:hover,
.site-footer__social-link:focus-visible {
  color: #fff;
  background: rgba(232, 163, 23, 0.18);
  box-shadow: 0 0 0 1px rgba(232, 163, 23, 0.4);
  transform: translateY(-2px);
  outline: none;
}
.site-footer__social-svg {
  width: 1.2rem;
  height: 1.2rem;
  display: block;
}
.site-footer__menus {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 2.75rem;
  justify-content: flex-end;
  align-content: flex-start;
  flex: 1 1 16rem;
  max-width: 36rem;
}
.site-footer__nav-col {
  min-width: 6.5rem;
}
.site-footer__nav-head {
  margin: 0 0 0.7rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(232, 163, 23, 0.88);
}
.site-footer__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.42rem;
}
.site-footer__nav-list a {
  color: var(--c-cream);
  opacity: 0.88;
  font-weight: 500;
  text-decoration: none;
  font-size: 0.9rem;
  line-height: 1.35;
  padding: 0.12rem 0;
  transition: color 0.2s, opacity 0.2s;
}
.site-footer__nav-list a:hover {
  color: var(--c-gold-bright);
  opacity: 1;
}
@media (max-width: 720px) {
  .site-footer__menus {
    justify-content: flex-start;
    max-width: none;
    width: 100%;
    gap: 1.75rem 2.25rem;
  }
}
.site-footer__contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
  margin-top: 0.9rem;
  font-size: 0.9rem;
}
.site-footer__contact-link,
.site-footer__contact-txt {
  color: var(--c-cream);
  opacity: 0.9;
  text-decoration: none;
  line-height: 1.4;
}
.site-footer__contact-link:hover {
  color: var(--c-gold-bright);
  opacity: 1;
}
.site-footer__bottom {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  padding-top: 1.5rem;
  margin-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0.85;
  font-size: 0.85rem;
}
.site-footer__copy {
  margin: 0;
  flex: 1 1 0;
  text-align: left;
  min-width: 0;
}
.site-footer__credit {
  margin: 0;
  flex: 1 1 0;
  text-align: right;
  min-width: 0;
}
@media (max-width: 640px) {
  .site-footer__bottom {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
  .site-footer__copy,
  .site-footer__credit {
    flex: 1 1 100%;
    text-align: center;
  }
  .site-footer__organizer {
    order: -1;
    flex: 1 1 100%;
  }
}
@media (max-width: 420px) {
  .organizer-credit--header {
    margin-left: 0;
  }
}
.site-footer__link {
  color: var(--c-gold-bright) !important;
  font-weight: 600;
  text-decoration: none;
}
.to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  line-height: 1;
  opacity: 0.85;
  transition: background 0.2s, transform 0.2s, opacity 0.2s;
  backdrop-filter: blur(6px);
}
.to-top:hover {
  background: var(--c-burnt);
  transform: translateY(-2px);
  opacity: 1;
  color: #fff;
}

/* Forms & inner pages */
.page-hero--sm {
  padding-top: 1rem;
  padding-bottom: 0;
  min-height: 0;
}

/* Premium inner-page hero (performers, sponsors) — editorial layout, muted subline */
.section.page-hero--premium {
  padding-top: clamp(2.75rem, 7vw, 4.75rem);
  padding-bottom: clamp(2.5rem, 5.5vw, 4rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  position: relative;
  isolation: isolate;
  background: linear-gradient(180deg, #0a0806 0%, #050403 100%);
  overflow: hidden;
}
.page-hero--performers {
  --ph-accent: rgba(196, 92, 38, 0.22);
  --ph-accent-2: rgba(232, 163, 23, 0.08);
}
.page-hero--sponsors {
  --ph-accent: rgba(0, 107, 63, 0.18);
  --ph-accent-2: rgba(196, 92, 38, 0.12);
}
.page-hero--costume {
  --ph-accent: rgba(196, 28, 36, 0.24);
  --ph-accent-2: rgba(232, 163, 23, 0.14);
}
.page-hero--volunteers {
  --ph-accent: rgba(0, 107, 63, 0.22);
  --ph-accent-2: rgba(232, 163, 23, 0.16);
}
.page-hero--aso-ebi {
  --ph-accent: rgba(15, 106, 58, 0.28);
  --ph-accent-2: rgba(232, 163, 23, 0.18);
}
.page-hero--rsvp {
  --ph-accent: rgba(196, 92, 38, 0.22);
  --ph-accent-2: rgba(0, 107, 63, 0.2);
}
.page-hero__sub-strong {
  color: #f2ebe0;
  font-weight: 600;
}
.page-hero__actions {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  align-items: center;
}
.page-hero__glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 75% 55% at 8% 15%, var(--ph-accent, rgba(196, 92, 38, 0.2)) 0%, transparent 58%),
    radial-gradient(ellipse 60% 45% at 92% 85%, var(--ph-accent-2, rgba(0, 107, 63, 0.12)) 0%, transparent 50%),
    linear-gradient(165deg, rgba(255, 255, 255, 0.02) 0%, transparent 45%);
  opacity: 1;
}
.page-hero__glow::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image: linear-gradient(125deg, rgba(255, 255, 255, 0.03) 0%, transparent 42%),
    url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='1' cy='1' r='0.5' fill='%23ffffff' fill-opacity='0.06'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  pointer-events: none;
}
.page-hero__inner {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, 42rem);
  margin: 0 auto;
  padding: 0 0.5rem;
  text-align: left;
}
.page-hero__kicker {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: rgba(232, 163, 23, 0.85);
  margin: 0 0 1.1rem;
  padding-left: 0.9rem;
  border-left: 2px solid rgba(232, 163, 23, 0.55);
  line-height: 1.4;
}
.page-hero--premium .page-hero__headline.display {
  font-size: clamp(2.35rem, 5.2vw, 3.65rem);
  line-height: 0.98;
  letter-spacing: 0.045em;
  margin: 0 0 0.15rem;
  max-width: min(20ch, 100%);
  color: #f2ebe0;
  text-shadow: 0 1px 40px rgba(0, 0, 0, 0.35);
}
.page-hero__rule {
  width: 2.75rem;
  height: 1px;
  margin: 1.2rem 0 1.25rem;
  background: linear-gradient(90deg, rgba(232, 163, 23, 0.85), rgba(232, 163, 23, 0.08) 100%);
  border-radius: 1px;
}
.page-hero__sub {
  margin: 0;
  max-width: 36rem;
  font-size: clamp(0.9rem, 1.2vw, 1.04rem);
  line-height: 1.7;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: rgba(245, 239, 228, 0.66);
}
@media (min-width: 640px) {
  .page-hero__sub {
    max-width: 34rem;
  }
}
@media (min-width: 900px) {
  .section.page-hero--premium {
    padding-top: clamp(3.25rem, 6.5vw, 5.25rem);
  }
}
@media (max-width: 480px) {
  .page-hero--premium .page-hero__headline.display {
    max-width: none;
  }
  .page-hero__kicker {
    letter-spacing: 0.24em;
  }
}
.form-shell {
  max-width: 32rem;
  margin: 0 auto;
  padding: 0 0.5rem 3rem;
}
.form {
  background: rgba(20, 14, 10, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 2rem 1.75rem 2.5rem;
  box-shadow: var(--shadow);
}
.form-group {
  margin-bottom: 1.25rem;
}
fieldset.form-group {
  min-width: 0;
}
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: #fff;
  letter-spacing: 0.02em;
}
.req {
  color: var(--c-red-rich);
  font-weight: 700;
}
.form-hint {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.75rem;
}
.aso-ebi-section-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(245, 239, 228, 0.92);
  margin: 2rem 0 0.85rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.aso-ebi-section-title:first-child {
  margin-top: 0;
}
fieldset.form-group > legend.label-like,
.label-like {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #fff;
  letter-spacing: 0.02em;
  padding: 0;
}
.aso-ebi-callout {
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(245, 239, 228, 0.72);
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-sm);
  border-left: 3px solid rgba(232, 163, 23, 0.5);
}
.aso-ebi-radios {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0.15rem 0 0;
}
.aso-ebi-radios .aso-ebi-radio-line {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin: 0;
  font-weight: 500;
  font-size: 0.92rem;
  cursor: pointer;
  color: rgba(245, 239, 228, 0.92);
}
.aso-ebi-radios input {
  margin: 0.3rem 0 0;
  flex-shrink: 0;
  accent-color: var(--c-gold);
}
/* Honeypot: off-screen, not display:none (reduces naive bot auto-fill) */
.form-hp {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.form .form__fields {
  position: relative;
}
.input,
.input--area {
  width: 100%;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.75rem 0.9rem;
  border-radius: var(--radius-sm);
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}
.input:focus,
.input--area:focus {
  outline: 2px solid var(--c-gold);
  outline-offset: 1px;
  border-color: var(--c-gold);
}
.input--area {
  min-height: 7rem;
  resize: vertical;
  line-height: 1.5;
}
.input.is-invalid,
.input--area.is-invalid {
  border-color: var(--c-red);
}
.aso-ebi-radios:has(input.is-invalid) {
  padding: 0.5rem 0.6rem;
  margin: 0.15rem -0.6rem 0;
  border-radius: var(--radius-sm);
  outline: 2px solid rgba(216, 35, 42, 0.65);
  outline-offset: 2px;
}
.form-error {
  color: #ff8a8a;
  font-size: 0.8rem;
  margin: 0.35rem 0 0;
}
.form-error--block {
  background: rgba(180, 24, 40, 0.15);
  border: 1px solid rgba(255, 100, 100, 0.25);
  padding: 0.65rem 0.9rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
}
.form-note {
  font-size: 0.8rem;
  opacity: 0.75;
  margin: 0 0 0.5rem;
  line-height: 1.4;
}
.form__actions {
  margin-top: 1.5rem;
}
.form-success {
  text-align: center;
  padding: 1.5rem 0 0.5rem;
  border-top: 1px solid rgba(0, 135, 81, 0.35);
  margin-top: 0.5rem;
}
.form-success[hidden] {
  display: none;
}
.form-success__title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--c-gold);
  text-transform: uppercase;
  margin: 0 0 0.5rem;
  letter-spacing: 0.04em;
}
.form-success p {
  margin: 0 0 1.5rem;
  opacity: 0.9;
  max-width: 22rem;
  margin-left: auto;
  margin-right: auto;
}

/* Reveal on scroll */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: 0.05s;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* Flyer: Cultural talent showcase */
.section--showcase {
  background: linear-gradient(180deg, rgba(120, 20, 30, 0.35) 0%, #100a08 100%);
  border-top: 1px solid rgba(200, 60, 60, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.showcase {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto;
  padding: 0.5rem 0.25rem;
}
.showcase .section-title {
  margin-bottom: 0.35rem;
}
.showcase__badge {
  display: inline-block;
  margin: 0 0 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--c-gold);
}
.showcase__lede {
  margin: 0;
  font-size: 1.1rem;
  opacity: 0.95;
  line-height: 1.55;
}

/* Home gallery (populated after the event) */
.section--gallery {
  background: linear-gradient(180deg, #0f0c09 0%, #080705 100%);
  border-top: 1px solid rgba(200, 60, 60, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.section-head--gallery .section-sub {
  max-width: 32rem;
  margin: 0.35rem 0 0;
  font-size: 1rem;
  opacity: 0.85;
  line-height: 1.5;
}
/* Masonry: multi-column flow — on-trend photo wall, no JS; natural image aspect ratios */
.gallery__grid {
  column-width: min(100%, 18rem);
  column-gap: 1.25rem;
  column-fill: balance;
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
}
.gallery__item {
  margin: 0 0 1.25rem;
  break-inside: avoid;
  page-break-inside: avoid;
  -webkit-column-break-inside: avoid;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  list-style: none;
}
.gallery__figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.gallery__frame {
  border-radius: calc(var(--radius) + 2px);
  overflow: hidden;
  background: rgba(0, 0, 0, 0.4);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition:
    box-shadow 0.45s var(--ease),
    transform 0.45s var(--ease),
    border-color 0.3s ease;
}
.gallery__item:hover .gallery__frame,
.gallery__item:focus-within .gallery__frame {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
  border-color: rgba(232, 163, 23, 0.22);
  transform: translateY(-3px);
}
.gallery__img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: bottom;
  transition: transform 0.55s var(--ease);
}
.gallery__item:hover .gallery__img,
.gallery__item:focus-within .gallery__img {
  transform: scale(1.03);
}
@media (prefers-reduced-motion: reduce) {
  .gallery__frame,
  .gallery__img {
    transition: none;
  }
  .gallery__item:hover .gallery__frame,
  .gallery__item:focus-within .gallery__frame,
  .gallery__item:hover .gallery__img,
  .gallery__item:focus-within .gallery__img {
    transform: none;
  }
}
.gallery__caption {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
  color: rgba(245, 239, 228, 0.88);
}
.gallery__empty {
  margin: 1.5rem 0 0;
  max-width: 38rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.gallery__empty-inner {
  padding: 2.25rem 1.5rem;
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(200, 60, 60, 0.12) 0%, rgba(0, 0, 0, 0.35) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-sm);
}
.gallery__empty-kicker {
  margin: 0 0 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--c-gold);
}
.gallery__empty-text,
.gallery__empty-hint {
  margin: 0 0 0.85rem;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--c-cream);
  opacity: 0.95;
}
.gallery__empty-hint {
  margin-bottom: 0;
  opacity: 0.9;
}
.gallery__empty-cta {
  margin-top: 1.25rem;
}

/* Partners logo strip (home) — larger marks, “logo wall” cards, motion-safe */
/* overflow: visible so hover name chips are not clipped (overrides .section) */
.section.section--partners {
  overflow: visible;
  padding-bottom: calc(clamp(4rem, 8vw, 6rem) + 2.5rem);
}
.section--partners {
  position: relative;
  background: linear-gradient(180deg, #0a0806 0%, #0e0c09 50%, #12100d 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.section--partners::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 45% at 50% 0%, rgba(232, 163, 23, 0.07) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 20% 100%, rgba(0, 107, 63, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}
.section--partners .section-inner {
  position: relative;
  z-index: 1;
}
.partners__heading {
  margin-bottom: 0.35rem;
}
.partners__heading--sponsored {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
}
.partners__intro {
  margin: 0 auto 2rem;
  max-width: 36rem;
  opacity: 0.8;
}
.partners__tier {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c-gold);
  text-align: center;
  margin: 0 0 1.25rem;
}
.partners__tier--spaced {
  margin-top: 2.75rem;
}
.partners__cell {
  margin: 0;
  display: flex;
  align-items: stretch;
  justify-content: center;
  min-width: 0;
  min-height: 0;
  --stagger: 0;
  overflow: visible;
  position: relative;
}
/* Marquee: larger tiles (readable at a glance) */
.partners-marquee {
  margin-top: 0.5rem;
}
.partners-marquee .partners__link,
.partners-marquee .partners__nolink {
  padding: 0.75rem 0.6rem 0.85rem;
}
.partners-marquee .partners__logo-frame {
  width: 100%;
  max-width: 100%;
  height: clamp(5.25rem, 11vw, 8.25rem);
  border-radius: 0.85rem;
  padding: clamp(0.45rem, 1.1vw, 0.85rem);
}
#partners .partners__cell.reveal[data-reveal] {
  transition-delay: calc(var(--stagger) * 0.055s);
}
.partners__link,
.partners__nolink {
  --partner-ease: cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 0;
  padding: 0.85rem 0.75rem 1rem;
  border-radius: 1.15rem;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.04) 0%, rgba(0, 0, 0, 0.15) 100%);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.3);
  transition: border-color 0.35s var(--partner-ease), box-shadow 0.35s var(--partner-ease), transform 0.4s var(--partner-ease),
    background 0.35s var(--partner-ease);
  overflow: visible;
  isolation: isolate;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.partners__link::before,
.partners__nolink::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(232, 163, 23, 0) 0%, rgba(232, 163, 23, 0.07) 50%, rgba(0, 135, 81, 0) 100%);
  opacity: 0;
  transition: opacity 0.45s var(--partner-ease);
  pointer-events: none;
  z-index: 0;
}
.partners__link {
  text-decoration: none;
  color: inherit;
}
.partners__mark {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 0;
  z-index: 1;
}
/* Brand name: shown on hover / keyboard focus (overlay on logo tile) */
.partners__name-hover {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  max-width: none;
  padding: 0.4rem 0.2rem 0.35rem;
  font-size: clamp(0.5rem, 1.1vw, 0.65rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-align: center;
  text-transform: none;
  color: #f8f3ea;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.9);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  word-break: break-word;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.2) 25%, rgba(0, 0, 0, 0.88) 100%);
  border: 0;
  box-shadow: none;
  border-radius: 0 0 0.6rem 0.6rem;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  transform: translateY(3px);
  transition: opacity 0.22s var(--partner-ease), transform 0.22s var(--partner-ease), visibility 0.22s;
}
.partners__link:hover .partners__name-hover,
.partners__link:focus-visible .partners__name-hover,
.partners__nolink:hover .partners__name-hover,
.partners__nolink:focus-visible .partners__name-hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  color: #fff;
}
.partners__nolink:focus-visible {
  outline: 2px solid var(--c-gold);
  outline-offset: 2px;
  border-radius: 1.15rem;
}
@media (prefers-reduced-motion: reduce) {
  .partners__name-hover {
    transition: opacity 0.15s, visibility 0.15s;
    transform: none;
  }
  .partners__link:hover .partners__name-hover,
  .partners__link:focus-visible .partners__name-hover,
  .partners__nolink:hover .partners__name-hover,
  .partners__nolink:focus-visible .partners__name-hover {
    transform: none;
  }
}
/* Touch / no hover: keep names visible (no :hover) */
@media (hover: none) {
  .partners__name-hover {
    opacity: 1;
    visibility: visible;
    transform: none;
  }
}
/*
 * Logo “tile” (rounded rect, ~4:3) — better for real-world sponsor art than a circle.
 * Circles force crop/letterboxing; most partner PNGs are rectangular with backgrounds.
 */
.partners__logo-frame {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: min(11.25rem, 100%);
  /* Equal-height slot (sponsor walls): landscape + portrait marks both use contain */
  height: clamp(5rem, 14vw, 7.25rem);
  flex-shrink: 0;
  border-radius: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.45rem, 1.2vw, 0.8rem);
  /* White mat so transparent PNG/SVG marks read clearly inside the card */
  background: #faf8f4;
  background-color: #faf8f4;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95), 0 4px 18px rgba(0, 0, 0, 0.25);
  transition: border-color 0.35s var(--partner-ease), box-shadow 0.35s var(--partner-ease), transform 0.45s var(--partner-ease);
  overflow: hidden;
  box-sizing: border-box;
}
.partners__logo-frame .partners__logo {
  position: static;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 0.98;
  filter: none;
  transition: opacity 0.3s var(--partner-ease), transform 0.45s var(--partner-ease);
}
.partners__link:hover,
.partners__link:focus-visible {
  border-color: rgba(232, 163, 23, 0.35);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.06) 0%, rgba(20, 14, 10, 0.5) 100%);
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(232, 163, 23, 0.15);
  outline: none;
}
.partners__link:hover::before,
.partners__link:focus-visible::before,
.partners__nolink:hover::before {
  opacity: 1;
}
.partners__link:hover .partners__logo-frame,
.partners__nolink:hover .partners__logo-frame,
.partners__link:focus-visible .partners__logo-frame {
  background: #fff;
  background-color: #fff;
  border-color: rgba(232, 163, 23, 0.5);
  box-shadow: inset 0 0 0 1px rgba(232, 163, 23, 0.15), 0 0 0 1px rgba(232, 163, 23, 0.25);
  transform: scale(1.02);
}
.partners__nolink:hover {
  border-color: rgba(255, 255, 255, 0.14);
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.45);
}
.partners__link:hover .partners__logo-frame .partners__logo,
.partners__nolink:hover .partners__logo-frame .partners__logo,
.partners__link:focus-visible .partners__logo-frame .partners__logo {
  opacity: 1;
}
.partners__link:focus-visible {
  outline: 2px solid var(--c-gold);
  outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
  .partners__link,
  .partners__nolink,
  .partners__logo,
  .partners__logo-frame {
    transition: border-color 0.2s, box-shadow 0.2s, opacity 0.2s;
  }
  .partners__link:hover,
  .partners__link:focus-visible,
  .partners__nolink:hover,
  .partners__link:hover .partners__logo-frame,
  .partners__nolink:hover .partners__logo-frame,
  .partners__link:focus-visible .partners__logo-frame {
    transform: none;
  }
  .partners__link:hover .partners__logo-frame .partners__logo,
  .partners__nolink:hover .partners__logo-frame .partners__logo,
  .partners__link:focus-visible .partners__logo-frame .partners__logo {
    transform: none;
  }
  #partners .partners__cell.reveal[data-reveal] {
    transition-delay: 0s;
  }
}
.partners__name-pill,
.partners__name-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 3rem;
  padding: 0.5rem 0.9rem;
  max-width: 16rem;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--c-cream);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  text-decoration: none;
  background: rgba(0, 0, 0, 0.25);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.partners__name-link:hover,
.partners__name-link:focus-visible {
  color: #fff;
  border-color: var(--c-gold);
  background: rgba(255, 255, 255, 0.06);
  outline: none;
  box-shadow: 0 0 0 2px rgba(232, 163, 23, 0.25);
}
.partners__name-pill {
  cursor: default;
}

/* Full-bleed row: auto-scroll left, pause on hover (WCAG: reduced-motion = static grid) */
.partners-marquee {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-bottom: 0.5rem;
  padding: 0.75rem 0 0.5rem;
  box-sizing: border-box;
}
.partners-marquee__viewport {
  overflow: hidden;
  width: 100%;
  padding: 0.65rem 0 clamp(1.5rem, 3vw, 2.5rem);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 2.5%, #000 97.5%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 2.5%, #000 97.5%, transparent 100%);
}
.partners-marquee__track {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  width: max-content;
  gap: clamp(1.25rem, 3.5vw, 2.25rem);
  animation: partners-marquee-x 65s linear infinite;
  will-change: transform;
}
.partners-marquee:hover .partners-marquee__track,
.partners-marquee:focus-within .partners-marquee__track {
  animation-play-state: paused;
}
.partners-marquee__cell {
  margin: 0;
  padding: 0;
  flex: 0 0 auto;
  width: clamp(7.75rem, 30vw, 15.5rem);
  min-height: 0;
  max-width: 16rem;
  overflow: visible;
}
.partners__link--marquee,
.partners__nolink--marquee {
  width: 100%;
  min-height: 0;
  box-sizing: border-box;
}
.partners__name-pill--marquee {
  min-height: 0;
  width: 100%;
  max-width: none;
  text-align: center;
}
.partners__name-link--marquee {
  width: 100%;
  justify-content: center;
  max-width: none;
  box-sizing: border-box;
}
.partners-marquee .partners__name-hover {
  max-width: 100%;
  font-size: clamp(0.58rem, 1.2vw, 0.75rem);
  padding: 0.5rem 0.35rem 0.4rem;
}
@keyframes partners-marquee-x {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .partners-marquee__track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 70rem;
    margin-left: auto;
    margin-right: auto;
  }
  .partners-marquee__cell[aria-hidden="true"] {
    display: none;
  }
}

/* Vendors: premium layout, conversion-first */
.page-hero--vendors {
  --ph-accent: rgba(232, 163, 23, 0.18);
  --ph-accent-2: rgba(0, 107, 63, 0.14);
}
.page-hero--vendors .vendor-hero__intro .page-hero__headline.display,
.page-hero--performers .vendor-hero__intro .page-hero__headline.display {
  max-width: 100%;
  letter-spacing: 0.035em;
}
body.page--vendors {
  --vendor-rail: min(100% - 1.5rem, 72rem);
}
.vendor-hero__grid {
  position: relative;
  z-index: 1;
  width: var(--vendor-rail, min(100% - 1.5rem, 72rem));
  margin: 0 auto;
  padding: 0 0.75rem;
  display: grid;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 900px) {
  .vendor-hero__grid {
    grid-template-columns: 1fr min(18.5rem, 36vw);
    gap: 2.5rem 3.5rem;
  }
  .page-hero--vendors .page-hero__inner,
  .page-hero--vendors .vendor-hero__intro .page-hero__kicker,
  .page-hero--performers .vendor-hero__intro .page-hero__kicker {
    margin-left: 0;
  }
}
.vendor-hero__intro {
  max-width: 38rem;
}
.vendor-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-top: 1.75rem;
  align-items: center;
}
.vendor-hero__card {
  padding: 1.35rem 1.4rem 1.4rem;
  background: linear-gradient(155deg, rgba(28, 22, 16, 0.92) 0%, rgba(10, 8, 6, 0.75) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: left;
}
@media (min-width: 900px) {
  .vendor-hero__card {
    position: sticky;
    top: calc(var(--header-h) + 0.75rem);
  }
}
.vendor-hero__card-label {
  margin: 0 0 0.35rem;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.45);
}
.vendor-hero__card-price {
  margin: 0 0 0.35rem;
  font-size: clamp(1.2rem, 2.1vw, 1.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--c-gold-bright);
  letter-spacing: 0.02em;
}
.vendor-hero__card-fine {
  margin: 0 0 1.1rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.4;
}
.vendor-hero__card-bullets {
  list-style: none;
  margin: 0 0 1.15rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-size: 0.84rem;
  line-height: 1.4;
  color: rgba(245, 239, 228, 0.88);
}
.vendor-hero__card-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  margin-right: 0.4rem;
  vertical-align: middle;
  background: var(--c-gold);
  opacity: 0.9;
  transform: translateY(-1px);
}
.vendor-hero__card-call {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
  padding: 0.75rem 0.9rem;
  text-decoration: none;
  color: #fff;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(0, 135, 81, 0.45);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s, background 0.2s;
}
.vendor-hero__card-call:hover {
  border-color: var(--c-gold);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
}
.vendor-hero__card-call:focus-visible {
  outline: 2px solid var(--c-gold);
  outline-offset: 2px;
}
.vendor-hero__card-call-l {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
}
.vendor-hero__card-call-n {
  font-size: 1.1rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
  color: var(--c-cream);
}
/* Focus areas (vendors) */
.vendor-pillars-intro {
  text-align: center;
  max-width: 32rem;
  margin: 0.5rem auto 2rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
}
.hi-card--vendor-pillar {
  min-height: 7.5rem;
}
.hi-card--vendor-pillar p {
  font-size: 0.88rem;
  line-height: 1.5;
  margin: 0;
}
.hi-card--vendor-pillar .hi-card__title {
  font-size: 0.95rem;
}
/* Apply band */
.section--vendor-apply {
  position: relative;
  padding-top: clamp(2.5rem, 5vw, 3.75rem);
  padding-bottom: clamp(3rem, 6vw, 4.5rem);
  background: linear-gradient(180deg, #050403 0%, #0a0806 35%, #050403 100%);
  border-top: 1px solid rgba(232, 163, 23, 0.12);
}
.section--vendor-apply::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 163, 23, 0.35) 50%, transparent);
  pointer-events: none;
}
.form-shell--wide {
  max-width: 38rem;
}
.vendor-apply__head {
  text-align: center;
  margin-bottom: 1.75rem;
}
.vendor-apply__eyebrow {
  margin: 0 0 0.4rem;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--c-gold);
  opacity: 0.9;
}
.vendor-apply__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  line-height: 1.1;
  color: #f2ebe0;
}
.vendor-apply__meta {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 0.5rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.02em;
}
.vendor-apply__meta span:not(.vendor-apply__meta-dot) {
  font-weight: 500;
}
.vendor-apply__meta-dot {
  opacity: 0.4;
  user-select: none;
}
.form--vendor {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.btn--vendor-submit {
  min-width: 12rem;
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
  font-size: 1.02rem;
  letter-spacing: 0.06em;
}
/* Collapsible terms */
.vendor-terms-details {
  margin: 0.25rem 0 0.5rem;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.vendor-terms-details__summary {
  list-style: none;
  padding: 0.85rem 1rem 0.85rem 1.1rem;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.88);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  user-select: none;
  transition: background 0.2s, color 0.2s;
}
.vendor-terms-details__summary::-webkit-details-marker {
  display: none;
}
.vendor-terms-details__summary::after {
  content: "▾";
  font-size: 0.7rem;
  opacity: 0.55;
  transition: transform 0.2s;
  flex-shrink: 0;
}
.vendor-terms-details[open] .vendor-terms-details__summary::after {
  transform: rotate(180deg);
}
.vendor-terms-details__summary:hover {
  background: rgba(255, 255, 255, 0.04);
  color: var(--c-gold-bright);
}
.vendor-terms-details__hint {
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.78rem;
}
.vendor-terms-details__body {
  padding: 0 1.1rem 1.1rem 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.vendor-terms__list {
  margin: 0.75rem 0 0;
  padding-left: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.86rem;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.vendor-terms__list a.link-on-dark {
  font-weight: 600;
}
.form-group--check {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  cursor: pointer;
  font-size: 0.88rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
}
.form-check__input {
  width: 1.15rem;
  height: 1.15rem;
  min-width: 1.15rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
  accent-color: var(--c-gold);
  cursor: pointer;
}
.form-check__input.is-invalid {
  outline: 2px solid var(--c-red);
  outline-offset: 2px;
  border-radius: 2px;
}
.form-check__text {
  user-select: none;
}
a.link-on-dark,
.vendor-terms__list a.link-on-dark {
  color: var(--c-gold-bright);
  text-decoration: underline;
  text-decoration-color: rgba(232, 163, 23, 0.5);
  text-underline-offset: 2px;
}
a.link-on-dark:hover,
.vendor-terms__list a.link-on-dark:hover {
  color: #fff;
  text-decoration-color: var(--c-gold);
}
.form-success .link-on-dark {
  font-weight: 600;
}

/* Vendor applications closed */
.vendor-closed-notice {
  max-width: 36rem;
  padding: clamp(1.5rem, 3vw, 2rem) 0;
}
.vendor-closed-notice__body {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(245, 239, 228, 0.72);
}
.vendor-closed-notice__contact {
  margin: 0 0 1.25rem;
  font-size: 0.88rem;
  color: rgba(245, 239, 228, 0.58);
}

/* ── Costume participants: two-column form layout ── */
.cp-layout {
  display: grid;
  grid-template-columns: 1fr minmax(0, 22rem);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  max-width: 68rem;
  margin: 0 auto;
  padding-bottom: 4rem;
}
.cp-form-col {
  min-width: 0;
}
.form-row {
  display: grid;
  gap: 0 1rem;
}
.form-row--2 {
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 560px) {
  .form-row--2 {
    grid-template-columns: 1fr;
  }
}
.volunteer-form__section {
  margin: 1.35rem 0 0.85rem;
  padding-top: 0.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(232, 163, 23, 0.88);
}
.volunteer-form__section:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}
.guardian-consent {
  margin: 1.5rem 0 0.25rem;
  padding: 1.15rem 1rem 0.35rem;
  border: 1px solid rgba(232, 163, 23, 0.28);
  border-radius: var(--radius-sm);
  background: rgba(232, 163, 23, 0.05);
}
.guardian-consent__title {
  padding: 0 0.35rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(232, 163, 23, 0.95);
}
.guardian-consent__note {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  line-height: 1.45;
  opacity: 0.78;
}
.cp-aside__inner--volunteer {
  border-color: rgba(0, 135, 81, 0.28);
}
.volunteer-promo-strip {
  border-bottom: 1px solid rgba(0, 135, 81, 0.22);
  background: linear-gradient(90deg, rgba(0, 90, 55, 0.2), rgba(196, 92, 38, 0.14));
}
.volunteer-promo-strip__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  padding: 1.1rem 0;
}
.volunteer-promo-strip__eyebrow {
  margin: 0 0 0.2rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(232, 163, 23, 0.85);
}
.volunteer-promo-strip__text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(245, 239, 228, 0.88);
  max-width: 40rem;
}
.volunteer-promo-strip__btn {
  flex-shrink: 0;
  padding: 0.55rem 1.1rem;
  font-size: 0.82rem;
}

.cp-form-heading {
  font-size: clamp(1.3rem, 2.2vw, 1.6rem);
  margin-bottom: 0.35rem;
}
.cp-form-sub {
  margin-bottom: 1.4rem;
  opacity: 0.6;
}
.btn--full {
  width: 100%;
}

/* Sticky aside panel */
.cp-aside {
  position: sticky;
  top: 5.5rem;
}
.cp-aside__inner {
  background: rgba(18, 11, 7, 0.72);
  border: 1px solid rgba(232, 163, 23, 0.18);
  border-radius: var(--radius);
  padding: 1.75rem 1.6rem 1.6rem;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.cp-aside__kicker {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: rgba(232, 163, 23, 0.9);
  margin: 0 0 1.25rem;
}
.cp-aside__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.cp-aside__item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(245, 239, 228, 0.82);
}
.cp-aside__item strong {
  color: #f2ebe0;
  font-weight: 600;
}
.cp-aside__dot {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-gold, #e8a317);
  margin-top: 0.45em;
  box-shadow: 0 0 6px rgba(232, 163, 23, 0.55);
}
.cp-aside__divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(232, 163, 23, 0.25), transparent 80%);
  margin: 1.4rem 0 1.2rem;
}
.cp-aside__note {
  font-size: 0.78rem;
  line-height: 1.6;
  color: rgba(245, 239, 228, 0.45);
  margin: 0;
}
.cp-aside__note strong {
  color: rgba(245, 239, 228, 0.7);
}
.cp-aside__link {
  color: rgba(232, 163, 23, 0.85);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(232, 163, 23, 0.35);
  transition: color 0.2s, text-decoration-color 0.2s;
}
.cp-aside__link:hover {
  color: var(--c-gold);
  text-decoration-color: var(--c-gold);
}

/* Aso Ebi page: festival flyer column */
.cp-layout.ae-layout {
  max-width: 72rem;
  grid-template-columns: 1fr minmax(0, min(28rem, 100%));
}
.ae-form-lede {
  text-align: left;
  max-width: none;
  margin: 0 0 1.15rem;
  opacity: 0.72;
}
.ae-promo {
  background: rgba(18, 11, 7, 0.72);
  border: 1px solid rgba(232, 163, 23, 0.2);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.ae-promo__figure {
  margin: 0;
  line-height: 0;
  background: #14100d;
  width: 100%;
  height: clamp(8.75rem, 14vw, 12.75rem);
  overflow: hidden;
  position: relative;
}
.ae-promo__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 22%;
}
.ae-promo__body {
  padding: 1.35rem 1.4rem 1.5rem;
}
.ae-promo__question {
  margin: 0 0 0.85rem;
  padding: 0.55rem 0.85rem;
  background: rgba(255, 255, 255, 0.94);
  color: var(--c-ink);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  border-radius: var(--radius-sm);
  line-height: 1.35;
}
.ae-promo__partner {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(245, 239, 228, 0.88);
}
.ae-promo__partner strong {
  color: #f2ebe0;
}
.ae-promo__list {
  list-style: none;
  margin: 0 0 1.15rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.ae-promo__li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.85rem;
  line-height: 1.45;
  color: rgba(245, 239, 228, 0.82);
}
.ae-promo__dot {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-green-bright);
  margin-top: 0.42em;
  box-shadow: 0 0 6px rgba(0, 135, 81, 0.45);
}
.ae-promo__urgent {
  color: #ff9a9f;
  font-weight: 700;
}
.ae-promo__btn {
  width: 100%;
  text-align: center;
  margin-bottom: 1rem;
}
.ae-promo__tagline {
  margin: 0;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  color: rgba(232, 163, 23, 0.78);
  line-height: 1.45;
}

/* RSVP page — editorial board layout */
.section--rsvp-main {
  padding-top: clamp(2rem, 5vw, 3.25rem);
  padding-bottom: clamp(3rem, 8vw, 5rem);
  background: linear-gradient(180deg, rgba(8, 6, 4, 0.55) 0%, transparent 42%);
}
.rsvp-board {
  width: min(100% - 1.5rem, 72rem);
  margin: 0 auto;
  padding: 0 0.25rem;
}
.rsvp-board__grid {
  display: grid;
  grid-template-columns: minmax(0, min(38rem, 100%)) minmax(0, 1fr);
  gap: clamp(1.75rem, 4vw, 3.25rem);
  align-items: start;
}
.rsvp-board__story {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 3vw, 1.75rem);
  min-width: 0;
}
.rsvp-card {
  background: rgba(18, 11, 7, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: clamp(1.25rem, 3vw, 1.65rem) clamp(1.25rem, 3vw, 1.75rem);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.rsvp-card__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(232, 163, 23, 0.88);
}
.rsvp-card__title {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #f2ebe0;
  line-height: 1.05;
}
.rsvp-card__body {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.65;
  color: rgba(245, 239, 228, 0.76);
  max-width: 52ch;
}
.rsvp-hl {
  margin: 0;
}
.rsvp-hl__title {
  margin: 0 0 0.75rem;
  font-family: inherit;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
}
.rsvp-hl__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
}
@media (max-width: 520px) {
  .rsvp-hl__grid {
    grid-template-columns: 1fr;
  }
}
.rsvp-hl__item {
  margin: 0;
  padding: 0.55rem 0.7rem;
  font-size: 0.8rem;
  line-height: 1.45;
  color: rgba(245, 239, 228, 0.82);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.rsvp-board__form {
  position: sticky;
  top: 5.25rem;
  min-width: 0;
}
.rsvp-form-head {
  margin-bottom: 1rem;
}
.rsvp-form-head__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(232, 163, 23, 0.88);
}
.rsvp-form-head__title {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #f2ebe0;
  line-height: 1.05;
}
.rsvp-form-head__meta {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.65rem;
  font-size: 0.78rem;
  color: rgba(245, 239, 228, 0.48);
  letter-spacing: 0.02em;
}
.rsvp-form-head__meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.rsvp-form-head__meta-dot {
  opacity: 0.45;
  font-weight: 400;
}
.rsvp-form-lede {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(245, 239, 228, 0.58);
}
.input--number {
  max-width: 6rem;
}
.form.form--rsvp {
  padding: clamp(1.65rem, 3.5vw, 2.1rem) clamp(1.35rem, 3vw, 1.85rem) clamp(1.85rem, 3.5vw, 2.35rem);
}
.rsvp-vip-surface {
  margin-top: 0.25rem;
  padding: 1rem 1rem 0.25rem;
  border-radius: var(--radius-sm);
  background: rgba(0, 135, 81, 0.08);
  border: 1px solid rgba(0, 135, 81, 0.22);
}
.rsvp-vip-fieldset__teaser {
  margin: 0 0 0.75rem;
  font-size: 0.84rem;
  line-height: 1.55;
  color: rgba(245, 239, 228, 0.66);
  font-weight: 400;
}
@media (max-width: 900px) {
  .rsvp-board__grid {
    grid-template-columns: 1fr;
  }
  .rsvp-board__form {
    position: static;
  }
}

/* Responsive: stack on mobile — aside above form */
@media (max-width: 820px) {
  .cp-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: 3rem;
  }
  .cp-aside {
    position: static;
    order: -1;
  }
  .cp-form-col {
    order: 1;
  }
}

/* VIP tickets */
.page-hero--vip {
  --ph-accent: rgba(232, 163, 23, 0.24);
  --ph-accent-2: rgba(0, 107, 63, 0.16);
}
.page-hero--vip .vendor-hero__intro .page-hero__headline.display {
  max-width: 100%;
  letter-spacing: 0.035em;
}
.vip-hero__scarcity {
  color: rgba(232, 163, 23, 0.85);
  font-weight: 600;
}
.vip-hero__checkout {
  margin-top: 0.15rem;
}
.vip-hero__checkout-note {
  margin: 0.75rem 0 0;
  font-size: 0.78rem;
  line-height: 1.45;
  color: rgba(245, 239, 228, 0.48);
}
.vip-hero__sold-out {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(245, 239, 228, 0.72);
}
.vip-details__inner {
  max-width: 52rem;
}
.vip-details__grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.5rem;
}
@media (min-width: 720px) {
  .vip-details__grid {
    grid-template-columns: 1fr 1fr;
  }
}
.vip-details__card {
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}
.vip-details__card-title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #f2ebe0;
}
.vip-details__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(245, 239, 228, 0.72);
}
.vip-details__body {
  margin: 0 0 0.75rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(245, 239, 228, 0.72);
}
.vip-details__body:last-child {
  margin-bottom: 0;
}
.vip-promo-strip {
  border-bottom: 1px solid rgba(232, 163, 23, 0.2);
  background: linear-gradient(90deg, rgba(196, 92, 38, 0.22), rgba(0, 90, 55, 0.18));
}
.vip-promo-strip__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem 1.25rem;
  padding: 0.85rem 0;
}
.vip-promo-strip__text {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: rgba(245, 239, 228, 0.88);
}
.vip-promo-strip__btn {
  flex-shrink: 0;
  padding: 0.55rem 1.1rem;
  font-size: 0.82rem;
}
.rsvp-card--vip {
  border-color: rgba(232, 163, 23, 0.28);
  background: linear-gradient(155deg, rgba(232, 163, 23, 0.08), rgba(0, 90, 55, 0.06));
}
.rsvp-vip-upsell__price {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--c-gold-bright);
}
.rsvp-vip-upsell__scarcity {
  font-weight: 500;
  color: rgba(245, 239, 228, 0.72);
}
.page-hero--vip-thanks .page-hero__inner {
  max-width: 36rem;
}
.vip-thanks__card {
  margin: 1.5rem 0 0;
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid rgba(232, 163, 23, 0.25);
  background: rgba(255, 255, 255, 0.04);
}
.vip-thanks__card-title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #f2ebe0;
}
.vip-thanks__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(245, 239, 228, 0.75);
}
