:root{
  /* HeMoFix – Logo-Farben (Bronze/Gold auf Dark) */
  --brand-1: #7E5A38;  /* Bronze */
  --brand-2: #8D6846;  /* Gold-Highlight */
  --brand-3: #241C14;  /* Dunkelbraun */

  /* Base */
  --bg: #070B14;
  --bg2:#0B1220;
  --card: rgba(17, 18, 22, .70);
  --text:#F2E9DE;
  --muted:#CBB9A6;
  --line: rgba(126, 90, 56, .25);
  --shadow: 0 18px 40px rgba(0,0,0,.45);

  --accent: var(--brand-1);
  --accent2: var(--brand-2);
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(900px 600px at 20% -10%, rgba(126,90,56,.22), transparent 60%),
    radial-gradient(900px 600px at 90% 0%, rgba(141,104,70,.16), transparent 55%),
    linear-gradient(180deg, var(--bg2), var(--bg) 70%);
  color:var(--text);
  line-height:1.5;
}

a{color:inherit}
a:hover{color:var(--accent2)}
.container{max-width:1100px;margin:0 auto;padding:0 18px}

/* Header (nicht sticky -> verschwindet beim Scrollen) */
.header{
  position: static;
  background: rgba(7,11,20,.65);
  border-bottom:1px solid rgba(126,90,56,.20);
}
.header-row{
  display:flex;align-items:center;justify-content:space-between;
  padding:14px 18px;
  gap:14px;
}

.brand{display:flex;gap:12px;align-items:center}
.brand-logo{
  width:52px;height:52px;
  object-fit:contain;
  border-radius:16px;
  padding:8px;
  background: rgba(126,90,56,.08);
  border: 1px solid rgba(126,90,56,.35);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}
.brand-title{font-weight:900; letter-spacing: .02em}
.brand-sub{font-size:13px;color:var(--muted)}

.nav{display:flex;gap:14px;align-items:center}
.nav a{opacity:.9;text-decoration:none}
.nav a:hover{opacity:1}

.btn{
  display:inline-flex;align-items:center;justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color:#120D08;
  font-weight:900;
  border:0;
  text-decoration:none;
  box-shadow: var(--shadow);
  cursor:pointer;
}
.btn.secondary{
  background: rgba(126,90,56,.06);
  color: var(--text);
  border: 1px solid rgba(126,90,56,.35);
  box-shadow:none;
}
.btn.small{padding:10px 12px;border-radius:12px}

.hero{padding:56px 0 28px}
.grid-2{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:18px;
}

h1{font-size:44px;line-height:1.05;margin:0 0 14px; letter-spacing:-0.02em}
.lead{font-size:18px;color:var(--muted);margin:0 0 18px}
.hero-actions{display:flex;gap:12px;flex-wrap:wrap;margin:18px 0}

.checks{
  list-style:none;padding:0;margin:18px 0 0;
  display:grid;gap:8px;color:var(--muted)
}
.checks li::before{content:"✓ "; color: var(--accent2); font-weight:900}

.section{padding:44px 0}
.section.alt{
  background: rgba(126,90,56,.04);
  border-top:1px solid rgba(126,90,56,.18);
  border-bottom:1px solid rgba(126,90,56,.18);
}

h2{font-size:28px;margin:0 0 10px; letter-spacing:-0.01em}
h2::after{
  content:"";
  display:block;
  width:84px;
  height:3px;
  margin-top:10px;
  border-radius:999px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  opacity:.95;
}

.muted{color:var(--muted)}

.cards{
  margin-top:18px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:14px;
}

.card{
  background: linear-gradient(180deg, rgba(20,20,24,.78), rgba(14,14,18,.62));
  border: 1px solid rgba(126,90,56,.30);
  border-radius:18px;
  padding:18px;
  box-shadow: var(--shadow);
}

.card h3{margin:0 0 10px; letter-spacing:-0.01em}
.card ul{margin:0;padding-left:18px;color:var(--muted)}
.hero-card h2{margin:0 0 6px;font-size:22px}
.hero-card h2::after{display:none}

.contact-box{margin:14px 0 8px;display:grid;gap:10px}
.contact-row{
  display:flex;justify-content:space-between;gap:12px;
  padding:10px 12px;
  border: 1px solid rgba(126,90,56,.28);
  border-radius:14px;
  background: rgba(126,90,56,.05);
}
.label{color:var(--muted)}

.steps{display:grid;gap:12px;margin-top:18px}
.step{
  display:flex;gap:14px;align-items:flex-start;
  padding:14px 16px;
  border:1px solid rgba(126,90,56,.22);
  border-radius:18px;
  background: rgba(20,20,24,.42);
}
.step-num{
  width:34px;height:34px;border-radius:12px;
  display:grid;place-items:center;
  background: rgba(126,90,56,.12);
  border: 1px solid rgba(126,90,56,.35);
  font-weight:900;
  color: var(--accent2);
}

.price-grid{
  margin-top:16px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.price{font-size:34px;font-weight:900;margin:8px 0 0}
.tiny{font-size:12.5px}

.form{display:grid;gap:12px}
.row-2{display:grid;grid-template-columns: 1fr 1fr; gap:12px}

input,textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border: 1px solid rgba(126,90,56,.28);
  background: rgba(8,8,10,.55);
  color: var(--text);
}
input:focus,textarea:focus{
  outline:none;
  border-color: rgba(141,104,70,.65);
  box-shadow: 0 0 0 4px rgba(126,90,56,.18);
}

label{display:grid;gap:6px;color:var(--muted);font-size:14px}

.consent{
  display:flex;
  gap:10px;
  align-items:flex-start;
  font-size:13px;
  color: var(--muted);
}
.consent input{width:auto;margin-top:3px}

.hp{position:absolute;left:-9999px;top:auto;width:1px;height:1px;overflow:hidden}

.footer{
  padding:18px 0;
  border-top:1px solid rgba(126,90,56,.20);
  background: rgba(0,0,0,.22);
}
.footer .container{display:flex;gap:10px;justify-content:center;flex-wrap:wrap}
.footer a{color:var(--muted);text-decoration:none}
.footer a:hover{color:var(--text)}

@media (max-width: 980px){
  .cards{grid-template-columns: repeat(2, 1fr)}
  .grid-2{grid-template-columns:1fr}
  h1{font-size:36px}
}

@media (max-width: 520px){
  .nav{display:none}
  .cards{grid-template-columns:1fr}
  .price-grid{grid-template-columns:1fr}
  .row-2{grid-template-columns:1fr}
}

#rechtliches p,
#rechtliches li{
  font-size:14px;
  line-height:1.6;
  color: var(--muted);
}

#rechtliches strong{
  color: var(--text);
}

.gallery{
  margin-top:18px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:14px;
}

.gallery img{
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius:16px;
  border:1px solid rgba(126,90,56,.35);
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
  transition: transform .25s ease, box-shadow .25s ease;
}

.gallery img:hover{
  transform: scale(1.03);
  box-shadow: 0 18px 45px rgba(0,0,0,.5);
}

@media (max-width: 980px){
  .gallery{grid-template-columns: repeat(2, 1fr);}
}
@media (max-width: 520px){
  .gallery{grid-template-columns: 1fr;}
}

input[type="file"]{
  padding:10px;
  background: rgba(126,90,56,.06);
}

