:root{
  --bg-start:#14110d;      /* sehr dunkles, warmes Braun */
  --bg-end:#1f1a12;        /* dunkles Sepia */
  --brand:#d4af37;         /* Gold (Primär) */
  --brand-2:#f6d67a;       /* helles Gold (Akzent) */
  --text:#f4efe6;          /* leicht warmes Weiß */
  --muted:#cbbf9e;         /* gedämpftes Beige */
  --error:#ff6b6b;
  --focus:#f0d58a;         /* Fokus-Ring in hellem Gold */
  --card:#1a140fcc;        /* transluzente Karte (warm) */
  --border:#3a2d1c;        /* warme, dunkle Bordüre */
}
*{box-sizing:border-box; scroll-behavior: smooth;}
html,body{height:100%}

/* ============================= */
/*  Scrollbar Styling mit Palette */
/* ============================= */

/* Firefox */
* {
  scrollbar-width: thin; /* "auto" oder "thin" */
  scrollbar-color: var(--brand) var(--bg-end);
}

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-end);
  border-radius: 8px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--brand), var(--brand-2));
  border-radius: 8px;
  border: 2px solid var(--bg-end); /* sorgt für etwas Abstand zum Track */
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(var(--brand-2), var(--brand));
}

::-webkit-scrollbar-corner {
  background: var(--bg-end);
}

body{
  margin:0; font-family:system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
  color:var(--text);
  background:
	radial-gradient(1200px 700px at 10% 0%, #2b1e10 0%, transparent 60%),
	radial-gradient(1200px 700px at 90% 100%, #221a0f 0%, transparent 60%),
	linear-gradient(160deg, var(--bg-start), var(--bg-end));
  background-attachment: fixed;
}

a{color:var(--brand);}
a:hover{color:var(--brand-2);}
a:active{color:var(--brand);}
a:visited{color:var(--brand);}

a.btn{color:var(--bg-start);}

/* sanfte “Einatmen”-Animation für Hero-Illustration */
@keyframes floaty {
  0%{ transform: translateY(0px) }
  50%{ transform: translateY(-6px) }
  100%{ transform: translateY(0px) }
}

.wrapper{
  max-width: 1100px;
  margin: 0 auto;
  /* padding: 32px 20px 80px; */
  padding: 22px 20px 20px;
}

.logo-wrapper {
  display: inline-block;
  vertical-align: middle;
}

.logo-wrapper img {
  vertical-align: middle;
}

header{
  display:flex; align-items:center; justify-content:space-between; gap:16px; padding:10px 0 18px;
}

.brand{
  display:flex; align-items:center; gap:14px; text-decoration:none; color:var(--text)
}

.brand svg{
  width:40px; height:40px; flex:0 0 40px; filter: drop-shadow(0 2px 6px rgba(0,0,0,.35));
}

.brand h1{
  font-size: clamp(18px, 2vw, 22px);
  line-height:1.15; margin:0; font-weight:700; letter-spacing:.2px
}

/* Badge-Hintergrund leicht warm getönt */
.badge{
  border:1px solid var(--border);
  color:var(--muted);
  padding:8px 12px; border-radius:999px; font-size:14px;
  backdrop-filter:saturate(110%) blur(4px);
  background: linear-gradient(180deg, #1a140eaa, #1a140ecc);
  text-align: center;
}

.hero{
  display:grid; grid-template-columns:1.1fr .9fr; gap:36px; align-items:center;
}
@media (max-width: 900px){
  .hero{ grid-template-columns:1fr; }
}

.hero section {align-self: baseline;}

.headline{
  font-size: clamp(28px, 4.2vw, 48px);
  line-height:1.1; margin:14px 0 10px; font-weight:800;
}

.sub{
  color:var(--muted); font-size: clamp(16px, 2vw, 18px); margin: 8px 0 22px;
}

/* Karten und Feature-Karten warm */
.card{
  border:1px solid var(--border); border-radius:18px;
  background: linear-gradient(180deg, var(--card), #1a140fee);
  padding:22px; box-shadow: 0 10px 30px rgba(0,0,0,.25);
}

.features{
  display:grid; grid-template-columns:repeat(3,1fr); gap:14px; margin-top:18px;
}
@media (max-width: 900px) { 
	.features{ grid-template-columns:1fr; } 
	/* .badge{ display: none; visibility:hidden; } */
}

.feature{
  border:1px solid var(--border); border-radius:14px; padding:14px 16px;
  background:linear-gradient(180deg, #261c12cc, #1c150fee);
}
.feature h3{ margin:0 0 6px; font-size:16px }
.feature p{ margin:0; color:var(--muted); font-size:14px }

.svg-hero{
  width:100%; height:auto; animation: floaty 8s ease-in-out infinite;
}

/* Formular */
form{ display:grid; gap:14px }
.row{ display:grid; grid-template-columns:1fr 2fr; gap:12px }
@media (max-width: 600px) { 
	.row{ grid-template-columns:1fr } 
	.badge{ display: none; visibility:hidden; }
}

/* Formulare warm einfärben */
label{ font-size:14px; color:var(--muted) }
select, input[type="text"], input[type="email"]{
  width:100%; padding:12px 12px; border-radius:12px; border:1px solid var(--border);
  background:#1b150e; color:var(--text); outline:none;
}
select:focus, input:focus, textarea:focus{
  border-color:var(--focus);
  box-shadow:0 0 0 4px rgba(240,213,138,.18); /* Gold-Fokus */
}

/* Consent-Box warm */
.consent{
  display:flex; align-items:flex-start; gap:10px; font-size:14px; color:var(--muted);
  background:#1a140e; border:1px dashed var(--border); padding:12px; border-radius:12px
}

.consent input{ margin-top:2px }

/* Buttons in Gold */
.btn{
  appearance:none; border:none; cursor:pointer;
  padding:14px 18px; border-radius:12px; font-weight:700; letter-spacing:.2px;
  background: linear-gradient(180deg, var(--brand), #b58a22);
  color:#1a1207;
  box-shadow: 0 8px 20px rgba(212,175,55,.35);
  transition: transform .06s ease, box-shadow .2s ease, filter .2s ease;
}
.btn:hover{ filter:saturate(110%); box-shadow: 0 10px 26px rgba(212,175,55,.45) }
.btn:active{ transform: translateY(1px) }

/* Pflichtstern und Links greifen neue Akzentfarbe */
.note{ font-size:12.5px; color:var(--muted); margin-top:8px }
.req { color: var(--brand-2); font-weight:700; }

.message{
  margin-top:12px; padding:12px 14px; border-radius:12px; display:none;
}
.message.error{ background: #2a0e12; border:1px solid #5b1d25; color:#ffd2d2 }
.message.ok{ background: #0e221f; border:1px solid #224a45; color:#c5fff5 }

footer{
  margin-top:60px; color:var(--muted); font-size:13px; display:flex; gap:12px; flex-wrap:wrap; justify-content:space-between; align-items:center
}

footer a{ color:var(--brand-2); text-decoration:none }
footer a:hover{ text-decoration:underline }