:root {
  --max: 64rem;
  --text: #0f172a;
  --bg_white: #ffffff;
  --muted: #475569;
  --accent: #2563eb;
  --surface: #f8fafc;
  --border: #e2e8f0;
  --important: rgba(243, 84, 166, 0.3);
}
* { box-sizing: border-box; }

html body{
  scroll-padding-top: 4.25rem;
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
}
body {
  font-size: clamp(12px, 1.5vw, 16px);
  line-height: 1.6;
  font-family:
    system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, Cantarell,
    "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: var(--bg_white);
}

.wrap {
  max-width: var(--max);
  margin-inline: auto;
  padding: 0 1rem;
}

header {
  border-bottom: 1px solid var(--border);
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
}

nav ul {
  display: flex;
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
nav a {
  display: inline-block;
  padding: 0.35rem 0.6rem;
  border-radius: 0.5rem;
}
nav a:hover { background: var(--surface); }

a { color: var(--text); text-decoration: none; }
a:hover { text-decoration: underline; }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 3.5rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
}
.brand-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.hero {
  background: linear-gradient(180deg, #fdf6e3, #ffffff);
  border-bottom: 1px solid var(--border);
}
.hero.hero-text .inner { display: block; }
.hero .inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  padding: 1rem 0;
}
.hero h1 {
  font-size: clamp(1.8rem, 2.5vw + 1rem, 2.6rem);
  margin: 0.25rem 0 2rem;
}
.hero .subheading {
  font-size: clamp(1.6rem, 2vw, 2.4rem);
  font-weight: 600;
  font-style: italic;
  margin: 0 1rem 2rem;
  color: #000000;
}
.hero p {
  color: var(--muted);
  margin: 0 1rem 2rem;
  font-size: clamp(1rem, 2vw, 1.4rem);
}
.hero .highlight { color: #000000; font-weight: 600; }

.cta {
  display: flex;
  gap: 0.75rem;
  margin: 0 1rem 1rem;
  flex-wrap: wrap;
}
.btn {
  display: inline-block;
  padding: 0.7rem 1rem;
  border-radius: 0.7rem;
  border: 1px solid var(--border);
  background: #fdf6e3;
  font-weight: 600;
}
.btn.primary {
  background: #f7dd98;
  color: #000000;
  border-color: transparent;
}

section { padding: 2.5rem 0; }
section h2 { margin: 0 0 0.5rem; font-size: 1.6rem; }
section p.lead {
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 600;
  color: var(--muted);
  margin: 0.25rem 0 1.25rem;
}

.skip {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  background: #fff;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  z-index: 1000;
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1rem;
}
.placeholder {
  aspect-ratio: 16/10;
  background: var(--surface);
  border: 1px dashed var(--border);
  border-radius: 0.75rem;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 0.95rem;
}

.grid { display: grid; gap: 1rem; }
@media (min-width: 720px) {
  .grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
  .hero .inner { grid-template-columns: 1.2fr 0.8fr; }
}
@media (max-width: 719px) {
  .hero .inner { grid-template-columns: 1fr; }
}

.list { margin: 0; padding: 0; list-style: none; }
.list li { padding: 0.75rem 0; border-bottom: 1px solid var(--border); }
.list small { color: var(--muted); }

footer { border-top: 1px solid var(--border); background: #fff; }
.foot {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.95rem;
}
.badge {
  font: 600 0.8rem/1 monospace;
  padding: 0.25rem 0.5rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  color: var(--muted);
  background: var(--surface);
}

/* ===== Header Stylesheet (ehem. CSS 2) ===== */
:root {
  --border: #e2e8f0;
  --surface: #f8fafc;
  --text: #0f172a;
}

/* --- Grundlayout für Header --- */
header {
  border-bottom: 1px solid var(--border);
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
}

/* --- Container im Header --- */
header .nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 3.5rem;
}

/* --- Brand-Bereich (Logo + Text) --- */
header .brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
}

header .brand-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

/* --- Navigation --- */
header nav ul {
  display: flex;
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

header nav a {
  display: inline-block;
  padding: 0.35rem 0.6rem;
  border-radius: 0.5rem;
  color: var(--text);
  text-decoration: none;
}

header nav a:hover {
  background: var(--surface);
  text-decoration: underline;
}

/* --- Button-Look für Links im Header --- */
header .btn {
  display: inline-block;
  padding: 0.7rem 1rem;
  border-radius: 0.7rem;
  border: 1px solid var(--border);
  background: #fdf6e3;
  font-weight: 600;
}

header .btn.primary {
  background: #f7dd98;
  color: #000000;
  border-color: transparent;
}