:root {
  color-scheme: dark;
  --bg: #050509;
  --bg-2: #0a0b12;
  --surface: #10111a;
  --surface-2: #171925;
  --surface-3: #202333;
  --text: #ffffff;
  --muted: #c8ccd8;
  --soft: #8f96aa;
  --line: rgba(255,255,255,.16);
  --cyan: #1bd7ff;
  --magenta: #ff00d4;
  --violet: #8a4dff;
  --gold: #ffe05c;
  --green: #49f0a4;
  --max: 1180px;
  --measure: 880px;
  --shadow: 0 24px 70px rgba(0,0,0,.36);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html.nav-open { overflow: hidden; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(27,215,255,.06), transparent 420px),
    linear-gradient(90deg, rgba(255,0,212,.05), transparent 32%, rgba(27,215,255,.05)),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-underline-offset: 4px; }
img, iframe, video { max-width: 100%; }
img { height: auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 18px;
  min-height: 78px;
  padding: 12px 28px;
  background: rgba(5, 5, 9, .82);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 0 0 rgba(0,0,0,0);
  backdrop-filter: blur(16px);
  transition: background .2s ease, min-height .2s ease, box-shadow .2s ease;
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--magenta), var(--cyan), var(--violet));
}
.site-header.is-scrolled {
  min-height: 66px;
  background: rgba(5, 5, 9, .96);
  box-shadow: 0 14px 34px rgba(0,0,0,.28);
}
.brand { display: inline-flex; align-items: center; min-width: 0; }
.brand img { display: block; width: min(280px, 42vw); height: auto; max-height: 62px; object-fit: contain; }
.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: wrap;
  justify-content: flex-end;
  min-width: 0;
}
.site-nav a {
  position: relative;
  padding: 10px 10px;
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  border-radius: 6px;
  letter-spacing: 0;
  white-space: nowrap;
  transition: color .18s ease, background .18s ease;
}
.site-nav a:hover, .site-nav a[aria-current="page"] {
  color: var(--text);
  background: rgba(255,255,255,.08);
}
.site-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 5px;
  height: 2px;
  background: linear-gradient(90deg, var(--magenta), var(--cyan));
}
.site-search {
  position: relative;
  z-index: 80;
}
.search-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 9px 12px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 6px;
  background: rgba(255,255,255,.08);
  color: var(--text);
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}
.search-toggle:hover,
.site-search.is-open .search-toggle {
  border-color: rgba(27,215,255,.62);
  background: rgba(27,215,255,.13);
}
.search-icon {
  position: relative;
  display: inline-block;
  width: 15px;
  height: 15px;
  border: 2px solid currentColor;
  border-radius: 999px;
}
.search-icon::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 2px;
  right: -6px;
  bottom: -3px;
  background: currentColor;
  border-radius: 999px;
  transform: rotate(45deg);
}
.search-panel {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  width: min(460px, calc(100vw - 24px));
  padding: 14px;
  background: rgba(8,9,15,.98);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.site-search.is-open .search-panel { display: block; }
.search-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}
.search-form input {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 6px;
  background: rgba(255,255,255,.08);
  color: var(--text);
  font: inherit;
}
.search-form input::placeholder { color: var(--soft); }
.search-form button {
  min-height: 44px;
  padding: 10px 14px;
  border: 0;
  border-radius: 6px;
  background: var(--cyan);
  color: #041016;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}
.search-results {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}
.search-empty {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.search-result {
  display: grid;
  gap: 3px;
  padding: 11px 12px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 6px;
  background: rgba(255,255,255,.055);
  text-decoration: none;
}
.search-result:hover { border-color: rgba(27,215,255,.55); }
.search-result strong { color: var(--text); font-size: 14px; }
.search-result span { color: var(--muted); font-size: 13px; line-height: 1.35; }
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 9px 14px;
  color: #050509;
  background: var(--cyan);
  border: 1px solid var(--cyan);
  border-radius: 6px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}
.nav-toggle {
  display: inline-flex;
  width: 46px;
  height: 44px;
  padding: 0;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 6px;
  background: linear-gradient(135deg, var(--magenta), var(--cyan));
  color: var(--text);
  position: fixed;
  top: 13px;
  right: 14px;
  left: auto;
  z-index: 70;
  border-color: transparent;
  box-shadow: 0 12px 28px rgba(0,0,0,.32);
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #050509;
  border-radius: 999px;
}
.floating-actions {
  position: fixed;
  right: clamp(10px, 2vw, 22px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 65;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}
.floating-action {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(18,18,28,.92), rgba(8,8,14,.92));
  color: var(--text);
  box-shadow: 0 16px 36px rgba(0,0,0,.30);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.floating-action:hover {
  transform: translateX(-2px);
  border-color: rgba(255,255,255,.38);
  background: linear-gradient(180deg, rgba(35,34,50,.98), rgba(13,13,22,.98));
  color: var(--text);
}
.floating-action-events {
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  border-color: rgba(255,255,255,.24);
  color: #ffffff;
}
.floating-action-events:hover {
  background: linear-gradient(135deg, #42defb, #9f68ff);
}
.floating-action-signup {
  background: linear-gradient(135deg, var(--magenta), var(--cyan));
  border-color: rgba(255,255,255,.24);
  color: #ffffff;
  box-shadow: 0 16px 38px rgba(224,27,206,.22);
}
.floating-action-signup:hover {
  background: linear-gradient(135deg, #ff38df, #4ddfff);
}
.hero {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: end;
  padding: 140px 28px 64px;
  background:
    linear-gradient(90deg, rgba(5,5,9,.96), rgba(5,5,9,.70), rgba(5,5,9,.30)),
    linear-gradient(180deg, transparent 58%, var(--bg)),
    var(--hero-image, none) center/cover no-repeat,
    #0b0f14;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(27,215,255,.85), rgba(255,0,212,.82), transparent);
}
.hero-content { position: relative; width: min(var(--max), 100%); margin: 0 auto; max-width: var(--max); }
.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}
h1, h2, h3 { line-height: 1.08; letter-spacing: 0; }
h1 {
  margin: 0;
  max-width: 980px;
  font-size: 72px;
  text-transform: uppercase;
}
h2 { margin: 0 0 16px; font-size: 38px; }
h3 { margin: 0 0 10px; font-size: 23px; }
.hero p { max-width: 760px; color: #eef2f7; font-size: 21px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--text);
  text-decoration: none;
  font-weight: 900;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-1px); }
.button.button-primary {
  background: linear-gradient(90deg, var(--cyan), #70efff);
  color: #041016;
  border-color: transparent;
  text-shadow: none;
  box-shadow: 0 14px 32px rgba(27,215,255,.22);
}
.button-secondary { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.28); }
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: linear-gradient(90deg, var(--magenta), var(--cyan), var(--violet));
  padding: 1px 0;
}
.trust-strip span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 10px 14px;
  background: rgba(8,9,15,.96);
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}
.content-wrap {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 64px 0 84px;
}
.content-wrap.content-wrap-first {
  padding-top: 0;
}
.content-wrap > section { margin: 0 0 58px; }
.article-body {
  max-width: var(--measure);
  font-size: 18px;
}
.article-body > h1:first-child { display: none; }
.article-body h1, .article-body h2, .article-body h3, .article-body h4 {
  color: var(--text);
  margin-top: 38px;
}
.article-body h2 {
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,.10);
}
.article-body p, .article-body li { color: #d9dde8; }
.article-body a { color: var(--cyan); font-weight: 800; }
.article-body ul, .article-body ol { padding-left: 24px; }
.article-body li { margin-bottom: 8px; }
.article-body blockquote {
  margin: 28px 0;
  padding: 22px;
  border-left: 4px solid var(--magenta);
  background: rgba(255,255,255,.06);
}
.hub-section > p {
  max-width: var(--measure);
  margin: 0 0 28px;
  color: #d9dde8;
  font-size: 18px;
}
.hub-section a { color: inherit; }
.article-body table {
  width: 100%;
  display: block;
  overflow-x: auto;
  border-collapse: collapse;
  margin: 28px 0;
  background: rgba(255,255,255,.04);
}
.article-body th, .article-body td {
  border: 1px solid rgba(255,255,255,.16) !important;
  padding: 12px !important;
  color: #edf1f6;
  background: transparent !important;
  text-align: left !important;
}
.article-body th { color: #061016; background: var(--cyan) !important; }
.article-body img, .content-image img {
  display: block;
  border-radius: 8px;
  margin: 24px 0;
  box-shadow: var(--shadow);
}
.article-body figure { margin: 26px 0; }
.about-us-lead-image {
  margin-top: 0;
}
.about-us-lead-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.16);
}
.article-body iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 8px;
  background: #000;
}
.wp-block-table, .meta-block-tabel { overflow-x: auto; }
.wp-block-image:empty { display: none; }
.article-body input, .article-body select, .article-body textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 6px;
  padding: 10px 12px;
  background: rgba(255,255,255,.08);
  color: var(--text);
}
.article-body button, .article-body input[type="submit"] {
  width: auto;
  border: 0;
  border-radius: 6px;
  padding: 12px 18px;
  background: var(--cyan);
  color: #051016;
  font-weight: 900;
}
.article-body-legal {
  max-width: var(--max);
}
.legal-policies {
  display: grid;
  gap: 24px;
}
.legal-policies .section-heading {
  align-items: flex-start;
  max-width: var(--measure);
}
.legal-policies .section-heading p:last-child {
  max-width: 70ch;
  margin: 0;
  color: var(--muted);
}
.legal-stack {
  display: grid;
  gap: 16px;
}
.legal-accordion {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255,0,212,.08), rgba(27,215,255,.08)),
    rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(0,0,0,.18);
}
.legal-accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 74px;
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  background: rgba(255,255,255,.035);
}
.legal-accordion summary::-webkit-details-marker {
  display: none;
}
.legal-summary-title,
.legal-summary-meta {
  display: block;
}
.legal-summary-title {
  color: var(--text);
  font-size: 20px;
  font-weight: 900;
}
.legal-summary-meta {
  color: var(--gold);
  font-weight: 800;
  text-align: right;
}
.legal-content {
  padding: 8px 24px 28px;
}
.legal-effective,
.legal-callout,
.legal-intro,
.legal-item p,
.legal-item li {
  color: #d9dde8;
  line-height: 1.72;
}
.legal-effective {
  margin: 0 0 8px;
  color: var(--gold);
  font-weight: 900;
}
.legal-callout {
  margin: 0 0 12px;
  color: var(--text);
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.legal-intro {
  max-width: 78ch;
}
.legal-list {
  display: grid;
  gap: 14px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}
.legal-item {
  padding: 18px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 8px;
}
.legal-item h3 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 20px;
}
.legal-item p {
  margin: 0 0 10px;
}
.legal-item p:last-child,
.legal-item li:last-child {
  margin-bottom: 0;
}
.legal-item ul {
  margin: 10px 0 0;
}
.legal-item code {
  color: var(--cyan);
  font-weight: 900;
}
.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: 30px;
  align-items: start;
}
.quick-panel {
  background: linear-gradient(180deg, rgba(27,215,255,.09), rgba(255,255,255,.04));
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  box-shadow: var(--shadow);
}
.quick-panel a, .venue-link-grid a {
  display: block;
  padding: 12px 0;
  color: var(--text);
  text-decoration: none;
  border-top: 1px solid var(--line);
  font-weight: 800;
}
.card-grid, .quote-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.link-card, .quote-card {
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 14px 38px rgba(0,0,0,.18);
}
.link-card a { text-decoration: none; color: var(--text); }
.link-card:hover { border-color: rgba(27,215,255,.45); }
.link-card p, .quote-card p, .site-footer p { color: var(--muted); }
.quote-card { margin: 0; }
.quote-card cite { color: var(--gold); font-style: normal; font-weight: 900; }
.rules-notice {
  display: grid;
  gap: 12px;
  max-width: var(--measure);
  margin: 28px 0;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(244,230,8,.12), rgba(27,215,255,.07)),
    rgba(255,255,255,.045);
  border: 1px solid rgba(244,230,8,.28);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(0,0,0,.18);
}
.rules-notice h2 {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: clamp(24px, 3vw, 34px);
}
.rules-notice p {
  margin: 0;
  color: #e4e8f2;
}
.rules-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}
.rules-list li {
  margin: 0;
  color: #d9dde8;
}
.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
  background:
    linear-gradient(90deg, rgba(255,0,212,.16), rgba(27,215,255,.14)),
    var(--surface);
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.cta-band h2 { margin-bottom: 8px; }
.cta-band p { margin: 0; color: #e4e8f2; }
.contact-action-panel {
  max-width: var(--max);
  margin: 32px 0;
  padding: clamp(22px, 4vw, 34px);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(255,0,212,.14), rgba(27,215,255,.11)),
    rgba(14,16,25,.92);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.contact-action-panel h2 {
  margin: 0 auto 12px;
  max-width: 760px;
}
.contact-action-panel > p:not(.eyebrow) {
  max-width: 720px;
  margin: 0 auto 22px;
  color: #dce3ef;
}
.contact-action-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.contact-action-card {
  display: grid;
  gap: 7px;
  align-content: center;
  min-height: 150px;
  padding: 20px;
  color: var(--text) !important;
  text-decoration: none;
  background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.045));
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
}
.contact-action-card:hover {
  border-color: rgba(27,215,255,.55);
  background: linear-gradient(180deg, rgba(27,215,255,.14), rgba(255,0,212,.08));
}
.contact-action-card span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.contact-action-card strong {
  color: var(--text);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.16;
  overflow-wrap: anywhere;
}
.contact-action-card small {
  color: var(--muted);
  font-size: 14px;
}
.media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.article-body-venue-directory {
  max-width: var(--max);
}
.article-body-venue-directory > h2,
.article-body-venue-directory > h3,
.article-body-venue-directory > h4,
.article-body-venue-directory > p {
  max-width: var(--measure);
}
.venue-directory {
  margin: 34px 0 42px;
}
.venue-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}
.venue-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(27,215,255,.10), rgba(255,0,212,.07)),
    var(--surface);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(0,0,0,.28);
}
.venue-card-media,
.venue-card-media figure {
  margin: 0;
}
.venue-card-image-link {
  display: block;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
}
.venue-card-image-link:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: -3px;
}
.venue-card-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 0;
  margin: 0;
  box-shadow: none;
  transition: transform .22s ease, filter .22s ease;
}
.venue-card-image-link:hover img,
.venue-card-image-link:focus-visible img {
  filter: saturate(1.12) brightness(1.06);
  transform: scale(1.035);
}
.venue-card-info {
  padding: 20px;
}
.venue-card .postThumb,
.venue-card .categoryList {
  text-align: left !important;
}
.venue-card dl {
  margin: 0;
}
.venue-card dt {
  margin: 0;
  padding: 9px 0;
  color: #d9dde8;
  border-top: 1px solid rgba(255,255,255,.10);
}
.venue-card dt:first-child {
  padding-top: 0;
  border-top: 0;
}
.venue-card h2 {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 24px;
  line-height: 1.12;
}
.venue-card .venue-card-title {
  margin-bottom: 14px;
  font-size: 27px;
}
.venue-card .categoryList h2 {
  color: #e6ebf6;
  font-size: 18px;
}
.venue-card h3,
.venue-card h4 {
  margin: 0;
  font-size: 16px;
}
.venue-card-subhead {
  color: var(--text) !important;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .08em;
}
.venue-card a {
  color: var(--cyan);
  overflow-wrap: anywhere;
}
.article-body-event-calendar {
  max-width: var(--max);
}
.article-body-event-calendar > h2,
.article-body-event-calendar > h3,
.article-body-event-calendar > p {
  max-width: var(--measure);
}
.event-calendar-shell {
  display: grid;
  gap: 18px;
  padding: clamp(18px, 3vw, 28px);
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(135deg, rgba(255,0,212,.13), rgba(27,215,255,.06)),
    rgba(13,11,28,.72);
  background-size: 100% 100%, 84px 84px, auto, auto;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.event-calendar-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: end;
}
.event-calendar-head h2 {
  margin: 0 0 16px;
  padding: 0;
  border: 0;
  font-size: clamp(38px, 5vw, 58px);
  text-transform: none;
}
.event-calendar-head h1 {
  margin: 0 0 16px;
  max-width: none;
  padding: 0;
  border: 0;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.08;
  text-transform: none;
}
.event-calendar-head p {
  max-width: 850px;
  margin: 0;
  color: #e0d8f4;
  font-size: 19px;
}
.event-calendar-count {
  min-width: 138px;
  padding: 14px 16px;
  text-align: center;
  background: rgba(255,255,255,.07);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.event-calendar-count strong {
  display: block;
  color: var(--gold);
  font-size: 32px;
  line-height: 1;
}
.event-calendar-count span {
  color: #efeafa;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.event-calendar-controls {
  display: grid;
  grid-template-columns: minmax(220px, 1.6fr) repeat(3, minmax(145px, 1fr)) auto;
  gap: 12px;
  align-items: end;
  padding: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
  border: 1px solid var(--line);
  border-radius: 8px;
}
.event-calendar-controls label {
  display: grid;
  gap: 6px;
  color: var(--text);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.event-calendar-controls input,
.event-calendar-controls select {
  width: 100%;
  min-height: 52px;
  padding: 10px 12px;
  color: var(--text);
  background: rgba(4,6,14,.92);
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
}
.event-calendar-controls input::placeholder {
  color: var(--soft);
}
.button.secondary {
  background: rgba(255,255,255,.075);
  color: var(--text);
  border-color: rgba(255,255,255,.24);
}
.event-calendar-controls .button.secondary {
  min-height: 52px;
}
.event-source-note {
  color: #e0d8f4;
  font-size: 15px;
}
.event-source-note a,
.resource-link {
  color: #9dccff;
  font-weight: 900;
}
.weekly-events-section {
  padding: clamp(18px, 3vw, 28px);
  background:
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(135deg, rgba(255,0,212,.12), rgba(27,215,255,.07)),
    rgba(13,11,28,.64);
  background-size: 100% 100%, 84px 84px, auto, auto;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.weekly-events-heading {
  margin-bottom: 20px;
}
.weekly-events-heading p:last-child {
  max-width: 820px;
  margin: 8px 0 0;
  color: #e0d8f4;
}
.weekly-events-link {
  flex: 0 0 auto;
}
.weekly-event-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
  gap: 14px;
}
.event-card {
  display: grid;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.04));
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(0,0,0,.22);
}
.event-card[hidden] {
  display: none;
}
.event-card-media {
  display: block;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #07070c;
}
.event-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
  transition: transform .22s ease, filter .22s ease;
}
.event-card-media:hover img,
.event-card-media:focus-visible img {
  filter: saturate(1.12) brightness(1.05);
  transform: scale(1.035);
}
.event-card-body {
  display: grid;
  gap: 10px;
  padding: 16px;
}
.event-card-source {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.event-card h3 {
  margin: 0;
  font-size: 21px;
}
.event-card-meta {
  display: grid;
  gap: 5px;
  color: #d8dcef;
  font-size: 14px;
}
.event-card-actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  align-items: center;
  margin-top: 2px;
}
.event-card-actions .button {
  flex: 0 1 auto;
  width: auto;
  min-height: 42px;
  padding: 9px 12px;
  background: linear-gradient(135deg, #e11ccf 0%, #496fea 100%);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 6px;
  box-shadow: 0 10px 22px rgba(80,80,255,.22);
  font-size: 13px;
  line-height: 1;
  text-shadow: 0 1px 0 rgba(0,0,0,.15);
  white-space: nowrap;
}
.event-card-actions .button:hover {
  border-color: rgba(255,255,255,.46);
  background: linear-gradient(135deg, #f02add 0%, #5d86ff 100%);
}
.event-card-actions .resource-link {
  flex: 0 0 auto;
  color: #82bdff;
  font-size: 15px;
  font-weight: 500;
  text-decoration-line: underline;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(130,189,255,.85);
  text-underline-offset: 5px;
}
.event-empty {
  margin: 0;
  padding: 18px;
  color: #d8dcef;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.event-calendar-faq {
  margin-top: 38px;
  padding: clamp(18px, 3vw, 28px);
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 8px;
}
.event-calendar-faq h2,
.event-calendar-faq h3 {
  max-width: var(--measure);
}
.legacy-media-gallery {
  margin: 38px 0;
  padding: 24px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 8px;
}
.legacy-media-gallery h2 {
  margin-top: 0;
}
.legacy-image-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.legacy-image-grid figure {
  margin: 0;
}
.legacy-image-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  margin: 0;
}
.feature-slider {
  margin: 34px 0 38px;
  padding: clamp(16px, 3vw, 28px);
  background:
    linear-gradient(135deg, rgba(255,0,212,.16), rgba(27,215,255,.10)),
    rgba(14,16,25,.92);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.feature-slider-head,
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin-bottom: 18px;
}
.feature-slider-head h2,
.section-heading h2 { margin-bottom: 0; }
.feature-controls {
  display: inline-flex;
  gap: 8px;
  flex: 0 0 auto;
}
.feature-controls button,
.feature-dots button {
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 6px;
  background: rgba(255,255,255,.08);
  color: var(--text);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}
.feature-controls button {
  min-height: 38px;
  padding: 8px 12px;
}
.feature-controls button:hover,
.feature-dots button:hover { border-color: rgba(27,215,255,.72); }
.feature-slide {
  display: none;
  grid-template-columns: minmax(240px, .92fr) minmax(0, 1fr);
  gap: clamp(18px, 4vw, 34px);
  align-items: stretch;
}
.feature-slide.is-active { display: grid; }
.feature-image {
  display: block;
  min-height: 300px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface-2);
  border: 1px solid rgba(255,255,255,.14);
}
.feature-image img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  display: block;
}
.feature-copy {
  align-self: center;
  padding: 4px 0;
}
.feature-copy time,
.recent-card time {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.feature-copy h2 { font-size: clamp(28px, 4vw, 46px); }
.feature-copy h2 a,
.recent-card h3 a {
  color: var(--text);
  text-decoration: none;
}
.feature-copy p { color: #dce3ef; }
.text-link {
  color: var(--cyan) !important;
  font-weight: 900;
  text-decoration-color: rgba(27,215,255,.55);
}
.feature-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}
.feature-dots button {
  width: 34px;
  height: 8px;
  padding: 0;
  border-radius: 999px;
  font-size: 0;
}
.feature-dots button.is-active {
  background: linear-gradient(90deg, var(--magenta), var(--cyan));
  border-color: transparent;
}
.latest-list { margin-top: 32px; }
.recent-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.recent-card {
  padding: 22px;
  min-height: 100%;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
}
.recent-card h3 { font-size: 22px; }
.recent-card p { margin-bottom: 0; color: var(--muted); }
.all-post-links {
  margin-top: 36px;
  padding: 24px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 8px;
}
.archive-list {
  columns: 2;
  padding-left: 20px;
}
.archive-list li { break-inside: avoid; margin: 0 0 10px; color: var(--muted); }
.archive-list a { color: var(--text); text-decoration-color: rgba(27,215,255,.55); }
.archive-list time {
  display: block;
  color: var(--soft);
  font-size: 12px;
  font-weight: 800;
}
.venue-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 22px;
  margin: 24px 0;
}
.site-footer {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding: 38px clamp(18px, 5vw, 56px);
  background: linear-gradient(180deg, #090a10, #020204);
  border-top: 1px solid var(--line);
}
.footer-intro {
  width: min(1120px, 100%);
  margin: 0 auto;
  text-align: center;
}
.footer-intro strong {
  display: block;
  margin-bottom: 12px;
  color: var(--text);
  font-size: 14px;
  text-transform: uppercase;
}
.footer-intro p {
  max-width: 1040px;
  margin: 0 auto 10px;
  color: #bfc9d6;
  font-size: 14px;
  line-height: 1.48;
}
.footer-intro p:last-child {
  margin-bottom: 0;
}
.site-footer nav {
  display: flex;
  gap: 10px 18px;
  flex-wrap: wrap;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.10);
}
.site-footer nav strong {
  color: var(--text);
  font-size: 13px;
  text-transform: uppercase;
}
.site-footer a { color: var(--muted); text-decoration: none; }
.site-footer a:hover { color: var(--cyan); }
.footer-legal {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--soft);
  font-size: 13px;
}
@media (max-width: 1120px) {
  .site-header { grid-template-columns: auto minmax(0, 1fr) auto auto; gap: 12px; }
  .site-nav { justify-content: flex-start; }
  .site-nav a { font-size: 12px; padding: 8px 8px; }
  .brand img { width: min(230px, 38vw); }
  .search-label { display: none; }
  .weekly-event-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 901px) {
  .nav-toggle { display: none !important; }
}
@media (max-width: 900px) {
  html.nav-open body { overflow: hidden; }
  .site-header {
    display: flex;
    justify-content: space-between;
    min-height: 70px;
    padding: 10px 16px;
  }
  .brand { max-width: calc(100% - 116px); }
  .brand img { width: min(220px, 56vw); max-height: 52px; }
  .header-cta { display: none; }
  .site-search {
    position: fixed;
    top: 13px;
    right: 70px;
    margin: 0;
    z-index: 75;
  }
  .search-toggle {
    width: 46px;
    height: 44px;
    padding: 0;
  }
  .search-panel {
    position: fixed;
    left: 12px;
    right: 12px;
    top: 74px;
    width: auto;
  }
  .nav-toggle {
    display: inline-flex !important;
    flex: 0 0 46px;
  }
  .site-nav {
    display: none;
    position: fixed;
    left: 12px;
    right: 12px;
    top: 74px;
    padding: 14px;
    background: rgba(8,9,15,.98);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 8px;
    box-shadow: var(--shadow);
    max-height: calc(100vh - 92px);
    overflow-y: auto;
  }
  .site-nav.is-open { display: grid; }
  .site-nav a { padding: 13px 10px; font-size: 15px; }
  .site-nav a[aria-current="page"]::after { display: none; }
  .floating-actions {
    top: auto;
    right: 10px;
    bottom: 12px;
    transform: none;
  }
  .floating-action {
    min-width: 76px;
    min-height: 38px;
    padding: 7px 10px;
    font-size: 12px;
  }
  .hero {
    min-height: 560px;
    padding: 112px 18px 42px;
    background-position: center top;
  }
  .hero-content { width: 100%; max-width: 100%; }
  h1 { font-size: 42px; }
  h2 { font-size: 30px; }
  h3 { font-size: 21px; }
  .hero p { max-width: 31ch; font-size: 18px; overflow-wrap: normal; }
  .trust-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-actions, .cta-band { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .intro-grid, .card-grid, .quote-grid, .media-grid, .contact-action-grid, .venue-grid, .venue-link-grid, .site-footer, .feature-slide, .recent-grid { grid-template-columns: 1fr; }
  .event-calendar-head,
  .event-calendar-controls { grid-template-columns: 1fr; }
  .event-calendar-count { text-align: left; }
  .feature-slider-head, .section-heading { align-items: flex-start; flex-direction: column; }
  .feature-image, .feature-image img { min-height: 230px; }
  .archive-list { columns: 1; }
  .legal-accordion summary { align-items: flex-start; flex-direction: column; }
  .legal-summary-meta { text-align: left; }
}
@media (max-width: 520px) {
  .brand img { width: min(205px, 54vw); }
  .site-search { right: 72px; }
  .nav-toggle { right: 14px; left: auto; }
  .floating-actions { right: 8px; bottom: 10px; }
  .floating-action { min-width: 72px; }
  .content-wrap { width: min(100% - 24px, var(--max)); padding: 44px 0 64px; }
  .trust-strip { grid-template-columns: 1fr; }
  h1 { font-size: 36px; }
  h2 { font-size: 27px; }
  .hero { min-height: 520px; }
  .article-body { font-size: 17px; }
  .event-calendar-shell { padding: 14px; }
  .event-calendar-head h1,
  .event-calendar-head h2 { font-size: 34px; }
  .event-calendar-head p { font-size: 17px; }
  .event-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .event-card-body { gap: 8px; padding: 10px; }
  .event-card-source { font-size: 10px; }
  .event-card h3 { font-size: 16px; line-height: 1.15; overflow-wrap: anywhere; }
  .event-card-meta { gap: 3px; font-size: 12px; }
  .event-card-actions { gap: 5px; }
  .event-card-actions .button {
    flex: 1 1 auto;
    min-height: 44px;
    padding: 7px 5px;
    font-size: 10px;
    line-height: 1.05;
    text-align: center;
    white-space: normal;
  }
  .event-card-actions .resource-link {
    flex: 0 0 auto;
    font-size: 12px;
    text-underline-offset: 3px;
  }
  .cta-band { padding: 22px; }
  .legal-accordion summary, .legal-content { padding-left: 18px; padding-right: 18px; }
  .legal-item { padding: 15px; }
}
