:root {
  --bg: #EEF1EA;
  --surface: #FFFFFF;
  --ink: #202B21;
  --ink-muted: #5B6459;
  --green: #2F4A34;
  --green-dark: #22371A;
  --slate: #56645A;
  --border: #D8DED2;
  --focus: #2F4A34;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.55;
  font-size: 17px;
  display: flex;
  justify-content: center;
  width: 100%;
}

.wrap {
  width: 100%;
  max-width: 760px;
  padding: 0 24px 80px;
}

/* Kopfzeile / Breadcrumb */
.topbar {
  padding: 20px 0 0;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  padding: 8px 14px 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  transition: background 0.15s ease, border-color 0.15s ease;
}

.back-link:hover { background: #E4E9DE; border-color: var(--green); }
.back-link:focus-visible { outline: 3px solid var(--focus); outline-offset: 2px; }

.back-link svg { width: 16px; height: 16px; }

/* Eyebrow / Org-Kennzeichnung */
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  font-weight: 600;
  color: var(--slate);
  margin: 36px 0 10px;
}

h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 600;
  font-size: 2.1rem;
  line-height: 1.2;
  color: var(--green-dark);
  margin: 0 0 8px;
}

.subtitle {
  color: var(--ink-muted);
  font-size: 17px;
  margin: 0 0 34px;
  max-width: 56ch;
}

/* Zielschütze-Divider, Signatur-Element */
.divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 40px 0 28px;
  color: var(--slate);
}
.divider::before, .divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}
.divider .mark {
  width: 9px;
  height: 9px;
  border: 1.5px solid var(--green);
  border-radius: 50%;
  position: relative;
  flex: none;
}
.divider .mark::after {
  content: "";
  position: absolute;
  inset: 3px;
  background: var(--green);
  border-radius: 50%;
}

/* Startseite: Navigationsliste */
.nav-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
}

.nav-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 22px;
  text-decoration: none;
  color: var(--ink);
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.nav-item:hover {
  border-color: var(--green);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(47, 74, 52, 0.08);
}

.nav-item:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

.nav-item .label {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--green-dark);
  margin-bottom: 4px;
}

.nav-item .desc {
  color: var(--ink-muted);
  font-size: 15px;
}

.nav-item .arrow {
  flex: none;
  color: var(--green);
  font-size: 1.3rem;
}

/* Inhaltsseiten: Schritte */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: step;
}

.steps > li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.steps > li:last-child { border-bottom: none; }

.steps > li::before {
  content: counter(step);
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--green);
  background: #E4E9DE;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.steps h3 {
  grid-column: 2;
  margin: 0 0 4px;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--ink);
}

.steps p {
  grid-column: 2;
  margin: 0;
  color: var(--ink-muted);
  font-size: 15.5px;
}

.store-badges {
  grid-column: 2;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}

.store-badges a {
  display: inline-block;
  line-height: 0;
}

.store-badges img {
  height: 44px;
  width: auto;
  display: block;
}

.steps code {
  background: #E4E9DE;
  padding: 2px 7px;
  border-radius: 5px;
  font-size: 0.92em;
  color: var(--green-dark);
}

.note {
  margin-top: 32px;
  padding: 16px 18px;
  background: #E4E9DE;
  border-left: 3px solid var(--green);
  border-radius: 0 10px 10px 0;
  font-size: 15px;
  color: var(--green-dark);
}

.note strong { color: var(--green-dark); }

footer.page-footer {
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  color: var(--ink-muted);
  font-size: 14px;
}
