:root {
  --green: #00a587;
  --green-dark: #008a71;
  --slate: #425563;
  --slate-80: #687782;
  --slate-20: #d9dde0;
  --slate-10: #eaecee;
  --lime: #d0df00;
  --font: "Helvetica Now Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-display: "Helvetica Now Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }
body {
  font-family: var(--font);
  color: #000;
  background: #fff;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
a { color: var(--green); text-decoration: none; }
a:hover, a:focus-visible { text-decoration: underline; }
:focus-visible { outline: 3px solid var(--green); outline-offset: 2px; }

header {
  border-bottom: 1px solid var(--slate-20);
}
.wrap {
  width: min(100% - 3rem, 1140px);
  margin-inline: auto;
}
header .wrap {
  display: flex;
  align-items: center;
  min-height: 4.5rem;
}
.logo img { display: block; height: 56px; width: auto; }
.logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: #000;
}
.logo-text small { display: block; font-weight: 400; font-size: 0.75rem; color: var(--slate-80); letter-spacing: 0; }

main:not(.page) { flex: 1; display: grid; grid-template-columns: 1fr; }
@media (min-width: 900px) { main:not(.page) { grid-template-columns: 1fr 1fr; } }

.panel-green {
  background: var(--green);
  color: #fff;
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1.5rem, 6vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.kicker {
  margin: 0 0 0.5rem;
  color: rgba(255,255,255,.75);
  font-size: 1rem;
}
h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 1.25rem;
}
.lead { font-weight: 700; font-size: 1.125rem; margin: 0 0 2rem; max-width: 34rem; }
.btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  font-weight: 700;
  background: #fff;
  color: var(--green);
  border: 2px solid #fff;
}
.btn:hover, .btn:focus-visible { background: #f6f9cc; border-color: #f6f9cc; color: var(--green-dark); text-decoration: none; }
.btn-outline { background: transparent; color: #fff; margin-left: 0.5rem; }
.btn-outline:hover, .btn-outline:focus-visible { background: rgba(255,255,255,.12); color: #fff; }

.panel-slate {
  background: var(--slate);
  color: #fff;
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1.5rem, 6vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.panel-slate h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.375rem;
  margin: 0 0 1rem;
}
.panel-slate .kicker { color: var(--lime); }
.panel-slate p { margin: 0 0 1rem; max-width: 34rem; }
.panel-slate a { color: #fff; text-decoration: underline; text-underline-offset: 0.15em; }
.panel-slate a:hover { color: var(--lime); }
dl { margin: 0; display: grid; grid-template-columns: max-content 1fr; gap: 0.35rem 1rem; }
dt { color: rgba(255,255,255,.7); }
dd { margin: 0; }

.en {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.2);
  font-size: 0.9375rem;
}
.en .kicker { color: rgba(255,255,255,.75); font-size: 0.875rem; }

footer {
  background: var(--slate-10);
  color: var(--slate);
  font-size: 0.8125rem;
  padding: 1rem 0;
}
footer .wrap { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.5rem 1.5rem; }
footer a { color: var(--slate); font-weight: 700; }

/* Textseiten (Impressum, Datenschutz) */
.page { flex: 1; padding: clamp(2.5rem, 6vw, 4rem) 0; }
.page .wrap { max-width: 760px; }
.page h1 { font-size: clamp(2rem, 4vw, 2.75rem); color: #000; }
.page h2 { font-family: var(--font-display); font-weight: 700; font-size: 1.375rem; margin: 2.25rem 0 0.75rem; }
.page h4 { font-weight: 700; font-size: 1rem; margin: 1.25rem 0 0.4rem; }
.page h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.0625rem; margin: 1.5rem 0 0.5rem; }
.page p, .page ul { margin: 0 0 1rem; }
.page .kicker { color: var(--green); }
.page address { font-style: normal; }
.page .box { background: var(--slate-10); padding: 1.25rem 1.5rem; margin: 1.5rem 0; }
.placeholder { color: var(--slate-80); }
.back { display: inline-block; margin-top: 2.5rem; font-weight: 700; }
