@font-face {
  font-family: "Gilroy";
  src: url("/fonts/Gilroy-Light.eot");
  src: url("/fonts/Gilroy-Light.eot?#iefix") format("embedded-opentype"),
    url("/fonts/Gilroy-Light.woff") format("woff"),
    url("/fonts/Gilroy-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("/fonts/Gilroy-Extrabold.eot");
  src: url("/fonts/Gilroy-Extrabold.eot?#iefix") format("embedded-opentype"),
    url("/fonts/Gilroy-Extrabold.woff") format("woff"),
    url("/fonts/Gilroy-Extrabold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #0b1724;
  --card: #122435;
  --accent: #5fb4ff;
  --text: #e8f1ff;
  --muted: #a9bedb;
  --border: #1f3550;
  --danger: #ff6b6b;
  --success: #4ade80;
  --info: #38bdf8;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

:root[data-theme="light"] {
  --bg: #f5f7fb;
  --card: #ffffff;
  --accent: #0f7cd3;
  --text: #0f172a;
  --muted: #4b5563;
  --border: #d9e2ec;
  --danger: #d14343;
  --success: #2fb344;
  --info: #0f7cd3;
  --shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

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

body {
  margin: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(95, 180, 255, 0.08), transparent 30%),
    radial-gradient(circle at 80% 0%, rgba(56, 189, 248, 0.06), transparent 26%),
    radial-gradient(1px 1px at 15% 10%, rgba(255,255,255,0.3), transparent 20%),
    radial-gradient(1px 1px at 45% 30%, rgba(255,255,255,0.25), transparent 20%),
    radial-gradient(1px 1px at 70% 18%, rgba(255,255,255,0.2), transparent 20%),
    radial-gradient(1px 1px at 30% 70%, rgba(255,255,255,0.15), transparent 20%),
    radial-gradient(1px 1px at 60% 80%, rgba(255,255,255,0.2), transparent 20%),
    var(--bg);
  color: var(--text);
  min-height: 100vh;
}

:root[data-theme="light"] body {
  background:
    radial-gradient(circle at 20% 20%, rgba(15, 124, 211, 0.08), transparent 30%),
    radial-gradient(circle at 70% 20%, rgba(15, 124, 211, 0.06), transparent 30%),
    var(--bg);
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

@keyframes floaty {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

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

.page-hero,
.show-hero,
.hero {
  animation: fadeUp 0.6s ease both;
}

.card,
.show-card {
  animation: fadeUp 0.5s ease both;
  animation-delay: 0.05s;
}

.cta-floaty,
.btn.cta-floaty {
  animation: floaty 4s ease-in-out infinite;
}

.light-pulse {
  position: relative;
  overflow: hidden;
}

.light-pulse::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.08), transparent 40%);
  opacity: 0;
  animation: pulseFade 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes pulseFade {
  0%, 100% { opacity: 0; }
  50% { opacity: 0.35; }
}

.card:hover,
.show-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
  padding: 24px 0 48px;
}

header.site-header {
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(6px);
}

.header-bar {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 0 18px;
}

.site-title {
  font-size: 22px;
  letter-spacing: 0.8px;
  font-weight: 800;
  font-family: "Gilroy", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
}

.brand-logo {
  height: 56px;
  width: auto;
}

:root[data-theme="light"] .brand-logo,
:root:not([data-theme]) .brand-logo {
  filter: brightness(0) saturate(100%) invert(17%) sepia(67%) saturate(1829%) hue-rotate(190deg) brightness(92%) contrast(94%);
}

.brand-name {
  color: var(--text);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.alert-stack .container {
  padding: 0 18px;
}

.alert-banner {
  padding: 10px 0;
  background: rgba(56, 189, 248, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.alert-banner strong {
  display: block;
}

.alert-banner .meta {
  color: var(--text);
}

.alert-banner.severity-info {
  background: rgba(56, 189, 248, 0.12);
}

.alert-banner.severity-warning {
  background: rgba(255, 193, 7, 0.14);
}

.alert-banner.severity-danger {
  background: rgba(255, 107, 107, 0.14);
}

.site-nav {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.site-nav a {
  font-weight: 700;
  color: var(--muted);
}

.site-nav a.active,
.site-nav a:hover {
  color: var(--text);
}

.header-ctas {
  display: flex;
  gap: 10px;
  align-items: center;
}

.mobile-menu-button {
  display: none;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu-button span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(5, 11, 18, 0.96);
  z-index: 9998;
  transform: translateY(-100%);
  transition: transform 0.2s ease;
  color: var(--text);
}

.mobile-menu.open {
  transform: translateY(0);
}

.mobile-menu-inner {
  width: min(1100px, 92vw);
  margin: 0 auto;
  padding: 24px 0 32px;
}

.mobile-menu-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0 16px;
}

.mobile-menu-close {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 18px;
  cursor: pointer;
}

.mobile-nav {
  display: grid;
  gap: 12px;
  margin: 12px 0 18px;
}

.mobile-nav a {
  font-weight: 700;
  color: var(--text);
  font-size: 18px;
}

.mobile-ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  padding: 4px;
}

.theme-toggle input {
  display: none;
}

.toggle-track {
  width: 46px;
  height: 24px;
  border-radius: 999px;
  background: var(--border);
  position: relative;
  transition: background 0.2s ease;
}

.toggle-thumb {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background: var(--accent);
  border-radius: 50%;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}

.theme-toggle input:checked + .toggle-track {
  background: rgba(95, 180, 255, 0.2);
}

.theme-toggle input:checked + .toggle-track .toggle-thumb {
  transform: translateX(22px);
}

.hero {
  padding: 40px 0 28px;
}

.hero h1 {
  font-size: clamp(28px, 4vw, 38px);
  margin: 0 0 12px;
  font-family: "Gilroy", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.page-hero {
  position: relative;
  border-radius: 14px;
  padding: 36px 28px;
  overflow: hidden;
  background: var(--card);
}

.page-hero.has-image {
  background-size: cover;
  background-position: center;
  color: #f1f7ff;
}

.page-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 23, 36, 0.35), rgba(11, 23, 36, 0.18));
}

.page-hero .hero-inner {
  position: relative;
  max-width: 760px;
}

.home-hero {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  border-radius: 0;
  padding: clamp(28px, 6vw, 64px) clamp(16px, 8vw, 80px);
  min-height: 30vh;
  display: grid;
  align-items: center;
}

.home-hero .meta {
  color: #fff;
}

@media (max-width: 768px) {
  .home-hero {
    width: 100%;
    margin-left: 0;
    min-height: 40vh;
  }
}

.grid {
  display: grid;
  gap: 16px;
}

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

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

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

.grid.cards-4 {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  box-shadow: var(--shadow);
}

.card h3 {
  margin: 0 0 8px;
}

.meta {
  color: var(--muted);
  font-size: 13px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--accent);
  color: #0b1724;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform 0.1s ease, box-shadow 0.1s ease;
  box-shadow: 0 8px 24px rgba(95, 180, 255, 0.25);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn.secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: none;
}

.list-table {
  width: 100%;
  border-collapse: collapse;
}

.list-table th,
.list-table td {
  padding: 10px;
  border-bottom: 1px solid var(--border);
}

.chip {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  background: rgba(95, 180, 255, 0.12);
  color: var(--accent);
}

.chip.draft {
  background: rgba(255, 255, 255, 0.08);
  color: var(--muted);
}

.chip.live {
  background: rgba(74, 222, 128, 0.12);
  color: var(--success);
}

form.form-grid {
  display: grid;
  gap: 16px;
}

.field label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #0f1d2e;
  color: var(--text);
}

:root[data-theme="light"] .field input,
:root[data-theme="light"] .field textarea,
:root[data-theme="light"] .field select,
:root[data-theme="light"] .faq-search input[type="text"] {
  color: #ffffff;
  background: #0f1d2e;
  border-color: #1f3550;
}

:root[data-theme="light"] .field input::placeholder,
:root[data-theme="light"] .field textarea::placeholder,
:root[data-theme="light"] .faq-search input[type="text"]::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.wysiwyg {
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #0f1d2e;
}

.wysiwyg-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 10px;
  border-bottom: 1px solid var(--border);
}

.wysiwyg-toolbar button {
  background: rgba(232, 241, 255, 0.06);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 10px;
  cursor: pointer;
}

.wysiwyg-toolbar button:hover {
  background: rgba(95, 180, 255, 0.15);
  color: var(--accent);
}

.wysiwyg-editor {
  min-height: 220px;
  padding: 12px;
  color: var(--text);
}

.wysiwyg-editor:focus {
  outline: 2px solid rgba(95, 180, 255, 0.35);
}

.admin-shell {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100vh;
}

.sidebar {
  padding: 20px;
  border-right: 1px solid var(--border);
  background: radial-gradient(circle at 20% 20%, rgba(95, 180, 255, 0.08), transparent 45%), #0d1a29;
}

.sidebar a {
  display: block;
  padding: 10px;
  border-radius: 8px;
  color: var(--muted);
  margin-bottom: 6px;
}

.sidebar a.active,
.sidebar a:hover {
  background: rgba(95, 180, 255, 0.12);
  color: var(--text);
}

.sidebar-label {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  margin: 12px 0 4px;
}

.admin-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(255,255,255,0.03);
}

.admin-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(95, 180, 255, 0.12);
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
}

.admin-version-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  color: var(--muted);
  font-size: 12px;
}

.admin-topbar-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.admin-search-fab {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 10px;
  position: sticky;
  top: 10px;
  z-index: 15;
}

.search-popover {
  position: relative;
}

.search-popover-panel {
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px;
  margin-top: 6px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.25);
  display: none;
  min-width: 260px;
  z-index: 20;
}

.search-popover-panel form {
  display: flex;
  gap: 8px;
}

.search-popover-panel input[type="text"] {
  flex: 1;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #0f1d2e;
  color: var(--text);
}

.flash {
  margin-bottom: 14px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
}

.flash.success {
  background: rgba(74, 222, 128, 0.08);
  border-color: rgba(74, 222, 128, 0.5);
}

.flash.info {
  background: rgba(56, 189, 248, 0.08);
  border-color: rgba(56, 189, 248, 0.5);
}

.flash.error {
  background: rgba(255, 107, 107, 0.08);
  border-color: rgba(255, 107, 107, 0.5);
}

.errors {
  background: rgba(255, 107, 107, 0.08);
  border: 1px solid rgba(255, 107, 107, 0.4);
  padding: 10px 12px;
  border-radius: 10px;
}

.stack {
  display: grid;
  gap: 10px;
}

.faq-search {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.faq-search input[type="text"] {
  flex: 1;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #0f1d2e;
  color: var(--text);
}

.faq-image-wrap {
  margin: 10px 0;
}

.faq-image {
  max-width: min(600px, 100%);
  width: 100%;
  height: auto;
  border-radius: 10px;
  cursor: zoom-in;
  display: block;
}

.accordion {
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}

.accordion-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-header {
  padding: 14px 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.accordion-header:hover {
  background: rgba(255, 255, 255, 0.04);
}

.accordion-title {
  margin: 0;
  font-weight: 600;
}

.accordion-icon {
  transition: transform 0.2s ease;
}

.accordion-item.active .accordion-icon {
  transform: rotate(90deg);
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease, padding 0.2s ease;
  padding: 0 16px;
}

.accordion-item.active .accordion-panel {
  padding: 0 16px 14px;
}

.ticket-calendar {
  display: grid;
  gap: 14px;
}

.month-grid {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.02);
  margin-bottom: 12px;
}

.month-header h4 {
  margin: 0 0 8px;
}

.month-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 6px;
}

.month-cells {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

.calendar-list {
  display: none;
  gap: 10px;
}

.calendar-list-item {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.02);
}

.calendar-list-date {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.calendar-list-dow {
  font-weight: 800;
  min-width: 42px;
  text-transform: uppercase;
}

.calendar-list-day {
  font-weight: 700;
}

.calendar-list-price {
  color: var(--muted);
  font-size: 12px;
}

.calendar-list-times {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.day-cell {
  min-height: 70px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--card);
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--text);
  text-decoration: none;
  gap: 4px;
  padding: 8px 4px;
}
.day-cell.single-perf {
  cursor: pointer;
}

.day-cell:hover {
  border-color: var(--accent);
}

.day-cell.empty {
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed var(--border);
  color: rgba(255,255,255,0.4);
}

.day-cell.past {
  opacity: 0.3;
  pointer-events: none;
}

.grid.cards-4 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.day-num {
  font-weight: 800;
  font-size: 16px;
}

.day-price {
  color: var(--muted);
  font-size: 13px;
}

.day-times {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}

.btn.small {
  padding: 6px 10px;
  font-size: 12px;
  border-radius: 8px;
}

.btn.small.available {
  background: var(--accent);
  color: #0b1724;
  border: 1px solid var(--accent);
}

.btn.small.limited {
  background: #f2ba3f;
  border: 1px solid #f2ba3f;
  color: #0b1724;
}

.btn.small.soldout {
  background: var(--border);
  color: #fff;
  border: 1px solid var(--border);
}

@media (max-width: 700px) {
  .calendar-grid {
    display: none;
  }
  .calendar-list {
    display: flex;
    flex-direction: column;
  }
  .month-grid {
    padding: 10px;
  }
  .month-weekdays {
    font-size: 12px;
  }
  .month-cells {
    gap: 4px;
  }
  .day-cell {
    min-height: 60px;
    padding: 6px 2px;
  }
  .day-num {
    font-size: 14px;
  }
  .day-price {
    font-size: 12px;
  }
  .day-times {
    gap: 4px;
  }
  .btn.small {
    padding: 4px 8px;
    font-size: 11px;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 24px 0 16px;
  }
  .page-hero {
    padding: 20px 14px;
    border-radius: 12px;
  }
  .show-hero {
    min-height: 360px;
    border-radius: 12px;
  }
  .show-hero-inner {
    padding: 24px 16px;
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .incursion-hero .show-hero-inner {
    padding-bottom: 28px;
  }
  .grid.cards-2 {
    grid-template-columns: 1fr;
  }
  .month-grid {
    padding: 10px;
  }
  .month-weekdays {
    font-size: 11px;
  }
  .month-cells {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4px;
  }
  .day-cell {
    min-height: 68px;
    padding: 8px 6px;
    font-size: 13px;
  }
  .day-num {
    font-size: 15px;
  }
  .day-price {
    font-size: 12px;
  }
  .day-times {
    gap: 4px;
  }
  .btn.small {
    width: 100%;
    justify-content: center;
  }
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.info-item {
  display: grid;
  grid-template-columns: 32px 1fr;
  align-items: center;
  gap: 10px;
}

.info-icon {
  color: var(--accent);
}

.info-label {
  font-weight: 700;
}

.info-value {
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  background: var(--accent);
  color: #0b1724;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.sticky-cta:hover {
  text-decoration: none;
}

@media (max-width: 700px) {
  .sticky-cta {
    left: 16px;
    right: auto;
  }
}

.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
  backdrop-filter: blur(4px);
}

.lightbox-content img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.people-modal {
  background: #0f1d2e;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  max-width: min(720px, 94vw);
  width: 100%;
  display: grid;
  grid-template-columns: 200px 1fr;
  grid-template-areas:
    "photo text"
    "photo text";
  gap: 18px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
  max-height: 85vh;
}

.people-modal .people-photo-wrap {
  grid-area: photo;
}

.people-modal .people-photo {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.people-modal .people-text {
  grid-area: text;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.people-modal .people-name {
  margin: 0;
}

.people-modal .people-role {
  margin: 0;
  font-weight: 700;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.people-modal .people-role::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.people-modal .people-bio {
  max-height: 50vh;
  overflow: auto;
  padding: 10px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
}

.people-modal .lightbox-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255,255,255,0.1);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 18px;
  color: var(--text);
  cursor: pointer;
}

@media (max-width: 700px) {
  .people-modal {
    grid-template-columns: 1fr;
    grid-template-areas:
      "photo"
      "text";
    text-align: center;
    max-height: 90vh;
  }
  .people-modal .people-photo {
    margin: 0 auto;
  }
}

.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  background: #0f1d2e;
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 0;
}

.video-block.single-video .single-video-wrapper {
  display: block;
}

.video-block.single-video .video-embed {
  max-width: 100%;
  margin: 0 auto;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.lightbox-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

.lightbox-backdrop .lightbox-close,
.lightbox-backdrop .lightbox-prev,
.lightbox-backdrop .lightbox-next {
  position: absolute;
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  padding: 10px 12px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}

.lightbox-backdrop .lightbox-close:hover,
.lightbox-backdrop .lightbox-prev:hover,
.lightbox-backdrop .lightbox-next:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.04);
}

.lightbox-backdrop .lightbox-close {
  top: 18px;
  right: 18px;
}

.lightbox-backdrop .lightbox-prev {
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-backdrop .lightbox-next {
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-backdrop img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.show-card {
  position: relative;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.show-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
}

.staff-card {
  background: transparent;
  border: none;
  padding: 10px;
  box-shadow: none;
  cursor: pointer;
}

.staff-card:hover {
  box-shadow: none;
  transform: translateY(-2px);
}

.show-card-thumb {
  width: 100%;
  background: linear-gradient(135deg, rgba(95, 180, 255, 0.12), rgba(18, 36, 53, 0.9));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.show-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}

.staff-card .show-card-thumb {
  width: 120px;
  height: 120px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: rgba(10, 24, 38, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.staff-card .show-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.staff-card .show-card-body {
  text-align: center;
  color: #f3f7ff;
}

.bio-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.bio-lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.bio-card {
  background: #0d1a28;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  max-width: 640px;
  width: 100%;
  padding: 18px 18px 12px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.45);
  position: relative;
  color: #e8f2ff;
}

.bio-close {
  position: absolute;
  top: 10px;
  right: 10px;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

.bio-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}

.bio-name {
  color: #fff;
}

.bio-role {
  color: #c8d7ea;
}

.bio-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bio-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar-placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, #1b2c41, #0f1d2e);
  color: #dfe9f5;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.person-card {
  text-align: center;
  padding: 12px;
}

.person-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  color: inherit;
}

.person-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  filter: grayscale(1);
  transition: filter 0.2s ease;
}

.person-avatar:hover img {
  filter: grayscale(0);
}

.person-name {
  font-weight: 700;
  margin-bottom: 4px;
}

.show-card-thumb.placeholder {
  color: var(--muted);
  font-weight: 600;
}

.show-block {
  margin-bottom: 22px;
}

.quote-carousel {
  position: relative;
  min-height: 80px;
}

.quote-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px;
  pointer-events: none;
}

.quote-slide.active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
}

.quote-dots {
  display: flex;
  gap: 6px;
  margin-top: 10px;
}

.quote-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
}

.quote-dots button.active {
  background: var(--accent);
}

.video-embed.single,
.single-video .video-embed {
  aspect-ratio: 16 / 9;
}

.title-overlay { max-width: 420px; width: 100%; height: auto; display: block; }

.title-overlay {
  max-width: 420px;
  width: 100%;
  height: auto;
  display: block;
}

.title-overlay-large {
  max-width: 520px;
}

.perf-list {
  display: grid;
  gap: 12px;
}

.perf-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--card);
}

.perf-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.perf-date {
  font-weight: 700;
}

.perf-actions .btn.small {
  padding: 8px 12px;
}

.venue-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 16px;
  align-items: center;
}

.venue-map img,
.venue-map iframe {
  width: 100%;
  border-radius: 12px;
  display: block;
}

.venue-details h4 {
  margin: 0 0 6px;
  font-size: 20px;
}

@media (max-width: 820px) {
  .venue-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .show-hero-inner {
    grid-template-columns: 1fr;
    padding: 28px 20px;
  }
  .show-hero-thumb {
    max-width: 100%;
  }
  .show-hero {
    min-height: 360px;
  }
}

@media (max-width: 768px) {
  .header-bar {
    grid-template-columns: auto auto;
  }

  .site-nav {
    display: none;
  }

  .header-ctas {
    display: none;
  }

  .mobile-menu-button {
    display: inline-flex;
    justify-self: end;
  }
}

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

@media (max-width: 640px) {
  .grid.cards-3 {
    grid-template-columns: 1fr;
  }
}

.show-hero {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  margin-bottom: 18px;
  min-height: 480px;
  background-size: cover;
  background-position: center;
  background-color: #0d1a29;
}

.show-hero.no-image {
  background: radial-gradient(circle at 30% 20%, rgba(95, 180, 255, 0.12), rgba(11, 23, 36, 0.95));
}

.show-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 23, 36, 0.82), rgba(11, 23, 36, 0.6));
}

.show-hero-inner {
  position: relative;
  padding: 64px 48px;
  display: grid;
  grid-template-columns: 1.1fr auto;
  gap: 24px;
  align-items: center;
}

.show-hero-text h1 {
  margin: 8px 0;
  font-family: "Gilroy", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.show-hero-thumb {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  overflow: hidden;
  max-width: 380px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.show-hero-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Incursion hero tweaks: lighter image, bottom gradient, text pinned low */
.incursion-hero .show-hero-overlay {
  background: linear-gradient(180deg, rgba(11, 23, 36, 0.15) 30%, rgba(11, 23, 36, 0.75) 100%);
}
.incursion-hero .show-hero-inner {
  align-items: flex-end;
  padding-bottom: 46px;
}

.show-quote {
  margin: 12px 0;
  font-size: 18px;
  line-height: 1.5;
}

.pill {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(95, 180, 255, 0.15);
  color: var(--text);
  margin-right: 8px;
  margin-bottom: 6px;
  font-size: 13px;
}

.site-footer {
  background: #0d1a29;
  border-top: 1px solid var(--border);
  margin-top: 40px;
  padding: 32px 0 40px;
  color: var(--muted);
  position: relative;
  overflow: hidden;
}

.footer-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.footer-overlay img {
  max-width: 520px;
  width: 100%;
  height: auto;
}

.footer-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.site-footer h4 {
  margin: 0 0 10px;
  color: var(--text);
  letter-spacing: 0.6px;
  font-size: 13px;
}

:root[data-theme="light"] .site-footer h4,
:root:not([data-theme]) .site-footer h4 {
  color: #ffffff;
}

.site-footer a {
  display: block;
  color: var(--muted);
  padding: 4px 0;
}

.site-footer a:hover {
  color: var(--accent);
}

.theme-toggle-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.footer-meta {
  margin-top: 18px;
  font-size: 13px;
  display: grid;
  gap: 8px;
}

.acknowledgement {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

@media (max-width: 700px) {
  .show-hero-inner {
    grid-template-columns: 1fr;
  }
  .show-hero-thumb {
    max-width: 100%;
  }
}

@media (max-width: 700px) {
  .show-hero-inner {
    grid-template-columns: 1fr;
    padding: 32px 22px;
  }
  .show-hero-thumb {
    max-width: 100
