:root {
  --cream: #f7f4ec;
  --cream-light: #faf8f1;
  --beige: #ede4d2;
  --charcoal: #111111;
  --black: #050505;
  --olive: #6f7f46;
  --olive-2: #7a8a55;
  --brown: #a87545;
  --yellow: #f4c542;
  --divider: #e5e2da;
  --muted: #68645c;
  --white: #ffffff;
  --header-height: 82px;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #383838;
  color: var(--charcoal);
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 4px;
}

.site-header {
  align-items: center;
  color: var(--white);
  display: grid;
  gap: 24px;
  grid-template-columns: 190px 1fr auto;
  height: var(--header-height);
  left: 0;
  padding: 0 36px;
  position: fixed;
  right: 0;
  top: 0;
  transition: background 220ms ease, backdrop-filter 220ms ease, height 220ms ease;
  z-index: 20;
}

.site-header.is-scrolled,
.site-header.is-open {
  backdrop-filter: blur(18px);
  background: rgba(0, 0, 0, 0.55);
  height: 72px;
}

.site-header[data-solid-header] {
  backdrop-filter: none;
  background: var(--black);
}

.brand {
  display: inline-flex;
  align-items: center;
  position: relative;
  z-index: 22;
}

.brand-logo {
  display: block;
  height: 48px;
  width: auto;
}

.desktop-nav {
  align-items: center;
  display: flex;
  gap: clamp(18px, 3vw, 40px);
  justify-content: center;
}

.desktop-nav a,
.mobile-nav a,
.site-footer nav a,
.socials a {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.desktop-nav a,
.header-actions a,
.mobile-nav a {
  opacity: 0.9;
  transition: opacity 180ms ease, transform 180ms ease;
}

.desktop-nav a:hover,
.header-actions a:hover,
.mobile-nav a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.header-actions {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  position: relative;
  z-index: 22;
}

.header-actions svg {
  fill: none;
  height: 22px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 22px;
}

.menu-toggle {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--white);
  cursor: pointer;
  display: none;
  flex-direction: column;
  gap: 7px;
  height: 42px;
  justify-content: center;
  padding: 0;
  width: 42px;
  z-index: 22;
}

.menu-toggle span {
  background: currentColor;
  display: block;
  height: 2px;
  transition: transform 180ms ease;
  width: 26px;
}

.site-header.is-open .menu-toggle span:first-child {
  transform: translateY(4.5px) rotate(45deg);
}

.site-header.is-open .menu-toggle span:last-child {
  transform: translateY(-4.5px) rotate(-45deg);
}

.mobile-nav {
  background: rgba(5, 5, 5, 0.94);
  display: none;
  flex-direction: column;
  gap: 0;
  left: 0;
  padding: 98px 26px 30px;
  position: fixed;
  right: 0;
  top: 0;
  transform: translateY(-110%);
  transition: transform 220ms ease;
  z-index: 21;
}

.mobile-nav a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 20px;
  padding: 18px 0;
}

.hero {
  color: var(--white);
  min-height: 100svh;
  overflow: hidden;
  position: relative;
}

.hero-video,
.feature-band img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.media-overlay {
  background: rgba(0, 0, 0, 0.34);
  inset: 0;
  position: absolute;
}

.hero-content {
  left: clamp(22px, 8vw, 116px);
  max-width: 850px;
  position: absolute;
  top: 30%;
  transform: translateY(-50%);
  z-index: 2;
}

.eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--olive);
}

.current-event-partner-card .eyebrow.dark {
  color: var(--black);
  font-size: 20px;
  letter-spacing: 0.18em;
  margin-bottom: 20px;
}

.eyebrow.light {
  color: var(--beige);
}

h1,
h2,
h3 {
  margin: 0;
}

h1,
h2 {
  font-family: "Bebas Neue", "Oswald", Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.9;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(78px, 13vw, 178px);
  max-width: 900px;
}

h2 {
  font-size: clamp(54px, 8vw, 120px);
}

h3 {
  font-size: 20px;
  letter-spacing: 0;
}

.hero-copy {
  font-size: clamp(19px, 2vw, 28px);
  font-weight: 600;
  margin: 18px 0 28px;
}

.hero-actions {
  align-items: center;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 10px;
  display: inline-flex;
  font-size: 14px;
  font-weight: 900;
  justify-content: center;
  letter-spacing: 0.12em;
  min-height: 52px;
  min-width: 168px;
  padding: 15px 22px;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

.button-light {
  background: var(--white);
  color: var(--black);
}

.button-light:hover {
  background: var(--beige);
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.8);
  color: var(--white);
}

.button-outline:hover {
  background: var(--white);
  color: var(--black);
}

.button-dark {
  background: var(--black);
  color: var(--white);
}

.button-dark:hover {
  background: var(--olive);
}

.button-map {
  background: transparent;
  border-color: var(--black);
  color: var(--black);
}

.button-map:hover {
  background: var(--black);
  color: var(--white);
}

.hero-meta {
  bottom: 34px;
  font-size: 12px;
  font-weight: 800;
  left: clamp(22px, 8vw, 116px);
  letter-spacing: 0.12em;
  margin: 0;
  position: absolute;
  text-transform: uppercase;
  z-index: 2;
}

.scroll-indicator {
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 20px;
  bottom: 28px;
  height: 42px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 24px;
  z-index: 2;
}

.scroll-indicator span {
  animation: scrollPulse 1.6s ease-in-out infinite;
  background: var(--white);
  border-radius: 999px;
  height: 7px;
  left: 50%;
  position: absolute;
  top: 8px;
  transform: translateX(-50%);
  width: 3px;
}

@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.3;
    transform: translate(-50%, 0);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, 10px);
  }
}

.section-pad {
  padding: clamp(100px, 10vw, 146px) clamp(22px, 6vw, 86px);
}

.intro {
  background: var(--cream);
}

.intro-grid {
  border-top: 1px solid var(--divider);
  display: grid;
  gap: clamp(34px, 8vw, 112px);
  grid-template-columns: minmax(260px, 0.9fr) minmax(280px, 0.72fr);
  margin: 0 auto;
  max-width: 1320px;
  padding-top: clamp(36px, 6vw, 74px);
}

.intro p,
.newsletter-inner p {
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 22px);
  margin: 0;
}

.intro p + p {
  margin-top: 22px;
}

.section-heading {
  margin: 0 auto clamp(32px, 5vw, 58px);
  max-width: 1320px;
}

.events {
  background: var(--cream-light);
}

.events-cta {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 34px;
}

.card-grid,
.highlight-grid {
  display: grid;
  margin: 0 auto;
  max-width: 1320px;
}

.three {
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.event-card,
.highlight-card {
  background: var(--white);
  border: 1px solid var(--divider);
  border-radius: 8px;
  overflow: hidden;
}

.event-card img {
  aspect-ratio: 1.25;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.poster-button,
.gallery-button {
  background: transparent;
  border: 0;
  color: inherit;
  cursor: zoom-in;
  display: block;
  padding: 0;
  width: 100%;
}

a.poster-button {
  cursor: pointer;
}

.poster-button img,
.gallery-button img {
  display: block;
  transition: filter 220ms ease, transform 220ms ease;
}

.event-poster,
.current-event-poster img {
  height: auto;
  object-fit: contain;
  width: 100%;
}

.poster-button:hover img,
.gallery-button:hover img {
  filter: brightness(0.86);
  transform: scale(1.015);
}

.poster-button:focus-visible,
.gallery-button:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: -3px;
}

.event-card img.event-poster {
  aspect-ratio: 4 / 5;
  object-position: center;
}

.event-body {
  padding: 22px;
}

.highlight-card p {
  color: var(--muted);
  margin: 12px 0 0;
}

.tag {
  border-radius: 4px;
  color: var(--white);
  display: inline-flex;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
  padding: 7px 9px;
  text-transform: uppercase;
}

.tag.olive {
  background: var(--olive);
}

.tag.brown {
  background: var(--brown);
}

.tag.yellow {
  background: var(--yellow);
  color: var(--black);
}

.event-body p {
  color: var(--muted);
  margin: 8px 0 18px;
}

.event-body a {
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lightbox {
  align-items: center;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(8px);
  display: none;
  inset: 0;
  justify-content: center;
  padding: 72px 22px 28px;
  position: fixed;
  z-index: 1000;
}

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

.lightbox img {
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.48);
  display: block;
  max-height: calc(100vh - 120px);
  max-width: min(94vw, 1280px);
  object-fit: contain;
  width: auto;
}

.lightbox-close {
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  color: var(--black);
  cursor: pointer;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  padding: 10px 12px;
  position: absolute;
  right: 22px;
  text-transform: uppercase;
  top: 22px;
}

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

.highlights {
  background: var(--cream);
}

.highlight-grid {
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.highlight-card {
  min-height: 210px;
  padding: clamp(22px, 3vw, 30px);
}

.collab-logos {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-bottom: 22px;
  min-height: 110px;
}

.collab-logos img {
  display: block;
  max-height: 96px;
  max-width: 100%;
  object-fit: contain;
}

.feature-band {
  color: var(--white);
  min-height: 65vh;
  overflow: hidden;
  position: relative;
}

.feature-content {
  bottom: clamp(40px, 8vw, 90px);
  left: clamp(22px, 8vw, 116px);
  max-width: 710px;
  position: absolute;
  z-index: 2;
}

.feature-content p {
  font-size: clamp(17px, 1.6vw, 24px);
  font-weight: 500;
  margin: 18px 0 0;
  max-width: 650px;
}

.gallery {
  background: var(--cream);
}

.gallery-grid {
  column-count: 3;
  column-gap: 14px;
  gap: 14px;
  margin: 0 auto;
  max-width: 1320px;
}

.gallery-item {
  border-radius: 8px;
  break-inside: avoid;
  margin: 0;
  margin-bottom: 14px;
  overflow: hidden;
}

.gallery-button {
  height: auto;
}

.gallery-item.tall {
  grid-row: auto;
}

.gallery-item.wide {
  grid-column: auto;
}

.gallery-item img {
  height: auto;
  object-fit: contain;
  transition: filter 220ms ease, transform 350ms ease;
  width: 100%;
}

.gallery-item-long img {
  height: clamp(420px, 52vw, 680px);
  object-fit: cover;
}

.gallery-item:hover img {
  filter: brightness(0.82);
  transform: scale(1.045);
}

.newsletter {
  background: var(--black);
  color: var(--white);
  text-align: center;
}

.current-event-page {
  background: var(--cream-light);
  display: flex;
  justify-content: center;
  padding-top: var(--header-height);
}

.current-event {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 4vw, 52px);
  justify-content: center;
  margin: 0 auto;
  max-width: 1480px;
  min-height: calc(100svh - var(--header-height));
  text-align: center;
  width: 100%;
}

.current-event-copy {
  margin: 0 auto;
  max-width: 720px;
}

.current-event-copy h1 {
  color: var(--black);
  font-size: clamp(74px, 11vw, 150px);
}

.current-event-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(17px, 1.4vw, 22px);
  margin: 18px 0 0;
}

.event-payment-note {
  font-weight: 800;
}

.event-info-highlight {
  color: var(--black);
  margin: 24px auto 0;
}

.current-event-copy .event-info-highlight p {
  color: var(--black);
  font-size: clamp(16px, 1.3vw, 20px);
  font-weight: 900;
  margin: 8px 0 0;
}

.current-event-copy .event-info-highlight p:first-child {
  margin-top: 0;
}

.event-info-highlight strong {
  color: var(--black);
  display: block;
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.current-event-copy p.event-conduct-note {
  background: #fff1f1;
  border: 3px solid #b31212;
  border-radius: 16px;
  color: #b31212;
  font-style: italic;
  font-weight: 900;
  padding: 18px;
  text-transform: uppercase;
}

.event-parking-notice {
  background: #fffbe6;
  border: 3px solid #d8a400;
  border-radius: 18px;
  display: grid;
  gap: 20px;
  margin: 32px 0 0 50%;
  max-width: none;
  padding: clamp(16px, 2vw, 28px);
  text-align: left;
  transform: translateX(-50%);
  width: min(96vw, 1800px);
}

.event-parking-copy h2 {
  color: var(--black);
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(16px, 1.2vw, 20px);
  font-weight: 900;
  letter-spacing: 0.02em;
  margin: 0;
}

.event-parking-copy p {
  margin-top: 12px;
}

.current-event-copy .event-parking-copy p {
  color: var(--black);
  font-size: clamp(12px, 0.8vw, 14px);
  font-weight: 800;
}

.current-event-copy .event-parking-copy .parking-warning {
  background: #ffe66b;
  border: 2px solid var(--black);
  border-radius: 12px;
  color: var(--black);
  font-weight: 950;
  padding: 14px 16px;
  text-transform: uppercase;
}

.parking-map-button {
  background: transparent;
  border: 0;
  cursor: zoom-in;
  display: block;
  padding: 0;
  width: 100%;
}

.parking-map-button img {
  border: 3px solid var(--black);
  border-radius: 16px;
  box-shadow: 0 28px 90px rgba(17, 17, 17, 0.28);
  height: auto;
  object-fit: contain;
  width: 100%;
}

.event-scroll-cue {
  align-items: center;
  color: var(--black);
  display: inline-flex;
  flex-direction: column;
  font-size: 13px;
  font-weight: 950;
  justify-self: center;
  letter-spacing: 0.08em;
  margin-top: 2px;
  text-decoration: none;
  text-transform: uppercase;
}

.event-scroll-cue-top {
  background: var(--black);
  border-radius: 10px;
  color: var(--white);
  margin: 20px auto 0;
  padding: 14px 22px 18px;
}

.event-scroll-cue-top .event-scroll-arrow {
  border-color: var(--white);
}

.event-scroll-arrow {
  animation: scrollCueBounce 1.25s ease-in-out infinite;
  border-bottom: 3px solid var(--black);
  border-right: 3px solid var(--black);
  display: block;
  height: 18px;
  margin-top: 8px;
  transform: rotate(45deg);
  width: 18px;
}

@keyframes scrollCueBounce {
  0%,
  100% {
    opacity: 0.45;
    transform: translateY(0) rotate(45deg);
  }

  50% {
    opacity: 1;
    transform: translateY(8px) rotate(45deg);
  }
}

.current-event-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 28px;
}

.current-event-layout {
  align-items: start;
  display: grid;
  gap: clamp(28px, 4vw, 58px);
  grid-template-columns: minmax(360px, 680px) minmax(360px, 680px);
  justify-content: center;
  width: 100%;
}

.current-event-partner-card {
  margin: clamp(32px, 4vw, 48px) auto 0;
  max-width: 1320px;
  width: 100%;
}

.current-event-partner-card .eyebrow.dark {
  text-align: center;
}

.partner-card-list {
  display: flex;
  gap: 24px;
  padding-bottom: 10px;
  padding-inline: 16px;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
}

.partner-card-horizontal {
  min-width: 280px;
  flex: 1 1 280px;
  border-radius: 18px;
  background: transparent;
  border-color: transparent;
}

.partner-horizontal {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 30px;
}


.partner-horizontal .collab-logos {
  flex: 0 0 140px;
  max-width: 140px;
}

.partner-horizontal .collab-logos img {
  width: 100%;
  height: auto;
  display: block;
}

.partner-horizontal .partner-details h3 {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.2;
  overflow-wrap: anywhere;
  white-space: normal;
}

.partner-title {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  text-align: center;
}

@media (max-width: 900px) {
  .partner-horizontal {
    gap: 12px;
  }
}

@media (max-width: 620px) {
  .partner-horizontal {
    padding: 22px;
  }
}

.current-event-poster {
  max-width: none;
  width: 100%;
}

.current-event-poster img {
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(17, 17, 17, 0.18);
  display: block;
}

.current-event-poster .poster-button {
  border-radius: 18px;
  overflow: hidden;
}

.event-activities-note {
  background: var(--white);
  border: 2px solid var(--black);
  border-radius: 14px;
  box-shadow: 0 18px 48px rgba(17, 17, 17, 0.16);
  margin-top: 18px;
  padding: 18px;
  text-align: left;
}

.event-activities-note h3 {
  color: var(--black);
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(18px, 1.5vw, 24px);
  font-weight: 950;
  letter-spacing: 0.04em;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.event-activities-note p {
  color: var(--charcoal);
  font-size: clamp(15px, 1.2vw, 18px);
  font-weight: 800;
  margin: 0;
}

.rsvp-panel {
  color: var(--black);
  max-width: none;
  text-align: left;
  width: 100%;
}

.rsvp-panel h2 {
  color: var(--black);
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 900;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}

.rsvp-sold-out {
  background: var(--white);
  border: 2px solid #9d1d1d;
  border-radius: 18px;
  color: var(--black);
  padding: clamp(28px, 3.4vw, 42px);
}

.rsvp-sold-out h3 {
  color: #9d1d1d;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 900;
  letter-spacing: 0.02em;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.rsvp-sold-out p {
  color: var(--charcoal);
  font-size: clamp(17px, 1.4vw, 21px);
  font-weight: 800;
  margin: 0;
}

.rsvp-form {
  background: var(--white);
  border-radius: 18px;
  color: var(--black);
  padding: clamp(28px, 3.4vw, 42px);
}

.rsvp-form label {
  display: block;
  font-size: clamp(18px, 1.5vw, 23px);
  font-weight: 900;
  margin-bottom: 8px;
}

.rsvp-form label span {
  color: var(--muted);
  font-size: 0.82em;
  font-weight: 500;
}

.rsvp-form input {
  background: var(--white);
  border: 2px solid var(--black);
  border-radius: 12px;
  color: var(--black);
  display: block;
  font: inherit;
  min-height: 70px;
  margin-bottom: 26px;
  padding: 16px 18px;
  width: 100%;
}

.rsvp-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr 1fr;
}

.rsvp-form input:focus {
  border-color: var(--olive);
  outline: 3px solid rgba(111, 127, 70, 0.25);
}

.rsvp-options {
  border: 0;
  display: grid;
  gap: 12px;
  margin: 2px 0 24px;
  padding: 0;
}

.rsvp-options legend {
  color: var(--black);
  font-size: clamp(18px, 1.5vw, 23px);
  font-weight: 900;
  margin-bottom: 10px;
}

.rsvp-options legend span {
  color: var(--muted);
  font-size: 0.82em;
  font-weight: 500;
}

.rsvp-option {
  align-items: flex-start;
  border: 2px solid var(--black);
  border-radius: 12px;
  cursor: pointer;
  display: grid;
  gap: 14px;
  grid-template-columns: auto 1fr;
  margin: 0;
  padding: 16px;
}

.rsvp-option:has(input:checked) {
  border-color: var(--olive);
  box-shadow: 0 0 0 3px rgba(111, 127, 70, 0.2);
}

.rsvp-option input,
.rsvp-policy input {
  accent-color: var(--olive);
  height: 22px;
  margin: 3px 0 0;
  min-height: auto;
  width: 22px;
}

.rsvp-option strong,
.rsvp-option small {
  display: block;
}

.rsvp-option strong {
  font-size: 16px;
  letter-spacing: 0;
}

.rsvp-option small {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  margin-top: 3px;
}

.rsvp-policy {
  align-items: flex-start;
  display: grid;
  gap: 12px;
  grid-template-columns: auto 1fr;
  margin-bottom: 18px;
}

.rsvp-policy span {
  color: var(--charcoal);
  font-size: 14px;
  font-weight: 700;
}

.rsvp-status {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 16px;
  min-height: 22px;
}

.rsvp-status.is-error {
  color: #9d1d1d;
}

.rsvp-status.is-success {
  color: var(--olive);
}

.rsvp-form button {
  background: var(--black);
  border: 1px solid var(--black);
  border-radius: 12px;
  color: var(--white);
  cursor: pointer;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.08em;
  min-height: 68px;
  padding: 18px 32px;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.rsvp-form button:hover,
.rsvp-form button:focus-visible {
  background: var(--olive);
  color: var(--white);
  outline: none;
  transform: translateY(-2px);
}

.rsvp-form button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.thank-you-page {
  align-items: center;
  background: var(--cream-light);
  display: flex;
  justify-content: center;
  min-height: 100svh;
  padding: 28px;
  text-align: center;
}

.thank-you-content {
  max-width: 680px;
}

.thank-you-content h1 {
  color: var(--black);
  font-size: clamp(88px, 14vw, 160px);
}

.thank-you-content p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(18px, 1.5vw, 22px);
  margin: 16px auto 28px;
}

.newsletter-inner {
  margin: 0 auto;
  max-width: 760px;
}

.newsletter-inner h2 {
  margin-bottom: 16px;
}

.newsletter-inner p {
  color: rgba(255, 255, 255, 0.72);
}

.signup-form {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr auto;
  margin: 34px auto 0;
  max-width: 560px;
}

.signup-form input {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 4px;
  color: var(--white);
  min-height: 52px;
  padding: 0 16px;
}

.signup-form textarea {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 4px;
  color: var(--white);
  min-height: 132px;
  padding: 15px 16px;
  resize: vertical;
}

.signup-form input::placeholder,
.signup-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.52);
}

.signup-form button {
  background: var(--cream);
  border: 1px solid var(--cream);
  border-radius: 4px;
  color: var(--black);
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.12em;
  min-height: 52px;
  padding: 0 24px;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.signup-form button:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  transform: translateY(-1px);
}

.contact-list {
  display: grid;
  gap: 8px;
  margin: 28px auto 0;
  max-width: 560px;
}

.contact-list a,
.contact-list span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 700;
}

.contact-list a {
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.35);
  text-underline-offset: 4px;
}

.contact-form {
  grid-template-columns: 1fr 1fr;
  max-width: 700px;
}

.contact-form textarea,
.contact-form button {
  grid-column: 1 / -1;
}

.form-note {
  font-size: 14px;
  margin-top: 14px;
  min-height: 22px;
}

.site-footer {
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  display: grid;
  gap: 30px;
  grid-template-columns: 1.2fr 1fr 1fr;
  padding: 44px clamp(22px, 6vw, 86px) 30px;
}

.footer-brand p,
.copyright {
  color: rgba(255, 255, 255, 0.56);
}

.footer-brand p {
  margin: 16px 0 0;
}

.site-footer nav,
.socials {
  align-content: start;
  display: grid;
  gap: 12px;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 24px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

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

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
    padding: 0 22px;
  }

  .desktop-nav {
    display: none;
  }

  .header-actions {
    gap: 12px;
  }

  .menu-toggle {
    display: flex;
  }

  .mobile-nav {
    display: flex;
  }

  .site-header.is-open .mobile-nav {
    transform: translateY(0);
  }

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

  .current-event-layout {
    grid-template-columns: 1fr;
    max-width: 720px;
  }

  .current-event-poster {
    max-width: 720px;
  }

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

  .gallery-grid {
    column-count: 2;
  }

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

@media (max-width: 680px) {
  :root {
    --header-height: 74px;
  }

  .site-header {
    gap: 14px;
    height: var(--header-height);
  }

  .brand-logo {
    height: 40px;
  }

  .header-actions a:not(:last-child) {
    display: none;
  }

  .hero-content {
    bottom: 104px;
    max-width: calc(100% - 44px);
    top: auto;
    transform: none;
  }

  h1 {
    font-size: clamp(68px, 23vw, 104px);
  }

  .hero-copy {
    margin-top: 14px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    max-width: 260px;
  }

  .button {
    width: 100%;
  }

  .hero-meta {
    bottom: 28px;
    max-width: 220px;
  }

  .scroll-indicator {
    display: none;
  }

  .three,
  .highlight-grid,
  .rsvp-grid,
  .signup-form,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    column-count: 1;
  }

  .gallery-item.tall,
  .gallery-item.wide {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-item-long img {
    height: auto;
    object-fit: contain;
  }

  .feature-band {
    min-height: 560px;
  }

  .feature-content {
    max-width: calc(100% - 44px);
  }

  .current-event {
    overflow: hidden;
  }

  .current-event-copy {
    max-width: 100%;
    width: 100%;
  }

  .current-event-copy h1 {
    font-size: clamp(56px, 17vw, 78px);
    line-height: 0.95;
  }

  .current-event-copy p:not(.eyebrow) {
    font-size: clamp(17px, 4.8vw, 20px);
    line-height: 1.42;
  }

  .current-event-copy p.event-conduct-note {
    border-radius: 14px;
    font-size: clamp(18px, 5.2vw, 24px);
    padding: 16px;
  }

  .event-info-highlight {
    border-radius: 14px;
    padding: 16px;
  }

  .current-event-copy .event-info-highlight p {
    font-size: clamp(15px, 4.2vw, 18px);
  }

  .event-info-highlight strong {
    font-size: clamp(18px, 5vw, 24px);
  }

  .event-scroll-cue-top {
    width: min(100%, 300px);
  }

  .event-parking-notice {
    border-width: 2px;
    gap: 12px;
    margin: 28px 0 0;
    padding: 12px;
    transform: none;
    width: 100%;
  }

  .current-event-copy .event-parking-copy .parking-warning {
    padding: 12px;
  }

  .parking-map-button img {
    border-width: 2px;
    border-radius: 12px;
    box-shadow: 0 18px 48px rgba(17, 17, 17, 0.22);
  }

  .collab-logos {
    min-height: 92px;
  }

  .collab-logos img {
    max-height: 78px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
