/* ---------- Base ---------- */
:root{
  --ink: #123a4f;          /* dunkles Blau (Text/Nummer) */
  --navy: #0f3a52;         /* linke Fläche */
  --sand: #efe6df;         /* rechte Fläche */
  --bg: #f3f3f3;           /* hero background (fallback) */
  --muted: rgba(18,58,79,.55);
  --max: 100%;
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }
body{
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing:antialiased;
  font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  font-smooth:always;
  font-kerning: normal;
}

strong{
  font-weight:800;
}

.page{
  max-width: var(--max);
  margin: 0 auto;
  min-height: 100vh;
  display:grid;
}

/* ---------- HERO ---------- */
.hero{
  position: relative;
  height: 66.66666vh;
  min-height:560px;
  background: var(--bg);

  background-image: url("hero.jpg");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero__top{
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: clamp(28px, 3vw, 56px) clamp(28px, 4vw, 72px);
}

.brand{
  display: inline-flex;
  text-decoration: none;
}
.brand__logo{
  width: clamp(180px, 22vw, 420px);
  height: auto;
  display: block;
}

/* "Website im Aufbau" oben rechts */
.status{
  font-size: clamp(16px, 1.4vw, 22px);
  font-weight: 500;
  color: var(--ink);
  opacity: .9;
  padding-top: 6px;
}

/* großes "dr" Wasserzeichen unten links */
.hero__watermark{
  position: absolute;
  left: 9%;
  bottom: 0px;
  transform:translateY(25%);
  z-index: 1;

  width:50vw;
  height:auto;
  user-select: none;
  pointer-events: none;
}

.hero__watermark svg{
  width:100%;
  height:auto;
  display:block;
}

/* ---------- Bottom 2 columns ---------- */
.bottom{
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 33.33333vh;
}

.bottom__col{
  padding: clamp(26px, 4vw, 64px);
}

.bottom__col--left{
  background: var(--navy);
  color: rgba(255,255,255,0.75);
}

.bottom__col--right{
  background: var(--sand);
  color: var(--ink);
}

/* Left column */
.bottom__title{
  margin: 0 0 22px 0;
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: 800;
  color: rgba(255,255,255,0.55);
}

.services{
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.35;
  font-weight:400;
}

.services li{
  margin: 4px 0;
}

/* Right column / contact */
.contact{
  max-width: 520px;
}

.contact p{
  margin: 0 0 22px 0;
}

.contact__names{
  font-size: clamp(16px, 1.6vw, 24px);
  color: var(--ink);
  line-height:130%;
}

.contact__address{
  font-size: clamp(18px, 1.6vw, 24px);
  color: var(--ink);
}

.contact__phone{
  margin-top: 8px;
}

.phone{
  display: inline-block;
  font-size: clamp(34px, 3.2vw, 54px);
  font-weight: 400;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.phone:hover{ text-decoration: underline; }

.email{
  font-size: clamp(16px, 1.4vw, 20px);
  color: var(--ink);
  text-decoration: none;
}

.email:hover{ text-decoration: underline; }

/* ---------- Responsive ---------- */
@media (max-width: 900px){

  .bottom{
    grid-template-columns: 1fr;
    min-height:auto;
  }

  .hero{
    height:auto;
  }

  .bottom__col--left{
    height:auto;
  }

  .bottom__col--right{
    height:100%;
  }


}

@media (max-width: 620px){

  .hero{
    min-height: 320px;
  }

  .hero__watermark{
    width:50vw;
  }

  .hero__top{
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .status{
    padding-top: 0;
  }
}
