:root {
  --bg: #f4f5f8;
  --bg-2: #eceff3;
  --surface: #ffffff;
  --surface-soft: #f8f9fb;
  --line: rgba(22, 28, 45, 0.08);
  --text: #182033;
  --muted: rgba(24, 32, 51, 0.70);
  --red: #dc052d;
  --red-2: #a30223;
  --red-3: #7f011a;
  --gold: #c89b2d;
  --shadow: 0 18px 44px rgba(15, 23, 42, 0.10);
  --shadow-soft: 0 10px 28px rgba(15, 23, 42, 0.08);
  --shadow-card: 0 22px 56px rgba(15, 23, 42, 0.10);
  --shadow-card-hover: 0 28px 66px rgba(15, 23, 42, 0.14);
  --radius: 28px;
  --radius-sm: 22px;
  --header-h: 92px;
  --maxw: 1240px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(220, 5, 45, 0.04), transparent 32%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
[hidden] { display: none !important; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(22, 28, 45, 0.08);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  min-width: 0;
}

.brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(15, 23, 42, 0.12));
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-size: 1rem;
  line-height: 1.1;
  color: var(--text);
}

.brand-copy span {
  font-size: 0.82rem;
  color: var(--muted);
}

.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav a {
  position: relative;
  text-decoration: none;
  color: rgba(24, 32, 51, 0.76);
  font-weight: 700;
  transition: color .2s ease, transform .2s ease;
}

.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .22s ease;
}

.nav a:hover {
  color: var(--red);
  transform: translateY(-1px);
}

.nav a:hover::after {
  transform: scaleX(1);
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: .02em;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease, color .22s ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--red-2));
  box-shadow: 0 16px 34px rgba(220, 5, 45, 0.24);
}

.btn-primary:hover {
  box-shadow: 0 22px 40px rgba(220, 5, 45, 0.30);
}

.btn-secondary {
  color: #fff;
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.22);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.32);
}

.full { width: 100%; }

.header-cta { flex: 0 0 auto; }

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(22, 28, 45, 0.10);
  background: rgba(255,255,255,0.84);
  color: var(--text);
  font-size: 1.25rem;
  box-shadow: var(--shadow-soft);
}

.mobile-nav {
  display: none;
  padding: 0 16px 16px;
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid rgba(22, 28, 45, 0.08);
}

.mobile-nav a {
  display: block;
  padding: 12px 4px;
  text-decoration: none;
  color: var(--text);
  border-bottom: 1px solid rgba(22, 28, 45, 0.08);
}

.mobile-nav a:last-child { border-bottom: 0; }

.hero-shell {
  position: relative;
  isolation: isolate;
  min-height: 760px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 20%, rgba(255,255,255,0.07), transparent 30%),
    linear-gradient(180deg, #30050d 0%, #22050a 100%);
}

.hero-shell::before {
  content: '';
  position: absolute;
  inset: auto -10% -140px -10%;
  height: 240px;
  background: radial-gradient(circle, rgba(220, 5, 45, 0.18), transparent 66%);
  filter: blur(18px);
  z-index: -1;
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  inset: -24px;
  background: url('stadion.jpg') center center / cover no-repeat;
  transform: scale(1.08);
  transform-origin: center center;
  will-change: transform;
  z-index: -3;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(39, 0, 8, 0.44) 0%, rgba(89, 0, 18, 0.46) 18%, rgba(160, 0, 31, 0.24) 44%, rgba(20, 5, 8, 0.52) 100%),
    radial-gradient(circle at 50% 24%, rgba(255,255,255,0.08), transparent 28%);
  z-index: -2;
}

.hero-layout {
  min-height: 760px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 0 96px;
}

.hero-content {
  width: 100%;
  max-width: 920px;
  text-align: center;
  color: #fff;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(8px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.14);
}

.hero-title {
  margin: 22px 0 0;
  font-size: clamp(3.4rem, 9vw, 6.6rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  color: #fff;
  text-shadow: 0 16px 38px rgba(0,0,0,0.26);
}

.hero-subtitle {
  margin: 16px 0 0;
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  font-weight: 800;
  color: rgba(255,255,255,0.98);
  text-shadow: 0 10px 24px rgba(0,0,0,0.24);
}

.hero-logo-wrap {
  width: min(220px, 44vw);
  margin: 28px auto 0;
}

.hero-logo {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 18px 36px rgba(0,0,0,0.24));
}

.hero-text {
  max-width: 760px;
  margin: 24px auto 0;
  font-size: 1.12rem;
  font-weight: 500;
  color: rgba(255,255,255,0.94);
  text-shadow: 0 8px 20px rgba(0,0,0,0.22);
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-secondary {
  background: rgba(255,255,255,0.14);
}

.quicknav-section {
  position: relative;
  margin-top: -42px;
  z-index: 5;
}

.quicknav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(22, 28, 45, 0.08);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
}

.quicknav-item {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  color: var(--red-2);
  border-right: 1px solid rgba(22, 28, 45, 0.08);
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.quicknav-item:last-child {
  border-right: 0;
}

.quicknav-item:hover {
  background: rgba(220, 5, 45, 0.05);
  color: var(--red);
  transform: translateY(-1px);
}

.quicknav-icon {
  font-size: 1.35rem;
  line-height: 1;
}

.quicknav-label {
  font-size: 1.02rem;
}

.home-main {
  position: relative;
  padding: 44px 0 28px;
}

.home-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  align-items: start;
}

.home-panel,
.membership-form-panel,
.fact-card,
.cta-strip {
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,255,255,0.94));
  border: 1px solid rgba(22, 28, 45, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.home-panel {
  position: relative;
  overflow: hidden;
  padding: 28px 24px 24px;
}

.home-panel::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--red-2));
  opacity: 0.92;
}

.home-panel-gallery {
  align-self: start;
}

.panel-head {
  margin-bottom: 18px;
}

.panel-head h2 {
  margin: 0 0 8px;
  font-size: clamp(1.9rem, 3vw, 2.45rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: #111827;
}

.panel-head p {
  margin: 0;
  color: var(--muted);
}

.cta-strip {
  margin-top: 30px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(220, 5, 45, 0.96), rgba(163, 2, 35, 0.96));
  color: #fff;
  border-color: rgba(220, 5, 45, 0.22);
}

.cta-strip-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 32px;
}

.cta-strip-content h2 {
  margin: 0 0 8px;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.cta-strip-content p {
  margin: 0;
  color: rgba(255,255,255,0.90);
}

.facts-grid-section {
  padding-top: 28px;
}

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

.fact-card {
  padding: 26px 22px;
  text-align: center;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.fact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: rgba(220, 5, 45, 0.14);
}

.fact-icon {
  font-size: 2rem;
  line-height: 1;
}

.fact-card h3 {
  margin: 16px 0 10px;
  font-size: 1.55rem;
  line-height: 1.1;
  color: var(--red-2);
}

.fact-card p {
  margin: 0;
  color: var(--muted);
}

.membership-section {
  padding-top: 34px;
}

.membership-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 30px;
  align-items: start;
}

.membership-copy {
  padding: 12px 4px 0;
}

.membership-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.03;
  letter-spacing: -0.04em;
  color: #111827;
}

.membership-copy p {
  margin: 0 0 16px;
  color: var(--muted);
}

.membership-form-panel {
  padding: 32px;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-weight: 700;
  color: var(--text);
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(22, 28, 45, 0.12);
  background: rgba(255,255,255,0.88);
  color: var(--text);
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  outline: none;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(24,32,51,0.46);
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(220, 5, 45, 0.42);
  background: rgba(255,255,255,1);
  box-shadow: 0 0 0 4px rgba(220, 5, 45, 0.10);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 14px;
}

.feature-list li {
  position: relative;
  padding-left: 22px;
  font-weight: 600;
  color: var(--text);
}

.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .56em;
  width: 10px;
  height: 10px;
  border-radius: 3px;
}

.feature-list.red li::before { background: var(--red); }
.feature-list.gold li::before { background: var(--gold); }
.feature-list.compact { gap: 14px; }

.form-note {
  margin: -4px 0 0;
  font-size: .93rem;
  color: var(--muted);
}

.form-note a {
  color: var(--red);
  font-weight: 700;
}

.form-result {
  margin: 0 0 1rem;
  padding: .9rem 1rem;
  border-radius: 14px;
  font-weight: 600;
  font-size: .95rem;
  line-height: 1.45;
  border: 1px solid rgba(22,28,45,.10);
}

.form-result.ok {
  background: rgba(24,123,72,.12);
  border-color: rgba(68,194,121,.26);
  color: #14532d;
}

.form-result.err {
  background: rgba(173,29,46,.10);
  border-color: rgba(255,90,112,.24);
  color: #8a1023;
}

.form-result[hidden] { display: none !important; }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  align-items: stretch;
}

.content-card,
.gallery-entry {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(248,249,251,0.98));
  border: 1px solid rgba(22, 28, 45, 0.08);
  border-radius: var(--radius-sm);
  padding: 22px;
  box-shadow: var(--shadow-soft);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.content-card::before,
.gallery-entry::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(220, 5, 45, 0.95), rgba(200, 155, 45, 0.85));
  opacity: 0;
  transition: opacity .24s ease;
}

.content-card:hover,
.gallery-entry:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(220, 5, 45, 0.14);
}

.content-card:hover::before,
.gallery-entry:hover::before {
  opacity: 1;
}

.content-card h3,
.gallery-entry h3 {
  margin: 0 0 12px;
  color: #111827;
  font-size: 1.22rem;
  line-height: 1.2;
}

.content-card p,
.gallery-entry p {
  margin: 0;
  line-height: 1.68;
  color: var(--muted);
  white-space: pre-line;
}

.card-meta {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 14px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .02em;
  color: var(--red);
  background: rgba(220, 5, 45, 0.08);
  border: 1px solid rgba(220, 5, 45, 0.10);
}

.event-list {
  display: grid;
  gap: 14px;
}

.event-item {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr) 90px;
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
  border-radius: 20px;
  background: var(--surface-soft);
  border: 1px solid rgba(22, 28, 45, 0.08);
}

.event-item.next {
  border-color: rgba(200, 155, 45, 0.34);
  box-shadow: inset 0 0 0 1px rgba(200, 155, 45, 0.14);
}

.event-date {
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--red);
}

.event-copy h3 {
  margin: 0 0 6px;
  font-size: 1.08rem;
  color: #111827;
}

.event-copy p,
.event-meta {
  margin: 0;
}

.event-meta {
  text-align: right;
  font-weight: 700;
  color: var(--text);
}

.gallery-list {
  display: grid;
  gap: 16px;
  align-items: start;
}

.gallery-entry {
  padding: 24px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 150px));
  gap: 12px;
  margin-top: 18px;
  justify-content: start;
}

.gallery-image {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(22, 28, 45, 0.08);
  outline: 0;
  background: #fff;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
  aspect-ratio: 4 / 5;
  padding: 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.gallery-image::after {
  content: '＋';
  position: absolute;
  top: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.56);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .22s ease, transform .22s ease;
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
  transition: transform .25s ease, filter .25s ease;
}

.gallery-image:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.16);
  border-color: rgba(220, 5, 45, 0.16);
}

.gallery-image:hover img {
  transform: scale(1.05);
  filter: saturate(1.04);
}

.gallery-image:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.gallery-empty {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 16px;
  background: var(--surface-soft);
  border: 1px solid rgba(22,28,45,0.08);
  color: var(--muted);
}

.site-footer {
  margin-top: 24px;
  padding: 20px 0 28px;
  background: linear-gradient(180deg, #b00020, #8f0019);
  border-top: 1px solid rgba(255,255,255,0.14);
}

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

.compact-footer {
  padding-top: 6px;
}

.site-footer h4 {
  margin: 0 0 10px;
  font-size: 1.3rem;
  color: #ffffff;
}

.site-footer p {
  margin: 4px 0;
  font-size: .96rem;
  color: rgba(255,255,255,0.88);
}

.site-footer a {
  text-decoration: none;
  color: #ffffff;
}

.site-footer a:hover {
  text-decoration: underline;
}

.footer-bottom {
  margin-top: 14px;
  padding-top: 14px;
  font-size: .9rem;
  color: rgba(255,255,255,0.82);
  border-top: 1px solid rgba(255,255,255,0.16);
}

.footer-partner-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  margin-top: 12px;
  margin-left: -2px;
}

.footer-partner-logos a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  text-decoration: none;
}

.footer-partner-logos a:hover {
  text-decoration: none;
}

.footer-partner-logos img {
  display: block;
  width: auto;
  height: 44px;
  max-width: 120px;
  object-fit: contain;
}

.to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--red), var(--red-2));
  color: #fff;
  font-size: 1.45rem;
  box-shadow: 0 18px 38px rgba(220, 5, 45, 0.26);
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}

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

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }

.legal-page .legal-main {
  min-height: calc(100vh - 180px);
  padding-top: 56px;
}

.legal-wrap {
  display: grid;
}

.legal-panel {
  max-width: 860px;
  width: 100%;
  padding: 32px;
  background: #fff;
  border: 1px solid rgba(22, 28, 45, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.lightbox-open {
  overflow: hidden;
}

.gallery-lightbox[hidden] {
  display: none !important;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.gallery-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 16, 24, 0.82);
  backdrop-filter: blur(10px);
}

.gallery-lightbox-dialog {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 64px;
  align-items: center;
  gap: 18px;
  width: min(1280px, calc(100vw - 32px));
  height: min(90vh, calc(100vh - 32px));
  margin: 16px auto;
  padding: 32px 20px 20px;
}

.gallery-lightbox-figure {
  margin: 0;
  min-width: 0;
}

.gallery-lightbox-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  transition: transform .18s ease;
  touch-action: pan-y;
  will-change: transform;
}

.gallery-lightbox-stage.swiping {
  transition: none;
}

.gallery-lightbox-image {
  display: block;
  width: 100%;
  max-height: 72vh;
  object-fit: contain;
  border-radius: 22px;
  background: rgba(255,255,255,0.96);
  box-shadow: 0 24px 80px rgba(0,0,0,0.24);
}

.gallery-lightbox-caption {
  margin-top: 14px;
  text-align: center;
}

.gallery-lightbox-meta {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #f4c542;
}

.gallery-lightbox-title {
  margin-top: 8px;
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 800;
  color: #ffffff;
}

.gallery-lightbox-text {
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.86);
}

.gallery-lightbox-counter {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.60);
}

.gallery-lightbox-close,
.gallery-lightbox-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.14);
  color: #ffffff;
  box-shadow: 0 16px 40px rgba(0,0,0,0.20);
  backdrop-filter: blur(12px);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.gallery-lightbox-close:hover,
.gallery-lightbox-nav:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.26);
}

.gallery-lightbox-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  font-size: 28px;
  line-height: 1;
  z-index: 3;
}

.gallery-lightbox-nav {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  font-size: 34px;
  line-height: 1;
}

.gallery-lightbox-nav[hidden] {
  visibility: hidden;
}

.gallery-lightbox-prev {
  justify-self: start;
}

.gallery-lightbox-next {
  justify-self: end;
}

@media (max-width: 1100px) {
  .facts-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .cta-strip-content {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 980px) {
  .hero-shell,
  .hero-layout {
    min-height: auto;
  }

  .hero-layout {
    padding: 56px 0 88px;
  }

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

  .footer-partner-logos {
    gap: 12px;
    margin-left: 0;
  }

  .footer-partner-logos a {
    line-height: 0;
  }

  .footer-partner-logos img {
    height: 34px;
    max-width: 90px;
  }

  .event-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .event-meta {
    text-align: left;
  }
}

@media (max-width: 780px) {
  :root { --header-h: 78px; }

  .nav,
  .header-cta {
    display: none;
  }

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

  .mobile-nav:not([hidden]) {
    display: block;
  }

  .brand img {
    width: 50px;
    height: 50px;
  }

  .brand-copy strong {
    font-size: .95rem;
  }

  .brand-copy span {
    font-size: .76rem;
  }

  .quicknav,
  .facts-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-title {
    font-size: clamp(2.9rem, 14vw, 4.8rem);
  }

  .hero-subtitle {
    font-size: 1.22rem;
  }

  .hero-logo-wrap {
    width: min(180px, 44vw);
  }

  .home-panel,
  .membership-form-panel,
  .fact-card {
    border-radius: 24px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 20px, var(--maxw));
  }

  .header-inner {
    gap: 12px;
  }

  .brand-copy span {
    display: none;
  }

  .hero-layout {
    padding: 44px 0 82px;
  }

  .hero-badge {
    font-size: 0.72rem;
    padding: 0 12px;
  }

  .hero-title {
    font-size: clamp(2.45rem, 14vw, 3.9rem);
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .quicknav,
  .facts-grid {
    grid-template-columns: 1fr;
  }

  .quicknav-item {
    min-height: 74px;
    justify-content: flex-start;
    padding: 0 22px;
    border-right: 0;
    border-bottom: 1px solid rgba(22, 28, 45, 0.08);
  }

  .quicknav-item:last-child {
    border-bottom: 0;
  }

  .home-panel,
  .membership-form-panel,
  .fact-card {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .cta-strip-content {
    padding: 24px 22px;
  }

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

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

@media (max-width: 860px) {
  .gallery-lightbox-dialog {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: calc(100vw - 16px);
    min-height: calc(100vh - 16px);
    margin: 8px auto;
    padding: 60px 8px 18px;
  }

  .gallery-lightbox-figure {
    width: 100%;
  }

  .gallery-lightbox-stage {
    min-height: 52vh;
  }

  .gallery-lightbox-image {
    width: 100%;
    max-height: 52vh;
    object-fit: contain;
    border-radius: 16px;
  }

  .gallery-lightbox-caption {
    margin-top: 12px;
    padding: 0 6px 10px;
  }

  .gallery-lightbox-title {
    font-size: 20px;
    line-height: 1.25;
  }

  .gallery-lightbox-text {
    font-size: 14px;
    line-height: 1.5;
  }

  .gallery-lightbox-nav {
    top: auto;
    bottom: 96px;
    transform: none;
    width: 44px;
    height: 44px;
    font-size: 26px;
    background: rgba(10, 14, 24, 0.72);
  }

  .gallery-lightbox-nav:hover {
    transform: none;
  }

  .gallery-lightbox-prev {
    left: 8px;
  }

  .gallery-lightbox-next {
    right: 8px;
  }

  .gallery-lightbox-close {
    top: 8px;
    right: 8px;
    width: 42px;
    height: 42px;
    font-size: 24px;
    background: rgba(10, 14, 24, 0.72);
  }
}

@media (max-width: 560px) {
  .gallery-lightbox-dialog {
    width: calc(100vw - 10px);
    min-height: calc(100vh - 10px);
    margin: 5px auto;
    padding: 58px 5px 14px;
  }

  .gallery-lightbox-stage {
    min-height: 48vh;
  }

  .gallery-lightbox-image {
    max-height: 48vh;
    border-radius: 14px;
  }

  .gallery-lightbox-caption {
    padding: 0 2px 8px;
  }

  .gallery-lightbox-meta {
    font-size: 12px;
  }

  .gallery-lightbox-title {
    font-size: 18px;
  }

  .gallery-lightbox-text {
    font-size: 13px;
  }

  .gallery-lightbox-counter {
    font-size: 12px;
  }

  .gallery-lightbox-nav {
    bottom: 88px;
    width: 40px;
    height: 40px;
    font-size: 24px;
  }
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 10000;
  display: block;
}

.cookie-banner-inner {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(24, 32, 51, 0.96);
  color: #ffffff;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.28);
  border: 1px solid rgba(255,255,255,0.10);
}

.cookie-banner-copy {
  min-width: 0;
}

.cookie-banner-copy strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.cookie-banner-copy p {
  margin: 0;
  color: rgba(255,255,255,0.86);
  font-size: 0.96rem;
  line-height: 1.5;
}

.cookie-banner-copy a {
  color: #ffffff;
  font-weight: 700;
}

.cookie-banner-btn {
  flex: 0 0 auto;
}

@media (max-width: 780px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 16px;
    border-radius: 18px;
  }

  .cookie-banner-btn {
    width: 100%;
  }
}

.content-card-clickable,
.gallery-entry-trigger {
  width: 100%;
  text-align: left;
  cursor: pointer;
}

.content-card-clickable {
  border: 0;
  font: inherit;
  color: inherit;
}

.gallery-entry-trigger {
  display: block;
  margin: 0 0 18px;
  padding: 0;
  border: 0;
  background: transparent;
  font: inherit;
  color: inherit;
}

.content-card-clickable:focus-visible,
.gallery-entry-trigger:focus-visible,
.gallery-image:focus-visible {
  outline: 3px solid rgba(220, 5, 45, 0.22);
  outline-offset: 3px;
}

.card-action {
  display: inline-flex;
  align-items: center;
  margin-top: 14px;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--red-2);
}

.card-meta-soft {
  margin-top: 12px;
  margin-bottom: 0;
  background: rgba(24, 32, 51, 0.05);
  border-color: rgba(22, 28, 45, 0.08);
  color: var(--text);
}

.content-modal[hidden] {
  display: none !important;
}

.content-modal {
  position: fixed;
  inset: 0;
  z-index: 10001;
}

.content-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 16, 24, 0.72);
  backdrop-filter: blur(10px);
}

.content-modal-dialog {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100vw - 24px));
  max-height: calc(100vh - 32px);
  margin: 16px auto;
  padding: 28px 24px 24px;
  overflow: auto;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.99), rgba(248,249,251,0.98));
  box-shadow: 0 28px 90px rgba(0,0,0,0.24);
}

.content-modal-close {
  position: sticky;
  top: 0;
  float: right;
  width: 46px;
  height: 46px;
  margin: -8px -6px 10px 0;
  border: 1px solid rgba(22, 28, 45, 0.10);
  border-radius: 999px;
  background: rgba(255,255,255,0.96);
  color: var(--text);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}

.content-modal-meta {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 12px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .02em;
  color: var(--red);
  background: rgba(220, 5, 45, 0.08);
  border: 1px solid rgba(220, 5, 45, 0.10);
}

.content-modal-type {
  margin-bottom: 10px;
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
}

.content-modal-title {
  margin: 0 0 12px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.1;
  color: #111827;
}

.content-modal-extra {
  margin-bottom: 12px;
  font-weight: 700;
  color: var(--text);
}

.content-modal-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted);
  white-space: pre-wrap;
}

@media (max-width: 560px) {
  .content-modal-dialog {
    width: calc(100vw - 10px);
    max-height: calc(100vh - 10px);
    margin: 5px auto;
    padding: 22px 16px 18px;
    border-radius: 22px;
  }

  .content-modal-close {
    width: 42px;
    height: 42px;
    font-size: 24px;
  }

  .content-modal-title {
    font-size: 1.45rem;
  }
}

.content-card-clickable,
.gallery-entry-trigger {
  width: 100%;
  text-align: left;
  cursor: pointer;
}

.content-card-clickable {
  border: 0;
  font: inherit;
  color: inherit;
}

.gallery-entry-trigger {
  display: block;
  margin: 0 0 18px;
  padding: 0;
  border: 0;
  background: transparent;
  font: inherit;
  color: inherit;
}

.content-card-clickable:focus-visible,
.gallery-entry-trigger:focus-visible,
.gallery-image:focus-visible {
  outline: 3px solid rgba(220, 5, 45, 0.22);
  outline-offset: 3px;
}

.card-action {
  display: inline-flex;
  align-items: center;
  margin-top: 14px;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--red-2);
}

.card-meta-soft {
  margin-top: 12px;
  margin-bottom: 0;
  background: rgba(24, 32, 51, 0.05);
  border-color: rgba(22, 28, 45, 0.08);
  color: var(--text);
}

.content-modal[hidden] {
  display: none !important;
}

.content-modal {
  position: fixed;
  inset: 0;
  z-index: 10001;
}

.content-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 16, 24, 0.72);
  backdrop-filter: blur(10px);
}

.content-modal-dialog {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100vw - 24px));
  max-height: calc(100vh - 32px);
  margin: 16px auto;
  padding: 28px 24px 24px;
  overflow: auto;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.99), rgba(248,249,251,0.98));
  box-shadow: 0 28px 90px rgba(0,0,0,0.24);
}

.content-modal-close {
  position: sticky;
  top: 0;
  float: right;
  width: 46px;
  height: 46px;
  margin: -8px -6px 10px 0;
  border: 1px solid rgba(22, 28, 45, 0.10);
  border-radius: 999px;
  background: rgba(255,255,255,0.96);
  color: var(--text);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}

.content-modal-meta {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 12px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .02em;
  color: var(--red);
  background: rgba(220, 5, 45, 0.08);
  border: 1px solid rgba(220, 5, 45, 0.10);
}

.content-modal-type {
  margin-bottom: 10px;
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
}

.content-modal-title {
  margin: 0 0 12px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.1;
  color: #111827;
}

.content-modal-extra {
  margin-bottom: 12px;
  font-weight: 700;
  color: var(--text);
}

.content-modal-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted);
  white-space: pre-wrap;
}

@media (max-width: 560px) {
  .content-modal-dialog {
    width: calc(100vw - 10px);
    max-height: calc(100vh - 10px);
    margin: 5px auto;
    padding: 22px 16px 18px;
    border-radius: 22px;
  }

  .content-modal-close {
    width: 42px;
    height: 42px;
    font-size: 24px;
  }

  .content-modal-title {
    font-size: 1.45rem;
  }
}


/* LINKS SPALTE FEINJUSTIERUNG */
.footer-grid > div:last-child {
  margin-left: -14px; /* ca. 1–1.5 cm nach links */
}

.footer-social-icons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 9px;
  margin-top: 14px;
  max-width: 205px;
}

.footer-social-icons a {
  display: inline-flex;
  align-items: center;
  font-size: 0.68rem;
  line-height: 1.15;
  color: rgba(255,255,255,0.90);
  text-decoration: none;
  white-space: nowrap;
  opacity: 0.95;
}

.footer-social-icons a:hover {
  color: #ffffff;
  text-decoration: none;
  opacity: 1;
}

@media (max-width: 980px) {
  .footer-social-icons {
    max-width: none;
  }
}
.footer-social-icons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  max-width: 210px;
}

.footer-social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  color: #ffffff;
  text-decoration: none;
  opacity: 0.92;
  line-height: 0;
}

.footer-social-icons a:hover {
  color: #ffffff;
  opacity: 1;
  text-decoration: none;
}

.footer-social-icons svg {
  display: block;
  width: 16px;
  height: 16px;
  fill: currentColor;
}

@media (max-width: 980px) {
  .footer-social-icons {
    max-width: none;
  }
}
.footer-social-icons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  max-width: 260px;
}

.footer-social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: #ffffff;
  text-decoration: none;
  opacity: 0.96;
  line-height: 0;
}

.footer-social-icons a:hover {
  color: #ffffff;
  opacity: 1;
  text-decoration: none;
  transform: translateY(-1px);
}

.footer-social-icons img,
.footer-social-icons svg {
  display: block;
  width: 22px;
  height: 22px;
  object-fit: contain;
}

@media (max-width: 980px) {
  .footer-social-icons {
    max-width: none;
  }
}

/* ===== SOCIAL ICONS FINAL TUNE ===== */

.footer-social-icons {
  gap: 12px;
}

.footer-social-icons a {
  width: 30px;
  height: 30px;
}

.footer-social-icons img,
.footer-social-icons svg {
  width: 28px;
  height: 28px;
}

/* Optional Premium Hover */
.footer-social-icons a:hover {
  transform: translateY(-2px) scale(1.05);
}


/* ===== SOCIAL ICON ALIGN FIX ===== */

.footer-partner-logos {
  margin-bottom: 6px;
}

.footer-social-icons {
  margin-top: 6px !important;
}


/* ===== SOCIAL SPACING FEINTUNE ===== */

.footer-partner-logos {
  margin-bottom: 12px;
}

.footer-social-icons {
  margin-top: 10px !important;
  gap: 16px !important;
}


/* ===== SOCIAL ROW EXTRA SPACING ===== */

.footer-partner-logos {
  margin-bottom: 16px;
}

.footer-social-icons {
  margin-top: 14px !important;
}


/* ===== FOOTER MOBILE LINKS ALIGN FIX ===== */
@media (max-width: 980px) {
  .footer-partner-logos,
  .footer-social-icons {
    margin-left: 0 !important;
    padding-left: 0 !important;
    justify-content: flex-start !important;
  }
}

/* ===== FOOTER MOBILE LAST COLUMN FIX ===== */
@media (max-width: 980px) {
  .footer-grid > div:last-child {
    margin-left: 0 !important;
    padding-left: 0 !important;
    transform: none !important;
  }

  .footer-grid > div:last-child h4,
  .footer-grid > div:last-child .footer-partner-logos,
  .footer-grid > div:last-child .footer-social-icons {
    margin-left: 0 !important;
    padding-left: 0 !important;
  }
}
