/* Skip Link für Accessibility - In styles.css am Anfang einfügen */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #1a2332;
  color: #F5E6D3;
  padding: 8px 16px;
  text-decoration: none;
  z-index: 10000;
  font-size: 14px;
  border-radius: 0 0 4px 0;
}

.skip-link:focus {
  top: 0;
}


/* =========================================================
   GLOBAL / RESET
   ========================================================= */

:root {
  --bg-page: #f7f9fc;
  --text-main: #111111;
  --text-muted: #444444;
  --accent: #de7612;
  --hero-max-width: 1180px;
}

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

body {
  font-family: "pt-sans-pro-narrow";
  background: #ffffff;
  color: var(--text-main);
}

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

main {
  min-height: 100vh;
}
html.menu-open {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  white-space: nowrap; /* verhindert Umbruch mitten in der Nummer */
  color:var(--accent);
}

.datenschutz-body a:hover,.accordion-body a:hover{text-decoration:underline;}






/* =========================================================
   BUTTONS
   ========================================================= */

.btn {
  display: inline-block;
  padding: 0.1rem 0.8rem 0.2rem;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  margin-top: 2rem;
  letter-spacing: 0.8px;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: #F30909;
  transform: translateY(-2px);
}

/* =========================================================
   NAVIGATION
   ========================================================= */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid #d4dde8;
}

.nav-inner {
  max-width: var(--hero-max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo a {
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: 0.02em;
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease;
  
}
.nav-logo a:hover{color:#de4b12}

.nav-logo-start a{cursor: default; /* nur auf Startseite */}
.nav-logo-start a:hover{color:var(--accent)}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--text-main);
  text-decoration: none;
  position: relative;
  padding: 0.3rem 0;
  transition: color 0.2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--accent);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  background: var(--accent);
  color: #fff;
  padding: 0.1rem 0.9rem 0.2rem;
  border-radius: 10px;
  transition: all 0.3s ease;
  font-weight: 700;
  letter-spacing: 0.08rem;
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  background: #F30909;
  transform: translateY(-2px);
  color: #fff;
}



/* Hamburger Toggle - standardmäßig versteckt (Desktop/Tablet) */
.nav-toggle {
  display: none;
  position: relative;
  width: 28px;     /* kannst du anpassen */
  height: 22px;    /* bestimmt den Abstand im Normalzustand */
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;      /* wichtig: kein "Verschieben" durchs Padding */
}

/* 2 Linien */
.nav-toggle span {
  position: absolute;
  left: 0;
  top: 50%;
  width: 28px;
  height: 2px;
  background: var(--text-main);
  transform-origin: 50% 50%;
  transition: transform 0.3s ease;
}

/* Normalzustand: zwei parallele Linien, sauber um die Mitte */
.nav-toggle span:nth-child(1) {
  transform: translateY(calc(-50% - 5px));
}

.nav-toggle span:nth-child(2) {
  transform: translateY(calc(-50% + 5px));
}

/* Aktiv: beide exakt auf die Mitte und rotieren symmetrisch */
.nav-toggle.active span:nth-child(1) {
  transform: translateY(-50%) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  transform: translateY(-50%) rotate(-45deg);
}


/* Scrolled State */
.site-nav.scrolled {
  background: rgba(247, 249, 252, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.site-nav.scrolled .nav-inner {
  height: 60px;
}

/* ---------------------------------------------------------
   NAV: 768px - 1200px (kompakter)
   --------------------------------------------------------- */
@media (min-width: 768px) and (max-width: 1200px) {
  .nav-inner {
    padding: 0 3rem;
  }

  .nav-menu {
    gap: 1.2rem;
  }

  .nav-cta {
    padding: 0.1rem 0.7rem 0.2rem;
    font-size: 1.05rem;
  }

  .nav-logo a {
    font-size: 1.6rem;
  }
}

/* ---------------------------------------------------------
   NAV: 768px - 900px (noch kompakter)
   --------------------------------------------------------- */
@media (min-width: 768px) and (max-width: 900px) {
  .nav-inner {
    padding: 0 1.2rem;
  }

  .nav-link {
    padding: 0.2rem 0;
  }

  .nav-cta {
    padding: 0.1rem 0.6rem 0.2rem;
    font-size: 0.95rem;
  }

  .nav-logo a {
    font-size: 1.5rem;
  }
}

/* =========================================================
   HERO
   ========================================================= */

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 4rem;
}

.hero-inner {
  position: relative;
  max-width: var(--hero-max-width);
  margin: 0 auto;
  min-height: 100vh;
  padding: 14rem 1.5rem 4rem;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.9fr);
  align-items: flex-end;
  column-gap: 3rem;
}

/* dünne Linien im Hintergrund */
.hero-inner::before,
.hero-inner::after {
  content: "";
  position: absolute;
  background: #d4dde8;
}

.hero-inner::before {
  left: 50%;
  width: 100vw;
  height: 1px;
  top: 26%;
  transform: translateX(-50%);
}

.hero-inner::after {
  top: -4rem;
  left: 24%;
  width: 1px;
  height: 120%;
  z-index: 0;
}

/* Buch oben links */
.hero-book-wrapper {
  position: relative;
  padding-top: 1rem;
}

.hero-book-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 110%;
  max-width: 760px;
  transform: translate(9%, -48%);
  z-index: 9;
}

/* Textblock links unten */
.hero-text {
  position: relative;
  z-index: 1;
  margin-top: 17rem;
  max-width: 32rem;
  padding-left: 6rem;
}

.hero-headline-wrapper {
  position: relative;
  display: inline-block;
}

.hero-question-mark {
  position: absolute;
  left: 100%;
  top: 3%;
  transform: translate(0, -48%);
  font-size: 39rem;
  font-weight: 700;
  color: rgba(215, 231, 244, 0.45);
  pointer-events: none;
  z-index: -1;
}

.hero-headline {
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin-bottom: 1.1rem;
}

.hero-subline {
  font-size: 1.7rem;
  font-weight: 400;
  margin-bottom: 1.7rem;
  color: var(--accent);
  padding-left: 2.5rem;
}

.hero-copy {
  font-size: 1.35rem;
  line-height: 1.4;
  color: var(--text-muted);
  font-weight: 200;
  padding-left: 5rem;
}

.hero-copy p + p {
  margin-top: 0.2rem;
}

/* rechte Seite: Portrait im Kreis */
.hero-right {
  position: relative;
  align-self: center;
  justify-self: center;
  width: 260px;
  height: 260px;
}

.hero-author-circle {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #cdcdcd;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-40%, 0%);
  padding: 12px;
  z-index: 2;
}

.hero-author-circle-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid #cdcdcd;
}

.hero-author-circle-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Tablet collapse */
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 3rem;
    padding-bottom: 3rem;
    row-gap: 2rem;
  }

  .hero-book-image {
    position: relative;
    transform: none;
    margin: -10rem auto 2.5rem;
    width: 85%;
  }

  .hero-text {
    margin-top: 1.5rem;
    max-width: none;
    padding-left: 0;
  }

  .hero-right {
    order: -1;
    margin: 0 auto;
  }
}

/* =========================================================
   SECTION 2 – STAT BUBBLES
   ========================================================= */

.stats-section {
  position: relative;
  overflow: visible;
  margin-bottom: 8rem;
}

.stats-inner {
  position: relative;
  max-width: var(--hero-max-width);
  margin: 0 auto;
  padding: 4rem 1.5rem 6rem;
  min-height: 430px;
}

/* vertikale Linie */
.stats-inner::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: -8rem;
  left: 24%;
  width: 1px;
  background: #d4dde8;
}

.stat-item {
  position: absolute;
  transform: scale(0.6) translateY(20px);
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.stat-item.visible {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.stat-bubble {
  border-radius: 50%;
}

.stat-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  text-align: center;
  pointer-events: none;
}

.stat-bu {
  font-size: 0.6rem;
  text-align: center;
  margin-top: 0.5rem;
  font-weight: 400;
}

.stat-bubble--xl { width: 200px; height: 200px; background: #d8f1ff; }
.stat-bubble--lg { width: 165px; height: 165px; background: #dcffb4; }
.stat-bubble--md { width: 145px; height: 145px; background: #ffd9f4; }
.stat-bubble--sm { width: 120px; height: 120px; background: #fff3a6; }

.stat-number {
  font-family: "alternate-gothic-condensed-a", system-ui, sans-serif;
  font-weight: 700;
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-number--small { font-size: 2.5rem; }

.stat-text {
  font-family: "alternate-gothic-condensed-a", system-ui, sans-serif;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0.01rem;
  font-weight: 500;
}

.stat-text--small { font-size: 1.2rem; }

.stat-item--hungry { left: 10%; top: 14%; }
.stat-item--wars { right: 28%; top: -10%; }
.stat-item--plastic { right: 10%; bottom: 8%; }
.stat-item--wealth { left: 33%; bottom: -15%; }

@media (max-width: 960px) {
  .stats-inner { min-height: 520px; }

  .stat-item--hungry {
    left: 50%;
    top: 5%;
    transform: translate(-50%, 20px) scale(0.6);
  }

  .stat-item--wars {
    left: 15%;
    top: 52%;
    right: auto;
  }

  .stat-item--plastic {
    right: 10%;
    bottom: 8%;
  }

  .stat-item--wealth {
    left: 50%;
    bottom: -2%;
    transform: translate(-50%, 20px) scale(0.6);
  }
}

/* =========================================================
   SECTION 3 – PROBLEME (SLIDER)
   ========================================================= */

.problems-header {
  background: #585750;
  color: #ffffff;
  text-align: center;
  padding: 0.1rem 1.5rem 0.3rem;
}

.problems-header-title {
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.1rem);
  letter-spacing: 0.02em;
}

.problems-body {
  background: #fdfae4;
  position: relative;
  overflow: hidden;
  padding: 2.2rem 1.5rem 4.5rem;
}

.problems-body::after {
  content: "?";
  position: absolute;
  right: 6%;
  top: -36%;
  font-size: 38rem;
  font-weight: 600;
  color: #efeddb;
  pointer-events: none;
}

.problems-inner {
  max-width: var(--hero-max-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.problems-lead {
  max-width: 45rem;
  margin: 0 auto 2.8rem;
  font-size: 1.6rem;
  line-height: 1.4;
  color: var(--text-muted);
  font-weight: 200;
  text-align: center;
}

.problems-slider {
  position: relative;
  max-width: 750px;
  margin: 0 auto 2.3rem;
  min-height: 280px;
  touch-action: pan-y;
}

.problems-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  pointer-events: none;
}

.problems-slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.problems-media {
  flex: 0 0 auto;
  position: relative;
  z-index: 1;
}

.problems-image-circle {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  overflow: hidden;
  border: 10px solid #ffffff;
}

.problems-image-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.problems-card {
  background: #ffffff;
  padding: 0.8rem 2rem 1.6rem;
  margin-left: -50px;
  min-width: 340px;
  z-index: 2;
}

.problems-card-title {
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--accent);
  margin-bottom: 0.4rem;
}

.problems-card-text {
  font-size: 1.2rem;
  line-height: 1.3;
  color: #666;
}

.problems-dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
}

.problems-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #d1d1d1;
  cursor: pointer;
  padding: 0;
  transition: transform 0.2s ease, background 0.2s ease;
  position: relative;
}

.problems-dot.active {
  background: var(--accent);
  transform: scale(1.3);
}


.problems-dot::before {
  content: "";
  position: absolute;
  inset: -8px;
}


@media (max-width: 900px) {
  .problems-slider { min-height: 420px; }

  .problems-slide {
    flex-direction: column;
    align-items: center;
  }

  .problems-card {
    margin-left: 0;
    margin-top: 1.2rem;
    min-width: auto;
    width: 100%;
    max-width: 420px;
  }

  .problems-body::after {
    font-size: 10rem;
    right: -2%;
    top: 40%;
  }
}

/* =========================================================
   SECTION 4 – ANSWER
   ========================================================= */

.answer-section {
  padding: 0 1.5rem 0;
  background: #ffffff;
  margin-bottom: 5.5rem;
  margin-top: 4.5rem;
}

.answer-inner {
  max-width: var(--hero-max-width);
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.answer-inner::before {
  content: "";
  position: absolute;
  top: -4.5rem;
  bottom: -5.5rem;
  left: 24%;
  width: 1px;
  background: #d4dde8;
  opacity: 0.8;
}

.answer-title {
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.1rem);
  margin-bottom: 1.4rem;
}

.answer-lead {
  max-width: 48rem;
  margin: 0 auto 5rem;
  font-size: 1.6rem;
  line-height: 1.4;
  color: #444;
  font-weight: 200;
  position: relative;
  z-index: 9;
}

.answer-diagram {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: flex-start;
  margin-top: 1.5rem;
  position: relative;
}

.answer-column {
  text-align: center;
  margin-bottom: 1rem;
}

.answer-tag {
  display: inline-block;
  background: var(--accent);
  color: #ffffff;
  padding: 0.3rem 1.4rem 0.45rem;
  font-family: "alternate-gothic-condensed-a", system-ui, sans-serif;
  font-weight: 700;
  font-size: 3rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  margin-top: 1rem;
}

.answer-text {
  font-size: 1.2rem;
  line-height: 1.4;
  color: #555;
  font-weight: 400;
}

.answer-smiley-wrap {
  position: relative;
  max-width: 280px;
  margin: 0 auto;
  text-align: center;
  transform: translateY(30px) scale(0.88);
  opacity: 0;
  transition: transform 0.7s ease, opacity 0.7s ease;
  top: -10%;
}

.answer-smiley-wrap img {
  margin-bottom: 1rem;
}

.answer-smiley-wrap.visible {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.answer-smiley-circle {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.1rem;
  background: #f7d8c8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.answer-smiley-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.answer-arrow-line {
  position: absolute;
  top: 40%;
  width: 140px;
  border-top: 5px dashed #000000;
}

.answer-arrow-line--left { right: 100%; margin-right: 18px; }
.answer-arrow-line--right { left: 100%; margin-left: 18px; }

.answer-arrow-line::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}

.answer-arrow-line--left::after { right: -2px; border-left: 10px solid #000; }
.answer-arrow-line--right::after { left: -2px; border-right: 10px solid #000; }

.answer-smiley-caption {
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 0.4rem;
  letter-spacing: 0.08em;
}

.answer-smiley-text {
  font-size: 1.2rem;
  line-height: 1.4;
  color: #555;
  font-weight: 400;
}

/* Mobile-ish Layout für Answer (bestehendes 900px) */
@media (max-width: 900px) {
  .answer-diagram {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 4rem;
  }

  .answer-column--hardware { order: 1; }
  .answer-column--software { order: 2; }
  .answer-smiley-wrap { order: 3; margin-top: 2.5rem; }
}

/* =========================================================
   SECTION 5 – TIMELINE
   ========================================================= */

.timeline-section {
  padding: 4.5rem 1.5rem 3rem;
  background: #f3f5f8;
}

.timeline-pin {
  position: relative;
  height: 220vh;
}

.timeline-inner {
  max-width: var(--hero-max-width);
  margin: 0 auto;
  position: relative;
}

.timeline-title {
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.1;
  margin-bottom: 1.2rem;
}

.timeline-lead {
  max-width: 40rem;
  font-size: 1.6rem;
  line-height: 1.4;
  color: #555;
  margin-bottom: 2.6rem;
  padding-left: 7rem;
  font-weight: 400;
}

.timeline-card {
  position: sticky;
  top: 120px;
  background: #ffffff;
  border-radius: 2px;
  padding: 2.8rem 2.2rem 2.6rem;
  overflow: hidden;
}

.timeline-track-wrapper {
  position: relative;
  overflow: hidden;
  padding-bottom: 1.4rem;
}

.timeline-line {
  position: absolute;
  top: 50%;
  left: 0;
  height: 4px;
  width: 100%;
  background: #c7d6f5;
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 0.4s ease-out;
}

.timeline-track {
  display: flex;
  align-items: center;
  gap: 4.5rem;
  position: relative;
  z-index: 1;
  transform: translateX(0);
  transition: transform 0.1s linear;
}

.timeline-item {
  flex: 0 0 220px;
  position: relative;
  text-align: left;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.timeline-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.timeline-item-img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  border-radius: 40px;
  margin-bottom: 1.8rem;
}

.timeline-item-time {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #666;
  margin-bottom: 0.3rem;
  font-weight: 600;
}

.timeline-item-title {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--accent);
  margin-bottom: 0.3rem;
  letter-spacing: 0.02rem;
}

.timeline-item-text {
  font-size: 1rem;
  line-height: 1.3;
  color: #555;
  font-weight: 400;
}

/* 900px: Timeline-Responsive (bestehendes Verhalten) */
@media (max-width: 900px) {
  .timeline-pin { height: auto; }
  .timeline-card { position: static; top: auto; }
  .timeline-track-wrapper { padding-top: 1.6rem; padding-bottom: 0.5rem; }
  .timeline-track { gap: 2rem; }
  .timeline-item { flex: 0 0 220px; }
}

/* =========================================================
   SECTION – BUCH + LESEPROBE
   ========================================================= */

.book-section {
  background: #f3f5f8;
  padding: 1rem 1.5rem 5.5rem;
}

.book-inner {
  max-width: var(--hero-max-width);
  margin: 0 auto;
  position: relative;
}

.book-inner::before {
  content: "";
  position: absolute;
  top: -9.7rem;
  bottom: -5.5rem;
  left: 24%;
  width: 1px;
  background: #d4dde8;
}

.book-top {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: flex-start;
  margin-bottom: 3.5rem;
}

.book-title {
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.1rem);
  margin-bottom: 2rem;
  text-align: center;
}

.book-cover-wrap {
  display: flex;
  justify-content: center;
}

.book-cover {
  max-width: 260px;
  position: relative;
  z-index: 2;
  margin-top: -2.5rem;
}

.book-expect {
  margin-top: 3.2rem;
}

.book-expect-title {
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.02rem;
}

.book-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.book-list li {
  position: relative;
  padding-left: 0.9rem;
  margin-bottom: 0.7rem;
  font-size: 1.3rem;
  line-height: 1.3;
  list-style-type: none;
  font-weight: 400;
}

.book-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
}


/* ============================================
   LESEPROBE (Neue Version)
   ============================================ */

.leseprobe-container {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  overflow: hidden;position: relative;z-index: 9;
}

/* Leseprobe Preview */
.leseprobe-preview {
  position: relative;
  padding: 60px;
  padding-bottom: 40px;
}

.leseprobe-title {
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--accent);
  margin: 0 0 30px 0;
  text-align: center;
  letter-spacing: -0.5px;
}

/* Preview Text Styling */
.preview-text {
  font-size: 1.1rem;
  line-height: 1.4;
  color: #2c2c2c;
  text-align: justify;
  hyphens: auto;
}

.preview-text p {
  margin-bottom: 1.5rem;
}

.preview-text p:last-child {
  margin-bottom: 0;
}

/* Spezielle Frage-Hervorhebung */
.leseprobe-question {
 padding: 20px 25px;
  margin: 30px 0;
    margin-bottom: 30px;
  font-style: italic;
  font-size: 1.05rem;
  border-radius: 0 8px 8px 0;
  font-weight: 700;
  border-left: 4px solid var(--accent);
}

/* Fade-out Effekt am Ende des Teasers */
.preview-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, 
    rgba(255, 255, 255, 0) 0%, 
    rgba(255, 255, 255, 0.9) 50%, 
    rgba(255, 255, 255, 1) 100%);
  pointer-events: none;
}

/* Download Call-to-Action */
.download-cta {
  
  padding: 60px;
  text-align: center;
}

.cta-content h4 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.cta-description {
  font-size: 1.1rem;
  line-height: 1.4;
  
  margin-bottom: 35px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* CTA Button */
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: var(--accent);
  /*color: #667eea;*/
  padding: 8px 18px 12px;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  
  transition: all 0.3s ease;
  margin: 20px 0;
}

.cta-button:hover {
  transform: translateY(-3px);
  /*box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);*/
  background: #F30909;
}

.cta-button .icon {
  font-size: 1.8rem;
  line-height: 1;
}

.button-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}

.button-text strong {
  font-size: 1.1rem;
  color: #fff
}

.button-text small {
  font-size: 0.85rem;
  font-weight: 400;
  color: #fff;
}

.cta-bonus {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 20px;
  font-style: italic;
}

.excerpt-label-wrapper {
  text-align: center;
  z-index: 3;
  position: relative;
  margin-bottom: -1rem;position: relative;z-index:10;
}

.excerpt-label {
  display: inline-block;
  margin: 0 auto;
  padding: 0.2rem 1rem 0.3rem;
  background: #000000;
  color: #ffffff;
  font-size: 1.3rem;
  letter-spacing: 0.18em;
  font-weight: 700;
}



/* =========================================================
   SECTION – ÜBER DEN AUTOR
   ========================================================= */

.author-section {
  padding: 5.5rem 1.5rem 6rem;
  background: #ffffff;
}

.author-inner {
  max-width: var(--hero-max-width);
  margin: 0 auto;
  position: relative;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 8rem;
  align-items: center;
}

.author-inner::before {
  content: "";
  position: absolute;
  top: -5.5rem;
  bottom: -9.5rem;
  left: 24%;
  width: 1px;
  background: #d4dde8;
}

.author-inner::after {
  content: "";
  position: absolute;
  background: #d4dde8;
  left: 50%;
  width: 100vw;
  height: 1px;
  top: 13%;
  transform: translateX(-50%);
}

.author-media {
  position: relative;
  width: 180px;
  height: 180px;
  justify-self: start;
  left: 57%;
  top: -10rem;
  z-index: 2;
}

.author-circle-outer {
  position: absolute;
  inset: -22px;
  border-radius: 50%;
  border: 2px solid #e3e3e3;
  background: #fff;
}

.author-circle-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid #cdcdcd;
  background: #ffffff;
  z-index: 2;
}

.author-circle-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-title {
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.1rem);
  margin-bottom: 0.4rem;
}

.author-name {
  font-weight: 400;
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 1.8rem;
}

.author-content {
  max-width: 33rem;
}

.author-content p {
  max-width: 42rem;
  font-size: 1.2rem;
  line-height: 1.4;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  font-weight: 400;
}

@media (max-width: 900px) {
  .author-inner { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
  .author-inner::before { display: none; }
  .author-content p { margin-left: auto; margin-right: auto; }
}

/* =========================================================
   SECTION – ORDER
   ========================================================= */

.order-section {
  background: #ffffff;
  padding: 3.5rem 0 11rem;
}

.order-bar {
  background: #e87404;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.order-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.7rem 8.5rem 1.4rem;
  position: relative;
  min-height: 110px;
}

.order-text { max-width: 46rem; }

.order-title {
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1;
  color: #ffffff;
  margin-bottom: 0.2rem;
  letter-spacing: 0.02rem;
}

.order-subtitle {
  font-size: 1.6rem;
  font-weight: 400;
  color: #000000;
}

.order-book {
  position: absolute;
  right: -2rem;
  top: -36px;
  width: 430px;
  max-width: 55vw;
  filter: drop-shadow(0 6px 6px rgba(0, 0, 0, 0.12));
  pointer-events: none;
}

.order-actions-wrapper {
  max-width: var(--hero-max-width);
  margin: 0 auto;
  padding: 3.6rem 12rem 0;
}

.order-actions {
  display: flex;
  justify-content: left;
  gap: 8rem;
}

.order-btn {
  display: inline-block;
  background: #ffffff;
  color: #000000;
  border: 3px solid #d77710;
  border-radius: 12px;
  padding: 0.25rem 1.6rem 0.3rem;
  font-weight: 700;
  font-size: 1.25rem;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.order-btn:hover {
  transform: translateY(-2px);
  opacity: 0.75;
}

@media (max-width: 900px) {
  .order-bar-inner { padding-bottom: 7rem; }

  .order-title { font-size: 2.6rem; }
  .order-subtitle { font-size: 1.3rem; }

  .order-book {
    right: 50%;
    top: auto;
    bottom: -62px;
    transform: translateX(50%) rotate(-12deg);
    width: min(420px, 92%);
    max-width: none;
  }

  .order-actions {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding-top: 4.2rem;
  }

  .order-btn {
    width: min(360px, 100%);
    text-align: center;
  }
}

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
  background: #4b4a45;
  color: #ffffff;
  padding: 0.5rem 1.5rem 2rem;
}

.footer-inner {
  max-width: var(--hero-max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-left {
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  opacity: 0.95;
  font-weight: 400;
}

.footer-nav {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.footer-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.05rem;
  opacity: 0.95;
  font-weight: 400;
  letter-spacing: 0.03em;
}

.footer-link:hover {
  text-decoration: underline;
  opacity: 0.75;
}

.footer-top {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  background: transparent;
  color: var(--accent);
  font-size: 2rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.footer-top img { width: 24px; height: 24px; }
.footer-top img:hover { opacity: 0.7; }

.footer-top a { text-decoration: none; }
.footer-top span { color: var(--accent); }
.footer-top span:hover { opacity: 0.75; }

@media (max-width: 900px) {
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-nav { gap: 2rem; }
}

/* =========================================================
   MOBILE < 768px  (konsolidiert aus inline + responsive-update.css)
   Breakpoint bleibt konsistent mit deinem Hamburger-Menü (767px)
   ========================================================= */

@media (max-width: 767px) {
  /* NAV */
  .nav-inner { padding: 0 1rem; height: 55px; }
  .nav-logo a { font-size: 1.4rem; }

  .nav-toggle { display: flex; }

  .nav-menu {
    position: fixed;
    top: 55px;
    left: 0;
    right: 0;
    background: rgba(247, 249, 252, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    gap: 0;
    padding: 1.5rem 0;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-menu li {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

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

  .nav-link {
    display: block;
    padding: 1rem 1.5rem;
    font-size: 1.3rem;
  }

  .nav-link::after { display: none; }

  .nav-cta {
    margin: 1rem auto 0.5rem;
    display: inline-block;
    font-size: 1.3rem;
    padding: 0.1rem 0.9rem 0.2rem;
  }

  /* Hamburger Animation (2 spans) */
  /*.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
  }

  .nav-toggle.active span:nth-child(2) {
    transform: rotate(-45deg) translate(-3px, 1px);
  }*/

  /* Scrolled nav sizes */
  .site-nav.scrolled .nav-inner { height: 55px; }
  .site-nav.scrolled .nav-menu { top: 55px; }

  /* HERO */
  .hero { padding-top: 3.5rem; }

  .hero-inner {
    padding: 2rem 1rem 2rem;
    min-height: auto;
  }

  .hero-inner::before,
  .hero-inner::after {
    display: none;
  }

  .hero-book-wrapper { padding-top: 0; }

  .hero-book-image {
    width: 95%;
    margin-bottom: 1.5rem;
    margin-top: -6rem;
  }

  .hero-text {
    margin-top: 0;
    padding-left: 0;
  }

  .hero-question-mark {
    font-size: 15rem;
    left: 85%;
    top: -10%;
  }

  .hero-headline {
    font-size: clamp(1.8rem, 6vw, 2.4rem);
    margin-bottom: 0.8rem;
  }

  .hero-subline {
    font-size: 1.4rem;
    padding-left: 0;
    margin-bottom: 1.2rem;
  }

  .hero-copy {
    font-size: 1.2rem;
    padding-left: 0;
    line-height: 1.4;
  }

  .hero-right { width: 180px; height: 180px; }

  .hero-author-circle {
    width: 140px;
    height: 140px;
    transform: translate(0, 0);
    padding: 10px;
  }

  /* STATS */
  .stats-section { margin-bottom: 2rem; }

  .stats-inner {
    padding: 2rem 1rem 3rem;
    min-height: 600px;
  }

  .stats-inner::before { display: none; }

  .stat-label { width: 200px; }
  .stat-bu { font-size: 0.5rem; }

  .stat-bubble--xl { width: 180px; height: 180px; }
  .stat-bubble--lg { width: 160px; height: 160px; }
  .stat-bubble--md { width: 130px; height: 130px; }
  .stat-bubble--sm { width: 110px; height: 110px; }

  .stat-number { font-size: 3rem; }
  .stat-number--small { font-size: 2.2rem; }
  .stat-text { font-size: 1.3rem; }
  .stat-text--small { font-size: 1rem; }

  .stat-item--hungry { left: 60%; top: 2%; }
  .stat-item--wars { left: 8%; top: 32%; right: auto; }
  .stat-item--plastic { right: 8%; bottom: 20%; }
  .stat-item--wealth { left: 40%; bottom: 3%; }

  /* externe Datei hatte hier spezifische visible-Transforms */
  .stat-item.visible { transform: translate(-50%, 0) scale(0.85); }
  .stat-item--wars.visible,
  .stat-item--plastic.visible { transform: scale(0.85) translateY(0); }

  /* PROBLEMS */
  .problems-header { padding: 0.1rem 1rem 0.3rem; }
  .problems-header-title { font-size: clamp(1.8rem, 5vw, 2.5rem); }

  .problems-body { padding: 1.5rem 1rem 3rem; }
  .problems-body::after { font-size: 12rem; right: -5%; top: 20%; }

  .problems-lead {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.4;
  }

  .problems-slider { min-height: 320px; }

  .problems-image-circle {
    width: 200px;
    height: 200px;
    border: 8px solid #ffffff;
  }

  .problems-card {
    padding: 1rem 1.5rem;
    min-width: auto;
  }

  .problems-card-title { font-size: 1.3rem; }
  .problems-card-text { font-size: 1.05rem; }

  /* ANSWER */
  .answer-section { padding: 0 1rem; margin-bottom: 3rem; }
  .answer-inner::before { display: none; }

  .answer-title { font-size: clamp(1.8rem, 5vw, 2.5rem); margin-bottom: 1rem; }
  .answer-lead { font-size: 1.2rem; margin-bottom: 3rem; line-height: 1.4; }

  .answer-diagram { grid-template-columns: 1fr; gap: 1.5rem; padding: 0; }
  .answer-tag { font-size: 2rem; padding: 0.2rem 1rem 0.3rem; }
  .answer-text { font-size: 1.05rem; }

  .answer-smiley-wrap { top: 0; margin-top: 1.5rem; }
  .answer-smiley-circle { width: 180px; height: 180px; }

  .answer-arrow-line { display: none; }
  .answer-smiley-caption { font-size: 1.5rem; }
  .answer-smiley-text { font-size: 1.05rem; }

  /* TIMELINE */
  .timeline-section { padding: 3rem 1rem 2rem; }
  .timeline-pin { height: auto; }

  .timeline-title { font-size: clamp(1.8rem, 5vw, 2.5rem); margin-bottom: 0.8rem; }
  .timeline-lead { font-size: 1.2rem; padding-left: 0; margin-bottom: 1.5rem; line-height: 1.4; }

  .timeline-card { position: static; top: auto; padding: 1.5rem 1rem; }
  .timeline-track-wrapper { overflow-x: auto; padding-bottom: 1rem; }

  .timeline-line { display: none; }
  .timeline-track { gap: 2.5rem; }

  .timeline-item {
    flex: 0 0 180px;
    opacity: 1;
    transform: translateY(0);
  }

  .timeline-item-img {
    width: 130px;
    height: 130px;
    border-radius: 30px;
    margin-bottom: 1.2rem;
  }

  .timeline-item-time { font-size: 0.7rem; }
  .timeline-item-title { font-size: 1.05rem; }
  .timeline-item-text { font-size: 0.9rem; }

  /* BOOK */
  .book-section { padding: 1rem 1rem 3rem; }
  .book-inner::before { display: none; }

  .book-top { grid-template-columns: 1fr; gap: 2rem; margin-bottom: 2rem; }
  .book-title { font-size: clamp(1.8rem, 5vw, 2.5rem); margin-bottom: 1.5rem; }

  .book-cover { max-width: 200px; margin-top: 0; }
  .book-expect { margin-top: 0; }

  .book-expect-title { font-size: 1.5rem; margin-bottom: 1rem; }
  .book-list li { font-size: 1.1rem; margin-bottom: 0.6rem; }



  /* AUTHOR */
  .author-section { padding: 3rem 1rem 3.5rem; }

  .author-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .author-inner::before,
  .author-inner::after { display: none; }

  .author-media {
    width: 150px;
    height: 150px;
    justify-self: center;
    left: 0;
    top: 0;
    margin: 0 auto;
  }

  .author-circle-outer { inset: -18px; }

  .author-title { font-size: clamp(1.8rem, 5vw, 2.5rem); }
  .author-name { font-size: 1.5rem; margin-bottom: 1.2rem; }
  .author-content { max-width: none; }

  .author-content p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
  }

  /* ORDER */
  .order-section { padding: 2rem 0 8rem; }

  .order-bar-inner {
    padding: 0.5rem 1rem 0.69rem;
    min-height: auto;
  }

  .order-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    text-align: center;
  }

  .order-subtitle { font-size: 1.2rem; text-align: center; }

  .order-book {
    right: 50%;
    top: auto;
    bottom: -12rem;
    transform: translateX(50%) rotate(-8deg);
    width: min(320px, 80%);
    max-width: none;
  }

  .order-actions-wrapper { padding: 8rem 1rem 0; }

  .order-actions {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .order-btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
    font-size: 1.15rem;
  }

  /* FOOTER */
  .site-footer { padding: 1rem 1rem 1.5rem; }

  .footer-inner {
    flex-direction: column;
    gap: 1rem;
  }

  .footer-left { font-size: 0.95rem; text-align: center; }
  .footer-nav { gap: 1.5rem; }
  .footer-link { font-size: 0.95rem; }

  .footer-top { width: 38px; height: 38px; font-size: 1.8rem; }
}

/* ============================================
   RESPONSIVE DESIGN - LESEPROBE
   ============================================ */

/* Tablet */
@media (max-width: 768px) {
  .leseprobe-preview {
    padding: 40px 30px;
  }

  .leseprobe-title {
    font-size: 2rem;
  }

  .preview-text {
    font-size: 1.05rem;
    line-height: 1.7;
  }

  .download-cta {
    padding: 40px 30px;
  }

  .cta-content h4 {
    font-size: 1.6rem;
  }

  .cta-description {
    font-size: 1rem;
  }

  .cta-button {
    /*padding: 18px 35px;*/
    font-size: 1rem;
  }

  .button-text strong {
    font-size: 1rem;
  }
}

/* Mobile */
@media (max-width: 767px) {
  /*.leseprobe-container {
    margin-top: 2rem;
  }*/

  .leseprobe-preview {
    padding: 20px 20px 30px;
  }

  .leseprobe-title {
    font-size: 1.75rem;
    margin: 0 0 20px 0;
  }

  .preview-text {
    font-size: 1rem;
    line-height: 1.65;
    text-align: left;
  }

  .leseprobe-question {
    padding: 15px 20px;
    font-size: 1rem;
    margin: 25px 0;
  }

  .preview-fade {
    height: 100px;
  }

  .download-cta {
    padding: 35px 20px;
  }

  .cta-content h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
  }

  .cta-description {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
  }

  .cta-button {
    flex-direction: column;
    gap: 10px;
    /*padding: 20px 30px;
    width: 100%;*/
    max-width: 320px;
  }

  .cta-button .icon {
    font-size: 2rem;
  }

  .button-text {
    align-items: center;
    text-align: center;
  }

  .button-text strong {
    font-size: 0.95rem;
  }

  .button-text small {
    font-size: 0.8rem;
  }

  .cta-bonus {
    font-size: 0.85rem;
    margin-top: 15px;
  }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
  .leseprobe-preview {
    padding: 25px 15px;
  }

  .leseprobe-title {
    font-size: 1.5rem;
  }

  .preview-text {
    font-size: 0.95rem;
  }

  .cta-content h4 {
    font-size: 1.25rem;
  }

  .cta-button {
    padding: 18px 25px;
    max-width: 100%;
  }
}


 /*-------------Datenschutz-styles------------*/
    #start{margin-top: 3rem;}

    .datenschutz-wrapper{padding:6rem 4rem 10rem;margin:0 auto; max-width:980px;}

.datenschutz-head{margin-bottom: 5rem;text-align:center}
.datenschutz-head h1{font-size:clamp(1.8rem, 5vw, 2.5rem)  }
.datenschutz-head .subline{font-weight:400;font-size: 1.2rem;}
.datenschutz-body{max-width:600px;margin:0 auto}
.datenschutz-body h2,.datenschutz-body h3{text-align:center}

 .datenschutz-body h2,.datenschutz-body h3{text-align:center}
    .datenschutz-body-head{text-align:center;margin-bottom: 4rem;}
    
    


    .datenschutz-body p,
    .datenschutz-body h2 {
        margin-bottom: 2rem;
    }

@media (max-width: 550px) {.datenschutz-wrapper{padding:6rem 02rem 10rem}}

    /* Accordion Container */
.accordion {
  max-width: 800px;
  margin: 0 auto;
}

/* Accordion Item */
.accordion-item {
  margin-bottom: 10px;
  border-bottom: 1px solid #bbb;
  /*border-radius: 5px;*/
  overflow: hidden;
}

/*.accordion-header::after{width: 30px;
  height: 30px;
  background: red;
  display: inline-block;
  right: 0;
  position: relative;
  top: 0;}*/

/* Hide Checkbox */
.accordion-item input[type="checkbox"] {
  display: none;
}

/* Accordion Header */
.accordion-header {
  display: block;
  padding: 15px 0;
  /*background-color: #f5f5f5;*/
  cursor: pointer;
  font-weight: bold;
  /*transition: background-color 0.3s;*/
  position: relative;
  user-select: none;font-size: 1.2rem;
}

.accordion-header:hover {
  /*background-color: #e8e8e8;*/
}

/* Plus/Minus Icon */
.accordion-header::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.8rem;
  transition: transform 0.3s;
  color: var(--accent);
}

/* Change Icon when opened */
.accordion-item input[type="checkbox"]:checked + .accordion-header::after {
  content: '−';
}

/* Accordion Body */
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 20px;
  background-color: #fff;
}

/* Show Body when checked */
.accordion-item input[type="checkbox"]:checked ~ .accordion-body {
  max-height: 5000px;
  padding: 20px;
  transition: max-height 0.5s ease-in;
}

/* Styling for content inside accordion */
.accordion-body p {
  margin: 0;
  line-height: 1.3;
}

.accordion-body ul {
  margin: 0;
  padding-left: 20px;
}

.accordion-body li {
  line-height: 1.6;
}


/*--Nav mininmal für Impressum Datenschutz ----------*/
/* =========================
   LEGAL NAV – MINIMAL
   ========================= */

.site-nav--legal .nav-menu {
    display: flex;
    gap: 0;
}



.site-nav--legal .nav-link--back::after {
    display: none;
}

/* Kein Hamburger auf Legal-Seiten */
.site-nav--legal .nav-toggle {
    display: none !important;
}

/* Legal: Rücklink immer sichtbar */
.site-nav--legal .nav-link--back{
  display: inline-block;
  padding:1rem 0;font-size: 1rem;
}

/* Legal: keine Mobile-Menü-Mechanik benutzen */
@media (max-width: 767px){
  .site-nav--legal .nav-menu{ display: none; } /* falls noch vorhanden */
  .site-nav--legal .nav-toggle{ display: none !important; } /* optional */
}




.todo{color:magenta}