:root{
  --black:#000000;
  --dark:#222222;
  --white:#ffffff;
  --text:#111111;
  --yellow:#f5b400;
  --font-nav:"Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-head:"Manrope", system-ui, sans-serif;
  --font-body:"Source Sans 3", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

  --content-max:1060px;
}

/* Reset */
*{ box-sizing:border-box; }
body{
  margin:0;
  background:#000;
  color:var(--text);
  font-family:var(--font-body);
  line-height:1.6;
}

/* ================= HEADER ================= */

.site-header{
  padding:18px 16px 10px;
}

.header-inner{
  max-width:var(--content-max);
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

/* Logo schlank */
.logo-image{
  height:54px;
  width:auto;
  display:block;
}

/* ================= NAVIGATION ================= */

.nav{
  flex:1;
  display:flex;
  justify-content:flex-end;
}

.nav-box{
  background:#fff;
  padding:12px 18px;
  display:flex;
  gap:18px;
  flex-wrap:nowrap; /* Desktop bleibt einzeilig */
}

.nav-box a{
  font-family:var(--font-nav);
  font-weight:600;
  font-size:14px;
  color:#000;
  text-decoration:none;
  padding:4px 0;
}

.nav-box a:hover{
  text-decoration:underline;
  text-underline-offset:4px;
}

/* ================= MAIN ================= */

.main{
  padding:10px 16px 30px;
}

.page{
  max-width:var(--content-max);
  margin:0 auto;
}

.content-box{
  background:#fff;
  padding:clamp(22px,3vw,32px);
  border-radius:0 0 18px 0;
}

/* ================= TYPO ================= */

h1,h2,h3{
  font-family:var(--font-head);
  color:#000;
  line-height:1.2;
}

h1{
  margin-bottom:24px;
}

h2{
  margin-top:42px;
  margin-bottom:24px;
  padding-bottom:12px;
  border-bottom:4px solid var(--yellow); /* klare gelbe Linie */
  display:inline-block;
}

h3{
  margin-top:26px;
  margin-bottom:10px;
}

p{
  font-size:18px;
  margin-bottom:18px;
}

/* ================= LINKS (nur Content) ================= */

.content-box a{
  font-weight:600;
  text-decoration:none;
  color:#FDC62D;
}

.content-box a:hover{
  text-decoration:underline;
  text-underline-offset:3px;
}

/* ================= BUTTONS ================= */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px;
  background:#000;
  color:#fff;
  text-decoration:none;
  font-weight:600;
}

.btn:hover{
  background:#222;
}

.btn-ghost{
  background:#fff;
  color:#000;
  border:2px solid #000;
}

.btn-row{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:20px;
}

/* ================= HERO IMAGE ================= */

.hero-image{
  float:right;
  width:42%;
  max-width:520px;
  margin:0 0 28px 48px;
}

.hero-image img{
  width:100%;
  height:auto;
  display:block;
}

@media(max-width:920px){
  .hero-image{
    float:none;
    width:100%;
    margin:0 0 24px 0;
  }
}

/* ================= FOOTER ================= */

.site-footer{
  margin-top:50px;
  padding:24px 16px;
  border-top:1px solid rgba(255,255,255,0.15);
}

.footer-line{
  max-width:var(--content-max);
  margin:0 auto;
  text-align:center;
  color:#fff;
  font-family:var(--font-nav);
  font-size:14px;
}

.footer-line a{
  color:#fff;
  text-decoration:none;
  font-weight:600;
}

.footer-line a:hover{
  text-decoration:underline;
}

/* ================= RESPONSIVE ================= */

@media(max-width:920px){

  .header-inner{
    flex-direction:column;
    align-items:flex-start;
  }

  .nav{
    margin-top:12px;
    justify-content:flex-start;
  }

  .nav-box{
    flex-wrap:wrap; /* nur mobil darf umbrechen */
    gap:14px;
  }

  .logo-image{
    height:50px;
  }

  p{
    font-size:17px;
  }
}