:root{
  /* Deine Präsentationsfarben */
  --brown: #92622f;
  --orange: #F7931A;
  --green: #538b35;

  --bg: #ffffff;
  --alt: #f7f4ee;     /* helles Beige */
  --text: #1f1f1f;
  --muted: #5b5b5b;

  --card: #ffffff;
  --cardSoft: #fbf7ef;

  --border: rgba(0,0,0,.08);
  --shadow: 0 10px 26px rgba(0,0,0,.08);

  --radius: 16px;
  --radiusSmall: 12px;

  --container: 1080px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
}

a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: underline; }

.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 18px;
}

/* Topbar */
.topbar{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.topbar__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
}

.brand{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: .2px;
}
.brand__mark{
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(247,147,26,.18);
}
.brand__text{
  color: var(--brown);
}

.nav{
  display: none;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--muted);
  font-weight: 700;
}
.nav a{
  padding: 6px 8px;
  border-radius: 999px;
}
.nav a:hover{
  background: rgba(0,0,0,.04);
  text-decoration: none;
}

/* Hero */
.hero{
  padding: 42px 0 18px;
  background: linear-gradient(180deg, rgba(247,147,26,.10), rgba(83,139,53,.08) 55%, rgba(255,255,255,0));
}
.hero__grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
}
.kicker{
  display: inline-block;
  font-weight: 900;
  color: var(--green);
  letter-spacing: .6px;
  text-transform: uppercase;
  font-size: 12px;
  margin: 0 0 10px;
}
h1{
  font-size: 34px;
  line-height: 1.08;
  margin: 0 0 12px;
  letter-spacing: -0.6px;
}
.accent{ color: var(--orange); }

.lead{
  font-size: 16px;
  color: var(--muted);
  margin: 0 0 14px;
  max-width: 60ch;
}

.pillrow{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0 16px;
}
.pill{
  font-size: 13px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(83,139,53,.10);
  color: var(--green);
  font-weight: 800;
}

.cta{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 10px 0 10px;
}
.cta--tight{ margin-top: 12px; }

.note{
  font-size: 13px;
  color: var(--muted);
  margin: 10px 0 0;
  max-width: 70ch;
}

.hero__media img.hero-image{
  width: 100%;
  max-width: 520px;
  height: 330px;          /* Ausschnitt */
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

/* Sections */
.section{ padding: 38px 0; }
.section--alt{ background: var(--alt); }
.section--tight{ padding: 20px 0 30px; }

.section__head{ margin-bottom: 14px; }
h2{
  margin: 0 0 6px;
  font-size: 24px;
  letter-spacing: -0.2px;
}
.muted{ color: var(--muted); }
.small{ font-size: 13px; }

/* Callout */
.callout{
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  background: rgba(255,255,255,.85);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 8px 22px rgba(0,0,0,.06);
}
.callout__title{
  margin: 0 0 6px;
  font-size: 20px;
  color: var(--brown);
}
.callout__text{
  margin: 0;
  color: var(--muted);
}
.btn--wide{ width: 100%; justify-content: center; }

/* Grid */
.grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.grid--2{ grid-template-columns: 1fr; }
.grid--3{ grid-template-columns: 1fr; }

/* Cards */
.card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
}
.card--soft{ background: var(--cardSoft); }

h3{
  margin: 0 0 8px;
  font-size: 18px;
  color: var(--brown);
}

.bullets{
  margin: 10px 0 0;
  padding-left: 18px;
}
.bullets li{ margin: 8px 0; }

.list{
  margin: 10px 0 0;
  padding-left: 18px;
}
.list li{ margin: 8px 0; }

.checklist{
  list-style: none;
  padding-left: 0;
  margin: 10px 0 0;
}
.checklist li{
  margin: 10px 0;
  padding-left: 26px;
  position: relative;
}
.checklist li::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  font-weight: 900;
}

.quote{
  margin: 14px 0 0;
  padding: 12px 12px;
  border-left: 4px solid var(--orange);
  background: rgba(247,147,26,.10);
  border-radius: var(--radiusSmall);
  color: var(--brown);
  font-weight: 800;
}
.quote--big{
  font-size: 18px;
  line-height: 1.35;
}
.quote--subtle{
  font-weight: 700;
}

.tags{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}
.tag{
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(247,147,26,.10);
  color: var(--brown);
  border: 1px solid rgba(247,147,26,.22);
  font-weight: 900;
  font-size: 13px;
}

.steps{
  margin: 10px 0 0;
  padding-left: 18px;
}
.steps li{ margin: 10px 0; }

/* Links */
.links{
  margin: 10px 0 0;
  padding-left: 18px;
}
.links li{ margin: 10px 0; }
.links a{
  color: var(--green);
  font-weight: 800;
}
.links a:hover{ color: #3e7a2b; }

/* Buttons (vereinheitlicht: nur primary + secondary) */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
}
.btn:hover{ text-decoration: none; }

.btn--primary{
  background: var(--orange);
  color: #1b1208;
  box-shadow: 0 12px 26px rgba(247,147,26,.25);
}
.btn--primary:hover{ filter: brightness(.98); }

.btn--secondary{
  background: transparent;
  border-color: rgba(0,0,0,.18);
  color: var(--brown);
}
.btn--secondary:hover{ background: rgba(0,0,0,.04); }

/* Footer */
.footer{
  background: #111;
  color: #fff;
  padding: 18px 0;
}
.footer__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.footer__sep{ margin: 0 6px; opacity: .6; }
.footer a{ color: #fff; opacity: .92; }
.footer a:hover{ opacity: 1; }

/* Desktop */
@media (min-width: 900px){
  .nav{ display: flex; }
  .hero__grid{ grid-template-columns: 1.2fr .8fr; gap: 22px; }
  h1{ font-size: 44px; }
  .lead{ font-size: 18px; }
  .grid--2{ grid-template-columns: 1fr 1fr; }
  .grid--3{ grid-template-columns: 1fr 1fr 1fr; }
  .callout{ grid-template-columns: 1.25fr .75fr; align-items: center; }
  .hero__media img.hero-image{ height: 380px; }
}
.figure{
  margin: 20px 0;
}
.figure img{
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.1);
}



