/* ── Farbpalette ─────────────────────────────────── */
:root {
  --waldgruen:  #1B4332;
  --midgruen:   #2D6A4F;
  --gold:       #C9A84C;
  --creme:      #F5F0E8;
  --creme-dark: #EDE6D6;
  --anthrazit:  #1A1A1A;
  --grau:       #6B6B6B;
  --hell:       #FFFFFF;
  --nav-h:      72px;
}

/* ── Reset ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--creme);
  color: var(--anthrazit);
  line-height: 1.65;
  font-size: 16px;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ── Typografie ──────────────────────────────────── */
h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); font-weight: 700; line-height: 1.2; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; line-height: 1.25; }
h3 { font-size: 1.2rem; font-weight: 600; }
p  { color: #444; font-weight: 400; }

.eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.6rem;
}

/* ── Buttons ─────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  border: 2px solid transparent;
}
.btn-primary   { background: var(--gold);      color: var(--anthrazit); border-color: var(--gold); }
.btn-primary:hover { background: #B8952A; border-color: #B8952A; }
.btn-gruen     { background: var(--waldgruen); color: var(--creme);     border-color: var(--waldgruen); }
.btn-gruen:hover { background: var(--midgruen); border-color: var(--midgruen); }
.btn-ghost     { background: transparent;      color: var(--creme);     border-color: rgba(245,240,232,0.6); }
.btn-ghost:hover { background: rgba(245,240,232,0.1); border-color: var(--creme); }
.btn-ghost-dark { background: transparent;     color: var(--waldgruen); border-color: var(--waldgruen); }
.btn-ghost-dark:hover { background: var(--waldgruen); color: var(--creme); }
.btn-lg { padding: 1rem 2.4rem; font-size: 0.95rem; }

/* ── Navigation ──────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: var(--waldgruen);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  box-shadow: 0 1px 12px rgba(0,0,0,0.2);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-brand img {
  height: 40px;
  border-radius: 4px;
  background: var(--creme);
  padding: 3px 5px;
  box-sizing: content-box;
}
.nav-brand span {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--creme);
  letter-spacing: 0.02em;
}
.nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-menu a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.75);
  transition: color 0.2s;
}
.nav-menu a:hover,
.nav-menu a.active { color: var(--gold); }
.nav-cta a {
  font-size: 0.8rem;
  padding: 0.6rem 1.3rem;
}

/* ── Hero ────────────────────────────────────────── */
.hero {
  margin-top: var(--nav-h);
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(27,67,50,0.85) 0%, rgba(27,67,50,0.5) 60%, rgba(27,67,50,0.15) 100%);
}
.hero-content {
  position: relative;
  padding: 6rem 5vw;
  max-width: 680px;
}
.hero-content h1 { color: var(--creme); margin-bottom: 1.2rem; }
.hero-content p  { color: rgba(245,240,232,0.85); font-size: 1.1rem; margin-bottom: 2rem; max-width: 520px; }
.hero-actions    { display: flex; gap: 0.8rem; flex-wrap: wrap; }

/* ── Layout ──────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 5vw; }
.section   { padding: 6rem 5vw; }
.section-sm { padding: 4rem 5vw; }
.section-white  { background: var(--hell); }
.section-creme  { background: var(--creme); }
.section-creme-dark { background: var(--creme-dark); }
.section-gruen  { background: var(--waldgruen); }

.section-header { margin-bottom: 3rem; max-width: 640px; }
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p  { font-size: 1.05rem; }

/* ── Grid Layouts ────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ── Cards ───────────────────────────────────────── */
.card {
  background: var(--hell);
  border-radius: 4px;
  padding: 2rem 1.75rem;
  border-top: 3px solid var(--waldgruen);
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.1); transform: translateY(-3px); }
.card h3    { color: var(--waldgruen); margin-bottom: 0.75rem; }
.card p     { font-size: 0.95rem; line-height: 1.7; }
.card-gold  { border-top-color: var(--gold); }

/* ── Stat Bar ────────────────────────────────────── */
.stat-bar {
  background: var(--waldgruen);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.stat-bar-item {
  padding: 2rem 1rem;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-bar-item:last-child { border-right: none; }
.stat-num {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.6);
}

/* ── CTA Banner ──────────────────────────────────── */
.cta-banner {
  background: var(--waldgruen);
  padding: 5rem 5vw;
  text-align: center;
}
.cta-banner h2  { color: var(--creme); margin-bottom: 1rem; }
.cta-banner p   { color: rgba(245,240,232,0.75); font-size: 1.1rem; max-width: 560px; margin: 0 auto 2rem; }
.cta-banner-gold {
  background: var(--gold);
  padding: 4rem 5vw;
  text-align: center;
}
.cta-banner-gold h2  { color: var(--anthrazit); margin-bottom: 1rem; }
.cta-banner-gold p   { color: rgba(26,26,26,0.75); font-size: 1.05rem; max-width: 560px; margin: 0 auto 2rem; }

/* ── Image + Text ────────────────────────────────── */
.img-block img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 3px;
}

/* ── Checklist ───────────────────────────────────── */
.checklist { list-style: none; display: flex; flex-direction: column; gap: 0.9rem; }
.checklist li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  font-size: 0.98rem;
  color: #333;
}
.checklist li::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: var(--waldgruen);
  border-radius: 50%;
  margin-top: 0.15rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C9A84C' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}
.checklist-light li { color: rgba(245,240,232,0.88); }
.checklist-light li::before { background-color: rgba(255,255,255,0.15); }

/* ── Tags ────────────────────────────────────────── */
.tag-list { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.2rem; }
.tag {
  background: rgba(27,67,50,0.08);
  color: var(--waldgruen);
  border: 1px solid rgba(27,67,50,0.2);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.3rem 0.85rem;
  border-radius: 20px;
}
.tag-light {
  background: rgba(255,255,255,0.1);
  color: rgba(245,240,232,0.8);
  border-color: rgba(255,255,255,0.15);
}

/* ── Form ────────────────────────────────────────── */
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grau);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid #D8D2C6;
  background: var(--hell);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--anthrazit);
  border-radius: 3px;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--waldgruen); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--grau);
  margin-bottom: 1.5rem;
  line-height: 1.55;
}
.form-consent input[type="checkbox"] { margin-top: 0.2rem; flex-shrink: 0; width: 16px; height: 16px; }

/* ── Page Hero (kein Bild) ───────────────────────── */
.page-hero {
  margin-top: var(--nav-h);
  background: var(--waldgruen);
  padding: 5rem 5vw 4rem;
}
.page-hero h1 { color: var(--creme); margin-bottom: 0.75rem; }
.page-hero p  { color: rgba(245,240,232,0.75); font-size: 1.1rem; max-width: 600px; }

/* ── Footer ──────────────────────────────────────── */
footer {
  background: var(--anthrazit);
  padding: 4rem 5vw 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1160px;
  margin: 0 auto;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand .brand-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--creme);
  margin-bottom: 0.8rem;
  display: block;
}
.footer-brand p { font-size: 0.88rem; color: rgba(245,240,232,0.45); line-height: 1.7; }
.footer-brand .tagline {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1.2rem;
}
.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.4);
  margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(245,240,232,0.6);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1160px;
  margin: 1.5rem auto 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.footer-bottom p,
.footer-bottom a {
  font-size: 0.8rem;
  color: rgba(245,240,232,0.25);
}
.footer-bottom a:hover { color: var(--gold); }
.footer-bottom-links { display: flex; gap: 1.5rem; }

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 960px) {
  .grid-2      { grid-template-columns: 1fr; gap: 2.5rem; }
  .grid-3      { grid-template-columns: 1fr 1fr; }
  .grid-4      { grid-template-columns: 1fr 1fr; }
  .stat-bar    { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-grid   { grid-template-columns: 1fr; }
  .nav-menu    { display: none; }
}
@media (max-width: 600px) {
  .grid-3      { grid-template-columns: 1fr; }
  .grid-4      { grid-template-columns: 1fr; }
  .stat-bar    { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .section, .section-sm { padding: 4rem 5vw; }
  .hero-content { padding: 4rem 5vw; }
}
