@font-face {
  font-family: "Kenzy DM Sans";
  src: url("/assets/fonts/dm-sans-latin-wght-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 1000;
  font-display: swap;
}

@font-face {
  font-family: "Kenzy DM Sans";
  src: url("/assets/fonts/dm-sans-latin-wght-italic.woff2") format("woff2");
  font-style: italic;
  font-weight: 100 1000;
  font-display: swap;
}

@font-face {
  font-family: "Kenzy Space Grotesk";
  src: url("/assets/fonts/space-grotesk-latin-wght-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --ink: #0b0a0d;
  --ink-raised: #151217;
  --ink-soft: #211c23;
  --paper: #f7f2f5;
  --paper-raised: #fffafd;
  --pink: #f7a9d2;
  --pink-strong: #ff8bc7;
  --text: #fffafd;
  --muted: #b9b0b7;
  --dark-text: #151217;
  --border: rgba(255, 255, 255, 0.13);
  --dark-border: rgba(21, 18, 23, 0.13);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --page-gutter: clamp(1.875rem, 5vw, 3rem);
  --page: min(1180px, calc(100% - (var(--page-gutter) * 2)));
  --font-body: "Kenzy DM Sans", Arial, sans-serif;
  --font-display: "Kenzy Space Grotesk", "Kenzy DM Sans", Arial, sans-serif;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --shadow: 0 24px 60px rgba(11, 10, 13, 0.18);
}

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

html {
  max-width: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  background: var(--ink);
}

body {
  min-width: 0;
  margin: 0;
  overflow-x: clip;
  background: var(--ink);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
  overscroll-behavior: none;
}

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

img {
  height: auto;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 1.04;
  letter-spacing: -0.045em;
  hyphens: manual;
  overflow-wrap: normal;
  text-wrap: balance;
}

p,
li,
dt,
dd,
figcaption {
  text-wrap: pretty;
}

.text-nowrap {
  white-space: nowrap;
}

::selection {
  background: var(--pink);
  color: var(--dark-text);
}

:focus-visible {
  outline: 3px solid var(--pink);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--paper-raised);
  color: var(--dark-text);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  height: 86px;
  border-bottom: 1px solid transparent;
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-open,
.subpage .site-header {
  border-color: var(--border);
  background: rgba(11, 10, 13, 0.84);
  box-shadow: 0 12px 34px rgba(11, 10, 13, 0.14);
  backdrop-filter: blur(20px) saturate(135%);
  -webkit-backdrop-filter: blur(20px) saturate(135%);
}

.nav-shell {
  display: flex;
  width: var(--page);
  height: 100%;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: 116px;
  height: 68px;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.site-nav a {
  display: inline-flex;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 999px;
  align-items: center;
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition:
    background-color 180ms ease,
    color 180ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: rgba(247, 169, 210, 0.13);
  color: var(--pink);
}

.nav-toggle {
  position: relative;
  z-index: 2;
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--ink-soft);
  color: var(--text);
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    transform 140ms var(--ease-out);
  touch-action: manipulation;
}

.nav-toggle:active {
  transform: scale(0.96);
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  position: absolute;
  left: 14px;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  content: "";
  transition:
    transform 220ms var(--ease-out),
    opacity 160ms ease;
}

.nav-toggle::before {
  top: 16px;
}

.nav-toggle span {
  top: 22px;
}

.nav-toggle::after {
  top: 28px;
}

.nav-toggle[aria-expanded="true"]::before {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"]::after {
  transform: translateY(-6px) rotate(-45deg);
}

.section {
  padding: 120px 0;
}

.section-shell {
  width: var(--page);
  margin: 0 auto;
}

.section-kicker {
  margin-bottom: 16px;
  color: var(--pink);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-title {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(42px, 6vw, 76px);
}

.section-lead {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 150px var(--page-gutter) 100px;
  overflow: hidden;
  place-items: center;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(circle at 20% 40%, rgba(247, 169, 210, 0.18), transparent 38%),
    linear-gradient(180deg, rgba(11, 10, 13, 0.42), rgba(11, 10, 13, 0.86));
  content: "";
}

.hero-video {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-copy {
  width: min(900px, 100%);
  text-align: center;
}

.hero-kicker {
  margin-bottom: 18px;
  color: var(--pink);
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  margin-bottom: 22px;
  font-size: clamp(64px, 12vw, 156px);
  line-height: 0.84;
  letter-spacing: -0.075em;
}

.hero-copy > p:last-of-type {
  max-width: 680px;
  margin: 0 auto;
  color: rgba(255, 250, 253, 0.82);
  font-size: clamp(18px, 2.2vw, 24px);
}

.scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue::after {
  content: "↓";
  color: var(--pink);
  font-size: 19px;
}

.events-section {
  background: var(--paper);
  color: var(--dark-text);
}

.events-section .section-kicker {
  color: #a74277;
}

.events-section .section-lead {
  color: #625a60;
}

.events-grid {
  display: grid;
  margin-top: 54px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.event-card {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--ink-soft);
  color: var(--text);
  box-shadow: 0 20px 48px rgba(21, 18, 23, 0.12);
  isolation: isolate;
}

.event-card::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 10, 13, 0.03) 26%, rgba(11, 10, 13, 0.94) 100%);
  content: "";
}

.event-card img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms var(--ease-out);
}

.event-card-content {
  position: absolute;
  inset: auto 0 0;
  padding: 28px;
}

.event-card-label {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(11, 10, 13, 0.58);
  color: var(--pink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.event-card h3 {
  margin-bottom: 18px;
  font-size: clamp(27px, 3vw, 38px);
}

.button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition:
    transform 150ms var(--ease-out),
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.button:active,
.text-link:active {
  transform: scale(0.98);
}

.button-primary {
  background: var(--pink);
  color: var(--dark-text);
}

.button-secondary {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.about-section {
  position: relative;
  overflow: hidden;
}

.about-section::before {
  position: absolute;
  top: 20%;
  right: -18vw;
  width: 42vw;
  height: 42vw;
  border-radius: 50%;
  background: rgba(247, 169, 210, 0.08);
  content: "";
  filter: blur(5px);
  pointer-events: none;
}

.about-grid {
  display: grid;
  align-content: center;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  grid-template-areas:
    "title media"
    "copy media";
  column-gap: clamp(54px, 8vw, 110px);
  row-gap: 28px;
}

.about-title {
  grid-area: title;
  align-self: end;
  margin: 0;
}

.about-copy {
  grid-area: copy;
  align-self: start;
}

.about-media {
  grid-area: media;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--ink-raised);
  box-shadow: var(--shadow);
}

.about-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-title,
.owner-title,
.contact-copy h2 {
  font-size: clamp(44px, 6vw, 78px);
}

.contact-copy h2 {
  margin-bottom: 28px;
}

.about-copy p,
.owner-copy p {
  color: var(--muted);
}

.about-copy strong,
.owner-copy strong {
  color: var(--text);
}

.owner-section {
  border-top: 1px solid var(--border);
  background: var(--ink-raised);
}

.owner-grid {
  display: grid;
  align-content: center;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  grid-template-areas:
    "media title"
    "media copy";
  column-gap: clamp(54px, 8vw, 110px);
  row-gap: 28px;
}

.owner-title {
  grid-area: title;
  align-self: end;
  margin: 0;
}

.owner-copy {
  grid-area: copy;
  align-self: start;
}

.owner-card {
  grid-area: media;
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--ink-raised);
  box-shadow: var(--shadow);
}

.owner-card img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 25%;
}

.owner-caption {
  position: absolute;
  inset: auto 18px 18px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(11, 10, 13, 0.74);
  backdrop-filter: blur(14px);
}

.owner-caption strong,
.owner-caption span {
  display: block;
}

.owner-caption strong {
  font-family: var(--font-display);
  font-size: 22px;
}

.owner-caption span {
  color: var(--pink);
  font-size: 14px;
  font-weight: 700;
}

.cta-band {
  padding: 120px 0;
}

.cta-card {
  display: flex;
  width: var(--page);
  margin: 0 auto;
  padding: clamp(28px, 6vw, 66px);
  border-radius: var(--radius-lg);
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  background: var(--pink);
  color: var(--dark-text);
}

.cta-card h2 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(36px, 5vw, 64px);
}

.cta-card .button {
  flex: 0 0 auto;
  border-color: rgba(21, 18, 23, 0.18);
  background: var(--dark-text);
  color: var(--text);
}

.contact-section {
  background: var(--paper);
  color: var(--dark-text);
}

.contact-grid {
  display: block;
}

.contact-copy {
  max-width: 820px;
}

.contact-copy .section-kicker {
  color: #a74277;
}

.contact-copy > p:not(.section-kicker) {
  color: #625a60;
}

.contact-email {
  margin-top: 24px;
}

.partners-section {
  padding: 94px 0;
}

.partners-section h2 {
  margin-bottom: 40px;
  font-size: clamp(36px, 5vw, 58px);
  text-align: center;
}

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

.partner-link {
  display: grid;
  min-height: 150px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  place-items: center;
  background: var(--ink-raised);
  transition:
    transform 180ms var(--ease-out),
    border-color 180ms ease,
    background-color 180ms ease;
}

.partner-link img {
  width: min(100%, 10rem);
  height: 4.5rem;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
}

.site-footer {
  padding: 34px 0;
  border-top: 1px solid var(--border);
  background: var(--ink);
}

.footer-shell {
  display: flex;
  width: var(--page);
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
}

.footer-shell p {
  margin: 0;
}

.footer-shell a {
  color: var(--text);
  font-weight: 700;
  text-decoration: none;
}

.footer-shell a:hover {
  color: var(--pink);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

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

.subpage main {
  min-height: calc(100vh - 96px);
}

.error-page {
  min-height: 100vh;
  min-height: 100dvh;
}

.error-page main {
  min-height: 0;
}

.error-hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - 96px);
  min-height: calc(100dvh - 96px);
  padding: 150px var(--page-gutter) 80px;
  overflow: hidden;
  place-items: center;
  isolation: isolate;
}

.error-hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(circle at 20% 34%, rgba(247, 169, 210, 0.24), transparent 32%),
    linear-gradient(90deg, rgba(11, 10, 13, 0.97) 0%, rgba(11, 10, 13, 0.84) 48%, rgba(11, 10, 13, 0.7) 100%);
  content: "";
}

.error-hero > img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  filter: saturate(0.82);
}

.error-watermark {
  position: absolute;
  z-index: -1;
  right: max(var(--page-gutter), calc((100vw - 1180px) / 2));
  bottom: -0.12em;
  color: rgba(255, 250, 253, 0.055);
  font-family: var(--font-display);
  font-size: clamp(13rem, 34vw, 34rem);
  font-weight: 700;
  line-height: 0.8;
  letter-spacing: -0.1em;
  pointer-events: none;
  user-select: none;
}

.error-copy {
  width: var(--page);
  margin: 0 auto;
}

.error-copy > * {
  max-width: 720px;
}

.error-kicker {
  margin-bottom: 18px;
  color: var(--pink);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.error-copy h1 {
  margin-bottom: 24px;
  font-size: clamp(54px, 8vw, 108px);
}

.error-copy > p:not(.error-kicker) {
  margin-bottom: 0;
  color: rgba(255, 250, 253, 0.78);
  font-size: clamp(18px, 2vw, 22px);
}

.error-actions {
  display: flex;
  margin-top: 34px;
  flex-wrap: wrap;
  gap: 12px;
}

.event-hero,
.legal-hero {
  position: relative;
  display: grid;
  min-height: 520px;
  padding: 150px var(--page-gutter) 80px;
  overflow: hidden;
  place-items: center;
  text-align: center;
  isolation: isolate;
}

.event-hero::before,
.legal-hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(circle at 50% 30%, rgba(247, 169, 210, 0.17), transparent 44%),
    rgba(11, 10, 13, 0.82);
  content: "";
}

.event-hero > img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-hero-copy,
.legal-hero-copy {
  min-width: 0;
  width: min(850px, 100%);
}

.event-hero h1,
.legal-hero h1 {
  margin-bottom: 28px;
  font-size: clamp(56px, 9vw, 112px);
}

.event-content {
  background: linear-gradient(180deg, #111 0%, var(--ink) 100%);
}

.event-layout {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 0.75fr);
  gap: clamp(54px, 9vw, 120px);
}

.event-details h2 {
  margin-bottom: 34px;
  font-size: clamp(42px, 6vw, 72px);
}

.facts {
  display: grid;
  margin: 0 0 34px;
  gap: 0;
}

.fact {
  display: grid;
  padding: 17px 0;
  border-bottom: 1px solid var(--border);
  grid-template-columns: 112px 1fr;
  gap: 20px;
}

.fact dt {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.fact dd {
  margin: 0;
  color: var(--text);
  font-weight: 700;
}

.event-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.poster-frame {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--ink-raised);
  box-shadow: var(--shadow);
}

.poster-frame img {
  width: 100%;
}

.legal-section {
  background: var(--paper);
  color: var(--dark-text);
}

.legal-card {
  max-width: 780px;
  padding: clamp(28px, 6vw, 64px);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  background: var(--paper-raised);
  box-shadow: 0 24px 60px rgba(21, 18, 23, 0.08);
}

.legal-card h2 {
  margin-bottom: 30px;
  font-size: clamp(36px, 5vw, 56px);
}

.legal-card p:last-child {
  margin-bottom: 0;
}

.legal-card a {
  color: #8f3563;
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 620ms var(--ease-out),
    transform 620ms var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (hover: hover) and (pointer: fine) {
  .event-card:hover img {
    transform: scale(1.035);
  }

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

  .button-primary:hover {
    background: var(--pink-strong);
  }

  .button-secondary:hover {
    border-color: var(--pink);
    color: var(--pink);
  }

  .partner-link:hover {
    border-color: rgba(247, 169, 210, 0.5);
    background: var(--ink-soft);
    transform: translateY(-3px);
  }
}

@media (max-width: 980px) {
  .events-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-grid,
  .owner-grid,
  .contact-grid,
  .event-layout {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-areas:
      "title"
      "media"
      "copy";
  }

  .owner-grid {
    grid-template-areas:
      "title"
      "media"
      "copy";
  }

  .about-title,
  .owner-title,
  .about-copy,
  .owner-copy,
  .contact-copy,
  .event-details {
    max-width: 720px;
  }

  .about-media,
  .owner-card,
  .poster-frame {
    width: min(620px, 100%);
  }

  .event-layout {
    justify-items: center;
  }

  .event-details {
    width: 100%;
  }

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

@media (min-width: 761px) and (max-width: 900px) {
  .site-header {
    height: 76px;
  }

  .brand img {
    width: 98px;
    height: 58px;
  }

  .nav-toggle {
    display: block;
  }

  .site-header.is-open {
    border-color: transparent;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .site-header.is-open .nav-toggle {
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(21, 18, 23, 0.72);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    display: flex;
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    padding:
      max(7.25rem, calc(env(safe-area-inset-top) + 6.25rem))
      max(var(--page-gutter), env(safe-area-inset-right))
      max(2.5rem, calc(env(safe-area-inset-bottom) + 1.5rem))
      max(var(--page-gutter), env(safe-area-inset-left));
    align-items: stretch;
    justify-content: flex-start;
    flex-direction: column;
    gap: 0;
    overflow-y: auto;
    background:
      radial-gradient(circle at 82% 10%, rgba(247, 169, 210, 0.14), transparent 32%),
      rgba(11, 10, 13, 0.72);
    backdrop-filter: blur(24px) saturate(120%) brightness(78%);
    -webkit-backdrop-filter: blur(24px) saturate(120%) brightness(78%);
    opacity: 0;
    overscroll-behavior: contain;
    pointer-events: none;
    transform: translateY(-8px);
    transform-origin: top right;
    transition:
      opacity 150ms var(--ease-out),
      transform 180ms var(--ease-out);
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
    transition-duration: 180ms, 240ms;
  }

  .site-nav a {
    min-height: 68px;
    padding: 0 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 0;
    font-family: var(--font-display);
    font-size: clamp(28px, 8.5vw, 36px);
    line-height: 1.1;
  }

  .site-nav a:hover,
  .site-nav a[aria-current="page"] {
    background: transparent;
  }

  .site-nav a[aria-current="page"],
  .site-nav a:active {
    color: var(--pink);
  }
}

@media (max-width: 760px) {
  :root {
    --radius-md: 20px;
    --radius-lg: 26px;
  }

  body {
    font-size: 16px;
  }

  .site-header {
    height: 76px;
  }

  .brand img {
    width: 98px;
    height: 58px;
  }

  .nav-toggle {
    display: block;
  }

  .site-header.is-open {
    border-color: transparent;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .site-header.is-open .nav-toggle {
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(21, 18, 23, 0.72);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    display: flex;
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    padding:
      max(7.25rem, calc(env(safe-area-inset-top) + 6.25rem))
      max(var(--page-gutter), env(safe-area-inset-right))
      max(2.5rem, calc(env(safe-area-inset-bottom) + 1.5rem))
      max(var(--page-gutter), env(safe-area-inset-left));
    align-items: stretch;
    justify-content: flex-start;
    flex-direction: column;
    gap: 0;
    overflow-y: auto;
    background:
      radial-gradient(circle at 82% 10%, rgba(247, 169, 210, 0.14), transparent 32%),
      rgba(11, 10, 13, 0.72);
    backdrop-filter: blur(24px) saturate(120%) brightness(78%);
    -webkit-backdrop-filter: blur(24px) saturate(120%) brightness(78%);
    opacity: 0;
    overscroll-behavior: contain;
    pointer-events: none;
    transform: translateY(-8px);
    transform-origin: top right;
    transition:
      opacity 150ms var(--ease-out),
      transform 180ms var(--ease-out);
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
    transition-duration: 180ms, 240ms;
  }

  .site-nav a {
    min-height: 68px;
    padding: 0 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 0;
    font-family: var(--font-display);
    font-size: clamp(28px, 8.5vw, 36px);
    line-height: 1.1;
  }

  .site-nav a:hover,
  .site-nav a[aria-current="page"] {
    background: transparent;
  }

  .site-nav a[aria-current="page"],
  .site-nav a:active {
    color: var(--pink);
  }

  .section {
    padding: clamp(4.75rem, 18vw, 5.75rem) 0;
  }

  .hero {
    min-height: max(100svh, 35rem);
    min-height: max(100dvh, 35rem);
    padding: calc(7rem + env(safe-area-inset-top)) var(--page-gutter) calc(6.5rem + env(safe-area-inset-bottom));
  }

  .hero h1 {
    font-size: clamp(3.5rem, 18vw, 6.5rem);
    line-height: 0.88;
  }

  .hero-kicker {
    font-size: clamp(0.75rem, 3.5vw, 0.95rem);
    line-height: 1.55;
  }

  .scroll-cue {
    bottom: max(1.5rem, env(safe-area-inset-bottom));
    width: max-content;
    max-width: calc(100% - (var(--page-gutter) * 2));
    justify-content: center;
  }

  .events-section .section-shell > .section-kicker,
  .events-section .section-shell > .section-title,
  .events-section .section-shell > .section-lead {
    margin-inline: auto;
    text-align: center;
  }

  .section-title {
    font-size: clamp(2rem, 10vw, 3.5rem);
  }

  .section-lead {
    font-size: clamp(1rem, 4.5vw, 1.125rem);
  }

  .events-grid {
    margin-top: clamp(2.5rem, 10vw, 3.25rem);
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .event-card {
    min-height: 0;
    aspect-ratio: 100 / 138;
  }

  .event-card-content {
    padding: clamp(1.25rem, 6vw, 1.75rem);
  }

  .event-card h3 {
    font-size: clamp(1.75rem, 8vw, 2.25rem);
  }

  .about-grid,
  .owner-grid,
  .event-layout {
    justify-items: center;
    gap: clamp(2.5rem, 11vw, 3.5rem);
  }

  .about-title,
  .owner-title,
  .contact-copy h2,
  .event-details h2 {
    margin-inline: auto;
    font-size: clamp(2.35rem, 11vw, 3.35rem);
  }

  .event-details h2 {
    font-size: clamp(1.5rem, 7.75vw, 3.35rem);
  }

  .about-title,
  .owner-title,
  .event-details > .section-kicker,
  .event-details h2 {
    text-align: center;
  }

  .about-title,
  .owner-title {
    width: 100%;
  }

  .about-copy p,
  .owner-copy p {
    max-width: 62ch;
  }

  .owner-card,
  .about-media,
  .poster-frame {
    margin-inline: auto;
  }

  .cta-band {
    padding: clamp(4.75rem, 18vw, 5.75rem) 0;
  }

  .cta-card {
    padding: clamp(1.25rem, 6vw, 2.5rem);
    align-items: center;
    flex-direction: column;
    text-align: center;
  }

  .cta-card h2 {
    font-size: clamp(1.5rem, 7vw, 3rem);
  }

  .contact-grid {
    gap: 42px;
  }

  .contact-copy {
    width: 100%;
    margin-inline: auto;
    text-align: center;
  }

  .contact-copy > p:not(.section-kicker) {
    max-width: 34rem;
    margin-inline: auto;
  }

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

  .partner-link {
    min-height: clamp(7rem, 30vw, 8rem);
    padding: clamp(0.875rem, 4vw, 1.125rem);
  }

  .partner-link img {
    width: min(100%, 8rem);
    height: clamp(2.75rem, 14vw, 3.5rem);
  }

  .footer-shell {
    align-items: center;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .footer-links,
  .legal-footer nav {
    justify-content: center;
  }

  .event-hero,
  .legal-hero {
    min-height: clamp(28rem, 120vw, 34rem);
    padding: calc(7rem + env(safe-area-inset-top)) var(--page-gutter) 4.5rem;
  }

  .error-hero {
    min-height: calc(100dvh - 90px);
    padding: calc(7rem + env(safe-area-inset-top)) var(--page-gutter) calc(4rem + env(safe-area-inset-bottom));
    text-align: center;
  }

  .error-hero::before {
    background:
      radial-gradient(circle at 50% 30%, rgba(247, 169, 210, 0.22), transparent 38%),
      rgba(11, 10, 13, 0.83);
  }

  .error-hero > img {
    object-position: center;
  }

  .error-watermark {
    right: 50%;
    bottom: 0;
    font-size: clamp(12rem, 60vw, 18rem);
    transform: translateX(50%);
  }

  .error-copy h1 {
    margin-inline: auto;
    font-size: clamp(2.85rem, 14vw, 5.25rem);
  }

  .error-copy > p {
    margin-inline: auto;
  }

  .error-actions {
    justify-content: center;
  }

  .event-hero h1 {
    font-size: clamp(1.85rem, 9.25vw, 5.25rem);
  }

  .legal-hero h1 {
    font-size: clamp(2.85rem, 14vw, 5.25rem);
  }

  .fact {
    grid-template-columns: 86px 1fr;
    gap: 14px;
  }
}

@media (max-width: 900px) and (max-height: 520px) {
  .site-nav {
    padding-top: max(5.5rem, calc(env(safe-area-inset-top) + 4.75rem));
  }

  .site-nav a {
    min-height: 52px;
    font-size: 25px;
  }
}

@media (max-width: 440px) {
  .event-card {
    aspect-ratio: 100 / 142;
  }

  .event-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .event-actions .button {
    width: 100%;
  }

  .error-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .error-actions .button {
    width: 100%;
  }

  .legal-contact-card__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .legal-contact-card__actions a,
  .legal-contact-card__actions button {
    width: 100%;
  }
}

@media (max-width: 350px) {
  .event-card h3 {
    font-size: 1.625rem;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Long-form legal pages */
.legal-page {
  background: var(--paper);
}

.legal-page a {
  text-underline-offset: 0.22em;
}

.legal-page .legal-hero {
  background:
    radial-gradient(circle at 84% 28%, rgba(247, 169, 210, 0.18), transparent 30%),
    linear-gradient(145deg, var(--ink) 0%, #1c171d 100%);
}

.legal-page .legal-hero::after {
  position: absolute;
  z-index: -1;
  right: -10vw;
  bottom: -34vw;
  width: min(64vw, 760px);
  aspect-ratio: 1;
  border: 1px solid rgba(247, 169, 210, 0.16);
  border-radius: 50%;
  content: "";
}

.legal-page .legal-eyebrow {
  margin: 0 0 18px;
  color: var(--pink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.legal-page .legal-hero h1 {
  color: var(--text);
}

.legal-page .legal-hero__lead {
  max-width: 740px;
  margin: 0 auto;
  color: rgba(255, 250, 253, 0.78);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.68;
}

.legal-main {
  background: var(--paper);
  color: var(--dark-text);
}

.legal-layout {
  display: grid;
  width: var(--page);
  margin: 0 auto;
  padding: clamp(64px, 8vw, 112px) 0;
  grid-template-columns: 245px minmax(0, 760px);
  justify-content: space-between;
  gap: clamp(46px, 7vw, 96px);
}

.legal-toc {
  align-self: start;
}

.legal-toc__inner {
  position: sticky;
  top: 116px;
}

.legal-toc__title {
  margin: 0 0 17px;
  color: #756c73;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.legal-toc ol {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 3px;
  list-style: none;
}

.legal-toc a {
  display: block;
  padding: 8px 10px;
  border-left: 2px solid var(--dark-border);
  color: #6b6269;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
}

.legal-toc a:hover,
.legal-toc a:focus-visible {
  border-left-color: #b1487f;
  color: var(--dark-text);
}

.legal-document {
  min-width: 0;
}

.legal-summary {
  display: grid;
  margin: 0 0 66px;
  padding: 26px;
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-md);
  background: var(--paper-raised);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.legal-summary__label,
.legal-summary__value {
  display: block;
}

.legal-summary__label {
  margin-bottom: 5px;
  color: #756c73;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-summary__value {
  color: var(--dark-text);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.45;
}

.legal-page .legal-section {
  padding: 0 0 58px;
  background: transparent;
  scroll-margin-top: 112px;
}

.legal-page .legal-section + .legal-section {
  padding-top: 58px;
  border-top: 1px solid var(--dark-border);
}

.legal-page .legal-section h2 {
  margin: 0 0 24px;
  color: var(--dark-text);
  font-size: clamp(30px, 4vw, 43px);
  line-height: 1.12;
}

.legal-page .legal-section h3 {
  margin: 34px 0 12px;
  color: var(--dark-text);
  font-size: 19px;
  letter-spacing: -0.015em;
  line-height: 1.35;
}

.legal-page .legal-section p,
.legal-page .legal-section li,
.legal-definition dd {
  color: #3f373e;
  font-size: 16px;
  line-height: 1.75;
}

.legal-page .legal-section p {
  margin: 0 0 18px;
}

.legal-page .legal-section ul,
.legal-page .legal-section ol {
  margin: 18px 0 22px;
  padding-left: 22px;
}

.legal-page .legal-section li + li {
  margin-top: 8px;
}

.legal-page .legal-section a,
.legal-definition a {
  color: #8f3563;
  font-weight: 750;
}

.legal-definition {
  display: grid;
  margin: 0;
  grid-template-columns: minmax(150px, 0.42fr) minmax(0, 1fr);
  gap: 0 26px;
}

.legal-definition dt,
.legal-definition dd {
  margin: 0;
  padding: 16px 0;
  border-bottom: 1px solid var(--dark-border);
}

.legal-definition dt {
  color: #756c73;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.55;
}

.legal-definition dd {
  color: var(--dark-text);
  overflow-wrap: anywhere;
}

.legal-callout {
  margin: 28px 0;
  padding: 22px 24px;
  border-left: 4px solid #b1487f;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: rgba(247, 169, 210, 0.18);
}

.legal-callout p:last-child {
  margin-bottom: 0;
}

.legal-contact-card {
  display: grid;
  padding: clamp(26px, 5vw, 40px);
  border-radius: var(--radius-md);
  background: var(--ink-raised);
  color: var(--text);
  gap: 22px;
}

.legal-contact-card h2 {
  margin: 0 0 12px;
  color: var(--text);
  font-size: clamp(30px, 4vw, 43px);
  text-wrap: pretty;
}

.legal-contact-card p,
.legal-contact-card a {
  color: var(--text);
}

.legal-contact-card p {
  margin: 0;
}

.legal-contact-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.legal-contact-card__actions a,
.legal-contact-card__actions button {
  display: inline-flex;
  min-height: 48px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.legal-contact-card__actions a:first-child,
.legal-contact-card__actions button:first-child {
  border-color: var(--pink);
  background: var(--pink);
  color: var(--dark-text);
}

.legal-contact-card__actions button:disabled {
  cursor: default;
  opacity: 0.68;
}

.legal-consent-status:empty {
  display: none;
}

.legal-meta-note {
  margin: 44px 0 0;
  color: #756c73;
  font-size: 13px;
  line-height: 1.6;
}

.legal-footer .footer-shell {
  align-items: center;
}

.legal-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.legal-footer nav a {
  font-size: 13px;
}

@media (max-width: 900px) {
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .legal-toc__inner {
    position: static;
  }

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

@media (max-width: 620px) {
  .legal-page .legal-hero {
    min-height: 520px;
  }

  .legal-page .legal-hero h1 {
    font-size: clamp(48px, 15vw, 74px);
  }

  .legal-page .legal-hero h1.legal-title-long {
    font-size: clamp(1.75rem, 8.8vw, 3.5rem);
  }

  .legal-contact-card {
    padding: clamp(1.25rem, 5vw, 2.5rem);
  }

  .legal-contact-card h2 {
    font-size: clamp(1.75rem, 8vw, 2.25rem);
  }

  .legal-toc ol,
  .legal-summary,
  .legal-definition {
    grid-template-columns: 1fr;
  }

  .legal-summary {
    margin-bottom: 50px;
  }

  .legal-definition dt {
    padding-bottom: 3px;
    border-bottom: 0;
  }

  .legal-definition dd {
    padding-top: 0;
  }

  .legal-page .legal-section,
  .legal-page .legal-section + .legal-section {
    padding-block: 44px;
  }

  .legal-footer .footer-shell {
    align-items: center;
  }
}
