@font-face {
  font-family: "Druk Text Wide";
  src: url("assets/fonts/DrukTextWideCyTTBold.ttf") format("truetype");
  font-weight: 700 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #050505;
  --bg-2: #0a0a0a;
  --ink: #f4f4f0;
  --muted: #8d8d86;
  --line: #22221e;
  --acid: #ff0000;
  --acid-dim: rgba(255, 0, 0, 0.16);
  --danger: #ff4d2e;
  --frame: clamp(16px, 4vw, 48px);
  --max: 1280px;
  --safe-top: max(24px, env(safe-area-inset-top));
  --safe-right: max(24px, env(safe-area-inset-right));
  --safe-bottom: max(24px, env(safe-area-inset-bottom));
  --safe-left: max(24px, env(safe-area-inset-left));
  --font-display: "Druk Text Wide", Impact, "Arial Black", "Helvetica Neue", sans-serif;
  --font-body: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-mono: "Lucida Console", "Consolas", "Courier New", monospace;
  --header-h: 64px;
  color-scheme: dark;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  overflow-x: clip;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar,
*::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

html,
body,
* {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
}

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

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

button,
input {
  font: inherit;
  color: inherit;
}

h1,
h2,
h3,
p,
figure,
ul,
fieldset,
legend {
  margin: 0;
}

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

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 80;
  background: var(--acid);
  color: #f4f4f0;
  padding: 8px 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.skip-link:focus {
  top: 12px;
}

:focus-visible {
  outline: 2px solid var(--acid);
  outline-offset: 3px;
}

/* Homepage: one locked cover screen */
html.home,
html.home body {
  width: 100%;
  max-width: 100%;
  height: 100dvh;
  max-height: 100dvh;
  overflow: hidden;
  overscroll-behavior: none;
}

html.home body {
  min-height: 100vh;
  min-height: 100dvh;
  position: relative;
}

.cover {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  height: 100dvh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: var(--safe-top) var(--safe-right) var(--safe-bottom) var(--safe-left);
}

.cover-bg,
.cover-shade,
.cover-texture {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/*
  Cover photo: Hero_1.jpg on desktop, Hero_mobile_1.jpg under 700px.
  Keep background-size: cover and background-position: center.
*/
.cover-bg {
  background-color: #050505;
  background-image: url("assets/images/Hero_1.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  transform-origin: center;
}

.cover-shade {
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.28) 0%, rgba(5, 5, 5, 0.55) 48%, rgba(5, 5, 5, 0.82) 100%);
}

.cover-texture {
  opacity: 0.07;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 56px 56px, 56px 56px, 160px 160px;
}

.cover-brand {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vh, 28px);
  min-height: 0;
}

.cover-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 100%;
  font-family: var(--font-display);
  font-size: clamp(40px, 11vw, 118px);
  font-weight: 700;
  line-height: 0.86;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
}

.cover-logo span {
  min-width: 0;
  max-width: 100%;
  overflow-wrap: break-word;
}

.cover-nav {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 4px clamp(18px, 4vw, 40px);
  width: auto;
  max-width: 100%;
}

.cover-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-family: var(--font-mono);
  font-size: clamp(12px, 1.6vw, 14px);
  letter-spacing: 0.18em;
  color: var(--ink);
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.cover-nav a:hover {
  color: var(--acid);
  border-bottom-color: var(--acid);
  transform: translateY(-2px);
}

.cover-nav a:focus-visible {
  transform: none;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--ink);
  transition: color 0.2s ease;
}

.social-links a:hover {
  color: var(--acid);
}

.social-links svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.social-links svg .icon-dot,
.social-links svg .icon-fill {
  fill: currentColor;
  stroke: none;
}

.social-links .icon-tiktok {
  display: block;
  width: 15px;
  height: 17px;
  background-color: currentColor;
  -webkit-mask: url("assets/icons/tiktoklogo.svg") center / 15px 17px no-repeat;
  mask: url("assets/icons/tiktoklogo.svg") center / 15px 17px no-repeat;
}

.cover-social {
  position: absolute;
  top: var(--safe-top);
  right: var(--safe-right);
  z-index: 3;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
}

.lang-switch button {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  min-height: 44px;
  min-width: 36px;
  padding: 0 6px;
  font: inherit;
  letter-spacing: inherit;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.lang-switch button:hover {
  color: var(--ink);
}

.lang-switch button:focus-visible {
  color: var(--ink);
  border-bottom-color: var(--acid);
}

.lang-switch button.is-active {
  color: var(--ink);
  border-bottom-color: var(--acid);
}

.lang-switch-sep {
  color: var(--muted);
  opacity: 0.45;
}

.cover-lang {
  position: absolute;
  top: var(--safe-top);
  left: var(--safe-left);
  z-index: 3;
}

.cover-lang button {
  color: rgba(255, 255, 255, 0.58);
}

.cover-lang button:hover,
.cover-lang button.is-active {
  color: var(--ink);
}

/* Inner pages */
body.inner {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

body.inner main {
  flex: 1 0 auto;
  padding-top: var(--header-h);
  min-height: 100dvh;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #050505;
  border-bottom: 1px solid var(--line);
}

.header-bar {
  width: min(var(--max), calc(100% - 2 * var(--frame)));
  margin-inline: auto;
  min-height: var(--header-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
}

.wordmark {
  justify-self: start;
  font-family: var(--font-display);
  font-size: clamp(14px, 1.7vw, 18px);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.wordmark:hover {
  color: var(--acid);
}

.header-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 22px;
}

.header-nav a {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--muted);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.header-nav a:hover,
.header-nav a[aria-current="page"] {
  color: var(--ink);
}

.header-nav a[aria-current="page"] {
  border-bottom-color: var(--acid);
}

.header-tools {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-toggle {
  display: grid;
  place-items: center;
  position: relative;
  z-index: 101;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

body.home .nav-toggle {
  position: fixed;
  top: var(--safe-top);
  right: var(--safe-right);
}

.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block;
  width: 16px;
  height: 1px;
  margin-inline: auto;
  background: var(--ink);
  transition: transform 0.2s ease, top 0.2s ease, background-color 0.2s ease;
}

.nav-toggle-bars {
  position: relative;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-bars::before {
  top: -6px;
}

.nav-toggle-bars::after {
  top: 6px;
}

.nav-toggle.is-open .nav-toggle-bars {
  background: transparent;
}

.nav-toggle.is-open .nav-toggle-bars::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle.is-open .nav-toggle-bars::after {
  top: 0;
  transform: rotate(-45deg);
}

.site-drawer {
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  visibility: hidden;
  transition: visibility 0s linear 0.38s;
}

.site-drawer.is-open {
  pointer-events: auto;
  visibility: visible;
  transition: visibility 0s;
}

.drawer-scrim {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  opacity: 0;
  cursor: pointer;
  transition: opacity 0.32s ease;
}

.site-drawer.is-open .drawer-scrim {
  opacity: 1;
}

.drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(400px, 92vw);
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  overflow-y: auto;
  padding:
    calc(var(--header-h) + 8px)
    max(24px, env(safe-area-inset-right))
    max(16px, env(safe-area-inset-bottom))
    24px;
  background: #050505;
  border-left: 1px solid var(--line);
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1);
}

body.home .drawer-panel {
  padding-top: calc(var(--safe-top) + 44px);
}

.site-drawer.is-open .drawer-panel {
  transform: translateX(0);
}

.drawer-kicker {
  margin-bottom: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--acid);
}

.drawer-wordmark {
  display: block;
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 700;
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
}

.drawer-wordmark:hover {
  color: var(--acid);
}

.drawer-bio,
.drawer-tagline {
  max-width: 36ch;
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.drawer-bio {
  color: var(--muted);
}

.drawer-tagline {
  display: none;
}

.drawer-cta {
  width: 100%;
  min-height: 44px;
  margin-top: clamp(10px, 1.8vh, 16px);
  flex-shrink: 0;
}

.drawer-section {
  margin-top: clamp(12px, 2vh, 18px);
  flex-shrink: 0;
}

.drawer-section:has(.drawer-social) {
  margin-top: auto;
}

.drawer-label {
  margin-bottom: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--acid);
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.drawer-nav a {
  display: inline-flex;
  align-items: center;
  min-height: clamp(28px, 3.8vh, 34px);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.16em;
  color: var(--ink);
  border-bottom: 1px solid transparent;
}

.drawer-nav a:hover,
.drawer-nav a[aria-current="page"] {
  color: var(--acid);
}

.drawer-langs {
  display: flex;
  gap: 8px;
}

.drawer-langs button {
  flex: 1;
  min-height: 36px;
  padding: 0;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.drawer-langs button:hover {
  color: var(--ink);
  border-color: var(--ink);
}

.drawer-langs button.is-active {
  color: var(--ink);
  border-color: var(--acid);
  background: var(--acid-dim);
}

.drawer-social {
  flex-wrap: wrap;
  gap: 6px;
  margin-left: 0;
}

.drawer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
}

.drawer-mail {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.drawer-mail a {
  display: flex;
  flex-direction: column;
  gap: 1px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.03em;
  color: var(--muted);
  overflow-wrap: normal;
  word-break: normal;
  white-space: nowrap;
}

.drawer-mail a:hover {
  color: var(--ink);
}

.drawer-mail-label {
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--ink);
}

.drawer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  margin-top: clamp(12px, 2vh, 18px);
  flex-shrink: 0;
}

.drawer-legal a {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.drawer-legal a:hover {
  color: var(--ink);
}

.site-footer {
  position: relative;
  z-index: 1;
  margin-top: auto;
  border-top: 1px solid var(--line);
  background: #050505;
}

.footer-inner {
  width: min(var(--max), calc(100% - 2 * var(--frame)));
  margin-inline: auto;
  padding-block: 48px 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(140px, 0.55fr) minmax(220px, 0.9fr) minmax(140px, 0.55fr);
  gap: 40px 48px;
}

.footer-label {
  margin-bottom: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--acid);
}

.footer-wordmark {
  display: inline-block;
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.9;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.footer-wordmark:hover {
  color: var(--acid);
}

.footer-bio,
.footer-tagline {
  max-width: 46ch;
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.55;
  letter-spacing: 0.02em;
}

.footer-bio {
  color: var(--muted);
}

.footer-tagline {
  margin-top: 12px;
  color: var(--ink);
}

.footer-social {
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 20px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-col a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--muted);
  transition: color 0.2s ease;
}

.footer-col a:hover,
.footer-col a[aria-current="page"] {
  color: var(--ink);
}

.footer-contact a {
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  min-height: 0;
  padding: 4px 0 8px;
  letter-spacing: 0.03em;
  overflow-wrap: normal;
  word-break: normal;
  white-space: nowrap;
}

.footer-mail-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--ink);
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px 24px;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.footer-bottom > p:first-child {
  justify-self: start;
}

.footer-bottom > .lang-switch {
  justify-self: center;
}

.footer-bottom > p:last-child {
  justify-self: end;
  text-align: right;
}

.legal-text {
  max-width: 62ch;
  margin-top: 20px;
  color: var(--muted);
  font-size: 16px;
}

.legal .events-spec {
  margin-bottom: 0;
}

.legal-updated {
  margin: 18px 0 0;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--acid);
}

.legal-doc {
  max-width: 62ch;
  margin-top: 28px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.legal-doc h2 {
  margin: 36px 0 12px;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.04em;
  color: var(--ink);
}

.legal-doc p + p,
.legal-doc ul {
  margin-top: 12px;
}

.legal-doc ul {
  padding-left: 1.15em;
}

.legal-doc li {
  margin-top: 8px;
}

.legal-doc a {
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.legal-doc a:hover {
  color: var(--acid);
  border-bottom-color: var(--acid);
}

.legal-doc strong {
  color: var(--ink);
  font-weight: 700;
}

.form-legal {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.form-legal a {
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.form-legal a:hover {
  color: var(--acid);
  border-bottom-color: var(--acid);
}

.cookie-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 24px;
  padding: 16px var(--frame) max(16px, env(safe-area-inset-bottom));
  border-top: 1px solid var(--acid);
  background: #050505;
  animation: cookie-in 0.55s 0.28s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.cookie-bar.is-leaving {
  animation: cookie-out 0.28s ease forwards;
}

.cookie-bar-copy {
  flex: 1 1 280px;
  max-width: 72ch;
}

.cookie-bar-title {
  margin-bottom: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--acid);
}

.cookie-bar-text {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.cookie-bar-text a {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  color: var(--ink);
  border-bottom: 1px solid currentColor;
}

.cookie-bar-text a:hover {
  color: var(--acid);
  border-bottom-color: var(--acid);
}

.cookie-bar-compact {
  display: none;
}

.cookie-bar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-bar .btn {
  min-width: 120px;
}

html.modal-open {
  scroll-behavior: auto;
}

html.nav-open,
html.nav-open body,
html.modal-open,
html.modal-open body,
body.nav-open,
body.modal-open {
  overflow: hidden;
}

body.modal-open {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
}

html.nav-open .cookie-bar,
html.modal-open .cookie-bar,
body.modal-open .cookie-bar {
  visibility: hidden;
  pointer-events: none;
}

body.inner:has(#cookie-bar) {
  padding-bottom: var(--cookie-space, 96px);
}

body.home:has(#cookie-bar) .cover {
  padding-bottom: max(var(--safe-bottom), var(--cookie-space, 0px));
}

.page-grid,
.page-grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
}

.page-grid {
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(#000 0%, transparent 92%);
}

.page-grain {
  z-index: 50;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

.section {
  position: relative;
  z-index: 1;
}

.section-frame {
  width: min(var(--max), calc(100% - 2 * var(--frame)));
  margin-inline: auto;
  padding-block: clamp(28px, 6vw, 72px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--acid);
  background: var(--acid);
  color: #f4f4f0;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  background: #ff2e2e;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
}

.btn-ghost:hover {
  background: var(--acid-dim);
}

.events,
.event-modal {
  --k1: clamp(32px, 3.8vw, 48px);
  --k2: 20px;
  --k3: 16px;
  --k4: 12px;
}

.events h1,
.event-modal .event-title {
  font-size: var(--k1);
}

.events .ticket-title,
.events .ticket-subtitle,
.event-modal .event-meta,
.event-modal .panel-title,
.event-modal .success-title {
  font-size: var(--k2);
}

.events .events-lead,
.events .ticket-photo-fallback,
.events .ticket-description,
.event-modal .event-time,
.event-modal .event-location,
.event-modal .event-note,
.event-modal .panel-lead,
.event-modal .field input,
.event-modal .success-body {
  font-size: var(--k3);
}

.events .kicker,
.events .ticket-kicker,
.events .ticket-meta,
.events .ticket-time,
.events .ticket-location,
.events .ticket-stub-label,
.event-modal .kicker,
.event-modal .modal-close,
.event-modal .field label,
.event-modal .preview-notice,
.event-modal .success-kicker,
.event-modal .btn {
  font-size: var(--k4);
}

.ticket-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 40px;
}

.ticket {
  display: grid;
  grid-template-columns: minmax(240px, 32%) 16px minmax(0, 1fr) 92px;
  width: 100%;
  min-height: 280px;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--bg-2);
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.25s ease;
}

@media (hover: hover) and (pointer: fine) {
  .ticket:hover {
    border-color: var(--acid);
    transform: translateY(-3px);
  }
}

.ticket-photo,
.ticket-photo-fallback {
  align-self: stretch;
  min-height: 280px;
  height: 100%;
  background-color: #0c0c0c;
}

.ticket-photo {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.ticket-photo-fallback {
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.12em;
  color: var(--muted);
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 16px 16px;
}

.ticket-perf {
  background:
    linear-gradient(var(--line), var(--line)) center / 1px 100% no-repeat,
    repeating-linear-gradient(
      to bottom,
      transparent 0 10px,
      var(--bg) 10px 18px
    );
  border-left: 1px dashed #3a3a34;
  border-right: 1px dashed #3a3a34;
}

.ticket-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 18px 20px;
}

.ticket-kicker {
  display: flex;
  gap: 10px;
  margin-bottom: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--muted);
}

.ticket-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
}

.ticket-subtitle {
  margin-top: 6px;
  color: var(--acid);
  font-family: var(--font-display);
  font-size: clamp(16px, 2.2vw, 22px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ticket-description {
  margin-top: 12px;
  max-width: 54ch;
  color: var(--muted);
  line-height: 1.35;
}

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

.ticket-meta {
  margin-top: 14px;
  font-family: var(--font-mono);
  letter-spacing: 0.1em;
}

.ticket-time,
.ticket-location {
  margin-top: 6px;
}

.ticket-cta {
  display: none;
  margin-top: 16px;
  align-self: flex-start;
  pointer-events: none;
}

.ticket-time {
  font-family: var(--font-mono);
  letter-spacing: 0.1em;
  color: var(--ink);
}

.ticket-stub {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 16px 8px;
  background: repeating-linear-gradient(
    -45deg,
    #050505,
    #050505 6px,
    #1a0000 6px,
    #1a0000 12px
  );
  border-left: 1px solid var(--line);
}

.ticket-stub-label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--acid);
}

.ticket-barcode {
  display: block;
  width: 10px;
  height: 52px;
  background: repeating-linear-gradient(
    to right,
    var(--ink) 0 1px,
    transparent 1px 3px
  );
}

.event-modal {
  position: fixed;
  inset: 0;
  z-index: 110;
  width: 100%;
  height: 100dvh;
  max-height: 100dvh;
  overflow: hidden;
  background: #050505;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.34s ease;
}

.event-modal[hidden] {
  display: none;
}

.event-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal-close {
  position: absolute;
  top: env(safe-area-inset-top, 0);
  right: env(safe-area-inset-right, 0);
  z-index: 3;
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 18px;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: #050505;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  cursor: pointer;
  transition: color 0.2s ease;
}

.modal-close:focus,
.modal-close:focus-visible {
  outline: none;
  color: inherit;
}

@media (hover: hover) and (pointer: fine) {
  .modal-close:hover {
    color: var(--acid);
  }
}

.modal-close-x {
  display: none;
  position: relative;
  width: 16px;
  height: 16px;
}

.modal-close-x::before,
.modal-close-x::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 16px;
  height: 1px;
  background: currentColor;
}

.modal-close-x::before {
  transform: rotate(45deg);
}

.modal-close-x::after {
  transform: rotate(-45deg);
}

.modal-layout {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(0, 2fr);
  height: 100%;
  min-height: 0;
  overflow: hidden;
}

.modal-info {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
}

.modal-form {
  min-width: 0;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  background: var(--bg-2);
  border-right: 1px solid var(--line);
  -webkit-overflow-scrolling: touch;
}

.modal-info::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(5, 5, 5, 0.12) 0%,
    rgba(5, 5, 5, 0.08) 38%,
    rgba(5, 5, 5, 0.78) 72%,
    rgba(5, 5, 5, 0.94) 100%
  );
}

.modal-media {
  position: absolute;
  inset: 0;
  background: #0a0a0a;
}

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

.modal-media-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 64px;
  color: var(--muted);
  background:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px),
    #0c0c0c;
  background-size: 16px 16px, 16px 16px, auto;
}

.modal-media-fallback[hidden],
.modal-media img[hidden] {
  display: none;
}

.modal-copy {
  position: relative;
  z-index: 1;
  max-height: 58%;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: clamp(32px, 5vw, 64px);
}

.modal-copy .kicker {
  margin-bottom: 10px;
}

.modal-copy .event-title {
  max-width: min(11ch, 58%);
  font-size: var(--k1);
}

.modal-copy .event-note {
  margin-top: 14px;
  max-width: 46ch;
}

.modal-copy .event-meta {
  margin-top: 16px;
}

.modal-copy .event-time,
.modal-copy .event-location {
  margin-top: 6px;
}

.modal-form .hazard {
  flex-shrink: 0;
  height: 10px;
  margin: 0;
}

.modal-form .register-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 460px;
  min-height: 0;
  margin: 0 auto;
  padding: 56px 28px 28px;
  border: 0;
  background: transparent;
}

.modal-form .panel-title {
  font-size: var(--k2);
}

.modal-form .panel-lead {
  margin-bottom: 20px;
  font-size: var(--k3);
}

.modal-form .field input[type="text"],
.modal-form .field input[type="email"] {
  min-height: 48px;
}

.modal-form .preview-notice {
  margin-top: 16px;
}

.kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--muted);
}

.index {
  color: var(--acid);
}

.event-title {
  display: block;
  min-width: 0;
  font-family: var(--font-display);
  font-size: clamp(32px, 6.4vw, 84px);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

.event-title-line {
  display: block;
  min-width: 0;
  max-width: 100%;
  overflow-wrap: normal;
  word-break: normal;
}

.event-title-line.accent {
  color: var(--acid);
}

.event-meta {
  margin-top: 28px;
  font-family: var(--font-display);
  font-size: clamp(18px, 2.4vw, 28px);
  letter-spacing: 0.08em;
}

.event-time,
.event-location,
.event-note {
  max-width: 36ch;
  color: var(--muted);
}

.event-time {
  margin-top: 10px;
  font-family: var(--font-mono);
  letter-spacing: 0.12em;
  color: var(--ink);
}

.event-location {
  margin-top: 10px;
}

.event-note {
  margin-top: 22px;
}

.register-panel {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 22px 22px 18px;
}

.hazard {
  height: 8px;
  margin: -22px -22px 18px;
  background: repeating-linear-gradient(
    -45deg,
    #050505,
    #050505 8px,
    var(--acid) 8px,
    var(--acid) 16px
  );
}

.panel-title {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.12em;
}

.panel-lead {
  margin: 6px 0 20px;
  color: var(--muted);
  font-size: 14px;
}

.field-hint {
  margin: -2px 0 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.platform-pick {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 8px;
}

.field .platform-option {
  display: block;
  margin: 0;
}

.platform-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.platform-option span {
  display: grid;
  place-items: center;
  min-height: 40px;
  border: 1px solid var(--line);
  color: var(--muted);
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.platform-option input:checked + span {
  border-color: var(--acid);
  color: var(--ink);
}

.platform-option input:focus-visible + span {
  outline: 2px solid var(--acid);
  outline-offset: 3px;
}

.field {
  margin-bottom: 16px;
}

.field label {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.field input[type="text"],
.field input[type="email"] {
  width: 100%;
  min-height: 48px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #050505;
  color: var(--ink);
}

.field input:hover {
  border-color: #3a3a34;
}

.field input:focus {
  border-color: var(--acid);
}

.field.is-invalid input {
  border-color: var(--danger);
}

.field-error {
  margin-top: 6px;
  color: var(--danger);
  font-size: 13px;
}

.checks {
  border: 0;
  padding: 0;
  margin: 4px 0 18px;
}

.check {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  margin-bottom: 12px;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.4;
  cursor: pointer;
}

.check input {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--acid);
  border-radius: 0;
}

.btn-submit {
  width: 100%;
}

.preview-notice {
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.form-success {
  border: 1px solid var(--acid);
  background: var(--acid-dim);
  padding: 18px;
  margin-bottom: 8px;
}

.success-kicker,
.success-title {
  font-family: var(--font-mono);
  letter-spacing: 0.14em;
}

.success-kicker {
  color: var(--acid);
  font-size: 11px;
}

.success-title {
  margin: 8px 0 10px;
  font-size: 16px;
}

.success-body {
  color: var(--muted);
  font-size: 14px;
}

.about h1,
.press h1,
.legal h1,
.events h1,
.contact h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 7vw, 72px);
  line-height: 0.9;
  letter-spacing: -0.03em;
}

.events-spec {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  margin: 22px 0 0;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--muted);
}

.events-spec li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.events-spec-mark {
  color: var(--acid);
}

.events-lead {
  margin-top: 20px;
  color: var(--muted);
}

.contact .events-spec {
  margin-bottom: 40px;
}

.contact-list {
  display: grid;
  gap: 10px;
}

.contact-mail {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px 22px;
  border: 1px solid var(--line);
  background: rgba(10, 10, 10, 0.78);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.contact-mail:hover {
  border-color: var(--acid);
}

.contact-mail-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--acid);
}

.contact-mail-address {
  font-family: var(--font-mono);
  font-size: clamp(16px, 2.4vw, 22px);
  letter-spacing: 0.04em;
  overflow-wrap: anywhere;
}

.about-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: calc(100dvh - var(--header-h));
  overflow: hidden;
}

.about-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  height: 32%;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0) 0%, #050505 100%);
}

.about-hero-bg,
.about-hero-shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.about-hero-bg {
  background-color: #050505;
  background-image: url("assets/images/About_1.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.about-hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.62) 0%, rgba(5, 5, 5, 0.3) 50%, rgba(5, 5, 5, 0.5) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.16) 0%, rgba(5, 5, 5, 0.2) 60%, rgba(5, 5, 5, 0) 100%);
}

.about-frame {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: clamp(40px, 7vh, 80px);
}

.about-frame > .kicker {
  margin-bottom: 8px;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: 48px 56px;
  align-items: stretch;
}

.about-main {
  display: flex;
  flex-direction: column;
}

.about-main h1 {
  margin-bottom: 24px;
}

.about-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 20px;
  max-width: 58ch;
  margin-top: 0;
  font-size: 17px;
  line-height: 1.55;
}

.about-tagline {
  font-weight: 700;
}

.about-signoff {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--acid);
}

.linktree-panel {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 22px;
  border: 1px solid rgba(244, 244, 240, 0.14);
  background: rgba(5, 5, 5, 0.58);
}

.linktree-label {
  margin-bottom: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--acid);
}

.linktree {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
}

.linktree-item {
  display: grid;
  flex: 1;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  min-height: 64px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  background: rgba(10, 10, 10, 0.78);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.linktree-item:hover {
  border-color: var(--acid);
  color: var(--acid);
}

.linktree-icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.linktree-icon .icon-dot,
.linktree-icon .icon-fill {
  fill: currentColor;
  stroke: none;
}

.linktree-icon.icon-tiktok {
  background-color: currentColor;
  -webkit-mask: url("assets/icons/tiktoklogo.svg") center / 15px 17px no-repeat;
  mask: url("assets/icons/tiktoklogo.svg") center / 15px 17px no-repeat;
}

.linktree-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.linktree-name {
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.06em;
  line-height: 1;
}

.linktree-meta {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.about-feed-frame {
  padding-block: 56px 72px;
}

.about-feed {
  margin-top: 0;
}

.feed-kicker {
  margin-bottom: 12px;
}

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

.feed-card {
  min-width: 0;
}

.feed-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  border: 1px solid var(--line);
  background: #0c0c0c;
}

.feed-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-align: center;
  color: var(--muted);
  background:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px),
    #0c0c0c;
  background-size: 16px 16px, 16px 16px, auto;
}

.feed-fallback:hover {
  color: var(--acid);
}

.feed-frame iframe {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  border: 0;
  background: #0c0c0c;
}


.social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 28px;
  padding: 0;
  list-style: none;
}

.social-list a {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
}

.social-list a:hover {
  color: var(--acid);
  border-color: var(--acid);
}

.about-photos,
.press-photos {
  display: grid;
  gap: 12px;
  margin-top: 0;
}

.about-photos {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 720px;
}

.press-spec {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 28px;
  margin: 22px 0 40px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.press-spec .events-spec {
  flex: 1 1 auto;
  margin: 0;
  padding: 0;
  border: 0;
}

.press-spec-booking {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.press-spec-booking a {
  color: var(--ink);
}

.press-spec-booking a:hover {
  color: var(--acid);
}

.press-block {
  margin-top: 8px;
}

.press-block + .press-block {
  margin-top: 40px;
}

.press-block-kicker {
  margin-bottom: 14px;
}

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

.photo-slot {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.press-photo {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line);
  background: #0c0c0c;
}

.press-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.photo-placeholder {
  aspect-ratio: 3 / 4;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px),
    #0c0c0c;
  background-size: 16px 16px, 16px 16px, auto;
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.photo-slot figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 0;
  margin-top: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.press-photo-actions {
  display: flex;
  gap: 12px;
}

.press-photo-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
}

.photo-slot figcaption a {
  color: var(--muted);
}

.photo-slot figcaption a:hover {
  color: var(--acid);
}

.press-files {
  display: grid;
  gap: 10px;
}

.press-file {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  min-height: 72px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  background: rgba(10, 10, 10, 0.78);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.press-file:hover {
  border-color: var(--acid);
  color: var(--acid);
}

.press-file-index {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--acid);
}

.press-file-text {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 4px;
}

.press-file-name {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.02em;
  line-height: 1;
}

.press-file-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.press-file-meta a {
  color: inherit;
}

.press-file-meta a:hover {
  color: var(--acid);
}

.press-file:hover .press-file-meta {
  color: inherit;
}

.press-file-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 14px;
}

.press-file-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.press-file-actions a:hover {
  color: var(--acid);
}

.press-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.press-status {
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--acid);
}

.booking {
  margin-top: 36px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.booking a {
  color: var(--ink);
}

.booking a:hover {
  color: var(--acid);
}

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

  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .header-nav {
    display: none;
  }
}

@media (max-width: 860px) {
  .ticket {
    grid-template-columns: 148px 12px minmax(0, 1fr);
    min-height: 220px;
  }

  .ticket-photo,
  .ticket-photo-fallback {
    min-height: 220px;
  }

  .ticket-stub {
    display: none;
  }

  .ticket-cta {
    display: inline-flex;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .press-photos,
  .about-photos {
    grid-template-columns: 1fr;
  }

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

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

  .modal-layout {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
  }

  .modal-info {
    display: none;
  }

  .modal-form {
    border-right: 0;
    border-top: 0;
  }

  .modal-form .hazard {
    display: none;
  }

  .modal-form .register-panel {
    padding: 64px var(--frame) 28px;
    max-width: none;
  }

  .modal-close {
    width: 48px;
    height: 48px;
    min-height: 48px;
    padding: 0;
    justify-content: center;
    border: 0;
    background: transparent;
  }

  .modal-close-label {
    display: none;
  }

  .modal-close-x {
    display: block;
  }
}

@media (max-width: 520px) {
  .ticket {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .ticket-perf {
    display: none;
  }

  .ticket-photo,
  .ticket-photo-fallback {
    min-height: 180px;
  }

  .ticket-body {
    padding: 16px;
  }

  .ticket-cta {
    width: 100%;
  }

  .ticket-title,
  .ticket-subtitle {
    overflow-wrap: normal;
    word-break: normal;
  }

  .ticket-description {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .wordmark {
    font-size: 16px;
  }

  .header-bar {
    width: calc(100% - 24px);
  }

  .drawer-panel {
    width: min(400px, 100vw);
    padding-left: 20px;
    padding-right: max(16px, env(safe-area-inset-right));
  }

  .modal-form .register-panel {
    padding: 64px 16px 24px;
  }

  .modal-close {
    min-height: 48px;
  }

  .cookie-bar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px 12px;
    padding: 10px 16px max(10px, env(safe-area-inset-bottom));
  }

  .cookie-bar-title {
    margin-bottom: 4px;
  }

  .cookie-bar-full {
    display: none;
  }

  .cookie-bar-compact {
    display: inline;
  }

  .cookie-bar-text {
    font-size: 11px;
    line-height: 1.35;
  }

  .cookie-bar-actions,
  .cookie-bar .btn {
    width: auto;
    min-width: 64px;
  }
}

@media (max-width: 700px) {
  .cover-bg {
    background-image: url("assets/images/Hero_mobile_1.jpg");
  }

  .cover-brand {
    justify-content: flex-start;
    padding-top: 40vh;
    gap: 14px;
  }

  .cover-logo {
    font-size: clamp(32px, 13vw, 64px);
    letter-spacing: 0;
  }

  .cover-nav {
    flex-direction: column;
    gap: 0;
  }

  .feed-rail {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: var(--frame);
    margin-inline: calc(-1 * var(--frame));
    padding-inline: var(--frame);
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
  }

  .feed-card {
    flex: 0 0 min(72vw, 280px);
    scroll-snap-align: start;
  }

  .feed-card:last-child:nth-child(odd) {
    grid-column: auto;
    justify-self: auto;
    width: auto;
  }

  .about-feed-frame {
    padding-block: 48px 64px;
  }

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

  .contact-mail {
    min-height: 88px;
  }

  .press-file {
    grid-template-columns: 28px minmax(0, 1fr);
    align-items: start;
    align-content: start;
    min-height: 0;
    gap: 6px 12px;
    padding: 20px 16px 14px;
  }

  .press-file-actions {
    grid-column: 2;
    justify-content: flex-start;
  }

  .press-file-actions a {
    min-height: 32px;
    align-items: center;
  }

  .press-file-name {
    font-size: 16px;
  }

  .about-hero {
    min-height: 0;
  }

  .about-frame {
    padding-block: 56px 40px;
  }

  .about-copy {
    font-size: 15px;
    gap: 14px;
  }

  .about-main h1,
  .press h1,
  .legal h1,
  .events h1,
  .contact h1 {
    font-size: clamp(28px, 11vw, 40px);
  }
}

@media (max-width: 420px) {
  .press-actions .btn {
    width: 100%;
  }

  .cover {
    padding-top: max(16px, env(safe-area-inset-top));
    padding-right: max(16px, env(safe-area-inset-right));
    padding-left: max(16px, env(safe-area-inset-left));
  }

  .cover-nav a {
    letter-spacing: 0.14em;
  }

  .section-frame,
  .about-feed-frame,
  .footer-inner {
    width: min(var(--max), calc(100% - 32px));
  }

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

  .footer-bottom {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .footer-bottom > p:last-child {
    text-align: left;
    justify-self: start;
  }
}

@media (max-height: 700px) and (max-width: 700px) {
  .cover-logo {
    font-size: clamp(28px, 11vh, 52px);
  }

  .cover-brand {
    padding-top: 22vh;
    gap: 12px;
  }

  .about-hero {
    min-height: 0;
  }
}

@media (max-height: 620px) and (max-width: 400px) {
  .cover-brand {
    padding-top: 16vh;
    gap: 8px;
  }

  .cover-logo {
    font-size: clamp(24px, 10vh, 40px);
  }

  .cover-nav a {
    min-height: 36px;
  }
}

/* Short landscape phones: row nav, compact cookie, desktop hero crop */
@media (max-height: 500px) and (max-width: 980px) {
  .cover-bg {
    background-image: url("assets/images/Hero_1.jpg");
  }

  .cover-brand {
    justify-content: center;
    padding-top: 0;
    gap: 8px;
  }

  .cover-logo {
    font-size: clamp(24px, 9vh, 48px);
  }

  .cover-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0 clamp(16px, 3vw, 28px);
  }

  .cover-nav a {
    min-height: 36px;
  }

  .cookie-bar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px 12px;
    padding: 8px 16px max(8px, env(safe-area-inset-bottom));
  }

  .cookie-bar-title {
    margin-bottom: 2px;
  }

  .cookie-bar-full {
    display: none;
  }

  .cookie-bar-compact {
    display: inline;
  }

  .cookie-bar-text {
    font-size: 11px;
    line-height: 1.35;
  }

  .cookie-bar-actions,
  .cookie-bar .btn {
    width: auto;
    min-width: 64px;
  }
}

@media (pointer: coarse) and (min-height: 700px) {
  .drawer-nav a {
    min-height: 44px;
  }
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cover-zoom {
  from {
    opacity: 0;
    transform: scale(1.08);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slide-in-left {
  from {
    opacity: 0;
    transform: translateX(-28px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes cookie-in {
  from {
    opacity: 0;
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cookie-out {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(100%);
  }
}

.cover-bg {
  animation: cover-zoom 1.15s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.cover-shade {
  animation: fade-in 0.9s 0.08s ease both;
}

.cover-logo span:first-child {
  animation: fade-up 0.7s 0.18s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.cover-logo span:last-child {
  animation: fade-up 0.7s 0.28s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.cover-nav {
  animation: fade-up 0.65s 0.42s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

body.inner .site-header {
  animation: fade-in 0.4s ease backwards;
}

body.inner .section-frame {
  animation: fade-up 0.7s 0.08s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

body.inner .site-footer {
  animation: fade-in 0.55s 0.22s ease backwards;
}

.header-nav.is-open {
  animation: fade-up 0.32s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

.ticket {
  animation: fade-up 0.55s var(--ticket-delay, 0ms) cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

.event-modal.is-open .modal-form {
  animation: slide-in-left 0.48s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.event-modal.is-open .modal-info {
  animation: fade-in 0.5s 0.08s ease both;
}

.event-modal.is-open .modal-close {
  animation: fade-in 0.35s 0.18s ease both;
}

.form-success:not([hidden]) {
  animation: rise-in 0.4s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .cover-nav a:hover,
  .ticket:hover {
    transform: none;
  }
}
