:root {
  --schwan-red: #ff0000;
  --text: #262626;
  --line: #eeeeee;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: #f7f7f7;
  color: var(--text);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}

a { color: inherit; }

/* Kopfbereich wie auf der bisherigen Seite */
.site-header {
  position: relative;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.site-header-inner {
  width: 100%;
  min-height: 139px;
  padding: 14px 34px 14px 14px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 48px;
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 255px;
  text-decoration: none;
}

.brand img {
  width: 235px;
  max-width: 100%;
  max-height: 110px;
  object-fit: contain;
  object-position: left center;
  display: block;
}

.site-nav {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 34px;
  white-space: nowrap;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: rgb(39, 42, 47);
  background: transparent;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 24px;
  line-height: 21px;
  font-weight: 900;
  letter-spacing: 0;
  padding: 8px 13px;
  border-radius: 28px;
  transition: color .18s ease;
}

.site-nav a:hover,
.site-nav a:focus {
  color: var(--schwan-red);
  outline: none;
}

.site-nav a.active {
  background: rgb(255, 0, 0);
  color: rgb(255, 255, 255);
  font-weight: 900;
}

.site-nav a.active:hover,
.site-nav a.active:focus {
  color: #ffffff;
}

.mobile-toggle {
  display: none;
  border: 0;
  background: #ffffff;
  color: #252525;
  font-size: 1.75rem;
  padding: 8px 10px;
  cursor: pointer;
}

/* Nur der schwarze Balken mit Impressum und Datenschutz */
.site-footer {
  background: #303030;
  color: #ffffff;
  border: 0;
}

.site-footer-inner {
  min-height: 86px;
  padding: 22px 20px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.site-footer a {
  color: #ffffff;
  text-decoration: none;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
}

.site-footer a:hover,
.site-footer a:focus {
  text-decoration: underline;
  outline: none;
}

.footer-separator {
  color: #aaaaaa;
  font-size: 20px;
  font-weight: 300;
}

@media (max-width: 1000px) {
  .site-header-inner {
    min-height: 112px;
    padding: 12px 18px;
    gap: 20px;
  }

  .brand {
    flex-basis: auto;
    min-width: 0;
  }

  .brand img {
    width: 190px;
    max-height: 88px;
  }

  .mobile-toggle {
    display: block;
    margin-left: auto;
  }

  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #ffffff;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 12px 18px 18px;
    box-shadow: 0 10px 24px rgba(0,0,0,.08);
  }

  .site-nav.open {
    display: grid;
    grid-template-columns: 1fr;
  }

  .site-nav a {
    justify-content: flex-start;
    width: max-content;
    max-width: 100%;
    font-size: 17px;
    padding: 12px 16px;
  }

  .site-footer-inner {
    min-height: 82px;
  }

  .site-footer a {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .brand img { width: 155px; }
  .site-header-inner { min-height: 92px; }
  .site-footer-inner { gap: 14px; min-height: 74px; }
  .site-footer a { font-size: 15px; }
  .footer-separator { font-size: 21px; }
}
