﻿:root {
  --bg: #07131e;
  --bg-soft: #102433;
  --panel: rgba(8, 25, 39, 0.78);
  --panel-strong: rgba(10, 31, 47, 0.94);
  --text: #f8f3e9;
  --muted: #bfd0dc;
  --border: rgba(255, 255, 255, 0.12);
  --accent: #e0a64c;
  --accent-soft: #ffe1ab;
  --accent-glow: rgba(224, 166, 76, 0.24);
  --success: #8ce8cb;
  --shadow: 0 30px 70px rgba(0, 0, 0, 0.32);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(0, 182, 193, 0.18), transparent 32%),
    radial-gradient(circle at 82% 12%, var(--accent-glow), transparent 26%),
    linear-gradient(145deg, #07131e 0%, #0c2232 48%, #081923 100%);
  overflow-x: hidden;
}

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

body::before {
  top: -10rem;
  left: -8rem;
  background: rgba(61, 177, 182, 0.2);
  animation: drift 14s ease-in-out infinite;
}

body::after {
  right: -8rem;
  bottom: -12rem;
  background: var(--accent-glow);
  animation: drift 16s ease-in-out infinite reverse;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.page-shell {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.25rem 0 4rem;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: rgba(6, 18, 28, 0.58);
  border: 1px solid var(--border);
  border-radius: 999px;
  backdrop-filter: blur(18px);
  position: sticky;
  top: 1rem;
  z-index: 20;
}

.page-breadcrumbs {
  margin: 1rem 0 1.35rem;
  padding: 0 0.3rem;
  color: var(--muted);
}

.page-breadcrumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
}

.page-breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.92rem;
  line-height: 1.45;
}

.page-breadcrumbs li + li::before {
  content: "/";
  color: rgba(236, 228, 219, 0.38);
}

.page-breadcrumbs a {
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition:
    color 180ms ease,
    border-color 180ms ease;
}

.page-breadcrumbs a:hover,
.page-breadcrumbs a:focus-visible {
  color: var(--text);
  border-color: rgba(248, 204, 127, 0.48);
}

.page-breadcrumbs [aria-current="page"] {
  color: var(--text);
  font-weight: 600;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.82rem;
  padding: 0.62rem 1rem 0.6rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(5, 16, 25, 0.52);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.brand:hover,
.brand:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.2);
}

.brand-icon {
  display: block;
  width: 2.8rem;
  height: 2.8rem;
  flex: 0 0 auto;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.06rem;
  min-width: 0;
}

.brand-mark,
.brand-sub,
.eyebrow,
.panel-kicker,
.spotlight-label,
.venue-type,
.rules-label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.brand-mark,
.brand-sub {
  font-family: "Bebas Neue", sans-serif;
}

.brand-mark {
  font-size: 1.14rem;
  line-height: 0.95;
  letter-spacing: 0.08em;
  color: var(--text);
  white-space: nowrap;
}

.brand-sub {
  font-size: 0.56rem;
  line-height: 1;
  letter-spacing: 0.26em;
  color: var(--accent-soft);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  color: var(--muted);
}

.nav-links .nav-signup {
  display: none;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
}

.nav-links a[aria-current="page"],
.mobile-menu-panel a[aria-current="page"],
.footer-links a[aria-current="page"] {
  color: var(--accent-soft);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
}

.mobile-menu-toggle,
.mobile-menu-panel {
  display: none;
}

.mobile-menu-toggle {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 52;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.28rem;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(135deg, rgba(12, 31, 45, 0.96), rgba(7, 18, 27, 0.94)),
    rgba(7, 18, 27, 0.94);
  color: var(--text);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-0.45rem) scale(0.96);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.mobile-menu-toggle span {
  display: block;
  width: 1rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.mobile-menu-toggle.is-visible {
  display: inline-flex;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.mobile-menu-toggle.is-open span:nth-child(1) {
  transform: translateY(0.38rem) rotate(45deg);
}

.mobile-menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-0.38rem) rotate(-45deg);
}

.mobile-menu-panel {
  position: fixed;
  top: 4.55rem;
  right: 1rem;
  z-index: 51;
  width: min(calc(100vw - 2rem), 17rem);
  padding: 0.68rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(12, 31, 45, 0.98), rgba(7, 18, 27, 0.96)),
    rgba(7, 18, 27, 0.96);
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-0.4rem);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.mobile-menu-panel.is-open {
  display: grid;
  gap: 0.55rem;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

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

.button.primary {
  background: linear-gradient(135deg, var(--accent) 0%, #ffd48b 100%);
  color: #08131e;
  box-shadow: 0 14px 30px var(--accent-glow);
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: 2rem;
  padding: 3.4rem 0 2rem;
  align-items: start;
}

.hero-copy,
.hero-panel,
.venue-card,
.details-panel,
.process-card,
.search-guide-card,
.ai-search-card,
.faq-item,
.cta-panel,
.schedule,
.ai-search-section,
.venues,
.search-guide,
.process,
.faq {
  animation: rise 600ms ease both;
}

.hero-copy {
  padding: 1rem 0;
}

.hero-side-column {
  display: grid;
  gap: 0.85rem;
  align-content: start;
  padding-top: 0;
}

.eyebrow,
.panel-kicker {
  margin: 0 0 0.9rem;
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--accent-soft);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 0.95;
}

h1,
h2 {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(3.3rem, 8vw, 6.8rem);
  max-width: 12ch;
}

h1 span {
  color: var(--accent-soft);
}

.hero-split-heading {
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.hero-split-heading .hero-line {
  display: block;
  color: var(--text);
}

.hero-split-heading .hero-accent {
  color: var(--accent-soft);
}

.lead,
.section-heading p,
.details-main p,
.venue-card p,
.process-card p,
.faq-item p,
.rules-footnote,
.schedule-note,
.form-disclaimer,
.form-feedback,
.spotlight-copy {
  color: var(--muted);
  line-height: 1.75;
}

.lead {
  max-width: 62ch;
  font-size: 1.08rem;
  margin: 1.25rem 0 1.6rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.7rem;
}

.hero-stats,
.spotlight-strip,
.venue-grid,
.details-grid,
.search-guide-grid,
.process-grid,
.faq-grid {
  display: grid;
  gap: 1rem;
}

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

.stat-card,
.spotlight-card,
.detail-card,
.process-card,
.search-guide-card,
.ai-search-card,
.cta-panel,
.event-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

.stat-card {
  padding: 1.15rem;
}

.stat-card-placeholder {
  min-height: 0;
}

.stat-card-placeholder strong {
  font-size: 2.2rem;
}

.stat-card strong {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.2rem;
  color: var(--accent-soft);
}

.stat-card span {
  color: var(--muted);
  line-height: 1.55;
}

.spotlight-strip {
  grid-template-columns: 1.2fr 1fr;
  margin-top: 1.4rem;
}

.hero-spotlight-strip {
  margin-top: 0;
}

.spotlight-card {
  padding: 1.2rem 1.25rem;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at right top, var(--accent-glow), transparent 35%);
}

.spotlight-card.alt {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at left bottom, rgba(61, 177, 182, 0.22), transparent 38%);
}

.spotlight-label,
.venue-type,
.rules-label {
  margin: 0 0 0.45rem;
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--accent-soft);
}

.spotlight-copy {
  margin: 0;
}

.hero-panel,
.schedule,
.ai-search-section,
.venues,
.search-guide,
.process,
.faq,
.details-panel {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.venues,
.details-panel,
.ai-search-section,
.process,
.search-guide,
.faq,
.social-section,
.terms-section,
.media-seo-links {
  content-visibility: auto;
  contain-intrinsic-size: 900px;
}

.schedule {
  content-visibility: auto;
  contain-intrinsic-size: 1800px;
}

.cta-panel {
  content-visibility: auto;
  contain-intrinsic-size: 220px;
}

.site-footer {
  content-visibility: auto;
  contain-intrinsic-size: 260px;
}

.hero-panel {
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: -30% auto auto 52%;
  width: 16rem;
  height: 16rem;
  background: radial-gradient(circle, var(--accent-glow), transparent 68%);
  pointer-events: none;
}

.panel-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.2rem;
}

.panel-header h2 {
  font-size: 2.5rem;
}

.demo-badge {
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1;
  white-space: nowrap;
  flex-shrink: 0;
}

.venue-toggle,
.schedule-tabs,
.request-toggle {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.toggle-button,
.request-button,
.filter-chip {
  appearance: none;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  padding: 0.85rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.toggle-button,
.request-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.7rem 0.9rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.toggle-button:hover,
.toggle-button:focus-visible,
.request-button:hover,
.request-button:focus-visible,
.filter-chip:hover,
.filter-chip:focus-visible {
  transform: translateY(-2px);
  color: var(--text);
}

.toggle-button.is-active,
.request-button.is-active,
.filter-chip.is-active {
  background: linear-gradient(135deg, var(--accent) 0%, #ffd48b 100%);
  color: #08131e;
  border-color: transparent;
}

.toggle-button.is-active,
.request-button.is-active {
  background: linear-gradient(135deg, var(--accent) 0%, #ffd48b 100%);
  color: #08131e;
  border-color: transparent;
  box-shadow: 0 14px 28px rgba(224, 166, 76, 0.18);
}

.request-toggle-wrap {
  margin-top: 1rem;
}

.request-toggle-label {
  margin: 0 0 0.55rem;
  color: var(--muted);
  font-size: 0.84rem;
}

.form-stepper {
  display: none;
}

.form-step-pills {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.form-step-pill {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 2.85rem;
  padding: 0.7rem 0.85rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.form-step-pill.is-active {
  color: var(--text);
  border-color: rgba(224, 166, 76, 0.34);
  background:
    linear-gradient(180deg, rgba(224, 166, 76, 0.12), rgba(224, 166, 76, 0.05)),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 14px 28px rgba(224, 166, 76, 0.12);
}

.form-step-pill.is-complete {
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--text);
}

.form-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 800;
  flex-shrink: 0;
}

.form-step-pill.is-active .form-step-number {
  background: linear-gradient(135deg, var(--accent) 0%, #ffd48b 100%);
  color: #08131e;
}

.form-step-label {
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.15;
}

.form-step-status {
  margin: 0;
  color: var(--accent-soft);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-step {
  margin-top: 1.25rem;
  padding: 1.1rem 1.05rem 1.15rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.02);
  min-width: 0;
}

.form-step-kicker {
  display: none;
}

.form-step-title {
  font-size: clamp(1.7rem, 4vw, 2.25rem);
  line-height: 1;
  margin: 0;
}

.form-step-copy {
  margin: 0.7rem 0 0;
  color: var(--muted);
  line-height: 1.68;
}

.form-step-grid {
  margin-top: 1rem;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.3rem;
  min-width: 0;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-width: 0;
}

.field span {
  font-size: 0.92rem;
  color: var(--muted);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(6, 17, 26, 0.82);
  border-radius: 16px;
  color: var(--text);
  padding: 0.95rem 1rem;
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-glow);
  transform: translateY(-1px);
}

.field-wide {
  grid-column: 1 / -1;
}

.form-meta {
  margin: 1rem 0 1.2rem;
}

.form-meta p {
  margin: 0.35rem 0;
}

.turnstile-shell {
  margin: 1rem 0 0;
  padding: 0.95rem 1rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
}

.turnstile-label {
  margin: 0 0 0.7rem;
  color: var(--accent-soft);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

#turnstile-widget {
  min-height: 72px;
}

.form-disclaimer strong {
  color: var(--accent-soft);
}

.form-submit {
  width: 100%;
}

.form-step-actions {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.form-step-actions .button {
  flex: 1 1 0;
}

.form-step-back[hidden],
.form-step-next[hidden],
.form-submit[hidden] {
  display: none;
}

.form-feedback {
  min-height: 1.5rem;
  margin: 0.9rem 0 0;
}

.form-feedback.is-success {
  color: var(--success);
}

.form-feedback.is-error {
  color: #ffb9b9;
}

.form-submit:disabled {
  opacity: 0.72;
  cursor: wait;
}

.marquee-band {
  position: relative;
  overflow: hidden;
  margin: 0.75rem 0 2.3rem;
  padding: 0.95rem 0;
  border-block: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.marquee-track {
  display: flex;
  gap: 2.2rem;
  min-width: max-content;
  color: var(--accent-soft);
  font-size: 0.92rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  animation: marquee 26s linear infinite;
}

.section-heading {
  max-width: 58rem;
  margin-bottom: 1.8rem;
}

.section-heading h2 {
  font-size: clamp(2.4rem, 4.2vw, 4rem);
  margin-bottom: 0.8rem;
}

.venues,
.schedule,
.ai-search-section,
.search-guide,
.process,
.faq {
  padding: 2rem;
  margin-top: 2rem;
}

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

.search-guide-card {
  padding: 1.25rem;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.03);
}

.search-guide-card h3 {
  font-size: 1.38rem;
  line-height: 1.1;
  margin-bottom: 0.7rem;
}

.search-guide-card p,
.search-guide-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.search-guide-note {
  margin-top: 1.1rem;
  max-width: 58ch;
}

.search-guide-note a {
  color: var(--accent-soft);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

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

.venue-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at right top, rgba(255, 255, 255, 0.06), transparent 30%);
  overflow: hidden;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.venue-card:hover,
.venue-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.2);
}

.venue-card.is-active {
  border-color: var(--accent);
  box-shadow: 0 20px 40px var(--accent-glow);
}

.venue-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.venue-card-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(5, 15, 24, 0.28));
  pointer-events: none;
}

.venue-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1.01);
}

.venue-card-body {
  padding: 1.15rem 1.4rem 1.4rem;
}

.venue-card h3 {
  font-size: 1.8rem;
  margin-bottom: 0.45rem;
}

.venue-card p {
  margin: 0 0 0.8rem;
}

.venue-cutoff {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--accent-soft);
}

.venue-read-more {
  display: none;
  appearance: none;
  border: 0;
  padding: 0;
  margin: 0.3rem 0 0;
  background: transparent;
  color: var(--accent-soft);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.15rem;
  cursor: pointer;
}

.process-read-more {
  display: none;
  appearance: none;
  border: 0;
  padding: 0;
  margin: 0.35rem 0 0;
  background: transparent;
  color: var(--accent-soft);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.15rem;
  cursor: pointer;
}

.venue-summary {
  margin-bottom: 0.9rem;
}

.venue-card ul {
  margin: 0;
  padding-left: 1rem;
  color: var(--muted);
  line-height: 1.7;
}

.venue-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.1rem;
}

.venue-card-button,
.details-events-button {
  min-height: 2.85rem;
  padding-inline: 1.15rem;
}

.details-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
  padding: 2rem;
  margin-top: 2rem;
}

.details-main h2 {
  font-size: clamp(2.3rem, 4vw, 3.7rem);
  margin-bottom: 0.7rem;
}

.details-venue-switcher {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1rem;
}

.details-venue-button {
  appearance: none;
  border: 0;
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  min-height: 2rem;
  background: rgba(20, 37, 51, 0.88);
  color: rgba(243, 241, 235, 0.92);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  cursor: pointer;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease,
    opacity 180ms ease,
    filter 180ms ease;
}

.details-venue-button:hover,
.details-venue-button:focus-visible {
  transform: translateY(-1px);
  background: rgba(29, 50, 69, 0.92);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.11);
  outline: none;
}

.details-venue-button:not(.is-active) {
  opacity: 1;
}

.details-venue-button.is-active {
  opacity: 1;
  background: linear-gradient(135deg, rgba(224, 166, 76, 0.9), rgba(255, 212, 139, 0.88));
  color: #08131e;
  box-shadow: 0 12px 28px rgba(224, 166, 76, 0.16);
  filter: saturate(1.02);
}

.details-venue-button.is-active:hover,
.details-venue-button.is-active:focus-visible {
  background: linear-gradient(135deg, rgba(229, 172, 84, 0.94), rgba(255, 217, 148, 0.92));
  box-shadow: 0 16px 32px rgba(224, 166, 76, 0.22);
  filter: saturate(1.05);
}

.details-main > p {
  margin: 0 0 1.4rem;
  max-width: 60ch;
}

.visual-frame {
  margin-bottom: 1.4rem;
  position: relative;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--border);
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.02);
  box-shadow: var(--shadow);
}

.visual-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  background: rgba(6, 20, 31, 0.45);
}

.visual-frame.has-flyer img {
  object-fit: cover;
}

.visual-frame.is-empty img {
  object-fit: cover;
  background: transparent;
}

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

.details-grid .rules-card {
  grid-column: 1 / -1;
}

.details-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.15rem;
}

.details-mobile-toggle {
  display: none;
  appearance: none;
  border: 1px solid var(--border);
  border-radius: 999px;
  min-height: 2.8rem;
  padding: 0.72rem 1rem;
  margin: 0 0 1rem;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.detail-card {
  padding: 1.15rem 1.2rem;
}

.detail-card span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 0.45rem;
}

.detail-card strong {
  line-height: 1.4;
}

.rules-card {
  padding: 1.4rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at left bottom, var(--accent-glow), transparent 36%);
}

.rules-card ul {
  margin: 0.5rem 0 1rem;
  padding-left: 1rem;
  color: var(--text);
  line-height: 1.7;
}

.rules-footnote {
  margin: 0;
  font-size: 0.95rem;
}

.rules-map-figure {
  margin: 0 0 1rem;
  padding: 0.95rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(6, 20, 31, 0.34);
}

.rules-map-heading {
  margin: 0 0 0.7rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-soft);
}

.rules-map-canvas {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(3, 10, 16, 0.94), rgba(8, 23, 34, 0.96));
}

.rules-map-figure img {
  display: block;
  width: 100%;
  height: auto;
  background: transparent;
}

.rules-map-caption {
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.rules-map-legend {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.85rem;
}

.rules-map-legend-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  max-height: 16rem;
  overflow: auto;
  padding-right: 0.1rem;
  align-content: start;
}

.rules-map-legend-item {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.22rem;
  padding: 0.65rem 0.8rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.rules-map-option {
  appearance: none;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.rules-map-option:hover,
.rules-map-option:focus-visible {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
  outline: none;
}

.rules-map-option.is-selected {
  border-color: rgba(224, 166, 76, 0.5);
  background:
    linear-gradient(180deg, rgba(224, 166, 76, 0.14), rgba(224, 166, 76, 0.08)),
    rgba(255, 255, 255, 0.06);
  box-shadow: 0 12px 24px rgba(224, 166, 76, 0.12);
}

.rules-map-option[hidden],
.option-toggle-button[hidden] {
  display: none !important;
}

.rules-map-legend-label {
  color: var(--text);
  font-size: 0.88rem;
  line-height: 1.4;
}

.rules-map-legend-meta {
  color: var(--accent-soft);
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.4;
  white-space: nowrap;
}

.option-toggle-button {
  appearance: none;
  border: 1px solid rgba(224, 166, 76, 0.72);
  background: linear-gradient(135deg, #f2c35b 0%, #dca548 100%);
  color: #101a22;
  font: inherit;
  font-weight: 800;
  line-height: 1.3;
  border-radius: 999px;
  padding: 0.75rem 1rem;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.option-toggle-button:hover,
.option-toggle-button:focus-visible {
  border-color: rgba(224, 166, 76, 0.92);
  background: linear-gradient(135deg, #f6cd6d 0%, #e0ad53 100%);
  color: #08131b;
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(224, 166, 76, 0.24);
  outline: none;
}

.rules-map-toggle {
  justify-self: start;
}

@media (min-width: 821px) {
  .rules-map-toggle,
  .event-seating-toggle {
    display: none !important;
  }
}

.rules-booking {
  margin-top: 1rem;
  display: grid;
  gap: 0.7rem;
}

.rules-booking-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-soft);
}

.rules-booking-controls {
  display: grid;
  gap: 0.75rem;
}

.rules-date-select {
  width: 100%;
  min-height: 3rem;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.rules-date-select:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.16);
  outline-offset: 2px;
  border-color: rgba(255, 255, 255, 0.22);
}

.rules-date-select option {
  color: #08131e;
}

.rules-table-button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.floating-quick-link {
  position: fixed;
  right: auto;
  z-index: 35;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4.4rem;
  min-height: 3rem;
  padding: 0.72rem 0.84rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(135deg, rgba(12, 31, 45, 0.96), rgba(7, 18, 27, 0.94)),
    rgba(7, 18, 27, 0.94);
  color: var(--text);
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(0.55rem);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
  text-decoration: none;
  font-size: 0.78rem;
}

.back-to-top {
  right: 1.2rem;
  bottom: 13.35rem;
}

.back-to-bottom {
  right: 1.2rem;
  bottom: 9.3rem;
}

.back-to-signup {
  right: 1.2rem;
  bottom: 5.25rem;
}

.back-to-question {
  right: 1.2rem;
  bottom: 1.2rem;
}

.back-to-events {
  right: 1.2rem;
  bottom: 5.25rem;
}

.floating-quick-link:hover,
.floating-quick-link:focus-visible {
  border-color: rgba(255, 255, 255, 0.24);
  background:
    linear-gradient(135deg, rgba(16, 39, 56, 0.98), rgba(8, 22, 33, 0.96)),
    rgba(8, 22, 33, 0.96);
}

.floating-quick-link.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.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;
}

.event-calendar-shell,
.event-calendar-head,
.event-calendar-controls,
.event-calendar-jumps,
.event-grid,
.wynn-event-card,
.wynn-event-card-body,
.wynn-event-card-actions {
  min-width: 0;
}

.event-calendar-shell {
  display: grid;
  gap: 1rem;
}

.event-calendar-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
  align-items: end;
}

.event-calendar-head p {
  margin: 0;
}

.event-calendar-count {
  min-width: 10rem;
  padding: 1rem 1.05rem;
  border-radius: 22px;
  border: 1px solid rgba(240, 197, 122, 0.22);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03)),
    rgba(9, 26, 38, 0.52);
  text-align: center;
  box-shadow: 0 24px 40px rgba(3, 11, 18, 0.24);
}

.event-calendar-count strong {
  display: block;
  color: var(--accent-soft);
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  line-height: 1;
}

.event-calendar-count span {
  display: block;
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.event-calendar-jumps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.event-calendar-jump {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.event-calendar-jump:hover,
.event-calendar-jump:focus-visible,
.event-calendar-jump.is-active {
  transform: translateY(-1px);
  border-color: rgba(240, 197, 122, 0.38);
  background:
    linear-gradient(135deg, rgba(240, 197, 122, 0.16), rgba(255, 255, 255, 0.08)),
    rgba(255, 255, 255, 0.08);
  outline: none;
}

.event-calendar-controls {
  display: grid;
  grid-template-columns: minmax(220px, 1.55fr) repeat(2, minmax(145px, 1fr)) auto;
  gap: 0.75rem;
  align-items: end;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03)),
    rgba(9, 26, 38, 0.44);
}

.event-calendar-controls label {
  display: grid;
  gap: 0.35rem;
}

.event-calendar-controls label > span {
  color: var(--accent-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.event-calendar-controls input,
.event-calendar-controls select {
  width: 100%;
  min-height: 3rem;
  padding: 0.82rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  color: #14212b;
  font: inherit;
}

.event-calendar-controls > [data-events-reset] {
  color: var(--text);
}

.event-calendar-controls > [data-events-reset]:hover,
.event-calendar-controls > [data-events-reset]:focus-visible {
  color: var(--text);
}
.event-source-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.wynn-event-card {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04)),
    rgba(9, 26, 38, 0.46);
  box-shadow: 0 28px 44px rgba(3, 11, 18, 0.2);
}

.wynn-event-card-media {
  display: block;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: rgba(4, 12, 18, 0.92);
}

.wynn-event-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.wynn-event-card-body {
  display: grid;
  gap: 0.8rem;
  padding: 1.15rem;
}

.wynn-event-card-source {
  color: var(--accent-soft);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.wynn-event-card h3 {
  margin: 0;
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.wynn-event-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.8rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.wynn-event-card-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.wynn-event-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

.wynn-event-card-actions .button,
.wynn-event-card-actions .resource-link {
  flex: 1 1 12rem;
  min-height: 2.8rem;
  justify-content: center;
  text-align: center;
}

.wynn-event-card-actions .resource-link {
  display: inline-flex;
  align-items: center;
  padding: 0.82rem 1.25rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
}

.weekly-events-section .event-calendar-controls {
  grid-template-columns: minmax(180px, 1.4fr) repeat(2, minmax(112px, 0.85fr));
}

.weekly-events-section .event-calendar-controls [data-events-reset] {
  grid-column: 1 / -1;
  justify-self: end;
  min-width: 7.5rem;
}

.weekly-events-section .event-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

@media (max-width: 980px) {
  .event-calendar-head,
  .event-calendar-controls {
    grid-template-columns: minmax(0, 1fr);
  }

  .event-calendar-count {
    min-width: 0;
    width: 100%;
  }
}


@media (max-width: 820px) {
  .events-page,
  .events-page .page-shell,
  .events-page .content-main,
  .events-page .content-hero,
  .events-page .content-hero-copy,
  .events-page .content-hero-spotlight,
  .events-page .featured-story-card,
  .events-page .featured-story-copy,
  .events-page .event-calendar-shell,
  .events-page .event-calendar-controls {
    max-width: 100%;
    min-width: 0;
    overflow-x: clip;
  }

  .events-page .page-shell {
    width: min(100% - 1rem, 1180px);
  }

  .events-page .content-hero {
    gap: 0.9rem;
  }

  .events-page .content-hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2.55rem, 13vw, 4.15rem);
    line-height: 0.92;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .events-page .hero-split-heading .hero-line {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .events-page .lead-links,
  .events-page .featured-story-copy h2,
  .events-page .featured-story-copy p {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .events-page .featured-story-copy h2 {
    font-size: clamp(1.45rem, 8vw, 2.15rem);
    line-height: 1;
  }

  .events-page .hero-button-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.7rem;
  }

  .events-page .hero-button-row .button {
    width: 100%;
    min-width: 0;
    justify-content: center;
  }

  .events-page .event-calendar-controls {
    grid-template-columns: minmax(0, 1fr);
  }
}
@media (max-width: 720px) {
  .weekly-events-section .event-calendar-controls {
    grid-template-columns: minmax(0, 1fr);
  }

  .weekly-events-section .event-calendar-controls [data-events-reset] {
    justify-self: stretch;
    width: 100%;
  }
}
@media (max-width: 640px) {
  .event-calendar-jumps {
    flex-direction: column;
    align-items: stretch;
  }

  .event-calendar-jump {
    width: 100%;
  }

  .event-grid,
  .weekly-events-section .event-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
  }

  .wynn-event-card {
    border-radius: 18px;
  }

  .wynn-event-card-body {
    gap: 0.55rem;
    padding: 0.78rem;
  }

  .wynn-event-card-source {
    font-size: 0.62rem;
    letter-spacing: 0.1em;
  }

  .wynn-event-card h3 {
    font-size: clamp(1.05rem, 6vw, 1.32rem);
  }

  .wynn-event-card-meta {
    display: grid;
    gap: 0.25rem;
    font-size: 0.82rem;
  }

  .wynn-event-card-note {
    display: none;
  }

  .wynn-event-card-actions {
    gap: 0.45rem;
  }

  .wynn-event-card-actions .button,
  .wynn-event-card-actions .resource-link {
    flex: 1 1 calc(50% - 0.25rem);
    min-width: 0;
    min-height: 2.35rem;
    padding: 0.62rem 0.5rem;
    font-size: 0.78rem;
    line-height: 1.1;
  }
}


@media (max-width: 640px) {
  .events-page .event-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
  }

  .events-page .wynn-event-card-body {
    padding: 0.72rem;
  }

  .events-page .wynn-event-card-actions {
    gap: 0.38rem;
  }

  .events-page .wynn-event-card-actions .button,
  .events-page .wynn-event-card-actions .resource-link {
    flex-basis: calc(50% - 0.2rem);
    padding-inline: 0.35rem;
    font-size: 0.72rem;
    white-space: normal;
    text-wrap: balance;
    overflow-wrap: normal;
    word-break: normal;
  }
}

@media (max-width: 380px) {
  .events-page .event-grid {
    gap: 0.55rem;
  }

  .events-page .wynn-event-card-body {
    padding: 0.62rem;
  }

  .events-page .wynn-event-card-actions .button,
  .events-page .wynn-event-card-actions .resource-link {
    font-size: 0.66rem;
    min-height: 2.18rem;
  }
}
.schedule-toolbar {
  display: grid;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.schedule-select,
.schedule-search input {
  width: 100%;
  min-height: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  color: #1a2731;
  padding: 0.85rem 1rem;
}

.schedule-select-wrap,
.schedule-search {
  display: block;
}

.schedule-search-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.schedule-search {
  flex: 1 1 auto;
  max-width: 22rem;
}

.schedule-count {
  margin: 0;
  color: #f2eee6;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
  padding: 0.72rem 1rem;
  border: 1px solid rgba(240, 197, 122, 0.28);
  border-radius: 999px;
  background: rgba(8, 25, 35, 0.72);
  box-shadow: 0 14px 30px rgba(1, 6, 12, 0.18);
}

.schedule-count.is-prompt {
  color: #0f1c24;
  background: linear-gradient(135deg, rgba(240, 197, 122, 0.98), rgba(255, 225, 170, 0.96));
  border-color: rgba(240, 197, 122, 0.72);
  box-shadow: 0 16px 32px rgba(240, 197, 122, 0.22);
}

.schedule-note {
  margin: 0 0 1rem;
  max-width: 42rem;
}

.schedule-source {
  margin: 0 0 0.6rem;
  color: var(--muted);
  line-height: 1.7;
}

.ai-search-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 1rem;
}

.ai-search-layout,
.ai-search-card,
.ai-search-form,
.ai-search-bar,
.ai-search-suggestions,
.ai-search-source-grid,
.ai-search-source-card,
.ai-search-suggestion {
  min-width: 0;
}

.ai-search-card {
  padding: 1.25rem;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.03);
}

.ai-search-form {
  display: grid;
  gap: 0.9rem;
}

.ai-search-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.75rem;
}

.ai-search-bar input {
  width: 100%;
  min-height: 3.3rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  color: #14212b;
  font: inherit;
}

.ai-search-bar input::placeholder {
  color: rgba(20, 33, 43, 0.62);
}

.ai-search-bar input:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.18);
  outline-offset: 2px;
}

.ai-search-submit {
  min-width: 11.25rem;
  white-space: nowrap;
}

.ai-search-helper,
.ai-search-feedback,
.ai-search-answer-body p,
.ai-search-source-text {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.ai-search-suggestions {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.15fr) minmax(0, 0.8fr);
  gap: 0.5rem;
}

.ai-search-suggestion {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  width: 100%;
  min-height: 2.9rem;
  padding: 0.62rem 0.56rem;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  white-space: nowrap;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.ai-search-suggestion:hover,
.ai-search-suggestion:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.ai-search-results-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
  min-height: 100%;
  align-content: start;
}

.ai-search-answer,
.ai-search-sources {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(6, 20, 31, 0.28);
}

.ai-search-answer {
  display: grid;
  align-content: start;
  padding: 1.05rem 1.1rem;
  min-height: 100%;
  width: 100%;
}

.ai-search-answer-label,
.ai-search-sources-label {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-soft);
}

.ai-search-answer:only-child {
  margin-top: 0;
}

.ai-search-feedback {
  min-height: 1.5rem;
}

.ai-search-feedback:empty {
  min-height: 0;
}

.ai-search-sources {
  padding: 1rem;
}

.ai-search-sources-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 0.85rem;
}

.ai-search-sources-meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.ai-search-source-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.ai-search-source-card {
  display: grid;
  gap: 0.55rem;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.03);
  text-decoration: none;
  color: inherit;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.ai-search-source-card:hover,
.ai-search-source-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.04);
  outline: none;
}

.ai-search-source-kicker {
  margin: 0;
  color: var(--accent-soft);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ai-search-source-title {
  margin: 0;
  font-size: 1rem;
  line-height: 1.3;
}

.ai-search-source-link {
  color: var(--accent-soft);
  font-size: 0.84rem;
  word-break: break-word;
}

.ai-search-answer-label,
.ai-search-sources-label {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-soft);
}

.ai-search-answer-body {
  display: grid;
  gap: 0.8rem;
  margin-top: 0.7rem;
  min-height: 11rem;
  align-content: start;
}

.ai-search-answer-body strong {
  color: var(--text);
}


.ai-search-feedback.is-error {
  color: #ffb9b9;
}

.ai-search-feedback.is-success {
  color: var(--success);
}

.event-list-shell {
  max-width: 920px;
  margin: 0 auto;
}

.event-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.event-card {
  display: grid;
  grid-template-columns: clamp(190px, 32%, 280px) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  min-height: 260px;
  min-width: 0;
  padding: 0;
  position: relative;
  overflow: hidden;
  background: rgba(249, 247, 242, 0.97);
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid rgba(9, 22, 34, 0.08);
  box-shadow: none;
  color: #13222d;
}

.event-card:last-child {
  border-bottom: 0;
}

.event-card.is-selectable {
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.event-card.is-selectable:hover,
.event-card.is-selectable:focus-visible {
  transform: translateY(-2px);
  background: #ffffff;
}

.event-media {
  position: relative;
  margin: 0;
  width: 100%;
  min-width: 0;
  height: 100%;
  min-height: 100%;
  overflow: hidden;
  border-radius: 0;
  border-right: 1px solid rgba(9, 22, 34, 0.08);
  background: #dce5ea;
}

.event-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.event-media.is-placeholder {
  background: linear-gradient(180deg, #0b1e2c 0%, #08141d 100%);
}

.event-media.is-placeholder img {
  object-fit: contain;
  object-position: center center;
  padding: 1rem;
  transform: none;
}

.event-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.08));
  pointer-events: none;
}

.event-body {
  display: grid;
  align-content: start;
  gap: 0.75rem;
  min-width: 0;
  padding: 1.2rem 1.25rem;
}

.event-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(220px, 0.9fr);
  gap: 1rem;
  align-items: center;
}

.event-copy {
  display: grid;
  gap: 0.75rem;
  min-width: 0;
}

.event-card::before {
  display: none;
}

.event-card-header {
  display: block;
  margin: 0;
}

.event-card h3 {
  font-size: 2.15rem;
  color: #101820;
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.event-venue-name {
  margin: 0 0 0.35rem;
  color: #5e6d78;
  font-size: 0.92rem;
  font-weight: 700;
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  min-width: 0;
  color: #60707c;
  font-size: 0.94rem;
}

.event-note {
  margin: 0;
  min-width: 0;
  color: #60707c;
  line-height: 1.6;
  max-width: 52ch;
}

.event-rules {
  margin: 0;
  padding-left: 1.1rem;
  min-width: 0;
  color: #52636f;
  line-height: 1.65;
}

.event-rules li + li {
  margin-top: 0.2rem;
}

.event-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
}

.event-seating {
  display: grid;
  gap: 0.65rem;
  min-width: 0;
  padding-left: 1rem;
  border-left: 1px solid rgba(9, 22, 34, 0.08);
}

.event-seating-label {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #556a79;
}

.event-seating-list {
  display: grid;
  gap: 0.55rem;
  max-height: 16rem;
  overflow: auto;
  padding-right: 0.1rem;
}

.event-seating-toggle {
  width: 100%;
  margin-top: 0.7rem;
}

.seating-option-button {
  display: grid;
  gap: 0.22rem;
  width: 100%;
  padding: 0.72rem 0.82rem;
  border: 1px solid rgba(202, 155, 74, 0.24);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 225, 170, 0.9), rgba(255, 245, 223, 0.96)),
    rgba(255, 255, 255, 0.92);
  color: #101820;
  text-align: left;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.seating-option-button:hover,
.seating-option-button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(202, 155, 74, 0.42);
  box-shadow: 0 12px 24px rgba(224, 166, 76, 0.18);
  background:
    linear-gradient(135deg, rgba(255, 214, 139, 0.98), rgba(255, 244, 222, 0.98)),
    rgba(255, 255, 255, 0.96);
}

.seating-option-button[hidden] {
  display: none !important;
}

.seating-option-name {
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.3;
}

.seating-option-meta {
  font-size: 0.8rem;
  color: #6a5931;
  line-height: 1.35;
}

.event-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.78rem 1rem;
  border-radius: 10px;
  border: 0;
  background: linear-gradient(135deg, var(--accent) 0%, #ffd48b 100%);
  color: #0d1822;
  font-weight: 800;
  font-size: 0.92rem;
  cursor: pointer;
}

.event-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.78rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(19, 34, 45, 0.12);
  background: rgba(19, 34, 45, 0.03);
  color: #4f6474;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.event-link:hover,
.event-link:focus-visible {
  transform: none;
  border-color: rgba(19, 34, 45, 0.22);
  background: rgba(19, 34, 45, 0.06);
  color: #111a22;
}

.event-empty {
  padding: 1.4rem;
  text-align: center;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
}

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

.process-card {
  padding: 1.4rem;
}

.process-card span {
  display: inline-flex;
  width: 2.6rem;
  height: 2.6rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent-glow);
  color: var(--accent-soft);
  font-weight: 800;
  margin-bottom: 1rem;
}

.process-card h3 {
  font-size: 1.65rem;
  margin-bottom: 0.75rem;
}

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

.faq-item {
  padding: 1.25rem 1.3rem;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.08rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0.85rem 0 0;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding: 1.45rem 1.6rem;
  background:
    linear-gradient(135deg, rgba(224, 166, 76, 0.14), rgba(61, 177, 182, 0.14)),
    var(--panel-strong);
}

.cta-panel h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.cta-panel .button.primary {
  min-height: 4.25rem;
  padding: 1rem 1.85rem 0.92rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.45rem;
  letter-spacing: 0.08em;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 18px 36px var(--accent-glow);
}

.social-section {
  margin-top: 2rem;
  padding: 2rem;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

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

.social-card {
  display: grid;
  align-items: center;
  justify-items: center;
  align-content: start;
  gap: 0.9rem;
  min-height: clamp(15.5rem, 28vw, 18rem);
  padding: 1.2rem 1.15rem 1.3rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top, rgba(224, 166, 76, 0.12), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    var(--panel-strong);
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.social-card:hover,
.social-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.24);
  background:
    radial-gradient(circle at top, rgba(224, 166, 76, 0.18), transparent 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    var(--panel-strong);
  outline: none;
}

.social-icon-wrap {
  display: grid;
  place-items: center;
  width: min(100%, 7rem);
  aspect-ratio: 1;
}

.social-icon {
  display: block;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.24));
  transition: transform 180ms ease, filter 180ms ease;
}

.social-card:hover .social-icon,
.social-card:focus-visible .social-icon {
  transform: scale(1.045);
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.28));
}

.social-card-copy {
  display: grid;
  gap: 0.45rem;
  justify-items: center;
  text-align: center;
}

.social-network {
  margin: 0;
  color: var(--accent-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.social-card-copy h3 {
  margin: 0;
  font-size: clamp(1.08rem, 1.7vw, 1.35rem);
  line-height: 1.05;
  word-break: break-word;
}

.social-card-copy p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 28ch;
}

.terms-section {
  margin-top: 2rem;
  padding: 2rem;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.legal-stack {
  display: grid;
  gap: 1rem;
}

.terms-accordion {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.terms-accordion summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  cursor: pointer;
  background:
    linear-gradient(135deg, rgba(224, 166, 76, 0.09), rgba(61, 177, 182, 0.09)),
    rgba(255, 255, 255, 0.02);
}

.terms-accordion summary::-webkit-details-marker {
  display: none;
}

.terms-summary-title,
.terms-summary-meta {
  display: block;
}

.terms-summary-title {
  font-weight: 800;
  color: var(--text);
}

.terms-summary-meta {
  color: var(--accent-soft);
  font-size: 0.95rem;
  text-align: right;
}

.terms-content {
  padding: 1.35rem 0 0;
}

.terms-effective,
.terms-callout,
.terms-intro,
.terms-item p,
.terms-item li,
.terms-placeholder {
  color: var(--muted);
  line-height: 1.75;
}

.terms-effective,
.terms-callout {
  margin: 0 0 0.7rem;
}

.terms-effective {
  font-weight: 700;
  color: var(--accent-soft);
}

.terms-callout {
  font-weight: 800;
  letter-spacing: 0.08em;
}

.terms-intro {
  margin: 0 0 1.4rem;
  max-width: 72ch;
}

.terms-list {
  margin: 0;
  padding-left: 0;
  display: grid;
  gap: 1rem;
  list-style: none;
}

.terms-item {
  padding: 1.1rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  list-style: none;
}

.terms-item h3 {
  font-size: 1.45rem;
  margin-bottom: 0.65rem;
}

.terms-item p {
  margin: 0.45rem 0;
}

.terms-item ul {
  margin: 0.45rem 0 0.7rem;
  padding-left: 1.15rem;
}

.terms-placeholder {
  color: var(--accent-soft);
}

.site-footer {
  display: grid;
  gap: 0.45rem;
  justify-items: center;
  text-align: center;
  color: var(--muted);
  margin-top: 2.15rem;
  padding: 2rem 0 0.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.55rem 0.6rem;
  margin: 0 0 0.35rem;
}

.footer-links a {
  color: var(--text);
  padding: 0.42rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.9rem;
  line-height: 1;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--accent-soft);
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

.footer-brand {
  color: var(--text);
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.footer-social {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0.08rem 0 0.45rem;
}

.footer-social-link {
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  color: var(--accent-soft);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.footer-social-icon {
  width: 1.08rem;
  height: 1.08rem;
  display: block;
}


.footer-socials {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0.08rem 0 0.45rem;
}

.footer-socials a {
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  flex: 0 0 2.4rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  color: var(--accent-soft);
  overflow: hidden;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.footer-socials svg {
  width: 1.08rem;
  height: 1.08rem;
  display: block;
  flex: 0 0 auto;
}
.footer-copy {
  max-width: 46rem;
  font-size: 0.97rem;
  line-height: 1.5;
}

.footer-copyright {
  margin-top: 0.4rem;
  font-size: 0.84rem;
  opacity: 1;
  color: rgba(243, 241, 235, 0.88);
}

.artists-main {
  display: grid;
  /* Prevent the page stack from keeping an oversized implicit grid track after viewport switches. */
  grid-template-columns: minmax(0, 1fr);
  gap: 1.7rem;
  padding-top: 3rem;
  min-width: 0;
  max-width: 100%;
  overflow-x: clip;
}

.artists-page .page-shell {
  max-width: 100%;
  overflow-x: clip;
}

.artists-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 1.5rem;
  align-items: center;
  min-width: 0;
}

.artists-hero-copy {
  padding-top: 0.5rem;
  min-width: 0;
}

.artists-hero-copy h1 {
  max-width: 11ch;
  min-height: 5.7em;
  text-wrap: balance;
}

.artists-hero-copy h1 span {
  display: block;
  color: var(--accent-soft);
  text-wrap: balance;
}

.lead-links {
  margin: 0.95rem 0 0;
  color: var(--muted);
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.lead-links a {
  color: var(--accent-soft);
}

.artists-hero-stats {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.75rem;
  grid-column: 1 / -1;
}

.artists-hero-panel,
.artist-directory,
.artist-feature,
.artists-cta-panel {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.artists-hero-panel {
  padding: 1.5rem 1.45rem;
}

.artists-overlap-panel {
  display: grid;
  gap: 1rem;
  min-width: 0;
}

.artists-overlap-panel .eyebrow {
  color: #ffffff;
  font-weight: 900;
}

.artists-hero-panel-head {
  display: grid;
  gap: 0.35rem;
}

.artists-hero-panel-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.artists-overlap-panel .artist-directory-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.artists-panel-actions {
  grid-column: 2 / 3;
  display: flex;
  justify-content: flex-start;
  margin-top: -0.2rem;
}

.artists-panel-list {
  margin: 0;
  padding-left: 1.25rem;
  display: grid;
  gap: 0.85rem;
  color: var(--muted);
  line-height: 1.68;
}

.artist-directory {
  padding: 1.55rem;
}

.artist-directory-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.artist-directory-card {
  position: relative;
  display: grid;
  align-content: end;
  gap: 0.7rem;
  min-height: 15rem;
  padding: 1.1rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(140deg, rgba(16, 39, 56, 0.92), rgba(8, 22, 33, 0.96)),
    rgba(8, 22, 33, 0.94);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
  overflow: hidden;
  isolation: isolate;
}

.artist-directory-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(6, 14, 22, 0.12) 0%, rgba(6, 14, 22, 0.44) 46%, rgba(6, 14, 22, 0.96) 100%),
    linear-gradient(160deg, rgba(5, 11, 18, 0.12), rgba(5, 11, 18, 0.6));
}

.artist-directory-image {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  transform: scale(1.02);
}

.artist-directory-card:hover,
.artist-directory-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.22);
}

.artist-directory-name,
.artist-feature h2 {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.artist-directory-name {
  display: block;
  position: relative;
  z-index: 1;
  margin: auto 0 0;
  font-size: 2rem;
  line-height: 0.95;
}

.artist-directory-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.artist-directory-rank {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.4rem;
  width: fit-content;
  padding: 0.2rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: var(--accent-soft);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  backdrop-filter: blur(8px);
}

.artist-directory-meta {
  margin-top: auto;
  color: var(--text) !important;
  font-size: 0.92rem;
  font-weight: 600;
}

.artist-feature-list {
  display: grid;
  gap: 1.5rem;
}

.artist-feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 1.5rem;
  padding: 1.45rem;
  min-width: 0;
}

.artist-feature:nth-child(even) .artist-feature-media {
  order: 2;
}

.artist-feature:nth-child(even) .artist-feature-copy {
  order: 1;
}

.artist-feature-media {
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(145deg, rgba(18, 46, 58, 0.86), rgba(8, 22, 33, 0.94)),
    rgba(8, 22, 33, 0.9);
}

.artist-feature-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.artist-video-placeholder {
  display: grid;
  gap: 0;
  background:
    linear-gradient(180deg, rgba(10, 24, 36, 0.08), rgba(10, 24, 36, 0.18)),
    rgba(8, 22, 33, 0.94);
}

.artist-video-placeholder[hidden],
.artist-video-shell[hidden] {
  display: none !important;
}

.artist-video-placeholder img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center center;
}

.artist-video-placeholder .video-play-button {
  justify-self: center;
  margin: -2.35rem auto 0;
  position: relative;
  z-index: 1;
  min-width: 13rem;
  min-height: 3.25rem;
  padding: 0.75rem 1.2rem;
  border: 1px solid rgba(224, 166, 76, 0.72);
  border-radius: 999px;
  background: linear-gradient(135deg, #f2c35b 0%, #dca548 100%);
  color: #101a22;
  font: inherit;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(224, 166, 76, 0.22);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease;
}

.artist-video-placeholder .video-play-button:hover,
.artist-video-placeholder .video-play-button:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.03);
  box-shadow: 0 18px 32px rgba(224, 166, 76, 0.28);
  outline: none;
}

.artist-video-placeholder .video-disclaimer {
  margin: 0;
  padding: 1rem 1.15rem 1.2rem;
  color: rgba(240, 244, 247, 0.84);
  font-size: 0.9rem;
  line-height: 1.55;
  text-align: center;
}

.artist-video-shell {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  background: #081623;
}

.artist-video-shell iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  border: 0;
}

.artist-feature-copy {
  display: grid;
  align-content: center;
  gap: 1rem;
  min-width: 0;
}

.artist-rank-label {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-soft);
}

.artist-feature h2 {
  font-size: clamp(2.5rem, 4vw, 4.35rem);
  line-height: 0.95;
}

.artist-traits {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.55;
}

.artist-feature-copy > p {
  margin: 0;
  line-height: 1.74;
}

.artist-live-strip,
.artist-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.artist-live-chip {
  display: inline-flex;
  align-items: center;
  min-height: 2.55rem;
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.2;
}

.artist-source-note {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem 0.45rem;
  align-items: center;
  color: var(--muted);
  font-size: 0.92rem;
}

.artist-source-note a {
  color: var(--accent-soft);
}

.footer-copy a {
  color: var(--accent-soft);
}

.artists-cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.5rem;
  min-width: 0;
}

.artists-page .lead,
.artists-page .lead-links,
.artists-page .artist-feature-copy > p,
.artists-page .artist-directory-name,
.artists-page .artist-directory-meta,
.artists-page .artists-cta-panel p,
.artists-page .related-links a,
.artists-page .related-links p {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.media-main {
  display: grid;
  min-width: 0;
  gap: 1.5rem;
}

.media-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 1.35rem;
  align-items: stretch;
  min-width: 0;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  padding: 1.45rem;
  overflow: hidden;
}

.media-hero-copy,
.media-hero-panel,
.media-section {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  padding: 1.45rem;
}

.media-hero-copy {
  display: grid;
  align-content: start;
  gap: 0.95rem;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  padding: 0.15rem 0 0;
  background: none;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  overflow: hidden;
}

.media-hero-copy h1 {
  display: block;
  width: 100%;
  max-inline-size: 100%;
  max-width: 14ch;
  font-size: clamp(2.9rem, 7vw, 5.4rem);
  white-space: normal;
}

.media-hero-panel .lead,
.media-hero-panel .lead-links {
  max-width: 68ch;
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.media-hero-panel .lead {
  margin-top: 0.2rem;
}

.media-hero-copy p,
.media-section p {
  margin: 0;
}

.media-link-cluster {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  max-width: 100%;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.media-hero-panel {
  display: grid;
  gap: 1rem;
  min-width: 0;
  max-width: 100%;
  align-content: center;
  padding: 1.3rem 1.35rem;
}

.media-panel-label {
  color: #fff4da;
  font-weight: 800;
}

.media-spotlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.media-spotlight-card,
.media-gallery-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 20, 32, 0.84);
  color: var(--text);
}

.media-spotlight-card {
  min-height: 15rem;
}

.media-spotlight-card img,
.media-gallery-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-spotlight-card img {
  position: absolute;
  inset: 0;
}

.media-spotlight-card::after,
.media-gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 14, 22, 0.08) 0%, rgba(6, 14, 22, 0.38) 48%, rgba(6, 14, 22, 0.94) 100%);
  pointer-events: none;
}

.media-spotlight-copy {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  display: grid;
  gap: 0.45rem;
  padding: 1rem;
}

.media-spotlight-copy h2,
.media-card-body h3,
.media-link-card h3 {
  margin: 0;
}

.media-spotlight-copy h2,
.media-card-body h3 {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.media-spotlight-copy h2 {
  font-size: 2rem;
  line-height: 0.95;
}

.media-spotlight-copy p {
  margin: 0;
  color: rgba(243, 246, 248, 0.88);
  line-height: 1.45;
}

.media-play-badge {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.2rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(8, 22, 33, 0.62);
  color: var(--accent-soft);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.media-section {
  display: grid;
  gap: 1.2rem;
}

.section-heading {
  display: grid;
  gap: 0.45rem;
}

.section-heading p {
  margin: 0;
}

.media-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

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

.media-card {
  background: rgba(8, 20, 32, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.media-video-card {
  display: grid;
  position: relative;
}

.media-card-frame {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: rgba(8, 20, 32, 0.84);
}

.media-card-frame--portrait {
  aspect-ratio: 4 / 5;
}

.media-card-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-card-body {
  display: grid;
  gap: 0.75rem;
  padding: 1.1rem 1.1rem 1.2rem;
}

.media-card-body h3 {
  font-size: 2rem;
  line-height: 0.95;
}

.media-card-body p,
.media-link-card p {
  margin: 0;
  line-height: 1.65;
}

.media-video-disclosure {
  color: rgba(243, 246, 248, 0.82);
  font-size: 0.92rem;
  line-height: 1.55;
}

.button.media-video-load {
  justify-self: start;
  width: 100%;
  min-height: 3rem;
  padding: 0.8rem 1.05rem;
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent) 0%, #ffd48b 100%);
  color: #08131e;
  box-shadow: 0 12px 28px var(--accent-glow);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.media-instagram-shell {
  display: none;
  position: absolute;
  inset: 0;
  padding: 0;
  background: rgba(8, 20, 32, 0.96);
  z-index: 2;
  align-items: center;
  justify-content: center;
}

.media-instagram-shell[hidden] {
  display: none !important;
}

.media-video-card.is-loaded .media-instagram-shell {
  display: flex;
}

.media-video-card.is-loaded .media-card-frame > img,
.media-video-card.is-loaded .media-card-frame > .media-play-badge {
  display: none;
}

.media-video-card.is-loaded .media-video-load,
.media-video-card.is-loaded .media-video-disclosure {
  display: none;
}

.media-instagram-frame {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 0;
  place-items: stretch;
  align-content: center;
  justify-items: center;
}

.media-instagram-embed {
  display: block;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  margin: 0 auto;
  border: 0;
  border-radius: 0;
  background: #fff;
}

.media-instagram-shell .instagram-media {
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  height: 100% !important;
  margin: 0 !important;
  border-radius: 0 !important;
}

.media-instagram-fallback {
  margin: 0;
  padding: 0.9rem 1rem 1rem;
  color: var(--muted);
  line-height: 1.55;
  text-align: center;
  background: rgba(8, 20, 32, 0.96);
}

.media-instagram-fallback a {
  color: var(--accent-soft);
}

@media (max-width: 720px) {
  .media-instagram-embed {
    min-height: 40rem;
  }
}

.media-gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.media-filter-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.7rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.media-filter-button:hover,
.media-filter-button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.18);
}

.media-filter-button.is-active {
  color: #08131e;
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent) 0%, #ffd48b 100%);
  box-shadow: 0 10px 24px var(--accent-glow);
}

.media-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.media-gallery-card {
  min-height: 14.5rem;
}

.media-gallery-card.is-hidden,
.media-gallery-card[hidden] {
  display: none;
}

.media-gallery-card img {
  aspect-ratio: 4 / 5;
}

.media-gallery-card span {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  display: block;
  padding: 0.95rem 1rem;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 700;
}

.media-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.media-link-card {
  display: grid;
  gap: 0.65rem;
  padding: 1.05rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 20, 32, 0.72);
}

.media-link-card h3 {
  font-size: 1.08rem;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(1rem, 2rem, 0) scale(1.06);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1040px) {
  .topbar {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    position: static;
    top: auto;
    padding: 0.8rem;
    border-radius: 32px;
    justify-content: initial;
    gap: 0.65rem;
  }

  .brand {
    gap: 0.64rem;
    width: 100%;
    padding: 0.72rem 0.92rem 0.68rem 0.74rem;
  }

  .brand-icon {
    width: 2.35rem;
    height: 2.35rem;
  }

  .brand-mark {
    font-size: 1rem;
    letter-spacing: 0.07em;
  }

  .brand-sub {
    font-size: 0.48rem;
    letter-spacing: 0.2em;
  }

  .nav-links {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.45rem 0.5rem;
    padding-left: 0;
    color: var(--muted);
  }

  .nav-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2rem;
    padding: 0.38rem 0.68rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: var(--muted);
    font-size: 0.76rem;
    line-height: 1.1;
    white-space: normal;
    text-align: center;
  }

  .nav-links .nav-signup {
    display: inline-flex;
    flex-basis: 100%;
    justify-content: flex-start;
    width: auto;
    max-width: 100%;
    min-height: 2.1rem;
    padding: 0.42rem 0.82rem;
    color: #08131e;
    background: linear-gradient(135deg, var(--accent) 0%, #ffd48b 100%);
    border-color: transparent;
    box-shadow: 0 10px 24px var(--accent-glow);
  }

  .topbar > .button.ghost {
    display: none;
  }

  .hero,
  .details-panel,
  .artists-hero,
  .artist-feature,
  .media-hero {
    grid-template-columns: 1fr;
  }

  .hero-stats,
  .artists-hero-stats,
  .spotlight-strip,
  .venue-grid,
  .artist-directory-grid,
  .media-card-grid,
  .media-gallery-grid,
  .media-link-grid,
  .search-guide-grid,
  .process-grid,
  .faq-grid,
  .social-grid,
  .ai-search-source-grid {
    grid-template-columns: 1fr 1fr;
  }

  .schedule-search-row,
  .cta-panel,
  .artists-cta-panel {
    flex-direction: column;
    align-items: center;
  }

  .schedule-search {
    max-width: none;
    width: 100%;
  }

  .hero-side-column {
    gap: 1rem;
  }

  .artists-panel-actions {
    grid-column: auto;
    margin-top: 0;
  }

  .artists-overlap-panel .artist-directory-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ai-search-suggestions,
  .ai-search-source-grid {
    grid-template-columns: 1fr;
  }

  .ai-search-suggestion {
    justify-content: flex-start;
    text-align: left;
    padding-inline: 0.8rem;
    line-height: 1.3;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .media-spotlight-grid {
    grid-template-columns: 1fr;
  }

  .media-hero-copy h1 {
    max-width: 100%;
    font-size: clamp(1.95rem, 6vw, 3rem);
    word-break: break-word;
    line-break: anywhere;
    overflow-wrap: anywhere;
  }

  .media-hero-copy h1 span {
    display: block;
  }

  .media-link-cluster {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .media-link-cluster .button {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 820px) {
  .page-shell {
    width: min(100%, calc(100% - 1rem));
  }

  .details-mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .details-main:not(.is-expanded) .details-grid {
    display: none;
  }

  .venues .venue-read-more {
    display: inline-flex;
  }

  .venues .venue-summary,
  .venues .venue-card ul {
    display: none;
  }

  .venues .venue-card.is-expanded .venue-summary,
  .venues .venue-card.is-expanded ul {
    display: block;
  }

  .process .process-read-more {
    display: inline-flex;
  }

  .process .process-card p {
    display: none;
  }

  .process .process-card.is-expanded p {
    display: block;
  }

  .venues .venue-card-actions {
    margin-top: 0.85rem;
  }

  .artists-main {
    gap: 1.35rem;
    padding-top: 2.3rem;
  }

  .topbar {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    position: static;
    top: auto;
    padding: 0.8rem;
    border-radius: 32px;
    justify-content: initial;
    gap: 0.65rem;
  }

  .brand {
    gap: 0.64rem;
    width: 100%;
    padding: 0.72rem 0.92rem 0.68rem 0.74rem;
  }

  .brand-icon {
    width: 2.35rem;
    height: 2.35rem;
  }

  .brand-mark {
    font-size: 1rem;
    letter-spacing: 0.07em;
  }

  .brand-sub {
    font-size: 0.48rem;
    letter-spacing: 0.2em;
  }

  .nav-links {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.45rem 0.5rem;
    padding-left: 0;
    color: var(--muted);
  }

  .nav-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2rem;
    padding: 0.38rem 0.68rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: var(--muted);
    font-size: 0.76rem;
    line-height: 1.1;
    white-space: normal;
    text-align: center;
  }

  .nav-links .nav-signup {
    display: inline-flex;
    flex-basis: 100%;
    justify-content: flex-start;
    width: auto;
    max-width: 100%;
    min-height: 2.1rem;
    padding: 0.42rem 0.82rem;
    color: #08131e;
    background: linear-gradient(135deg, var(--accent) 0%, #ffd48b 100%);
    border-color: transparent;
    box-shadow: 0 10px 24px var(--accent-glow);
  }

  .topbar > .button.ghost {
    display: none;
  }

  .mobile-menu-toggle,
  .mobile-menu-panel {
    display: block;
  }

  .media-hero {
    padding: 1.1rem;
    gap: 1rem;
  }

  .media-hero-copy h1 {
    max-width: 100%;
    font-size: clamp(1.72rem, 7.1vw, 2.45rem);
    word-break: break-word;
    line-break: anywhere;
    overflow-wrap: anywhere;
  }

  .media-hero-copy h1 span {
    display: block;
  }

  .media-hero-panel {
    padding: 1rem;
  }

  .media-link-cluster {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .media-link-cluster .button {
    width: 100%;
    min-width: 0;
  }

  .mobile-menu-panel a {
    display: flex;
    align-items: center;
    min-height: 2.8rem;
    padding: 0.7rem 0.9rem;
    border-radius: 14px;
    color: var(--text);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
  }

  .mobile-menu-panel a:last-child {
    color: #08131e;
    background: linear-gradient(135deg, var(--accent) 0%, #ffd48b 100%);
    border-color: transparent;
  }

  .rules-map-legend {
    display: grid;
    grid-template-columns: 1fr;
  }

  .rules-map-legend-list {
    grid-template-columns: 1fr;
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }

  .artist-feature:nth-child(even) .artist-feature-media,
  .artist-feature:nth-child(even) .artist-feature-copy {
    order: initial;
  }

  .artist-directory-card {
    min-height: 13.5rem;
  }

  .artist-feature {
    padding: 1rem;
    gap: 1rem;
  }

  .hero,
  .hero-stats,
  .artists-hero-stats,
  .spotlight-strip,
  .venue-grid,
  .artist-directory-grid,
  .media-card-grid,
  .media-gallery-grid,
  .media-link-grid,
  .details-grid,
  .search-guide-grid,
  .process-grid,
  .faq-grid,
  .field-grid,
  .ai-search-layout,
  .ai-search-source-grid {
    grid-template-columns: 1fr;
  }

  .event-actions {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .venue-card-media {
    aspect-ratio: 16 / 9;
  }

  .media-gallery-card,
  .media-spotlight-card {
    min-height: 13rem;
  }

  .media-card-body h3,
  .media-spotlight-copy h2 {
    font-size: 1.8rem;
  }

  .event-card {
    grid-template-columns: clamp(150px, 34vw, 200px) minmax(0, 1fr);
    min-height: 220px;
  }

  .event-media {
    min-height: 100%;
    border-right: 1px solid rgba(9, 22, 34, 0.08);
    border-bottom: 0;
  }

  .event-body {
    padding: 1rem;
    gap: 0.65rem;
  }

  .event-detail-layout {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .event-seating {
    padding-left: 0;
    padding-top: 0.85rem;
    border-left: 0;
    border-top: 1px solid rgba(9, 22, 34, 0.08);
  }

  .event-card h3 {
    font-size: clamp(1.45rem, 6.2vw, 1.95rem);
  }

  .event-meta,
  .event-note,
  .event-rules,
  .event-link,
  .event-cta,
  .event-seating-label,
  .seating-option-name,
  .seating-option-meta {
    font-size: 0.92rem;
  }

  .venues,
  .schedule,
  .ai-search-section,
  .search-guide,
  .process,
  .faq,
  .details-panel,
  .social-section,
  .terms-section {
    padding: 1.3rem;
  }

  h1 {
    font-size: clamp(3.1rem, 17vw, 5.2rem);
  }

  .panel-header {
    flex-direction: column;
  }

  .venue-toggle {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
  }

  .venue-toggle .toggle-button {
    min-width: 0;
    min-height: 2.7rem;
    padding: 0.58rem 0.45rem;
    font-size: 0.72rem;
    line-height: 1.08;
  }

  .faq .section-heading h2 {
    font-size: clamp(1.9rem, 9vw, 2.6rem);
    line-height: 1;
  }

  .faq-item summary {
    font-size: 1rem;
  }

  .faq-item p {
    font-size: 0.94rem;
    line-height: 1.65;
  }

  .media-card-body,
  .media-link-card {
    padding: 0.95rem;
  }

  .form-step-actions {
    flex-direction: column-reverse;
  }

  .ai-search-bar {
    grid-template-columns: 1fr;
  }

  .ai-search-submit {
    width: 100%;
    min-width: 0;
  }

  .ai-search-sources-head {
    flex-direction: column;
    align-items: center;
  }

  .floating-quick-link {
    right: auto;
  }

  .site-footer {
    justify-items: center;
    text-align: center;
    gap: 0.68rem;
    padding: 1.9rem 0 0.15rem;
  }

  .footer-links {
    justify-content: center;
    gap: 0.48rem 0.56rem;
    margin-bottom: 0.35rem;
  }

  .footer-social {
    justify-content: center;
    gap: 0.8rem;
    margin: 0.18rem 0 0.7rem;
  }

  .footer-links a {
    padding: 0.38rem 0.66rem;
    font-size: 0.82rem;
  }

  
.footer-socials {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0.08rem 0 0.45rem;
}

.footer-socials a {
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  flex: 0 0 2.4rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  color: var(--accent-soft);
  overflow: hidden;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.footer-socials svg {
  width: 1.08rem;
  height: 1.08rem;
  display: block;
  flex: 0 0 auto;
}
.footer-copy {
    max-width: min(30rem, 100%);
    font-size: 0.94rem;
    line-height: 1.62;
    margin-top: 0.06rem;
  }

  .footer-copyright {
    margin-top: 0.32rem;
    font-size: 0.8rem;
  }

  .back-to-top {
    right: 0.9rem;
    bottom: 12.95rem;
  }

  .back-to-bottom {
    right: 0.9rem;
    bottom: 9rem;
  }

  .back-to-signup,
  .back-to-events {
    right: 0.9rem;
    bottom: 5.05rem;
  }

  .back-to-question {
    right: 0.9rem;
    bottom: 1rem;
  }
  }

@media (max-width: 560px) {
  .topbar {
    padding: 0.75rem;
  }

  .brand {
    padding: 0.66rem 0.8rem 0.62rem 0.68rem;
  }

  .brand-icon {
    width: 2.1rem;
    height: 2.1rem;
  }

  .brand-mark {
    font-size: 0.98rem;
    letter-spacing: 0.06em;
  }

  .brand-sub {
    display: none;
  }

  .nav-links {
    gap: 0.38rem 0.42rem;
  }

  .nav-links a {
    min-height: 1.95rem;
    padding: 0.36rem 0.62rem;
    font-size: 0.74rem;
  }

  .nav-links .nav-signup {
    min-height: 2rem;
    padding: 0.4rem 0.76rem;
  }

  .venue-card-button,
  .details-events-button {
    width: 100%;
  }

  .venue-toggle {
    gap: 0.38rem;
  }

  .venue-toggle .toggle-button {
    min-height: 2.55rem;
    padding: 0.5rem 0.28rem;
    font-size: 0.62rem;
    letter-spacing: 0;
  }

  .social-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .floating-quick-link {
    right: auto;
    min-width: 4.25rem;
    min-height: 2.8rem;
    padding: 0.64rem 0.78rem;
    font-size: 0.72rem;
  }

  .back-to-top {
    right: 0.58rem;
    bottom: 12.45rem;
  }

  .back-to-bottom {
    right: 0.58rem;
    bottom: 8.6rem;
  }

  .back-to-signup,
  .back-to-events {
    right: 0.58rem;
    bottom: 4.75rem;
  }

  .back-to-question {
    right: 0.58rem;
    bottom: 0.85rem;
  }

  .artists-overlap-panel .artist-directory-grid {
    grid-template-columns: 1fr;
  }

  .artist-feature h2 {
    font-size: 2.7rem;
  }

  .artist-video-placeholder .video-play-button {
    min-width: 11rem;
    min-height: 3rem;
    padding: 0.7rem 1rem;
  }

  .artist-video-placeholder .video-disclaimer {
    padding: 0.95rem 0.95rem 1.1rem;
    font-size: 0.86rem;
  }

  .artist-live-chip {
    width: 100%;
  }

  .media-filter-button {
    min-height: 2.55rem;
    padding: 0.52rem 0.9rem;
  }

  .media-link-cluster {
    gap: 0.6rem;
  }

  .media-link-cluster .button {
    width: 100%;
    max-width: 100%;
  }

  .artists-page .page-shell,
  .artists-page .artists-main,
  .artists-page .artists-hero,
  .artists-page .artists-hero > *,
  .artists-page .artists-overlap-panel,
  .artists-page .artist-directory-grid,
  .artists-page .artist-directory-card,
  .artists-page .artist-feature,
  .artists-page .artist-feature > *,
  .artists-page .artist-feature-media,
  .artists-page .artist-feature-copy,
  .artists-page .artist-video-placeholder,
  .artists-page .artist-video-shell,
  .artists-page .artists-cta-panel,
  .artists-page .ai-search-section,
  .artists-page .ai-search-layout,
  .artists-page .ai-search-card,
  .artists-page .related-links {
    min-width: 0;
    max-width: 100%;
  }

  .artists-page .artist-feature,
  .artists-page .artists-cta-panel,
  .artists-page .ai-search-section,
  .artists-page .related-links {
    overflow-x: clip;
  }

  .artists-page .artist-cta-row,
  .artists-page .artists-cta-panel .artist-cta-row {
    width: 100%;
  }

  .artists-page .artist-cta-row .button,
  .artists-page .artists-cta-panel .artist-cta-row .button {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .artists-page .artist-video-shell iframe {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .artists-page .artist-video-placeholder .video-play-button {
    width: calc(100% - 2rem);
    min-width: 0;
    max-width: 11rem;
    white-space: normal;
  }

  .artists-page .lead,
  .artists-page .lead-links,
  .artists-page .artist-feature-copy > p,
  .artists-page .artist-traits,
  .artists-page .artists-cta-panel p,
  .artists-page .related-links a,
  .artists-page .related-links p {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .site-footer {
    padding-right: 0;
    padding-bottom: 4.6rem;
  }

  .media-hero {
    padding: 0.95rem;
  }

  .media-hero-copy h1 {
    max-width: 100%;
    font-size: clamp(1.52rem, 6.9vw, 2.05rem);
    word-break: break-word;
    line-break: anywhere;
    overflow-wrap: anywhere;
  }

  .media-hero-panel {
    padding: 0.95rem;
  }

  .social-card {
    min-height: 0;
    padding: 1rem 0.95rem 1.05rem;
  }

  .site-footer {
    padding-right: 0;
    padding-bottom: 4.6rem;
    gap: 0.62rem;
  }

  .form-step-pills {
    grid-template-columns: 1fr;
  }

  .form-step-pill {
    min-height: 0;
    padding: 0.62rem 0.72rem;
  }

  .form-step {
    padding: 0.95rem 0.9rem 1rem;
  }

  .form-step-title {
    font-size: clamp(1.45rem, 7vw, 1.85rem);
  }

  .footer-links a {
    padding: 0.34rem 0.58rem;
    font-size: 0.76rem;
  }

  .footer-brand {
    font-size: 1.02rem;
  }

  .footer-social-link {
    width: 2.2rem;
    height: 2.2rem;
  }

  .footer-social {
    gap: 0.76rem;
    margin-bottom: 0.8rem;
  }

  .footer-social-icon {
    width: 1rem;
    height: 1rem;
  }

  
.footer-socials {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0.08rem 0 0.45rem;
}

.footer-socials a {
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  flex: 0 0 2.4rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  color: var(--accent-soft);
  overflow: hidden;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.footer-socials svg {
  width: 1.08rem;
  height: 1.08rem;
  display: block;
  flex: 0 0 auto;
}
.footer-copy {
    font-size: 0.9rem;
    line-height: 1.64;
  }

  .ai-search-card,
  .ai-search-answer,
  .ai-search-sources {
    padding-left: 0.95rem;
    padding-right: 0.95rem;
  }

  .social-icon-wrap {
    width: min(100%, 5.9rem);
  }

  .details-venue-switcher {
    gap: 0.45rem;
  }

  .details-venue-button {
    font-size: 0.72rem;
    padding: 0.42rem 0.7rem;
  }

  .mobile-menu-toggle {
    top: 0.78rem;
    right: 0.78rem;
    width: 2.85rem;
    height: 2.85rem;
  }

  .mobile-menu-panel {
    top: 4rem;
    right: 0.78rem;
    width: min(calc(100vw - 1.56rem), 15.5rem);
  }

  .event-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .event-media {
    min-height: 0;
    aspect-ratio: 4 / 3;
    border-right: 0;
    border-bottom: 1px solid rgba(9, 22, 34, 0.08);
  }

  .event-media.is-placeholder img {
    padding: 0.75rem;
  }

  .event-body {
    padding: 1rem 0.95rem 1.05rem;
  }

  .event-list {
    gap: 0.8rem;
    border: 0;
    border-radius: 0;
    overflow: visible;
    background: transparent;
  }

  .event-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    box-shadow: var(--shadow);
  }

  .event-card:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .event-actions {
    gap: 0.8rem;
  }

  .event-link,
  .event-cta {
    width: 100%;
    min-height: 3rem;
  }

  .event-venue-name {
    font-size: 0.84rem;
  }

  .event-card h3 {
    font-size: clamp(1.25rem, 7vw, 1.7rem);
  }

  .event-meta {
    display: grid;
    gap: 0.2rem;
    font-size: 0.86rem;
  }

  .event-note,
  .event-rules {
    line-height: 1.5;
    font-size: 0.9rem;
  }

  .event-seating-list {
    max-height: none;
  }

  .faq-item {
    padding: 1rem 1rem 1.05rem;
  }

  .faq-item summary {
    font-size: 0.94rem;
  }

  .faq-item p {
    font-size: 0.9rem;
  }

  .floating-quick-link {
    right: auto;
    min-width: 4.25rem;
    min-height: 2.8rem;
    padding: 0.64rem 0.78rem;
    font-size: 0.72rem;
  }

  .back-to-top {
    right: 0.58rem;
    bottom: 12.45rem;
  }

  .back-to-bottom {
    right: 0.58rem;
    bottom: 8.6rem;
  }

  .back-to-signup,
  .back-to-events {
    right: 0.58rem;
    bottom: 4.75rem;
  }

  .back-to-question {
    right: 0.58rem;
    bottom: 0.85rem;
  }
  }

@media (max-width: 420px) {
  .topbar {
    padding: 0.58rem 0.68rem;
  }

  .brand {
    gap: 0.52rem;
    padding: 0.5rem 0.7rem 0.48rem 0.58rem;
  }

  .brand-icon {
    width: 1.92rem;
    height: 1.92rem;
  }

  .brand-mark {
    font-size: 0.88rem;
  }

  .nav-links {
    gap: 0.26rem;
  }

  .nav-links a {
    padding: 0.34rem 0.44rem;
    font-size: 0.66rem;
  }

  .media-hero {
    padding: 0.82rem;
    gap: 0.82rem;
  }

  .media-hero-copy h1 {
    font-size: clamp(1.36rem, 6.8vw, 1.82rem);
  }

  .media-link-cluster {
    gap: 0.5rem;
  }

  .media-link-cluster .button {
    width: 100%;
  }

  .floating-quick-link {
    min-width: 4rem;
    min-height: 2.65rem;
    padding: 0.6rem 0.66rem;
    font-size: 0.68rem;
  }

  .site-footer {
    padding-right: 0;
    padding-bottom: 4.45rem;
  }

  .back-to-top {
    right: 0.45rem;
    bottom: 11.95rem;
  }

  .back-to-bottom {
    right: 0.45rem;
    bottom: 8.25rem;
  }

  .back-to-signup,
  .back-to-events {
    right: 0.45rem;
    bottom: 4.55rem;
  }

  .back-to-question {
    right: 0.45rem;
    bottom: 0.8rem;
  }
  }

/* Rebuilt media page layout */
.media-page .page-shell {
  overflow-x: clip;
}

.media-page .media-rebuild {
  display: grid;
  gap: 1.4rem;
  padding-top: 2.15rem;
  min-width: 0;
  max-width: 100%;
  overflow-x: clip;
}

.media-page .media-rebuild > * {
  min-width: 0;
  max-width: 100%;
}

.media-page .media-rebuild-hero,
.media-page .media-rebuild-section {
  min-width: 0;
  max-width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  overflow: clip;
}

.media-page .media-rebuild-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(18rem, 0.88fr);
  gap: 1rem;
  padding: 1.4rem;
  align-items: stretch;
}

.media-page .media-rebuild-hero-copy,
.media-page .media-rebuild-hero-panel,
.media-page .media-rebuild-section-head,
.media-page .media-rebuild-link-card {
  min-width: 0;
}

.media-page .media-rebuild-hero-copy {
  display: grid;
  gap: 0.9rem;
  align-content: start;
}

.media-page .media-rebuild-hero-copy h1 {
  margin: 0;
  max-width: 16ch;
  font-size: clamp(3.45rem, 8vw, 6rem);
  line-height: 0.92;
  word-break: normal;
  overflow-wrap: anywhere;
}

.media-page .media-rebuild-hero-copy h1 .hero-line {
  color: var(--text);
}

.media-page .media-rebuild-hero-copy h1 .hero-accent {
  color: var(--accent-soft);
}

.media-page .media-rebuild-hero-copy p {
  margin: 0;
  max-width: 62ch;
}

.media-page .media-page-guide-mobile {
  display: none;
}

.media-page .media-page-guide-body {
  display: grid;
  gap: 0.9rem;
}

.media-page .media-page-guide-body p {
  margin: 0;
  max-width: 62ch;
}

.media-page .media-rebuild-hero-panel {
  display: grid;
  gap: 0.95rem;
  align-content: start;
  padding: 1.25rem;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
    rgba(7, 21, 32, 0.72);
}

.media-page .media-rebuild-hero-panel h2,
.media-page .media-rebuild-section-head h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 3.35rem);
  line-height: 0.95;
}

.media-page .media-rebuild-hero-panel p,
.media-page .media-rebuild-section-head p,
.media-page .media-rebuild-link-card p {
  margin: 0;
}

.media-page .media-rebuild-quicklinks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  min-width: 0;
}

.media-page .media-rebuild-quicklinks .button {
  width: 100%;
  min-width: 0;
  justify-content: center;
  text-align: center;
  min-height: 2.65rem;
  padding: 0.68rem 0.9rem;
  font-size: 0.88rem;
  line-height: 1.15;
}

.media-page .media-rebuild-hero-video-card {
  margin-top: 0.15rem;
}

.media-page .media-rebuild-hero-video-card .media-card-frame,
.media-page .media-rebuild-hero-video-card .media-video-card.is-loaded .media-card-frame {
  aspect-ratio: 4 / 5;
}

.media-page .media-rebuild-hero-video-card .media-card-body {
  gap: 0.6rem;
  padding: 0.95rem 1rem 1.05rem;
}

.media-page .media-rebuild-hero-video-card .media-card-body h3 {
  font-size: clamp(1.55rem, 3vw, 2rem);
}

.media-page .media-rebuild-section {
  display: grid;
  gap: 1.1rem;
  padding: 1.4rem;
}

.media-page .media-rebuild-section-head {
  display: grid;
  gap: 0.5rem;
}

.media-page .media-section-guide-mobile {
  display: none;
}

.media-page .media-section-guide-body p {
  margin: 0;
}

.media-page .media-rebuild-video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  min-width: 0;
}

.media-page .media-rebuild-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  min-width: 0;
}

.media-page .media-rebuild-link-card {
  display: grid;
  gap: 0.7rem;
  padding: 1.15rem 1.1rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(7, 21, 32, 0.68);
}

.media-page .media-rebuild-link-card h3 {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.25;
}

.media-page .media-rebuild .media-card,
.media-page .media-rebuild .media-video-card,
.media-page .media-rebuild .media-gallery-card {
  min-width: 0;
  width: 100%;
  max-width: 100%;
}

.media-page .media-rebuild .media-card-frame,
.media-page .media-rebuild .media-card-body,
.media-page .media-rebuild .media-instagram-shell,
.media-page .media-rebuild .media-gallery-grid,
.media-page .media-rebuild .media-gallery-filters {
  min-width: 0;
}

.media-page .media-rebuild .media-card-frame img,
.media-page .media-rebuild .media-gallery-card img {
  display: block;
  width: 100%;
  height: auto;
}

.media-page .media-rebuild .media-card-frame:not(.media-card-frame--portrait) img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.media-page .media-rebuild .media-card-frame--portrait img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.media-page .media-rebuild .media-rebuild-hero-video-card .media-card-frame img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
}

.media-page .media-rebuild .media-card-body {
  display: grid;
  gap: 0.85rem;
}

.media-page .media-rebuild .media-card-body h3 {
  margin: 0;
  font-size: clamp(1.6rem, 2.2vw, 1.95rem);
  line-height: 0.98;
}

.media-page .media-rebuild .media-card-body p {
  margin: 0;
}

.media-page .media-rebuild .media-video-load {
  width: 100%;
  min-width: 0;
  justify-content: center;
}

.media-page .media-rebuild .media-video-disclosure {
  color: rgba(233, 236, 242, 0.8);
}

.media-page .media-rebuild-video-grid--venues .media-card-frame,
.media-page .media-rebuild-video-grid--venues .media-video-card.is-loaded .media-card-frame {
  aspect-ratio: 4 / 5;
}

.media-page .media-rebuild-video-grid--venues .media-card-frame img {
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
}

.media-page .media-rebuild .media-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.media-page .media-rebuild .media-gallery-card {
  overflow: hidden;
}

.media-page .media-rebuild .media-gallery-card span {
  display: block;
}

@media (max-width: 1100px) {
  .media-page .media-rebuild-hero {
    grid-template-columns: 1fr;
  }

  .media-page .media-rebuild-hero-copy h1 {
    max-width: 15ch;
    font-size: clamp(2.95rem, 7.4vw, 4.75rem);
  }
}

@media (max-width: 900px) {
  .media-page .media-rebuild {
    gap: 1.15rem;
    padding-top: 1.45rem;
  }

  .media-page .media-rebuild-hero,
  .media-page .media-rebuild-section {
    padding: 1.15rem;
  }

  .media-page .media-rebuild-video-grid,
  .media-page .media-rebuild .media-gallery-grid,
  .media-page .media-rebuild-link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .media-page .media-rebuild-hero-panel h2,
  .media-page .media-rebuild-section-head h2 {
    font-size: clamp(1.95rem, 5vw, 2.7rem);
  }
}

@media (max-width: 640px) {
  .media-page .media-rebuild-hero-copy h1 {
    max-width: 14ch;
    font-size: clamp(2.2rem, 9vw, 3.3rem);
  }

  .media-page .media-section-guide-desktop {
    display: none;
  }

  .media-page .media-section-guide-mobile {
    display: block;
    width: 100%;
    margin: 0;
  }

  .media-page .media-section-guide-mobile summary {
    display: block;
    margin: 0;
    color: var(--muted);
    list-style: none;
    cursor: pointer;
  }

  .media-page .media-section-guide-mobile summary::-webkit-details-marker {
    display: none;
  }

  .media-page .media-section-guide-mobile summary::after {
    content: "Read more";
    display: inline-flex;
    margin-left: 0.5rem;
    color: var(--accent-soft);
    font-family: var(--font-heading);
    font-size: 0.92rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .media-page .media-section-guide-mobile[open] summary::after {
    content: "Read less";
  }

  .media-page .media-section-guide-body {
    padding-top: 0.45rem;
  }

  .media-page .media-page-guide-desktop {
    display: none;
  }

  .media-page .media-page-guide-mobile {
    width: 100%;
    margin: 0;
    display: block;
  }

  .media-page .media-page-guide-mobile summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin: 0;
    padding: 0.82rem 0.95rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    font-family: var(--font-heading);
    font-size: 1.02rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    list-style: none;
    cursor: pointer;
  }

  .media-page .media-page-guide-mobile summary::-webkit-details-marker {
    display: none;
  }

  .media-page .media-page-guide-mobile summary::after {
    content: "+";
    color: var(--accent-soft);
    font-size: 1.15rem;
    line-height: 1;
  }

  .media-page .media-page-guide-mobile[open] summary::after {
    content: "\2212";
  }

  .media-page .media-page-guide-body {
    display: none;
    gap: 0.8rem;
    padding-top: 0.85rem;
  }

  .media-page .media-page-guide-mobile[open] .media-page-guide-body {
    display: grid;
  }

  .media-page .media-rebuild-video-grid,
  .media-page .media-rebuild .media-gallery-grid,
  .media-page .media-rebuild-link-grid {
    grid-template-columns: 1fr;
  }

  .media-page .media-rebuild-quicklinks {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .media-page .media-rebuild-hero-panel {
    padding: 1rem;
  }

  .media-page .media-rebuild-hero,
  .media-page .media-rebuild-section {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .media-page .media-rebuild {
    padding-top: 1.15rem;
  }

  .media-page .media-rebuild-hero-copy h1 {
    max-width: 14ch;
    font-size: clamp(1.95rem, 8.6vw, 2.8rem);
  }

  .media-page .media-rebuild-hero,
  .media-page .media-rebuild-section {
    padding: 0.95rem;
  }

  .media-page .media-rebuild-quicklinks {
    gap: 0.55rem;
  }

  .media-page .media-rebuild-quicklinks .button {
    min-height: 2.45rem;
    padding: 0.6rem 0.72rem;
    font-size: 0.8rem;
  }
}

.dress-landing-page .page-shell {
  width: min(1200px, calc(100% - 2rem));
  max-width: 100%;
  overflow-x: clip;
}

.dress-landing-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.75rem;
  padding: 2.2rem 0 0;
  min-width: 0;
  max-width: 100%;
  overflow-x: clip;
}

.dress-conversion-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.94fr) minmax(0, 1.06fr);
  gap: 1.5rem;
  align-items: start;
  min-width: 0;
  max-width: 100%;
}

.dress-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, 0.96fr);
  gap: 1.5rem;
  align-items: center;
  min-width: 0;
  max-width: 100%;
}

.dress-hero-copy,
.dress-guide-card,
.dress-cover-card,
.dress-artist-section,
.dress-final-cta {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(10, 25, 38, 0.9), rgba(6, 17, 26, 0.84));
  border-radius: 30px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.dress-landing-page .dress-hero > *,
.dress-landing-page .dress-conversion-grid > *,
.dress-landing-page .dress-hero-copy,
.dress-landing-page .dress-guide-card,
.dress-landing-page .dress-cover-card,
.dress-landing-page .dress-artist-section,
.dress-landing-page .dress-final-cta,
.dress-landing-page .dress-form-panel,
.dress-landing-page .ai-search-section,
.dress-landing-page .ai-search-layout,
.dress-landing-page .ai-search-card,
.dress-landing-page .related-links {
  min-width: 0;
  max-width: 100%;
}

.dress-hero-copy {
  padding: 2rem 2rem 1.8rem;
}

.dress-hero-copy h1 {
  max-width: 9.5ch;
  margin-bottom: 1rem;
}

.dress-hero-copy .lead {
  max-width: 58ch;
  margin-bottom: 1.1rem;
}

.dress-hero-points {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.35rem;
}

.dress-hero-point {
  padding: 1rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.dress-hero-point strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--text);
}

.dress-hero-point span {
  color: var(--muted);
  line-height: 1.6;
}

.dress-hero-actions {
  margin-top: 1.3rem;
}

.dress-hero-links {
  margin: 1rem 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.dress-landing-page .dress-hero-links,
.dress-landing-page .dress-hero-copy .lead,
.dress-landing-page .dress-guide-card-copy p,
.dress-landing-page .dress-cover-card-copy p,
.dress-landing-page .dress-artist-card-copy > p,
.dress-landing-page .related-links a,
.dress-landing-page .related-links p {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.dress-signup-stack {
  display: grid;
  gap: 1rem;
  align-content: start;
  min-width: 0;
}

.dress-signup-stack .dress-guide-card {
  padding: 1.1rem;
}
.dress-guide-card.dress-guide-card--top {
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1.14fr);
  align-items: center;
}
.dress-guide-card.dress-guide-card--top picture,
.dress-cover-card--compact picture {
  min-width: 0;
}
.dress-guide-card.dress-guide-card--top img {
  max-height: clamp(260px, 34vw, 460px);
  object-fit: contain;
  background: rgba(2, 13, 20, 0.55);
}

.dress-signup-stack .dress-cover-card--compact {
  padding: 1.1rem;
}

.dress-signup-stack .dress-cover-card--compact .dress-cover-actions {
  gap: 0.7rem;
}

.dress-signup-stack .dress-cover-card--compact .dress-cover-actions .button {
  min-width: min(100%, 10.5rem);
}
.dress-form-panel {
  position: static;
  top: auto;
  padding: 1.45rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(7, 21, 32, 0.96), rgba(4, 15, 24, 0.92));
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
  min-width: 0;
  overflow: hidden;
}

.dress-form-grid {
  margin-top: 1.1rem;
  min-width: 0;
}

.dress-form-meta {
  margin: 1rem 0 1.15rem;
}

.dress-form-meta p {
  margin: 0 0 0.7rem;
}

.dress-submit {
  width: 100%;
}

.dress-guide-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.25rem;
  padding: 1.4rem;
}

.dress-cover-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.25rem;
  padding: 1.4rem;
}

.dress-cover-card--hero {
  gap: 1rem;
}

.dress-cover-card-head {
  max-width: 64rem;
}

.dress-guide-card-copy {
  max-width: 60ch;
}

.dress-cover-card-copy {
  max-width: 62ch;
}

.dress-cover-card-copy--below {
  max-width: 74ch;
}

.dress-guide-card-copy h2 {
  margin: 0.1rem 0 0.65rem;
}

.dress-cover-card-head h2,
.dress-cover-card-copy h2 {
  margin: 0.1rem 0 0.65rem;
}

.dress-cover-card--hero h1 {
  max-width: 10.5ch;
  margin: 0.1rem 0 0.85rem;
  font-size: clamp(3.4rem, 8vw, 6.25rem);
}

.dress-cover-card--hero h1 span {
  color: var(--accent-soft);
}

.dress-cover-card--hero .lead {
  max-width: 58ch;
  margin: 0 0 1rem;
}

.dress-guide-card-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.dress-cover-card-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.dress-cover-actions {
  justify-content: center;
  margin: 0;
}

.dress-cover-actions .button {
  min-width: 15rem;
  max-width: 100%;
}

.dress-cover-visual {
  position: relative;
}

.dress-guide-card img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: block;
}

.dress-guide-card picture {
  display: block;
}

.dress-cover-card img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: block;
}

.dress-cover-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.85rem;
  padding: clamp(1rem, 2vw, 1.6rem);
  pointer-events: none;
}

.dress-cover-overlay .button {
  pointer-events: auto;
}

.dress-artist-section {
  padding: 1.5rem;
}

.dress-artist-heading,
.dress-faq-heading {
  margin-bottom: 1.1rem;
}

.dress-artist-heading p,
.dress-faq-heading p {
  margin-bottom: 0;
}

.dress-artist-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.dress-artist-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.95rem;
  align-items: stretch;
  padding: 1rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.dress-artist-card img {
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: 240px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}

.dress-artist-card-copy {
  display: flex;
  flex-direction: column;
}

.dress-artist-card-copy h3 {
  margin: 0.15rem 0 0.55rem;
  line-height: 1.02;
}

.dress-artist-card-copy > p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.dress-artist-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.dress-artist-actions .button {
  min-height: 2.8rem;
  max-width: 100%;
}

.dress-final-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 1.5rem;
}

.dress-final-cta h2 {
  margin: 0.1rem 0 0;
}

.dress-final-cta p {
  margin: 0;
}

.related-links {
  margin-top: 1.6rem;
  padding: 1.35rem;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.02);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.14);
}

.related-links h2,
.related-links h3 {
  margin: 0 0 0.95rem;
  font-size: clamp(1.45rem, 3vw, 1.9rem);
  line-height: 1;
}

.related-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.related-links li {
  margin: 0;
}

.related-link-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.related-link-list li {
  margin: 0;
  line-height: 1.55;
}

.related-link-list a {
  color: var(--accent-soft);
}

.related-links a {
  display: block;
  min-height: 100%;
  padding: 0.85rem 0.95rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  text-decoration: none;
  line-height: 1.55;
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.related-links a:hover,
.related-links a:focus-visible {
  border-color: rgba(224, 166, 76, 0.34);
  box-shadow: 0 16px 30px rgba(224, 166, 76, 0.1);
  transform: translateY(-1px);
}

.sitemap-main {
  display: grid;
  gap: 1.5rem;
  padding: 1.6rem 0 3rem;
}

.sitemap-hero,
.sitemap-card {
  padding: 1.4rem;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.02);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.sitemap-hero h1 {
  margin: 0.2rem 0 0.8rem;
}

.sitemap-hero p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  max-width: 68ch;
}

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

.sitemap-card h2 {
  margin: 0 0 0.9rem;
  font-size: clamp(1.5rem, 3vw, 1.95rem);
  line-height: 1;
}

.sitemap-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.sitemap-list li {
  margin: 0;
}

.sitemap-list a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  color: var(--accent-soft);
  text-decoration: none;
}

.sitemap-list a:hover,
.sitemap-list a:focus-visible {
  text-decoration: underline;
}

.sitemap-list p {
  margin: 0.25rem 0 0;
  color: var(--muted);
  line-height: 1.65;
  overflow-wrap: anywhere;
}

@media (max-width: 1040px) {
  .dress-conversion-grid,
  .dress-hero {
    grid-template-columns: 1fr;
  }
.dress-guide-card.dress-guide-card--top {
    grid-template-columns: 1fr;
  }

  .dress-form-panel {
    position: static;
    top: auto;
  }

  .dress-artist-grid {
    grid-template-columns: 1fr;
  }

  .sitemap-grid,
  .related-links ul {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .dress-landing-main {
    padding-top: 1.35rem;
  }

  .dress-hero-copy,
  .dress-guide-card,
  .dress-cover-card,
  .dress-artist-section,
  .dress-final-cta,
  .dress-form-panel {
    border-radius: 24px;
  }

  .dress-hero-copy {
    padding: 1.4rem;
  }

  .dress-hero-copy h1 {
    max-width: 12ch;
  }

  .dress-cover-card--hero h1 {
    max-width: 11.5ch;
    font-size: clamp(2.9rem, 7vw, 4.8rem);
  }

  .dress-final-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .dress-cover-overlay {
    flex-wrap: wrap;
    padding: 0.9rem;
  }
}

@media (max-width: 640px) {
  .dress-artist-card {
    grid-template-columns: 1fr;
  }

  .dress-artist-card img {
    min-height: 270px;
  }

  .dress-cover-overlay {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0.7rem;
    padding: 0.85rem;
  }

  .dress-cover-overlay .button {
    width: min(100%, 17rem);
  }

  .dress-cover-actions {
    flex-direction: column;
    align-items: center;
  }

  .dress-cover-actions .button {
    width: min(100%, 17rem);
    min-width: 0;
  }

  .dress-artist-actions .button,
  .dress-final-cta .button,
  .dress-landing-page .ai-search-submit {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }
}

@media (max-width: 560px) {
  .dress-hero-actions,
  .dress-hero-points {
    gap: 0.75rem;
  }

  .dress-cover-card--hero h1 {
    font-size: clamp(2.7rem, 13vw, 4.35rem);
    max-width: 11.5ch;
  }

  .dress-guide-card,
  .dress-cover-card,
  .dress-artist-section,
  .dress-final-cta,
  .dress-form-panel {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* Venue guide pages */
.venue-guide-main {
  display: grid;
  /* Keep venue-guide sections pinned to a real single-column track on resize. */
  grid-template-columns: minmax(0, 1fr);
  gap: 1.7rem;
  padding: 1.75rem 0 3rem;
  min-width: 0;
  max-width: 100%;
  overflow-x: clip;
}

.venue-guide-page .page-shell,
.venue-hub-page .page-shell {
  max-width: 100%;
  overflow-x: clip;
}

.venue-guide-hero,
.venue-guide-card,
.venue-guide-event-shell,
.venue-guide-faq,
.venue-guide-video-shell {
  padding: 1.5rem;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
}

.venue-guide-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 1.4rem;
  align-items: center;
  min-width: 0;
  max-width: 100%;
  overflow-x: clip;
}

.venue-guide-hero-copy,
.venue-guide-hero-media,
.venue-guide-video-art,
.venue-guide-video-copy,
.venue-guide-event-shell,
.venue-guide-card {
  min-width: 0;
}

.venue-guide-page .hero-split-heading,
.venue-guide-page .hero-split-heading .hero-line,
.venue-guide-page .venue-guide-hero-copy .lead,
.venue-guide-page .page-breadcrumbs,
.venue-guide-page .related-links a,
.venue-guide-page .related-links p {
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.venue-guide-hero-copy h1 {
  margin: 0.15rem 0 0.8rem;
  max-width: 11ch;
  font-size: clamp(3.6rem, 8vw, 6.8rem);
  line-height: 0.92;
  text-wrap: balance;
}

.venue-guide-hero-copy .lead {
  margin: 0 0 1rem;
  max-width: 41rem;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.venue-guide-hero-copy .lead strong {
  color: var(--accent-soft);
}

.venue-guide-hero-facts-text {
  display: grid;
  gap: 0.42rem;
  margin-top: 1rem;
  color: var(--muted);
}

.venue-guide-hero-facts-text p {
  margin: 0;
  line-height: 1.7;
}

.venue-guide-hero-facts-text strong {
  color: var(--accent-soft);
}

.venue-guide-hero-video-shell {
  margin-top: 0.35rem;
  max-width: 41rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  backdrop-filter: none;
}

.venue-guide-switcher {
  display: flex;
  flex-wrap: wrap;
  gap: 0.62rem;
  margin: 0 0 1rem;
}

.venue-guide-switcher a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.95rem;
  min-width: 0;
  max-width: 100%;
  padding: 0.78rem 1.05rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  white-space: normal;
  text-align: center;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.venue-guide-switcher a:hover,
.venue-guide-switcher a:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(224, 166, 76, 0.34);
}

.venue-guide-switcher a[aria-current="page"] {
  border-color: rgba(224, 166, 76, 0.42);
  background: rgba(224, 166, 76, 0.12);
  color: var(--accent-soft);
}

.venue-guide-switcher--compact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  margin: 0 0 0.9rem;
}

.venue-guide-switcher--compact a {
  min-height: 2.3rem;
  padding: 0.58rem 0.72rem;
  font-size: 0.9rem;
  line-height: 1.15;
}

.venue-guide-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.venue-guide-hero-actions .button {
  min-width: 11.25rem;
  max-width: 100%;
}

.venue-guide-hero-media {
  display: grid;
  gap: 1rem;
  align-content: start;
  position: relative;
}

.venue-guide-hero-media picture,
.venue-guide-video-art picture {
  display: block;
}

.venue-guide-hero-media img,
.venue-guide-video-art img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
  object-fit: cover;
}

.venue-guide-hero-caption {
  position: absolute;
  inset: auto 1.1rem 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  max-width: calc(100% - 2.2rem);
  padding: 0.7rem 0.92rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(6, 18, 28, 0.74);
  color: var(--text);
  backdrop-filter: blur(18px);
}

.venue-guide-hero-caption strong {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.08em;
  font-size: 1rem;
}

.venue-guide-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  min-width: 0;
  max-width: 100%;
}

.venue-guide-fact {
  padding: 1.15rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.02);
}

.venue-guide-fact-label {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--muted);
  font-size: 0.94rem;
}

.venue-guide-fact strong {
  display: block;
  font-size: 1.18rem;
  line-height: 1.45;
}

.venue-guide-split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 1.3rem;
  align-items: center;
  min-width: 0;
  max-width: 100%;
  overflow-x: clip;
}

.venue-guide-video-shell {
  display: grid;
  gap: 1rem;
}

.venue-guide-map-shell {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 1rem;
}

.venue-guide-map-frame {
  overflow: hidden;
  border-radius: 24px;
  background: #081623;
}

.venue-guide-map-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.venue-guide-map-shell figcaption {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.venue-guide-video-art {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
}

.venue-guide-video-art:not(.is-youtube-ready)::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 18, 28, 0.1), rgba(6, 18, 28, 0.78)),
    linear-gradient(135deg, rgba(224, 166, 76, 0.12), transparent 45%);
}

.venue-guide-video-art.is-youtube-ready {
  overflow: visible;
  border-radius: 0;
  display: grid;
  gap: 1rem;
}

.venue-youtube-placeholder[hidden],
.venue-youtube-shell[hidden] {
  display: none !important;
}

.venue-youtube-placeholder {
  display: grid;
  gap: 0.85rem;
}

.venue-youtube-thumbnail {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  aspect-ratio: 16 / 9;
  background: #081623;
}

.venue-youtube-thumbnail::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 18, 28, 0.1), rgba(6, 18, 28, 0.78)),
    linear-gradient(135deg, rgba(224, 166, 76, 0.12), transparent 45%);
}

.venue-youtube-thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.venue-guide-video-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 12rem;
  min-height: 3.25rem;
  padding: 0.75rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(6, 18, 28, 0.76);
  color: var(--accent-soft);
  font-family: "Bebas Neue", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-align: center;
  white-space: normal;
  cursor: pointer;
  transition:
    transform 180ms ease,
    filter 180ms ease,
    box-shadow 180ms ease;
}

.venue-guide-video-badge::before {
  content: "â–¶";
  font-size: 0.9rem;
}

.venue-guide-video-copy {
  position: absolute;
  inset: auto 1.1rem 1.15rem;
  z-index: 2;
  max-width: calc(100% - 2.2rem);
}

.venue-guide-video-copy h2 {
  margin: 0 0 0.45rem;
  font-size: clamp(2rem, 4vw, 2.9rem);
  line-height: 0.98;
}

.venue-guide-video-copy p {
  margin: 0;
  color: rgba(248, 243, 233, 0.92);
  line-height: 1.7;
}

.venue-guide-video-play {
  justify-self: start;
}

.venue-youtube-placeholder .video-disclaimer {
  margin: -0.2rem 0 0;
  color: rgba(240, 244, 247, 0.84);
  font-size: 0.92rem;
  line-height: 1.6;
}

.venue-youtube-shell {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 24px;
  background: #081623;
}

.venue-youtube-shell iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.venue-guide-detail-grid {
  display: grid;
  gap: 1rem;
}

.venue-guide-request-shell {
  display: grid;
  gap: 0.95rem;
  align-content: start;
  min-width: 0;
  max-width: 100%;
  padding: 1.2rem 1.15rem;
}

.venue-guide-request-shell::before {
  width: 12rem;
  height: 12rem;
  inset: -25% auto auto 58%;
}

.venue-guide-request-shell .panel-header {
  margin-bottom: 0.3rem;
}

.venue-guide-request-shell .panel-header h2 {
  font-size: clamp(2rem, 3.1vw, 2.85rem);
  line-height: 0.96;
}

.venue-guide-request-shell .demo-badge {
  font-size: 0.7rem;
  padding: 0.36rem 0.68rem;
}

.venue-guide-request-toggle {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
}

.venue-guide-request-shell .toggle-button {
  min-width: 0;
  min-height: 2.55rem;
  padding: 0.55rem 0.48rem;
  font-size: 0.72rem;
  line-height: 1.08;
}

.venue-guide-request-shell .request-mode-toggle {
  display: grid;
  gap: 0.45rem;
}

.venue-guide-request-shell .request-mode-label {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.venue-guide-request-shell .request-toggle {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem;
}

.venue-guide-request-shell .request-button {
  min-width: 0;
  min-height: 2.5rem;
  padding: 0.55rem 0.45rem;
  font-size: 0.72rem;
}

.venue-guide-request-stepper {
  display: grid;
  gap: 0.55rem;
}

.venue-guide-request-shell .form-step-pills {
  gap: 0.45rem;
}

.venue-guide-request-shell .form-step-pill {
  min-height: 2.45rem;
  padding: 0.52rem 0.62rem;
  gap: 0.4rem;
}

.venue-guide-request-shell .form-step-number {
  width: 1.55rem;
  height: 1.55rem;
  font-size: 0.72rem;
}

.venue-guide-request-shell .form-step-label {
  font-size: 0.76rem;
}

.venue-guide-request-shell .form-step-status {
  font-size: 0.76rem;
}

.venue-guide-request-step {
  margin-top: 0;
  padding: 0.95rem 0.9rem 1rem;
  border-radius: 22px;
}

.venue-guide-request-shell .form-step-title {
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
}

.venue-guide-request-shell .form-step-copy {
  margin-top: 0.55rem;
  font-size: 0.95rem;
  line-height: 1.62;
}

.venue-guide-request-shell .form-step-grid,
.venue-guide-request-shell .field-grid {
  margin-top: 0.85rem;
  gap: 0.8rem;
}

.venue-guide-request-shell .field span {
  font-size: 0.82rem;
}

.venue-guide-request-shell .field input,
.venue-guide-request-shell .field select,
.venue-guide-request-shell .field textarea {
  min-height: 3.1rem;
  padding: 0.82rem 0.95rem;
}

.venue-guide-request-shell .field textarea {
  min-height: 6.75rem;
}

.venue-guide-request-shell .form-meta {
  margin-top: 0.85rem;
}

.venue-guide-request-shell .form-meta p {
  font-size: 0.9rem;
  line-height: 1.58;
}

.venue-guide-request-shell .turnstile-shell {
  margin-top: 0.85rem;
  padding: 0.8rem 0.85rem 0.9rem;
}

.venue-guide-request-actions {
  margin-top: 1rem;
}

.venue-guide-request-actions .button {
  min-width: 0;
}

.venue-guide-card h2 {
  margin: 0.15rem 0 0.65rem;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1;
}

.venue-guide-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  overflow-wrap: anywhere;
}

.venue-guide-hero-media-card {
  display: grid;
  gap: 1rem;
  padding: 1rem;
}

.venue-guide-hero-media-card picture {
  display: block;
}

.venue-guide-hero-media-card img {
  border-radius: 22px;
}

.venue-guide-hero-media-card .venue-guide-hero-caption {
  position: static;
  inset: auto;
  display: grid;
  justify-items: start;
  gap: 0.35rem;
  max-width: none;
  margin: 0;
  padding: 1rem 1.05rem;
  border-radius: 20px;
  background: rgba(6, 18, 28, 0.76);
}

.venue-guide-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.venue-guide-tag {
  display: inline-flex;
  align-items: center;
  min-height: 2.4rem;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--accent-soft);
  font-size: 0.92rem;
}

.venue-guide-event-shell {
  display: grid;
  gap: 1rem;
}

.venue-guide-event-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.venue-guide-event-heading > *,
.venue-guide-event-shell .schedule-toolbar,
.venue-guide-event-shell .schedule-search-row,
.venue-guide-event-shell .schedule-select-wrap,
.venue-guide-event-shell .schedule-search,
.venue-guide-event-shell .schedule-select,
.venue-guide-event-shell .schedule-search input,
.venue-guide-event-shell .schedule-count {
  min-width: 0;
  max-width: 100%;
}

.venue-guide-event-heading > div,
.venue-guide-event-shell .schedule-toolbar,
.venue-guide-event-shell .schedule-search-row {
  width: 100%;
}

.venue-guide-event-heading h2,
.venue-guide-faq h2 {
  margin: 0.15rem 0 0.55rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.96;
}

.venue-guide-event-heading p,
.venue-guide-faq > p {
  margin: 0;
  max-width: 50rem;
  color: var(--muted);
  line-height: 1.75;
}

.venue-guide-event-sync {
  color: var(--accent-soft);
  font-size: 0.95rem;
  overflow-wrap: anywhere;
  white-space: normal;
}

.venue-guide-event-shell .schedule-count {
  width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}

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

.venue-event-card,
.venue-faq-item {
  padding: 1.2rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.02);
}

.venue-event-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.85rem;
}

.venue-event-date {
  margin: 0;
  color: var(--accent-soft);
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.18rem;
  letter-spacing: 0.08em;
}

.venue-event-badge {
  display: inline-flex;
  align-items: center;
  min-height: 2.2rem;
  padding: 0.45rem 0.68rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 0.84rem;
}

.venue-event-card h3,
.venue-faq-item h3 {
  margin: 0 0 0.62rem;
  font-size: 1.55rem;
  line-height: 1.18;
}

.venue-event-copy,
.venue-faq-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.venue-event-pricing-shell {
  margin-top: 0.95rem;
}

.venue-event-pricing-label {
  margin: 0 0 0.55rem;
  color: var(--text);
  font-size: 0.95rem;
}

.venue-event-pricing {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.venue-event-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.78rem 0.9rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.03);
}

.venue-event-price span {
  color: var(--text);
  line-height: 1.45;
}

.venue-event-price strong {
  color: var(--accent-soft);
  white-space: nowrap;
}

.venue-event-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.venue-event-action {
  min-width: 10.8rem;
}

.venue-guide-empty {
  padding: 1rem 1.1rem;
  border-radius: 22px;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
  color: var(--muted);
  line-height: 1.7;
}

.venue-guide-faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.venue-guide-faq .button {
  margin-top: 1rem;
}

.venue-guide-page .related-links {
  margin-top: 0;
}

.venue-guide-page .related-links ul {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  min-width: 0;
  max-width: 100%;
}

@media (max-width: 1040px) {
  .venue-guide-hero,
  .venue-guide-split {
    grid-template-columns: 1fr;
  }

  .venue-guide-facts,
  .venue-guide-faq-grid,
  .venue-event-grid,
  .venue-guide-page .related-links ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .venue-guide-main {
    gap: 1.2rem;
    padding-top: 1.35rem;
  }

  .venue-guide-hero,
  .venue-guide-card,
  .venue-guide-event-shell,
  .venue-guide-faq,
  .venue-guide-video-shell {
    padding: 1.2rem;
    border-radius: 24px;
  }

  .venue-guide-hero-copy h1 {
    max-width: 10.8ch;
    font-size: clamp(2.9rem, 11vw, 4.8rem);
  }

  .venue-guide-hero-copy .lead,
  .venue-guide-event-heading p,
  .venue-guide-faq > p,
  .venue-guide-card p,
  .venue-guide-video-copy p {
    font-size: 0.98rem;
  }

  .venue-guide-switcher {
    display: grid;
    grid-template-columns: 1fr;
  }

  .venue-guide-switcher--compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .venue-guide-switcher a,
  .venue-guide-hero-actions .button,
  .venue-event-action {
    width: 100%;
  }

  .venue-guide-request-shell .panel-header {
    gap: 0.75rem;
  }

  .venue-guide-request-toggle {
    grid-template-columns: 1fr;
  }

  .venue-guide-request-shell .request-toggle {
    grid-template-columns: 1fr;
  }

  .venue-guide-hero-video-shell {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: none;
    box-shadow: none;
    backdrop-filter: none;
  }

  .venue-guide-facts,
  .venue-guide-faq-grid,
  .venue-event-grid,
  .venue-guide-page .related-links ul {
    grid-template-columns: 1fr;
  }

  .venue-event-price {
    align-items: center;
    flex-direction: column;
  }

  .venue-guide-video-copy {
    inset-inline: 0.95rem;
    bottom: 1rem;
    max-width: calc(100% - 1.9rem);
  }

  .venue-guide-hero-media-card {
    padding: 0.95rem;
    gap: 0.9rem;
  }

  .venue-guide-hero-media-card .venue-guide-hero-caption {
    padding: 0.9rem 0.95rem;
  }

  .venue-guide-video-copy h2 {
    font-size: clamp(1.7rem, 8vw, 2.45rem);
  }

  .venue-guide-video-art.is-youtube-ready {
    gap: 0.85rem;
  }

  .venue-youtube-placeholder .video-disclaimer {
    font-size: 0.88rem;
  }
}

@media (max-width: 560px) {
  .venue-guide-page .page-shell {
    width: min(100%, calc(100% - 0.8rem));
  }

  .venue-guide-main {
    gap: 1rem;
    padding-top: 1.1rem;
  }

  .venue-guide-hero {
    gap: 1rem;
  }

  .venue-guide-hero-copy h1 {
    max-width: none;
  }

  .venue-guide-hero-caption {
    position: static;
    max-width: none;
    margin-top: 0.9rem;
    display: grid;
    justify-items: start;
    gap: 0.35rem;
  }

  .venue-guide-switcher a,
  .venue-guide-hero-caption span,
  .venue-guide-fact strong {
    overflow-wrap: anywhere;
  }

  .venue-guide-switcher a,
  .venue-guide-hero-actions .button,
  .venue-guide-video-badge {
    min-width: 0;
    max-width: 100%;
  }

  .venue-guide-request-shell {
    padding: 1rem 0.95rem;
  }

  .venue-guide-request-shell .form-step-pills {
    grid-template-columns: 1fr;
  }

  .venue-guide-request-step {
    padding: 0.9rem 0.85rem 0.95rem;
  }

  .venue-guide-page .ai-search-suggestions {
    grid-template-columns: 1fr;
  }

  .venue-guide-fact strong {
    font-size: 1.05rem;
  }

  .venue-event-card,
  .venue-faq-item {
    padding: 1rem;
    border-radius: 20px;
  }

  .venue-event-card h3,
  .venue-faq-item h3 {
    font-size: 1.35rem;
  }
}

.venue-hub-main {
  gap: clamp(1.3rem, 2.4vw, 2rem);
}

.venue-hub-page .venue-guide-hero-copy h1 {
  max-width: 11.8ch;
}

.venue-hub-grid,
.venue-service-grid,
.venue-source-grid {
  display: grid;
  gap: 1.15rem;
}

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

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

.venue-hub-card {
  display: grid;
  gap: 1rem;
  padding: 1.35rem;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
  min-width: 0;
}

.venue-hub-card-media {
  display: block;
  aspect-ratio: 8 / 5;
  overflow: hidden;
  border-radius: 22px;
}

.venue-hub-card-media-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.venue-hub-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.venue-hub-card-copy {
  display: grid;
  gap: 0.85rem;
  min-width: 0;
}

.venue-hub-card-copy h3 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 0.98;
}

.venue-hub-card-copy > p {
  margin: 0;
}

.venue-hub-card-mobile {
  display: block;
}

.venue-hub-card-mobile summary {
  display: none;
}

.venue-hub-card-mobile-body {
  display: grid;
  gap: 0.85rem;
}

.venue-hub-highlight-list,
.venue-source-list {
  margin: 0;
  padding-left: 1.1rem;
  color: rgba(240, 244, 247, 0.86);
  line-height: 1.65;
}

.venue-hub-highlight-list li + li,
.venue-source-list li + li {
  margin-top: 0.45rem;
}

.venue-source-list a {
  color: var(--text);
}

.venue-source-list a:hover,
.venue-source-list a:focus-visible {
  color: var(--accent-soft);
}

@media (max-width: 1040px) {
  .venue-hub-grid,
  .venue-service-grid,
  .venue-source-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .venue-hub-card-mobile summary {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin: 0;
    color: var(--accent-soft);
    list-style: none;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 0.92rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  .venue-hub-card-mobile summary::-webkit-details-marker {
    display: none;
  }

  .venue-hub-card-mobile summary .venue-hub-card-mobile-toggle-text {
    display: inline;
    font-size: 0;
  }

  .venue-hub-card-mobile[open] summary .venue-hub-card-mobile-toggle-text {
    display: inline;
    font-size: 0;
  }

  .venue-hub-card-mobile[open] summary .venue-hub-card-mobile-toggle-text::before {
    content: attr(data-expanded-label);
    font-size: 0.92rem;
  }

  .venue-hub-card-mobile summary .venue-hub-card-mobile-toggle-text::before {
    content: attr(data-collapsed-label);
    font-size: 0.92rem;
  }

  .venue-hub-card-mobile:not([open]) .venue-hub-card-mobile-body {
    display: none;
  }

  .venue-hub-card-mobile[open] .venue-hub-card-mobile-body {
    display: grid;
    padding-top: 0.4rem;
  }
}

.venue-youtube-placeholder {
  gap: 0.85rem;
}

.venue-guide-video-badge {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  justify-content: center;
  min-width: 12rem;
  min-height: 3.25rem;
  padding: 0.75rem 1.1rem;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
  transition:
    transform 180ms ease,
    filter 180ms ease,
    box-shadow 180ms ease;
}

.venue-guide-video-badge::before {
  content: none;
}

.venue-guide-video-badge:hover,
.venue-guide-video-badge:focus-visible {
  transform: translate(-50%, calc(-50% - 1px));
  filter: brightness(1.03);
  box-shadow: 0 18px 32px rgba(224, 166, 76, 0.18);
  outline: none;
}

.venue-guide-video-copy {
  position: static;
  inset: auto;
  z-index: auto;
  max-width: none;
  display: grid;
  gap: 0.35rem;
}

.venue-guide-video-copy h2 {
  margin: 0;
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  line-height: 1;
}

.venue-guide-video-copy p {
  margin: 0;
  color: rgba(240, 244, 247, 0.9);
  line-height: 1.65;
}

.venue-youtube-placeholder .video-disclaimer {
  margin: 0;
  color: rgba(240, 244, 247, 0.84);
  font-size: 0.92rem;
  line-height: 1.6;
}

@media (max-width: 1040px) {
  .venue-guide-video-badge {
    min-width: 10.5rem;
    min-height: 3rem;
    padding: 0.7rem 1rem;
  }

  .venue-guide-video-copy {
    gap: 0.3rem;
  }

  .venue-guide-video-copy h2 {
    font-size: clamp(1.6rem, 8vw, 2.3rem);
  }

  .venue-youtube-placeholder .video-disclaimer {
    font-size: 0.88rem;
  }
}

.venue-youtube-thumbnail .video-disclaimer {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  margin: 0;
  padding: 0.85rem 1rem 0.95rem;
  color: rgba(248, 243, 233, 0.88);
  font-size: 0.88rem;
  line-height: 1.5;
  text-align: center;
  background: linear-gradient(180deg, rgba(6, 18, 28, 0), rgba(6, 18, 28, 0.9) 42%);
}

.venue-guide-video-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}

.venue-guide-video-icon {
  display: inline-block;
  font-size: 0.85rem;
  line-height: 1;
  transform: translateY(-0.02em);
}

.venue-guide-video-badge::before {
  content: none;
}

@media (max-width: 1040px) {
  .venue-youtube-thumbnail .video-disclaimer {
    padding: 0.8rem 0.95rem 0.9rem;
    font-size: 0.84rem;
  }

  .venue-guide-video-icon {
    font-size: 0.8rem;
  }
}

.video-play-icon {
  display: inline-block;
  font-size: 0.85rem;
  line-height: 1;
  transform: translateY(-0.02em);
}

.artist-video-placeholder {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.artist-video-placeholder img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.artist-video-placeholder .video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-width: 12rem;
  min-height: 3.25rem;
  padding: 0.75rem 1.1rem;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(6, 18, 28, 0.76);
  color: var(--accent-soft);
  box-shadow: none;
}

.artist-video-placeholder .video-play-button:hover,
.artist-video-placeholder .video-play-button:focus-visible {
  transform: translate(-50%, calc(-50% - 1px));
  filter: brightness(1.03);
  box-shadow: 0 18px 32px rgba(224, 166, 76, 0.18);
  outline: none;
}

.artist-video-placeholder .video-disclaimer {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  margin: 0;
  padding: 0.85rem 1rem 0.95rem;
  color: rgba(248, 243, 233, 0.88);
  font-size: 0.88rem;
  line-height: 1.5;
  text-align: center;
  background: linear-gradient(180deg, rgba(6, 18, 28, 0), rgba(6, 18, 28, 0.9) 42%);
}

.button.media-video-load {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: auto;
  min-width: 12rem;
  min-height: 3.25rem;
  padding: 0.75rem 1.1rem;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(6, 18, 28, 0.76);
  color: var(--accent-soft);
  box-shadow: none;
}

.button.media-video-load:hover,
.button.media-video-load:focus-visible {
  transform: translate(-50%, calc(-50% - 1px));
  filter: brightness(1.03);
  box-shadow: 0 18px 32px rgba(224, 166, 76, 0.18);
  outline: none;
}

.media-card-frame > .media-video-disclosure {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  margin: 0;
  padding: 0.85rem 1rem 0.95rem;
  color: rgba(248, 243, 233, 0.88);
  font-size: 0.88rem;
  line-height: 1.5;
  text-align: center;
  background: linear-gradient(180deg, rgba(6, 18, 28, 0), rgba(6, 18, 28, 0.9) 42%);
}

@media (max-width: 720px) {
  .page-breadcrumbs {
    margin: 0.78rem 0 0.96rem;
    padding: 0 0.18rem;
  }

  .page-breadcrumbs li {
    font-size: 0.84rem;
  }

  .artist-video-placeholder .video-play-button,
  .button.media-video-load {
    min-width: 10.5rem;
    min-height: 3rem;
    padding: 0.7rem 1rem;
  }

  .artist-video-placeholder .video-disclaimer,
  .media-card-frame > .media-video-disclosure {
    padding: 0.8rem 0.95rem 0.9rem;
    font-size: 0.84rem;
  }

  .video-play-icon {
    font-size: 0.8rem;
  }
}


.events-page .content-hero {
  grid-template-columns: minmax(0, 1fr);
}

.events-page .content-hero-copy {
  max-width: 100%;
}
.events-page .content-hero-spotlight {
  align-self: start;
}

.events-page .featured-story-static {
  height: auto;
}

.events-page .hero-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.15rem;
}

.events-page .hero-button-row .button {
  min-width: 0;
}

@media (max-width: 820px) {
  .events-page .content-hero {
  grid-template-columns: minmax(0, 1fr);
}

.events-page .content-hero-copy {
  max-width: 100%;
}
.events-page .content-hero-spotlight {
    padding: 0.78rem;
    border-radius: 20px;
  }

  .events-page .featured-story-card,
  .events-page .featured-story-copy {
    gap: 0.48rem;
  }

  .events-page .content-spotlight-label,
  .events-page .featured-story-eyebrow {
    margin-bottom: 0.2rem;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }

  .events-page .featured-story-copy h2 {
    display: block;
    max-width: 100%;
    font-size: clamp(1.2rem, 6.8vw, 1.7rem);
    line-height: 1.02;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: normal;
    text-wrap: normal;
  }

  .events-page .featured-story-copy p {
    font-size: 0.86rem;
    line-height: 1.45;
  }

  .events-page .hero-button-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
  }

  .events-page .hero-button-row .button {
    width: 100%;
    min-height: 2.35rem;
    padding: 0.58rem 0.55rem;
    font-size: 0.78rem;
    white-space: normal;
  }
}

@media (max-width: 420px) {
  .events-page .featured-story-copy p {
    display: none;
  }
}

.events-page .content-hero {
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  align-items: stretch;
}

.events-page .events-request-hero-card {
  display: grid;
  align-content: center;
  gap: 1.15rem;
  min-width: 0;
  padding: 1.55rem;
  border-color: rgba(224, 166, 76, 0.18);
  background:
    radial-gradient(circle at 0% 0%, rgba(224, 166, 76, 0.12), transparent 36%),
    linear-gradient(135deg, rgba(41, 71, 86, 0.94), rgba(8, 27, 41, 0.92));
}

.events-page .events-request-hero-line {
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, rgba(224, 166, 76, 0.32), rgba(255, 255, 255, 0.08), transparent);
}

.events-page .events-request-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.15rem;
  align-items: center;
  min-width: 0;
}

.events-page .events-request-hero-card h2 {
  margin: 0 0 0.55rem;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.75rem, 3.2vw, 2.65rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--text);
  overflow-wrap: anywhere;
}

.events-page .events-request-hero-card p {
  margin: 0;
  color: rgba(248, 243, 233, 0.9);
  font-size: clamp(0.98rem, 1.55vw, 1.15rem);
  line-height: 1.58;
}

.events-page .events-request-hero-button {
  min-width: 8.8rem;
  max-width: 10rem;
  min-height: 5.5rem;
  padding: 0.9rem 1rem;
  font-weight: 800;
  line-height: 1.35;
  white-space: normal;
  text-align: center;
}

@media (max-width: 1080px) {
  .events-page .content-hero {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .events-page .events-request-hero-card {
    padding: 1rem;
    border-radius: 22px;
  }

  .events-page .events-request-hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.9rem;
  }

  .events-page .events-request-hero-card h2 {
    font-size: clamp(1.55rem, 8vw, 2.05rem);
  }

  .events-page .events-request-hero-card p {
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .events-page .events-request-hero-button {
    width: 100%;
    max-width: none;
    min-height: 3.1rem;
  }
}
.content-main {
  display: grid;
  gap: 1.75rem;
}

.content-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 1.5rem;
  align-items: stretch;
}

.content-hero-copy,
.content-hero-spotlight,
.blog-post,
.testimonial-form-shell,
.testimonial-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(7, 24, 37, 0.84);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.content-hero-copy {
  padding: 2rem;
}

.content-hero-copy h1,
.content-hero-copy p,
.content-hero-copy .content-hero-actions {
  margin-top: 0;
}

.content-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.35rem;
}

.content-hero-spotlight {
  padding: 1.35rem;
}

.content-spotlight-label,
.content-card-meta {
  margin: 0 0 0.6rem;
  color: var(--accent-soft);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.featured-story-card,
.blog-archive-card-link {
  display: grid;
  gap: 1rem;
  color: inherit;
}

.featured-story-card {
  height: 100%;
}

.featured-story-media,
.blog-archive-media,
.blog-post-media {
  overflow: hidden;
  border-radius: calc(var(--radius-md) - 4px);
  background: rgba(4, 15, 24, 0.92);
}

.featured-story-media {
  aspect-ratio: 16 / 10;
}

.convention-promo-media {
  aspect-ratio: 1200 / 630;
  background: rgba(8, 20, 32, 0.94);
}

.featured-story-media img,
.blog-archive-media img,
.blog-post-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.convention-promo-media img.convention-promo-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: rgba(8, 20, 32, 0.94);
}

.blogs-page .convention-promo-media,
.convention-blog-page .convention-promo-media {
  display: grid;
  place-items: center;
}

.featured-story-copy {
  display: grid;
  gap: 0.7rem;
}

.featured-story-copy h2,
.blog-archive-copy h3,
.blog-post-copy h2,
.testimonial-card h3,
.testimonial-form-copy h3 {
  margin: 0;
}

.featured-story-copy .button {
  justify-self: start;
}

.blog-archive-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.blog-archive-card {
  padding: 1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
    rgba(7, 24, 37, 0.78);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.blog-archive-card-link {
  text-decoration: none;
}

.blog-archive-mobile-details {
  display: none;
}

.blog-archive-mobile-details summary {
  list-style: none;
}

.blog-archive-mobile-details summary::-webkit-details-marker {
  display: none;
}

.blog-archive-mobile-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.05rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(10, 25, 37, 0.86);
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.74rem;
  cursor: pointer;
}

.blog-archive-mobile-toggle-expanded {
  display: none;
}

.blog-archive-mobile-details[open] .blog-archive-mobile-toggle-collapsed {
  display: none;
}

.blog-archive-mobile-details[open] .blog-archive-mobile-toggle-expanded {
  display: inline;
}

.blog-archive-mobile-body {
  display: grid;
  gap: 0.9rem;
  margin-top: 1rem;
}

.blog-archive-mobile-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.blog-archive-card:hover,
.blog-archive-card:focus-visible,
.featured-story-card:hover,
.featured-story-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.2);
}

.blog-archive-media {
  aspect-ratio: 16 / 10;
}

.blog-post-stack {
  display: grid;
  gap: 1.4rem;
}

.blog-post {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1fr);
  gap: 1.35rem;
  padding: 1.35rem;
}

.blog-post-media {
  aspect-ratio: 4 / 5;
  align-self: start;
}

.blog-post-copy {
  display: grid;
  gap: 0.95rem;
  min-width: 0;
}

.blog-post-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.blog-post-list {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
  display: grid;
  gap: 0.55rem;
  line-height: 1.65;
}

.testimonial-spotlight .testimonial-highlight-list {
  display: grid;
  gap: 0.85rem;
}

.testimonial-highlight-card {
  padding: 1rem 1.05rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(9, 29, 43, 0.72);
}

.testimonial-highlight-card span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--accent-soft);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.testimonial-highlight-card strong {
  display: block;
  line-height: 1.45;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.testimonial-card {
  display: grid;
  gap: 0.9rem;
  padding: 1.2rem;
}

.testimonial-card-media {
  overflow: hidden;
  border-radius: calc(var(--radius-md) - 4px);
  background: rgba(4, 15, 24, 0.92);
  aspect-ratio: 4 / 3;
}

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

.testimonial-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.testimonial-avatar-block {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: center;
  min-width: 0;
}

.testimonial-card-heading {
  min-width: 0;
}

.testimonial-card-heading .content-card-meta {
  margin-bottom: 0.35rem;
}
.testimonial-reference-number {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 0.35rem;
  padding: 0.3rem 0.65rem;
  border: 1px solid rgba(255, 218, 159, 0.34);
  border-radius: 999px;
  background: rgba(255, 198, 102, 0.1);
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.testimonial-card-date {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.testimonial-avatar {
  width: 4rem;
  height: 4rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.12), transparent 48%),
    linear-gradient(145deg, rgba(224, 166, 76, 0.28), rgba(7, 29, 45, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text);
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
}

.testimonial-card-review {
  white-space: pre-line;
}

.testimonial-card-empty {
  align-content: start;
}

.testimonial-form-shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1fr);
  gap: 1.2rem;
  padding: 1.35rem;
}

.testimonial-form-copy {
  display: grid;
  align-content: start;
  gap: 0.95rem;
  min-width: 0;
}

.testimonial-form-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.testimonial-hero-form {
  display: grid;
  align-content: start;
  min-width: 0;
}

.testimonial-hero-form .testimonial-form-card {
  gap: 0.95rem;
}

.testimonial-hero-form .panel-header {
  margin-bottom: 0.35rem;
}

.testimonial-hero-form .panel-header h2 {
  font-size: clamp(2rem, 4.8vw, 3.2rem);
  line-height: 1.04;
}

.testimonial-hero-form .testimonial-form-grid {
  grid-template-columns: minmax(0, 1fr);
}

.testimonial-hero-form .testimonial-photo-preview {
  aspect-ratio: 4 / 3;
}

.testimonial-form-card {
  display: grid;
  gap: 1rem;
  min-width: 0;
}

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

.testimonial-form-grid .field {
  display: grid;
  gap: 0.55rem;
}

.testimonial-form-grid .field span {
  color: var(--muted);
  font-weight: 600;
}

.testimonial-form-grid input,
.testimonial-form-grid select,
.testimonial-form-grid textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(4, 14, 23, 0.92);
  color: var(--text);
}

.testimonial-photo-field,
.testimonial-message-field {
  grid-column: 1 / -1;
}

.testimonial-photo-preview {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  border: 1px dashed rgba(255, 255, 255, 0.18);
  background:
    radial-gradient(circle at top left, rgba(224, 166, 76, 0.12), transparent 38%),
    rgba(5, 16, 25, 0.9);
  display: grid;
  place-items: center;
  color: var(--accent-soft);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.testimonial-photo-preview.has-image {
  border-style: solid;
  color: transparent;
}

.testimonial-counter-row {
  display: flex;
  justify-content: flex-end;
  gap: 0.35rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.ai-search-feedback.is-success {
  color: var(--success);
}

.blogs-page .related-links,
.testimonials-page .related-links {
  margin-top: 0;
}

.blogs-page .page-shell {
  max-width: 100%;
  overflow-x: clip;
}

.blogs-page .content-main {
  gap: 1.15rem;
}

.blogs-page .content-hero {
  align-items: start;
  gap: 1rem;
}

.blogs-page .content-hero-copy,
.blogs-page .content-hero-spotlight {
  align-self: start;
}

.blogs-page .content-hero-spotlight {
  display: grid;
  gap: 1rem;
  padding-top: 1rem;
}

.blogs-page .blog-hero-signup {
  gap: 0.8rem;
  padding: 1rem;
  border-radius: 24px;
}

.blogs-page .blog-hero-signup h2 {
  max-width: 14ch;
  font-size: clamp(1.65rem, 3.4vw, 2.2rem);
}

.blogs-page .blog-hero-signup p:not(.guestlist-cta-kicker) {
  font-size: 0.93rem;
  line-height: 1.48;
}

.blogs-page .blog-hero-signup .guestlist-cta-button {
  min-height: 3rem;
  padding-inline: 1.15rem;
}

.convention-blog-page .content-hero-copy h1 {
  font-size: clamp(2.9rem, 5.4vw, 5.2rem);
  max-width: 13.5ch;
  line-height: 0.92;
}

.convention-blog-page .content-main,
.convention-blog-page .content-hero,
.convention-blog-page .content-hero-copy,
.convention-blog-page .content-hero-spotlight,
.convention-blog-page .content-hero-actions,
.convention-blog-page .content-hero-actions .button,
.convention-blog-page .page-breadcrumbs,
.convention-blog-page .page-breadcrumbs ol,
.convention-blog-page .page-breadcrumbs li,
.convention-blog-page .blog-post-stack,
.convention-blog-page .blog-post,
.convention-blog-page .blog-post-copy,
.convention-blog-page .blog-post-list,
.convention-blog-page .cta-panel,
.convention-blog-page .cta-panel > div,
.convention-blog-page .related-links,
.convention-blog-page .related-links ul,
.convention-blog-page .related-links li,
.convention-blog-page .related-links a,
.convention-blog-page .faq,
.convention-blog-page .faq-grid,
.convention-blog-page .faq-item {
  min-width: 0;
  max-width: 100%;
}

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

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

  .blog-post,
  .testimonial-form-shell,
  .content-hero {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 820px) {
  .blogs-page:not(.blog-detail-page) .blog-post-stack {
    display: none;
  }

  .blogs-page:not(.blog-detail-page) .blog-archive-card-link[href^="#post-"] {
    pointer-events: none;
    cursor: default;
  }

  .content-hero-copy,
  .content-hero-spotlight,
  .blog-post,
  .testimonial-form-shell,
  .testimonial-card {
    padding: 1.1rem;
  }

  .blog-archive-grid,
  .testimonial-grid,
  .testimonial-form-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .blog-post-media,
  .featured-story-media {
    aspect-ratio: 16 / 10;
  }

  .convention-promo-media {
    aspect-ratio: 1200 / 630;
  }

  .content-hero-actions {
    flex-direction: column;
  }

  .content-hero-actions .button,
  .featured-story-copy .button {
    width: 100%;
    justify-content: center;
  }

  .blogs-page .blog-archive-mobile-details {
    display: block;
    margin-top: 1rem;
  }

  .convention-blog-page .content-hero-copy h1 {
    font-size: clamp(2.2rem, 10.5vw, 3.6rem);
    max-width: none;
  }

  .convention-blog-page .content-hero-actions,
  .convention-blog-page .cta-panel .content-hero-actions {
    width: 100%;
    min-width: 0;
  }

  .convention-blog-page .content-hero-actions .button,
  .convention-blog-page .cta-panel .content-hero-actions .button {
    min-width: 0;
    max-width: 100%;
  }
}

/* Events hero heading size override */
.events-page .content-hero-copy h1 {
  font-size: clamp(2.65rem, 5.8vw, 5rem);
  max-width: 15ch;
}

@media (max-width: 820px) {
  .events-page .content-hero-copy h1 {
    font-size: clamp(2.2rem, 10.5vw, 3.45rem);
    max-width: 100%;
  }
}

/* Events request card button placement */
.events-page .events-request-hero-grid {
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
}

.events-page .events-request-hero-button {
  justify-self: start;
  min-width: 12rem;
  max-width: 16rem;
  min-height: 3.25rem;
  padding: 0.9rem 1.35rem;
}

@media (max-width: 640px) {
  .events-page .events-request-hero-button {
    justify-self: stretch;
  }
}

/* Sitewide guestlist CTA replacement */
.guestlist-cta-panel {
  display: grid;
  align-content: start;
  gap: 1.15rem;
  padding: clamp(1.45rem, 3vw, 2.1rem);
  border-color: rgba(224, 166, 76, 0.2);
  background:
    radial-gradient(circle at 0% 0%, rgba(224, 166, 76, 0.13), transparent 36%),
    linear-gradient(135deg, rgba(48, 80, 89, 0.94), rgba(8, 27, 41, 0.94));
  overflow: hidden;
}

.guestlist-cta-kicker {
  margin: 0;
  color: rgba(248, 243, 233, 0.88);
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  line-height: 1.25;
  text-transform: uppercase;
}

.guestlist-cta-line {
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, rgba(224, 166, 76, 0.38), rgba(255, 255, 255, 0.1), transparent);
}

.guestlist-cta-panel h2 {
  margin: 0;
  max-width: 13ch;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.85rem, 4.2vw, 2.75rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.055em;
  color: var(--text);
}

.guestlist-cta-steps {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.guestlist-cta-steps li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.72rem;
  align-items: start;
  padding: 0.78rem 0.82rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.guestlist-cta-step-number {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #f4b445, #ffd58b);
  color: #071722;
  font-size: 0.9rem;
  font-weight: 950;
  box-shadow: 0 10px 28px rgba(244, 180, 69, 0.24);
}

.guestlist-cta-steps strong,
.guestlist-cta-steps em {
  display: block;
}

.guestlist-cta-steps strong {
  color: var(--text);
  font-size: clamp(0.98rem, 1.6vw, 1.08rem);
  line-height: 1.12;
}

.guestlist-cta-steps em {
  margin-top: 0.22rem;
  color: rgba(217, 229, 235, 0.86);
  font-size: clamp(0.88rem, 1.25vw, 0.98rem);
  font-style: normal;
  line-height: 1.42;
}

.guestlist-cta-note {
  margin: 0;
  max-width: 46rem;
  color: rgba(248, 243, 233, 0.74);
  font-size: 0.9rem;
  line-height: 1.45;
}

.guestlist-cta-button {
  justify-self: start;
  min-height: 3.35rem;
  padding-inline: 1.5rem;
  font-weight: 900;
  white-space: normal;
  text-align: center;
}

.events-page .events-request-hero-card .guestlist-cta-button {
  justify-self: start;
  width: auto;
  max-width: none;
  min-height: 3.35rem;
}

@media (max-width: 640px) {
  .guestlist-cta-panel {
    gap: 0.95rem;
    padding: 1.2rem;
    border-radius: 24px;
  }

  .guestlist-cta-kicker {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
  }

  .guestlist-cta-panel h2 {
    max-width: 100%;
    font-size: clamp(1.75rem, 8vw, 2.25rem);
  }

  .guestlist-cta-steps {
    gap: 0.62rem;
  }

  .guestlist-cta-steps li {
    padding: 0.7rem;
    border-radius: 16px;
  }

  .guestlist-cta-step-number {
    width: 1.85rem;
    height: 1.85rem;
  }

  .guestlist-cta-steps strong {
    font-size: 0.96rem;
  }

  .guestlist-cta-steps em,
  .guestlist-cta-note {
    font-size: 0.86rem;
    line-height: 1.38;
  }

  .guestlist-cta-button {
    justify-self: stretch;
  }
}

/* Venue pages use the shared Wynn event-card format */
.venue-guide-page .event-list-shell {
  max-width: none;
  margin: 0;
}

.venue-guide-page .event-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  border: 0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
}

@media (max-width: 640px) {
  .venue-guide-page .event-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
  }
}
/* Mobile event-card button containment */
@media (max-width: 640px) {
  .wynn-event-card-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.36rem;
  }

  .wynn-event-card-actions .button,
  .wynn-event-card-actions .resource-link {
    box-sizing: border-box;
    width: 100%;
    min-width: 0;
    min-height: 2.5rem;
    padding: 0.48rem 0.24rem;
    font-size: clamp(0.62rem, 2.75vw, 0.72rem);
    line-height: 1.05;
    white-space: normal;
    text-align: center;
    text-wrap: balance;
    overflow-wrap: normal;
    word-break: normal;
  }
}

@media (max-width: 380px) {
  .wynn-event-card-actions .button,
  .wynn-event-card-actions .resource-link {
    min-height: 2.42rem;
    padding-inline: 0.2rem;
    font-size: clamp(0.58rem, 2.6vw, 0.66rem);
  }
}

/* Dress-code top image card: title above full-width visual */
.dress-guide-card.dress-guide-card--top {
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  padding: 0;
  overflow: hidden;
}

.dress-guide-card.dress-guide-card--top .dress-guide-card-copy {
  max-width: none;
  padding: clamp(1.05rem, 2vw, 1.45rem) clamp(1.1rem, 2.5vw, 1.7rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(90deg, rgba(224, 166, 76, 0.12), rgba(8, 27, 41, 0.58), transparent);
}

.dress-guide-card.dress-guide-card--top picture {
  display: block;
  width: 100%;
}

.dress-guide-card.dress-guide-card--top img {
  display: block;
  width: 100%;
  max-height: none;
  height: auto;
  border: 0;
  border-radius: 0;
  object-fit: cover;
  background: rgba(2, 13, 20, 0.55);
}

/* Event card media links */
.wynn-event-card-media,
.event-media {
  cursor: pointer;
  text-decoration: none;
}
/* Testimonial Turnstile security check */
.testimonial-turnstile {
  display: grid;
  gap: 0.7rem;
  justify-items: start;
  margin: 0.5rem 0 0;
  padding: 1rem;
  border: 1px solid rgba(255, 218, 159, 0.24);
  border-radius: 18px;
  background: rgba(5, 20, 29, 0.72);
}

.testimonial-turnstile[hidden] {
  display: none;
}

.testimonial-turnstile .content-card-meta {
  margin: 0;
}


