:root{
  --bg: #ffffff;
  --text: #2b2b2b;
  --muted: #6f7a83;
  --accent: #2d7fbf;
  --light: #f6fbfe;
  --maxw: 1280px;
  --gap: 56px;
}
/* Optional: Eigene Webfont lokal einbinden
@font-face{
  font-family: 'YourWebFont';
  src: url('fonts/YourWebFont.woff2') format('woff2');
  font-weight: 300 800;
  font-style: normal;
  font-display: swap;
}
*/
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', 'Liberation Sans', sans-serif;
  line-height:1.6;
}

/* Hauptlayout: zweispaltig, links Bild – rechts Text */
.layout{
  display:grid;
  grid-template-columns: 1.1fr 1fr; /* etwas breitere linke Spalte wie im Screenshot */
  min-height:100vh;
  max-width:var(--maxw);
  margin:0 auto;
  gap:var(--gap);
  padding:40px 24px 24px;
}

.hero{
  margin:0;
  display:flex;
  align-items:flex-start; /* Bild startet unten, damit oben ‘Freiraum’ bleibt */
  justify-content:flex-start;
  border-radius:12px;
  overflow:hidden;
  background:#f2f5f7;
}

.hero img{
  width:100%;
  height:500px;
  object-fit:cover;
  object-position:center;
  display:block;
}

/* Rechte Spalte */
.content{display:flex; flex-direction:column; gap:48px}
header h1{
  margin:0 0 12px 0;
  font-size:42px;
  letter-spacing:1px;
  line-height:1.15;
  font-weight:700;
}
header h1 .thin{font-weight:300}
.contact .label{color:var(--muted); margin:0 0 4px 0}
.contact a{color:var(--accent); text-decoration:none}
.contact a:hover{text-decoration:underline}

/* Info-Box mittig mit leichtem Hintergrund */
.info-box{
  margin-left:min(8vw, 120px);
  padding:28px 28px 16px;
  background: linear-gradient(#f9fdff, #f4fbff);
  border-radius:10px;
  border:1px solid #e6f0f7;
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}
.info-box h2{margin:0 0 6px 0; font-size:16px; letter-spacing:0.3px}
.info-box .sub{margin:0 0 18px 0; color:var(--muted)}
.info-box h3{margin:0 0 8px 0; font-size:15px; letter-spacing:0.3px}

.site-footer{
  margin-top:auto;
  padding-top:18px;
  border-top:1px solid #dfe7ed;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  color:var(--muted);
  font-size:14px;
}
.site-footer .legal a{color:inherit; text-decoration:none}
.site-footer .legal a:hover{color:var(--accent)}

/* Responsive: unter 900px stapeln */
@media (max-width: 900px){
  .layout{
    grid-template-columns: 1fr;
    gap:24px;
    padding:16px;
  }
  .hero{min-height: fortyvh; min-height: 40vh;}
  .info-box{margin-left:0}
  header h1{font-size:34px}
}
