/* Gesellschaft vernetzt — gesellschaft-vernetzt.de

   Alle Farben, Schriftgrade, Radien und Abstände sind aus dem Design-Template
   ausgelesen (Export vom 01.08.2026), nicht geschätzt. Wer hier Werte ändert,
   entfernt sich vom abgenommenen Entwurf.

   Zwei Regeln, die beim Bauen leicht brechen:
   1. Keine Inline-Styles im Markup — die CSP läuft ohne 'unsafe-inline'. Das
      Design-Template arbeitet durchgehend mit style="…"; alles davon lebt hier
      als Klasse.
   2. Schriftgrade in rem, damit die Browser-Schriftgröße greift. Die Kommentare
      nennen den px-Wert aus dem Entwurf. */

/* ---------------------------------------------------------------- Schriften

   Variable Schriften: eine Datei deckt 400–700 ab, deshalb "font-weight: 400 700".
   Die unicode-range-Angaben stammen aus dem Template — dadurch lädt der Browser
   die latin-ext-Datei nur, wenn ein Zeichen daraus vorkommt.

   Kursiv gibt es bewusst nicht als eigene Datei: das Design nutzt Kursive nur an
   zwei Stellen (Wortmarke, Merksatz) und rendert sie synthetisch. Eine echte
   Kursive wären 120 KB auf jeder Seite für zwei Wörter. */

@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/static/fonts/source-sans-3-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/static/fonts/source-sans-3-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Source Serif 4";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/static/fonts/source-serif-4-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Source Serif 4";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/static/fonts/source-serif-4-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ---------------------------------------------------------------- Tokens */

:root {
  /* Flächen */
  --papier: #faf7f1;
  --weiss: #ffffff;
  --linie: #e8e1d4;
  --linie-zart: #efe9dc;

  /* Leitfarben: Petrolgrün trägt, Ocker akzentuiert. */
  --petrol: #2f6b66;
  --petrol-dunkel: #244f4b;
  --petrol-lasur: rgba(47, 107, 102, 0.07);
  --ocker: #c98a3b;
  --ocker-hell: #e4c489;
  --ocker-dunkel: #8a5a18;

  /* Text */
  --ink: #2e3532;
  --text: #4a524e;
  --text-lead: #59635e;
  --leise: #7c857f;
  --grau-zahl: #9aa39e;

  /* Auf dunklem Grund */
  --auf-dunkel-titel: #fbf8f2;
  --auf-dunkel: #f3efe6;
  --auf-dunkel-text: #dce5df;

  /* Statusband, Footer, Platzhalter */
  --band-flaeche: #f3ead8;
  --band-text: #6e5320;
  --footer-flaeche: #2c3936;
  --footer-text: #c9d2cc;
  --footer-leise: #8c9891;
  --footer-ring-petrol: #8fb5af;
  --footer-ring-ocker: #d9b679;
  --ph-rand: #cdbfa4;
  --ph-flaeche: #efe8da;
  --ph-text: #8a806c;

  --serif: "Source Serif 4", Georgia, "Times New Roman", serif;
  --sans: "Source Sans 3", "Segoe UI", system-ui, -apple-system, sans-serif;

  /* Schriftgrade — px-Wert des Entwurfs im Kommentar */
  --t-kicker: 0.8125rem;  /* 13 */
  --t-klein: 0.969rem;    /* 15.5 */
  --t-karte: 1rem;        /* 16 */
  --t-mittel: 1.031rem;   /* 16.5 */
  --t-text: 1.0625rem;    /* 17 */
  --t-lead: 1.1875rem;    /* 19 */

  --breit: 1060px;
  --text-breite: 780px;
  --schmal: 720px;
  --pad-x: 24px;
  --sektion-y: 64px;
  --radius: 16px;
  --radius-block: 20px;
  --radius-feld: 12px;
}

/* ---------------------------------------------------------------- Grundlagen */

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: auto; }

body {
  margin: 0;
  background: var(--papier);
  color: var(--ink);
  font-family: var(--sans);
  font-size: var(--t-karte);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 0.5em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(30px, 4.6vw, 44px);
  line-height: 1.16;
}
h2 { font-size: 1.75rem; line-height: 1.24; }  /* 28 */
h3 { font-size: 1.1875rem; line-height: 1.3; } /* 19 */

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

a { color: var(--petrol); text-underline-offset: 2px; }
a:hover { color: var(--petrol-dunkel); }

strong { font-weight: 700; color: var(--ink); }

em { font-style: italic; }

:focus-visible {
  outline: 3px solid var(--petrol);
  outline-offset: 2px;
  border-radius: 3px;
}

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

/* ---------------------------------------------------------------- Layout

   Das Design gibt je Abschnitt eine eigene Lesebreite vor — breite Kartenraster
   1060px, Fließtext 780px, zentrierte Schlussabschnitte 720px. Deshalb hier
   Breiten-Modifikatoren statt einer einzigen Spalte. */

.container {
  width: 100%;
  max-width: var(--breit);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.container.narrow { max-width: var(--text-breite); }
.container.schmal { max-width: var(--schmal); }
.container.hero-breit { max-width: 860px; }
.container.kopf { max-width: 1080px; }

.center { text-align: center; }
.narrow-p { max-width: var(--text-breite); }

.section { padding: var(--sektion-y) 0; }
.section-top0 { padding-top: 0; }
.section-lang { padding-bottom: 88px; }

/* Abschnitte auf weißem Grund, oben und unten von einer Linie gefasst. */
.section-weiss {
  background: var(--weiss);
  border-top: 1px solid var(--linie);
  border-bottom: 1px solid var(--linie);
}
.section-weiss + .section-weiss { border-top: 0; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--papier);
  padding: 10px 16px;
  z-index: 100;
}
.skip-link:focus { left: 0; }

/* ---------------------------------------------------------------- Statusband */

.statusband {
  margin: 0;
  background: var(--band-flaeche);
  color: var(--band-text);
  font-size: 0.875rem; /* 14 */
  line-height: 1.5;
  letter-spacing: 0.01em;
  text-align: center;
  padding: 8px var(--pad-x);
}

/* ---------------------------------------------------------------- Kopfbereich */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(250, 247, 241, 0.96);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--linie);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}
/* Ring-Marke: zwei sich überschneidende Kreise — Petrol und Ocker. */
.brand-mark { flex: 0 0 auto; display: block; }
.brand-name {
  font-family: var(--serif);
  font-size: 1.25rem; /* 20 */
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}
.brand-name em {
  font-style: italic;
  font-weight: 500;
  color: var(--petrol);
}

/* Mobile Navigation ohne JavaScript: Checkbox-Umschalter. Das Design lässt die
   Leiste umbrechen; mit sechs Punkten wird das auf 375px unschön, deshalb hier
   ein Menüknopf und ab 860px die flache Leiste des Entwurfs. */
.nav-toggle { position: absolute; left: -9999px; }

.nav-toggle-label {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 11px;
  cursor: pointer;
  border: 1px solid var(--linie);
  border-radius: var(--radius-feld);
  background: var(--weiss);
}
.nav-toggle-label .bar {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}
.nav-toggle:focus-visible + .nav-toggle-label {
  outline: 3px solid var(--petrol);
  outline-offset: 2px;
}

.site-nav {
  display: none;
  width: 100%;
  flex-direction: column;
  gap: 2px;
  padding-bottom: 6px;
}
.nav-toggle:checked ~ .site-nav { display: flex; }

.site-nav a,
.nav-drop > summary {
  font-size: var(--t-klein);
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
}

.site-nav > a {
  display: block;
  padding: 11px 2px;
  border-bottom: 1px solid var(--linie-zart);
}
.site-nav > a:hover { color: var(--petrol); }
.site-nav > a.is-active { color: var(--petrol); }

/* Ausklappmenü über <details> — kein JavaScript nötig, tastaturbedienbar.
   Bewusst NICHT mit `open` vorgeladen: auf dem Desktop hinge das Feld sonst beim
   Laden über der Seite. Wo man ist, zeigt `is-active` am Menüpunkt. */
.nav-drop { border-bottom: 1px solid var(--linie-zart); }
.nav-drop > summary {
  list-style: none;
  cursor: pointer;
  padding: 11px 2px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-drop > summary::-webkit-details-marker { display: none; }
.nav-drop > summary::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid var(--ocker);
  border-bottom: 2px solid var(--ocker);
  transform: rotate(45deg) translate(-2px, -2px);
}
.nav-drop[open] > summary::after { transform: rotate(-135deg) translate(-2px, -2px); }
.nav-drop > summary:hover { color: var(--petrol); }
.nav-drop.is-active > summary { color: var(--petrol); }
.nav-drop > summary:focus-visible { outline: 3px solid var(--petrol); outline-offset: 2px; }

.nav-drop-panel { display: flex; flex-direction: column; }
.nav-drop-panel a {
  padding: 10px 2px 10px 16px;
  font-size: var(--t-klein);
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
}
.nav-drop-panel a:hover { color: var(--petrol); }
.nav-drop-panel a.is-active { color: var(--petrol); }

/* ---------------------------------------------------------------- Hero und Textbausteine */

.hero { padding: 72px 0 56px; }
.hero-start { padding: 84px 0 64px; }
.hero h1 { margin-bottom: 0.42em; }
.hero-start h1 {
  font-size: clamp(34px, 5.5vw, 54px);
  line-height: 1.14;
}
.page-head { padding: 72px 0 40px; }
/* Kopfbereich und folgender Abschnitt gehören optisch zusammen — sonst klafft
   auf den Formular- und Rechtsseiten eine Lücke. */
.page-head + .section { padding-top: 40px; }

.lead {
  font-size: var(--t-lead);
  line-height: 1.6;
  color: var(--text-lead);
  text-wrap: pretty;
  margin-bottom: 0;
}
.hero-center .lead { max-width: 640px; margin-left: auto; margin-right: auto; }

.kicker {
  font-size: var(--t-kicker);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ocker);
  margin: 0 0 14px;
}

/* Fließtext in Textabschnitten liegt eine Spur über der Grundgröße.

   Absichtlich niedrige Spezifität (0,1,1): jede Sonderform unten überschreibt sie
   mit mindestens 0,2,x. Wer hier eine :not()-Kette einbaut, dreht das um — dann
   gewinnt diese Regel gegen .block-petrol p und der Text verschwindet im Grün. */
.section p,
.hero p {
  font-size: var(--t-text);
  line-height: 1.68;
  color: var(--text);
  text-wrap: pretty;
}
.section p.lead,
.hero p.lead {
  font-size: var(--t-lead);
  line-height: 1.6;
  color: var(--text-lead);
}
.section p.kicker,
.hero p.kicker {
  font-size: var(--t-kicker);
  line-height: 1.4;
  color: var(--ocker);
}
.section p.leise,
.section p.hinweis,
.section p.formhinweis,
.section p.alt-kontakt,
.section p.platzhalter-text {
  font-size: var(--t-klein);
  line-height: 1.6;
  color: var(--leise);
}
.section p.platzhalter-text { color: var(--ph-text); }
.section .card p { font-size: var(--t-karte); line-height: 1.6; }
.section .block-petrol p { color: var(--auf-dunkel-text); }
.section .block-cols p { font-size: var(--t-klein); line-height: 1.6; }
.section p.btn-row { font-size: inherit; }

/* Große Serifen-Aussage („Wovon wir überzeugt sind“). */
.section p.aussage,
.aussage {
  font-family: var(--serif);
  font-size: clamp(24px, 3.4vw, 32px);
  line-height: 1.35;
  font-weight: 500;
  color: var(--ink);
  text-wrap: balance;
  margin: 0 0 22px;
}

/* Merksatz — zentrierte Serifen-Kursive, kein Kasten. */
.section p.merksatz,
.merksatz {
  font-family: var(--serif);
  font-size: 1.375rem; /* 22 */
  font-style: italic;
  line-height: 1.4;
  color: var(--ink);
  text-align: center;
  margin: 22px 0 0;
}

.leise,
.hinweis {
  font-size: var(--t-klein);
  line-height: 1.6;
  color: var(--leise);
  margin: 0;
}
.hinweis { font-style: italic; }

/* Platzhalter, die vor dem Live-Gang ersetzt werden müssen — sichtbar markiert. */
.platzhalter-karte {
  background: var(--weiss);
  border: 1.5px dashed var(--ph-rand);
  border-radius: var(--radius);
  padding: 30px 28px;
  display: flex;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
}
.platzhalter-foto {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--ph-flaeche);
  border: 1.5px dashed var(--ph-rand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: #9a8b6b;
  text-align: center;
  flex: 0 0 auto;
}
.platzhalter-text {
  flex: 1;
  min-width: 240px;
  font-size: var(--t-klein);
  line-height: 1.6;
  font-style: italic;
  color: var(--ph-text);
  margin: 0;
}
/* Inline-Platzhalter (Anschrift im Impressum) — schraffiert, damit er auffällt. */
.platzhalter-inline {
  color: var(--leise);
  font-style: italic;
  background: repeating-linear-gradient(
    -45deg, transparent, transparent 7px, rgba(201, 138, 59, 0.1) 7px, rgba(201, 138, 59, 0.1) 14px
  );
  padding: 2px 6px;
  border-radius: 4px;
}

/* ---------------------------------------------------------------- Schaltflächen */

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: var(--t-karte);
  font-weight: 600;
  line-height: 1.3;
  padding: 14px 28px;
  border-radius: 999px;
  border: none;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn-primary {
  background: var(--petrol);
  color: var(--auf-dunkel-titel);
}
.btn-primary:hover { background: var(--petrol-dunkel); color: var(--auf-dunkel-titel); }

.btn-ghost {
  background: transparent;
  border: 1.5px solid var(--petrol);
  color: var(--petrol);
  padding: 12.5px 28px;
}
.btn-ghost:hover { background: var(--petrol-lasur); color: var(--petrol); }

.btn-small {
  font-size: var(--t-klein);
  padding: 10px 22px;
  background: transparent;
  border: 1.5px solid var(--petrol);
  color: var(--petrol);
}
.btn-small:hover { background: var(--petrol-lasur); color: var(--petrol); }

/* Schaltflächen im Petrol-Block. */
.btn-hell {
  background: var(--auf-dunkel-titel);
  color: var(--ink);
  padding: 13px 26px;
  font-size: var(--t-klein);
}
.btn-hell:hover { background: var(--ph-flaeche); color: var(--ink); }

.btn-hell-ghost {
  background: transparent;
  border: 1.5px solid rgba(251, 248, 242, 0.6);
  color: var(--auf-dunkel-titel);
  padding: 11.5px 26px;
  font-size: var(--t-klein);
}
.btn-hell-ghost:hover { border-color: var(--auf-dunkel-titel); color: var(--auf-dunkel-titel); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 1.5em 0 0;
}
.btn-row-center { justify-content: center; }

/* ---------------------------------------------------------------- Karten und Blöcke */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 26px;
}
.cards-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.cards-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.cards-eng { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }

.card {
  background: var(--weiss);
  border: 1px solid var(--linie);
  border-radius: var(--radius);
  padding: 28px 26px;
}
/* Auf weißen Abschnitten kehrt sich die Kartenfläche um. */
.section-weiss .card { background: var(--papier); }

.card h2, .card h3, .card-title {
  font-family: var(--serif);
  font-weight: 600;
  margin: 0 0 8px;
}
.card h3 { font-size: 1.1875rem; color: var(--petrol); }
.card-title { font-size: 1.4375rem; color: var(--ink); } /* 23 */
.card p {
  font-size: var(--t-karte);
  line-height: 1.6;
  color: var(--text);
  margin: 0 0 0.75em;
}
.card p:last-of-type { margin-bottom: 0; }

/* Ocker-Ziffer über der Kartenüberschrift (01 / 02 / 03). */
.card-num {
  font-family: var(--serif);
  font-size: 1.375rem; /* 22 */
  font-weight: 700;
  color: var(--ocker);
  margin-bottom: 12px;
  line-height: 1;
}
/* Nummerierte Karten tragen die Überschrift in Dunkel, nicht in Petrol — sonst
   konkurriert sie mit der Ocker-Ziffer darüber. */
.card-num + h3 { color: var(--ink); font-size: 1.375rem; }
/* Ocker-Unterzeile („Helfen ohne Bindung“). */
.card-kicker {
  font-size: 0.875rem; /* 14 */
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ocker);
  margin: 0 0 14px;
}
.card-cta { margin: 18px 0 0; }
.card-weg { display: flex; flex-direction: column; }
.card-weg .card-cta { margin-top: auto; padding-top: 18px; }

/* Große Petrol-Zahl in den Forschungskarten. */
.zahl-gross {
  font-family: var(--serif);
  font-size: 1.875rem; /* 30 */
  font-weight: 700;
  color: var(--petrol);
  line-height: 1.1;
  margin-bottom: 10px;
}

/* Zwei Spalten: Text neben Kennzahl-Karte. */
.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  align-items: center;
}

/* Kennzahl-Karte („mehr als jede zweite“). */
.pullcard {
  background: var(--papier);
  border: 1px solid var(--linie);
  border-radius: var(--radius);
  padding: 36px 32px;
  text-align: center;
}
.section-weiss .pullcard { background: var(--papier); }
.pullcard-zahl {
  font-family: var(--serif);
  font-size: 3.5rem; /* 56 */
  font-weight: 700;
  color: var(--petrol);
  line-height: 1;
}
.pullcard p {
  font-size: var(--t-karte);
  line-height: 1.55;
  color: var(--text-lead);
  margin: 16px 0 0;
}

/* Zahlenpaar mit Ocker-Pfeil (46.500 → 21.000). */
.statpair {
  background: var(--papier);
  border: 1px solid var(--linie);
  border-radius: var(--radius);
  padding: 34px 30px;
}
.statpair-inner {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.statpair-teil { text-align: center; }
.statpair-zahl {
  font-family: var(--serif);
  font-size: 2.625rem; /* 42 */
  font-weight: 700;
  line-height: 1.1;
}
.statpair-teil-alt .statpair-zahl { color: var(--grau-zahl); }
.statpair-teil-neu .statpair-zahl { color: var(--petrol); }
.statpair-label {
  font-size: 0.844rem; /* 13.5 */
  line-height: 1.4;
  color: var(--leise);
}
.statpair-pfeil {
  font-size: 1.625rem; /* 26 */
  color: var(--ocker);
  align-self: center;
}
/* Schmal genügt der Platz für zwei Zahlen nebeneinander nicht. Beim Umbruch bliebe
   der Pfeil sonst rechts neben der ersten Zahl stehen und zeigte ins Leere. */
@media (max-width: 520px) {
  .statpair-inner { flex-direction: column; gap: 10px; }
  .statpair-pfeil { transform: rotate(90deg); }
}
.statpair-quellen { margin: 14px 0 0; text-align: center; }

/* Vollflächiger Petrol-Block. */
.block-petrol {
  background: var(--petrol);
  border-radius: var(--radius-block);
  padding: clamp(36px, 6vw, 52px);
  color: var(--auf-dunkel);
}
.block-petrol h2, .block-petrol h3 { color: var(--auf-dunkel-titel); }
.block-petrol h2 { font-size: clamp(26px, 4vw, 36px); margin: 0 0 16px; }
.block-petrol .kicker { color: var(--ocker-hell); }
.block-petrol p {
  color: var(--auf-dunkel-text);
  line-height: 1.68;
}
.block-petrol .btn-row { margin-top: 26px; }
.block-petrol-text { max-width: 640px; }

.block-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  margin-bottom: 30px;
}
.block-cols h3 {
  font-family: var(--sans);
  font-size: 1.0625rem; /* 17 */
  font-weight: 700;
  color: var(--ocker-hell);
  margin: 0 0 6px;
}
.block-cols p {
  font-size: var(--t-klein);
  line-height: 1.6;
  margin: 0;
}

/* Hinweiskasten mit Ocker-Kante (Verweis auf kneipen-kultur.de). */
.linkbox {
  margin-top: 30px;
  text-align: left;
  background: var(--weiss);
  border: 1px solid var(--linie);
  border-left: 4px solid var(--ocker);
  border-radius: var(--radius);
  padding: 24px 26px;
}
.section-weiss .linkbox { background: var(--papier); }
.linkbox h3 { color: var(--ink); margin-bottom: 0.4em; }

/* ---------------------------------------------------------------- Listen */

.ul-plain {
  list-style: disc;
  padding-left: 20px;
  margin: 0 0 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ul-plain li {
  font-size: var(--t-karte);
  line-height: 1.55;
  color: var(--text);
}
.ul-plain li::marker { color: var(--ocker); }

/* Schritte mit gefülltem Petrol-Kreis (So werden Sie Mitglied). */
.steps {
  list-style: none;
  counter-reset: schritt;
  padding: 0;
  margin: 0 0 1.2em;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.steps li {
  counter-increment: schritt;
  position: relative;
  padding-left: 56px;
  font-size: var(--t-mittel);
  line-height: 1.62;
  color: var(--text);
}
.steps li::before {
  content: counter(schritt);
  position: absolute;
  left: 0;
  top: -2px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--auf-dunkel-titel);
  background: var(--petrol);
  border-radius: 50%;
}

/* Schritte mit Ocker-Ziffer in Serifen, ohne Kreis (01 / 02 / 03). */
.steps-ocker {
  list-style: none;
  counter-reset: schritt;
  padding: 0;
  margin: 0 0 1.2em;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.steps-ocker li {
  counter-increment: schritt;
  display: flex;
  gap: 16px;
  align-items: baseline;
  font-size: var(--t-mittel);
  line-height: 1.62;
  color: var(--text);
}
.steps-ocker li::before {
  content: counter(schritt, decimal-leading-zero);
  font-family: var(--serif);
  font-size: 1.25rem; /* 20 */
  font-weight: 700;
  color: var(--ocker);
  flex: 0 0 auto;
}
.steps-punkt li::before { content: counter(schritt) "."; }

/* Quellenlink hinter einer Zahl oder Behauptung. */
a.src {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--ocker-dunkel);
  background: rgba(201, 138, 59, 0.12);
  border: 1px solid rgba(201, 138, 59, 0.3);
  border-radius: 999px;
  padding: 2px 9px;
  margin-left: 6px;
  vertical-align: 2px;
  white-space: nowrap;
}
a.src:hover { background: var(--ocker); color: var(--weiss); border-color: var(--ocker); }

/* ---------------------------------------------------------------- Fragen und Antworten */

.faq-akkordeon {
  background: var(--weiss);
  border: 1px solid var(--linie);
  border-radius: var(--radius);
  padding: 8px 28px;
}
.faq-akkordeon details {
  border-bottom: 1px solid var(--linie-zart);
  padding: 6px 0;
}
.faq-akkordeon details:last-child { border-bottom: 0; }
.faq-akkordeon summary {
  cursor: pointer;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.156rem; /* 18.5 */
  line-height: 1.35;
  color: var(--ink);
  padding: 16px 0;
}
.faq-akkordeon summary::marker { color: var(--ocker); }
.faq-akkordeon summary::-webkit-details-marker { color: var(--ocker); }
.faq-akkordeon summary:hover { color: var(--petrol); }
.faq-akkordeon p {
  font-size: var(--t-karte);
  line-height: 1.65;
  color: var(--text);
  margin: 0 0 16px;
}

/* ---------------------------------------------------------------- Formular */

.formular { margin-top: 8px; }

.feld { margin-bottom: 20px; }
.feld label {
  display: block;
  font-weight: 600;
  font-size: var(--t-klein);
  margin-bottom: 6px;
}
.feld input[type="text"],
.feld input[type="email"],
.feld input[type="tel"],
.feld select,
.feld textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: var(--t-karte);
  line-height: 1.5;
  color: var(--ink);
  background: var(--weiss);
  border: 1px solid var(--linie);
  border-radius: var(--radius-feld);
  padding: 12px 14px;
}
.feld textarea { resize: vertical; min-height: 140px; }
.feld input:focus, .feld select:focus, .feld textarea:focus { border-color: var(--petrol); }

.pflicht { color: var(--ocker-dunkel); }

.feld-fehler input,
.feld-fehler select,
.feld-fehler textarea { border-color: var(--ocker-dunkel); background: #fdf6ec; }

.fehlertext {
  margin: 6px 0 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ocker-dunkel);
}

.feld-paar { display: grid; grid-template-columns: 1fr; gap: 0; }

.feld-check .check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-weight: 400;
  font-size: var(--t-klein);
  line-height: 1.55;
  cursor: pointer;
}
.feld-check input[type="checkbox"] {
  width: 22px;
  height: 22px;
  margin: 2px 0 0;
  flex: 0 0 auto;
  accent-color: var(--petrol);
}

/* Honeypot: für Menschen unsichtbar, für Bots ein ganz normales Feld. */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.meldung {
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 28px;
}
.meldung-ok {
  background: var(--weiss);
  border: 1px solid var(--linie);
  border-left: 4px solid var(--petrol);
}
.meldung-ok h2 { font-size: 1.25rem; margin-bottom: 0.35em; }
.meldung-fehler {
  background: #fbf0e2;
  border: 1px solid var(--ocker);
  color: var(--ocker-dunkel);
  font-weight: 600;
}

/* Kurzer Hinweis unter dem Formular — bewusst ohne Rahmen, sonst liest er sich
   wie ein gesperrtes Eingabefeld. */
.formhinweis {
  font-size: 0.9rem;
  color: var(--leise);
  margin-top: -4px;
}

.alt-kontakt {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--linie);
  color: var(--leise);
  font-size: var(--t-klein);
}

button[disabled] { opacity: 0.6; cursor: default; }

/* ---------------------------------------------------------------- Rechtsseiten */

.rechtstext h2 {
  font-size: 1.25rem;
  margin-top: 1.8em;
}
.rechtstext h2:first-of-type { margin-top: 0; }

/* ---------------------------------------------------------------- Fußbereich */

.site-footer {
  background: var(--footer-flaeche);
  color: var(--footer-text);
  font-size: 0.906rem; /* 14.5 */
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 44px;
  padding-bottom: 44px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-brand-name {
  font-family: var(--serif);
  font-size: 1.125rem; /* 18 */
  font-weight: 700;
  color: var(--auf-dunkel);
}
.footer-brand-name em {
  font-style: italic;
  font-weight: 500;
  color: var(--footer-ring-petrol);
}
.footer-adresse { margin: 0; line-height: 1.6; }
.footer-rechts { display: flex; flex-direction: column; gap: 8px; }
.footer-mail {
  color: var(--auf-dunkel);
  font-weight: 600;
  text-decoration: none;
}
.footer-mail:hover { color: var(--footer-ring-ocker); }
.footer-links { display: flex; flex-wrap: wrap; gap: 4px 10px; color: var(--footer-leise); }
.footer-links a { color: var(--footer-leise); text-decoration: none; }
.footer-links a:hover { color: var(--auf-dunkel); }
.footer-trenner { color: var(--footer-leise); }

/* ---------------------------------------------------------------- Verwaltung */

.admin-body {
  background: var(--papier);
  padding: 26px 0 60px;
  font-size: 15px;
}
.admin-body .container { max-width: 1280px; }
.admin-count {
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--auf-dunkel-titel);
  background: var(--petrol);
  border-radius: 999px;
  padding: 2px 12px;
  vertical-align: 6px;
}
.admin-tools { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.admin-warn { color: var(--ocker-dunkel); font-weight: 600; }
.admin-scroll { overflow-x: auto; margin-top: 22px; }
.admin-table {
  border-collapse: collapse;
  width: 100%;
  min-width: 900px;
  background: var(--weiss);
  border-radius: var(--radius);
  overflow: hidden;
}
.admin-table th, .admin-table td {
  border: 1px solid var(--linie);
  padding: 8px 10px;
  text-align: left;
  vertical-align: top;
}
.admin-table th { background: var(--band-flaeche); font-weight: 600; white-space: nowrap; }
.admin-table .nowrap { white-space: nowrap; }
.admin-msg { min-width: 260px; max-width: 420px; }

/* ---------------------------------------------------------------- Desktop

   Ein Breakpoint für Abstände und Kartenraster, ein zweiter (860px) für die
   Navigation — darunter braucht sie den Menüknopf. */

@media (min-width: 760px) {
  :root { --sektion-y: 72px; }

  h2 { font-size: 2rem; }  /* 32 */

  .hero { padding: 72px 0 56px; }
  .feld-paar { grid-template-columns: 1fr 1fr; gap: 0 20px; }
  .cards { gap: 20px; }
}

@media (min-width: 860px) {
  .nav-toggle-label { display: none; }

  .site-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: auto;
    flex-wrap: wrap;
    gap: 2px 22px;
    padding-bottom: 0;
  }
  .site-nav > a {
    padding: 6px 0;
    border-bottom: 2px solid transparent;
  }
  .site-nav > a.is-active { border-bottom-color: var(--petrol); color: var(--ink); }
  .site-nav > a:hover { color: var(--petrol); }

  /* Ausklappmenü als schwebendes Feld. */
  .nav-drop { position: relative; border-bottom: 0; }
  .nav-drop > summary {
    padding: 6px 0;
    border-bottom: 2px solid transparent;
  }
  .nav-drop.is-active > summary { border-bottom-color: var(--petrol); color: var(--ink); }
  .nav-drop[open] > .nav-drop-panel {
    position: absolute;
    top: calc(100% + 14px);
    left: -16px;
    z-index: 20;
    min-width: 240px;
    background: var(--weiss);
    border: 1px solid var(--linie);
    border-radius: var(--radius);
    box-shadow: 0 10px 26px rgba(46, 53, 50, 0.12);
    padding: 8px;
  }
  .nav-drop-panel a {
    padding: 10px 14px;
    border-radius: 10px;
  }
  .nav-drop-panel a:hover { background: var(--papier); }
}

/* ---------------------------------------------------------------- Reduzierte Bewegung */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
