
:root {
  --ink: #17322a;
  --blue: #355c8d;
  --blue-light: #6da5d1;
  --green: #2e6b41;
  --cream: #f5f3ed;
  --paper: #fbfaf7;
  --line: rgba(23, 50, 42, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}
a { color: inherit; text-decoration: none; }
svg { width: 26px; height: 26px; }

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 50%;
  width: min(1180px, calc(100% - 48px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  color: white;
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255,255,255,.96);
}
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.brand strong, .brand small { display: block; line-height: 1.05; }
.brand strong { font-size: 15px; }
.brand small { margin-top: 4px; font-size: 12px; letter-spacing: .05em; }
nav { display: flex; align-items: center; gap: 20px; font-size: 14px; font-weight: 600; }
nav a { transition: opacity .2s ease; }
nav a:hover { opacity: .75; }
.nav-search { display: inline-grid; place-items: center; min-width: 30px; line-height: 1; }
.nav-search-icon { position: relative; display: inline-block; width: 18px; height: 18px; box-sizing: border-box; border: 2px solid #fff; border-radius: 50%; }
.nav-search-icon::after { content: ""; position: absolute; right: -5px; bottom: -3px; width: 7px; height: 2px; border-radius: 2px; background: #fff; transform: rotate(45deg); transform-origin: left center; }
.nav-search-label { display: none; }
.nav-cta { padding: 11px 18px; border: 1px solid rgba(255,255,255,.55); border-radius: 999px; }

.hero {
  position: relative;
  min-height: clamp(560px, 52.5vw, 800px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 120px 24px 38px;
  color: white;
  overflow: hidden;
  background-color: #17322a;
  background-image:
    linear-gradient(to bottom, rgba(8, 26, 24, .28) 0%, transparent 27%, transparent 72%, rgba(8, 26, 24, .58) 100%),
    url("hero/telgte-titelbild.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.section-label {
  margin: 0 0 24px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
.hero-actions {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin: 0;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 52px;
  padding: 0 23px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: white; color: var(--blue); }
.button-secondary { border: 1px solid rgba(255,255,255,.45); }
.intro, .channels, .downloads, .topics {
  max-width: 1180px;
  margin: 0 auto;
  padding: 105px 24px;
}
.section-label { color: var(--blue); }
.section-label::before { content: "— "; }
.intro-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 90px; align-items: start; }
.overview-layout .intro-grid {
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 32px;
}
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 3.8vw, 48px);
  line-height: 1.05;
  letter-spacing: -.035em;
  font-weight: 500;
}
.intro-grid > div > p { font-size: 19px; line-height: 1.75; color: #52635e; }
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 42px; border-top: 1px solid var(--line); }
.values span { padding-top: 20px; font-size: 14px; font-weight: 700; }
.values b { display: block; margin-bottom: 9px; color: var(--blue-light); font-size: 11px; letter-spacing: .1em; }

.channels { max-width: none; padding-left: max(24px, calc((100vw - 1180px)/2)); padding-right: max(24px, calc((100vw - 1180px)/2)); background: var(--cream); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 44px; }
.section-heading h2 { margin-bottom: 0; }
.section-heading > p { max-width: 280px; margin-bottom: 8px; color: #63716d; line-height: 1.6; }
.channel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.channel-card {
  min-height: 370px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  color: white;
  border-radius: 5px;
  transition: transform .22s ease, box-shadow .22s ease;
}
.channel-card:hover { transform: translateY(-6px); box-shadow: 0 20px 35px rgba(23,50,42,.12); }
.channel-card.facebook { background: var(--blue); }
.channel-card.instagram { background: linear-gradient(145deg, #8b4772, #d37a55); }
.channel-card.whatsapp { background: var(--green); }
.channel-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.48);
  border-radius: 50%;
}
.channel-brand-icon {
  width: 66px;
  height: 66px;
  overflow: hidden;
  border: 0;
  background: white;
}
.channel-brand-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.channel-card p { margin-bottom: 12px; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; opacity: .7; }
.channel-card h3 { margin-bottom: 28px; font-family: Georgia, serif; font-size: 32px; line-height: 1.1; font-weight: 500; overflow-wrap: anywhere; }
.channel-card span { display: flex; justify-content: space-between; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.3); font-size: 13px; font-weight: 700; }

.weekly-review {
  padding-top: 80px;
  padding-bottom: 84px;
  background: linear-gradient(145deg, #edf3ee, #f8f7f2);
}
.weekly-review-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.weekly-review-card {
  display: flex;
  min-width: 0;
  min-height: 310px;
  flex-direction: column;
  padding: 25px;
  background: #fff;
  border: 1px solid rgba(46, 107, 65, .16);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(30, 62, 42, .06);
  transition: transform .22s ease, box-shadow .22s ease;
}
.weekly-review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 34px rgba(30, 62, 42, .11);
}
.weekly-review-period {
  margin: 0 0 18px;
  color: var(--green);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.weekly-review-card h3 {
  margin: 0 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1.25;
  font-weight: 500;
}
.weekly-review-card ul {
  margin: 0 0 24px;
  padding-left: 18px;
  color: #59665e;
  font-size: .85rem;
  line-height: 1.55;
}
.weekly-review-card li + li { margin-top: 6px; }
.weekly-review-link {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  color: var(--green);
  border-top: 1px solid var(--line);
  font-size: .8rem;
  font-weight: 800;
}
.weekly-review-footer {
  margin-top: 30px;
  text-align: center;
}
.archive-button {
  color: #fff;
  background: var(--green);
}

.search-main {
  max-width: 980px;
  margin: 0 auto;
  padding: 78px 24px 110px;
}
.search-intro {
  max-width: 760px;
  margin-bottom: 34px;
}
.search-intro h1 {
  margin: 0 0 18px;
  font: 500 clamp(38px, 5vw, 58px)/1.05 Georgia, "Times New Roman", serif;
  letter-spacing: -.035em;
}
.search-intro > p:last-child { color: #59665e; font-size: 18px; line-height: 1.7; }
.site-search-form {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(23,50,42,.055);
}
.site-search-form input {
  min-width: 0;
  flex: 1;
  min-height: 52px;
  padding: 14px 16px;
  border: 1px solid #aebbb5;
  border-radius: 6px;
  color: var(--ink);
  font: inherit;
}
.site-search-form input:focus { outline: 3px solid rgba(53,92,141,.18); border-color: var(--blue); }
.site-search-form button {
  min-width: 132px;
  border: 0;
  cursor: pointer;
}
.site-search-status { min-height: 24px; margin: 0 0 30px; color: #59665e; font-size: 14px; }
.site-search-results { display: grid; gap: 14px; }
.site-search-result {
  padding: 23px 25px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(23,50,42,.045);
}
.site-search-result small { display: block; margin-bottom: 8px; color: var(--green); font-weight: 800; letter-spacing: .045em; text-transform: uppercase; }
.site-search-result h2 { margin: 0 0 9px; color: var(--ink); font: 500 23px/1.25 Georgia, serif; letter-spacing: -.015em; }
.site-search-result p { margin: 0 0 13px; color: #59665e; line-height: 1.6; }
.site-search-result a { color: var(--blue); font-size: 14px; font-weight: 800; }
.site-search-empty, .site-search-error { padding: 25px; border: 1px solid var(--line); border-radius: 8px; background: #fff; color: #59665e; text-align: center; }

.downloads { padding-top: 110px; padding-bottom: 110px; }
.download-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.download-card {
  min-width: 0;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 42px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: white;
  box-shadow: 0 12px 35px rgba(23,50,42,.06);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.download-card:hover {
  transform: translateY(-5px);
  border-color: rgba(53,92,141,.32);
  box-shadow: 0 22px 44px rgba(23,50,42,.1);
}
.download-topline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  min-width: 0;
}
.file-type {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--blue);
  color: white;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
}
.file-meta {
  min-width: 0;
  color: #75827e;
  font-size: 12px;
  line-height: 1.25;
  font-weight: 700;
  text-align: right;
  overflow-wrap: anywhere;
}
.download-card h3 {
  margin-bottom: 14px;
  font-family: Georgia, serif;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 500;
  hyphens: auto;
  overflow-wrap: anywhere;
}
.download-card p {
  margin-bottom: 0;
  color: #60706b;
  font-size: 15px;
  line-height: 1.6;
  hyphens: auto;
  overflow-wrap: anywhere;
}
.download-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
}
.download-link span { font-size: 20px; transition: transform .2s ease; }
.download-link:hover span { transform: translateY(3px); }
.download-note { margin: 24px 0 0; color: #75827e; font-size: 13px; }

.topics { padding-top: 110px; padding-bottom: 120px; }
.topic-list { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); }
.topic { display: flex; align-items: center; gap: 30px; padding: 28px 12px; border-bottom: 1px solid var(--line); }
.topic:nth-child(odd) { border-right: 1px solid var(--line); }
.topic span { color: var(--blue-light); font-size: 11px; letter-spacing: .12em; }
.topic strong { font-family: Georgia, serif; font-size: 23px; font-weight: 500; }

.join {
  padding: 95px max(24px, calc((100vw - 900px)/2));
  text-align: center;
  color: white;
  background: linear-gradient(125deg, #254f38, var(--green));
}
.section-label.light { color: #cfe0c8; }
.join h2 { margin-bottom: 24px; }
.join > p:not(.section-label) { max-width: 680px; margin: 0 auto 34px; font-size: 18px; line-height: 1.7; color: rgba(255,255,255,.8); }
.button-light { background: var(--cream); color: var(--green); }
footer {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  padding: 48px 24px;
}
.footer-brand { color: var(--ink); }
.footer-brand .brand-mark { background: var(--cream); }
footer > p { margin: 0; color: #70807b; font-size: 12px; text-align: center; }
.footer-links { display: flex; justify-content: flex-end; gap: 20px; font-size: 13px; font-weight: 700; }

@media (max-width: 850px) {
  .site-header { width: calc(100% - 36px); }
  nav > a:not(.nav-cta):not(.nav-search) { display: none; }
  nav { gap: 12px; }
  .nav-search { padding: 9px 12px; border: 1px solid rgba(255,255,255,.35); border-radius: 999px; }
  .hero { min-height: 520px; padding-bottom: 32px; }
  .intro-grid { grid-template-columns: 1fr; gap: 25px; }
  .overview-layout .intro-grid { grid-template-columns: 1fr; gap: 25px; }
  .channel-grid { grid-template-columns: 1fr; }
  .weekly-review-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .download-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .download-card h3 { font-size: 20px; }
  .channel-card { min-height: 300px; }
  footer { grid-template-columns: 1fr; justify-items: center; }
  .footer-links { justify-content: center; }
}

/* Einheitliche mobile Hauptnavigation */
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 8px;
  color: #fff;
  background: rgba(55, 61, 63, .42);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  font: 700 25px/1 Arial, sans-serif;
  cursor: pointer;
}

@media (max-width: 850px) {
  .site-header { flex-wrap: wrap; }
  .menu-toggle { display: inline-grid; place-items: center; margin-left: auto; }
  .site-header > nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    margin-top: 12px;
    padding: 10px;
    border: 1px solid rgba(255,255,255,.58);
    border-radius: 10px;
    background-color: rgba(235, 237, 236, .84);
    box-shadow: 0 12px 30px rgba(0,0,0,.18);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
  }
  .site-header > nav.is-open { display: flex; }
  .site-header > nav > a,
  .site-header > nav > a:not(.nav-cta):not(.nav-search) {
    display: block;
    width: 100%;
    padding: 12px 14px;
    border-radius: 6px;
    border-bottom: 1px solid rgba(31, 48, 39, .12);
    color: #26372e;
    text-shadow: none;
  }
  .site-header > nav > a:last-child { border-bottom: 0; }
  .site-header > nav > a:hover,
  .site-header > nav > a:focus-visible { background: rgba(255,255,255,.55); }
  .site-header > nav .nav-search,
  .site-header > nav .nav-cta { text-align: left; }
  .site-header > nav .nav-search { display: flex; align-items: center; gap: 9px; font-size: 14px; line-height: inherit; }
  .site-header > nav .nav-search-label { display: inline; }
  .site-header > nav .nav-cta {
    border-bottom: 0;
    color: #fff;
    background: rgba(46, 107, 65, .92);
  }
  .menu-toggle[aria-expanded="true"] { background: rgba(55, 61, 63, .84); }
}

@media (max-width: 560px) {
  .brand strong { font-size: 13px; }
  .nav-cta { padding: 9px 13px; font-size: 12px; }
  .hero {
    min-height: 415px;
    padding: 260px 18px 22px;
    background-size: 100% auto;
    background-position: center top;
    background-image:
      linear-gradient(to bottom, rgba(8, 26, 24, .28) 0%, transparent 27%, transparent 72%, rgba(8, 26, 24, .58) 100%),
      url("hero/telgte-titelbild-mobile.webp");
  }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .intro, .channels, .downloads, .topics { padding-top: 75px; padding-bottom: 75px; }
  .download-card { min-height: 320px; padding: 26px; }
  .download-card h3 { font-size: 20px; }
  .values { grid-template-columns: 1fr; }
  .values span { padding-bottom: 14px; }
  .section-heading { display: block; }
  .section-heading > p { margin-top: 18px; }
  .weekly-review-grid { grid-template-columns: 1fr; }
  .download-grid { grid-template-columns: 1fr; }
  .weekly-review-card { min-height: 0; }
  .topic-list { grid-template-columns: 1fr; }
  .topic:nth-child(odd) { border-right: 0; }
  .topic { padding-left: 4px; }
  .search-main { padding: 55px 16px 80px; }
  .site-search-form { display: block; padding: 16px; }
  .site-search-form input, .site-search-form button { width: 100%; }
  .site-search-form button { margin-top: 9px; }
}

/* Bewertungen */
.reviews-main { min-height: 70vh; background: var(--paper); }
.reviews-opening { padding: 74px max(24px, calc((100% - 980px)/2)); background: linear-gradient(145deg, #edf3ee, #fbfaf7); }
.reviews-opening h1 { max-width: 820px; margin-bottom: 20px; font: 500 clamp(38px, 4.5vw, 54px)/1.08 Georgia, serif; letter-spacing: -.035em; }
.reviews-lead { max-width: 790px; margin: 0; color: #52635e; font-size: clamp(19px, 2.2vw, 24px); line-height: 1.55; }
.reviews-content { max-width: 1180px; margin: 0 auto; padding: 70px 24px 96px; }
.reviews-content.narrow { max-width: 820px; }
.reviews-layout { display: grid; grid-template-columns: minmax(300px,.8fr) minmax(340px,1.2fr); gap: 42px; align-items: start; }
.reviews-panel, .reviews-summary, .review-card, .admin-review, .admin-login { border: 1px solid var(--line); border-radius: 12px; background: #fff; box-shadow: 0 12px 30px rgba(23,50,42,.055); }
.reviews-panel { padding: 30px; }
.reviews-form { display: grid; gap: 19px; }
.reviews-form label, .reviews-form legend { color: var(--ink); font-size: 14px; font-weight: 750; }
.reviews-form label small { display: block; margin-top: 3px; color: #65726c; font-weight: 500; }
.reviews-form input:not([type=radio]):not([type=checkbox]), .reviews-form textarea { width: 100%; margin-top: 8px; padding: 12px 13px; border: 1px solid #b9c4bf; border-radius: 7px; color: var(--ink); background: #fff; font: inherit; box-sizing: border-box; }
.reviews-form textarea { resize: vertical; }
.reviews-form fieldset { margin: 0; padding: 0; border: 0; }
.star-choice { display: flex; flex-direction: row-reverse; justify-content: flex-end; margin-top: 8px; }
.star-choice input { position: absolute; opacity: 0; }
.star-choice label { color: #c8ceca; font-size: 38px; line-height: 1; cursor: pointer; }
.star-choice label:hover, .star-choice label:hover ~ label, .star-choice input:checked ~ label { color: #e0a92c; }
.check-label { display: flex; gap: 10px; align-items: flex-start; font-weight: 500 !important; line-height: 1.45; }
.check-label input { margin-top: 3px; }
.reviews-submit { border: 0; color: #fff; background: var(--green); cursor: pointer; }
.reviews-submit:disabled { opacity: .5; cursor: not-allowed; }
.reviews-honeypot { position: absolute; left: -9999px; }
.reviews-notice { margin: 0 0 28px; padding: 18px 20px; border-radius: 8px; line-height: 1.55; }
.reviews-notice.success { border-left: 4px solid var(--green); background: #eaf4ed; }
.reviews-notice.error { border-left: 4px solid #a73b35; background: #f9ecea; }
.reviews-list { display: grid; gap: 16px; }
.reviews-summary { display: flex; gap: 16px; align-items: center; padding: 21px 24px; }
.summary-stars { color: #c88900; font-size: 25px; font-weight: 850; }
.review-card { padding: 23px 25px; }
.review-card-head { display: flex; justify-content: space-between; gap: 16px; margin-bottom: 14px; }
.review-stars { color: #e0a92c; letter-spacing: 2px; }
.review-stars span { color: #d7ddd9; }
.review-card time, .admin-review span { color: #68756f; font-size: 13px; }
.review-card p, .admin-review p { color: #43534d; line-height: 1.65; }
.reviews-empty { padding: 24px; border-left: 4px solid var(--blue-light); background: var(--cream); }
.admin-login { padding: 28px; }
.admin-tools { margin-bottom: 25px; }
.admin-review { margin-bottom: 17px; padding: 22px; }
.admin-review > div { display: flex; justify-content: space-between; gap: 12px; }
.admin-review.status-wartet { border-left: 5px solid #e0a92c; }
.admin-review.status-veroeffentlicht { border-left: 5px solid var(--green); }
.admin-review.status-abgelehnt { border-left: 5px solid #8b9691; }
.admin-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.admin-actions button { padding: 9px 13px; border: 0; border-radius: 5px; color: #fff; background: var(--green); font-weight: 750; cursor: pointer; }
.admin-actions button:nth-child(4) { background: #69756f; }
.admin-actions .danger { background: #a73b35; }
@media (max-width: 760px) { .reviews-layout { grid-template-columns: 1fr; } .reviews-opening { padding: 58px 20px; } .reviews-content { padding: 52px 18px 76px; } .reviews-panel { padding: 23px; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}

/* Ausführliche Seite „Über uns“ */
.archive-header { position: static; left: auto; width: 100%; transform: none; padding: 22px max(24px, calc((100% - 1180px)/2)); color: #fff; background: #17322a; }
.about-main { background: var(--paper); }
.about-opening, .about-section, .about-closing { padding: 82px max(24px, calc((100% - 980px)/2)); }
.about-opening { background: linear-gradient(145deg, #edf3ee, #fbfaf7); }
.about-opening h1 { max-width: 760px; margin-bottom: 28px; font: 500 clamp(38px, 4.5vw, 54px)/1.08 Georgia, serif; letter-spacing: -.035em; }
.about-opening > p:not(.section-label), .about-copy > p, .about-closing p { color: #52635e; font-size: 18px; line-height: 1.75; }
.about-opening .about-lead { max-width: 850px; color: var(--ink); font-size: clamp(21px, 2.5vw, 27px); line-height: 1.55; }

/* Schlichte, einheitliche Gestaltung für Impressum und Datenschutz */
.legal-main { background: linear-gradient(145deg, #edf3ee 0, var(--paper) 320px); }
.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 82px 24px 100px;
  color: #52635e;
  font-size: 17px;
  line-height: 1.72;
}
.legal-content h1 {
  margin-bottom: 42px;
  color: var(--ink);
  font: 500 clamp(38px, 4.5vw, 54px)/1.08 Georgia, serif;
  letter-spacing: -.035em;
}
.legal-content h2 {
  margin: 48px 0 15px;
  color: var(--ink);
  font: 500 clamp(23px, 2.5vw, 29px)/1.25 Georgia, serif;
}
.legal-content p, .legal-content address { margin-bottom: 18px; }
.legal-content address { font-style: normal; }
.legal-content ul { padding-left: 24px; }
.legal-content a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.legal-content a:hover { color: var(--green); }
.footer-links a[aria-current="page"] { color: var(--green); }

@media (max-width: 560px) {
  .legal-content { padding: 58px 18px 78px; font-size: 16px; }
  .legal-content h1 { margin-bottom: 34px; }
  .legal-content h2 { margin-top: 38px; }
}
.about-copy { max-width: 980px; margin: 0 auto; }
.about-soft { background: var(--cream); }
.timeline-note { margin-bottom: 38px; font-size: 14px !important; }
.timeline { position: relative; margin: 42px 0 0; padding: 0; list-style: none; }
.timeline::before { content: ""; position: absolute; top: 7px; bottom: 7px; left: 138px; width: 2px; background: rgba(46,107,65,.28); }
.timeline li { position: relative; display: grid; grid-template-columns: 112px minmax(0,1fr); gap: 54px; padding: 0 0 42px; }
.timeline li::before { content: ""; position: absolute; top: 6px; left: 130px; width: 14px; height: 14px; border: 4px solid var(--paper); border-radius: 50%; background: var(--green); box-shadow: 0 0 0 2px rgba(46,107,65,.28); }
.timeline-date { padding-top: 4px; color: var(--green); font-size: 13px; font-weight: 800; line-height: 1.35; letter-spacing: .025em; text-align: right; }
.timeline h3 { margin: 0 0 9px; font: 500 25px/1.25 Georgia, serif; }
.timeline p { margin: 0; color: #59665e; line-height: 1.65; }
.about-channel-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; margin-top: 38px; }
.about-channel-grid article { display: flex; min-height: 230px; flex-direction: column; padding: 26px; border: 1px solid var(--line); border-radius: 10px; background: rgba(255,255,255,.76); }
.about-channel-grid h3 { margin-bottom: 10px; font: 500 25px/1.2 Georgia, serif; }
.about-channel-grid p { margin: 0; color: #59665e; line-height: 1.6; }
.channel-link { display: flex; justify-content: space-between; gap: 16px; margin-top: auto; padding-top: 22px; color: var(--green); border-top: 1px solid var(--line); font-size: 14px; font-weight: 800; }
.channel-link:hover, .channel-link:focus-visible { color: var(--blue); }
.about-values { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px 28px; margin: 34px 0; padding: 0; list-style: none; }
.about-values li { position: relative; padding: 16px 18px 16px 42px; border-top: 1px solid var(--line); line-height: 1.5; }
.about-values li::before { content: "✓"; position: absolute; left: 13px; color: var(--green); font-weight: 800; }
.about-closing { color: #fff; background: #17322a; }
.about-closing .section-label, .about-closing h2, .about-closing p { color: #fff; }
.about-closing > div { max-width: 880px; }
.about-claim { margin: 40px 0 0; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.22); }
.about-more-button { min-height: 46px; margin-top: 14px; color: #fff; background: var(--green); }

/* Vorschau auf der Startseite: Telgte entdecken */
.discover-preview { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr); gap: 70px; align-items: center; padding: 92px 24px; }
.discover-preview-copy > p:not(.section-label) { max-width: 680px; color: #52635e; font-size: 18px; line-height: 1.7; }
.discover-button { margin-top: 12px; color: #fff; background: var(--green); }
.discover-preview-list { display: grid; border-top: 1px solid var(--line); }
.discover-preview-list span { display: grid; grid-template-columns: 38px 1fr; gap: 12px; padding: 19px 0; border-bottom: 1px solid var(--line); font-weight: 750; line-height: 1.4; }
.discover-preview-list b { color: var(--blue-light); font-size: 12px; letter-spacing: .08em; }

/* Unterseite: Telgte entdecken */
.discover-main { background: var(--paper); }
.discover-opening { padding: 82px max(24px, calc((100% - 980px)/2)); background: linear-gradient(145deg, #edf3ee, #fbfaf7); }
.discover-opening h1 { max-width: 760px; margin-bottom: 28px; font: 500 clamp(38px, 4.5vw, 54px)/1.08 Georgia, serif; letter-spacing: -.035em; }
.discover-lead { max-width: 850px; margin-bottom: 0; color: var(--ink); font-size: clamp(21px, 2.5vw, 27px); line-height: 1.55; }
.discover-content { max-width: 1180px; margin: 0 auto; padding: 84px 24px 100px; }
.discover-intro { max-width: 780px; margin-bottom: 42px; color: #52635e; font-size: 17px; line-height: 1.7; }
.discover-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.discover-card { display: flex; min-height: 310px; flex-direction: column; padding: 32px; border: 1px solid var(--line); border-radius: 10px; background: #fff; box-shadow: 0 12px 30px rgba(23,50,42,.055); }
.discover-card:last-child { grid-column: 1 / -1; min-height: 270px; }
.discover-kicker { margin-bottom: 18px; color: var(--blue); font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.discover-card h2 { margin-bottom: 17px; font-size: clamp(27px, 3vw, 35px); }
.discover-card p { color: #59665e; line-height: 1.65; }
.discover-facts { display: flex; flex-wrap: wrap; gap: 8px; margin: 4px 0 24px; }
.discover-facts span { padding: 7px 10px; border-radius: 999px; color: #355c8d; background: #edf3f8; font-size: 12px; font-weight: 750; }
.discover-links { display: flex; flex-wrap: wrap; gap: 12px 18px; margin-top: auto; padding-top: 20px; border-top: 1px solid var(--line); }
.discover-links a { color: var(--green); font-size: 14px; font-weight: 800; }
.discover-links a:hover, .discover-links a:focus-visible { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.discover-source { margin: 48px 0 0; padding: 24px; border-left: 4px solid var(--blue-light); color: #52635e; background: var(--cream); line-height: 1.65; }
.discover-source a { color: var(--blue); font-weight: 800; }

@media (max-width: 850px) { .discover-preview { grid-template-columns: 1fr; gap: 38px; } }
@media (max-width: 700px) {
  .discover-opening { padding: 60px 20px; }
  .discover-content { padding: 60px 18px 78px; }
  .discover-grid { grid-template-columns: 1fr; }
  .discover-card, .discover-card:last-child { grid-column: auto; min-height: 0; padding: 26px; }
}

@media (max-width: 700px) {
  .about-opening, .about-section, .about-closing { padding: 60px 20px; }
  .timeline::before { left: 8px; }
  .timeline li { display: block; padding: 0 0 38px 38px; }
  .timeline li::before { left: 0; }
  .timeline-date { display: block; margin-bottom: 8px; text-align: left; }
  .about-channel-grid, .about-values { grid-template-columns: 1fr; }
}

/* Schwebender „Nach oben“-Pfeil */
.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  right: max(20px, env(safe-area-inset-right));
  bottom: max(20px, env(safe-area-inset-bottom));
  z-index: 2147483647;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 50%;
  color: #fff;
  background: rgba(46, 107, 65, .88);
  box-shadow: 0 6px 18px rgba(0,0,0,.22);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease, background-color .2s ease;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.back-to-top span { font: 700 28px/1 Arial, sans-serif; transform: translateY(-1px); }
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover,
.back-to-top:focus-visible { background: rgba(37, 87, 52, .96); }
.back-to-top:focus-visible { outline: 3px solid rgba(255,255,255,.9); outline-offset: 3px; }

@media (max-width: 560px) {
  .back-to-top {
    right: 14px;
    bottom: 14px;
    right: max(14px, env(safe-area-inset-right));
    bottom: max(14px, env(safe-area-inset-bottom));
    width: 44px;
    height: 44px;
  }
}
