:root {
  --ink: #0e3b2e;        /* tiefes Waldgruen-Ink */
  --ink-2: #0a2c22;
  --paper: #f7f5ef;      /* warmes Off-White */
  --paper-2: #fffdf8;
  --text: #18241f;
  --muted: #5d6b63;
  --accent: #b8915a;     /* Messing/Gold */
  --accent-2: #2f7d4f;   /* BARKai-Waldgruen */
  --line: #e4e0d4;
  --radius: 16px;
  --maxw: 1080px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
a { color: inherit; text-decoration: none; }
em { font-style: italic; color: var(--accent); }

h1, h2, h3, .brand { font-family: "Fraunces", Georgia, "Times New Roman", serif; font-weight: 600; letter-spacing: -0.01em; }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 20;
  background: color-mix(in srgb, var(--paper) 86%, transparent);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.brand { font-size: 24px; color: var(--ink); letter-spacing: 0.2px; }
.brand--sm { font-size: 20px; color: var(--paper); }
.nav__links { display: flex; align-items: center; gap: 26px; }
.nav__links a { color: var(--muted); font-weight: 500; font-size: 15px; }
.nav__links a:hover { color: var(--ink); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 12px 20px; border-radius: 999px; font-weight: 600; font-size: 15px;
  border: 1px solid transparent; transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}
.btn--primary { background: var(--ink); color: var(--paper-2); box-shadow: 0 8px 24px -10px rgba(14,59,46,.6); }
.btn--primary:hover { transform: translateY(-1px); background: var(--ink-2); }
.btn--ghost { border-color: var(--line); color: var(--ink); background: transparent; }
.btn--ghost:hover { border-color: var(--ink); }
.btn--lg { padding: 16px 30px; font-size: 17px; }

/* Hero */
.hero { position: relative; overflow: hidden; padding: clamp(60px, 12vw, 140px) 0 clamp(50px, 8vw, 96px); }
.hero__inner { position: relative; z-index: 2; text-align: center; max-width: 820px; }
.eyebrow { text-transform: uppercase; letter-spacing: .16em; font-size: 12.5px; font-weight: 600; color: var(--accent-2); margin: 0 0 18px; }
.hero__title { font-size: clamp(40px, 7vw, 76px); line-height: 1.02; margin: 0 0 22px; color: var(--ink); }
.hero__lead { font-size: clamp(17px, 2.4vw, 21px); color: var(--muted); margin: 0 auto 32px; max-width: 640px; }
.hero__cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero__note { margin-top: 20px; font-size: 13.5px; color: var(--muted); }
.hero__glow {
  position: absolute; inset: -30% 0 auto 0; height: 600px; z-index: 1;
  background: radial-gradient(60% 50% at 50% 0%, rgba(47,125,79,.18), transparent 70%);
  pointer-events: none;
}

/* Sections */
.section { padding: clamp(56px, 9vw, 104px) 0; }
.section__title { font-size: clamp(28px, 4vw, 42px); color: var(--ink); margin: 0 0 40px; text-align: center; }
.section--split { background: var(--paper-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* Grid / Cards */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
  background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px; transition: transform .15s ease, box-shadow .15s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -24px rgba(14,59,46,.4); }
.card__icon { font-size: 26px; margin-bottom: 12px; }
.card h3 { font-size: 19px; margin: 0 0 8px; color: var(--ink); }
.card p { margin: 0; color: var(--muted); font-size: 15px; }

/* Quote */
.quote { background: var(--ink); color: var(--paper); padding: clamp(48px, 8vw, 88px) 0; text-align: center; }
.quote blockquote {
  font-family: "Fraunces", Georgia, serif; font-size: clamp(22px, 3.4vw, 34px);
  line-height: 1.3; margin: 0 auto; max-width: 820px; font-weight: 500;
}

/* Split */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.split__text .section__title { text-align: left; margin-bottom: 22px; }
.checks { list-style: none; padding: 0; margin: 0 0 30px; }
.checks li { position: relative; padding-left: 30px; margin-bottom: 13px; color: var(--text); }
.checks li::before {
  content: "✓"; position: absolute; left: 0; top: 0; color: var(--paper-2);
  background: var(--accent-2); width: 20px; height: 20px; border-radius: 50%;
  display: grid; place-items: center; font-size: 12px; font-weight: 700;
}
.split__panel { display: grid; place-items: center; }
.mock {
  width: 100%; max-width: 420px; background: var(--ink); border-radius: 18px; padding: 22px;
  box-shadow: 0 30px 60px -30px rgba(14,59,46,.6); border: 1px solid rgba(255,255,255,.08);
}
.mock__bar { display: flex; gap: 7px; margin-bottom: 20px; }
.mock__bar span { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,.25); }
.mock__line { height: 14px; border-radius: 7px; background: rgba(255,255,255,.14); margin: 12px 0; }
.mock__line--lg { height: 22px; width: 70%; background: rgba(255,255,255,.28); }
.mock__line--accent { background: color-mix(in srgb, var(--accent) 75%, transparent); width: 55%; }
.mock__line--sm { width: 40%; }

/* CTA */
.cta { padding: clamp(56px, 9vw, 100px) 0; text-align: center; }
.cta h2 { font-size: clamp(26px, 4vw, 40px); color: var(--ink); margin: 0 0 26px; }

/* Footer */
.footer { background: var(--ink-2); color: var(--paper); padding: 48px 0 28px; }
.footer__inner { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding-bottom: 26px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer .muted { color: rgba(247,245,239,.6); }
.footer__links { display: flex; gap: 22px; flex-wrap: wrap; align-items: center; }
.footer__links a { color: rgba(247,245,239,.85); font-size: 15px; }
.footer__links a:hover { color: #fff; }
.footer__legal { padding-top: 20px; font-size: 13px; }

@media (max-width: 860px) {
  .grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split__text .section__title { text-align: center; }
}
@media (max-width: 560px) {
  .grid { grid-template-columns: 1fr; }
  .nav__links a:not(.btn) { display: none; }
}
