:root{
  --container: 1100px;
  --teal: #0a8f96;
  --orange: #f2a400;
  --line: #e2e8f0;
  --shadow: 0 18px 50px rgba(2, 6, 23, .18);
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }
body{
  padding-top: 72px;
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: #fff;
  color: #0f172a;
}
img{ display:block; max-width:100%; }
a{ color: inherit; text-decoration: none; }

.container{
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

/* HEADER */
.site-header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
  z-index: 99999;
}
.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}
.brand-logo{ height: 77px; width: auto; }

.main-nav{
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
  justify-content: center;
}
.nav-link{
  font-weight: 800;
  letter-spacing: .04em;
  font-size: 13px;
  padding: 8px 10px;
  color: #0b1220;
}
.nav-link.is-active{
  border-bottom: 3px solid var(--orange);
  padding-bottom: 10px;
}

.social{
  display: flex;
  gap: 10px;
  align-items: center;
}
.social-link{
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
}
.social-link img{ width: 22px; height: 22px; }

/* Kontaktbereich */
.contact-page{
  background: #fff;              /* NEU: Hintergrund weiss */
  min-height: calc(100vh - 73px);
  padding: 46px 0 70px;
}

/* (bleibt drin, auch wenn du es aktuell nicht nutzt) */
.contact-inner{
  display: grid;
  place-items: center;
  gap: 22px;
}

/* Du nutzt im HTML .contact (nicht .contact-inner) */
.contact{
  margin-top: 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #0f172a;
}

.contact-image{
  display: block;
  margin: 0 auto 10px;
  height: 77px;
  max-width: auto;
  margin-top: 16px;
}

/* H3 */
.contact-title{
  margin-bottom: 24px;
  margin: 0 0 6px;
  color: #0b1220;
  font-weight: 900;
  font-size: 40px;
  letter-spacing: .06em;
}

/* NEU: H4 etwas kleiner als H3 */
.contact h4{
  margin: 0 0 10px;
  font-size: 28px;
  font-weight: 800;
  color: #0b1220;
  opacity: .9;
}

/* Text */
.contact-text{
  margin: 0;
  font-size: 20px;
  line-height: 1.6;
  color: #64748b;
}

.contact-text a{
  color: var(--teal);
  font-weight: 800;
}

/* (Form-Styles bleiben drin, falls du später wieder ein Formular nutzt) */
.contact-form{
  width: min(520px, 100%);
  display: grid;
  gap: 14px;
}
p{
  margin-bottom: 16px;
}

.field{
  display: grid;
  gap: 6px;
}
.label{
  color: rgba(255,255,255,.9);
  font-size: 12px;
  font-weight: 700;
}

textarea, input{
  width: 100%;
  border: none;
  outline: none;
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 12px 14px;
  font-size: 14px;
}

textarea{
  min-height: 150px;
  resize: vertical;
}

.send-btn{
  margin: 8px auto 0;
  height: 40px;
  padding: 0 34px;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,.45);
  background: transparent;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}
.send-btn:hover{
  background: rgba(255,255,255,.10);
}

/* FOOTER SHARE (unveraendert lassen) */
.site-footer{
  background: #ecfeff;
  border-top: 1px solid rgba(226,232,240,.7);
  padding: 40px 0 28px;
}
.footer-inner{
  display: grid;
  place-items: center;
  gap: 14px;
}
.footer-title{
  margin: 0;
  text-align: center;
  color: var(--teal-dark);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.25;
}
.footer-social{
  display: flex;
  gap: 10px;
  align-items: center;
}
.footer-social-link{
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: #0b7e83;
  display: grid;
  place-items: center;
}
.footer-social-link img{
  width: 16px;
  height: 16px;
  filter: brightness(10);
}

.footer-links{
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  color: rgba(15, 23, 42, .65);
}
.footer-links a:hover{
  color: rgba(15, 23, 42, .9);
}

@media (max-width: 920px){
  .main-nav{ display: none; }
  .contact-title{ font-size: 34px; }
  .contact h4{ font-size: 24px; }
}
