:root {
  --grund: #fffaf5;
  --text: #3b2412;
  --gedaempft: #7c5c42;
  --akzent: #c2410c;
  --gruen: #4d7c5a;
  --linie: #ecdcc9;
  --karte: #ffffff;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--grund);
  color: var(--text);
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--linie);
  background: var(--karte);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav-brand {
  font-weight: 700;
  font-size: 19px;
  color: var(--text);
  text-decoration: none;
}

.nav-cta {
  background: var(--akzent);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  padding: 9px 16px;
  border-radius: 8px;
}

.wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 20px 64px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  font-weight: 700;
  color: var(--akzent);
  margin-bottom: 8px;
}

h1 {
  font-size: 34px;
  line-height: 1.2;
  margin: 0 0 20px;
  letter-spacing: -0.01em;
}

h2 {
  font-size: 24px;
  line-height: 1.3;
  margin: 40px 0 12px;
}

h3 { font-size: 19px; margin: 28px 0 8px; }

p { margin: 0 0 18px; }

.lead {
  font-size: 21px;
  line-height: 1.55;
  color: var(--gedaempft);
  margin-bottom: 22px;
}

a { color: var(--akzent); }

.sep {
  border: 0;
  border-top: 1px solid var(--linie);
  margin: 36px 0;
}

.tbl-wrap { overflow-x: auto; margin: 0 0 22px; }

table {
  border-collapse: collapse;
  width: 100%;
  font-size: 16px;
  min-width: 460px;
}

th, td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--linie);
  vertical-align: top;
}

th { background: #f7ede2; font-weight: 700; }

ul, ol { margin: 0 0 20px; padding-left: 22px; }
li { margin-bottom: 8px; }

.cta-box {
  background: #f7ede2;
  border: 1px solid var(--linie);
  border-radius: 12px;
  padding: 22px;
  margin: 36px 0;
}

.cta-box p { margin-bottom: 14px; }

.cta-btn {
  display: inline-block;
  background: var(--akzent);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 11px 20px;
  border-radius: 8px;
}

.related { margin-top: 40px; }
.related h3 { margin-bottom: 12px; }
.related a { display: block; padding: 9px 0; border-top: 1px solid var(--linie); text-decoration: none; }
.related a:hover { text-decoration: underline; }

.rg-liste { display: grid; gap: 14px; margin-top: 28px; }

.rg-card {
  display: block;
  background: var(--karte);
  border: 1px solid var(--linie);
  border-radius: 12px;
  padding: 20px;
  text-decoration: none;
  color: var(--text);
}

.rg-card:hover { border-color: var(--akzent); }
.rg-card h2 { margin: 0 0 6px; font-size: 20px; }
.rg-card p { margin: 0; color: var(--gedaempft); font-size: 16px; }

footer {
  border-top: 1px solid var(--linie);
  padding: 22px 20px 40px;
  text-align: center;
  color: var(--gedaempft);
  font-size: 15px;
}

footer a { color: var(--gedaempft); }

@media (min-width: 700px) {
  .rg-liste { grid-template-columns: 1fr 1fr; }
  h1 { font-size: 40px; }
}
