/* Comeback der Kneipe — kneipen-kultur.de
   Mobile-first. Referenz: Design-Prototyp (Terrakotta/Grün/Creme/Dunkel).
   Keine Inline-Styles im Markup — strikte CSP. */

/* ---------------------------------------------------------------- Fonts */

@font-face {
  font-family: "Bitter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/static/fonts/bitter-v42-latin-600.woff2") format("woff2");
}
@font-face {
  font-family: "Bitter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/static/fonts/bitter-v42-latin-700.woff2") format("woff2");
}
@font-face {
  font-family: "Bitter";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("/static/fonts/bitter-v42-latin-italic.woff2") format("woff2");
}
@font-face {
  font-family: "Work Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/static/fonts/work-sans-v24-latin-regular.woff2") format("woff2");
}
@font-face {
  font-family: "Work Sans";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/static/fonts/work-sans-v24-latin-600.woff2") format("woff2");
}

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

:root {
  --terra: #b54a2b;
  --terra-dark: #9e3d21;
  --green: #1f6e5f;
  --peach: #e0894f;
  --cream: #f5ede3;
  --cream-deep: #efe3d4;
  --card: #f7f1e8;
  --dark: #23201d;
  --ink: #2e2a26;
  --ink-soft: #4a433c;
  --muted: #6b6058;
  --light: rgba(245, 237, 227, 0.8);
  --light-soft: rgba(245, 237, 227, 0.72);
  --light-faint: rgba(245, 237, 227, 0.5);
  --line-dark: rgba(46, 42, 38, 0.14);
  --line-light: rgba(245, 237, 227, 0.18);
  --serif: "Bitter", Georgia, serif;
  --sans: "Work Sans", system-ui, -apple-system, sans-serif;
  --container: 1180px;
  --pad-x: 20px;
  --section-y: 72px;
  --header-h: 62px;
}

/* ---------------------------------------------------------------- Base */

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

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

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  text-wrap: pretty;
  line-height: 1.15;
}

p {
  margin: 0;
  text-wrap: pretty;
}

a {
  color: var(--terra);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--green);
}

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

section {
  scroll-margin-top: calc(var(--header-h) + 12px);
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

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

.skip-link:focus {
  left: 8px;
  top: 8px;
}

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

/* ---------------------------------------------------------------- Kicker & Headlines */

.kicker {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terra);
  font-weight: 600;
  margin-bottom: 18px;
}

.kicker--peach {
  color: var(--peach);
}

.section-headline {
  font-size: clamp(28px, 5.5vw, 44px);
  letter-spacing: -0.02em;
  font-weight: 700;
  line-height: 1.12;
}

/* ---------------------------------------------------------------- Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 24px;
  border-radius: 4px;
  border: 0;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  cursor: pointer;
}

.btn .arrow {
  font-size: 18px;
  line-height: 1;
}

.btn-primary {
  background: var(--terra);
  color: #fff6ec;
  box-shadow: 0 10px 26px rgba(181, 74, 43, 0.34);
}

.btn-primary:hover {
  background: var(--terra-dark);
  color: #fff6ec;
}

.btn-outline-light {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(245, 237, 227, 0.4);
}

.btn-outline-light:hover {
  background: rgba(245, 237, 227, 0.08);
  color: var(--cream);
}

.btn-light {
  background: var(--cream);
  color: var(--green);
}

.btn-light:hover {
  background: #fff;
  color: var(--green);
}

/* ---------------------------------------------------------------- Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(35, 32, 29, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(245, 237, 227, 0.14);
}

.site-header .container {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: var(--header-h);
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 9px;
  color: var(--cream);
  text-decoration: none;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
  margin-right: auto;
}

.brand .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--terra);
  display: inline-block;
  flex: none;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  order: 2;
}

.lang-switch a,
.lang-switch span.current {
  color: rgba(245, 237, 227, 0.45);
  text-decoration: none;
  padding: 8px 2px;
}

.lang-switch span.current {
  color: var(--cream);
}

.lang-switch a:hover {
  color: var(--cream);
}

.lang-switch .sep {
  color: rgba(245, 237, 227, 0.3);
  font-size: 12px;
}

/* Mobile-Navigation: Checkbox-Hack — funktioniert ohne JS, CSP-sauber. */
.nav-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.nav-toggle-label {
  order: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  cursor: pointer;
}

.nav-toggle-label .bar {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--cream);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-nav {
  order: 4;
  flex-basis: 100%;
  display: none;
  flex-direction: column;
  padding: 6px 0 16px;
  font-size: 16px;
}

.site-nav a {
  color: rgba(245, 237, 227, 0.82);
  text-decoration: none;
  padding: 11px 4px;
  border-bottom: 1px solid rgba(245, 237, 227, 0.08);
}

.site-nav a:hover {
  color: var(--cream);
}

.nav-toggle:checked ~ .site-nav {
  display: flex;
}

.nav-toggle:checked ~ .nav-toggle-label .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle:checked ~ .nav-toggle-label .bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle:checked ~ .nav-toggle-label .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-toggle:focus-visible ~ .nav-toggle-label {
  outline: 2px solid var(--peach);
  outline-offset: 2px;
}

/* ---------------------------------------------------------------- Hero */

.hero {
  position: relative;
  background: var(--dark);
  padding: 56px 0 72px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -180px;
  left: 50%;
  transform: translateX(-30%);
  width: 900px;
  height: 640px;
  background: radial-gradient(closest-side, rgba(181, 74, 43, 0.42), rgba(181, 74, 43, 0) 70%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  display: grid;
  gap: 44px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px 7px 12px;
  border: 1px solid rgba(245, 237, 227, 0.22);
  border-radius: 999px;
  color: #e9d9c5;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 26px;
}

.hero-badge .pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(31, 110, 95, 0.28);
  flex: none;
}

.hero h1 {
  font-size: clamp(36px, 8.5vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 700;
  color: #f7f0e6;
}

.hero h1 .accent {
  color: var(--peach);
  font-style: italic;
  font-weight: 400;
}

.hero-sub {
  margin-top: 24px;
  font-size: clamp(16.5px, 1.4vw, 19.5px);
  line-height: 1.62;
  color: var(--light);
  max-width: 600px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-ctas .btn {
  flex: 1 1 100%;
}

.hero-media {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-media .frame {
  position: relative;
  width: 100%;
  max-width: 460px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(245, 237, 227, 0.12);
}

.hero-media img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ---------------------------------------------------------------- Sektionen allgemein */

.section {
  padding: var(--section-y) 0;
}

.section--cream {
  background: var(--cream);
}

.section--deep {
  background: var(--cream-deep);
}

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

.split {
  display: grid;
  gap: 40px;
  align-items: start;
}

/* ---------------------------------------------------------------- Warum */

.warum-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 17px;
  line-height: 1.68;
  color: var(--ink-soft);
  max-width: 640px;
}

.warum-accent {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.45;
  color: var(--green);
  font-weight: 600;
}

.stat-grid {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}

.stat {
  background: var(--cream);
  padding: 28px 24px;
}

.stat .number {
  font-family: var(--serif);
  font-size: clamp(34px, 6vw, 44px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--terra);
  line-height: 1;
}

.stat p {
  margin-top: 12px;
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--ink-soft);
}

/* ---------------------------------------------------------------- Angebot */

.section-intro {
  margin-top: 20px;
  font-size: 17px;
  line-height: 1.68;
  color: var(--ink-soft);
  max-width: 680px;
}

.card-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 18px;
}

.card {
  background: var(--card);
  border: 1px solid rgba(46, 42, 38, 0.12);
  border-top: 3px solid var(--green);
  padding: 26px 24px 28px;
}

.card--terra {
  border-top-color: var(--terra);
}

.card h3 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.card p {
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.62;
  color: var(--ink-soft);
}

.card strong {
  font-weight: 600;
  color: var(--ink);
}

/* ---------------------------------------------------------------- Gastgeber */

.media-frame {
  margin-top: 30px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
}

.media-frame img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.steps-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 22px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.step {
  display: flex;
  gap: 18px;
  background: var(--card);
  border: 1px solid rgba(46, 42, 38, 0.12);
  padding: 22px 22px;
}

.step .num {
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 16px;
}

.step h3 {
  font-size: 18.5px;
  font-weight: 600;
}

.step p {
  margin-top: 8px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.note-box {
  margin-top: 24px;
  padding: 22px 24px;
  background: rgba(31, 110, 95, 0.08);
  border-left: 3px solid var(--green);
}

.note-box h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--green);
}

.note-box p {
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.cta-box {
  margin-top: 24px;
  padding: 28px 26px;
  background: var(--ink);
  color: var(--cream);
}

.cta-box--green {
  background: var(--green);
}

.cta-box h3 {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.4;
  font-weight: 600;
  color: #f7f0e6;
}

.cta-box p {
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--light-soft);
}

.cta-box .btn {
  margin-top: 22px;
  width: 100%;
}

.cta-box .mail-hint {
  margin-top: 14px;
  font-size: 14px;
  color: rgba(245, 237, 227, 0.6);
}

.cta-box .mail-hint a {
  color: var(--peach);
}

.cta-box .mail-hint a:hover {
  color: var(--cream);
}

/* ---------------------------------------------------------------- Partner */

.section--dark .section-headline {
  color: #f7f0e6;
}

.section--dark .section-intro {
  color: var(--light);
}

.info-box {
  margin-top: 30px;
  padding: 24px 26px;
  border: 1px solid rgba(245, 237, 227, 0.2);
}

.info-box h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--peach);
}

.info-box p {
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.62;
  color: var(--light-soft);
}

.audience-list {
  display: flex;
  flex-direction: column;
}

.audience {
  padding: 22px 0;
  border-top: 1px solid var(--line-light);
}

.audience:last-child {
  border-bottom: 1px solid var(--line-light);
}

.audience h3 {
  font-size: 18.5px;
  font-weight: 600;
  color: #f7f0e6;
}

.audience p {
  margin-top: 8px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--light-soft);
}

/* ---------------------------------------------------------------- Prinzipien */

.principle-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}

.principle .num {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 600;
  color: var(--terra);
  letter-spacing: 0.08em;
}

.principle h3 {
  margin-top: 12px;
  font-size: 20px;
  font-weight: 600;
}

.principle p {
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.62;
  color: var(--ink-soft);
}

/* ---------------------------------------------------------------- Über uns */

.person {
  margin-top: 30px;
  display: flex;
  gap: 18px;
  align-items: center;
}

.person img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  flex: none;
}

.person .name {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
}

.person .role {
  font-size: 15px;
  color: var(--muted);
  margin-top: 4px;
}

.ueber-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 17px;
  line-height: 1.68;
  color: var(--ink-soft);
  max-width: 640px;
}

.ueber-text strong {
  font-weight: 600;
  color: var(--ink);
}

.plan-box {
  margin-top: 8px;
  padding: 22px 24px;
  background: var(--cream-deep);
  border-left: 3px solid var(--terra);
}

.plan-box h3 {
  font-size: 17px;
  font-weight: 600;
}

.plan-box p {
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.62;
  color: var(--ink-soft);
}

/* ---------------------------------------------------------------- FAQ */

.faq-wrap {
  max-width: 840px;
}

.faq {
  border-top: 1px solid rgba(46, 42, 38, 0.18);
  padding: 4px 0;
}

.faq:last-of-type {
  border-bottom: 1px solid rgba(46, 42, 38, 0.18);
}

.faq summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-size: 18.5px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  padding: 18px 0;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq .marker {
  color: var(--terra);
  flex: none;
  font-size: 20px;
  line-height: 1;
}

.faq[open] .marker {
  /* Plus wird optisch zum Minus gedreht */
  transform: rotate(45deg);
}

.faq .marker {
  transition: transform 0.15s ease;
}

.faq p {
  padding: 0 0 20px;
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 720px;
}

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

.kontakt-intro {
  margin-top: 18px;
  font-size: 17px;
  color: var(--light);
  max-width: 560px;
}

.form-wrap {
  margin-top: 36px;
  max-width: 640px;
}

.banner {
  padding: 16px 18px;
  border-radius: 4px;
  margin-bottom: 22px;
  font-size: 16px;
  line-height: 1.5;
}

.banner--success {
  background: rgba(31, 110, 95, 0.25);
  border: 1px solid rgba(31, 110, 95, 0.7);
  color: #d9efe7;
  font-weight: 600;
}

.banner--error {
  background: rgba(181, 74, 43, 0.2);
  border: 1px solid rgba(224, 137, 79, 0.6);
  color: #f6d8c4;
}

/* Tabs: CSS-only über Radio-Inputs — funktioniert ohne JS. */
.tab-radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.tab-labels {
  display: flex;
  gap: 8px;
}

.tab-labels label {
  flex: 1;
  text-align: center;
  padding: 13px 10px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  color: var(--light-soft);
  background: rgba(245, 237, 227, 0.07);
  border: 1px solid rgba(245, 237, 227, 0.25);
  border-radius: 4px 4px 0 0;
  border-bottom: 0;
  cursor: pointer;
}

#tab-kneipe:checked ~ .tab-labels label[for="tab-kneipe"],
#tab-partner:checked ~ .tab-labels label[for="tab-partner"] {
  background: var(--cream);
  color: var(--ink);
}

#tab-kneipe:focus-visible ~ .tab-labels label[for="tab-kneipe"],
#tab-partner:focus-visible ~ .tab-labels label[for="tab-partner"] {
  outline: 2px solid var(--peach);
  outline-offset: -2px;
}

.form-panel {
  display: none;
  background: var(--cream);
  color: var(--ink);
  padding: 26px 22px 30px;
  border-radius: 0 0 4px 4px;
}

#tab-kneipe:checked ~ .form-panels .form-panel--kneipe,
#tab-partner:checked ~ .form-panels .form-panel--partner {
  display: block;
}

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 7px;
}

.field input,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  font-family: var(--sans);
  font-size: 16px; /* >= 16px: verhindert iOS-Auto-Zoom */
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(46, 42, 38, 0.3);
  border-radius: 4px;
}

.field input:focus,
.field textarea:focus {
  outline: 2px solid var(--green);
  outline-offset: 0;
  border-color: var(--green);
}

.field textarea {
  min-height: 110px;
  resize: vertical;
}

.field.has-error input,
.field.has-error textarea {
  border-color: var(--terra);
  outline-color: var(--terra);
}

.field .error {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  color: var(--terra-dark);
  font-weight: 600;
}

.field-row {
  display: grid;
  gap: 0 16px;
}

.form-panel .btn {
  width: 100%;
  margin-top: 6px;
}

.form-footnote {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}

.form-footnote a {
  color: var(--terra);
}

.kontakt-mail-fallback {
  margin-top: 22px;
  font-size: 15px;
  color: var(--light-faint);
}

.kontakt-mail-fallback a {
  color: var(--peach);
}

.kontakt-mail-fallback a:hover {
  color: var(--cream);
}

/* ---------------------------------------------------------------- Footer */

.site-footer {
  background: var(--dark);
  color: var(--light-soft);
  padding: 56px 0 44px;
  border-top: 1px solid var(--line-light);
}

.footer-grid {
  display: grid;
  gap: 36px;
}

.footer-brand {
  display: flex;
  align-items: baseline;
  gap: 9px;
  color: var(--cream);
  font-family: var(--serif);
  font-weight: 700;
  font-size: 18px;
}

.footer-brand .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--terra);
  display: inline-block;
  flex: none;
}

.footer-tagline {
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.6;
  max-width: 320px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 15px;
}

.footer-links a {
  color: var(--light-soft);
  text-decoration: none;
  padding: 2px 0;
}

.footer-links a.mail {
  color: var(--peach);
}

.footer-links a:hover {
  color: var(--cream);
}

.footer-sources {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--light-faint);
  font-style: italic;
}

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

.page {
  padding: 48px 0 72px;
}

.page .container {
  max-width: 780px;
}

.page h1 {
  font-size: clamp(30px, 6vw, 40px);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.page h2 {
  font-size: 22px;
  margin-top: 36px;
  margin-bottom: 10px;
}

.page p,
.page li {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink-soft);
}

.page p + p {
  margin-top: 12px;
}

.page ul {
  margin: 10px 0 0;
  padding-left: 22px;
}

.page .placeholder {
  background: rgba(224, 137, 79, 0.25);
  padding: 1px 6px;
  border-radius: 3px;
}

.page .back-link {
  display: inline-block;
  margin-bottom: 28px;
  font-size: 15px;
}

/* ---------------------------------------------------------------- Admin */

.admin {
  padding: 32px 0 64px;
}

.admin .container {
  max-width: 1180px;
}

.admin h1 {
  font-size: 28px;
}

.admin .meta {
  margin: 10px 0 22px;
  color: var(--muted);
  font-size: 15px;
}

.admin table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
  background: #fff;
}

.admin th,
.admin td {
  text-align: left;
  padding: 10px 12px;
  border: 1px solid var(--line-dark);
  vertical-align: top;
}

.admin th {
  background: var(--cream-deep);
  font-weight: 600;
  white-space: nowrap;
}

.admin .table-scroll {
  overflow-x: auto;
}

.admin .type-kneipe {
  color: var(--terra);
  font-weight: 600;
}

.admin .type-partner {
  color: var(--green);
  font-weight: 600;
}

/* ---------------------------------------------------------------- Desktop (ab 760px) */

@media (min-width: 760px) {
  :root {
    --pad-x: 24px;
    --section-y: 104px;
  }

  .nav-toggle-label {
    display: none;
  }

  .site-nav {
    order: 0;
    flex-basis: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 22px;
    padding: 0;
    margin-left: auto;
    font-size: 14.5px;
    letter-spacing: 0.01em;
  }

  .site-nav a {
    padding: 8px 0;
    border-bottom: 0;
    color: rgba(245, 237, 227, 0.78);
  }

  .brand {
    margin-right: 0;
  }

  .lang-switch {
    order: 0;
    padding-left: 20px;
    border-left: 1px solid var(--line-light);
  }

  .hero {
    padding: 84px 0 96px;
  }

  .hero .container {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 56px;
  }

  .hero-ctas .btn {
    flex: 0 1 auto;
  }

  .hero-media .frame {
    height: 520px;
  }

  .hero-media img {
    height: 100%;
  }

  .split {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 60px;
  }

  .step {
    padding: 24px 26px;
  }

  .cta-box {
    padding: 30px 28px;
  }

  .cta-box .btn,
  .form-panel .btn {
    width: auto;
  }

  .form-panel {
    padding: 30px 28px 34px;
  }

  .field-row {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
  }
}

/* ---------------------------------------------------------------- Reduced Motion */

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

/* ---------------------------------------------------------------- Quellen-Links */

.src {
  color: inherit;
  text-decoration: underline;
  text-decoration-style: dotted;
  text-decoration-color: rgba(181, 74, 43, 0.55);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.src:hover {
  color: var(--terra);
  text-decoration-color: var(--terra);
}

.section--dark .src,
.wissen-hero .src {
  text-decoration-color: rgba(224, 137, 79, 0.6);
}

.section--dark .src:hover,
.wissen-hero .src:hover {
  color: var(--peach);
  text-decoration-color: var(--peach);
}

.stat-src {
  display: inline-block;
  margin-top: 12px;
  font-size: 12.5px;
  letter-spacing: 0.02em;
  color: var(--muted);
  text-decoration: underline;
  text-decoration-style: dotted;
  text-underline-offset: 3px;
}

.stat-src:hover {
  color: var(--terra);
}

.warum-more {
  margin-top: 20px;
  font-size: 14.5px;
  color: var(--muted);
}

.warum-more a {
  color: var(--green);
  font-weight: 600;
}

.warum-more a:hover {
  color: var(--terra);
}

/* ---------------------------------------------------------------- Wissen */

.wissen-hero {
  position: relative;
  background: var(--dark);
  color: var(--cream);
  padding: 48px 0 60px;
  overflow: hidden;
}

.wissen-hero::before {
  content: "";
  position: absolute;
  top: -180px;
  left: 50%;
  transform: translateX(-30%);
  width: 900px;
  height: 640px;
  background: radial-gradient(closest-side, rgba(181, 74, 43, 0.42), rgba(181, 74, 43, 0) 70%);
  pointer-events: none;
}

.wissen-hero .container {
  position: relative;
}

.wissen-hero .section-headline {
  color: #f7f0e6;
  font-size: clamp(32px, 6.5vw, 52px);
}

.wissen-hero-sub {
  margin-top: 20px;
  font-size: clamp(16.5px, 1.4vw, 18.5px);
  line-height: 1.65;
  color: var(--light);
  max-width: 700px;
}

.haltung-box {
  margin-top: 32px;
  padding: 24px 26px;
  border-left: 3px solid var(--peach);
  background: rgba(245, 237, 227, 0.07);
  max-width: 780px;
}

.haltung-box h2 {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  color: var(--peach);
}

.haltung-box p {
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--light);
}

.wissen-themen {
  margin-top: 44px;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.wissen-thema {
  background: var(--card);
  border: 1px solid rgba(46, 42, 38, 0.12);
  border-top: 3px solid var(--terra);
  padding: 24px 22px 26px;
}

.wissen-thema h3 {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.wissen-thema p {
  margin-top: 10px;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink-soft);
}

.studie-grid {
  margin-top: 44px;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.studie {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid rgba(46, 42, 38, 0.12);
  border-top: 3px solid var(--green);
  padding: 24px 22px 24px;
}

.studie--praxis {
  border-top-color: var(--terra);
}

.studie-badge {
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.studie h3 {
  font-size: 18.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.studie p {
  margin-top: 10px;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.studie-lesson {
  font-family: var(--serif);
  font-style: italic;
  color: var(--green);
}

.studie--praxis .studie-lesson {
  color: var(--terra-dark);
}

.studie-sources {
  margin-top: auto;
  padding-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  font-size: 13px;
  line-height: 1.5;
}

.studie-sources .src {
  color: var(--muted);
}

.studie-sources .src:hover {
  color: var(--terra);
}

.wissen-quote {
  margin: 52px auto 0;
  max-width: 720px;
  text-align: center;
}

.wissen-quote p {
  font-family: var(--serif);
  font-size: clamp(22px, 3.4vw, 28px);
  line-height: 1.4;
  font-weight: 600;
  color: var(--ink);
}

.wissen-quote cite {
  display: block;
  margin-top: 14px;
  font-style: normal;
  font-size: 14px;
  color: var(--muted);
}

.grenzen-box {
  margin-top: 44px;
  max-width: 820px;
}

.wissen-back {
  margin-top: 30px;
  font-size: 14.5px;
}

.wissen-back a {
  color: var(--light-faint);
}

.wissen-back a:hover {
  color: var(--cream);
}

@media (min-width: 760px) {
  .wissen-hero {
    padding: 64px 0 76px;
  }

  #offen .hero-ctas .btn {
    flex: 0 1 auto;
  }
}
