/* Sven Weber Hausverwaltung - clean split layout (Bild links / Text rechts) */
:root{
  --blue:#1f3b70;
  --gold:#c4a64a;
  --text:#1e2430;
  --muted:#556277;
  --line:#e6e9ef;
  --bg:#ffffff;
  --bg2:#f6f7fb;
  --radius:16px;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.5;
}

a{ color:var(--blue); }
.container{ max-width:1120px; margin:0 auto; padding:0 24px; }

/* Header */
.site-header{
  position:sticky;
  top:0;
  z-index:20;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 48px;
  background:rgba(255,255,255,.92);
  backdrop-filter:saturate(150%) blur(8px);
  border-bottom:1px solid var(--line);
}
.brand img{ height:52px; width:auto; display:block; }
.nav a{
  text-decoration:none;
  font-weight:650;
  margin-left:28px;
  color:var(--blue);
}
.nav-cta{
  padding:10px 14px;
  border-radius:999px;
  border:1px solid var(--line);
}

/* Hero split */
.hero-split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  min-height:82vh;
}
.hero-image{
  background-image:url("assets/hero.jpg");
  background-size:cover;
  background-position:center;
  position:relative;
}
.hero-image::after{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(90deg, rgba(0,0,0,.10), rgba(0,0,0,0));
}
.hero-content{
  padding:84px 72px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.eyebrow{
  color:var(--muted);
  text-transform:uppercase;
  letter-spacing:.12em;
  font-weight:750;
  font-size:.85rem;
  margin:0 0 14px;
}
h1{
  color:var(--blue);
  font-size:3.0rem;
  line-height:1.12;
  margin:0 0 18px;
}
.lead{
  font-size:1.15rem;
  color:var(--muted);
  max-width:42ch;
  margin:0;
}
.hero-actions{ margin-top:28px; display:flex; flex-wrap:wrap; gap:12px; }
.btn{
  display:inline-block;
  padding:14px 18px;
  border-radius:14px;
  font-weight:750;
  text-decoration:none;
  border:2px solid transparent;
}
.btn.primary{ background:var(--blue); color:#fff; }
.btn.secondary{ background:#fff; color:var(--blue); border-color:var(--blue); }
.btn:hover{ filter:brightness(.98); }

.trust{
  margin-top:26px;
  display:flex;
  flex-wrap:wrap;
  gap:10px 18px;
  color:var(--muted);
  font-weight:600;
}
.trust-item{ padding:8px 10px; border:1px solid var(--line); border-radius:999px; background:#fff; }

/* Sections */
.section{ padding:76px 0; }
.section.alt{ background:var(--bg2); }
h2{ margin:0 0 10px; font-size:2.1rem; color:var(--blue); }
.sub{ margin:0 0 22px; color:var(--muted); }

.cards{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:18px;
}
.card{
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:20px 20px 18px;
  background:#fff;
  box-shadow: 0 6px 18px rgba(16,24,40,.04);
}
.card h3{ margin:0 0 8px; }
.card p{ margin:0; color:var(--muted); }

/* Steps */
.steps{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap:14px;
}
.step{
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:18px;
  background:#fff;
}
.step span{
  display:inline-flex;
  width:34px; height:34px;
  align-items:center; justify-content:center;
  border-radius:10px;
  background:rgba(31,59,112,.10);
  color:var(--blue);
  font-weight:800;
}
.step h3{ margin:10px 0 6px; }
.step p{ margin:0; color:var(--muted); }
.note{ margin-top:18px; color:var(--muted); }

/* Contact */
.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1.3fr;
  gap:18px;
  align-items:start;
}
.contact-box{
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:#fff;
  padding:20px;
}
.contact-line{ margin:0 0 10px; }
.small{ font-size:.95rem; color:var(--muted); }

.contact-form{
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:#fff;
  padding:20px;
}
label{ display:block; font-weight:700; margin:0 0 6px; }
input,select,textarea{
  width:100%;
  padding:12px 12px;
  border:1px solid #d9dde3;
  border-radius:12px;
  font:inherit;
}
input:focus,select:focus,textarea:focus{
  outline:none;
  border-color:var(--blue);
  box-shadow: 0 0 0 4px rgba(31,59,112,.12);
}
.grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}
.full{ grid-column:1 / -1; }

/* Footer */
.footer{
  border-top:1px solid var(--line);
  padding:22px 0;
  background:#fff;
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}
.footer-links a{ margin-left:16px; text-decoration:none; color:var(--muted); }
.footer-links a:hover{ color:var(--blue); }



/* About */
.about-grid{
  display:grid;
  grid-template-columns: 320px 1fr;
  gap:32px;
  align-items:center;
}
.about-photo{
  width:100%;
  height:auto;
  border-radius:18px;
  box-shadow:0 12px 30px rgba(0,0,0,.14);
}
.about-text p{ color:var(--muted); }
.about-name{
  font-weight:800;
  margin:12px 0 10px;
  color:var(--text);
}
.about-name span{
  font-weight:600;
  color:var(--muted);
}
.about-badges{
  margin-top:16px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.badge{
  display:inline-flex;
  align-items:center;
  padding:8px 10px;
  border:1px solid var(--line);
  border-radius:999px;
  background:#fff;
  color:var(--muted);
  font-weight:650;
  font-size:.95rem;
}

/* Responsive */
@media (max-width: 980px){
  .site-header{ padding:14px 20px; }
  .hero-split{ grid-template-columns:1fr; min-height:auto; }
  .hero-image{ min-height:320px; }
  .hero-content{ padding:44px 24px; }
  h1{ font-size:2.25rem; }
  .cards{ grid-template-columns:1fr; }
  .steps{ grid-template-columns:1fr 1fr; }
  .contact-grid{ grid-template-columns:1fr; }
  .about-grid{ grid-template-columns:1fr; }
  .grid{ grid-template-columns:1fr; }
}
