:root {
  --bg: #0f0f0f;
  --bg-soft: #1b1b1b;
  --paper: #efede6;
  --paper-dim: rgba(239, 237, 230, 0.76);
  --signal: #c21717;
  --tape: #b39b72;
  --paper-gray: #cac3b8;
  --line: rgba(255, 255, 255, 0.15);
  --line-strong: rgba(255, 255, 255, 0.28);
  --glass: rgba(10, 10, 10, 0.56);
  --glass-strong: rgba(12, 12, 12, 0.72);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --shadow-soft: 0 18px 42px rgba(0, 0, 0, 0.35);
  --radius: 28px;
  --radius-sm: 16px;
  --flyer-width-compact: clamp(749px, 51.6vw, 835px);
  --flyer-width-wide: clamp(806px, 61.2vw, 922px);
  --flyer-offset: clamp(22px, 5vw, 60px);
  --flyer-block-gap: clamp(18px, 3vw, 28px);
  --font-body: Verdana, Geneva, sans-serif;
  --font-poster: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --teaser-landscape-width: 280px;
  --teaser-landscape-height: 210px;
  --teaser-portrait-width: 180px;
  --teaser-portrait-height: 300px;
  --teaser-gap: 10px;
  color-scheme: dark;
}

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

@font-face {
  font-family: "Noto Sans";
  src:
    url("/assets/fonts/noto-sans/NotoSans-Regular.woff2") format("woff2"),
    url("/assets/fonts/noto-sans/NotoSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Noto Sans";
  src: url("/assets/fonts/noto-sans/NotoSans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(194, 23, 23, 0.1), transparent 34%),
    radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.05), transparent 24%),
    var(--bg);
  color: var(--paper);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.025)),
    radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.08), transparent 18%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.04), transparent 14%),
    radial-gradient(circle at 35% 80%, rgba(255, 255, 255, 0.04), transparent 12%);
  background-size: auto, auto, auto, auto;
  mix-blend-mode: soft-light;
  z-index: 200;
}

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

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

button {
  cursor: pointer;
}

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

.club-stage {
  position: relative;
  min-height: 100svh;
  isolation: isolate;
  overflow: clip;
}

.club-stage__media,
.club-stage__slide,
.club-stage__slide picture,
.club-stage__slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.club-stage__slide {
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 1.2s ease, transform 8s ease;
}

.club-stage__slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.club-stage__slide img {
  object-fit: cover;
  object-position: var(--focus-x, 50%) var(--focus-y, 50%);
  filter: saturate(0.88) contrast(1.04) brightness(0.7);
}

.club-stage__wash,
.club-stage__grain,
.club-stage__vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.club-stage__wash {
  background:
    radial-gradient(circle at 18% 12%, rgba(194, 23, 23, 0.09), transparent 24%),
    radial-gradient(circle at 80% 18%, rgba(255, 255, 255, 0.08), transparent 20%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.18), transparent 42%, rgba(0, 0, 0, 0.36));
  z-index: 2;
}

.club-stage__grain {
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.11), transparent 8%),
    radial-gradient(circle at 60% 70%, rgba(255, 255, 255, 0.06), transparent 8%),
    radial-gradient(circle at 40% 35%, rgba(0, 0, 0, 0.24), transparent 22%);
  opacity: 0.28;
  mix-blend-mode: screen;
  z-index: 3;
}

.club-stage__vignette {
  background:
    radial-gradient(circle at center, transparent 42%, rgba(0, 0, 0, 0.18) 76%, rgba(0, 0, 0, 0.5) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.34));
  z-index: 4;
}

.site-frame {
  position: relative;
  z-index: 5;
  min-height: 100svh;
  padding: 0 var(--flyer-offset);
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
}

.site-frame--right {
  justify-content: flex-end;
}

.site-frame--center {
  justify-content: center;
}

.sticker-logo {
  position: absolute;
  top: 24px;
  width: clamp(96px, 9vw, 120px);
  z-index: 8;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.45));
  transform: rotate(-7deg);
}

.site-frame--left .sticker-logo {
  left: max(18px, calc(var(--flyer-offset) - 26px));
}

.site-frame--right .sticker-logo {
  right: max(18px, calc(var(--flyer-offset) - 26px));
}

.site-frame--center .sticker-logo {
  left: 50%;
  transform: translateX(-50%) rotate(-7deg);
}

.flyer {
  position: relative;
  width: var(--flyer-width-compact);
  max-width: min(100%, 835px);
  height: 100svh;
  max-height: 100svh;
  color: var(--paper);
}

.flyer.is-wide {
  width: var(--flyer-width-wide);
  max-width: min(100%, 922px);
}

.flyer__surface {
  position: relative;
  min-height: 100%;
  height: 100%;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 22%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.055), transparent 35%),
    var(--glass);
  backdrop-filter: blur(6px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.flyer__surface::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 16%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.014) 0 2px, transparent 2px 5px);
  opacity: 0.7;
  pointer-events: none;
}

.flyer__surface::after {
  display: none;
}

.flyer__masthead {
  position: relative;
  z-index: 1;
  padding: 24px 28px 0;
}

body,
button,
input,
textarea,
label,
a,
p,
span,
time,
.panel-cta,
.download-row a,
form button,
.booking-panel button {
  font-family: var(--font-body);
}

.flyer__eyebrow,
.flyer__deck,
.kicker,
.section-label,
.flyer-menu__topline p,
.flyer-menu__nav a,
.flyer-hero__copy p,
.hero-fullscreen__copy p,
.featured-news-modal__subline,
.date-card__main span {
  margin: 0;
  font-family: var(--font-poster);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.flyer__deck,
.flyer-hero__copy p,
.hero-fullscreen__copy p,
.featured-news-modal__subline,
.date-card__main span {
  font-size: 1.02rem;
  line-height: 1.05;
}

.flyer__eyebrow {
  display: inline-flex;
  padding: 5px 10px;
  background: rgba(194, 23, 23, 0.14);
  color: #ffb0b0;
  border: 1px solid rgba(194, 23, 23, 0.3);
  font-size: 0.74rem;
}

.flyer__deck {
  margin-top: 14px;
  color: var(--paper-dim);
  font-size: 0.9rem;
}

.flyer__content {
  position: relative;
  z-index: 1;
  flex: 1;
  overflow: auto;
  padding: 118px 28px 28px;
}

.flyer-hero {
  display: grid;
  gap: 14px;
}

.flyer-hero[hidden] {
  display: none;
}

.flyer-hero__viewport {
  position: relative;
  min-height: 0;
}

.flyer-hero__expand {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent),
    rgba(15, 15, 15, 0.72);
  color: var(--paper);
  box-shadow: var(--shadow-soft);
}

.flyer-hero__expand:hover,
.flyer-hero__expand:focus-visible {
  border-color: rgba(255, 255, 255, 0.42);
  background:
    linear-gradient(180deg, rgba(194, 23, 23, 0.12), transparent),
    rgba(15, 15, 15, 0.82);
}

.flyer-hero__expand .fa-solid {
  font-size: 1.2rem;
  line-height: 1;
}

.flyer-hero__slide {
  display: none;
}

.flyer-hero__slide.is-active {
  display: grid;
  animation: flyerFadeIn 360ms ease;
}

@keyframes flyerFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.flyer-hero__image {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-soft);
}

.flyer-hero__image::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.78));
  pointer-events: none;
}

.flyer-hero__image picture,
.flyer-hero__image img {
  width: 100%;
  height: 100%;
}

.flyer-hero__image img {
  object-fit: cover;
  object-position: var(--focus-x, 50%) var(--focus-y, 50%);
  filter: contrast(1.04) saturate(0.92);
}

.flyer-hero__copy {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  display: grid;
  gap: 8px;
  padding: 14px 16px;
  font-family: var(--font-body);
  background: rgba(10, 10, 10, 0.28);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.3);
}

.flyer-hero__copy h1,
h1,
h2,
h3,
.date-card__main strong,
.featured-news__body h3,
.news-card h3,
.media-card h3 {
  margin: 0;
  font-family: var(--font-poster);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 0.94;
}

.flyer-hero__copy h1 {
  font-size: clamp(1.95rem, 3.7vw, 3.15rem);
  text-wrap: balance;
}

.flyer-hero__copy p {
  margin: 0;
  color: rgba(239, 237, 230, 0.9);
  font-size: 1.08rem;
  line-height: 1.12;
}

.hero-fullscreen {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  background: rgba(0, 0, 0, 0.96);
}

.hero-fullscreen.is-open {
  display: block;
}

.hero-fullscreen__close {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent),
    rgba(15, 15, 15, 0.78);
  color: var(--paper);
}

.hero-fullscreen__nav {
  position: fixed;
  top: 50%;
  z-index: 2;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent),
    rgba(15, 15, 15, 0.78);
  color: var(--paper);
  transform: translateY(-50%);
}

.hero-fullscreen__nav--prev {
  left: 18px;
}

.hero-fullscreen__nav--next {
  right: 18px;
}

.hero-fullscreen__nav:hover,
.hero-fullscreen__nav:focus-visible,
.hero-fullscreen__close:hover,
.hero-fullscreen__close:focus-visible {
  border-color: rgba(255, 255, 255, 0.42);
  background:
    linear-gradient(180deg, rgba(194, 23, 23, 0.12), transparent),
    rgba(15, 15, 15, 0.84);
}

.hero-fullscreen__image {
  position: absolute;
  inset: 0;
  width: 100vw;
  height: 100svh;
  object-fit: cover;
}

.hero-fullscreen__copy {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 1;
  display: grid;
  gap: 8px;
  padding: 14px 16px;
  font-family: var(--font-body);
  background: rgba(10, 10, 10, 0.28);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.3);
}

.hero-fullscreen__copy h1,
.hero-fullscreen__copy p {
  margin: 0;
}

.hero-fullscreen__copy p {
  font-size: 1.08rem;
  line-height: 1.12;
}

.flyer-hero__dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.flyer-hero__dot {
  width: 26px;
  height: 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  transition: width 200ms ease, background 200ms ease, border-color 200ms ease;
}

.flyer-hero__dot.is-active,
.flyer-hero__dot:hover,
.flyer-hero__dot:focus-visible {
  width: 44px;
  background: var(--signal);
  border-color: rgba(255, 255, 255, 0.4);
}

.flyer__panel {
  margin-top: 8px;
  display: grid;
  gap: 14px;
}

.flyer__panel > section {
  scroll-margin-top: 118px;
}

.flyer__panel > section:first-of-type .panel-section {
  margin-top: 0;
  padding-top: 4px;
}

.onepager-anchor {
  display: block;
  height: 1px;
  margin: 0;
  padding: 0;
}

.flyer__tabs {
  position: absolute;
  top: 46px;
  left: 28px;
  right: 28px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  z-index: 7;
}

.flyer--left .flyer__tabs {
  left: 28px;
}

.flyer--right .flyer__tabs {
  left: 28px;
  right: auto;
}

.flyer--center .flyer__tabs {
  left: 28px;
  right: 28px;
}

.flyer__tab--contact {
  margin-left: auto;
}

.flyer__tab {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent),
    rgba(15, 15, 15, 0.92);
  border: 1px solid var(--line-strong);
  color: var(--paper);
  box-shadow: var(--shadow-soft);
  border-radius: 16px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.flyer--left .flyer__tab:hover,
.flyer--left .flyer__tab:focus-visible {
  transform: translateY(-4px);
}

.flyer--right .flyer__tab:hover,
.flyer--right .flyer__tab:focus-visible {
  transform: translateY(-4px);
}

.flyer__tab:hover,
.flyer__tab:focus-visible {
  border-color: rgba(255, 255, 255, 0.5);
  background:
    linear-gradient(180deg, rgba(194, 23, 23, 0.12), transparent),
    rgba(15, 15, 15, 0.96);
}

.flyer__tab .fa-solid,
.flyer-menu__close .fa-solid {
  font-size: 1.35rem;
  line-height: 1;
}

.flyer__tab[aria-pressed="true"] {
  border-color: rgba(255, 255, 255, 0.5);
  background:
    linear-gradient(180deg, rgba(194, 23, 23, 0.12), transparent),
    rgba(15, 15, 15, 0.96);
}

.flyer-menu {
  position: absolute;
  inset: 0;
  z-index: 12;
  display: grid;
  align-items: start;
  justify-items: stretch;
  padding: 88px 24px 24px;
  background: rgba(8, 8, 8, 0.08);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.flyer-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}

.flyer-menu__sheet {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 24px;
  padding: 22px;
  width: min(100%, 540px);
  min-height: 0;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 14%),
    rgba(12, 12, 12, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.48);
  transform: translateY(16px) rotate(-1.2deg);
  transition: transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.flyer-menu.is-open .flyer-menu__sheet {
  transform: translateY(0) rotate(-0.35deg);
}

.flyer-menu__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.flyer-menu__close {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--paper);
}

.flyer-menu__nav {
  display: grid;
  align-content: start;
  gap: 10px;
}

.flyer-menu__nav a {
  display: block;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background:
    linear-gradient(90deg, rgba(194, 23, 23, 0.12), transparent 32%),
    rgba(255, 255, 255, 0.035);
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.flyer-menu__nav a:hover,
.flyer-menu__nav a:focus-visible {
  transform: translateX(6px);
  border-color: rgba(255, 255, 255, 0.34);
  background:
    linear-gradient(90deg, rgba(194, 23, 23, 0.2), transparent 42%),
    rgba(255, 255, 255, 0.065);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  margin-top: auto;
  padding: 16px 28px 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  color: rgba(239, 237, 230, 0.84);
  font-size: 0.88rem;
  font-family: var(--font-body);
  letter-spacing: 0;
  text-transform: none;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 12px;
}

.site-footer a,
.socials a {
  transition: color 180ms ease, opacity 180ms ease, border-color 180ms ease, background 180ms ease;
}

.site-footer a,
.site-footer__links,
.site-footer__links a {
  font-family: var(--font-body);
  text-transform: none;
  letter-spacing: 0;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #fff;
}

.socials {
  display: flex;
  gap: 8px;
}

.socials a {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.22);
}

.socials a:hover,
.socials a:focus-visible {
  background: rgba(194, 23, 23, 0.2);
  border-color: rgba(255, 255, 255, 0.34);
}

.back-to-top {
  display: none;
}

.legal-page {
  position: relative;
  min-height: 100svh;
  padding: clamp(28px, 6vw, 64px) clamp(18px, 4vw, 42px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.legal-page__backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.56)),
    radial-gradient(circle at 20% 10%, rgba(194, 23, 23, 0.12), transparent 22%),
    radial-gradient(circle at 82% 16%, rgba(255, 255, 255, 0.06), transparent 18%);
}

.legal-page__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 920px);
  display: grid;
  gap: 22px;
  justify-items: center;
}

.legal-page__logo {
  width: clamp(82px, 11vw, 126px);
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.42));
  transform: rotate(-7deg);
}

.legal-page__card {
  width: min(100%, 760px);
  padding: clamp(22px, 4vw, 38px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 24%),
    var(--glass);
  backdrop-filter: blur(6px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.legal-page__copy {
  color: var(--paper);
}

.legal-page__copy p {
  margin: 0 0 1rem;
}

.legal-page__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  border: 1px solid rgba(194, 23, 23, 0.3);
  background: linear-gradient(180deg, rgba(194, 23, 23, 0.28), rgba(194, 23, 23, 0.18));
  color: var(--paper);
  font-family: var(--font-poster);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.news-archive-list {
  display: grid;
  gap: 22px;
}

.news-archive-item {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.news-archive-item:first-child {
  padding-top: 0;
  border-top: 0;
}

.news-archive-item__copy {
  color: var(--paper);
  font-family: var(--font-body);
  line-height: 1.55;
}

.news-archive-item__copy p,
.news-archive-item__copy br {
  margin: 0;
}

.news-archive-item .featured-news__trigger {
  display: grid;
  place-items: center;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.06), transparent 64%),
    rgba(255, 255, 255, 0.02);
  overflow: hidden;
}

.news-archive-item .featured-news__trigger img,
.news-archive-item.teaser-card .featured-news__trigger img,
.news-archive-item.teaser-card.is-portrait .featured-news__trigger img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  background: transparent;
}

[class^="socicon-"],
[class*=" socicon-"] {
  font-family: "Socicon" !important;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.socicon-apple:before { content: "\e008"; }
.socicon-bandcamp:before { content: "\e00b"; }
.socicon-facebook:before { content: "\e028"; }
.socicon-instagram:before { content: "\e044"; }
.socicon-spotify:before { content: "\e079"; }
.socicon-youtube:before { content: "\e0a5"; }

.intro-panel,
.next-date,
.featured-news,
.panel-section,
.media-panel,
.booking-panel {
  position: relative;
}

.intro-panel,
.next-date,
.featured-news,
.panel-section {
  display: grid;
  gap: 12px;
}

.panel-section--mobile-only,
.mobile-inline-block,
.news-detail-inline {
  display: none;
}

.next-date,
.featured-news,
.panel-section,
.contact form,
.media-subsection {
  margin-top: 28px;
  padding-top: 22px;
}

.kicker,
.section-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  color: rgba(239, 237, 230, 0.62);
  font-size: 0.78rem;
  text-align: center;
  white-space: nowrap;
  line-height: 1;
}

.date-year-label {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  margin: 8px 0 2px;
  color: rgba(239, 237, 230, 0.62);
  font-family: var(--font-poster);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1;
}

.kicker::before,
.section-label::before,
.date-year-label::before,
.kicker::after,
.section-label::after,
.date-year-label::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(0);
}

h2,
h3,
h1 {
  font-size: clamp(1.45rem, 2.8vw, 1.95rem);
}

p {
  margin: 0;
  font-family: var(--font-body);
}

.featured-news img,
.news-card img {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-soft);
}

.featured-news img {
  width: 100%;
  max-width: var(--teaser-landscape-width);
  height: var(--teaser-landscape-height);
  object-fit: cover;
}

.featured-news__trigger {
  justify-self: start;
}

.teaser-card {
  grid-template-columns: var(--teaser-landscape-width) minmax(0, 1fr);
  column-gap: var(--teaser-gap);
  align-items: start;
}

.gallery-teaser-card {
  grid-template-columns: var(--teaser-landscape-width) minmax(0, 1fr);
  column-gap: var(--teaser-gap);
  align-items: start;
}

.teaser-card.is-portrait {
  grid-template-columns: var(--teaser-portrait-width) minmax(0, 1fr);
}

.gallery-teaser-card.is-portrait {
  grid-template-columns: var(--teaser-portrait-width) minmax(0, 1fr);
}

.teaser-card .featured-news__trigger,
.gallery-teaser-card .featured-news__trigger {
  display: block;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
}

.teaser-card .featured-news__trigger img,
.gallery-teaser-card .featured-news__trigger img {
  width: 100%;
  max-width: none;
  height: var(--teaser-landscape-height);
  object-fit: cover;
  object-position: center center;
}

.teaser-card.is-portrait .featured-news__trigger img,
.gallery-teaser-card.is-portrait .featured-news__trigger img {
  height: var(--teaser-portrait-height);
}

.featured-news__body {
  display: grid;
  gap: 6px;
  align-content: start;
  padding-top: 2px;
}

.featured-news__body h3 {
  margin: 0;
}

.featured-news__body time,
.featured-news__body p {
  margin: 0;
}

.featured-news__subline {
  color: var(--paper-dim);
  font-family: var(--font-poster);
  font-size: 1.02rem;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.merch-card-list {
  display: grid;
  gap: 18px;
}

.merch-card__image {
  display: grid;
  place-items: center;
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.06), transparent 64%),
    rgba(255, 255, 255, 0.02);
  box-shadow: var(--shadow-soft);
}

.merch-card__image img {
  width: 100%;
  max-width: none;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.35));
}

.panel-cta-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 16px;
}

.panel-cta-row--start {
  justify-content: flex-start;
}

.panel-cta-row--center {
  justify-content: center;
}

.panel-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(90deg, rgba(194, 23, 23, 0.14), transparent 42%),
    rgba(255, 255, 255, 0.04);
  font-size: 0.92rem;
  letter-spacing: 0;
  text-transform: none;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.panel-cta:hover,
.panel-cta:focus-visible {
  transform: translateX(4px);
  border-color: rgba(255, 255, 255, 0.34);
  background:
    linear-gradient(90deg, rgba(194, 23, 23, 0.22), transparent 48%),
    rgba(255, 255, 255, 0.06);
}

.featured-news img.is-portrait {
  width: var(--teaser-portrait-width);
  height: var(--teaser-portrait-height);
}

.featured-news img.is-landscape {
  width: var(--teaser-landscape-width);
  height: var(--teaser-landscape-height);
}

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

.featured-news h2,
.news-card h3 {
  line-height: 1;
}

.date-list,
.media-grid,
.gallery-list {
  display: grid;
  gap: 18px;
}

.date-card {
  display: grid;
  grid-template-columns: 92px 1fr;
  grid-template-areas:
    "date main"
    "date info";
  gap: 16px;
  padding: 18px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.date-card--teaser {
  padding-top: 0;
  border-top: 0;
}

.date-card__date {
  grid-area: date;
  width: 92px;
  aspect-ratio: 1;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 2px;
  padding: 10px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(194, 23, 23, 0.18), transparent 44%),
    rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.date-card__date span,
.date-card__main span,
.news-card time,
.past-dates,
.download-row,
.flash {
  color: var(--paper-dim);
}

.date-card__date span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.date-card__date strong {
  font-size: 2.85rem;
  line-height: 0.85;
}

.date-card__main {
  grid-area: main;
  display: grid;
  align-content: center;
  gap: 4px;
}

.date-card__main strong {
  font-size: clamp(1.45rem, 2.8vw, 1.95rem);
  line-height: 0.94;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.date-card__main span {
  font-size: 1rem;
}

.date-card__info {
  grid-area: info;
  align-self: start;
}

.past-dates-list,
.page-copy {
  display: grid;
  gap: 12px;
}

.news-detail-inline {
  gap: 12px;
}

.media-jumpnav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 10px;
}

.media-jumpnav a,
.download-row a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.media-jumpnav a:hover,
.media-jumpnav a:focus-visible,
.download-row a:hover,
.download-row a:focus-visible {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(194, 23, 23, 0.14);
}

.media-panel__body {
  margin-top: 0;
}

.media-subsection {
  scroll-margin-top: 24px;
}

.media-card {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.025);
}

.media-card video,
.embed {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.4);
}

.embed {
  position: relative;
  aspect-ratio: 16 / 9;
}

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

.gallery-block {
  display: grid;
  gap: 12px;
}

.gallery-teaser {
  padding: 0;
  border: 0;
  background: none;
  justify-self: start;
}

.gallery-teaser img {
  width: 100%;
  max-width: 280px;
  height: 180px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, border-color 180ms ease;
}

.gallery-teaser:hover img,
.gallery-teaser:focus-visible img {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.34);
}

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

.gallery-modal {
  position: absolute;
  inset: 0;
  z-index: 980;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.gallery-modal.is-tall {
  align-items: flex-start;
}

.gallery-modal.is-open {
  display: flex;
}

.gallery-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
}

.gallery-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(920px, calc(100vw - 48px));
  max-height: calc(100svh - 48px);
  overflow: auto;
  display: grid;
  gap: 16px;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 16%),
    rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(8px);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.48);
}

.gallery-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: var(--paper);
}

.gallery-item {
  padding: 0;
  border: 0;
  background: none;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, border-color 180ms ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.34);
}

.booking-panel form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--paper-dim);
  font-family: var(--font-body);
}

.consent-check {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  color: var(--paper-dim);
}

.consent-check input {
  width: auto;
  min-height: 0;
  margin: 4px 0 0;
}

.consent-check span {
  line-height: 1.45;
}

.consent-check a {
  color: var(--paper);
  text-decoration: underline;
}

.booking-switch {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  border: 0;
}

.booking-switch legend {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.booking-switch__option {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.2);
  color: var(--paper);
}

.booking-switch__option input {
  width: auto;
  min-height: 0;
  margin: 0;
}

input,
textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.28);
  color: var(--paper);
  min-height: 52px;
}

input:focus-visible,
textarea:focus-visible,
.flyer__tab:focus-visible,
.flyer-menu__close:focus-visible,
.flyer-menu__nav a:focus-visible,
.site-footer a:focus-visible,
.socials a:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.7);
  outline-offset: 2px;
}

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

form button,
.booking-panel button {
  justify-self: start;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(194, 23, 23, 0.18), rgba(194, 23, 23, 0.05)),
    rgba(255, 255, 255, 0.04);
  color: var(--paper);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

form button:hover,
form button:focus-visible {
  background:
    linear-gradient(90deg, rgba(194, 23, 23, 0.28), rgba(194, 23, 23, 0.08)),
    rgba(255, 255, 255, 0.06);
}

.booking-panel__form button {
  justify-self: center;
}

.booking-panel__copy {
  margin: 0;
  text-align: center;
}

.booking-panel--info {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}

.booking-panel--info .section-label {
  margin-bottom: 0;
}

.booking-panel--info .booking-panel__copy {
  margin-top: 24px;
}

.booking-panel__download {
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(194, 23, 23, 0.18), rgba(194, 23, 23, 0.05)),
    rgba(255, 255, 255, 0.04);
  color: var(--paper);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.booking-panel__download:hover,
.booking-panel__download:focus-visible {
  background:
    linear-gradient(90deg, rgba(194, 23, 23, 0.28), rgba(194, 23, 23, 0.08)),
    rgba(255, 255, 255, 0.06);
}

.merch-card__cta {
  justify-self: center;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(194, 23, 23, 0.18), rgba(194, 23, 23, 0.05)),
    rgba(255, 255, 255, 0.04);
  color: var(--paper);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.merch-card__cta:hover,
.merch-card__cta:focus-visible {
  background:
    linear-gradient(90deg, rgba(194, 23, 23, 0.28), rgba(194, 23, 23, 0.08)),
    rgba(255, 255, 255, 0.06);
}

.flash {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
}

.merch-inquiry-modal {
  gap: 20px;
}

.merch-inquiry-modal__hint {
  margin: 0;
  color: var(--paper);
}

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

.merch-inquiry-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.merch-quantity {
  display: grid;
  gap: 10px;
}

.merch-quantity__label {
  color: var(--paper-dim);
  font-family: var(--font-body);
}

.merch-quantity__control {
  display: inline-grid;
  grid-template-columns: 48px 92px 48px;
  gap: 10px;
  align-items: center;
}

.merch-quantity__button {
  min-height: 48px;
  padding: 0;
  justify-self: stretch;
}

.merch-quantity__control input {
  text-align: center;
  padding-inline: 0;
}

.merch-inquiry-form button[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
}

.hp {
  position: absolute;
  left: -9999px;
}

.news-card {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.025);
}

.featured-news__trigger {
  padding: 0;
  border: 0;
  background: none;
  justify-self: start;
}

.featured-news__trigger img {
  transition: transform 180ms ease, border-color 180ms ease;
}

.featured-news__trigger:hover img,
.featured-news__trigger:focus-visible img {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.34);
}

.featured-news-modal {
  position: absolute;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.featured-news-modal.is-tall {
  align-items: flex-start;
}

.featured-news-modal.is-open {
  display: flex;
}

.featured-news-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
}

.featured-news-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(900px, calc(100vw - 56px));
  max-height: calc(100svh - 56px);
  overflow: auto;
  display: grid;
  gap: 20px;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 16%),
    rgba(10, 10, 10, 0.62);
  backdrop-filter: blur(4px);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.48);
}

.featured-news-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: var(--paper);
}

.featured-news-modal__image {
  width: 100%;
  max-width: 672px;
  height: 432px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow-soft);
}

.featured-news-modal__image.is-portrait {
  max-width: 432px;
  height: 672px;
}

.featured-news-modal__copy {
  display: grid;
  gap: 12px;
}

.featured-news-modal__copy h3 {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
}

.featured-news-modal__subline {
  color: var(--paper-dim);
  font-size: 0.98rem;
}

.featured-news-modal__text {
  color: var(--paper);
  line-height: 1.65;
}

.content-modal {
  position: absolute;
  inset: 0;
  z-index: 990;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  pointer-events: none;
}

.content-modal.is-tall {
  align-items: flex-start;
}

.content-modal.is-open {
  display: flex;
}

.content-modal__backdrop {
  display: none;
}

.content-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(780px, calc(100% - 24px));
  max-height: calc(100% - 32px);
  overflow: auto;
  display: grid;
  gap: 18px;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 16%),
    rgba(10, 10, 10, 0.68);
  backdrop-filter: blur(5px);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.48);
  pointer-events: auto;
}

.content-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: var(--paper);
}

.news-card time {
  font-size: 0.86rem;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.92);
  z-index: 999;
}

.gallery-lightbox.is-open {
  display: flex;
}

.gallery-lightbox__image {
  width: min(84vw, 840px);
  height: min(54vw, 540px);
  max-width: 84vw;
  max-height: 82vh;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.gallery-lightbox__image.is-portrait {
  width: min(54vw, 540px);
  height: min(84vw, 840px);
  max-width: 72vw;
}

.gallery-lightbox__button {
  position: absolute;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.42);
  color: #fff;
}

.gallery-lightbox__button svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.gallery-lightbox__close {
  top: 24px;
  right: 24px;
}

.gallery-lightbox__prev {
  left: 20px;
}

.gallery-lightbox__next {
  right: 20px;
}

body.has-gallery-lightbox {
  overflow: hidden;
}

.password-gate {
  position: relative;
  min-height: 100svh;
  isolation: isolate;
  overflow: clip;
}

.password-gate__media,
.password-gate__media img,
.password-gate__wash,
.password-gate__grain,
.password-gate__vignette {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.password-gate__media img {
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.88) contrast(1.04) brightness(0.64);
}

.password-gate__wash,
.password-gate__grain,
.password-gate__vignette {
  pointer-events: none;
}

.password-gate__wash {
  background:
    radial-gradient(circle at 18% 12%, rgba(194, 23, 23, 0.14), transparent 24%),
    radial-gradient(circle at 80% 18%, rgba(255, 255, 255, 0.08), transparent 20%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.26), transparent 42%, rgba(0, 0, 0, 0.48));
  z-index: 2;
}

.password-gate__grain {
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.11), transparent 8%),
    radial-gradient(circle at 60% 70%, rgba(255, 255, 255, 0.06), transparent 8%),
    radial-gradient(circle at 40% 35%, rgba(0, 0, 0, 0.24), transparent 22%);
  opacity: 0.28;
  mix-blend-mode: screen;
  z-index: 3;
}

.password-gate__vignette {
  background:
    radial-gradient(circle at center, transparent 42%, rgba(0, 0, 0, 0.18) 76%, rgba(0, 0, 0, 0.5) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.34));
  z-index: 4;
}

.password-gate__frame {
  position: relative;
  z-index: 5;
  min-height: 100svh;
  padding: 32px 16px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 18px;
}

.password-gate__logo {
  width: clamp(78px, 12vw, 118px);
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.45));
  transform: rotate(-7deg);
}

.password-gate__panel {
  width: min(100%, 520px);
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 22%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.055), transparent 35%),
    var(--glass);
  backdrop-filter: blur(6px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.password-gate__panel h1 {
  margin: 0;
  font-family: var(--font-poster);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 0.94;
  font-size: clamp(2rem, 5vw, 3.2rem);
}

.password-gate__subline {
  margin: 0;
  color: var(--paper-dim);
  font-family: var(--font-poster);
  font-size: 1rem;
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.password-gate__error {
  margin: 0;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(194, 23, 23, 0.34);
  background: rgba(194, 23, 23, 0.16);
  color: #ffd6d6;
}

.password-gate__field {
  display: grid;
  gap: 8px;
}

.password-gate__field span {
  color: var(--paper);
}

.password-gate__field input {
  width: 100%;
  min-height: 54px;
  padding: 14px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(10, 10, 10, 0.6);
  color: var(--paper);
  outline: none;
}

.password-gate__field input:focus {
  border-color: rgba(255, 255, 255, 0.38);
  box-shadow: 0 0 0 3px rgba(194, 23, 23, 0.14);
}

.password-gate__panel button {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(194, 23, 23, 0.3);
  background: linear-gradient(180deg, rgba(194, 23, 23, 0.28), rgba(194, 23, 23, 0.18));
  color: var(--paper);
  font-family: var(--font-poster);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .password-gate__frame {
    padding: 24px 16px;
    align-content: start;
  }

  .password-gate__panel {
    width: 100%;
  }
}

@media (max-width: 980px) {
  .legal-page {
    align-items: flex-start;
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .legal-page__inner,
  .legal-page__card {
    width: 100%;
  }

    .club-stage {
    overflow: visible;
  }

  .site-frame {
    min-height: auto;
    padding: 16px 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 18px;
  }

  .sticker-logo {
    top: 18px;
    left: 16px;
    right: auto;
    width: clamp(64px, 18vw, 78px);
  }

  .site-frame--right .sticker-logo {
    right: 16px;
    left: auto;
  }

  .site-frame--center .sticker-logo {
    left: 50%;
    right: auto;
    transform: translateX(-50%) rotate(-7deg);
  }

  .flyer,
  .flyer.is-wide {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
    height: auto;
    max-height: none;
    margin-inline: auto;
    flex-shrink: 0;
  }

  .flyer__surface {
    min-height: 0;
    height: auto;
    max-height: none;
    border-radius: 24px;
  }

  .flyer__tabs {
    top: 14px;
    left: 18px;
    right: 18px;
    flex-direction: row;
    z-index: 10;
  }

  .flyer--right .flyer__tabs {
    left: auto;
    right: 18px;
  }

  .flyer__tab {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .flyer--left .flyer__tab:hover,
  .flyer--left .flyer__tab:focus-visible,
  .flyer--right .flyer__tab:hover,
  .flyer--right .flyer__tab:focus-visible {
    transform: none;
  }

  .flyer-hero__expand {
    display: none;
  }

  .flyer__masthead {
    padding: 72px 18px 0;
  }

  .flyer__content {
    overflow: visible;
    padding: 72px 18px 18px;
  }

  .flyer-hero__copy h1 {
    font-size: clamp(1.5rem, 7.4vw, 2.45rem);
  }

  .flyer-hero__copy {
    position: static;
    left: auto;
    right: auto;
    bottom: auto;
    padding: 12px 13px;
    gap: 6px;
    border-radius: 16px;
  }

  .flyer-hero__image::after {
    display: none;
  }

  .flyer-hero__copy p {
    font-size: 0.98rem;
    line-height: 1.08;
  }

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

  .teaser-card,
  .teaser-card.is-portrait,
  .gallery-teaser-card,
  .gallery-teaser-card.is-portrait {
    grid-template-columns: 1fr;
    row-gap: 10px;
  }

  .featured-news__body {
    padding-top: 0;
  }

  .date-card {
    grid-template-columns: 1fr;
    grid-template-areas:
      "date"
      "main"
      "info";
    gap: 12px;
  }

  .date-card__date {
    width: 96px;
    border-radius: 16px;
  }

  .date-card__date strong {
    font-size: 2.2rem;
  }

  .date-card__main,
  .date-card__info {
    align-content: start;
  }

  .site-footer {
    flex-shrink: 0;
    padding: 14px 18px 18px;
    flex-wrap: wrap;
  }

  .hero-fullscreen__copy {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .hero-fullscreen__close {
    top: 14px;
    right: 14px;
  }

  .hero-fullscreen__nav {
    width: 44px;
    height: 44px;
  }

  .hero-fullscreen__nav--prev {
    left: 14px;
  }

  .hero-fullscreen__nav--next {
    right: 14px;
  }

  .site-footer__links {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 12px;
  }

  .panel-section--mobile-only,
  .mobile-inline-block,
  .news-detail-inline,
  .news-mobile-copy {
    display: grid;
  }

  .featured-news-modal,
  .content-modal:not(.content-modal--mobile-enabled),
  .gallery-modal:not(.gallery-modal--mobile-enabled) {
    display: none !important;
  }

  .content-modal--mobile-enabled,
  .gallery-modal--mobile-enabled {
    position: fixed;
    inset: 0;
    padding: 82px 16px 16px;
    align-items: flex-start;
    justify-content: center;
    z-index: 1300;
    pointer-events: auto;
  }

  .content-modal--mobile-enabled .content-modal__backdrop,
  .gallery-modal--mobile-enabled .gallery-modal__backdrop {
    display: block;
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.82);
  }

  .content-modal--mobile-enabled .content-modal__dialog,
  .gallery-modal--mobile-enabled .gallery-modal__dialog {
    position: relative;
    width: min(100%, 520px);
    max-height: calc(100svh - 98px);
    padding-top: 56px;
    margin: 0 auto;
    overflow: auto;
  }

  .content-modal--mobile-enabled .content-modal__close,
  .gallery-modal--mobile-enabled .gallery-modal__close {
    top: 12px;
    right: 12px;
  }

  .merch-inquiry-form__grid {
    grid-template-columns: 1fr;
  }

  .back-to-top {
    position: fixed;
    right: 16px;
    bottom: 18px;
    z-index: 1200;
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background:
      linear-gradient(180deg, rgba(194, 23, 23, 0.12), transparent),
      rgba(15, 15, 15, 0.88);
    color: var(--paper);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 180ms ease, transform 180ms ease, border-color 180ms ease, background 180ms ease;
  }

  .back-to-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .back-to-top:hover,
  .back-to-top:focus-visible {
    border-color: rgba(255, 255, 255, 0.36);
    background:
      linear-gradient(180deg, rgba(194, 23, 23, 0.2), transparent),
      rgba(15, 15, 15, 0.94);
  }

  body.has-gallery-lightbox .back-to-top {
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
  }
}

@media (max-width: 560px) {
  .club-stage__slide img {
    filter: saturate(0.74) contrast(1.02) brightness(0.42);
  }

  .club-stage__wash {
    background:
      radial-gradient(circle at 18% 12%, rgba(194, 23, 23, 0.14), transparent 22%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.62));
  }

  .flyer-menu {
    align-items: stretch;
    padding: 10px;
    background: rgba(8, 8, 8, 0.16);
  }

  .flyer-menu__sheet {
    width: 100%;
    padding: 18px;
    gap: 18px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 14%),
      rgba(12, 12, 12, 0.93);
  }

  .flyer-menu__nav a {
    font-size: 1.32rem;
  }

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

  .media-jumpnav {
    gap: 8px;
  }
}
