/* ============================================================
   Firma Netzer Johannes – Hauptstylesheet
   Farben, Typografie, Layout, Responsive Design
   ============================================================ */

/* --- Google Fonts laden --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Lato:wght@300;400;700&display=swap');

/* --- CSS-Variablen (Farbpalette) --- */
:root {
  --braun:    #1E2A22;       /* Dunkelgrün-Schwarz für Überschriften & Nav */
  --ocker:    #4A7C5A;       /* Gedämpftes Waldgrün als Akzent */
  --creme:    #F7F8F7;       /* Sehr helles Grau-Weiß */
  --weiss:    #FFFFFF;
  --text:     #2C2C2C;
  --hell:     #EEEEF0;       /* Helles Grau für abwechselnde Sektionen */
  --schatten: rgba(0, 0, 0, 0.08);
  --grau:     #6B7280;       /* Mittleres Grau für Untertitel / sekundären Text */
  --rand:     #E2E4E2;       /* Rahmenfarbe */
}

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

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

body {
  font-family: 'Lato', sans-serif;
  color: var(--text);
  background-color: var(--creme);
  line-height: 1.7;
}

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

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

a:hover {
  text-decoration: underline;
}

/* --- Typografie --- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: var(--braun);
  line-height: 1.25;
}

h1 { font-size: clamp(2rem, 5vw, 2.8rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2rem); }
h3 { font-size: 1.25rem; }

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

/* --- Hilfklassen --- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section--hell {
  background-color: var(--hell);
}

.section--weiss {
  background-color: var(--weiss);
}

.section-titel {
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-untertitel {
  text-align: center;
  color: #666;
  margin-bottom: 3rem;
  font-size: 1.05rem;
}

.section-divider {
  width: 60px;
  height: 3px;
  background: var(--ocker);
  margin: 0.75rem auto 2rem;
  border: none;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 3px;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.1s;
  border: 2px solid transparent;
  text-decoration: none;
}

.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primaer {
  background: var(--ocker);
  color: var(--weiss);
  border-color: var(--ocker);
}

.btn--primaer:hover {
  background: var(--braun);
  border-color: var(--braun);
  color: var(--weiss);
}

.btn--outline {
  background: transparent;
  color: var(--weiss);
  border-color: var(--weiss);
}

.btn--outline:hover {
  background: var(--weiss);
  color: var(--braun);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--weiss);
  border-bottom: 1px solid var(--rand);
  box-shadow: 0 1px 6px rgba(0,0,0,0.06);
  transition: box-shadow 0.3s;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav__logo-img {
  height: 54px;
  width: auto;
  display: block;
}

.nav__logo-text {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  font-family: 'Lato', sans-serif;
  font-size: 1.05rem;
  font-weight: 900;
  color: #5A9B47;        /* Gedämpftes Blattgrün */
  line-height: 1;
  white-space: nowrap;
  letter-spacing: 0.01em;
  gap: 3px;
}

.nav__logo-sub {
  font-family: 'Lato', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1E2A22;        /* Dunkles Grün – wie der Hero-Hintergrund */
  white-space: nowrap;
}

.nav__links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav__links a {
  color: #374151;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: color 0.2s;
  text-decoration: none;
}

.nav__links a:hover {
  color: var(--ocker);
  text-decoration: none;
}

.nav__links .nav__cta a {
  background: var(--ocker);
  color: var(--weiss);
  padding: 0.45rem 1.1rem;
  border-radius: 3px;
  font-weight: 700;
}

.nav__links .nav__cta a:hover {
  background: #3a6347;
  color: var(--weiss);
}

/* Hamburger-Menü */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--braun);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

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

/* Mobile Nav */
@media (max-width: 768px) {
  .nav__hamburger { display: flex; }

  .nav__links {
    display: none;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--weiss);
    border-top: 1px solid var(--rand);
    padding: 1rem 0 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  }

  .nav__links.is-open { display: flex; }

  .nav__links li { width: 100%; }

  .nav__links a {
    display: block;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    color: #374151;
  }

  .nav__links .nav__cta a {
    margin: 0.5rem 1.5rem 0;
    display: inline-block;
    padding: 0.6rem 1.2rem;
  }
}

/* ============================================================
   HERO-SEKTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--weiss);
  overflow: hidden;
  padding-top: 68px;
}

/* Hintergrundbild mit dunklem Overlay */
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(20, 30, 22, 0.65), rgba(20, 30, 22, 0.55)),
    url('images/hero.png') center center / cover no-repeat;
  z-index: 0;
}

/* Platzhalter-Hintergrund, falls kein Foto vorhanden */
.hero__bg--placeholder {
  background: linear-gradient(160deg, #1A2820 0%, #243322 50%, #2E4030 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  padding: 2rem 1.5rem;
}

.hero__badge {
  display: inline-block;
  background: rgba(74, 124, 90, 0.85);
  color: var(--weiss);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.hero__titel {
  color: var(--weiss);
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero__slogan {
  color: #8FC9A0;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  margin-bottom: 1.2rem;
  font-style: italic;
}

.hero__text {
  font-size: clamp(1rem, 2vw, 1.15rem);
  opacity: 0.92;
  margin-bottom: 2.5rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero__buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   KURZ-ÜBERSICHT (3 Kacheln unter Hero)
   ============================================================ */
.vorteile {
  background: var(--hell);
  border-top: 1px solid var(--rand);
  border-bottom: 1px solid var(--rand);
  padding: 3rem 0;
}

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

.vorteil {
  text-align: center;
  padding: 2rem 1.5rem;
  color: var(--text);
}

.vorteil__icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block;
}

.vorteil__titel {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--braun);
  margin-bottom: 0.4rem;
}

.vorteil__text {
  font-size: 0.9rem;
  color: var(--grau);
  margin: 0;
}

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

/* ============================================================
   LEISTUNGEN
   ============================================================ */
.leistungen__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}

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

.leistung-karte {
  background: var(--weiss);
  border-radius: 4px;
  padding: 2rem 2rem 2.5rem;
  box-shadow: 0 1px 4px var(--schatten);
  border: 1px solid var(--rand);
  border-top: 3px solid var(--ocker);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

.leistung-karte:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px var(--schatten);
}

.leistung-karte__header {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--rand);
}

.leistung-karte__icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  line-height: 1;
}

.leistung-karte__titel {
  font-size: 1.05rem;
  color: var(--braun);
  margin: 0;
  line-height: 1.3;
}

.leistung-karte__liste {
  list-style: none;
  padding: 0;
  flex: 1;
}

.leistung-karte__liste li {
  padding: 0.6rem 0 0.6rem 1.5rem;
  position: relative;
  font-size: 0.92rem;
  color: #444;
  border-bottom: 1px solid var(--rand);
  line-height: 1.45;
}

.leistung-karte__liste li:last-child {
  border-bottom: none;
}

.leistung-karte__liste li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ocker);
}

/* ============================================================
   ÜBER UNS
   ============================================================ */
.ueber__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.ueber__bild {
  position: relative;
}

.ueber__bild-placeholder {
  width: 100%;
  padding-top: 75%;
  background: linear-gradient(135deg, #1E2A22, #4A7C5A);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.ueber__bild-placeholder::after {
  content: '🌿';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 5rem;
  opacity: 0.3;
}

.ueber__bild img {
  border-radius: 6px;
  width: 100%;
  height: auto;
  display: block;
}

.ueber__rahmen {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--ocker);
  border-radius: 6px;
  z-index: -1;
}

.ueber__text h2 { margin-bottom: 0.5rem; }

.ueber__werte {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.wert {
  text-align: center;
}

.wert__zahl {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--ocker);
  font-weight: 700;
  line-height: 1;
}

.wert__label {
  font-size: 0.85rem;
  color: #666;
}

@media (max-width: 768px) {
  .ueber__grid { grid-template-columns: 1fr; gap: 2rem; }
  .ueber__rahmen { display: none; }
}

/* ============================================================
   GALERIE
   ============================================================ */
.galerie__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.galerie__item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--braun);
}

/* Platzhalter-Stil für Galeriebilder */
.galerie__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2A3830, #4A7C5A);
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  text-align: center;
  padding: 1rem;
  gap: 0.5rem;
}

.galerie__placeholder-icon { font-size: 2.5rem; opacity: 0.5; }

.galerie__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.galerie__item:hover img { transform: scale(1.05); }

.galerie__overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 42, 34, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.galerie__item:hover .galerie__overlay {
  background: rgba(30, 42, 34, 0.45);
}

.galerie__lupe {
  color: var(--weiss);
  font-size: 2rem;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s, transform 0.3s;
}

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

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

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
}

.lightbox.is-open { display: flex; }

.lightbox__bild {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 3px;
}

.lightbox__schliessen {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--weiss);
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
}

/* ============================================================
   KONTAKT
   ============================================================ */
.kontakt__grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}

.kontakt__info h2 { margin-bottom: 0.5rem; }

.kontakt__details {
  list-style: none;
  margin-top: 1.5rem;
}

.kontakt__details li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--rand);
  font-size: 0.95rem;
}

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

.kontakt__details-icon {
  font-size: 1.2rem;
  min-width: 1.5rem;
  margin-top: 0.1rem;
}

/* Formular */
.formular {
  background: var(--weiss);
  padding: 2.5rem;
  border-radius: 6px;
  box-shadow: 0 2px 16px var(--schatten);
}

.formular__gruppe {
  margin-bottom: 1.25rem;
}

.formular__gruppe label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: var(--braun);
}

.formular__gruppe input,
.formular__gruppe textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #D1D5DB;
  border-radius: 4px;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  background: var(--creme);
  color: var(--text);
  transition: border-color 0.2s;
  -webkit-appearance: none;
}

.formular__gruppe input:focus,
.formular__gruppe textarea:focus {
  outline: none;
  border-color: var(--ocker);
  background: var(--weiss);
}

.formular__gruppe textarea {
  min-height: 130px;
  resize: vertical;
}

.formular__hinweis {
  font-size: 0.82rem;
  color: #888;
  margin-top: 0.75rem;
}

@media (max-width: 768px) {
  .kontakt__grid { grid-template-columns: 1fr; gap: 2rem; }
  .formular { padding: 1.5rem; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #1A2820;
  color: rgba(255,255,255,0.7);
  padding: 3rem 0 1.5rem;
}

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

.footer__logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--weiss);
  margin-bottom: 0.75rem;
  display: block;
}

.footer h4 {
  font-family: 'Playfair Display', serif;
  color: var(--weiss);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  padding: 0.25rem 0;
  font-size: 0.9rem;
}

.footer ul a {
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}

.footer ul a:hover {
  color: #8FC9A0;
  text-decoration: none;
}

.footer__unten {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.85rem;
}

.footer__unten a {
  color: rgba(255,255,255,0.65);
}

.footer__unten a:hover {
  color: #8FC9A0;
}

@media (max-width: 700px) {
  .footer__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer__unten { flex-direction: column; text-align: center; }
}

/* ============================================================
   VORHER / NACHHER VERGLEICH
   ============================================================ */
.vergleich-trenner {
  margin: 3.5rem 0 1.5rem;
  text-align: center;
  border-top: 1px solid var(--rand);
  padding-top: 3rem;
}

.vergleich-abschnitt-titel {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--braun);
  margin-bottom: 0.4rem;
}

.vergleich-abschnitt-sub {
  color: var(--grau);
  font-size: 1rem;
  margin-bottom: 0;
}

.vergleich-wrapper {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  max-width: 820px;
  margin: 0 auto;
}

.vergleich-slider-bereich {
  flex: 1;
  min-width: 0;
}

.vergleich-item {
  display: none;
}

.vergleich-item.is-aktiv {
  display: block;
}

.vergleich-label {
  text-align: center;
  font-size: 0.85rem;
  color: var(--grau);
  margin-bottom: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.vergleich-label span {
  font-weight: 400;
  opacity: 0.7;
}

/* Der eigentliche Slider */
.vergleich-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 6px;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  box-shadow: 0 4px 20px var(--schatten);
  border: 1px solid var(--rand);
}

/* Bilder */
.vergleich-bild {
  position: absolute;
  inset: 0;
}

.vergleich-bild img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vergleich-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.1em;
}

.vergleich-placeholder--vorher {
  background: linear-gradient(135deg, #3a3a3a, #6b6b6b);
  color: rgba(255,255,255,0.8);
}

.vergleich-placeholder--nachher {
  background: linear-gradient(135deg, #1E2A22, #4A7C5A);
  color: rgba(255,255,255,0.85);
}

.vergleich-placeholder small {
  font-size: 0.75rem;
  font-weight: 400;
  opacity: 0.6;
  letter-spacing: 0;
}

/* Vorher-Bild liegt oben und wird per clip-path beschnitten */
.vergleich-bild--vorher {
  clip-path: inset(0 50% 0 0);
  will-change: clip-path;
}

/* Etiketten */
.vergleich-tag {
  position: absolute;
  bottom: 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
  pointer-events: none;
}

.vergleich-tag--vorher {
  left: 0.75rem;
  background: rgba(0,0,0,0.55);
  color: #fff;
}

.vergleich-tag--nachher {
  right: 0.75rem;
  background: rgba(74,124,90,0.85);
  color: #fff;
}

/* Ziehbarer Griff */
.vergleich-griff {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 10;
}

.vergleich-griff-linie {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #fff;
  box-shadow: 0 0 4px rgba(0,0,0,0.4);
}

.vergleich-griff-kreis {
  position: relative;
  z-index: 1;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--braun);
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
  font-weight: 700;
}

/* Pfeile */
.vergleich-pfeil {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid var(--rand);
  background: var(--weiss);
  color: var(--braun);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  box-shadow: 0 1px 4px var(--schatten);
}

.vergleich-pfeil:hover {
  background: var(--ocker);
  border-color: var(--ocker);
  color: #fff;
}

.vergleich-pfeil:disabled {
  opacity: 0.3;
  cursor: default;
}

.vergleich-pfeil:disabled:hover {
  background: var(--weiss);
  border-color: var(--rand);
  color: var(--braun);
}

/* Punkte-Navigation */
.vergleich-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.vergleich-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--rand);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.vergleich-dot.is-aktiv {
  background: var(--ocker);
  transform: scale(1.3);
}

@media (max-width: 600px) {
  .vergleich-wrapper { gap: 0.75rem; }
  .vergleich-pfeil { width: 36px; height: 36px; font-size: 1rem; }
}

/* ============================================================
   IMPRESSUM-SEITE
   ============================================================ */
.impressum-seite {
  padding-top: 68px;
  min-height: 100vh;
}

.impressum-seite .container {
  max-width: 760px;
  padding: 4rem 1.5rem;
}

.impressum-seite h1 { margin-bottom: 2rem; }
.impressum-seite h2 { margin: 2rem 0 0.75rem; font-size: 1.3rem; }
.impressum-seite h3 { margin: 1.5rem 0 0.5rem; font-size: 1.05rem; color: var(--text); }
.impressum-seite p, .impressum-seite address { font-style: normal; margin-bottom: 0.75rem; }

.impressum-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--braun);
  font-weight: 700;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.impressum-back:hover { color: var(--ocker); text-decoration: none; }
