/* ════════════════════════════════════════
   VARIABLEN & RESET
════════════════════════════════════════ */
:root {
  /* Punkt 1: Schwarz → abgestuftes Dunkelgrau. Weiß → warmes Gold-Weiß */
  --schwarz:    #2E2E2C;       /* war #1C1C1C – weicher, nicht reines Schwarz */
  --rot:        #C8001A;
  --gold:       #C9A332;
  --gold-hell:  #E8C45A;
  --gold-dunkel:#8B6D14;
  --gold-weiss: #FAF7F0;       /* NEU: leichtes Gold statt reines Weiß */
  --weiss:      #FAF7F0;       /* Punkt 1: statt #FAFAF8 – wärmer, leicht golden */
  --grau-hell:  #F0EDE6;       /* wärmer */
  --grau-mid:   #D8D4CC;
  --grau-text:  #555550;
  --text:       #2E2E2C;

  /* Punkt 2: Neue Buttonfarbe – leicht gold statt schwarz mit goldener Schrift */
  --btn-haupt-bg:   #F0E8D0;   /* helles Gold */
  --btn-haupt-text: #2E2E2C;   /* dunkler Text drauf */

  --nav-h: 80px;
  --flag-h: 14px;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body {
  /* Punkt 5: Barlow als klare serifenlose Hauptschrift */
  font-family: 'Barlow', sans-serif;
  background: var(--weiss);
  color: var(--text);
  overflow-x: hidden;
  max-width: 100%;
}

/* ════════════════════════════════════════
   DEUTSCHLANDFAHNE BALKEN (oben)
════════════════════════════════════════ */
.flag-stripe {
  display: flex;
  height: var(--flag-h);
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
}
.flag-stripe .s1 { flex:1; background: var(--schwarz); }
.flag-stripe .s2 { flex:1; background: var(--rot); }
.flag-stripe .s3 { flex:1; background: var(--gold); }

/* ════════════════════════════════════════
   NAVIGATION
════════════════════════════════════════ */
nav {
  position: fixed;
  top: var(--flag-h);
  left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: var(--weiss);
  border-bottom: 1px solid var(--grau-mid);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4%;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  width: 100%;
  max-width: 100vw;
  overflow: visible;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 2px;
  text-decoration: none;
}

.logo-img {
  height: 50px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.logo-text {
  line-height: 1.2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.logo-text strong {
  display: block;
  font-family: 'Barlow', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--schwarz);
  letter-spacing: 0.01em;
  line-height: 1.15;
}
.logo-text span {
  display: block;
  font-family: 'Barlow', sans-serif;
  font-size: 0.62rem;
  font-weight: 400;
  color: var(--rot);
  margin-top: 1px;
  line-height: 1;
  letter-spacing: 0.11em;
  width: 100%;
}

/* Hauptmenü */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 0;
  align-items: center;
}
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: block;
  padding: 0 0.75rem;
  height: var(--nav-h);
  line-height: var(--nav-h);
  font-family: 'Barlow', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  border-bottom: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.nav-menu > li > a:hover,
.nav-menu > li > a.aktiv {
  color: var(--schwarz);
  border-bottom-color: var(--gold);
}

/* Dropdown */
.nav-menu li:hover .dropdown { display: block; }
.dropdown {
  display: none;
  position: absolute;
  top: calc(var(--nav-h) - 3px);
  left: 0;
  min-width: 200px;
  background: var(--weiss);
  border: 1px solid var(--grau-mid);
  border-top: 3px solid var(--gold);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  z-index: 50;
}
.dropdown a {
  display: block;
  padding: 0.7rem 1.2rem;
  font-family: 'Barlow', sans-serif;
  font-size: 0.88rem;
  color: var(--text);
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: all 0.15s;
}
.dropdown a:hover {
  background: var(--grau-hell);
  border-left-color: var(--gold);
  color: var(--schwarz);
}

/* Punkt 2: Anfrage-Button – leicht golden statt schwarz/gold-Negativschrift */
.nav-cta {
  margin-left: 1rem;
  background: var(--gold) !important;
  color: var(--schwarz) !important;
  padding: 0.5rem 1.4rem !important;
  height: auto !important;
  line-height: 1.4 !important;
  border-radius: 2px;
  border-bottom: none !important;
  font-size: 0.88rem !important;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--gold-hell) !important; color: var(--schwarz) !important; }

/* Hamburger (mobil) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--schwarz);
  transition: all 0.3s;
}

/* ════════════════════════════════════════
   SEITEN-WRAPPER
════════════════════════════════════════ */
.page-wrapper {
  padding-top: calc(var(--nav-h) + var(--flag-h));
}

/* ════════════════════════════════════════
   VIDEO HERO SLIDER
════════════════════════════════════════ */
.hero-slider {
  position: relative;
  width: 100%;
  height: 55vh;
  min-height: 380px;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  z-index: 0;
}
.slide.aktiv-slide { opacity: 1; z-index: 1; }

.slide video {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%; min-height: 100%;
  width: auto; height: auto;
  object-fit: cover;
  z-index: 0;
}

/* Punkt 3: Overlay weniger hart – von 0.55 auf 0.42 */
.slide-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.42);
  z-index: 1;
}

/* Punkt 7: Text links im ersten Drittel, Buttons untereinander */
.slide-inhalt {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 8%;
  max-width: 44%;   /* Punkt 7: linkes Drittel/Hälfte – Video rechts sichtbar */
}

.slide-label {
  font-family: 'Barlow', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  /* Punkt 4: kein uppercase */
  color: var(--gold-hell);
  margin-bottom: 0.8rem;
  opacity: 0;
  transform: translateY(16px);
  transition: all 0.7s ease 0.3s;
}
.slide.aktiv-slide .slide-label { opacity: 1; transform: translateY(0); }

.slide-inhalt h2 {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 600;
  font-style: italic;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 0.8rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s ease 0.5s;
  text-shadow: 0 2px 16px rgba(0,0,0,0.7);
}
.slide.aktiv-slide .slide-inhalt h2 { opacity: 1; transform: translateY(0); }

.slide-inhalt p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.65;
  max-width: 400px;
  margin-bottom: 1.8rem;
  font-weight: 400;
  opacity: 0;
  transform: translateY(16px);
  transition: all 0.7s ease 0.7s;
}
.slide.aktiv-slide .slide-inhalt p { opacity: 1; transform: translateY(0); }

/* Punkt 7: Buttons untereinander statt nebeneinander */
.slide-buttons {
  display: flex;
  flex-direction: column;   /* untereinander */
  gap: 0.7rem;
  align-items: flex-start;
  opacity: 0;
  transform: translateY(16px);
  transition: all 0.7s ease 0.9s;
}
.slide.aktiv-slide .slide-buttons { opacity: 1; transform: translateY(0); }

/* Buttons */
.btn-rot {
  background: var(--rot);
  color: #fff;
  padding: 0.75rem 2rem;
  font-family: 'Barlow', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  /* Punkt 4: kein uppercase */
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s;
  display: inline-block;
  cursor: pointer;
  border: none;
}
.btn-rot:hover { background: #A00015; }

.btn-rahmen {
  background: transparent;
  color: rgba(255,255,255,0.9);
  padding: 0.75rem 2rem;
  font-family: 'Barlow', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  /* Punkt 4: kein uppercase */
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.45);
  border-radius: 2px;
  transition: all 0.2s;
  display: inline-block;
  cursor: pointer;
}
.btn-rahmen:hover { border-color: var(--gold); color: var(--gold); }

/* Slider Pfeile */
.slider-pfeil {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.2s;
  backdrop-filter: blur(4px);
}
.slider-pfeil:hover { background: var(--rot); border-color: var(--rot); }
.slider-pfeil-links  { left: 2%; }
.slider-pfeil-rechts { right: 2%; }

.slider-dots {
  position: absolute;
  bottom: 1.8rem; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 0.6rem;
  z-index: 10;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}
.dot.aktiv-dot {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* ════════════════════════════════════════
   Punkt 3: SEIT-BANNER – aufgehellt
════════════════════════════════════════ */
.seit-banner {
  background: var(--grau-hell);     /* war --schwarz */
  color: var(--gold-dunkel);        /* war --gold */
  text-align: center;
  padding: 0.9rem;
  font-family: 'Barlow', sans-serif;
  font-size: 0.82rem;
  /* Punkt 4: kein uppercase */
  border-bottom: 1px solid var(--grau-mid);
}

/* ════════════════════════════════════════
   GOLD-TRENNLINIE
════════════════════════════════════════ */
.gold-linie {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 2.5rem 8%;
}
.gold-linie::before, .gold-linie::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--grau-mid), transparent);
}
.gold-linie-raute {
  width: 8px; height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
}

/* ════════════════════════════════════════
   Punkt 3: ÜBER UNS – Fakten-Block aufgehellt
════════════════════════════════════════ */
.ueber-uns {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  background: var(--grau-hell);
  border-bottom: 2px solid var(--gold);
}
.ueber-text {
  padding: 4rem 6% 4rem 8%;
  border-right: 1px solid var(--grau-mid);
}
.obertext-klein {
  font-family: 'Barlow', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  /* Punkt 4: kein uppercase */
  color: var(--gold-dunkel);
  margin-bottom: 0.6rem;
}
.ueber-text h2 {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 600;
  color: var(--schwarz);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}
.ueber-text p {
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem;
  color: var(--grau-text);
  line-height: 1.75;
  margin-bottom: 1rem;
  max-width: 500px;
}

/* Punkt 2: btn-dunkel – nicht mehr Negativschrift */
.btn-dunkel {
  display: inline-block;
  margin-top: 0.8rem;
  background: var(--gold);          /* war --schwarz */
  color: var(--schwarz);            /* war --gold */
  padding: 0.7rem 1.8rem;
  font-family: 'Barlow', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  /* Punkt 4: kein uppercase */
  text-decoration: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  border: none;
}
.btn-dunkel:hover { background: var(--gold-dunkel); color: #fff; }

/* Punkt 3: Fakten-Block – abgestuft statt reines Schwarz */
.ueber-fakten {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #3A3A38;   /* war --schwarz #1C1C1C – jetzt weiches Dunkelgrau */
}
.fakt {
  padding: 2.5rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.fakt:nth-child(2), .fakt:nth-child(4) { border-right: none; }
.fakt:nth-child(3), .fakt:nth-child(4) { border-bottom: none; }
.fakt-zahl {
  font-family: 'Barlow', sans-serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.fakt-text {
  font-family: 'Barlow', sans-serif;
  font-size: 0.82rem;
  /* Punkt 4: kein uppercase */
  color: rgba(250,250,248,0.6);
}

@media (max-width: 900px) {
  .ueber-uns { grid-template-columns: 1fr; }
  .ueber-text { border-right: none; border-bottom: 1px solid var(--grau-mid); padding: 3rem 6%; }
}

/* ════════════════════════════════════════
   SECTION HEADER
════════════════════════════════════════ */
.section-header {
  padding: 3rem 8% 0;
  margin-bottom: 2rem;
}
.section-header .obertext {
  font-family: 'Barlow', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  /* Punkt 4: kein uppercase */
  color: var(--gold-dunkel);
  margin-bottom: 0.4rem;
}
.section-header h2 {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--schwarz);
  font-weight: 600;
}
.section-header p {
  margin-top: 0.6rem;
  color: var(--grau-text);
  font-size: 0.95rem;
  max-width: 560px;
  line-height: 1.65;
}

/* ════════════════════════════════════════
   PRODUKT-KACHELN
════════════════════════════════════════ */
.hero-kacheln-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  background: #3A3A38;    /* Punkt 3: aufgehellt von --schwarz */
  border-bottom: 2px solid var(--gold);
}
.hero-kachel {
  padding: 1.4rem 1rem;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  color: rgba(250,250,248,0.75);
  transition: all 0.2s;
  border-right: 1px solid rgba(255,255,255,0.07);
  display: block;
}
.hero-kachel:last-child { border-right: none; }
.hero-kachel:hover {
  background: rgba(201,163,50,0.15);
  color: var(--gold);
}
.hero-kachel .icon { font-size: 1.5rem; margin-bottom: 0.3rem; display:block; }
.hero-kachel strong {
  display: block;
  font-family: 'Barlow', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  /* Punkt 4: kein uppercase */
}

/* ════════════════════════════════════════
   PRODUKT-GRID (Startseite)
════════════════════════════════════════ */
.produkt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5px;
  background: var(--grau-mid);
}
.produkt-karte {
  background: var(--weiss);
  padding: 2.5rem 2rem;
  text-decoration: none;
  color: var(--text);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  border-left: 4px solid transparent;
  transition: all 0.25s;
}
.produkt-karte:hover {
  border-left-color: var(--gold);
  background: var(--grau-hell);
}
.produkt-karte .pk-icon { font-size: 2.2rem; }
.produkt-karte .pk-titel {
  font-family: 'Barlow', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--schwarz);
}
.produkt-karte .pk-text {
  font-family: 'Barlow', sans-serif;
  font-size: 0.88rem;
  color: var(--grau-text);
  line-height: 1.55;
}
.produkt-karte .pk-pfeil {
  font-size: 0.85rem;
  color: var(--gold-dunkel);
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  /* Punkt 4: kein uppercase */
  margin-top: auto;
  padding-top: 0.5rem;
}

/* ════════════════════════════════════════
   SERVICE LEISTE
════════════════════════════════════════ */
.service-leiste {
  background: #3A3A38;    /* Punkt 3: aufgehellt */
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.service-item {
  padding: 2rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.08);
  text-decoration: none;
  color: var(--weiss);
  cursor: pointer;
  transition: background 0.2s;
  display: block;
}
.service-item:last-child { border-right: none; }
.service-item:hover { background: rgba(201,163,50,0.1); }
.service-item .si-label {
  font-family: 'Barlow', sans-serif;
  font-size: 0.76rem;
  /* Punkt 4: kein uppercase */
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.service-item .si-titel {
  font-family: 'Barlow', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}
.service-item .si-text {
  font-size: 0.85rem;
  color: rgba(250,250,248,0.6);
  line-height: 1.55;
}

/* ════════════════════════════════════════
   Punkt 3: UNTERSEITE HEADER – aufgehellt
════════════════════════════════════════ */
.unterseite-header {
  background: var(--grau-hell);     /* war --schwarz */
  padding: 3rem 8%;
  border-bottom: 3px solid var(--gold);
  border-top: 3px solid var(--rot);
}
.unterseite-header .breadcrumb {
  font-family: 'Barlow', sans-serif;
  font-size: 0.8rem;
  /* Punkt 4: kein uppercase */
  color: var(--grau-text);
  margin-bottom: 0.6rem;
}
.unterseite-header .breadcrumb a { color: var(--grau-text); text-decoration: none; }
.unterseite-header .breadcrumb a:hover { color: var(--gold-dunkel); }
.unterseite-header .breadcrumb span { color: var(--gold-dunkel); }
.unterseite-header h1 {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--schwarz);            /* war --weiss */
  font-weight: 600;
}
.unterseite-header p {
  margin-top: 0.6rem;
  color: var(--grau-text);          /* war rgba weiß */
  font-size: 0.95rem;
}

.unterseite-inhalt {
  padding: 3rem 8%;
  max-width: 900px;
}

/* ════════════════════════════════════════
   RECHTSTEXT (Impressum, AGB, Datenschutz)
════════════════════════════════════════ */
.rechtstext {
  padding: 3rem 8%;
  max-width: 800px;
}
.rechtstext h2 {
  font-family: 'Barlow', sans-serif;
  font-size: 1.4rem;
  color: var(--schwarz);
  margin: 2rem 0 0.6rem;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid var(--grau-mid);
}
.rechtstext h2:first-child { margin-top: 0; }
.rechtstext p {
  font-size: 0.92rem;
  color: var(--grau-text);
  line-height: 1.75;
  margin-bottom: 0.8rem;
}
.rechtstext a { color: var(--rot); }
.rechtstext ul {
  padding-left: 1.5rem;
  margin-bottom: 0.8rem;
  font-size: 0.92rem;
  color: var(--grau-text);
  line-height: 1.75;
}

/* ════════════════════════════════════════
   KONTAKT
════════════════════════════════════════ */
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 3rem 8%;
}
.kontakt-info h3 {
  font-family: 'Barlow', sans-serif;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--schwarz);
}
.kontakt-zeile {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  margin-bottom: 0.8rem;
  font-size: 0.92rem;
  color: var(--grau-text);
  line-height: 1.5;
}
.kontakt-zeile .kz-label {
  font-family: 'Barlow', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  /* Punkt 4: kein uppercase */
  color: var(--schwarz);
  min-width: 60px;
  padding-top: 2px;
}

/* Formular */
.form-gruppe { margin-bottom: 1.2rem; }
.form-gruppe label {
  display: block;
  font-family: 'Barlow', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  /* Punkt 4: kein uppercase */
  color: var(--grau-text);
  margin-bottom: 0.4rem;
}
.form-gruppe input,
.form-gruppe textarea,
.form-gruppe select {
  width: 100%;
  border: 1px solid var(--grau-mid);
  border-radius: 2px;
  padding: 0.75rem 1rem;
  font-family: 'Barlow', sans-serif;
  font-size: 0.92rem;
  color: var(--text);
  background: var(--weiss);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.form-gruppe input:focus,
.form-gruppe textarea:focus,
.form-gruppe select:focus { border-color: var(--gold); }
.form-gruppe textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ════════════════════════════════════════
   Punkt 3: FOOTER – abgestuftes Dunkelgrau
════════════════════════════════════════ */
footer {
  background: #3A3A38;    /* war --schwarz #1C1C1C */
  color: rgba(250,250,248,0.6);
}
.footer-main {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2rem;
  padding: 3rem 8% 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-col h4 {
  font-family: 'Barlow', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  /* Punkt 4: kein uppercase */
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-col p {
  font-size: 0.84rem;
  line-height: 1.75;
  color: rgba(250,250,248,0.6);
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a {
  font-size: 0.84rem;
  color: rgba(250,250,248,0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold); }

.footer-logo {
  font-family: 'Barlow', sans-serif;
  font-size: 1.35rem;
  color: var(--weiss);
  margin-bottom: 0.4rem;
}
.footer-logo span {
  display: block;
  font-family: 'Barlow', sans-serif;
  font-size: 0.72rem;
  /* Punkt 4: kein uppercase */
  color: var(--gold);
  margin-top: 2px;
  margin-bottom: 0.8rem;
}
.footer-email {
  color: var(--gold) !important;
  text-decoration: none;
  font-size: 0.84rem;
}
.footer-email:hover { text-decoration: underline; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 8%;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(250,250,248,0.4); }
.footer-links-bottom {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}
.footer-links-bottom a {
  font-size: 0.78rem;
  color: rgba(250,250,248,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links-bottom a:hover { color: var(--gold); }

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 900px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    position: fixed;
    top: calc(var(--flag-h) + var(--nav-h));
    left: 0; right: 0;
    background: var(--weiss);
    border-top: 3px solid var(--gold);
    padding: 0.5rem 0 1rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    z-index: 98;
  }
  .nav-menu.menu-offen { display: flex; }
  .nav-menu > li { width: 100%; }
  .nav-menu > li > a {
    height: auto;
    line-height: 1.4;
    padding: 0.9rem 6%;
    border-bottom: 1px solid var(--grau-hell);
    border-left: none;
    width: 100%;
    display: block;
  }
  .nav-menu > li:last-child > a {
    margin: 0.8rem 6%;
    width: auto;
    text-align: center;
    border-bottom: none !important;
  }
  .dropdown { display: none !important; }
  .hamburger { display: flex; }
  .slide-inhalt { max-width: 70%; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .kontakt-grid { grid-template-columns: 1fr; }
  .service-leiste { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .slide-inhalt { max-width: 90%; }
  .footer-main { grid-template-columns: 1fr; gap: 1.5rem; padding: 2rem 6% 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-links-bottom { flex-wrap: wrap; justify-content: center; gap: 1rem; }
  .form-row { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════
   SEITE (Tabs)
════════════════════════════════════════ */
.seite { display: none; }
.seite.aktiv { display: block; }

/* Scroll-Pfeil */
.scroll-down {
  position: absolute;
  bottom: 1.8rem; right: 4%;
  z-index: 10;
  color: rgba(255,255,255,0.5);
  font-size: 0.76rem;
  font-family: 'Barlow', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  animation: bounce 2s infinite;
}
.scroll-down::after { content: '↓'; font-size: 1rem; }
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}
