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

.site-header{
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.header-inner{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  gap: 24px;
}

.logo{
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.logo img{
  height: 52px;
  width: auto;
  display: block;
}

.main-nav{
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav > a,
.dropdown-toggle{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 88px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #1f1f1f;
  font-size: 17px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.25s ease, background 0.25s ease;
}

.main-nav > a:hover,
.dropdown-toggle:hover{
  color: #8c6a2b;
}

/* ================= DROPDOWN DESKTOP BASIS ================= */

.nav-dropdown{
  position: relative;
  display: flex;
  align-items: center;
  height: 88px;
}

/* unsichtbare Hover-Bruecke nur fuer Desktop */
.nav-dropdown::after{
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 18px;
}

.dropdown-menu{
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 240px;
  padding: 12px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    visibility 0.22s ease;
  z-index: 1100;
}

.dropdown-menu a{
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  color: #1f1f1f;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.35;
  transition: background 0.2s ease, color 0.2s ease;
}

.dropdown-menu a:hover{
  background: rgba(140,106,43,0.08);
  color: #8c6a2b;
}

/* Hover-Logik NUR fuer Desktop */
@media (min-width: 921px){
  .nav-dropdown:hover .dropdown-menu,
  .nav-dropdown:focus-within .dropdown-menu{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
}

/* ================= BURGER ================= */

.burger{
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.burger span{
  display: block;
  width: 26px;
  height: 2px;
  margin: 5px auto;
  background: #1f1f1f;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* ================= MOBILE ================= */

@media (max-width: 920px){

  .header-inner{
    min-height: 78px;
  }

  .logo img{
    height: 46px;
  }

  .burger{
    display: block;
  }

  .main-nav{
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 16px;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
    transition:
      opacity 0.25s ease,
      transform 0.25s ease,
      visibility 0.25s ease;
    z-index: 1001;
  }

  .main-nav.active{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav > a,
  .dropdown-toggle{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: auto;
    padding: 14px 12px;
    border: 0;
    border-radius: 12px;
    background: transparent;
    color: #1f1f1f;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    text-align: left;
    cursor: pointer;
  }

  .main-nav > a:hover,
  .dropdown-toggle:hover{
    color: #1f1f1f;
    background: rgba(140,106,43,0.06);
  }

  .nav-dropdown{
    display: block;
    width: 100%;
    height: auto;
  }

  .nav-dropdown::after{
    display: none;
  }

  .dropdown-menu{
    display: none;
    position: static;
    top: auto;
    left: auto;
    transform: none;
    min-width: 100%;
    margin-top: 4px;
    padding: 6px 0 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: none;
  }

  .nav-dropdown.open .dropdown-menu{
    display: block;
  }

  .dropdown-menu a{
    display: block;
    padding: 12px 12px 12px 26px;
    border-radius: 10px;
    color: #1f1f1f;
    text-decoration: none;
    font-size: 16px;
    line-height: 1.4;
  }

  .dropdown-menu a:hover{
    background: rgba(140,106,43,0.08);
    color: #8c6a2b;
  }
}

/* ================= MOBILE ================= */

@media (max-width:900px){

.main-nav{
  position:absolute;
  top:70px;
  left:0;
  right:0;
  background:#fff;
  flex-direction:column;
  padding:20px;
  display:none;
}

.main-nav.active{
  display:flex;
}

.dropdown-menu{
  position:static;
  box-shadow:none;
}

.burger{
  display:flex;
}

}

/* ================= HERO SLIDER ================= */

.hero-slider{
  position: relative;
  height: 100vh;
  color: #fff;
  overflow: hidden;
}

.hero-slides{
  height: 100%;
}

.hero-slide{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transform: translateX(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero-slide.is-active{
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

/* Background Layer je Slide */
.hero-slide::before{
  content: "";
  position: absolute;
  inset: 0;
  background: var(--bg) center center / cover no-repeat;
  transform: scale(1);
  transition: transform 6s ease;
  will-change: transform;
}

/* Zoom-In Effekt nur auf aktiver Slide */
.hero-slide.is-active::before{
  transform: scale(1.08);
}

.hero-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.20) 0%,
    rgba(0,0,0,0.55) 60%,
    rgba(0,0,0,0.78) 100%
  );
  z-index: 1;
}

/* Content Ebenen */
.hero-header{
  position: absolute;
  top: 30px;
  left: 50px;
  z-index: 3;
}

.logo{ height: 70px; }

.hero-content{
  position: relative;
  z-index: 3;
  max-width: 900px;
  margin-left: 50px;
}

.hero-pretitle{
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.9;
}

.hero-content h1{
  font-size: 56px;
  line-height: 1.1;
  margin: 15px 0;
  font-weight: 900;
}

.hero-subline{
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.95;
}

/* Nav */
.hero-nav{
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(10px);
}

.hero-arrow{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease;
}

.hero-arrow:hover{
  transform: translateY(-1px);
  border-color: rgba(202,167,46,0.55);
}

.hero-dots{
  display: flex;
  gap: 8px;
  align-items: center;
}

.hero-dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.35);
  border: 0;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}

.hero-dot.is-active{
  background: #ffe37a;
  transform: scale(1.2);
}

/* Mobile */
@media (max-width: 768px){
  .hero-header{ left: 25px; }
  .hero-content{ margin-left: 25px; margin-right: 25px; }
  .hero-content h1{ font-size: 36px; }
  .hero-nav{ bottom: 18px; }
}


/* ================= SERVICES ================= */

.container{
  width: min(1100px, 92%);
  margin: 0 auto;
}

.services{
  padding: 90px 0;
  background: #070707;
  color: #fff;
}

.section-title{
  font-size: 38px;
  margin: 0 0 10px;
  font-weight: 800;
}

.section-subtitle{
  color: rgba(255,255,255,0.75);
  max-width: 720px;
  margin: 0 0 35px;
  line-height: 1.6;
}

.service-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card{
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 18px 60px rgba(0,0,0,0.35);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.service-card:hover{
  transform: translateY(-4px);
  border-color: rgba(202,167,46,0.55);
}

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

.service-card p{
  margin: 0 0 18px;
  color: rgba(255,255,255,0.78);
  line-height: 1.55;
}

.service-link{
  color: #ffe37a;
  text-decoration: none;
  font-weight: 700;
}

.service-link:hover{
  text-decoration: underline;
}

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

@media (max-width: 980px){
  .service-grid{
    grid-template-columns: 1fr;
  }
  .section-title{
    font-size: 30px;
  }
}


/* ================= REFERENCE ================= */

.reference{
  padding: 90px 0;
  background: #0d0d0d;
  color: #fff;
}

.ref-grid{
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 28px;
  align-items: center;
}

.ref-media{
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 18px 60px rgba(0,0,0,0.35);
}

.ref-img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.ref-label{
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(202,167,46,0.12);
  border: 1px solid rgba(202,167,46,0.35);
  color: #ffe37a;
  font-weight: 700;
  margin: 0 0 14px;
}

.ref-title{
  font-size: 40px;
  line-height: 1.15;
  margin: 0 0 14px;
  font-weight: 800;
}

.ref-text{
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
  margin: 0 0 18px;
  max-width: 560px;
}

.ref-list{
  margin: 0 0 26px;
  padding-left: 18px;
  color: rgba(255,255,255,0.78);
  line-height: 1.8;
}

.ref-actions{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

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

@media (max-width: 980px){
  .ref-grid{
    grid-template-columns: 1fr;
  }
  .ref-title{
    font-size: 30px;
  }
}


/* ================= WHY ================= */

.why{
  padding: 90px 0;
  background: #070707;
  color: #fff;
}

.why-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.why-card{
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 18px 60px rgba(0,0,0,0.30);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.why-card:hover{
  transform: translateY(-4px);
  border-color: rgba(202,167,46,0.55);
}

.why-card h3{
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 800;
}

.why-card p{
  margin: 0;
  color: rgba(255,255,255,0.78);
  line-height: 1.55;
}

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

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


/* ================= TIMELINE ================= */

.timeline{
  padding: 90px 0;
  background: #0d0d0d;
  color: #fff;
}

.timeline-wrap{
  position: relative;
  margin-top: 30px;
  padding-left: 26px;
}


.timeline-wrap::before{
  content: "";
  position: absolute;
  left: 10px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: rgba(255,255,255,0.12);
}

.tl-item{
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  padding: 10px 0 18px;
}

.tl-dot{
  position: absolute;
  left: 3px;
  top: 18px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #caa72e;
  box-shadow: 0 0 0 6px rgba(202,167,46,0.18);
}

.tl-card{
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  padding: 20px 22px;
  box-shadow: 0 18px 60px rgba(0,0,0,0.28);
}

.tl-step{
  margin: 0 0 6px;
  font-weight: 800;
  color: #ffe37a;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 12px;
}

.tl-card h3{
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 800;
}

.tl-card p{
  margin: 0;
  color: rgba(255,255,255,0.78);
  line-height: 1.55;
}

.timeline-cta{
  margin-top: 26px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.timeline{
  position: relative;
  padding: 120px 0;
  background: url("img/hero.jpg") center center / cover no-repeat fixed;
  color: #fff;
  overflow: hidden;
}

.timeline::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.85) 100%
  );
  z-index: 0;
}

.timeline > .container{
  position: relative;
  z-index: 1;
}


/* ================= SMART CTA ================= */

.smart-cta{
  padding: 90px 0;
  background: #070707;
  color: #fff;
}

.cta-title{
  font-size: 42px;
  margin: 10px 0 12px;
  font-weight: 900;
}

.smart-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.smart-card{
  text-align: left;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  padding: 18px;
  color: #fff;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease;
}

.smart-card:hover{
  transform: translateY(-3px);
  border-color: rgba(202,167,46,0.55);
}

.smart-card.is-active{
  border-color: rgba(202,167,46,0.80);
  box-shadow: 0 18px 60px rgba(0,0,0,0.35);
}

.smart-card h3{ margin: 0 0 8px; font-size: 18px; font-weight: 900; }
.smart-card p{ margin: 0; color: rgba(255,255,255,0.75); line-height: 1.5; }

.smart-panel{
  margin-top: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  padding: 22px;
}

.flow{ display: none; }
.flow.is-visible{ display: block; }

.q-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 12px;
}

.q-item label{
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffe37a;
  font-weight: 800;
}

.q-item input,
.q-item select,
.q-item textarea{
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.9);
  outline: none;
}

.q-item textarea{ resize: vertical; }

.contact-mini{
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.10);
}

.contact-mini h3{
  margin: 0;
  font-size: 18px;
  font-weight: 900;
}

.form-note{
  margin: 10px 0 0;
  color: rgba(255,255,255,0.60);
  font-size: 13px;
}

@media (max-width: 980px){
  .smart-grid{ grid-template-columns: 1fr; }
  .q-grid{ grid-template-columns: 1fr; }
  .cta-title{ font-size: 32px; }
}

/* ================= CONTACT  ================= */

.contact{
  padding: 100px 0;
  background: #0a0a0a;
  color: #fff;
}

.contact-grid{
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 28px;
  align-items: start;
}

.contact-left{
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 18px 60px rgba(0,0,0,0.35);
}

.contact-logo{
  height: 54px;
  margin-bottom: 16px;
}

.contact-left h2{
  margin: 0 0 10px;
  font-size: 34px;
  font-weight: 900;
}

.contact-sub{
  margin: 0 0 20px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  max-width: 520px;
}

.contact-data{
  display: grid;
  gap: 14px;
  margin-bottom: 22px;
}

.contact-row{
  padding: 14px 14px;
  border-radius: 14px;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.10);
}

.contact-label{
  margin: 0 0 6px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffe37a;
  font-weight: 800;
}

.contact-value{
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: rgba(255,255,255,0.88);
  line-height: 1.4;
}

.contact-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-right{
  display: grid;
  gap: 14px;
}

.contact-kicker{
  margin: 0;
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(202,167,46,0.12);
  border: 1px solid rgba(202,167,46,0.35);
  color: #ffe37a;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 12px;
  width: fit-content;
}

.map-box{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 18px 60px rgba(0,0,0,0.35);
  background: rgba(255,255,255,0.04);
}

.map-box iframe{
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
}

.contact-photos{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-photo{
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 18px 60px rgba(0,0,0,0.30);
}

/* Responsive */
@media (max-width: 980px){
  .contact-grid{
    grid-template-columns: 1fr;
  }
  .map-box iframe{
    height: 320px;
  }
}

@media (max-width: 600px){
  .contact-photos{
    grid-template-columns: 1fr;
  }
  .contact-photo{
    height: 200px;
  }
}


/* ================= FAQ ================= */

.faq{
  padding: 90px 0;
  background: #0d0d0d; 
  color: #fff;
}

.faq-wrap{
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.faq-item{
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  box-shadow: 0 18px 60px rgba(0,0,0,0.30);
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.faq-item:hover{
  border-color: rgba(202,167,46,0.40);
  transform: translateY(-2px);
}

.faq-q{
  width: 100%;
  background: transparent;
  border: 0;
  color: #fff;
  cursor: pointer;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  font-weight: 900;
  font-size: 16px;
  line-height: 1.35;
}

.faq-q:focus-visible{
  outline: 2px solid rgba(255,227,122,0.65);
  outline-offset: 3px;
  border-radius: 14px;
}

.faq-icon{
  width: 18px;
  height: 18px;
  position: relative;
  flex: 0 0 18px;
  opacity: 0.95;
}

.faq-icon::before,
.faq-icon::after{
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 18px;
  height: 2px;
  background: rgba(255,227,122,0.95);
  border-radius: 99px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.faq-icon::after{
  transform: rotate(90deg);
}

.faq-item.is-open .faq-icon::after{
  transform: rotate(90deg) scaleX(0);
  opacity: 0;
}

.faq-a{
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}

.faq-a-inner{
  padding: 0 20px 18px;
  color: rgba(255,255,255,0.78);
  line-height: 1.65;
  max-width: 900px;
}

.faq-item.is-open{
  border-color: rgba(202,167,46,0.60);
}

.faq-item.is-open .faq-q{
  color: #ffe37a;
}

.faq-cta{
  margin-top: 10px;
}

.faq-cta-box{
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  padding: 22px;
}

.faq-cta-title{
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 900;
  color: #ffe37a;
}

.faq-cta-text{
  margin: 0 0 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

.btn{
  display: inline-block;
  padding: 12px 16px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 900;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: #fff;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.btn:hover{
  transform: translateY(-2px);
  border-color: rgba(202,167,46,0.55);
}

.btn-gold{
  background: rgba(202,167,46,0.14);
  border-color: rgba(202,167,46,0.35);
  color: #ffe37a;
}

.btn-gold:hover{
  background: rgba(202,167,46,0.18);
  border-color: rgba(202,167,46,0.60);
}

/* Mobile */
@media (max-width: 768px){
  .faq-q{
    padding: 16px 16px;
    font-size: 15px;
  }
  .faq-a-inner{
    padding: 0 16px 16px;
  }
}

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

.footer{
  background: #070707;
  color: #fff;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 60px;
}

.footer-grid{
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 26px;
  padding-bottom: 40px;
}

.footer-col h4{
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
}

.footer-logo{
  height: 56px;
  margin-bottom: 10px;
}

.footer-slogan{
  margin: 0;
  color: rgba(255,255,255,0.72);
  line-height: 1.55;
  max-width: 260px;
}

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

.footer-list a{
  color: rgba(255,255,255,0.70);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-list a:hover{
  color: #ffe37a;
}

.footer-social{
  display: grid;
  gap: 10px;
  max-width: 260px;
}

.social-btn{
  display: inline-block;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.80);
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.social-btn:hover{
  transform: translateY(-2px);
  border-color: rgba(202,167,46,0.55);
  color: #ffe37a;
}

.footer-bottom{
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
  background: #060606;
}

.footer-bottom-inner{
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.60);
  font-size: 13px;
}

/* Responsive */
@media (max-width: 980px){
  .footer-grid{
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px){
  .footer-grid{
    grid-template-columns: 1fr;
  }
}



.project-hero{
      position: relative;
      min-height: 78vh;
      display: flex;
      align-items: flex-end;
      color: #fff;
      background:
        linear-gradient(180deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.55) 55%, rgba(0,0,0,0.88) 100%),
        url('img/referenz_hauweg10.jpg') center center / cover no-repeat;
      overflow: hidden;
    }

    .project-hero-inner{
      position: relative;
      z-index: 1;
      width: min(1100px, 92%);
      margin: 0 auto;
      padding: 150px 0 90px;
    }

    .project-kicker{
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 8px 14px;
      border-radius: 999px;
      background: rgba(202,167,46,0.16);
      border: 1px solid rgba(202,167,46,0.35);
      color: #ffe37a;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 20px;
    }

    .project-hero h1{
      margin: 0 0 18px;
      font-size: clamp(38px, 6vw, 68px);
      line-height: 1.04;
      font-weight: 900;
      max-width: 820px;
    }

    .project-lead{
      max-width: 780px;
      font-size: 18px;
      line-height: 1.7;
      color: rgba(255,255,255,0.88);
      margin: 0 0 28px;
    }

    .project-hero-actions,
    .project-actions{
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
    }

    .btn{
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 52px;
      padding: 0 22px;
      border-radius: 999px;
      text-decoration: none;
      font-weight: 800;
      transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
    }

    .btn:hover{ transform: translateY(-2px); }

    .btn-primary{
      background: #caa72e;
      color: #111;
      border: 1px solid #caa72e;
    }

    .btn-outline{
      color: #fff;
      border: 1px solid rgba(255,255,255,0.18);
      background: rgba(255,255,255,0.04);
      backdrop-filter: blur(10px);
    }

    .project-facts{
      padding: 0 0 90px;
      background: #0b0b0b;
      color: #fff;
    }

    .facts-grid{
      width: min(1100px, 92%);
      margin: -48px auto 0;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      position: relative;
      z-index: 2;
    }

    .fact-card{
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.10);
      border-radius: 20px;
      padding: 22px;
      box-shadow: 0 20px 60px rgba(0,0,0,0.35);
    }

    .fact-label{
      display: block;
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: #ffe37a;
      font-weight: 800;
      margin-bottom: 10px;
    }

    .fact-value{
      display: block;
      font-size: 22px;
      line-height: 1.35;
      font-weight: 800;
      color: #fff;
    }

    .project-section{
      padding: 90px 0;
      background: #0b0b0b;
      color: #fff;
    }

    .project-section.alt{ background: #070707; }

    .project-grid{
      width: min(1100px, 92%);
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.08fr 0.92fr;
      gap: 28px;
      align-items: start;
    }

    .project-card,
    .project-image-card,
    .project-plan-card,
    .project-note{
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.10);
      border-radius: 22px;
      box-shadow: 0 18px 60px rgba(0,0,0,0.30);
    }

    .project-card{
      padding: 28px;
    }

    .project-image-card,
    .project-plan-card{
      overflow: hidden;
    }

    .project-image-card img,
    .project-plan-card img{
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .project-subtitle{
      margin: 0 0 14px;
      font-size: 28px;
      line-height: 1.2;
      font-weight: 900;
    }

    .project-card p,
    .project-card li,
    .project-note p{
      color: rgba(255,255,255,0.78);
      line-height: 1.7;
    }

    .project-list{
      margin: 0;
      padding-left: 20px;
    }

    .project-two-col{
      width: min(1100px, 92%);
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }

    .project-gallery{
      width: min(1100px, 92%);
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }

    .project-gallery .project-image-card{
      aspect-ratio: 16 / 10;
    }

    .location-list{
      display: grid;
      gap: 12px;
      margin-top: 20px;
    }

    .location-item{
      padding: 14px 16px;
      border-radius: 16px;
      background: rgba(0,0,0,0.28);
      border: 1px solid rgba(255,255,255,0.08);
    }

    .location-item strong{
      display: block;
      margin-bottom: 4px;
      color: #fff;
    }

    .project-note{
      width: min(1100px, 92%);
      margin: 24px auto 0;
      padding: 20px 22px;
    }

    @media (max-width: 980px){
      .facts-grid,
      .project-grid,
      .project-two-col,
      .project-gallery{
        grid-template-columns: 1fr;
      }

      .project-hero{
        min-height: 72vh;
      }

      .facts-grid{
        margin-top: -34px;
      }
    }
    .project-grid {
  width: min(900px, 92%);
  margin: 0 auto;
  grid-template-columns: 1fr; /* EINSPALTIG → dadurch mittig */
  justify-content: center;
}

.project-card {
  max-width: 750px;
  margin: 0 auto;
}

.ref-link {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(202,167,46,0.15);
  border: 1px solid rgba(202,167,46,0.5);
  color: #ffe37a;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
}

.ref-link:hover {
  background: #caa72e;
  color: #111;
  border-color: #caa72e;
  transform: translateY(-2px);
}

.project-card {
  padding: 40px;
}