/* ===================================
   MolaMolaBar – Dark Style CSS v2
   Accent: Bronze (#C4956A)
   =================================== */

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

/* ===== SELF-HOSTED FONTS ===== */
@font-face {
  font-family: 'Anton';
  src: url('fonts/Anton-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --bronze: #C4956A;
  --bronze-light: #D4AD84;
  --bronze-dark: #A47B52;
  --bronze-glow: rgba(196, 149, 106, 0.4);
  --bronze-subtle: rgba(196, 149, 106, 0.12);
  --bg-primary: #0A0A0A;
  --bg-secondary: #111111;
  --bg-card: #161616;
  --bg-elevated: #1A1A1A;
  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(196, 149, 106, 0.3);
  --text-primary: #F5F0EB;
  --text-secondary: rgba(245, 240, 235, 0.6);
  --text-muted: rgba(245, 240, 235, 0.35);
  --font-display: 'Anton', sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --nav-height: 90px;
  --section-padding: clamp(80px, 12vw, 160px);
  --container-max: 1280px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: clip;
}

a {
  color: var(--bronze-light);
  text-decoration: none;
  transition: color 0.3s var(--ease-out);
}

a:hover {
  color: var(--bronze);
}

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

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}


/* ===================
   NAVIGATION
   =================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  transition: background 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), backdrop-filter 0.4s;
  overflow: visible;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  box-shadow: 0 1px 0 var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  width: 100%;
  padding: 15px clamp(20px, 5vw, 60px) 0;
  margin: 0 auto;
  position: relative;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3.5vw, 48px);
  padding-top: 25px;
}

.nav-left {
  flex: 1;
  justify-content: flex-start;
}

.nav-right {
  flex: 1;
  justify-content: flex-end;
}

.nav-links a {
  color: var(--text-primary);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--bronze);
  transition: width 0.4s var(--ease-out);
}

.nav-links a:hover {
  color: var(--bronze-light);
}

.nav-links a:hover::after {
  width: 100%;
}

/* ===== LOGO SCREEN-CENTERED ===== */
.nav-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  flex-shrink: 0;
  display: block;
  width: 180px;
  z-index: 10;
  overflow: visible;
}

.logo-svg {
  width: 100%;
  height: auto;
  fill: var(--text-primary);
  transition: transform 0.4s var(--ease-out);
}

.logo-path {
  fill: var(--text-primary);
  transition: fill 0.3s var(--ease-out), transform 0.6s var(--ease-out);
}

.nav-logo:hover .logo-svg {
  /* no transform — only the fish moves */
}

#fish-group {
  transition: fill 0.3s var(--ease-out);
}

.nav-logo:hover #fish-group {
  fill: var(--bronze-light);
  animation: fishSwim 2.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes fishSwim {
  0% {
    transform: translateX(0);
    opacity: 1;
  }

  39% {
    transform: translateX(-1100px);
    opacity: 1;
  }

  40% {
    transform: translateX(-1100px);
    opacity: 0;
  }

  50% {
    transform: translateX(300px);
    opacity: 0;
  }

  51% {
    transform: translateX(300px);
    opacity: 1;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.nav-cta {
  position: relative;
  top: 8px;
  padding: 12px 28px;
  background: var(--bronze);
  color: #0A0A0A !important;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
  transition: background 0.3s, transform 0.3s var(--ease-out), box-shadow 0.3s;
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: clamp(20px, 3vw, 40px);
}

.nav-cta:hover {
  background: var(--bronze-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px var(--bronze-glow);
}

/* Mobile */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1001;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: transform 0.3s, opacity 0.3s;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  display: flex;
  visibility: hidden;
  pointer-events: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.97);
  /* -webkit- prefix für iOS Safari */
  -webkit-backdrop-filter: blur(30px) saturate(1.8);
  backdrop-filter: blur(30px) saturate(1.8);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  z-index: 999;
  opacity: 0;
  transition: opacity 0.35s var(--ease-out), visibility 0.35s var(--ease-out);
  will-change: opacity;
}

.mobile-menu.open {
  visibility: visible;
  pointer-events: auto;
  opacity: 1;
}


.mobile-menu a {
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
}

.mobile-menu a:hover {
  color: var(--bronze);
}

.mobile-menu .nav-cta {
  margin-left: 0;
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 14px 40px;
}


/* ===================
   HERO
   =================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(10, 10, 10, 0.4) 0%,
      rgba(10, 10, 10, 0.25) 40%,
      rgba(10, 10, 10, 0.6) 80%,
      rgba(10, 10, 10, 0.95) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
}

.hero-subtitle {
  font-size: clamp(0.75rem, 1.2vw, 0.95rem);
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--bronze-light);
  margin-bottom: 16px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 12vw, 10rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
}

.hero-title span {
  display: inline-block;
}

.hero-tagline {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--bronze), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

.scroll-indicator span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(0.6);
  }

  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}


/* ===================
   ANIMATIONS
   =================== */
.anim-reveal {
  display: inline-block;
  opacity: 0;
  transform: translateY(60px) rotateX(15deg);
  animation: revealUp 1.2s var(--ease-out) forwards;
}

.anim-reveal.delay-1 {
  animation-delay: 0.15s;
}

.anim-reveal.delay-2 {
  animation-delay: 0.3s;
}

@keyframes revealUp {
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
  }
}

.anim-fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s var(--ease-out) forwards;
}

.anim-fade-up.delay-3 {
  animation-delay: 0.5s;
}

.anim-fade-up.delay-4 {
  animation-delay: 0.7s;
}

.anim-fade-up.delay-5 {
  animation-delay: 1.2s;
}

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

[data-anim] {
  opacity: 0;
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}

[data-anim="fade-up"] {
  transform: translateY(40px);
}

[data-anim="slide-right"] {
  transform: translateX(-50px);
}

[data-anim="slide-left"] {
  transform: translateX(50px);
}

/* Apple-style slide-in from sides with dramatic travel */
[data-anim="slide-in-left"] {
  transform: translateX(-150px) scale(0.9);
  transition: opacity 1.4s var(--ease-out), transform 1.6s var(--ease-out);
}

[data-anim="slide-in-right"] {
  transform: translateX(150px) scale(0.9);
  transition: opacity 1.4s var(--ease-out), transform 1.6s var(--ease-out);
}

[data-anim].visible {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}


/* ===================
   BUTTONS
   =================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.35s var(--ease-out);
  text-decoration: none;
}

.btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s var(--ease-out);
}

.btn:hover svg {
  transform: translateX(4px);
}

.btn-bronze {
  background: var(--bronze);
  color: #0A0A0A;
}

.btn-bronze:hover {
  background: var(--bronze-light);
  color: #0A0A0A;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--bronze-glow);
}

.btn-outline {
  background: transparent;
  color: var(--bronze-light);
  border: 1px solid var(--bronze);
  padding: 12px 32px;
}

.btn-outline:hover {
  background: var(--bronze-subtle);
  color: var(--bronze);
  border-color: var(--bronze-light);
}

.btn-full {
  width: 100%;
  justify-content: center;
  padding: 16px 36px;
}


/* ===================
   SECTION COMMON
   =================== */
.section {
  padding: var(--section-padding) 0;
  position: relative;
  overflow-x: clip;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 80px);
}

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 16px;
  position: relative;
}

.section-label::before,
.section-label::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30px;
  height: 1px;
  background: var(--bronze);
  opacity: 0.4;
}

.section-label::before {
  right: calc(100% + 12px);
}

.section-label::after {
  left: calc(100% + 12px);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
  overflow: visible;
  text-align: center;
}

.section-title em {
  font-style: italic;
  color: var(--bronze);
  animation: shimmer-color 5s ease-in-out infinite;
  display: inline;
}

@keyframes shimmer-color {

  0%,
  100% {
    color: var(--bronze-dark);
  }

  25% {
    color: var(--bronze-light);
  }

  50% {
    color: var(--bronze);
  }

  75% {
    color: var(--bronze-light);
  }
}

.section-title em.subtitle-line {
  display: block;
  font-size: 0.78em;
  margin-top: 0.05em;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 600px;
  margin: 16px auto 0;
}

.section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}


/* ===================
   ABOUT
   =================== */
.section-about {
  background: var(--bg-secondary);
}

.section-text .section-label {
  display: block;
  width: fit-content;
  margin: 0 auto 16px;
}

.section-text .section-title {
  text-align: left;
}

.section-text p {
  color: var(--text-secondary);
  margin: 16px 0;
  font-size: 0.95rem;
}

.section-text p strong {
  color: var(--bronze-light);
  font-weight: 500;
}

.section-text .btn {
  margin-top: 24px;
}

.image-frame {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  aspect-ratio: 4/5;
  transition: transform 0.6s var(--ease-out);
}

.image-frame:hover img {
  transform: scale(1.03);
}

.image-accent {
  position: absolute;
  top: -8px;
  right: -8px;
  bottom: 16px;
  left: 16px;
  border: 1px solid var(--bronze);
  border-radius: 8px;
  opacity: 0.25;
  z-index: -1;
  pointer-events: none;
}


/* ===================
   FULLWIDTH IMAGE SLIDER
   =================== */
.section-slider {
  padding: 0;
  background: var(--bg-primary);
}

.fullwidth-slider {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 500px;
  max-height: 800px;
  overflow: hidden;
}

.slider-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.slider-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s var(--ease-out), transform 1.2s var(--ease-out);
  transform: scale(1.08);
}

.slider-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.slider-slide.prev {
  opacity: 0;
  transform: scale(0.95);
}

.slider-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(10, 10, 10, 0.1) 0%,
      rgba(10, 10, 10, 0.5) 70%,
      rgba(10, 10, 10, 0.85) 100%);
}

.slide-caption {
  position: absolute;
  bottom: 60px;
  left: clamp(30px, 6vw, 80px);
  z-index: 2;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.6s var(--ease-out) 0.3s, opacity 0.6s var(--ease-out) 0.3s;
}

.slider-slide.active .slide-caption {
  transform: translateY(0);
  opacity: 1;
}

.slide-num {
  display: block;
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--bronze);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 8px;
}

.slide-caption h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 400;
  letter-spacing: -0.01em;
}

/* Slider controls */
.slider-controls {
  position: absolute;
  bottom: 40px;
  right: clamp(30px, 6vw, 80px);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 20px;
}

.slider-btn {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: var(--text-primary);
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}

.slider-btn:hover {
  background: var(--bronze-subtle);
  border-color: var(--bronze);
  color: var(--bronze);
  transform: scale(1.1);
}

.slider-btn svg {
  width: 20px;
  height: 20px;
}

.slider-progress {
  width: 120px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 1px;
  overflow: hidden;
}

.slider-progress-bar {
  height: 100%;
  width: 16.66%;
  background: var(--bronze);
  border-radius: 1px;
  transition: width 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}


/* ===================
   BAR SHOWCASE SECTIONS
   =================== */
.section-bars {
  background: var(--bg-secondary);
}

.bar-showcase {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  margin-bottom: clamp(80px, 10vw, 140px);
}

.bar-showcase:last-child {
  margin-bottom: 0;
}

.bar-showcase--reversed {
  direction: rtl;
}

.bar-showcase--reversed>* {
  direction: ltr;
}

.bar-image-container {
  position: relative;
  border-radius: 16px;
  overflow: visible;
}

.bar-hero-img {
  width: 100%;
  border-radius: 16px;
  position: relative;
  z-index: 2;
  transition: transform 0.6s var(--ease-out), filter 0.6s;
}

.bar-image-container:hover .bar-hero-img {
  transform: scale(1.02);
}

/* Freigestellt / Glow effect */
.bar-image-glow {
  position: absolute;
  inset: -30px;
  z-index: 1;
  border-radius: 32px;
  background: radial-gradient(ellipse at center,
      var(--bronze-glow) 0%,
      rgba(196, 149, 106, 0.15) 30%,
      transparent 60%);
  filter: blur(40px);
  opacity: 0;
  transition: opacity 0.8s var(--ease-out);
}

.bar-image-container:hover .bar-image-glow {
  opacity: 1;
}

/* Freigestellt CSS cutout mask – fades edges into dark background */
.bar-cutout .bar-hero-img {
  mask-image: radial-gradient(ellipse 90% 85% at 50% 48%,
      black 35%,
      rgba(0, 0, 0, 0.9) 50%,
      rgba(0, 0, 0, 0.5) 65%,
      rgba(0, 0, 0, 0.15) 80%,
      transparent 95%);
  -webkit-mask-image: radial-gradient(ellipse 90% 85% at 50% 48%,
      black 35%,
      rgba(0, 0, 0, 0.9) 50%,
      rgba(0, 0, 0, 0.5) 65%,
      rgba(0, 0, 0, 0.15) 80%,
      transparent 95%);
  border-radius: 0;
  box-shadow: none;
}

/* Regular bar images box-shadow */
.bar-hero-img {
  box-shadow:
    0 0 0 1px rgba(196, 149, 106, 0.1),
    0 20px 60px -10px rgba(0, 0, 0, 0.5),
    0 0 80px -20px var(--bronze-glow);
}

.bar-showcase-info {
  padding: clamp(0px, 2vw, 20px) 0;
}

.bar-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--bronze-subtle);
  border: 1px solid var(--border-hover);
  border-radius: 100px;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bronze-light);
  margin-bottom: 12px;
}

/* Warum wir Section Styling */
.why-us-section {
  margin-top: clamp(80px, 10vw, 140px);
  padding: clamp(60px, 8vw, 100px);
  background: var(--bg-card);
  border-radius: 24px;
  border: 1px solid var(--border);
  position: relative;
  overflow: visible;
}

.why-us-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, var(--bronze-subtle) 0%, transparent 60%);
  pointer-events: none;
}

.why-us-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.why-us-content p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.why-us-content p:last-child {
  margin-bottom: 0;
}



.bar-showcase-info h3 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 500;
  margin-bottom: 16px;
}

.bar-showcase-info p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.bar-showcase-info p strong {
  color: var(--bronze-light);
  font-weight: 500;
}

.bar-features {
  list-style: none;
  margin-bottom: 32px;
}

.bar-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}

.bar-features li:last-child {
  border-bottom: none;
}

.bar-features svg {
  width: 18px;
  height: 18px;
  color: var(--bronze);
  flex-shrink: 0;
}


/* ===================
   SERVICES
   =================== */
.section-services {
  background: var(--bg-primary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 28px;
  text-align: center;
  transition: transform 0.4s var(--ease-out), border-color 0.4s, box-shadow 0.4s;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3), 0 0 0 1px var(--border-hover);
}

.service-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  color: var(--bronze);
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.65;
}


/* ===================
   PRICING CARDS
   =================== */
.pricing-cards-section {
  margin-top: clamp(60px, 8vw, 100px);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-grid--3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1100px;
}

.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: clamp(32px, 4vw, 48px);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), border-color 0.4s, box-shadow 0.4s;
}

.price-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  box-shadow: 0 20px 60px rgba(196, 149, 106, 0.1);
}

.price-card--featured {
  border-color: var(--bronze-dark);
  background: linear-gradient(180deg, rgba(196, 149, 106, 0.06) 0%, var(--bg-card) 40%);
}

.price-card--featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--bronze), transparent);
}

.price-card-popular {
  position: absolute;
  top: 16px;
  right: -32px;
  background: var(--bronze);
  color: #0A0A0A;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 40px;
  transform: rotate(45deg);
}

.price-card-badge {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 16px;
}

.price-card-amount {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 4.5rem);
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 4px;
}

.price-card-amount span {
  font-size: 0.45em;
  color: var(--bronze);
  vertical-align: super;
}

.price-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--bronze-light);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.price-card-features {
  list-style: none;
  text-align: left;
  margin: 0 0 28px;
}

.price-card-features li {
  padding: 9px 0;
  padding-left: 26px;
  position: relative;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
  border-bottom: 1px solid var(--border);
}

.price-card-features li:last-child {
  border-bottom: none;
}

.price-card-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--bronze);
  font-weight: 700;
}

.price-card-features li strong {
  color: var(--text-primary);
}

@media (max-width: 900px) {
  .pricing-grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {

  .pricing-grid,
  .pricing-grid--3 {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}


/* ===================
   PARALLAX DIVIDER
   =================== */
.parallax-divider {
  position: relative;
  height: 70vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.parallax-divider>img {
  position: absolute;
  inset: -20%;
  width: 140%;
  height: 140%;
  object-fit: cover;
  will-change: transform;
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.5);
}

.parallax-cta {
  margin-top: 28px;
}

.parallax-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
}

.parallax-quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 400;
  line-height: 1.4;
}

.parallax-quote em {
  font-style: italic;
  color: var(--bronze-light);
}

.parallax-sub {
  margin-top: 16px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
}


/* ===================
   GALLERY
   =================== */
.section-gallery {
  background: var(--bg-primary);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 300px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item--wide {
  grid-column: span 2;
}

.gallery-item--tall {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out), filter 0.6s;
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(0.7);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.7) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-primary);
  transform: translateY(10px);
  transition: transform 0.4s var(--ease-out);
}

.gallery-item:hover .gallery-overlay span {
  transform: translateY(0);
}


/* ===================
   LIGHTBOX
   =================== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out);
}

.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  font-size: 2rem;
  z-index: 2001;
  transition: color 0.3s, transform 0.3s;
  padding: 12px;
}

.lightbox-close {
  top: 20px;
  right: 24px;
  font-size: 2.5rem;
}

.lightbox-prev {
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
}

.lightbox-next {
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  color: var(--bronze);
}


/* ===================
   FAQ
   =================== */
.section-faq {
  background: var(--bg-secondary);
}

.faq-list {
  max-width: 100%;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: color 0.3s;
}

.faq-question:hover {
  color: var(--bronze-light);
}

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--bronze);
  transition: transform 0.4s var(--ease-out);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out), padding 0.5s var(--ease-out);
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 28px;
}

.faq-answer p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
}


/* ===================
   BOOKING FORM
   =================== */
.section-booking {
  background: var(--bg-primary);
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.booking-info {
  position: sticky;
  top: calc(var(--nav-height) + 40px);
}

.booking-info p {
  color: var(--text-secondary);
  margin: 16px 0 32px;
  font-size: 0.95rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-item svg {
  width: 24px;
  height: 24px;
  color: var(--bronze);
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.contact-item a,
.contact-item span {
  font-size: 0.92rem;
  color: var(--text-primary);
}

.booking-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: clamp(28px, 4vw, 48px);
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s, box-shadow 0.4s;
}

.booking-form-wrap:hover {
  border-color: var(--border-hover);
  box-shadow: 0 0 60px rgba(196, 149, 106, 0.1);
}

.booking-form-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--bronze), transparent);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--bronze);
  box-shadow: 0 0 0 3px var(--bronze-glow);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23C4956A' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-privacy {
  margin-bottom: 24px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--bg-elevated);
  position: relative;
  transition: border-color 0.3s, background 0.3s;
  margin-top: 2px;
}

.checkbox-label input:checked+.checkmark {
  background: var(--bronze);
  border-color: var(--bronze);
}

.checkbox-label input:checked+.checkmark::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border: solid #0A0A0A;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-label a {
  color: var(--bronze-light);
  text-decoration: underline;
}

.form-success {
  text-align: center;
  padding: 40px 20px;
}

.form-success svg {
  width: 64px;
  height: 64px;
  color: var(--bronze);
  margin-bottom: 24px;
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.form-success p {
  color: var(--text-secondary);
}


/* ===================
   FOOTER
   =================== */
.footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
}

.footer-einsatzgebiete {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 12px;
}

.footer-einsatzgebiete a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.3s;
  padding: 2px 0;
}

.footer-einsatzgebiete a:hover {
  color: var(--bronze-light);
}

.footer-logo {
  height: 50px;
  filter: invert(1) brightness(1);
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  margin-bottom: 20px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-secondary);
  transition: color 0.3s, border-color 0.3s, background 0.3s;
}

.footer-social a:hover {
  color: var(--bronze);
  border-color: var(--bronze);
  background: var(--bronze-subtle);
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  color: var(--text-secondary);
  font-size: 0.87rem;
  padding: 4px 0;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--bronze-light);
}

.footer-col p {
  color: var(--text-secondary);
  font-size: 0.87rem;
  line-height: 1.7;
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-muted);
}


/* ===================
   MODALS
   =================== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out);
}

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

.modal-content {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: clamp(28px, 5vw, 56px);
  max-width: 700px;
  width: 90vw;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.4s var(--ease-out);
}

.modal.open .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.3s;
  line-height: 1;
}

.modal-close:hover {
  color: var(--bronze);
}

.modal-content h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 28px;
  color: var(--bronze-light);
}

.modal-content h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 24px 0 8px;
  color: var(--text-primary);
}

.modal-content h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 16px 0 6px;
  color: var(--text-primary);
}

.modal-content p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 8px;
}

.modal-content a {
  color: var(--bronze-light);
}


/* ===================
   RESPONSIVE
   =================== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .bar-showcase {
    grid-template-columns: 1fr;
  }

  .bar-showcase--reversed {
    direction: ltr;
  }
}

@media (max-width: 768px) {

  .nav-links,
  .nav-inner .nav-cta {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .nav-inner {
    justify-content: center;
    padding-top: 8px;
  }

  .nav-logo {
    width: 140px;
    position: relative;
    left: auto;
    transform: none;
  }

  .navbar {
    height: 70px;
    align-items: center;
  }

  :root {
    --nav-height: 70px;
  }

  .logo-img {
    height: 64px;
  }

  .section-grid,
  .booking-grid {
    grid-template-columns: 1fr;
  }

  .section-about .section-image {
    order: -1;
  }

  .section-text .section-title {
    text-align: center;
  }

  .booking-info {
    position: static;
  }

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

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 220px;
  }

  .gallery-item--wide,
  .gallery-item--tall {
    grid-column: auto;
    grid-row: auto;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

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

  .hero-title {
    font-size: clamp(2.8rem, 12vw, 5rem);
  }

  .parallax-divider {
    height: 40vh;
    min-height: 300px;
  }

  .parallax-quote {
    font-size: clamp(1.2rem, 5vw, 1.8rem);
  }

  .fullwidth-slider {
    height: 60vh;
    min-height: 350px;
  }

  .slider-controls {
    bottom: 20px;
    right: 20px;
    gap: 12px;
  }

  .slider-progress {
    width: 60px;
  }

  .slide-caption {
    bottom: 80px;
    left: 20px;
  }

  .bar-showcase {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: clamp(1.8rem, 7vw, 3rem);
  }

  .faq-question {
    font-size: 1.1rem;
    padding: 20px 0;
  }

  .pricing-amount {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }

  .contact-item {
    flex-wrap: wrap;
  }

  .mobile-toggle {
    top: 20px;
    transform: none;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-tagline {
    font-size: 0.9rem;
    padding: 0 10px;
  }

  .fullwidth-slider {
    height: 50vh;
    min-height: 300px;
  }

  .container {
    padding: 0 16px;
  }

  .nav-logo {
    width: 120px;
  }

  .section-subtitle {
    font-size: 0.88rem;
  }

  .booking-form-wrap {
    padding: 24px 16px;
  }

  .event-card {
    padding: 28px 20px;
  }

  .service-card {
    padding: 28px 20px;
  }

  .review-card {
    padding: 24px 20px;
  }

  .why-us-section {
    padding: clamp(36px, 6vw, 60px) 24px;
  }
}


/* ===================
   SCROLLBAR
   =================== */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--bronze-dark);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--bronze);
}


/* ===================
   GRAIN OVERLAY
   =================== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.02;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px 128px;
}

/* Booking Form Date Picker Fix */
.booking-form input[type="date"] {
  position: relative;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.booking-form input[type="date"]::-webkit-calendar-picker-indicator {
  background: transparent;
  bottom: 0;
  color: transparent;
  cursor: pointer;
  height: auto;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: auto;
}

.form-group {
  position: relative;
}

.form-group:has(#eventDate)::after {
  display: none;
}

#eventDate {
  color-scheme: dark;
  cursor: pointer;
}

#eventDate::-webkit-calendar-picker-indicator {
  filter: invert(0.7) sepia(1) hue-rotate(350deg) saturate(3);
  cursor: pointer;
  padding: 4px;
  font-size: 1.1rem;
}

/* ===== PRICING HIGHLIGHT ===== */
.pricing-highlight {
  margin-bottom: clamp(48px, 6vw, 80px);
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: clamp(36px, 5vw, 60px);
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s, box-shadow 0.4s;
}

.pricing-card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 0 60px rgba(196, 149, 106, 0.1);
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--bronze), transparent);
}

.pricing-amount {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 5.5rem);
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 8px;
}

.pricing-amount span {
  font-size: 0.5em;
  color: var(--bronze);
  vertical-align: super;
}

.pricing-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--bronze-light);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.pricing-features {
  list-style: none;
  text-align: left;
  max-width: 480px;
  margin: 0 auto 28px;
}

.pricing-features li {
  padding: 10px 0;
  padding-left: 28px;
  position: relative;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  border-bottom: 1px solid var(--border);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--bronze);
  font-weight: 700;
}

.pricing-features li strong {
  color: var(--text-primary);
}

.pricing-cta-text {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== EVENTS SECTION ===== */
.section-events {
  background: var(--bg-primary);
}

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

.event-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  transition: transform 0.4s var(--ease-out), border-color 0.4s, box-shadow 0.4s;
}

.event-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  box-shadow: 0 20px 40px rgba(196, 149, 106, 0.08);
}

.event-card-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  color: var(--bronze);
}

.event-card-icon svg {
  width: 100%;
  height: 100%;
}

.event-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.event-card p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

@media (max-width: 900px) {
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ===== INTERACTIVE MAP ===== */
.section-map {
  background: var(--bg-primary);
}

.map-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.muensterland-map {
  width: 100%;
  height: auto;
}

/* District polygons */
.map-district polygon {
  fill: #1a1a1a;
  stroke: rgba(255, 255, 255, 0.18);
  stroke-width: 1.2;
  stroke-linejoin: round;
  transition: fill 0.4s, stroke 0.4s;
  cursor: pointer;
}

.map-district:hover polygon {
  fill: #252525;
  stroke: rgba(196, 149, 106, 0.4);
}

/* Kreisfreie Staedte */
.map-district--city polygon {
  fill: #1e1e1e;
}

.map-district--city:hover polygon {
  fill: #2a2a2a;
}

/* Warendorf home district */
.map-district--home polygon {
  fill: #1e1a15;
  stroke: rgba(196, 149, 106, 0.25);
  stroke-width: 1.5;
}

.map-district--home:hover polygon {
  fill: #28221a;
  stroke: rgba(196, 149, 106, 0.5);
}

/* District labels */
.map-district-label {
  fill: rgba(255, 255, 255, 0.35);
  font-size: 11px;
  font-family: var(--font-body);
  text-anchor: middle;
  letter-spacing: 0.15em;
  pointer-events: none;
  text-transform: uppercase;
}

.map-district:hover .map-district-label {
  fill: rgba(255, 255, 255, 0.6);
}

.map-district-label--small {
  font-size: 9.5px;
  letter-spacing: 0.1em;
}

.map-district-label--home {
  fill: rgba(196, 149, 106, 0.5);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
}

.map-district--home:hover .map-district-label--home {
  fill: rgba(196, 149, 106, 0.8);
}

/* City dots */
.map-dot {
  fill: rgba(255, 255, 255, 0.6);
  stroke: rgba(255, 255, 255, 0.2);
  stroke-width: 1;
  transition: fill 0.3s, stroke 0.3s;
}

.map-dot--home {
  fill: var(--bronze);
  stroke: var(--bronze-light);
  stroke-width: 2;
}

/* Pulsing home marker */
.map-pulse {
  fill: url(#pulseGlow);
  opacity: 0;
  animation: mapPulse 3s ease-in-out infinite;
}

@keyframes mapPulse {

  0%,
  100% {
    opacity: 0;
    r: 10;
  }

  50% {
    opacity: 0.5;
    r: 24;
  }
}

/* City labels */
.map-city-label {
  fill: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  font-family: var(--font-body);
  text-anchor: middle;
  pointer-events: none;
}

.map-city-label--offmap {
  fill: rgba(255, 255, 255, 0.4);
  font-size: 11px;
  font-style: italic;
}

/* City hover */
.map-city {
  cursor: pointer;
}

.map-city:hover .map-dot {
  fill: var(--bronze);
  stroke: var(--bronze-light);
}

.map-city:hover .map-city-label {
  fill: var(--bronze-light);
}

.map-city--home:hover .map-dot--home {
  filter: url(#glow);
}

/* Off-map indicator line */
.map-offmap-line {
  stroke: rgba(255, 255, 255, 0.15);
  stroke-width: 1;
  stroke-dasharray: 3, 4;
}

/* Map note */
.map-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 24px;
  font-style: italic;
}

@media (max-width: 600px) {
  .map-district-label {
    font-size: 8px;
    letter-spacing: 0.08em;
  }

  .map-district-label--small {
    font-size: 7px;
  }

  .map-district-label--home {
    font-size: 9px;
  }

  .map-city-label {
    font-size: 8px;
  }
}


/* ===== GOOGLE REVIEWS ===== */
.section-reviews {
  background: var(--bg-primary);
}

.reviews-header {
  text-align: center;
  margin-bottom: 20px;
}

.reviews-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 12px;
}

.reviews-score {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1;
}

.reviews-stars {
  display: flex;
  gap: 4px;
}

.reviews-stars svg {
  width: 28px;
  height: 28px;
  fill: var(--bronze);
}

.reviews-count {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 48px;
}

.reviews-count a {
  color: var(--bronze-light);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}

.reviews-count a:hover {
  border-bottom-color: var(--bronze-light);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.review-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}

.review-card:hover {
  border-color: var(--bronze-dark);
  transform: translateY(-4px);
}

.review-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--bronze-dark);
  opacity: 0.3;
  position: absolute;
  top: 12px;
  left: 20px;
  line-height: 1;
}

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.review-stars svg {
  width: 18px;
  height: 18px;
  fill: var(--bronze);
}

.review-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 20px;
  min-height: 80px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bronze-dark), var(--bronze-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--bg-primary);
  font-weight: 700;
}

.review-author-info {
  display: flex;
  flex-direction: column;
}

.review-author-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.review-author-source {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

.review-author-source svg {
  width: 14px;
  height: 14px;
}

.reviews-cta {
  text-align: center;
  margin-top: 48px;
}

.reviews-cta a {
  color: var(--bronze-light);
  font-size: 0.9rem;
  text-decoration: none;
  border-bottom: 1px solid var(--bronze-dark);
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
}

.reviews-cta a:hover {
  color: var(--text-primary);
  border-color: var(--text-primary);
}

@media (max-width: 768px) {
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .reviews-score {
    font-size: 2.5rem;
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ===================
   MOBILE GALLERY FILTER
   Auf Mobile nur die 5 ausgewählten Bilder (data-mobile="show") anzeigen
   =================== */
@media (max-width: 768px) {
  .gallery-item:not([data-mobile="show"]) {
    display: none;
  }

  /* Auf Mobile einspaltig darstellen */
  .gallery-grid {
    grid-template-columns: 1fr !important;
  }

  /* Breitformat-Items auf Mobile normalisieren */
  .gallery-item--wide,
  .gallery-item--tall {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
  }
}