:root {
  --bg: #f4eee4;
  --paper: #fff8ee;
  --ink: #221f1a;
  --muted: #6e6255;
  --charcoal: #1c1b17;
  --smoke: #38392f;
  --smoke-2: #2d2d26;
  --cream: #e9d9bc;
  --accent: #d87824;
  --accent-2: #ff9d3d;
  --line: rgba(34, 31, 26, 0.12);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  --radius: 22px;
  --radius-sm: 14px;
  --max: 1180px;
  --header-h: 92px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(216, 120, 36, 0.12), transparent 34rem),
    linear-gradient(180deg, #fff8ee 0%, #f4eee4 44%, #efe3d0 100%);
  min-height: 100vh;
  text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }

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

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

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 10000;
  padding: 10px 14px;
  color: #fff;
  background: #111;
  border-radius: 999px;
  transform: translateY(-140%);
  transition: transform 0.18s ease;
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: var(--header-h);
  background: rgba(28, 27, 23, 0.9);
  color: var(--cream);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(233, 217, 188, 0.14);
}

.nav-wrap {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 230px;
}

.brand-logo {
  width: 76px;
  height: 48px;
  object-fit: contain;
  border-radius: 8px;
  background: var(--smoke);
}

.brand-text {
  display: grid;
  line-height: 1;
}

.brand-title {
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-subtitle {
  margin-top: 5px;
  color: rgba(233, 217, 188, 0.75);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  flex: 1;
}

.site-header a[href="/datenschutzerklarung/"],
.site-header a[href="/impressum/"] {
  display: none !important;
}

.nav-link,
.nav-parent {
  border: 0;
  background: transparent;
  color: rgba(255, 248, 238, 0.92);
  padding: 12px 13px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 720;
  font-size: 0.94rem;
  letter-spacing: 0.015em;
  transition: color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.nav-link:hover,
.nav-link.is-active,
.nav-parent:hover,
.nav-group:focus-within .nav-parent {
  color: #fff;
  background: rgba(216, 120, 36, 0.22);
}

.nav-link:active,
.nav-parent:active { transform: translateY(1px); }

.nav-group {
  position: relative;
}

.nav-parent::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.submenu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 230px;
  padding: 10px;
  background: rgba(28, 27, 23, 0.96);
  border: 1px solid rgba(233, 217, 188, 0.12);
  border-radius: 16px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.nav-group:hover .submenu,
.nav-group:focus-within .submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.submenu a {
  display: block;
  padding: 11px 12px;
  border-radius: 12px;
  color: rgba(255, 248, 238, 0.9);
}

.submenu a:hover,
.submenu a.is-active {
  color: #fff;
  background: rgba(216, 120, 36, 0.2);
}

.nav-cta {
  margin-left: 8px;
  color: #201914;
  background: var(--accent-2);
  box-shadow: 0 12px 28px rgba(216, 120, 36, 0.24);
}

.nav-cta:hover,
.nav-cta.is-active { color: #201914; background: #ffb165; }

.mobile-toggle {
  display: none;
  margin-left: auto;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(233, 217, 188, 0.2);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--cream);
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 23px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  border-radius: 999px;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

body.menu-open .mobile-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .mobile-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .mobile-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

main { min-height: 70vh; }

.section {
  padding: clamp(56px, 7vw, 94px) 0;
}

.section.compact { padding: clamp(36px, 5vw, 62px) 0; }

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.container.narrow { width: min(860px, calc(100% - 32px)); }

.hero {
  position: relative;
  min-height: clamp(660px, 85vh, 880px);
  display: grid;
  align-items: center;
  color: #fff8ee;
  overflow: hidden;
  background-color: var(--charcoal);
  isolation: isolate;
}

.hero.small {
  min-height: 440px;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero::before {
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
  filter: saturate(1.08) contrast(1.02);
}

.hero::after {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(19, 17, 14, 0.9), rgba(19, 17, 14, 0.56) 48%, rgba(19, 17, 14, 0.78)),
    radial-gradient(circle at 72% 34%, rgba(216, 120, 36, 0.2), transparent 28rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.55fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
}

.hero-content {
  max-width: 820px;
  padding: 72px 0;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent-2);
  font-weight: 900;
  font-size: 0.84rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1,
.page-title {
  margin: 0;
  font-size: clamp(3.1rem, 8vw, 7.6rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero.small h1,
.page-title.small {
  font-size: clamp(2.6rem, 6vw, 5.8rem);
}

.hero-lead,
.lead {
  margin: 24px 0 0;
  max-width: 760px;
  color: rgba(255, 248, 238, 0.88);
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  line-height: 1.62;
}

.lead.dark { color: var(--muted); }

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #1c150d;
  background: var(--accent-2);
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 1;
  box-shadow: 0 18px 36px rgba(216, 120, 36, 0.23);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: #ffb368;
  box-shadow: 0 22px 42px rgba(216, 120, 36, 0.3);
}

.btn.secondary {
  color: var(--cream);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(233, 217, 188, 0.28);
  box-shadow: none;
}

.btn.secondary:hover { background: rgba(255, 255, 255, 0.14); }

.btn.dark {
  color: #fff8ee;
  background: var(--charcoal);
  box-shadow: 0 14px 30px rgba(28, 27, 23, 0.18);
}

.btn.dark:hover { background: #2a2822; }

.btn.text {
  padding-inline: 0;
  color: var(--accent);
  background: transparent;
  box-shadow: none;
  border: 0;
}

.quick-card {
  width: min(100%, 420px);
  margin-left: auto;
  padding: 26px;
  border: 1px solid rgba(233, 217, 188, 0.16);
  border-radius: var(--radius);
  background: rgba(28, 27, 23, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.quick-logo {
  width: 150px;
  margin: 0 0 18px;
  border-radius: 10px;
}

.quick-card h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 1.45rem;
}

.quick-list {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.quick-list li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 12px;
  border-top: 1px solid rgba(233, 217, 188, 0.14);
  color: rgba(255, 248, 238, 0.84);
}

.quick-list strong {
  color: #fff8ee;
}

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

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

.info-card,
.feature-card {
  position: relative;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 248, 238, 0.78);
  box-shadow: 0 20px 50px rgba(45, 36, 24, 0.08);
  overflow: hidden;
}

.info-card.dark,
.feature-card.dark {
  color: #fff8ee;
  background: linear-gradient(145deg, var(--smoke), var(--smoke-2));
  border-color: rgba(233, 217, 188, 0.12);
}

.info-card::before,
.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.info-card h3,
.feature-card h3 {
  margin: 0 0 12px;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.info-card p,
.feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.info-card.dark p,
.feature-card.dark p { color: rgba(255, 248, 238, 0.78); }

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.split.reverse { grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); }

.section-title {
  margin: 0;
  font-size: clamp(2.3rem, 5vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-transform: uppercase;
  text-wrap: balance;
}

.section-kicker {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.copy {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.85;
}

.copy p { margin: 0 0 18px; }
.copy p:last-child { margin-bottom: 0; }

.photo-card {
  position: relative;
  min-height: 420px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--smoke);
}

.photo-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.photo-card:hover img { transform: scale(1.03); }

.photo-card .caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 14px 16px;
  border-radius: 16px;
  color: #fff8ee;
  background: rgba(28, 27, 23, 0.76);
  backdrop-filter: blur(10px);
}

.band {
  color: #fff8ee;
  background:
    radial-gradient(circle at 20% 0%, rgba(216, 120, 36, 0.16), transparent 28rem),
    linear-gradient(145deg, #1c1b17, #38392f);
}

.band .section-title,
.band .copy { color: #fff8ee; }
.band .copy { color: rgba(255, 248, 238, 0.78); }

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

.gallery figure {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #ddd;
  box-shadow: 0 14px 36px rgba(45, 36, 24, 0.12);
}

.gallery img {
  width: 100%;
  aspect-ratio: 1 / 0.95;
  object-fit: cover;
  transition: transform 0.32s ease;
}

.gallery figure:hover img { transform: scale(1.05); }

.gallery figcaption {
  padding: 10px 12px;
  background: var(--paper);
  color: var(--muted);
  font-size: 0.9rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.menu-card {
  padding: 0;
  margin: 0;
  border: 1px solid rgba(34, 31, 26, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
  background: #34352d;
  box-shadow: 0 18px 46px rgba(45, 36, 24, 0.16);
}

.menu-card button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.menu-card img {
  width: 100%;
  aspect-ratio: 645 / 909;
  object-fit: cover;
}

.menu-card figcaption {
  padding: 14px 16px;
  color: #fff8ee;
  background: #2b2c25;
  font-weight: 800;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.hours-table th,
.hours-table td {
  padding: 15px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.hours-table th {
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hours-table td:last-child {
  font-weight: 850;
}

.map-card {
  position: relative;
  min-height: 390px;
  display: grid;
  place-items: center;
  padding: 28px;
  border-radius: var(--radius);
  overflow: hidden;
  color: #fff8ee;
  background:
    linear-gradient(145deg, rgba(28, 27, 23, 0.68), rgba(28, 27, 23, 0.86)),
    var(--hero-image) center / cover;
  box-shadow: var(--shadow);
}

.map-card-inner {
  width: min(420px, 100%);
  padding: 24px;
  border: 1px solid rgba(233, 217, 188, 0.18);
  border-radius: 20px;
  background: rgba(28, 27, 23, 0.76);
  backdrop-filter: blur(10px);
}

.map-card-inner h3 { margin: 0 0 12px; }
.map-card-inner p { color: rgba(255, 248, 238, 0.78); line-height: 1.7; }

.form-card {
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 248, 238, 0.86);
  box-shadow: 0 22px 58px rgba(45, 36, 24, 0.12);
}

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

.form-row.full { grid-column: 1 / -1; }

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 850;
  font-size: 0.94rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(34, 31, 26, 0.18);
  border-radius: 14px;
  padding: 13px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

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

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(216, 120, 36, 0.62);
  box-shadow: 0 0 0 4px rgba(216, 120, 36, 0.12);
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.55;
}

.checkbox-row input {
  width: 19px;
  min-width: 19px;
  height: 19px;
  margin-top: 2px;
}

.form-status {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 14px;
  display: none;
  line-height: 1.6;
}

.form-status.is-visible { display: block; }
.form-status.success { color: #174a28; background: rgba(57, 154, 85, 0.14); }
.form-status.error { color: #73211d; background: rgba(193, 66, 50, 0.14); }

.legal-page {
  padding: clamp(52px, 7vw, 90px) 0;
}

.legal-box {
  padding: clamp(24px, 4vw, 46px);
  border-radius: var(--radius);
  background: rgba(255, 248, 238, 0.92);
  box-shadow: 0 24px 60px rgba(45, 36, 24, 0.11);
}

.legal-box h1 {
  margin: 0 0 22px;
  font-size: clamp(2.3rem, 6vw, 4.5rem);
  letter-spacing: -0.055em;
  line-height: 1;
}

.legal-box h2 {
  margin: 32px 0 12px;
  font-size: 1.24rem;
}

.legal-box p,
.legal-box li {
  color: var(--muted);
  line-height: 1.75;
}

.legal-box ul { padding-left: 1.1rem; }

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--accent);
  background: rgba(216, 120, 36, 0.1);
  font-weight: 900;
  font-size: 0.84rem;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: grid;
  place-items: center;
  padding: 26px;
  background: rgba(0, 0, 0, 0.82);
}

.modal-content {
  position: relative;
  width: min(920px, 100%);
  max-height: 92vh;
  overflow: auto;
  border-radius: 18px;
  background: var(--smoke);
}

.modal-content img {
  width: 100%;
  height: auto;
}

.modal-close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  color: #fff;
  background: rgba(0, 0, 0, 0.55);
  cursor: pointer;
  font-size: 1.6rem;
}

.site-footer {
  color: rgba(255, 248, 238, 0.78);
  background: #161511;
  border-top: 1px solid rgba(233, 217, 188, 0.12);
}

.footer-wrap {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 44px 0;
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 32px;
}

.footer-brand img {
  width: 150px;
  margin-bottom: 16px;
  border-radius: 10px;
}

.footer-brand strong {
  display: block;
  color: #fff8ee;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.footer-title {
  margin: 0 0 13px;
  color: #fff8ee;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links a:hover { color: #fff; }

.footer-bottom {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 26px;
  border-top: 1px solid rgba(233, 217, 188, 0.1);
  color: rgba(255, 248, 238, 0.54);
  font-size: 0.9rem;
}

.notice {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 14px;
  color: var(--muted);
  background: rgba(216, 120, 36, 0.1);
  line-height: 1.65;
}

.event-hero {
  color: #fff8ee;
  background:
    repeating-linear-gradient(135deg, rgba(0, 255, 210, 0.03) 0 1px, transparent 1px 9px),
    linear-gradient(120deg, #150015, #010403 58%, #001915);
}

.event-hero::before {
  opacity: 0.34;
  filter: saturate(1.45) contrast(1.18);
}

.event-hero::after {
  background:
    linear-gradient(90deg, rgba(7, 2, 10, 0.94), rgba(8, 4, 12, 0.72) 48%, rgba(0, 13, 10, 0.88)),
    radial-gradient(circle at 72% 20%, rgba(0, 255, 210, 0.18), transparent 26rem),
    radial-gradient(circle at 18% 80%, rgba(255, 0, 188, 0.16), transparent 24rem);
}

.event-logo {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid #ffd84e;
  border-radius: 10px;
  color: #ffd84e;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 216, 78, 0.09), transparent 42%),
    #060606;
  box-shadow:
    0 0 0 1px rgba(0, 255, 210, 0.55),
    0 0 24px rgba(255, 216, 78, 0.26),
    inset 0 0 18px rgba(255, 216, 78, 0.1);
}

.event-logo-kicker,
.event-logo small {
  color: #fff8ee;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.event-logo strong {
  color: #ffe66d;
  font-size: clamp(1.85rem, 4vw, 3.15rem);
  line-height: 0.95;
  text-shadow: 0 0 10px rgba(255, 216, 78, 0.72), 0 0 28px rgba(255, 156, 48, 0.36);
}

.event-logo strong span {
  color: #fff8b8;
}

.event-app-card,
.event-rank-card {
  width: min(100%, 430px);
  margin-left: auto;
  padding: 16px;
  border: 1px solid #ffd84e;
  border-radius: 10px;
  color: #fff8ee;
  background:
    linear-gradient(135deg, rgba(255, 0, 188, 0.12), transparent 24%),
    linear-gradient(315deg, rgba(0, 255, 210, 0.14), transparent 24%),
    #030404;
  box-shadow:
    0 0 0 1px rgba(255, 0, 188, 0.58),
    0 28px 70px rgba(0, 0, 0, 0.42);
}

.event-preview {
  margin-top: 14px;
  padding: 16px;
  border: 1px solid #00ffd2;
  border-radius: 8px;
  text-align: center;
  background: #00110e;
}

.event-preview.small {
  border-color: #ff41d6;
  text-align: left;
}

.event-preview p,
.event-preview span {
  margin: 0;
  color: #00ffd2;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.event-preview strong {
  display: block;
  margin: 6px 0;
  color: #ffd84e;
  font-size: clamp(1.35rem, 4vw, 3rem);
  line-height: 1;
  text-shadow: 0 0 12px rgba(255, 216, 78, 0.58);
}

.event-band,
.event-section {
  color: #fff8ee;
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 10px),
    linear-gradient(120deg, #090006, #040605 52%, #001714);
}

.event-card {
  border-color: rgba(0, 255, 210, 0.42);
  background:
    linear-gradient(145deg, rgba(0, 255, 210, 0.12), rgba(255, 0, 188, 0.1)),
    #050505;
  box-shadow: 0 0 0 1px rgba(255, 216, 78, 0.22), 0 20px 50px rgba(0, 0, 0, 0.32);
}

.event-card::before {
  background: linear-gradient(90deg, #00ffd2, #ffd84e, #ff41d6);
}

.event-poster-card {
  background: #030404;
  box-shadow: 0 0 0 1px rgba(0, 255, 210, 0.5), var(--shadow);
}

.event-rank-card h3 {
  margin: 0 0 16px;
  color: #fff176;
  text-align: center;
  text-shadow: 0 0 10px rgba(255, 216, 78, 0.5);
}

.event-rank-card ol {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.event-rank-card li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 216, 78, 0.48);
  border-radius: 8px;
  color: #fff8ee;
  background: rgba(0, 0, 0, 0.42);
}

.event-rank-card strong {
  color: #00ffd2;
}

@media (max-width: 1080px) {
  .main-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    display: none;
    max-height: calc(100vh - var(--header-h));
    overflow: auto;
    padding: 18px 16px 26px;
    background: rgba(28, 27, 23, 0.98);
    border-bottom: 1px solid rgba(233, 217, 188, 0.14);
  }

  body.menu-open .main-nav { display: grid; }

  .nav-link,
  .nav-parent {
    width: 100%;
    display: flex;
    justify-content: space-between;
    border-radius: 14px;
    text-align: left;
  }

  .nav-group { width: 100%; }
  .submenu {
    position: static;
    width: 100%;
    margin: 4px 0 10px 12px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.04);
  }

  .mobile-toggle { display: block; }
  .brand { min-width: 0; }
  .hero-grid,
  .split,
  .split.reverse { grid-template-columns: 1fr; }
  .quick-card { margin-left: 0; }
  .event-app-card,
  .event-rank-card { margin-left: 0; }
  .card-grid,
  .card-grid.two { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .menu-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-wrap { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  :root { --header-h: 82px; }
  .nav-wrap { width: min(100% - 22px, var(--max)); gap: 12px; }
  .brand-logo { width: 60px; height: 38px; }
  .brand-subtitle { display: none; }
  .hero { min-height: 760px; }
  .hero-content { padding: 54px 0 24px; }
  .hero h1,
  .page-title { font-size: clamp(2.65rem, 14vw, 4.6rem); }
  .hero-actions,
  .actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .quick-card { padding: 20px; }
  .quick-list li { display: grid; gap: 5px; }
  .section { padding: 54px 0; }
  .photo-card { min-height: 310px; }
  .gallery { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .hours-table th:nth-child(3),
  .hours-table td:nth-child(3) { display: none; }
}
