/* ============================================================
   TOUCH ME — Premium Lifestyle Club Klagenfurt
   Design System & Global Stylesheet  (mobile-first)
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,600&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* ── Design Tokens ────────────────────────────────────────── */
:root {
  --color-primary:       #1a1a1a;
  --color-accent:        #b8965a;
  --color-accent-dark:   #8a6d3d;
  --color-accent-light:  #d4b483;
  --color-surface:       #0f0f0f;
  --color-surface-light: #1e1e1e;
  --color-surface-mid:   #252525;
  --color-text:          #f0ece4;
  --color-text-muted:    #9e9e9e;
  --color-border:        rgba(184, 150, 90, 0.2);
  --color-border-strong: rgba(184, 150, 90, 0.5);

  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Montserrat', system-ui, sans-serif;

  --space-xs:   0.5rem;
  --space-sm:   1rem;
  --space-md:   2rem;
  --space-lg:   2.5rem;   /* mobile base; overridden at 769px → 4rem   */
  --space-xl:   4rem;     /* mobile base; overridden at 769px → 6rem   */
  --space-xxl:  6rem;     /* mobile base; overridden at 769px → 10rem  */

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;

  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --nav-h: 64px;        /* mobile base; overridden at 769px → 175px */
  --max-w: 1200px;
}

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: var(--nav-h);
}

/* Section anchors land flush under the navbar */
section[id] {
  scroll-margin-top: var(--nav-h);
}

/* Contact form gets extra breathing room when jumped to from an event */
#kontakt-formular {
  scroll-margin-top: calc(var(--nav-h) + 15px);
}

body {
  background-color: var(--color-surface);
  color: var(--color-text);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23noise)' opacity='0.025'/%3E%3C/svg%3E");
}

img { display: block; max-width: 100%; }
a { color: var(--color-accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-accent-light); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Typography Scale ─────────────────────────────────────── */
.display-xl {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.display-lg {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.display-md {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
}

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.body-lg {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--color-text-muted);
}

.body-sm {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--color-text-muted);
}

/* ── Layout Utilities ─────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1rem;   /* 769px+ → var(--space-md) */
}

section {
  padding: var(--space-xl) 0;
}

.section-header {
  margin-bottom: var(--space-lg);
}

.section-divider {
  width: 3rem;
  height: 1px;
  background: var(--color-accent);
  margin: var(--space-sm) 0 var(--space-md);
}

.section-divider--center {
  margin-left: auto;
  margin-right: auto;
}

/* ── Global Color Grade ───────────────────────────────────── */
.gallery-item img,
.area-card__image img,
.ueber-uns__image-wrap img,
.regeln__garderobe-img {
  filter: hue-rotate(18deg) saturate(0.82) brightness(1.05) sepia(6%);
}

.gallery-item.rotated img {
  filter: hue-rotate(18deg) saturate(0.82) brightness(1.05) sepia(6%);
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 52px;
  padding: 0 2.5rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-surface);
}

.btn-primary:hover {
  background: var(--color-accent-light);
  color: var(--color-surface);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(184, 150, 90, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
}

.btn-secondary:hover {
  background: rgba(184,150,90,0.1);
  transform: translateY(-2px);
}

.event-entry__cta-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.btn-outline {
  border: 1px solid var(--color-border-strong);
  color: var(--color-text);
}

.btn-outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-2px);
}

.btn-ghost {
  color: var(--color-accent);
  padding: 0;
  min-height: 44px;
}

.btn-ghost:hover {
  color: var(--color-accent-light);
}

/* ── Gold Line Accent ──────────────────────────────────────── */
.gold-line {
  display: inline-block;
  position: relative;
}

.gold-line::after {
  content: '';
  position: absolute;
  bottom: 0.1em;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--color-accent);
  opacity: 0.5;
}

/* ============================================================
   AGE GATE OVERLAY
   ============================================================ */
#age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--color-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  backdrop-filter: blur(0);
  transition: opacity var(--transition-slow), visibility var(--transition-slow);
}

#age-gate.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.age-gate__inner {
  position: relative;
  max-width: 480px;
  width: 100%;
  text-align: center;
  animation: fadeInUp 0.8s ease both;
}

.age-gate__logo-img {
  position: absolute;
  top: -50px;
  right: -50px;
  height: 320px;
  width: auto;
  opacity: 0.16;
  z-index: 0;
  pointer-events: none;
  filter: drop-shadow(0 0 24px rgba(184,150,90,0.2));
}

.age-gate__divider,
.age-gate__title,
.age-gate__text,
.age-gate__actions,
.age-gate__disclaimer {
  position: relative;
  z-index: 1;
}

.age-gate__title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 300;
  margin-bottom: var(--space-xs);
}

.age-gate__text {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

.age-gate__divider {
  width: 2rem;
  height: 1px;
  background: var(--color-accent);
  margin: 1.5rem auto;
}

.age-gate__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.age-gate__actions .btn {
  width: 100%;
}

.age-gate__disclaimer {
  margin-top: var(--space-md);
  font-size: 0.7rem;
  color: var(--color-text-muted);
  opacity: 0.6;
  line-height: 1.7;
}

/* ============================================================
   PANIC BUTTON & DISCREET FEATURES
   ============================================================ */
#panic-hint {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 99999;
  background: rgba(15, 15, 15, 0.85);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.85rem;
  font-size: 0.65rem;
  color: var(--color-text-muted);
  letter-spacing: 0.08em;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition);
  backdrop-filter: blur(8px);
}

body.show-panic-hint #panic-hint {
  opacity: 1;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
}

#nav.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--color-border);
}

.nav__inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  text-decoration: none;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.nav__logo-img {
  height: 150px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 1px rgba(255,255,255,0.9)) drop-shadow(0 0 3px rgba(255,255,255,0.4));
}

.nav__logo:hover .nav__logo-img {
  opacity: 0.85;
}

/* Desktop nav links — hidden on mobile */
.nav__links {
  display: none;
  align-items: center;
  gap: 2.5rem;
}

.nav__link {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--transition);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-accent);
  transition: width var(--transition);
}

.nav__link:hover,
.nav__link.active {
  color: var(--color-text);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__cta {
  display: none;
  margin-left: 1rem;
}

/* Hamburger — visible on mobile */
.nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  background: transparent;
  transition: background var(--transition);
}

.nav__hamburger:hover {
  background: var(--color-surface-light);
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
  transform-origin: center;
}

.nav__hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav__hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav__hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile Nav Drawer */
.nav__mobile-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  transform: translateY(calc(-100% - var(--nav-h)));
  transition: transform var(--transition-slow);
  z-index: 499;
}

.nav__mobile-menu.open {
  transform: translateY(0);
}

.nav__mobile-link {
  display: flex;
  align-items: center;
  padding: 1.1rem 0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  text-decoration: none;
  border-bottom: 1px solid var(--color-border);
  transition: color var(--transition);
  min-height: 44px;
}

.nav__mobile-link:hover {
  color: var(--color-accent);
}

.nav__mobile-link:last-child {
  border-bottom: none;
}

.nav__mobile-cta {
  margin-top: 1.5rem;
}

/* ============================================================
   HERO / STARTSEITE
   ============================================================ */
#startseite {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: hue-rotate(18deg) saturate(0.82) brightness(1.05) sepia(6%);
  transform-origin: center 60%;
  transition: transform 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              filter 1.8s ease;
}

#startseite:hover .hero__bg img {
  transform: perspective(700px) rotateX(4deg) scale(1.08) skewY(-0.5deg);
  filter: hue-rotate(18deg) saturate(0.88) brightness(1.08) sepia(6%);
}

#startseite:hover .hero__overlay {
  opacity: 0.55;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.80) 0%,
    rgba(10, 10, 10, 0.60) 50%,
    rgba(10, 10, 10, 0.73) 100%
  );
  z-index: 1;
  transition: opacity 1.2s ease;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--space-xl) 1rem;
}

.hero__eyebrow {
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero__title {
  animation: fadeInUp 0.8s ease 0.4s both;
  margin: 1.5rem 0 1rem;
}

.hero__title em {
  font-style: italic;
  color: var(--color-accent);
}

.hero__subtitle {
  animation: fadeInUp 0.8s ease 0.6s both;
  max-width: 520px;
  margin-bottom: 2.5rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: fadeInUp 0.8s ease 0.8s both;
}

/* Secondary CTA hidden on small screens */
.hero__actions .btn-outline {
  display: none;
}

.hero__scroll-cue {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: fadeInUp 1s ease 1.2s both;
}

.hero__scroll-cue span {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.hero__scroll-line {
  width: 1px;
  height: 3rem;
  background: linear-gradient(to bottom, var(--color-accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* Feature Pills — hidden on small screens */
.hero__features {
  display: none;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 3rem;
  animation: fadeInUp 0.8s ease 1s both;
}

.hero__feature-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  background: rgba(184, 150, 90, 0.1);
  border: 1px solid var(--color-border);
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
}

.hero__feature-pill svg {
  flex-shrink: 0;
  color: var(--color-accent);
}

/* ============================================================
   ÜBER UNS
   ============================================================ */
#ueber-uns {
  position: relative;
  overflow: hidden;
  padding: 0;
}

.ueber-uns__bg-image {
  position: absolute;
  inset: 0;
  background-image: url('../BilderVomClub/konzept-bg.jpg');
  background-size: cover;
  background-position: center 30%;
  background-attachment: fixed;
}

.ueber-uns__bg-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5, 5, 5, 0.58) 0%,
    rgba(5, 5, 5, 0.68) 50%,
    rgba(5, 5, 5, 0.82) 100%
  );
}

.ueber-uns__content {
  position: relative;
  z-index: 1;
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
  text-align: center;
}

.ueber-uns__text {
  max-width: 680px;
  margin: 0 auto;
}

.ueber-uns__text .section-eyebrow,
.ueber-uns__text .section-divider {
  margin-left: auto;
  margin-right: auto;
}

.ueber-uns__subtext {
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  margin: 0 auto 1.5rem;
}

.ueber-uns__pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 3rem;
}

.pillar {
  padding: 1.75rem 1.5rem;
  background: var(--color-surface-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.pillar:hover {
  border-color: var(--color-accent);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(184,150,90,0.12);
}

.pillar__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-surface);
  border: 1px solid var(--color-border-strong);
  font-size: 1.3rem;
  margin-bottom: 0.9rem;
}

.pillar__title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: 0.4rem;
}

.pillar__text {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ============================================================
   FEATURES STRIP
   ============================================================ */
#features-strip {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-lg) 0;
}

.features-strip__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.feature-card {
  padding: 2rem 1.5rem;
  text-align: center;
  background: var(--color-surface-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: background var(--transition), border-color var(--transition);
  position: relative;
}

.feature-card:hover {
  background: var(--color-surface-mid);
  border-color: var(--color-border-strong);
}

.feature-card__icon {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
  color: var(--color-accent);
  display: block;
}

.feature-card__title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 0.4rem;
  color: var(--color-text);
}

.feature-card__text {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ============================================================
   AMBIENTE & LOCATION
   ============================================================ */
#ambiente {
  background: var(--color-surface);
  position: relative;
}

.ambiente__intro {
  max-width: 600px;
  margin-bottom: var(--space-lg);
}

/* Gallery Filter */
.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.gallery-filter__btn {
  padding: 0.5rem 1.4rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: 2rem;
  cursor: pointer;
  transition: all var(--transition);
}

.gallery-filter__btn:hover {
  color: var(--color-text);
  border-color: var(--color-text-muted);
}

.gallery-filter__btn.active {
  background: var(--color-accent);
  color: #0f0f0f;
  border-color: var(--color-accent);
}

/* Gallery Panel — hidden by default, revealed on area-card click */
.gallery-panel {
  display: none;
  margin-bottom: var(--space-lg);
}
.gallery-panel.open {
  display: block;
  animation: panelIn 0.35s ease;
}
@keyframes panelIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}

.gallery-panel__bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: var(--space-md);
}

.gallery-panel__label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-accent);
  white-space: nowrap;
}

.gallery-panel__close {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-left: auto;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: 2rem;
  padding: 0.35rem 1rem;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.gallery-panel__close:hover {
  color: var(--color-text);
  border-color: var(--color-border-strong);
}

/* Gallery Grid — mobile: single column */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  gap: 4px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
  background: var(--color-surface-light);
  aspect-ratio: 4/3;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.gallery-item.hidden {
  display: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item.rotated img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 190%;
  height: 190%;
  object-fit: cover;
  transform: translate(-50%, -50%) rotate(-90deg);
  transition: transform var(--transition-slow);
}

.gallery-item.rotated:hover img {
  transform: translate(-50%, -50%) rotate(-90deg) scale(1.06);
}

.gallery-item:not(.rotated):hover img {
  transform: scale(1.06);
}

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.gallery-item__overlay svg {
  color: white;
  opacity: 0;
  transform: scale(0.8);
  transition: all var(--transition);
}

.gallery-item:hover .gallery-item__overlay {
  background: rgba(10, 10, 10, 0.35);
}

.gallery-item:hover .gallery-item__overlay svg {
  opacity: 1;
  transform: scale(1);
}

/* Lightbox */
#lightbox {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: rgba(5, 5, 5, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
  padding: var(--space-md);
}

#lightbox.open {
  opacity: 1;
  visibility: visible;
}

#lightbox img {
  max-width: 90vw;
  max-height: calc(85vh - 110px);
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 40px 80px rgba(0,0,0,0.8);
  margin-bottom: 110px;
}

.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-surface-light);
  border-radius: 50%;
  color: var(--color-text);
  font-size: 1.2rem;
  cursor: pointer;
  transition: background var(--transition);
}

.lightbox__close:hover {
  background: var(--color-surface-mid);
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(30, 30, 30, 0.8);
  border-radius: 50%;
  color: var(--color-text);
  cursor: pointer;
  transition: background var(--transition);
}

.lightbox__nav:hover { background: var(--color-surface-mid); }

.lightbox__nav--prev { left: 1.5rem; }
.lightbox__nav--next { right: 1.5rem; }

.lightbox__strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0.75rem 4.5rem 0.85rem;
  overflow-x: auto;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 55%, transparent);
  scrollbar-width: none;
}
.lightbox__strip::-webkit-scrollbar { display: none; }

.lightbox__thumb {
  flex-shrink: 0;
  width: 68px;
  height: 50px;
  object-fit: cover;
  border-radius: 3px;
  cursor: pointer;
  opacity: 0.45;
  border: 2px solid transparent;
  transition: opacity 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.lightbox__thumb:hover { opacity: 0.75; }
.lightbox__thumb.active {
  opacity: 1;
  border-color: var(--color-accent);
  transform: scale(1.08);
}

.lightbox__footer {
  position: absolute;
  bottom: 78px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 1rem;
  pointer-events: none;
  white-space: nowrap;
}

.lightbox__label {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.lightbox__counter {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.08em;
}

/* Area Cards */
.ambiente__areas {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: var(--space-lg);
}

.area-card {
  background: var(--color-surface-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.area-card:hover {
  border-color: var(--color-border-strong);
  transform: translateY(-4px);
}

.area-card.active {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 1px var(--color-accent), 0 8px 32px rgba(184,150,90,0.18);
}

.area-card__image {
  aspect-ratio: 16/10;
  position: relative;
  overflow: hidden;
}

.area-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.area-card__image.rotated img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 190%;
  height: 190%;
  object-fit: cover;
  transform: translate(-50%, -50%) rotate(90deg);
}

.area-card:hover .area-card__image:not(.rotated) img {
  transform: scale(1.06);
}

.area-card__body {
  padding: 1.4rem;
}

.area-card__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.area-card__text {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.area-card__cta {
  display: inline-block;
  margin-top: 0.85rem;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  transition: letter-spacing var(--transition);
}
.area-card:hover .area-card__cta {
  letter-spacing: 0.2em;
}
.area-card.active .area-card__cta {
  color: var(--color-text-muted);
}

/* ============================================================
   KONTAKTFORMULAR
   ============================================================ */
.kontakt-form {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: var(--color-surface-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.kontakt-form__field { margin-bottom: 0.85rem; }

.kontakt-form input,
.kontakt-form textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  background: var(--color-surface-mid);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  resize: vertical;
  transition: border-color var(--transition);
}

.kontakt-form input { min-height: 44px; }

.kontakt-form input:focus,
.kontakt-form textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}

.kontakt-form__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.kontakt-form__submit {
  width: 100%;
  margin-top: 0.25rem;
  border: none;
  cursor: pointer;
}

.kontakt-form__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.kontakt-form__status {
  margin-top: 0.75rem;
  font-size: 0.78rem;
  color: var(--color-text-muted);
  min-height: 1.2em;
}

.kontakt-form__status.kontakt-form__status--success { color: #4caf82 !important; }

/* ============================================================
   REGELN & DRESSCODE
   ============================================================ */
#regeln {
  position: relative;
  overflow: hidden;
}

#regeln::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../BilderVomClub/regeln-bg.jpg');
  background-size: cover;
  background-position: center 20%;
  background-attachment: fixed;
  z-index: 0;
}

#regeln::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5, 5, 5, 0.62) 0%,
    rgba(5, 5, 5, 0.74) 50%,
    rgba(5, 5, 5, 0.88) 100%
  );
  z-index: 0;
}

#regeln > * {
  position: relative;
  z-index: 1;
}

.regeln__bg-accent {
  display: none;
}

.regeln__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.regeln__column-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
  color: var(--color-text);
}

.rule-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.rule-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 1.2rem;
  background: var(--color-surface-light);
  border-radius: var(--radius-md);
  border-left: 2px solid transparent;
  transition: border-color var(--transition), background var(--transition);
}

.rule-item:hover {
  border-left-color: var(--color-accent);
  background: var(--color-surface-mid);
}

.rule-item__icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.rule-item__text {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--color-text-muted);
}

.rule-item__text strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--color-text);
  margin-bottom: 0.2rem;
}

.regeln__consent-box {
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(184, 150, 90, 0.08);
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-md);
}

.regeln__consent-box .section-eyebrow {
  margin-bottom: 0.6rem;
}

.regeln__consent-box p {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 300;
  font-style: italic;
  color: var(--color-text);
}

/* Dresscode */
.dresscode-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.dresscode-card {
  padding: 1.2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

.dresscode-card--yes {
  background: rgba(50, 120, 70, 0.1);
  border-color: rgba(50, 120, 70, 0.3);
}

.dresscode-card--no {
  background: rgba(160, 50, 50, 0.1);
  border-color: rgba(160, 50, 50, 0.3);
}

.dresscode-card__label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.dresscode-card--yes .dresscode-card__label { color: #5cb85c; }
.dresscode-card--no .dresscode-card__label { color: #d9534f; }

.dresscode-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.dresscode-card li {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  padding-left: 1rem;
  position: relative;
}

.dresscode-card li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--color-text-muted);
  opacity: 0.5;
}

.regeln__garderobe {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--color-surface-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.regeln__garderobe-img {
  width: 100px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
#faq {
  position: relative;
  overflow: hidden;
}
#faq::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../BilderVomClub/faq-bg.jpg');
  background-size: cover;
  background-position: center 30%;
  background-attachment: fixed;
  z-index: 0;
}
#faq::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5, 5, 5, 0.48) 0%,
    rgba(5, 5, 5, 0.62) 50%,
    rgba(5, 5, 5, 0.80) 100%
  );
  z-index: 0;
}
#faq > * {
  position: relative;
  z-index: 1;
}

.faq__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: start;
}

/* Sidebar hidden on mobile; shown at 1025px */
.faq__sidebar {
  display: none;
}

.faq__sidebar h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.faq__category-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.faq__category-btn {
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  text-align: left;
  transition: all var(--transition);
  min-height: 44px;
}

.faq__category-btn:hover,
.faq__category-btn.active {
  background: var(--color-surface-light);
  color: var(--color-accent);
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.accordion__item {
  background: var(--color-surface-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}

.accordion__item.open {
  border-color: var(--color-border-strong);
}

.accordion__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  cursor: pointer;
  min-height: 60px;
  background: transparent;
  width: 100%;
  text-align: left;
  color: var(--color-text);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.5;
  transition: color var(--transition);
}

.accordion__header:hover {
  color: var(--color-accent);
}

.accordion__chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--color-text-muted);
  transition: transform var(--transition), color var(--transition);
}

.accordion__item.open .accordion__chevron {
  transform: rotate(180deg);
  color: var(--color-accent);
}

.accordion__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion__item.open .accordion__body {
  max-height: 400px;
}

.accordion__content {
  padding: 0 1.4rem 1.4rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  border-top: 1px solid var(--color-border);
  padding-top: 1rem;
}

/* ============================================================
   EVENTS SECTION
   ============================================================ */
#events {
  background: var(--color-primary);
  padding: var(--space-xxl) 0;
}

/* Filter buttons */
.events-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: var(--space-md);
}

.events-filter__btn {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.4rem 1.2rem;
  border-radius: 2rem;
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
}

.events-filter__btn:hover {
  color: var(--color-text);
  border-color: var(--color-text-muted);
}

.events-filter__btn.active {
  background: var(--color-accent);
  color: #0f0f0f;
  border-color: var(--color-accent);
}

/* Events grid */
.events-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: var(--space-lg);
}

/* Event card */
.event-card {
  background: var(--color-surface-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
  border-color: var(--color-border-strong);
}

.event-card--featured {
  border-color: rgba(184,150,90,0.45);
  background: #1e1a15;
}

.event-card.hidden {
  display: none;
}

.event-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

/* Card header: date badge + title */
.event-card__header {
  padding: 1.2rem 1.2rem 0;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(184,150,90,0.1);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.8rem;
  min-width: 52px;
  text-align: center;
  flex-shrink: 0;
}

.event-date__day {
  font-family: var(--font-sans);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
}

.event-date__month {
  font-family: var(--font-sans);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-top: 0.15rem;
}

.event-card__meta {
  flex: 1;
}

.event-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: rgba(184,150,90,0.1);
  border: 1px solid var(--color-border);
  border-radius: 2rem;
  padding: 0.2rem 0.65rem;
  margin-bottom: 0.4rem;
}

.event-tag--featured {
  background: var(--color-accent);
  color: #0f0f0f;
  border-color: var(--color-accent);
}

.event-tag--joyclub {
  border-color: rgba(184,150,90,0.35);
  color: rgba(184,150,90,0.8);
}

.event-cta--external {
  opacity: 0.75;
}

.event-info--attendees .attendees-count {
  color: var(--color-accent);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.event-card__title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.3;
}

/* Card image */
.event-card__image {
  margin: 1rem 1.2rem 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 16/9;
}

.event-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: hue-rotate(18deg) saturate(0.82) brightness(1.05) sepia(6%);
  transition: transform 0.6s ease;
}

.event-card:hover .event-card__image img {
  transform: scale(1.05);
}

/* Card body */
.event-card__body {
  padding: 1rem 1.2rem 0.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1;
}

.event-info {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  color: var(--color-text-muted);
}

.event-info svg {
  flex-shrink: 0;
}

.event-desc {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  flex: 1;
  margin-top: 0.3rem;
}

/* Card footer CTA */
.event-card__footer {
  padding: 0.6rem 1.2rem 1.25rem;
}

.event-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  text-decoration: none;
  transition: gap var(--transition);
}

.event-cta:hover {
  gap: 0.7rem;
  color: var(--color-accent-light);
}

/* ============================================================
   EVENTS PAGE (events.html) — all events, chronological, filterable
   ============================================================ */
.events-page-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: var(--space-lg);
}

.event-entry {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--color-surface-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.event-entry.hidden { display: none; }

.event-entry__image {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.event-entry__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: hue-rotate(18deg) saturate(0.82) brightness(1.05) sepia(6%);
}

.event-entry__body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
}

.event-entry__header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.event-entry__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--color-text);
  margin: 0.35rem 0 0.5rem;
  line-height: 1.25;
}

.event-entry__content p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 0.9rem;
}

.event-entry__highlights {
  list-style: none;
  padding: 0;
  margin: 0.25rem 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.event-entry__highlights li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.84rem;
  color: var(--color-text);
}

.event-entry__highlights li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-size: 0.7rem;
  top: 0.2em;
}

.event-entry__price {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-accent-light);
  margin-bottom: 1.25rem;
}

.event-entry--highlight {
  animation: eventHighlightPulse 2.2s ease;
}

@keyframes eventHighlightPulse {
  0%   { box-shadow: 0 0 0 0 rgba(184,150,90,0); border-color: var(--color-border); }
  15%  { box-shadow: 0 0 0 4px rgba(184,150,90,0.35); border-color: var(--color-accent); }
  100% { box-shadow: 0 0 0 0 rgba(184,150,90,0); border-color: var(--color-border); }
}

@media (min-width: 769px) {
  .event-entry {
    grid-template-columns: 340px 1fr;
  }
  .event-entry__image {
    aspect-ratio: auto;
    height: 100%;
  }
}

/* ============================================================
   KONTAKT & ANFAHRT
   ============================================================ */
#kontakt {
  background: var(--color-primary);
  position: relative;
  overflow: hidden;
}

.kontakt__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.kontakt__info-block {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-card {
  padding: 1.5rem;
  background: var(--color-surface-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition);
}

.info-card:hover {
  border-color: var(--color-border-strong);
}

.info-card__title {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.info-card__content {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.8;
}

.info-card__content a {
  color: var(--color-text);
  transition: color var(--transition);
}

.info-card__content a:hover {
  color: var(--color-accent);
}

/* Opening Hours Table */
.hours-table {
  width: 100%;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.85rem;
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-row__day {
  color: var(--color-text-muted);
  font-weight: 400;
}

.hours-row__time {
  color: var(--color-text);
  font-weight: 500;
}

.hours-row__badge {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  background: rgba(184, 150, 90, 0.15);
  border: 1px solid var(--color-border);
  border-radius: 100px;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  color: var(--color-accent);
  font-weight: 600;
}

/* Map Placeholder */
.map-placeholder {
  background: var(--color-surface-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--color-text-muted);
  font-size: 0.85rem;
  position: relative;
  overflow: hidden;
}

.map-placeholder__icon {
  font-size: 2.5rem;
  opacity: 0.4;
}

.map-placeholder__address {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 300;
  color: var(--color-text);
  text-align: center;
}

.map-placeholder__cta {
  margin-top: 0.5rem;
}

.map-embed-wrapper {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-surface-light);
}

.map-embed-wrapper iframe {
  filter: grayscale(1) invert(0.88) sepia(0.15) brightness(0.82) contrast(0.9);
}

.map-embed-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1rem;
  border-top: 1px solid var(--color-border);
}

.map-embed-address {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

.map-embed-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-accent);
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.map-embed-nav:hover {
  opacity: 0.75;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: var(--space-lg) 0 var(--space-md);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: var(--space-md);
}

.footer__brand {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}

.footer__brand span {
  color: var(--color-accent);
}

.footer__tagline {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  font-style: italic;
  font-family: var(--font-serif);
  margin-bottom: 1.5rem;
}

.footer__col-title {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__link {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--transition);
  min-height: 32px;
  display: flex;
  align-items: center;
}

.footer__link:hover {
  color: var(--color-text);
}

.footer__bottom {
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.footer__copyright {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  opacity: 0.6;
}

.footer__legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__legal-link {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  text-decoration: none;
  opacity: 0.6;
  transition: opacity var(--transition);
}

.footer__legal-link:hover {
  opacity: 1;
  color: var(--color-text-muted);
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }

/* ============================================================
   KEYFRAME ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ============================================================
   RESPONSIVE — SMALL PHONE+  (≥ 481px)
   ============================================================ */
@media (min-width: 481px) {
  /* Gallery: 2-column grid with per-item aspect ratios */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-item { aspect-ratio: unset; }

  .gallery-item:nth-child(1)  { grid-column: span 2; aspect-ratio: 16/9; }
  .gallery-item:nth-child(2)  { aspect-ratio: 9/10; }
  .gallery-item:nth-child(3)  { aspect-ratio: 4/5; }
  .gallery-item:nth-child(4)  { aspect-ratio: 4/5; }
  .gallery-item:nth-child(5)  { grid-column: span 2; aspect-ratio: 16/9; }
  .gallery-item:nth-child(6)  { aspect-ratio: 1; }
  .gallery-item:nth-child(7)  { aspect-ratio: 1; }
  .gallery-item:nth-child(8)  { aspect-ratio: 1; }

  /* Hero feature pills */
  .hero__features {
    display: flex;
    gap: 0.5rem;
  }

  /* Events grid: 2 columns */
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   RESPONSIVE — TABLET+  (≥ 769px)
   ============================================================ */
@media (min-width: 769px) {
  /* Scale up spacing tokens */
  :root {
    --nav-h:      175px;
    --space-lg:   4rem;
    --space-xl:   6rem;
    --space-xxl:  10rem;
  }

  /* Wider container padding */
  .container,
  .nav__inner,
  .hero__content {
    padding-left: var(--space-md);
    padding-right: var(--space-md);
  }

  /* Nav: show desktop links, hide hamburger & drawer */
  .nav__links { display: flex; }
  .nav__cta   { display: block; }
  .nav__hamburger { display: none; }
  .nav__mobile-menu { display: none; }

  /* Hero: show secondary CTA */
  .hero__actions .btn-outline { display: inline-flex; }
  .hero__features { gap: 0.75rem; }

  /* Gallery: 3-column layout */
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }

  .ueber-uns__pillars { grid-template-columns: 1fr 1fr 1fr 1fr; }

  /* Ambiente areas: 2-column */
  .ambiente__areas { grid-template-columns: 1fr 1fr; }

  /* Regeln */
  .regeln__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }

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

  /* Kontakt */
  .kontakt__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: row; align-items: center; gap: 1rem; }
  .footer__legal-links { flex-wrap: nowrap; gap: 1.5rem; }
}

/* ============================================================
   RESPONSIVE — DESKTOP  (≥ 1025px)
   ============================================================ */
/* Events: 3 columns at 769px+ */
@media (min-width: 769px) {
  .events-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1025px) {
  /* Features strip: 4-column */
  .features-strip__grid { grid-template-columns: repeat(4, 1fr); }

  /* Ambiente areas: 3-column */
  .ambiente__areas { grid-template-columns: repeat(3, 1fr); }

  /* FAQ: sidebar + accordion */
  .faq__grid { grid-template-columns: 1fr 1.5fr; }
  .faq__sidebar { display: block; }

  /* Footer: full 4-column layout */
  .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--space-md); }
}
