:root {
  --bg: #07112b;
  --bg-soft: #10224c;
  --panel: rgba(8, 22, 57, 0.9);
  --panel-soft: rgba(17, 36, 77, 0.88);
  --frame: #112a5d;
  --frame-highlight: #ffd041;
  --gold: #f4be16;
  --gold-soft: #ffe36f;
  --blue: #2d8dff;
  --blue-strong: #7dd7ff;
  --text: #fff8de;
  --muted: rgba(235, 244, 255, 0.76);
  --line: rgba(125, 215, 255, 0.24);
  --shadow: 0 24px 50px rgba(0, 8, 26, 0.42);
  --radius: 24px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Trebuchet MS", "Gill Sans", sans-serif;
  line-height: 1.6;
  background:
    radial-gradient(circle at top left, rgba(45, 141, 255, 0.2), transparent 24rem),
    radial-gradient(circle at top right, rgba(244, 190, 22, 0.18), transparent 26rem),
    linear-gradient(180deg, #0a1533 0%, #030812 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 100% 3px, 3px 100%;
  mix-blend-mode: soft-light;
}

.site-shell {
  position: relative;
}

.container {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

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

a:hover {
  text-decoration: underline;
}

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

h1,
h2,
h3,
.brandmark-title,
.nav-link,
.nav-dropdown-link,
.btn {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0.06em;
}

h1,
h2,
h3 {
  margin: 0 0 0.75rem;
  text-transform: uppercase;
}

.announcement-bar {
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(6, 21, 56, 0.96), rgba(15, 44, 101, 0.94));
}

.announcement-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 0.7rem 0;
  color: var(--gold-soft);
  font-size: 0.92rem;
  text-align: center;
}

.announcement-link {
  white-space: nowrap;
}

body.newsletter-popup-open {
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(6, 17, 45, 0.82);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 0;
}

.brandmark {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  color: var(--text);
  text-decoration: none;
}

.brandmark:hover {
  text-decoration: none;
}

.brandmark img {
  width: clamp(4.8rem, 10vw, 6.6rem);
  filter:
    drop-shadow(0 0 20px rgba(45, 141, 255, 0.32))
    drop-shadow(0 0 14px rgba(244, 190, 22, 0.18));
}

.brandmark-title {
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  font-weight: 700;
  text-transform: uppercase;
}

.main-nav {
  position: relative;
  justify-self: center;
}

.header-tools {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.8rem;
}

.header-tools-toggle {
  display: none;
  padding: 0.75rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(45, 141, 255, 0.14);
  color: var(--text);
  font: inherit;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.header-tools-menu {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.header-tool-link {
  color: var(--text);
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.header-tool-link:hover {
  color: var(--gold-soft);
  text-decoration: none;
}

.nav-left {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}

.nav-item {
  position: relative;
}

.nav-link,
.nav-dropbtn,
.nav-dropdown-link {
  color: var(--text);
}

.nav-link,
.nav-dropbtn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.8rem 1rem;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 0.96rem;
  text-transform: uppercase;
}

.nav-link:hover,
.nav-dropbtn:hover {
  color: var(--gold-soft);
  text-decoration: none;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.45rem);
  left: 0;
  min-width: 14rem;
  display: none;
  padding: 0.5rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(9, 25, 59, 0.97);
  box-shadow: var(--shadow);
}

.nav-dropdown-menu.open {
  display: grid;
}

.nav-dropdown-link {
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
}

.nav-dropdown-link:hover {
  background: linear-gradient(90deg, rgba(45, 141, 255, 0.14), rgba(244, 190, 22, 0.1));
  text-decoration: none;
}

.nav-toggle {
  display: none;
  padding: 0.75rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(45, 141, 255, 0.14);
  color: var(--text);
}

.site-main {
  padding: 3rem 0 5rem;
}

.message-stack {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.site-message {
  padding: 0.95rem 1.05rem;
  border-radius: 16px;
  border: 1px solid rgba(125, 215, 255, 0.24);
  background: rgba(15, 41, 94, 0.72);
}

.site-message.error {
  border-color: rgba(255, 114, 114, 0.3);
  background: rgba(99, 14, 14, 0.45);
}

.homepage-hero {
  position: relative;
  min-height: calc(100vh - 7rem);
  width: 100vw;
  margin: -3rem calc(50% - 50vw) 3rem;
  overflow: hidden;
  background: #07112b;
}

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

.homepage-hero-fallback {
  background:
    radial-gradient(circle at top right, rgba(125, 215, 255, 0.24), transparent 28rem),
    radial-gradient(circle at bottom left, rgba(244, 190, 22, 0.22), transparent 30rem),
    linear-gradient(180deg, #15357a 0%, #07112b 52%, #030812 100%);
}

.homepage-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 12, 31, 0.14), rgba(4, 12, 31, 0.62)),
    radial-gradient(circle at center, transparent 0 25%, rgba(0, 0, 0, 0.35) 100%);
}

.homepage-hero-content {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 7rem);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 2rem;
}

.homepage-hero-content h1 {
  max-width: 10ch;
  margin: 0;
  color: #fffdf0;
  font-size: clamp(3.2rem, 10vw, 7.5rem);
  line-height: 0.9;
  text-shadow:
    0 0 24px rgba(0, 0, 0, 0.42),
    0 0 40px rgba(125, 215, 255, 0.18),
    0 0 18px rgba(244, 190, 22, 0.14);
}

.site-page-hero {
  padding: 1rem 0 2rem;
}

.site-page-kicker {
  margin: 0 0 0.85rem;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.82rem;
}

.site-page-hero h1 {
  max-width: 12ch;
  font-size: clamp(2.7rem, 7vw, 5.7rem);
  line-height: 0.92;
  text-shadow: 0 0 22px rgba(125, 215, 255, 0.14);
}

.site-page-intro,
.page-richtext {
  max-width: 760px;
  color: var(--muted);
}

.page-richtext {
  margin-bottom: 2rem;
}

.service-split-frame,
.gallery-frame,
.ticket-type-frame,
.journal-block-frame,
.blog-post-cover {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius) - 2px);
  border: 1px solid rgba(125, 215, 255, 0.14);
  background: rgba(4, 12, 31, 0.72);
  box-shadow: var(--shadow);
}

.service-split-frame img,
.gallery-frame img,
.ticket-type-frame img,
.journal-block-frame img,
.blog-post-cover img {
  width: 100%;
  background: #040404;
}

.service-split-frame img,
.gallery-frame img,
.ticket-type-frame img,
.journal-block-frame img,
.blog-post-cover img {
  height: auto;
  object-fit: contain;
}

.service-split-frame video,
.journal-block-frame video {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.gallery-frame video,
.ticket-type-frame video {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.film-frame {
  position: relative;
  overflow: hidden;
  padding: 1rem 3.2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(244, 190, 22, 0.42);
  background:
    linear-gradient(180deg, rgba(20, 49, 109, 0.98), rgba(9, 23, 54, 0.98));
  box-shadow: var(--shadow);
}

.film-frame::before,
.film-frame::after {
  content: "";
  position: absolute;
  top: 0.8rem;
  bottom: 0.8rem;
  width: 1.9rem;
  border-radius: 999px;
  background:
    radial-gradient(circle at center, transparent 0 8px, rgba(8, 8, 8, 0.98) 8.5px 100%);
  background-size: 100% 2.45rem;
  background-repeat: repeat-y;
  box-shadow: inset 0 0 0 1px rgba(255, 236, 174, 0.12);
}

.film-frame::before {
  left: 0.55rem;
}

.film-frame::after {
  right: 0.55rem;
}

.film-frame img,
.film-frame video {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 14px;
  background: #040404;
}

.film-frame-placeholder {
  min-height: 18rem;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 2rem;
  color: var(--muted);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(45, 141, 255, 0.14), rgba(244, 190, 22, 0.12));
}

.media-placeholder {
  min-height: 18rem;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 2rem;
  color: var(--muted);
  background:
    linear-gradient(135deg, rgba(45, 141, 255, 0.14), rgba(244, 190, 22, 0.12));
}

.service-split,
.journal-block {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.95fr);
  gap: 2rem;
  align-items: start;
  margin: 0 0 2rem;
  padding: 1.75rem;
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(180deg, rgba(10, 25, 58, 0.9), rgba(6, 14, 32, 0.92));
  border: 1px solid rgba(125, 215, 255, 0.12);
}

.page-sections-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: start;
}

.page-sections-layout > .service-split {
  grid-column: 1 / -1;
}

.service-card {
  display: grid;
  gap: 1.25rem;
  align-content: start;
  margin: 0;
  min-height: 100%;
  padding: 1.5rem;
  border-radius: calc(var(--radius) + 2px);
  background:
    linear-gradient(145deg, rgba(13, 33, 76, 0.95), rgba(5, 14, 35, 0.92)),
    radial-gradient(circle at 20% 0%, rgba(255, 211, 63, 0.14), transparent 34%);
  border: 1px solid rgba(125, 215, 255, 0.14);
  box-shadow: var(--shadow);
}

.service-card-text {
  display: grid;
  gap: 0.65rem;
  color: var(--muted);
}

.service-card-text h2 {
  margin: 0;
  color: var(--gold-soft);
}

.service-split-text,
.blog-card-body,
.contact-panel {
  color: var(--muted);
}

.service-split-heading,
.service-split-details {
  display: grid;
}

.service-split-text h2,
.blog-card-body h2 {
  color: var(--gold-soft);
}

.service-body p:last-child,
.blog-excerpt p:last-child,
.blog-post-body p:last-child {
  margin-bottom: 0;
}

.service-video-hint,
.gallery-caption,
.blog-meta,
.footer-copy,
.footer-rights {
  color: var(--muted);
}

.service-video-hint,
.gallery-caption {
  margin-top: 0.7rem;
  font-size: 0.92rem;
}

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

.ticketing-panel,
.account-panel,
.basket-card,
.basket-summary,
.ticket-detail-card {
  padding: 1.5rem;
  border-radius: calc(var(--radius) + 2px);
  background: linear-gradient(180deg, rgba(10, 25, 58, 0.9), rgba(6, 14, 32, 0.92));
  border: 1px solid rgba(125, 215, 255, 0.12);
}

.ticketing-panel {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

.ticket-meta,
.ticket-type-remaining,
.ticket-type-status,
.auth-meta,
.checkout-total {
  color: var(--muted);
}

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

.ticket-type-card,
.account-list-card {
  display: grid;
  align-content: start;
  gap: 1rem;
  padding: 1.15rem;
  border-radius: 20px;
  background: rgba(5, 14, 35, 0.5);
  border: 1px solid rgba(125, 215, 255, 0.1);
}

.ticket-type-frame img {
  aspect-ratio: 4 / 3;
  max-height: 10rem;
  margin: 0 auto;
}

.ticket-type-copy h3,
.account-list-card h3 {
  color: var(--gold-soft);
}

.ticket-type-price {
  margin: 0;
  color: var(--blue-strong);
  font-size: 1.1rem;
  font-weight: 700;
}

.ticket-type-stock {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.ticket-type-stock.is-last-few {
  color: #ffd76f;
}

.ticket-type-stock.is-sold-out {
  color: #ff8d8d;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.ticket-buy-form,
.basket-actions,
.auth-form {
  display: grid;
  gap: 0.8rem;
}

.ticket-buy-form input,
.basket-actions input,
.auth-form input {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(125, 215, 255, 0.22);
  border-radius: 14px;
  background: rgba(3, 11, 29, 0.78);
  color: var(--text);
  font: inherit;
}

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

.basket-card {
  display: grid;
  grid-template-columns: 1.3fr auto auto;
  align-items: center;
  gap: 1rem;
}

.basket-total {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold-soft);
}

.basket-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.payment-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
}

.auth-shell {
  display: grid;
  place-items: center;
}

.auth-card {
  width: min(34rem, 100%);
  padding: 1.75rem;
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(180deg, rgba(10, 25, 58, 0.9), rgba(6, 14, 32, 0.92));
  border: 1px solid rgba(125, 215, 255, 0.12);
}

.ticket-detail-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
}

.ticket-detail-poster,
.print-ticket-card {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius) + 2px);
  background:
    linear-gradient(145deg, rgba(13, 33, 76, 0.95), rgba(5, 14, 35, 0.92)),
    radial-gradient(circle at 20% 0%, rgba(255, 211, 63, 0.14), transparent 34%);
  border: 1px solid rgba(125, 215, 255, 0.14);
  box-shadow: var(--shadow);
}

.ticket-detail-main {
  display: grid;
  gap: 0.9rem;
}

.ticket-detail-main h2 {
  margin: 0;
  color: var(--gold-soft);
}

.ticket-detail-actions {
  margin-top: 1rem;
}

.ticket-qr-wrap {
  padding: 1rem;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(16, 34, 76, 0.12);
}

.ticket-qr-wrap img {
  width: min(18rem, 100%);
}

.ticket-qr-note {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  text-align: center;
}

.print-ticket-sheet {
  display: grid;
  gap: 1.5rem;
}

.print-ticket-card {
  padding: 1.5rem;
}

.print-ticket-brand {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(125, 215, 255, 0.12);
}

.print-ticket-ref {
  margin: 0;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
}

.print-ticket-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) auto;
  gap: 1.5rem;
  align-items: center;
}

.print-ticket-main {
  display: grid;
  gap: 0.85rem;
}

.print-ticket-label {
  margin: 0;
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
}

.print-ticket-main h2 {
  margin: 0;
  color: var(--text);
}

.print-ticket-type {
  margin: 0;
  color: var(--gold-soft);
  font-size: 1rem;
}

.print-ticket-meta {
  display: grid;
  gap: 0.35rem;
  color: var(--muted);
}

.print-ticket-meta p {
  margin: 0;
}

.print-ticket-qr {
  display: grid;
  justify-items: center;
}

.gallery-tile h3 {
  margin-top: 0.9rem;
  color: var(--gold-soft);
}

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

.blog-card {
  position: relative;
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: calc(var(--radius) + 2px);
  background: linear-gradient(180deg, rgba(10, 25, 58, 0.9), rgba(6, 14, 32, 0.92));
  border: 1px solid rgba(125, 215, 255, 0.12);
}

.blog-card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(8, 16, 34, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 700;
}

.blog-card-thumb {
  display: block;
  overflow: hidden;
  align-self: start;
  border-radius: calc(var(--radius) - 6px);
  border: 1px solid rgba(125, 215, 255, 0.14);
  background: rgba(4, 12, 31, 0.72);
  box-shadow: var(--shadow);
}

.blog-card-thumb img {
  width: 100%;
  height: auto;
}

.blog-card.is-members-only-locked .blog-card-thumb {
  filter: grayscale(1) blur(3px) brightness(0.62);
}

.blog-card-body {
  display: grid;
  justify-items: center;
  text-align: center;
}

.blog-card-heading {
  display: grid;
  justify-items: center;
  text-align: center;
}

.blog-card-body-left {
  justify-items: start;
  text-align: left;
}

.blog-card-heading h2,
.blog-card-body h2 {
  margin-bottom: 0.1rem;
}

.blog-card-body-compact {
  gap: 0.2rem;
}

.blog-readmore {
  display: inline-flex;
  margin-top: 0.3rem;
  padding: 0.8rem 1.05rem;
  border-radius: 999px;
  border: 1px solid rgba(143, 208, 255, 0.34);
  background: rgba(8, 26, 63, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
}

.blog-readmore.is-locked {
  opacity: 0.78;
}

.blog-post-cover,
.contact-frame {
  max-width: 860px;
}

.blog-post {
  display: grid;
  gap: 1.5rem;
}

.blog-post-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(14rem, 20rem);
  gap: 2rem;
  align-items: start;
}

.blog-post-hero-copy {
  min-width: 0;
}

.blog-post-blocks {
  display: grid;
  gap: 1.5rem;
}

.event-detail {
  display: grid;
  gap: 1.5rem;
}

.event-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(15rem, 20rem);
  gap: 2rem;
  align-items: start;
  padding: 1.5rem;
  border-radius: calc(var(--radius) + 2px);
  background: linear-gradient(180deg, rgba(10, 25, 58, 0.9), rgba(6, 14, 32, 0.92));
  border: 1px solid rgba(125, 215, 255, 0.12);
}

.event-hero-copy {
  color: var(--muted);
}

.event-hero-heading,
.event-hero-details {
  display: grid;
}

.event-hero-copy h1 {
  color: var(--text);
}

.event-excerpt {
  margin-bottom: 1rem;
  color: var(--text);
  font-size: 1.06rem;
}

.event-hero-aside {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.event-hero-poster {
  overflow: hidden;
  border-radius: calc(var(--radius) - 4px);
  border: 1px solid rgba(125, 215, 255, 0.14);
  background: rgba(4, 12, 31, 0.72);
  box-shadow: var(--shadow);
}

.event-hero-poster img {
  width: 100%;
  height: auto;
}

.event-hero-cta {
  width: 100%;
  text-decoration: none;
}

.event-hero-cta:hover {
  text-decoration: none;
}

.member-reveal-panel {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: calc(var(--radius) + 2px);
  background: linear-gradient(180deg, rgba(10, 25, 58, 0.9), rgba(6, 14, 32, 0.92));
  border: 1px solid rgba(125, 215, 255, 0.12);
}

.member-reveal-cta[hidden] {
  display: none;
}

.member-reveal-cta {
  position: fixed;
  inset: 0;
  z-index: 120;
}

.member-reveal-cta-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 8, 18, 0.72);
  backdrop-filter: blur(8px);
}

.member-reveal-cta-dialog {
  position: relative;
  z-index: 1;
  width: min(38rem, calc(100% - 2rem));
  margin: 12vh auto 0;
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(10, 25, 58, 0.97), rgba(6, 14, 32, 0.98));
  border: 1px solid rgba(125, 215, 255, 0.2);
  box-shadow: var(--shadow);
}

.member-reveal-cta-copy {
  color: var(--muted);
}

.member-ticketing-panel {
  border-color: rgba(249, 200, 70, 0.18);
}

.post-purchase-popup-dialog {
  width: min(44rem, calc(100% - 2rem));
}

.post-purchase-popup-card {
  display: grid;
  gap: 1rem;
}

.post-purchase-popup-media {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(125, 215, 255, 0.14);
  background: rgba(4, 12, 31, 0.72);
}

.post-purchase-popup-media img {
  width: 100%;
  height: auto;
}

.membership-hero-cta {
  display: grid;
  gap: 0.55rem;
  justify-items: start;
  margin-top: 1.25rem;
}

.membership-hero-meta {
  margin: 0;
  color: var(--muted);
}

.membership-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.membership-product-card {
  display: grid;
  gap: 1.25rem;
  align-content: space-between;
  padding: 1.5rem;
  border-radius: calc(var(--radius) + 2px);
  background:
    linear-gradient(145deg, rgba(13, 33, 76, 0.95), rgba(5, 14, 35, 0.92)),
    radial-gradient(circle at 20% 0%, rgba(255, 211, 63, 0.14), transparent 34%);
  border: 1px solid rgba(125, 215, 255, 0.14);
  box-shadow: var(--shadow);
}

.membership-product-copy {
  display: grid;
  gap: 0.65rem;
}

.membership-product-copy h2 {
  margin: 0;
  color: var(--gold-soft);
}

.membership-product-description {
  color: var(--muted);
}

.membership-product-duration {
  margin: 0;
  color: var(--text);
}

.membership-product-action {
  display: grid;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(125, 215, 255, 0.12);
}

.membership-option-group {
  display: grid;
  gap: 0.8rem;
}

.membership-option-list {
  display: grid;
  gap: 0.85rem;
}

.membership-purchase-option {
  display: grid;
  gap: 0.55rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(125, 215, 255, 0.12);
}

.membership-option-header {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  justify-content: space-between;
}

.membership-option-name {
  margin: 0;
  color: var(--text);
  font-weight: 700;
  font-size: 1.05rem;
}

.membership-option-tooltip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  border: 1px solid rgba(125, 215, 255, 0.28);
  color: var(--gold-soft);
  font-size: 0.72rem;
  cursor: help;
  flex-shrink: 0;
}

.membership-option-description {
  color: var(--muted);
}

.membership-option-description > :first-child {
  margin-top: 0;
}

.membership-option-description > :last-child {
  margin-bottom: 0;
}

.membership-product-mode {
  margin: 0;
  color: var(--gold-soft);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.membership-product-price {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 800;
}

.membership-price-suffix {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
  margin-left: 0.2rem;
}

.btn-secondary {
  background: transparent;
  color: var(--gold-soft);
  border-color: rgba(249, 200, 70, 0.42);
  box-shadow: none;
}

.btn-secondary:hover {
  background: rgba(249, 200, 70, 0.12);
  color: var(--text);
}

.schedule-panel {
  display: grid;
  gap: 1.25rem;
  padding: 1.5rem;
  border-radius: calc(var(--radius) + 2px);
  background: linear-gradient(180deg, rgba(10, 25, 58, 0.9), rgba(6, 14, 32, 0.92));
  border: 1px solid rgba(125, 215, 255, 0.12);
}

.schedule-list {
  display: grid;
  gap: 1rem;
}

.schedule-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1rem;
  border-radius: 18px;
  background: rgba(5, 14, 35, 0.5);
  border: 1px solid rgba(125, 215, 255, 0.1);
}

.schedule-card-media {
  width: min(8rem, 26vw);
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(125, 215, 255, 0.14);
  background: rgba(4, 12, 31, 0.72);
}

.schedule-card-media img {
  width: 100%;
  height: auto;
}

.schedule-card-copy h3 {
  color: var(--gold-soft);
}

.schedule-card-body {
  color: var(--muted);
}

.schedule-card-body > *:last-child {
  margin-bottom: 0;
}

.contact-panel {
  margin-top: 2rem;
}

.contact-frame {
  background:
    linear-gradient(180deg, rgba(19, 47, 105, 0.98), rgba(7, 19, 44, 0.98));
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.form-group {
  display: grid;
  gap: 0.4rem;
}

.form-group label {
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(125, 215, 255, 0.22);
  border-radius: 14px;
  background: rgba(3, 11, 29, 0.78);
  color: var(--text);
  font: inherit;
}

.form-group textarea {
  min-height: 12rem;
  resize: vertical;
}

.errorlist {
  margin: 0;
  padding-left: 1rem;
  color: #ffb6b6;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.35rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffd541, var(--gold), #ffef8f);
  color: #10224c;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 700;
}

.contact-success-card {
  max-width: 860px;
  margin-bottom: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  border: 1px solid rgba(125, 215, 255, 0.28);
  background: rgba(45, 141, 255, 0.1);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(5, 14, 35, 0.92);
}

.footer-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem 0 2rem;
}

.footer-newsletter {
  display: grid;
  grid-template-columns: minmax(12rem, 0.7fr) minmax(0, 1.3fr);
  gap: 1.25rem;
  align-items: center;
  padding: 1.15rem;
  border-radius: 20px;
  background: rgba(8, 26, 63, 0.45);
  border: 1px solid rgba(125, 215, 255, 0.14);
}

.footer-newsletter-intro {
  display: grid;
  gap: 0.35rem;
}

.footer-newsletter-title {
  margin: 0;
  color: var(--gold-soft);
  font-size: 1.1rem;
}

.footer-newsletter-copy {
  margin: 0;
  color: var(--muted);
}

.footer-newsletter-form {
  display: grid;
  gap: 0.55rem;
}

.footer-newsletter-fields {
  display: grid;
  grid-template-columns: minmax(9rem, 0.75fr) minmax(13rem, 1.25fr) auto;
  gap: 0.85rem;
  align-items: center;
}

.footer-newsletter-field input {
  width: 100%;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(125, 215, 255, 0.22);
  border-radius: 14px;
  background: rgba(3, 11, 29, 0.78);
  color: var(--text);
  font: inherit;
}

.account-subheading {
  margin-top: 1.5rem;
}

.account-inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-newsletter-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.4;
}

.footer-newsletter-button {
  align-self: stretch;
  white-space: nowrap;
}

.footer-newsletter-button.btn {
  padding-left: 1.3rem;
  padding-right: 1.3rem;
}

.newsletter-popup[hidden] {
  display: none;
}

.newsletter-popup {
  position: fixed;
  inset: 0;
  z-index: 120;
}

.newsletter-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 8, 18, 0.72);
  backdrop-filter: blur(8px);
}

.newsletter-popup-dialog {
  position: relative;
  z-index: 1;
  width: min(42rem, calc(100% - 2rem));
  margin: 8vh auto 0;
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(10, 25, 58, 0.97), rgba(6, 14, 32, 0.98));
  border: 1px solid rgba(125, 215, 255, 0.2);
  box-shadow: var(--shadow);
}

.newsletter-popup-close {
  position: absolute;
  top: 0.8rem;
  right: 0.9rem;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.newsletter-popup-copy,
.newsletter-popup-note {
  margin: 0;
  color: var(--muted);
}

.newsletter-popup-form {
  display: grid;
  gap: 0.75rem;
}

.newsletter-popup-fields {
  display: grid;
  grid-template-columns: minmax(9rem, 0.75fr) minmax(13rem, 1.25fr) auto;
  gap: 0.85rem;
}

.newsletter-popup-fields input {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(125, 215, 255, 0.22);
  border-radius: 14px;
  background: rgba(3, 11, 29, 0.78);
  color: var(--text);
  font: inherit;
}

.newsletter-popup-button {
  white-space: nowrap;
}

@media (max-width: 920px) {
  .nav-toggle {
    display: inline-flex;
  }

  .header-tools-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1rem;
    right: 1rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(7, 22, 51, 0.97);
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: block;
  }

  .nav-left,
  .service-split,
  .page-sections-layout,
  .journal-block,
  .event-hero,
  .blog-post-hero,
  .print-ticket-grid,
  .blog-card {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
  }

  .header-tools {
    justify-content: flex-end;
  }

  .header-tools-menu {
    display: none;
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    min-width: 12.5rem;
    padding: 0.9rem;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(7, 22, 51, 0.97);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
    gap: 0.6rem;
  }

  .header-tools-menu.open {
    display: flex;
  }

  .header-tools-menu .header-tool-link {
    padding: 0.2rem 0;
  }

  .service-split-text {
    display: contents;
  }

  .service-split-heading {
    order: 1;
  }

  .service-split-media {
    order: 2;
  }

  .service-split-details {
    order: 3;
  }

  .event-hero-copy {
    display: contents;
  }

  .event-hero-heading {
    order: 1;
  }

  .event-hero-aside {
    order: 2;
  }

  .event-hero-details {
    order: 3;
  }

  .nav-link,
  .nav-dropbtn {
    width: 100%;
    justify-content: space-between;
    padding-left: 0;
    padding-right: 0;
  }

  .nav-dropdown-menu {
    position: static;
    margin-top: 0.5rem;
  }

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

  .newsletter-popup-fields {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .homepage-hero,
  .homepage-hero-content {
    min-height: calc(100vh - 5.5rem);
  }

  .homepage-hero {
    margin-top: -2rem;
  }

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

  .footer-row,
  .footer-newsletter-fields,
  .blog-list,
  .page-sections-layout,
  .membership-product-grid,
  .ticket-type-grid,
  .account-grid,
  .checkout-grid,
  .basket-card,
  .ticket-detail-card,
  .basket-summary {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }

  .schedule-card {
    grid-template-columns: 1fr;
  }

  .schedule-card-media {
    width: min(12rem, 100%);
  }

  .film-frame {
    padding-left: 2.6rem;
    padding-right: 2.6rem;
  }

  .film-frame::before,
  .film-frame::after {
    width: 1.45rem;
  }

  .site-main {
    padding-top: 2rem;
  }

  .brandmark {
    justify-self: center;
  }

  .brandmark img {
    width: clamp(3.4rem, 22vw, 4.4rem);
  }

  .header-tools-menu {
    min-width: 11rem;
  }
}

@media print {
  body {
    background: #fff;
    color: #111;
  }

  body::before,
  .site-header,
  .site-footer,
  .message-stack,
  .print-hide {
    display: none !important;
  }

  .site-main,
  .container {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
  }

  .print-ticket-sheet {
    gap: 0.75rem;
  }

  .print-ticket-card {
    break-inside: avoid;
    page-break-inside: avoid;
    box-shadow: none;
    border: 1px solid #222;
    background: #fff;
    color: #111;
  }

  .print-ticket-ref,
  .print-ticket-meta,
  .ticket-qr-note,
  .site-page-kicker,
  .print-ticket-type {
    color: #222;
  }

  .print-ticket-main h2,
  .print-ticket-label {
    color: #111;
  }

  .ticket-qr-wrap {
    box-shadow: none;
    border: 1px solid #ccc;
  }

  a {
    color: #111;
    text-decoration: none;
  }
}
