:root{
  --bg:#fbf7f2;               /* warmes Off-White */
  --ink:#1b1a18;              /* dunkle Schrift */
  --muted:#5a544b;            /* warme Nebenfarbe */
  --line:rgba(27,26,24,.10);
  --card:#ffffff;
  --accent:#c07a3a;           /* warmes Kupfer */
  --accent2:#2c6f6a;          /* ruhiges Petrol */
  --soft:#fff1e3;             /* warme Fläche */
  --shadow:0 18px 60px rgba(27,26,24,.10);
  --r:18px;
  --max:1120px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--ink);
  background:
    radial-gradient(900px 500px at 10% 0%, rgba(192,122,58,.12), transparent 60%),
    radial-gradient(900px 500px at 90% 10%, rgba(44,111,106,.10), transparent 55%),
    var(--bg);
}

a{ color:inherit; }
img{ max-width:100%; height:auto; display:block; border-radius:16px; }

.wrap{ max-width:var(--max); margin:0 auto; padding:0 18px; }

header{
  position:sticky; top:0; z-index:50;
  background: rgba(251,247,242,.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  gap:14px; padding:14px 0;
}
.brand{
  display:flex; align-items:center; gap:10px;
  text-decoration:none;
  font-weight:900;
  letter-spacing:.2px;
}
.logo{
  width:36px; height:36px; border-radius:12px;
  background: linear-gradient(135deg, var(--accent), #e6b07a);
  box-shadow: 0 10px 30px rgba(192,122,58,.20);
}
nav a{
  text-decoration:none;
  color: var(--muted);
  margin-left:14px;
  font-weight:800;
}
nav a:hover{ color: var(--ink); }

@media (max-width: 960px){
  nav{ display:none; }
}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:8px;
  padding:11px 14px;
  border-radius: 999px;
  border: 1px solid rgba(27,26,24,.14);
  background: rgba(255,255,255,.6);
  font-weight:900;
  cursor:pointer;
  text-decoration:none;
}
.btn:hover{ border-color: rgba(27,26,24,.24); }
.btn.primary{
  border: none;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #d08f52);
  box-shadow: 0 14px 30px rgba(192,122,58,.22);
}
.btn.secondary{
  border: none;
  color:#fff;
  background: linear-gradient(135deg, var(--accent2), #4c9c95);
  box-shadow: 0 14px 30px rgba(44,111,106,.18);
}

main{ padding: 28px 0 64px; }

.card{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  padding: 22px;
}

.hero{
  display:grid; gap:18px;
  grid-template-columns: 1.15fr .85fr;
  align-items:stretch;
}
@media (max-width: 960px){
  .hero{ grid-template-columns:1fr; }
}

.pill{
  display:inline-flex; align-items:center; gap:8px;
  padding:6px 10px;
  border-radius:999px;
  border: 1px solid rgba(27,26,24,.10);
  background: var(--soft);
  color: var(--muted);
  font-weight:900;
  font-size: 13px;
}

h1{
  margin: 10px 0 12px;
  font-size: 44px;
  line-height: 1.05;
  letter-spacing: -0.6px;
}
@media (max-width: 520px){
  h1{ font-size: 36px; }
}
h2{ margin:0 0 10px; font-size: 22px; }
h3{ margin:0 0 6px; font-size: 16px; }

p{ margin:0 0 12px; line-height:1.65; color: var(--muted); }
strong{ color: var(--ink); }

.ctaRow{ display:flex; gap:10px; flex-wrap:wrap; margin-top: 12px; }

.kpi{
  display:grid; gap:10px; margin-top: 14px;
}
.kpi > div{
  border: 1px solid rgba(27,26,24,.10);
  background: rgba(255,241,227,.55);
  border-radius: 16px;
  padding: 12px;
}
.kpi b{ display:block; margin-bottom:4px; color: var(--ink); }

.split{
  display:grid; gap:18px;
  grid-template-columns: 1fr 1fr;
  align-items:start;
}
@media (max-width: 960px){
  .split{ grid-template-columns:1fr; }
}

.tiles{
  display:grid; gap:14px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 960px){
  .tiles{ grid-template-columns:1fr; }
}
.tile{
  border: 1px solid rgba(27,26,24,.10);
  background: rgba(255,255,255,.85);
  border-radius: 18px;
  padding: 14px;
}
.tile .tag{
  display:inline-block;
  font-weight:900;
  font-size:12px;
  color: rgba(27,26,24,.72);
  background: rgba(255,241,227,.75);
  border: 1px solid rgba(27,26,24,.08);
  padding: 4px 8px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.section{
  margin-top: 18px;
}

.breadcrumb{
  display:flex; gap:8px; flex-wrap:wrap;
  color: var(--muted);
  font-weight:900;
  font-size: 13px;
  margin-bottom: 10px;
}
.breadcrumb a{ text-decoration:none; }
.breadcrumb a:hover{ color: var(--ink); }

figure{ margin:0; }
figcaption{
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

blockquote{
  margin: 0;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(44,111,106,.07);
  border: 1px solid rgba(44,111,106,.15);
  color: rgba(27,26,24,.78);
  line-height: 1.65;
}

form{ display:grid; gap:10px; margin-top: 10px; }
label{ font-weight:900; font-size: 13px; color: var(--muted); }
input, textarea{
  width:100%;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(27,26,24,.16);
  background: rgba(255,255,255,.9);
  color: var(--ink);
  outline:none;
}
input:focus, textarea:focus{
  border-color: rgba(192,122,58,.55);
  box-shadow: 0 0 0 4px rgba(192,122,58,.10);
}

.toast{
  margin-top:10px;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(27,26,24,.12);
  background: rgba(255,241,227,.75);
  color: var(--muted);
  display:none;
}

footer{
  border-top: 1px solid var(--line);
  padding: 18px 0;
  color: var(--muted);
}
.footerRow{
  display:flex; gap:12px; flex-wrap:wrap;
  justify-content:space-between; align-items:center;
}
.footerLinks{
  display:flex; gap:12px; flex-wrap:wrap;
}
.footerLinks a{
  text-decoration:none;
  color: var(--muted);
  font-weight:900;
}
.footerLinks a:hover{ color: var(--ink); }
