/* HaarLab Safe Standort Landing */

.standort-hero{
  position:relative;
  min-height:560px;
  display:flex;
  align-items:center;
  overflow:hidden;
  background:#08101b;
  color:#fff;
}

.standort-hero-bg{
  position:absolute;
  inset:0;
}

.standort-hero-bg img{
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:.42;
}

.standort-hero:before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(8,16,27,.98),rgba(8,16,27,.72),rgba(8,16,27,.25));
  z-index:1;
}

.standort-hero-content{
  position:relative;
  z-index:2;
  max-width:850px;
}

.standort-hero h1{
  font-size:clamp(42px,6vw,74px);
  line-height:1.04;
  margin:10px 0 18px;
}

.standort-hero p{
  font-size:19px;
  line-height:1.7;
  color:rgba(255,255,255,.82);
  max-width:760px;
}

.standort-content{
  padding:80px 0;
  background:linear-gradient(180deg,#fff,#f7f1e8);
}

.standort-layout{
  display:grid;
  grid-template-columns:minmax(0,1fr) 360px;
  gap:34px;
  align-items:start;
}

.standort-main{
  background:#fff;
  border:1px solid #eadfcd;
  border-radius:30px;
  padding:42px;
  box-shadow:0 24px 70px rgba(0,0,0,.08);
}

.standort-main h2{
  font-size:34px;
  margin:34px 0 14px;
  color:#111827;
}

.standort-main p{
  font-size:18px;
  line-height:1.85;
  color:#273142;
}

.standort-facts{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
  margin:28px 0;
}

.standort-facts div{
  background:#f8f3ea;
  border:1px solid #eadfcd;
  border-radius:18px;
  padding:18px;
}

.standort-facts b{
  display:block;
  color:#b8862b;
  font-size:13px;
  text-transform:uppercase;
  margin-bottom:6px;
}

.standort-facts span{
  color:#111827;
  font-weight:800;
}

.standort-services{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
  margin-top:18px;
}

.standort-service-card{
  border:1px solid #eadfcd;
  background:#fff;
  border-radius:22px;
  padding:18px;
  text-decoration:none;
  color:#111827;
  box-shadow:0 14px 35px rgba(7,18,33,.06);
  transition:.25s ease;
}

.standort-service-card:hover{
  transform:translateY(-4px);
  box-shadow:0 22px 55px rgba(7,18,33,.12);
}

.standort-service-card img{
  width:100%;
  height:150px;
  object-fit:cover;
  border-radius:16px;
  margin-bottom:14px;
}

.standort-service-card h3{
  margin:0 0 8px;
  font-size:20px;
}

.standort-service-card p{
  margin:0 0 12px;
  font-size:14px;
  line-height:1.6;
  color:#536071;
}

.standort-service-card span{
  color:#b8862b;
  font-weight:900;
}

.standort-list{
  padding-left:20px;
}

.standort-list li{
  font-size:17px;
  line-height:1.8;
  color:#273142;
  margin-bottom:6px;
}

.standort-sidebar{
  display:grid;
  gap:18px;
}

.sidebar-card{
  background:white;
  border:1px solid #eadfcd;
  border-radius:26px;
  padding:24px;
  box-shadow:0 20px 55px rgba(0,0,0,.07);
}

.sticky-card{
  position:sticky;
  top:96px;
}

.sidebar-card form{
  display:grid;
  gap:10px;
}

.sidebar-card input{
  width:100%;
  border:1px solid #eadfcd;
  border-radius:14px;
  padding:14px;
  font:inherit;
}

.sidebar-links{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:10px;
}

.sidebar-links a{
  display:block;
  padding:12px 14px;
  background:#f8f3ea;
  border-radius:14px;
  color:#111827;
  font-weight:800;
  text-decoration:none;
}

@media(max-width:980px){
  .standort-layout{
    grid-template-columns:1fr;
  }

  .standort-main{
    padding:28px;
  }

  .sticky-card{
    position:relative;
    top:auto;
  }
}

@media(max-width:640px){
  .standort-facts,
  .standort-services{
    grid-template-columns:1fr;
  }
}
