:root {
  --bg: #f5f7f6;
  --surface: #ffffff;
  --ink: #15212b;
  --muted: #566673;
  --line: #dfe5e3;
  --accent: #1c6b5d;
  --accent-ink: #ffffff;
  --accent-soft: #e3f0ec;
  --shadow: 0 1px 2px rgba(20, 33, 43, .06), 0 8px 24px rgba(20, 33, 43, .06);
  --radius: 14px;
  --wrap: 1080px;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0f1719;
    --surface: #162125;
    --ink: #e7eeec;
    --muted: #9fb0ad;
    --line: #26353a;
    --accent: #4fb39d;
    --accent-ink: #0f1719;
    --accent-soft: #1b2f2c;
    --shadow: none;
  }
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 17px/1.6 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
a { color: var(--accent); }
a:hover { text-decoration-thickness: 2px; }
h1, h2, h3 { line-height: 1.2; margin: 0 0 .5em; letter-spacing: -.01em; }
h1 { font-size: clamp(30px, 5vw, 46px); font-weight: 750; }
h2 { font-size: clamp(22px, 3vw, 28px); font-weight: 700; }
h3 { font-size: 19px; font-weight: 700; }
p { margin: 0 0 1em; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }
.muted { color: var(--muted); }

/* Kopf */
.site-header { border-bottom: 1px solid var(--line); background: var(--surface); }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 68px; flex-wrap: wrap; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); text-decoration: none; font-weight: 750; font-size: 20px; }
.brand svg { width: 34px; height: 34px; flex: none; }
.brand span { letter-spacing: -.01em; }
.nav { display: flex; align-items: center; gap: 6px 20px; flex-wrap: wrap; font-size: 15px; }
.nav a { color: var(--muted); text-decoration: none; }
.nav a:hover { color: var(--ink); }
.btn {
  display: inline-block; padding: 9px 18px; border-radius: 999px; text-decoration: none; font-weight: 650; font-size: 15px;
  background: var(--accent); color: var(--accent-ink); border: 1px solid var(--accent);
}
.nav a.btn { color: var(--accent-ink); }
.btn.ghost { background: transparent; color: var(--accent); }

/* Einstieg */
.hero { padding: 64px 0 40px; }
.hero p.lead { font-size: clamp(18px, 2.2vw, 21px); color: var(--muted); max-width: 720px; }
.eyebrow { display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }

/* Shops */
.shops { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; padding-bottom: 24px; }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.card .domain { font-size: 14px; color: var(--muted); margin-bottom: 4px; }
.card ul { margin: 0 0 18px; padding-left: 20px; color: var(--muted); }
.card li { margin: 2px 0; }
.card .tag { display: inline-block; background: var(--accent-soft); color: var(--accent); border-radius: 999px; padding: 3px 12px; font-size: 13px; font-weight: 650; margin-bottom: 14px; align-self: flex-start; }
.card .btn { margin-top: auto; align-self: flex-start; }

/* Abschnitte */
.section { padding: 44px 0; }
.section + .section { border-top: 1px solid var(--line); }
.facts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.fact { padding: 4px 0; }
.fact h3 { margin-bottom: .3em; }
.fact p { color: var(--muted); margin: 0; }
.contact { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.contact .card { box-shadow: none; }
address { font-style: normal; }

/* Rechtstexte */
.legal { padding-top: 48px; padding-bottom: 56px; }
.legal > * { max-width: 760px; }
.legal h2 { font-size: 20px; margin-top: 1.6em; }
.legal p, .legal li { color: var(--ink); }

/* Fuss */
.site-footer { border-top: 1px solid var(--line); padding: 26px 0 36px; font-size: 15px; color: var(--muted); }
.site-footer .wrap { display: flex; justify-content: space-between; gap: 12px 24px; flex-wrap: wrap; }
.site-footer nav { display: flex; gap: 18px; flex-wrap: wrap; }
.site-footer a { color: var(--muted); }

@media (max-width: 760px) {
  .shops, .facts, .contact { grid-template-columns: 1fr; }
  .hero { padding: 40px 0 28px; }
  .nav { width: 100%; justify-content: flex-start; padding-bottom: 12px; }
}
