:root{
  --bg: #fbf7f0;
  --surface: #fffaf2;
  --card: #ffffff;
  --ink: #1e1a16;
  --muted: #6a5f55;

  --accent: #b46a3c;     /* Terracotta */
  --accent2: #2f7a6b;    /* ruhiges Grün */
  --stroke: rgba(30,26,22,.12);

  --shadow: 0 18px 50px rgba(30,26,22,.10);
  --radius: 18px;
  --max: 1100px;

  --font: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
}

*{ box-sizing: border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(900px 600px at 15% 10%, rgba(180,106,60,.10), transparent 60%),
    radial-gradient(900px 600px at 85% 20%, rgba(47,122,107,.10), transparent 55%),
    linear-gradient(180deg, var(--bg), #f6efe5 70%);
}

a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: underline; }

.container{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}

.skip{
  position:absolute;
  left:-999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}
.skip:focus{
  left: 18px;
  top: 18px;
  width:auto;
  height:auto;
  background: var(--card);
  border: 1px solid var(--stroke);
  padding: 10px 12px;
  border-radius: 12px;
  z-index: 999;
  box-shadow: var(--shadow);
}

.header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251,247,240,.78);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(30,26,22,.10);
}

.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 20px;
}

.brand{
  display:flex;
  align-items:center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: .2px;
}
.brand__mark{
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(180,106,60,.95), rgba(47,122,107,.75));
  box-shadow: 0 0 0 4px rgba(180,106,60,.10);
}
.brand__name{ font-size: 15px; }

.nav__toggle{
  display:none;
  background: var(--card);
  border: 1px solid var(--stroke);
  color: var(--ink);
  padding: 10px 12px;
  border-radius: 12px;
}

.nav__menu{
  list-style:none;
  display:flex;
  gap:16px;
  margin:0;
  padding:0;
  align-items:center;
}
.nav__menu a{ color: var(--ink); opacity: .9; }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(30,26,22,.14);
  background: linear-gradient(135deg, rgba(180,106,60,.18), rgba(47,122,107,.14));
  box-shadow: var(--shadow);
  font-weight: 650;
}
.btn:hover{ text-decoration:none; transform: translateY(-1px); }
.btn--ghost{ background: transparent; box-shadow: none; }

.hero{ padding: 56px 0 20px; }
.hero--center{ padding: 64px 0 26px; }

.hero__center{
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

h1, .h1{
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
  margin: 0 0 10px;
}
.lead{
  font-size: 18px;
  line-height: 1.55;
  margin: 0;
  color: var(--muted);
}

.section{ padding: 42px 0; }

.section__head h2{
  margin: 0 0 16px;
  font-size: 22px;
}
.section__head--center{ text-align: center; }

.grid{
  display:grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
}

.tile{
  border: 1px solid rgba(30,26,22,.12);
  border-radius: var(--radius);
  background: rgba(255,255,255,.68);
  box-shadow: 0 10px 30px rgba(30,26,22,.06);
  padding: 16px;
  min-height: 160px;

  display:flex;
  align-items:center;
  justify-content:center;

  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.tile:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(30,26,22,.10);
  border-color: rgba(30,26,22,.18);
}

@media (prefers-reduced-motion: reduce){
  .tile{ transition: none; }
  .tile:hover{ transform: none; }
}

.tile__icon{
  width: 100%;
  max-width: 210px;
  height: 130px;

  border-radius: 22px;
  padding: 12px;

  background: linear-gradient(135deg, rgba(180,106,60,.10), rgba(47,122,107,.08));
  border: 1px solid rgba(30,26,22,.10);

  display:flex;
  align-items:center;
  justify-content:center;
}

.icon{
  width: 100%;
  height: 100%;
  display:block;
}

/* Icon-Stil: „skizziert“ */
.s{
  fill: none;
  stroke: rgba(30,26,22,.78);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.s--thin{ stroke-width: 1.6; opacity: .85; }
.f{ fill: rgba(30,26,22,.75); }

.section__foot{ margin-top: 14px; }
.link{ color: rgba(30,26,22,.90); font-weight: 650; }

.footer{
  padding: 28px 0 34px;
  border-top: 1px solid rgba(30,26,22,.10);
}
.footer__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
}
.footer__links{ display:flex; gap: 14px; }

.muted{ color: var(--muted); }
.small{ font-size: 13px; }

/* Rechtliches Layout */
.stack{
  display:grid;
  gap: 14px;
}

.panel{
  border: 1px solid rgba(30,26,22,.12);
  border-radius: var(--radius);
  background: rgba(255,255,255,.68);
  box-shadow: 0 10px 30px rgba(30,26,22,.06);
  padding: 16px;
}

.h3{
  margin: 18px 0 8px;
  font-size: 15px;
}
.legalBox{
  border: 1px dashed rgba(30,26,22,.20);
  border-radius: 16px;
  padding: 14px;
  background: rgba(255,255,255,.55);
}

.form{
  display:grid;
  gap: 12px;
  margin-top: 10px;
}
label span{
  display:block;
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 6px;
}
input, textarea{
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(30,26,22,.14);
  background: rgba(255,255,255,.70);
  color: var(--ink);
  outline: none;
}
input:focus, textarea:focus{
  border-color: rgba(47,122,107,.55);
  box-shadow: 0 0 0 4px rgba(47,122,107,.10);
}

.form__row{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items:center;
}

/* Responsive */
@media (max-width: 920px){
  .grid{ grid-template-columns: repeat(2, 1fr); }

  .nav__toggle{ display:inline-flex; }
  .nav__menu{
    display:none;
    position:absolute;
    right: 20px;
    top: 62px;
    background: rgba(255,250,242,.98);
    border: 1px solid rgba(30,26,22,.14);
    border-radius: 16px;
    padding: 10px;
    flex-direction: column;
    align-items: stretch;
    min-width: 240px;
    box-shadow: var(--shadow);
  }
  .nav__menu.open{ display:flex; }
}

@media (max-width: 520px){
  .grid{ grid-template-columns: 1fr; }
}