:root{
  --bg: #f6f4ef;
  --surface: #ffffff;
  --text: #111827;
  --muted: #6b7280;
  --line: #e5e7eb;
  --accent: #0d47a1;
}

* { box-sizing: border-box; }

body{
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.55;
    font-size: 18px;

}

.wrap{
  max-width: 1400px;
  margin: 0 auto;
  padding: 26px 20px;
}

.site-header{
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}

.brand{
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* HERO */
.hero{
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1.35fr 1fr;   /* Bild größer */
  gap: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}

/* Bildbereich groß, ruhig */
.hero-media{
  background: #eef2f7;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-media img{
  width: 90%;
  height: auto;
  display: block;
  border-radius: 12px;
}

/* Textbereich */
.hero-content{
  padding: 26px 24px;
}

.org{
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 14px;
  align-items: start;
}

.org-logo{
  width: 400px;
  height: auto;
  display: block;
}

h1{
  margin: 0 0 8px 0;
  font-size: 30px;
  line-height: 1.2;
}

.lead{
  margin: 0;
  font-size: 18px;
  color: var(--text);
  max-width: 65ch;
}

.actions{ margin-top: 16px; }

.btn{
  display: inline-block;
  padding: 10px 14px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 650;
  border: 1px solid rgba(0,0,0,0.12);
}

.btn.primary{
  background: var(--accent);
  color: #fff;
  border-color: rgba(0,0,0,0.08);
}

.btn.primary:hover{
  filter: brightness(0.95);
}

/* GmbH Panel */
.panel{
  margin-top: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 20px;
}

h2{
  margin: 0 0 8px 0;
  font-size: 22px;
}

.link{
  color: var(--accent);
  text-decoration: none;
  font-weight: 650;
}
.link:hover{ text-decoration: underline; }

/* Footer */
.site-footer{
  margin-top: 40px;
  border-top: 1px solid var(--line);
  background: var(--bg);
}

.footer-inner{
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: space-between;
  color: var(--muted);
  font-size: 14px;
}

.site-footer a{
  color: var(--accent);
  text-decoration: none;
  font-weight: 650;
}
.site-footer a:hover{ text-decoration: underline; }

/* Mobile */
@media (max-width: 900px){
  .brand{ font-size: 34px; }
  .hero{ grid-template-columns: 1fr; }
  .org{ grid-template-columns: 56px 1fr; }
  h1{ font-size: 26px; }
}
/* Logo über Text */
.hero .org{
  display: block;          /* wichtig: kein flex-row */
  text-align: left;        /* oder center, wenn du willst */
}

/* Logo größer, mit Abstand nach unten */
.hero .org-logo{
  width: a20px;            /* nach Geschmack */
  height: auto;
  display: block;
  margin: 0 0 1rem 0;      /* Abstand zum Text */
}

/* Überschrift ohne Browser-Müll */
.hero .org h1{
  margin: 0 0 0.5rem 0;
  line-height: 1.15;
}

/* Lead kompakt */
.hero .org .lead{
  margin: 0;
  max-width: 520px;        /* optional, wirkt ruhiger */
}
.gmbh-header {
  margin-bottom: 0.75rem;
}

.gmbh-logo {
  width: 220px;
  opacity: 0.85;
}


