/* =====================================================
   PRO CATERING SERVICE GMBH — COTTBUS
   style.css — Glassmorphism Redesign
   Edel & hochwertig · frisch & modern
   Farbschema aus Logo: Rot #C41E2C | Dunkel #26242B
   ===================================================== */

/* --- CSS VARIABLEN --- */
:root {
  --rot:           #C41E2C;
  --rot-dunkel:    #9E1623;
  --rot-hell:      #E8404F;
  --dunkel:        #26242B;
  --dunkel-soft:   #38353E;
  --gold:          #A8842C;
  --gold-hell:     #C9A84C;
  --weiss:         #FFFFFF;
  --hintergrund:   #F4F1EB;
  --fläche:        #EFEBE3;
  --text:          #2B2930;
  --text-soft:     #5C5860;
  --rahmen:        rgba(255,255,255,0.75);
  --schatten:      rgba(196, 30, 44, 0.18);
  --schatten-dark: rgba(38, 36, 43, 0.25);

  /* Glas-Token */
  --glas:          rgba(255, 255, 255, 0.52);
  --glas-stark:    rgba(255, 255, 255, 0.72);
  --glas-rand:     rgba(255, 255, 255, 0.85);
  --glas-dunkel:   rgba(255, 255, 255, 0.07);
  --glas-dunkel-rand: rgba(255, 255, 255, 0.14);
  --blur:          22px;
  --glas-schatten: 0 18px 50px rgba(38, 36, 43, 0.10), 0 2px 8px rgba(38, 36, 43, 0.05);

  --radius:        14px;
  --radius-lg:     24px;
  --transition:    0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading:  'Playfair Display', 'Georgia', serif;
  --font-body:     'Outfit', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --nav-h:         104px;
}

/* --- RESET & BASE --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:focus-visible {
  outline: 3px solid var(--rot);
  outline-offset: 3px;
  border-radius: 3px;
}

.form__input:focus-visible,
.form__textarea:focus-visible {
  outline: none;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--hintergrund);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

/* Ambiente: weiche Farbflächen hinter allen Glas-Ebenen */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(820px 540px at 8% -6%,   rgba(196, 30, 44, 0.10), transparent 65%),
    radial-gradient(700px 520px at 100% 22%, rgba(201, 168, 76, 0.12), transparent 65%),
    radial-gradient(640px 480px at 14% 78%,  rgba(232, 64, 79, 0.07), transparent 62%),
    radial-gradient(560px 420px at 86% 96%,  rgba(168, 132, 44, 0.08), transparent 60%),
    linear-gradient(180deg, #F7F4EF 0%, #F2EEE6 100%);
}

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

a {
  color: var(--rot);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover { color: var(--rot-dunkel); }

ul, ol { list-style: none; }

/* --- TYPOGRAFIE --- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.22;
  color: var(--dunkel);
}

h1 {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.3rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

h2::after {
  content: '';
  display: block;
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--rot), var(--gold-hell));
  margin-top: 0.6rem;
  border-radius: 2px;
}

/* Zentrierte Abschnitte: Linie mittig */
[style*="text-align:center"] h2::after,
[style*="text-align: center"] h2::after {
  margin-left: auto;
  margin-right: auto;
}

h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--dunkel-soft);
}

p {
  margin-bottom: 1.25rem;
  color: var(--text-soft);
  font-size: 1.04rem;
  font-weight: 300;
}

p:last-child { margin-bottom: 0; }

strong { font-weight: 600; }

/* --- LAYOUT UTILITIES --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 5.5rem 0;
  position: relative;
}

/* Getönter Abschnitt: sanfter Verlauf statt flacher Fläche */
.section--grau {
  background: linear-gradient(180deg,
    rgba(255,255,255,0) 0%,
    rgba(196, 30, 44, 0.035) 28%,
    rgba(201, 168, 76, 0.055) 100%);
}

/* Dunkler Abschnitt: tiefes Glas mit leuchtenden Farbinseln */
.section--dunkel {
  background:
    radial-gradient(640px 420px at 12% 8%,  rgba(196, 30, 44, 0.22), transparent 60%),
    radial-gradient(560px 400px at 88% 92%, rgba(201, 168, 76, 0.14), transparent 60%),
    linear-gradient(150deg, #2B2831 0%, #1D1B22 100%);
  color: var(--weiss);
  overflow: hidden;
}

.section--dunkel::before {
  content: '';
  position: absolute;
  top: -120px;
  right: 8%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(232, 64, 79, 0.16);
  filter: blur(70px);
  pointer-events: none;
}

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

.section--dunkel h2,
.section--dunkel h3 { color: var(--weiss); }
.section--dunkel p { color: rgba(255,255,255,0.82); }

/* --- NAVIGATION: schwebende Glas-Leiste --- */
.nav {
  position: fixed;
  top: 14px;
  left: 16px;
  right: 16px;
  margin: 0 auto;
  max-width: 1240px;
  z-index: 1000;
  height: 76px;
  background: var(--glas-stark);
  backdrop-filter: blur(var(--blur)) saturate(160%);
  -webkit-backdrop-filter: blur(var(--blur)) saturate(160%);
  border: 1px solid var(--glas-rand);
  border-radius: 22px;
  box-shadow:
    0 12px 40px rgba(38, 36, 43, 0.12),
    inset 0 1px 0 rgba(255,255,255,0.9);
  transition: box-shadow var(--transition), background var(--transition);
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.82);
  box-shadow:
    0 18px 50px rgba(38, 36, 43, 0.18),
    inset 0 1px 0 rgba(255,255,255,0.95);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1.5rem;
  max-width: none;
  padding: 0 1.25rem 0 1.5rem;
}

.nav__logo { flex-shrink: 0; }

.nav__logo img {
  height: 58px;
  width: auto;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav__item { position: relative; }

.nav__link {
  display: block;
  padding: 0.55rem 0.9rem;
  font-weight: 500;
  color: var(--dunkel);
  border-radius: 999px;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.nav__link:hover,
.nav__link--active {
  color: var(--rot);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 4px 14px rgba(38, 36, 43, 0.08), inset 0 1px 0 rgba(255,255,255,1);
}

/* Dropdown: Glaspanel */
.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  padding-top: 0.6rem;  /* Hover-Brücke */
  background: transparent;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 100;
}

.nav__dropdown::before {
  content: '';
  display: block;
  position: absolute;
  inset: 0.6rem 0 0;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(var(--blur)) saturate(160%);
  -webkit-backdrop-filter: blur(var(--blur)) saturate(160%);
  border: 1px solid var(--glas-rand);
  border-radius: 16px;
  box-shadow: 0 18px 50px rgba(38, 36, 43, 0.16), inset 0 1px 0 rgba(255,255,255,0.9);
  z-index: -1;
  pointer-events: none;
}

.nav__item:hover .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__dropdown a {
  display: block;
  padding: 0.68rem 1.25rem;
  font-size: 0.92rem;
  color: var(--text);
  font-weight: 400;
  transition: background var(--transition), color var(--transition), padding-left var(--transition);
  border-radius: 0;
}

.nav__dropdown a:first-child { border-radius: 16px 16px 0 0; }
.nav__dropdown a:last-child  { border-radius: 0 0 16px 16px; }

.nav__dropdown a:hover {
  background: rgba(196, 30, 44, 0.07);
  color: var(--rot);
  padding-left: 1.65rem;
}

/* Anruf-Button Navigation */
.nav__call {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.3rem;
  background: linear-gradient(135deg, #D6293A 0%, var(--rot-dunkel) 100%);
  color: var(--weiss) !important;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
  box-shadow: 0 8px 22px var(--schatten), inset 0 1px 0 rgba(255,255,255,0.4);
  text-transform: none !important;
  letter-spacing: 0 !important;
}

.nav__call:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px var(--schatten), inset 0 1px 0 rgba(255,255,255,0.45);
  color: var(--weiss) !important;
}

.nav__call svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dunkel);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

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

/* --- HERO: vollflächiges Bild, Inhalt im Glaspanel --- */
.hero {
  position: relative;
  margin-top: 0;
  overflow: hidden;
  background: var(--dunkel);
}

.hero__img {
  width: 100%;
  height: min(78vh, 700px);
  object-fit: cover;
  opacity: 0.85;
}

/* Tiefe: Verlauf über dem Bild */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(29, 27, 34, 0.45) 0%, rgba(29, 27, 34, 0.18) 35%, rgba(29, 27, 34, 0.55) 100%);
  pointer-events: none;
}

.hero__content {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 1rem) 2rem 2.5rem;
  color: var(--weiss);
}

/* Glaspanel um den Hero-Inhalt */
.hero__panel {
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255,255,255,0.35);
  padding: clamp(2rem, 4vw, 3.25rem) clamp(1.5rem, 5vw, 4rem);
  max-width: 820px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__label {
  display: inline-block;
  background: rgba(196, 30, 44, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.35);
  color: var(--weiss);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.35rem 1.1rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
  box-shadow: 0 6px 18px rgba(196, 30, 44, 0.35), inset 0 1px 0 rgba(255,255,255,0.35);
}

.hero h1 {
  color: var(--weiss);
  text-shadow: 0 2px 24px rgba(0,0,0,0.45);
  margin-bottom: 1rem;
  max-width: 720px;
}

.hero p {
  color: rgba(255,255,255,0.92);
  font-size: 1.15rem;
  max-width: 560px;
  text-shadow: 0 1px 10px rgba(0,0,0,0.4);
}

/* --- PAGE HEADER (Unterseiten) --- */
.page-header {
  margin-top: 0;
  padding: calc(var(--nav-h) + 3rem) 0 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(560px 380px at 14% 0%,  rgba(196, 30, 44, 0.26), transparent 62%),
    radial-gradient(520px 360px at 88% 100%, rgba(201, 168, 76, 0.16), transparent 60%),
    linear-gradient(150deg, #2B2831 0%, #1D1B22 100%);
}

.page-header::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -6%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(232, 64, 79, 0.14);
  filter: blur(60px);
  pointer-events: none;
}

.page-header .container { position: relative; z-index: 1; }

.page-header .breadcrumb {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}

.page-header .breadcrumb a { color: rgba(255,255,255,0.55); }
.page-header .breadcrumb a:hover { color: var(--rot-hell); }

.page-header h1 {
  color: var(--weiss);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  text-shadow: 0 2px 24px rgba(0,0,0,0.35);
}

/* --- KARTEN / CARDS: Milchglas mit Tiefe --- */
.card {
  background: var(--glas);
  backdrop-filter: blur(var(--blur)) saturate(150%);
  -webkit-backdrop-filter: blur(var(--blur)) saturate(150%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--glas-rand);
  overflow: hidden;
  box-shadow: var(--glas-schatten), inset 0 1px 0 rgba(255,255,255,0.85);
  transition: box-shadow var(--transition), transform var(--transition);
  will-change: transform;
  transform-style: preserve-3d;
  transform: perspective(1000px) rotateX(0) rotateY(0);
  cursor: default;
}

.card:hover {
  box-shadow:
    0 30px 70px rgba(38, 36, 43, 0.18),
    0 6px 20px rgba(196, 30, 44, 0.12),
    inset 0 1px 0 rgba(255,255,255,0.9);
}

.card__img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card:hover .card__img { transform: scale(1.04); }

.card__body { padding: 1.6rem; }

/* --- CSS GRID LAYOUTS --- */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

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

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

/* --- GALERIE --- */
.galerie {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.1rem;
}

.galerie--4 { grid-template-columns: repeat(4, 1fr); }

.galerie--6,
.galerie--9 { grid-template-columns: repeat(3, 1fr); }

.galerie__item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.65);
  box-shadow: 0 10px 30px rgba(38, 36, 43, 0.10);
  transition: transform var(--transition), box-shadow var(--transition);
}

.galerie__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.3s ease;
}

.galerie__item:hover img {
  transform: scale(1.06);
  filter: brightness(0.85);
}

.galerie__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(transparent, rgba(20, 18, 24, 0.78));
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  color: var(--weiss);
  font-size: 0.85rem;
  transform: translateY(100%);
  transition: transform var(--transition);
}

.galerie__item:hover .galerie__caption { transform: translateY(0); }

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition), filter var(--transition);
  position: relative;
  text-decoration: none;
  letter-spacing: 0.02em;
  will-change: transform;
  user-select: none;
  -webkit-user-select: none;
}

.btn--primary {
  background: linear-gradient(135deg, #D6293A 0%, var(--rot-dunkel) 100%);
  color: var(--weiss);
  border: 1px solid rgba(255,255,255,0.35);
  box-shadow: 0 12px 30px var(--schatten), inset 0 1px 0 rgba(255,255,255,0.4);
}

.btn--primary:hover {
  filter: brightness(1.08);
  color: var(--weiss);
  transform: translateY(-2px);
  box-shadow: 0 16px 38px var(--schatten), inset 0 1px 0 rgba(255,255,255,0.45);
}

.btn--primary:active {
  transform: translateY(1px);
  box-shadow: 0 5px 14px var(--schatten), inset 0 1px 0 rgba(255,255,255,0.3);
  transition: transform 0.08s, box-shadow 0.08s;
}

.btn--outline {
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  color: var(--rot);
  border: 1px solid rgba(196, 30, 44, 0.4);
  box-shadow: 0 8px 22px rgba(38, 36, 43, 0.08), inset 0 1px 0 rgba(255,255,255,0.8);
}

.btn--outline:hover {
  background: linear-gradient(135deg, #D6293A 0%, var(--rot-dunkel) 100%);
  color: var(--weiss);
  border-color: rgba(255,255,255,0.35);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px var(--schatten);
}

.btn--outline:active {
  transform: translateY(1px);
  transition: transform 0.08s, box-shadow 0.08s;
}

.btn--ghost {
  background: rgba(255,255,255,0.14);
  color: var(--weiss);
  border: 1px solid rgba(255,255,255,0.45);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.35);
}

.btn--ghost:hover {
  background: rgba(255,255,255,0.26);
  color: var(--weiss);
  border-color: rgba(255,255,255,0.75);
  transform: translateY(-2px);
}

.btn--ghost:active { transform: translateY(1px); }

/* --- PULSIERENDER ANRUF-BUTTON --- */
.call-button {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, #D6293A 0%, var(--rot-dunkel) 100%);
  color: var(--weiss);
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(196,30,44,0.45), inset 0 1px 0 rgba(255,255,255,0.4);
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
  animation: pulse-ring 2.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  will-change: transform, box-shadow;
}

.call-button:hover {
  filter: brightness(1.08);
  color: var(--weiss);
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 14px 40px rgba(196,30,44,0.55), inset 0 1px 0 rgba(255,255,255,0.45);
  animation-play-state: paused;
}

.call-button:active { transform: scale(0.97) translateY(1px); }

.call-button__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  animation: wiggle 3s ease-in-out infinite;
}

.call-button__text { line-height: 1.2; }
.call-button__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 400;
  opacity: 0.85;
  letter-spacing: 0.04em;
}

@keyframes pulse-ring {
  0%, 100% {
    box-shadow: 0 10px 30px rgba(196,30,44,0.45),
                0 0 0 0 rgba(196,30,44,0.5),
                inset 0 1px 0 rgba(255,255,255,0.4);
  }
  50% {
    box-shadow: 0 10px 30px rgba(196,30,44,0.45),
                0 0 0 14px rgba(196,30,44,0),
                inset 0 1px 0 rgba(255,255,255,0.4);
  }
}

@keyframes wiggle {
  0%, 80%, 100% { transform: rotate(0deg); }
  85% { transform: rotate(-15deg); }
  90% { transform: rotate(15deg); }
  95% { transform: rotate(-8deg); }
}

/* --- SCROLL-EINFLUG-ANIMATION --- */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.is-visible {
  opacity: 1 !important;
  transform: none !important;
}

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

@media (prefers-reduced-motion: reduce) {
  .fade-up, .fade-left, .fade-right, .fade-scale {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .call-button { animation: none; }
  .call-button__icon { animation: none; }
  html { scroll-behavior: auto; }
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* --- KONTAKT-FORMULAR: Glas-Felder --- */
.form {
  display: grid;
  gap: 1.25rem;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

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

.form__label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--dunkel);
}

.form__label .req { color: var(--rot); margin-left: 2px; }

.form__input,
.form__textarea,
.form__select {
  padding: 0.85rem 1.1rem;
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 14px rgba(38, 36, 43, 0.05), inset 0 1px 0 rgba(255,255,255,0.9);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  outline: none;
  width: 100%;
}

.form__input:focus,
.form__textarea:focus {
  border-color: rgba(196, 30, 44, 0.55);
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 0 0 4px rgba(196,30,44,0.12), inset 0 1px 0 rgba(255,255,255,0.95);
}

.form__textarea {
  min-height: 140px;
  resize: vertical;
}

.form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}

.form__checkbox input {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--rot);
  cursor: pointer;
}

.form__checkbox-label {
  font-size: 0.875rem;
  color: var(--text-soft);
  line-height: 1.5;
}

.form__checkbox-label a {
  color: var(--rot);
  text-decoration: underline;
}

/* --- USP / FEATURES: Glaskacheln --- */
.usp {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.25rem 1.5rem;
  background: var(--glas);
  backdrop-filter: blur(var(--blur)) saturate(150%);
  -webkit-backdrop-filter: blur(var(--blur)) saturate(150%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--glas-rand);
  box-shadow: var(--glas-schatten), inset 0 1px 0 rgba(255,255,255,0.85);
  transition: box-shadow var(--transition), transform var(--transition);
}

.usp:hover {
  box-shadow:
    0 26px 60px rgba(38, 36, 43, 0.15),
    inset 0 1px 0 rgba(255,255,255,0.9);
  transform: translateY(-4px);
}

.usp__icon {
  width: 68px;
  height: 68px;
  background: linear-gradient(135deg, var(--rot), var(--rot-hell));
  border: 1px solid rgba(255,255,255,0.45);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: 0 10px 26px var(--schatten), inset 0 1px 0 rgba(255,255,255,0.4);
}

.usp__icon svg {
  width: 28px;
  height: 28px;
  color: var(--weiss);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.usp h3 {
  font-size: 1.12rem;
  margin-bottom: 0.5rem;
  color: var(--dunkel);
}

.usp p {
  font-size: 0.92rem;
  margin: 0;
}

/* --- TEASER SECTION --- */
.teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glas-rand);
  box-shadow: var(--glas-schatten);
}

.teaser-grid__img {
  position: relative;
  overflow: hidden;
}

.teaser-grid__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.7s ease;
}

.teaser-grid__img--contain {
  background: #ffffff;
}

.teaser-grid__img--contain img {
  object-fit: contain;
  object-position: center center;
}

.teaser-grid__img:hover img { transform: scale(1.04); }

.teaser-grid__content {
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--glas-stark);
  backdrop-filter: blur(var(--blur)) saturate(150%);
  -webkit-backdrop-filter: blur(var(--blur)) saturate(150%);
}

/* --- FOOTER --- */
.footer {
  background:
    radial-gradient(560px 360px at 6% 0%,   rgba(196, 30, 44, 0.16), transparent 60%),
    radial-gradient(520px 340px at 94% 100%, rgba(201, 168, 76, 0.10), transparent 58%),
    linear-gradient(160deg, #2B2831 0%, #1B1920 100%);
  color: rgba(255,255,255,0.7);
  padding: 4.5rem 0 1.5rem;
  position: relative;
  overflow: hidden;
}

.footer .container { position: relative; z-index: 1; }

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__logo {
  height: 48px;
  margin-bottom: 1.25rem;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.footer h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--weiss);
  margin-bottom: 1.25rem;
}

.footer__links a {
  display: block;
  color: rgba(255,255,255,0.62);
  font-size: 0.92rem;
  padding: 0.25rem 0;
  transition: color var(--transition), padding-left var(--transition);
}

.footer__links a:hover {
  color: var(--rot-hell);
  padding-left: 4px;
}

.footer__contact p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.62);
  margin-bottom: 0.35rem;
}

.footer__contact strong { color: var(--weiss); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer__bottom a {
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}

.footer__bottom a:hover { color: rgba(255,255,255,0.75); }

/* --- INFOBOX / KONTAKTDATEN: dunkles Glas --- */
.info-box {
  background:
    radial-gradient(360px 260px at 90% -10%, rgba(232, 64, 79, 0.20), transparent 60%),
    radial-gradient(300px 220px at 0% 110%,  rgba(201, 168, 76, 0.14), transparent 58%),
    linear-gradient(150deg, #2E2B34 0%, #1D1B22 100%);
  color: var(--weiss);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(38, 36, 43, 0.28), inset 0 1px 0 rgba(255,255,255,0.12);
}

.info-box::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: rgba(196,30,44,0.20);
  filter: blur(36px);
  pointer-events: none;
}

.info-box h3 { color: var(--weiss); margin-bottom: 1.5rem; }

.info-box__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.info-box__item:last-child { margin-bottom: 0; }

.info-box__icon {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18);
}

.info-box__icon svg {
  width: 20px;
  height: 20px;
  color: var(--rot-hell);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.info-box__text strong {
  display: block;
  color: var(--weiss);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.15rem;
  font-weight: 600;
}

.info-box__text span {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.78);
}

/* --- LEISTUNGS-LISTE: Glas-Chips --- */
.leistung-liste {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.85rem;
}

.leistung-liste__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8rem 1.05rem;
  background: var(--glas);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  border: 1px solid var(--glas-rand);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--text-soft);
  box-shadow: 0 6px 18px rgba(38, 36, 43, 0.06), inset 0 1px 0 rgba(255,255,255,0.85);
  transition: background var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.leistung-liste__item:hover {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(196, 30, 44, 0.35);
  transform: translateX(4px);
  box-shadow: 0 10px 26px rgba(38, 36, 43, 0.10), inset 0 1px 0 rgba(255,255,255,0.95);
}

.leistung-liste__item::before {
  content: '';
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rot), var(--rot-hell));
  box-shadow: 0 2px 6px rgba(196,30,44,0.4);
  flex-shrink: 0;
}

/* --- REFERENZ HERO --- */
.referenz-hero { margin-bottom: 3rem; }

.referenz-hero h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 0.75rem;
}

.referenz-hero p {
  font-size: 1.05rem;
  max-width: 680px;
}

/* --- DATENSCHUTZ / RECHTLICHES TEXT --- */
.rechtstext h2 { margin-top: 2.5rem; margin-bottom: 1rem; }
.rechtstext h2::after { display: none; }
.rechtstext h3 { margin-top: 1.75rem; margin-bottom: 0.75rem; }
.rechtstext p,
.rechtstext li {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-soft);
  margin-bottom: 0.75rem;
}
.rechtstext ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.rechtstext a { color: var(--rot); text-decoration: underline; }

/* --- MAP LINK CARD --- */
a[href*="google.com/maps"].fade-right:hover {
  box-shadow:
    0 30px 70px rgba(38, 36, 43, 0.18),
    0 6px 20px rgba(196, 30, 44, 0.12),
    inset 0 1px 0 rgba(255,255,255,0.9);
  transform: translateY(-4px);
}

/* --- BREADCRUMB --- */
.breadcrumb-bar {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  border-bottom: 1px solid rgba(255,255,255,0.7);
  padding: 0.8rem 0;
  font-size: 0.82rem;
  color: var(--text-soft);
}

.breadcrumb-bar a {
  color: var(--text-soft);
  transition: color var(--transition);
}

.breadcrumb-bar a:hover { color: var(--rot); }

.breadcrumb-bar span { color: rgba(92, 88, 96, 0.4); margin: 0 0.5rem; }

/* --- SKIP LINK --- */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  padding: 0.5rem 1rem;
  background: var(--rot);
  color: var(--weiss);
  border-radius: var(--radius);
  z-index: 9999;
  font-weight: 600;
  transition: top 0.2s;
}

.skip-link:focus { top: 1rem; }

/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 1024px) {
  :root { --nav-h: 100px; }

  /* --- Abstände --- */
  .section { padding: 4rem 0; }
  .container { padding: 0 1.5rem; }

  /* --- Navigation --- */
  .nav {
    top: 10px;
    left: 10px;
    right: 10px;
    height: 72px;
  }

  .nav__menu { display: none; }
  .nav__toggle { display: flex; }

  .nav__menu.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(var(--blur)) saturate(160%);
    -webkit-backdrop-filter: blur(var(--blur)) saturate(160%);
    border: 1px solid var(--glas-rand);
    border-radius: 20px;
    padding: 1rem;
    gap: 0.25rem;
    box-shadow: 0 24px 60px rgba(38, 36, 43, 0.28), inset 0 1px 0 rgba(255,255,255,1);
    max-height: calc(100vh - var(--nav-h) - 20px);
    overflow-y: auto;
    isolation: isolate;
  }

  .nav__link { padding: 0.65rem 0.85rem; }

  .nav__dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: rgba(196, 30, 44, 0.045);
    border-radius: var(--radius);
    margin-top: 0.25rem;
    padding-top: 0;
    display: none;
  }

  .nav__dropdown::before { display: none; }
  .nav__item.open .nav__dropdown { display: block; }

  .nav__call {
    margin-top: 0.5rem;
    justify-content: center;
  }

  /* --- Hero: Bild wird absolut, Inhalt bestimmt die Höhe --- */
  .hero__img {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .hero__content {
    position: relative;
    inset: unset;
    padding: calc(var(--nav-h) + 1.5rem) 1.25rem 2.5rem;
  }
  .hero__panel {
    width: 100%;
    max-width: 504px;
    padding: 1.1rem 1.35rem;
    border-radius: 14px;
  }
  .hero__label {
    font-size: 0.61rem;
    letter-spacing: 0.1em;
    padding: 0.25rem 0.8rem;
    margin-bottom: 0.6rem;
  }
  .hero h1 {
    font-size: clamp(1.35rem, 2.9vw, 1.8rem);
    margin-bottom: 0.45rem;
  }
  .hero p {
    font-size: 0.79rem;
    max-width: 100%;
    margin-bottom: 0;
  }
  .hero__panel > div[style*="flex"] {
    margin-top: 1rem;
    gap: 0.55rem;
  }
  .hero__panel .btn {
    padding: 0.63rem 1.25rem;
    font-size: 0.79rem;
  }

  /* --- Grids --- */
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }

  /* --- Karten --- */
  .card__img { height: 200px; }

  /* --- Leistungsliste --- */
  .leistung-liste {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }

  /* --- Teaser-Grid --- */
  .teaser-grid {
    grid-template-columns: 1fr;
    min-height: unset;
  }

  .teaser-grid__img {
    height: auto;
    aspect-ratio: 16 / 7;
  }

  .teaser-grid__img img { object-position: top center; }
  .teaser-grid__content { padding: 2rem 1.75rem; }

  /* --- Formular --- */
  .form__row { grid-template-columns: 1fr; }

  /* --- Galerie --- */
  .galerie { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
  .galerie--4 { grid-template-columns: repeat(2, 1fr); }
  .galerie--6,
  .galerie--9 { grid-template-columns: repeat(3, 1fr); }

  /* --- Seiten-Header & Infobox --- */
  .page-header { padding: calc(var(--nav-h) + 2rem) 0 2.5rem; }
  .info-box { padding: 2rem 1.5rem; }

  /* --- Footer --- */
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .footer__bottom > div {
    flex-wrap: wrap;
    gap: 1rem;
  }
}

@media (max-width: 640px) {
  .container { padding: 0 1.25rem; }
  .section { padding: 3.25rem 0; }

  .grid-2, .grid-3 { grid-template-columns: 1fr; }

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

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .teaser-grid__img { aspect-ratio: 16 / 8; }
  .teaser-grid__content { padding: 1.75rem 1.25rem; }

  .hero__img { height: 440px; }
  .hero h1 { font-size: clamp(1.6rem, 7vw, 2.4rem); }
  .hero__panel { padding: 1.75rem 1.25rem; }

  .hero .btn {
    width: 100%;
    justify-content: center;
  }

  .hero__content > div[style*="flex"],
  .hero__panel > div[style*="flex"] {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 320px;
  }

  .galerie {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 0.6rem;
  }

  .galerie--4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
  }

  .galerie--6,
  .galerie--9 {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
  }

  .card__img { height: 180px; }
  .card__body { padding: 1.1rem; }

  .page-header { padding: calc(var(--nav-h) + 1.25rem) 0 2rem; }
  .page-header h1 { font-size: clamp(1.5rem, 6vw, 2rem); }

  .usp { padding: 1.5rem 1rem; }

  .breadcrumb-bar { font-size: 0.78rem; }

  .call-button {
    bottom: 1rem;
    right: 1rem;
    padding: 0.8rem 1.1rem;
    font-size: 0.88rem;
    gap: 0.5rem;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.78rem;
  }

  .rechtstext h2 { font-size: 1.15rem; }
  .rechtstext h3 { font-size: 1rem; }
}

@media (max-width: 480px) {
  :root { --nav-h: 92px; }

  .container { padding: 0 1rem; }
  .section { padding: 2.75rem 0; }

  .nav { height: 66px; }
  .nav__logo img { height: 48px; }

  .hero__img { height: 400px; }
  .hero__content { padding: calc(var(--nav-h) + 0.5rem) 1rem 1.5rem; }
  .hero__label { font-size: 0.7rem; }

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

  .teaser-grid__img { aspect-ratio: 16 / 9; }

  .galerie {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }

  .galerie--4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .galerie--6,
  .galerie--9 {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .galerie__item { border-radius: 10px; }

  .card__img { height: 160px; }

  .call-button__text { display: none; }

  .call-button {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    padding: 0;
    justify-content: center;
    align-items: center;
  }

  .call-button__icon {
    width: 26px;
    height: 26px;
  }

  .teaser-grid__content .btn,
  .section .btn {
    width: 100%;
    justify-content: center;
  }

  .referenz-hero h2 { font-size: 1.2rem; }
  .referenz-hero p { font-size: 0.95rem; }

  .info-box { padding: 1.5rem 1.25rem; }
  .info-box__item { gap: 0.75rem; }

  .footer__logo { height: 40px; }

  .page-header { padding: calc(var(--nav-h) + 1rem) 0 1.75rem; }
}

/* =====================================================
   LIGHTBOX
   ===================================================== */
.lb-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(20, 18, 24, 0.78);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 4.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.lb-overlay.lb-open {
  opacity: 1;
  pointer-events: all;
}

.lb-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 100%;
  transform: scale(0.72) translateY(24px);
  opacity: 0;
  transition: transform 0.62s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.42s ease;
}

.lb-overlay.lb-open .lb-inner {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.lb-img {
  max-width: 92vw;
  max-height: 92vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.55),
              0 6px 24px rgba(0, 0, 0, 0.3);
  display: block;
}

.lb-caption {
  margin-top: 1.1rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-family: var(--font-heading);
  font-style: italic;
  text-align: center;
  max-width: 640px;
  min-height: 1.4em;
  letter-spacing: 0.01em;
}

.lb-caption::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--rot), var(--gold-hell));
  margin: 0 auto 0.55rem;
}

.lb-close {
  position: fixed;
  top: 1.1rem;
  right: 1.1rem;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(196, 30, 44, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 22px rgba(196, 30, 44, 0.45);
  transition: background 0.22s ease, transform 0.25s ease;
  z-index: 2002;
}

.lb-close:hover {
  background: var(--rot-dunkel);
  transform: scale(1.1) rotate(90deg);
}

.lb-prev,
.lb-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, border-color 0.25s ease,
              transform 0.25s ease, opacity 0.2s ease;
  z-index: 2002;
}

.lb-prev { left: 1.1rem; }
.lb-next { right: 1.1rem; }

.lb-prev:hover,
.lb-next:hover {
  background: var(--rot);
  border-color: rgba(255,255,255,0.4);
  box-shadow: 0 6px 22px rgba(196, 30, 44, 0.45);
}

.lb-prev:hover { transform: translateY(-50%) scale(1.1); }
.lb-next:hover { transform: translateY(-50%) scale(1.1); }

.lb-prev:disabled,
.lb-next:disabled {
  opacity: 0.18;
  cursor: default;
  pointer-events: none;
}

.lb-counter {
  position: fixed;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.75rem;
  font-family: var(--font-body);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  pointer-events: none;
  z-index: 2002;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.galerie__item { cursor: zoom-in; }

.galerie__item::after {
  content: '+';
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  width: 30px;
  height: 30px;
  background: rgba(196, 30, 44, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 300;
  font-family: sans-serif;
  line-height: 27px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
  z-index: 2;
  box-shadow: 0 2px 10px rgba(196, 30, 44, 0.5);
}

.galerie__item:hover::after {
  opacity: 1;
  transform: scale(1.08);
}

@media (max-width: 640px) {
  .lb-overlay { padding: 1rem 3.2rem; }
  .lb-prev { left: 0.35rem; width: 40px; height: 40px; }
  .lb-next { right: 0.35rem; width: 40px; height: 40px; }
  .lb-close { top: 0.6rem; right: 0.6rem; width: 38px; height: 38px; }
  .lb-img { max-height: 72vh; }
}

@media (min-width: 1025px) {
  .lb-overlay { padding: 0.5rem 3.5rem; }
  .lb-img {
    width: clamp(540px, 72vw, 1440px);
    height: auto;
    max-height: 86vh;
  }
}

/* =====================================================
   DATENSCHUTZ-BANNER
   ===================================================== */
.privacy-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(38, 36, 43, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  animation: privacyFadeIn 0.35s ease;
}

@keyframes privacyFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.privacy-box {
  background: var(--glas-stark);
  backdrop-filter: blur(var(--blur));
  -webkit-backdrop-filter: blur(var(--blur));
  border: 1px solid var(--glas-rand);
  border-radius: var(--radius-lg);
  box-shadow: 0 32px 80px rgba(38,36,43,0.38), 0 4px 16px rgba(196,30,44,0.12);
  max-width: 640px;
  width: 100%;
  padding: 2.5rem;
  animation: privacySlideUp 0.45s cubic-bezier(0.34, 1.45, 0.64, 1);
}

@keyframes privacySlideUp {
  from { opacity: 0; transform: translateY(36px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.privacy-box__icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--rot) 0%, var(--rot-dunkel) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: 0 6px 20px rgba(196,30,44,0.35);
}

.privacy-box__title {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--dunkel);
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}

.privacy-box__sub {
  color: var(--text-soft);
  font-size: 0.88rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.privacy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  margin-bottom: 1.1rem;
}

.privacy-col {
  background: rgba(255,255,255,0.55);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255,255,255,0.75);
}

.privacy-col__head {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 0.65rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.privacy-col--nein .privacy-col__head { color: #2D8A4E; }
.privacy-col--ja   .privacy-col__head { color: var(--rot); }

.privacy-col ul {
  list-style: none;
  font-size: 0.83rem;
  color: var(--text);
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
}

.privacy-col ul li::before {
  content: '·';
  margin-right: 0.45rem;
  color: var(--text-soft);
}

.privacy-server {
  background: rgba(38,36,43,0.06);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 0.8rem 1rem;
  font-size: 0.81rem;
  color: var(--text-soft);
  margin-bottom: 1.5rem;
  line-height: 1.55;
}

.privacy-server strong { color: var(--text); }

.privacy-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.privacy-actions .btn--primary {
  flex: 1;
  justify-content: center;
  min-width: 180px;
}

.privacy-link {
  font-size: 0.84rem;
  color: var(--text-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
  white-space: nowrap;
}

.privacy-link:hover { color: var(--rot); }

@media (max-width: 580px) {
  .privacy-box  { padding: 1.75rem 1.25rem; }
  .privacy-grid { grid-template-columns: 1fr; }
  .privacy-actions { flex-direction: column; }
  .privacy-actions .btn--primary { width: 100%; min-width: unset; }
}
