/* ================= LOKALE FONTS ================= */
@font-face {
  font-family: "Barlow";
  src: url("./fonts/barlow-v13-latin-300.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Barlow";
  src: url("./fonts/barlow-v13-latin-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Barlow";
  src: url("./fonts/barlow-v13-latin-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Barlow";
  src: url("./fonts/barlow-v13-latin-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Barlow";
  src: url("./fonts/barlow-v13-latin-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Barlow";
  src: url("./fonts/barlow-v13-latin-800.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* ================= RESET ================= */
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { height: 100%; }
body{
  background: #000;
  color: #fff;
  font-family: "Barlow", Arial, sans-serif;

}
.barlow-thin {
  font-family: "Barlow", Arial, sans-serif;
  font-weight: 100;
  font-style: normal;
}

.barlow-extralight {
  font-family: "Barlow", Arial, sans-serif;
  font-weight: 200;
  font-style: normal;
}

.barlow-light {
  font-family: "Barlow", Arial, sans-serif;
  font-weight: 300;
  font-style: normal;
}

.barlow-regular {
  font-family: "Barlow", Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
}

.barlow-medium {
  font-family: "Barlow", Arial, sans-serif;
  font-weight: 500;
  font-style: normal;
}

.barlow-semibold {
  font-family: "Barlow", Arial, sans-serif;
  font-weight: 600;
  font-style: normal;
}

.barlow-bold {
  font-family: "Barlow", Arial, sans-serif;
  font-weight: 700;
  font-style: normal;
}

.barlow-extrabold {
  font-family: "Barlow", Arial, sans-serif;
  font-weight: 800;
  font-style: normal;
}

.barlow-black {
  font-family: "Barlow", Arial, sans-serif;
  font-weight: 900;
  font-style: normal;
}

.barlow-thin-italic {
  font-family: "Barlow", Arial, sans-serif;
  font-weight: 100;
  font-style: italic;
}

.barlow-extralight-italic {
  font-family: "Barlow", Arial, sans-serif;
  font-weight: 200;
  font-style: italic;
}

.barlow-light-italic {
  font-family: "Barlow", Arial, sans-serif;
  font-weight: 300;
  font-style: italic;
}

.barlow-regular-italic {
  font-family: "Barlow", Arial, sans-serif;
  font-weight: 400;
  font-style: italic;
}

.barlow-medium-italic {
  font-family: "Barlow", Arial, sans-serif;
  font-weight: 500;
  font-style: italic;
}

.barlow-semibold-italic {
  font-family: "Barlow", Arial, sans-serif;
  font-weight: 600;
  font-style: italic;
}

.barlow-bold-italic {
  font-family: "Barlow", Arial, sans-serif;
  font-weight: 700;
  font-style: italic;
}

.barlow-extrabold-italic {
  font-family: "Barlow", Arial, sans-serif;
  font-weight: 800;
  font-style: italic;
}

.barlow-black-italic {
  font-family: "Barlow", Arial, sans-serif;
  font-weight: 900;
  font-style: italic;
}




/* ===== RESET ===== */
*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
    font-family: "Barlow", Arial, sans-serif;
}

/* ===== HERO ===== */
.hero{
  position: relative;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  background:#000;
}




/* Slides container */
.hero-slides{
  position:absolute;
  inset:0;
  z-index:0;
}

/* Single slide */
.hero-slide{
  position:absolute;
  inset:0;
  background-size: cover;
  background-position: center;
  opacity:0;
  transform: scale(1.03);          /* minimaler Zoom wie “cinematic” */
  transition: opacity 1.2s ease, transform 6s ease;
}

.hero-slide.is-active{
  opacity:1;
  transform: scale(1.0);
}

/* Optional: leichter dunkler Schleier wie im Screenshot */
.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.28);
  z-index:1;
}

/* ===== TOP LEFT ICONS ===== */
.hero-social{
  position:absolute;
  top: 26px;
  left: 26px;
  z-index: 3;
  display:flex;
   transform: scale(1.08);
  gap: 12px;
  
}



.hero-social__link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

.hero-social__link img{
  width: 34px;
  height: 34px;
  object-fit: contain;
  display:block;
  /* falls deine Icons orange sind, passt’s direkt */
}

/* ===== FOREGROUND CONTENT ===== */
.hero-content{
  position: relative;
  z-index: 2;
  height: 100%;
  width: min(1300px, 94vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 2px 1fr;
  align-items: center;
}

/* Logo links groß */
.hero-logo{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  padding-right: 60px;
}

.hero-logo img{
  width: min(520px, 44vw);
  max-width: 560px;
  height: auto;
  display:block;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,.35));
}

/* Vertical line */
.hero-divider{
  width: 2px;
  height: min(70vh, 540px);
  background: rgba(255,255,255,.70);
 position: absolute;
 left: 50%;
 top: 50%;
 transform: translate(-50%, -50%);
 width: 2px;
height: 70vh;
z-index: 3;
pointer-events: none;}

/* Right text */
.hero-text{
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:flex-start;
}

.hero-text__headline{
  font-weight: 300;
  letter-spacing: .08em;
  font-size: clamp(22px, 2.5vw, 38px);
  line-height: 1.25;
  text-shadow: 0 10px 30px rgba(0,0,0,.35);
}

.hero-dot{
  font-weight: 700;
  margin-left: 4px;
}

.hero-cta{
  position: absolute;
  right: 60px;
  bottom: 50px;
  z-index: 3;

  background: #EA674F;
  color: #fff;
  text-decoration: none;

  padding: 14px 26px;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 1px;

  border-radius: 2px;
  transition: all 0.25s ease;
}

/* Hover wie im Bild (leicht heller + lift) */
.hero-cta:hover{
  transform: translateY(-2px);
  background: #EA674F;
}






















/* ===================== PROJECTS ===================== */

/* ===================== PROJEKTE (STATIC) ===================== */

.projects{
  background:#fff;
  padding: 40px 60px 90px;
}

.projects-header{
  display:grid;
  grid-template-columns: 220px 1fr 220px;
  align-items: start;
  margin-bottom: 70px;
}

.projects-logo{
  width: 150px;
  height:auto;
  justify-self: start;
}


.projects-burger{
  justify-self: end;
  width: 62px;
  height: 52px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.projects-burger span{
  display:block;
  width: 42px;
  height: 6px;
  margin: 7px auto;
  border-radius: 999px;
  background:#EA674F;
}

/* 2x2 Grid wie Screenshot */
.projects-grid{
  max-width: 1230px;
  margin: 0 auto;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px 60px;
}








/* Karte */
.project-card h3{
  font-size: 30px;
  font-weight: 800;
  margin: 18px 0 10px 0;
  color:#EA674F;
}

.project-card p{
  font-size: 18px;
  line-height: 1.6;
  color:#333;
  margin:0;
}

/* Bild-Kasten */
.project-media{
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
  border-radius: 1%;
  
}

/* Main Bild */
.project-media .img-main{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
  transition: opacity 0.35s ease;
}

/* Hover: 2 Bilder nebeneinander */
.img-hover-split{
  position:absolute;
  inset:0;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;

  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

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

/* Hover Verhalten */
.project-card:hover .img-hover-split{
  opacity: 1;
  transform: scale(1);
}

.project-card:hover .project-media .img-main{
  opacity: 0;
}

/* Smooth rein beim Scrollen */
.reveal-up{
  opacity: 0;
  transform: translateY(70px);
  transition:
    transform 0.9s cubic-bezier(.22,.61,.36,1),
    opacity 0.9s cubic-bezier(.22,.61,.36,1);
  will-change: transform, opacity;
}

.reveal-up.is-visible{
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 980px){
  .projects{
    padding: 30px 18px 70px;
  }

  .projects-header{
    grid-template-columns: 1fr;
    gap: 18px;
    justify-items: center;
  }

  .projects-logo{ justify-self:center; }
  .projects-burger{ justify-self:center; }

  .projects-grid{
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .project-media{
    height: 52vw;
    min-height: 220px;
  }
}





/* ===============================
   ÜBER HELLE FREUDE
================================ */

/* WICHTIG: Keine Lücke zwischen Header & Bild */
.aboutt-section {
    margin: 0;
    padding: 0;
}

.aboutt-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 90vh; /* Höhe fast Bildschirm */
}

/* RECHTE SEITE – BILD */
.aboutt-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* LINKE SEITE */
.aboutt-left {
    background: #f4f4f4;
    display: flex;
    align-items: center;  /* Vertikal zentriert */
    justify-content: center;
}

/* Inhalt links */
.aboutt-content {
    max-width: 100%;
    margin-top: 80px; /* TEXT etwas tiefer als Bild */
}


.aboutt-content h2 {
  font-size: 90px;
    font-weight: 300;
    letter-spacing: 4px;
    color: #EA674F;
    white-space: nowrap;
    text-align:left;
    padding-left: 120px;
    padding-right: 50px;
}


.aboutt-content h3 {
  font-size: 70px;
    font-weight: 300;
    letter-spacing: 4px;
    color: #EA674F;
    white-space: nowrap;
    text-align:left;
}



.aboutt-content p {
    font-size: 20px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 40px;
    padding-left: 120px;
    padding-right: 120px;
    text-align: justify;
      font-family: "Barlow", Arial, sans-serif;


}



.barlow-thin {
  font-family: "Barlow", Arial, sans-serif;
  font-weight: 100;
  font-style: normal;
}

.barlow-extralight {
  font-family: "Barlow", Arial, sans-serif;
  font-weight: 200;
  font-style: normal;
}

.barlow-light {
  font-family: "Barlow", Arial, sans-serif;
  font-weight: 300;
  font-style: normal;
}

.barlow-regular {
  font-family: "Barlow", Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
}

.barlow-medium {
  font-family: "Barlow", Arial, sans-serif;
  font-weight: 500;
  font-style: normal;
}

.barlow-semibold {
  font-family: "Barlow", Arial, sans-serif;
  font-weight: 600;
  font-style: normal;
}

.barlow-bold {
  font-family: "Barlow", Arial, sans-serif;
  font-weight: 700;
  font-style: normal;
}

.barlow-extrabold {
  font-family: "Barlow", Arial, sans-serif;
  font-weight: 800;
  font-style: normal;
}

.barlow-black {
  font-family: "Barlow", Arial, sans-serif;
  font-weight: 900;
  font-style: normal;
}

.barlow-thin-italic {
  font-family: "Barlow", Arial, sans-serif;
  font-weight: 100;
  font-style: italic;
}

.barlow-extralight-italic {
  font-family: "Barlow", Arial, sans-serif;
  font-weight: 200;
  font-style: italic;
}

.barlow-light-italic {
  font-family: "Barlow", Arial, sans-serif;
  font-weight: 300;
  font-style: italic;
}

.barlow-regular-italic {
  font-family: "Barlow", Arial, sans-serif;
  font-weight: 400;
  font-style: italic;
}

.barlow-medium-italic {
  font-family: "Barlow", Arial, sans-serif;
  font-weight: 500;
  font-style: italic;
}

.barlow-semibold-italic {
  font-family: "Barlow", Arial, sans-serif;
  font-weight: 600;
  font-style: italic;
}

.barlow-bold-italic {
  font-family: "Barlow", Arial, sans-serif;
  font-weight: 700;
  font-style: italic;
}

.barlow-extrabold-italic {
  font-family: "Barlow", Arial, sans-serif;
  font-weight: 800;
  font-style: italic;
}

.barlow-black-italic {
  font-family: "Barlow", Arial, sans-serif;
  font-weight: 900;
  font-style: italic;
}




























/* ==================STUDIO & KOMMUNIKATION ================================ */




/* WICHTIG: Keine Lücke zwischen Header & Bild */
.about-section {
    margin: 0;
    padding: 0;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 90vh; /* Höhe fast Bildschirm */
}

/* RECHTE SEITE – BILD */
.about-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* LINKE SEITE */
.about-left {
    background: #f4f4f4;
    display: flex;
    align-items: center;  /* Vertikal zentriert */
    justify-content: center;
}

/* Inhalt links */
.about-content {
    max-width: 100%;
    margin-top: 80px; /* TEXT etwas tiefer als Bild */
}


.about-content h2 {
  font-size: 50px;
    font-weight: 300;
    letter-spacing: 4px;
    color: #EA674F;
    white-space: nowrap;
    text-align:left;
    padding-left: 120px;
    padding-right: 50px;
}

.aboutt-content h2 {
  font-size: 50px;
    font-weight: 300;
    letter-spacing: 4px;
    color: #EA674F;
    white-space: nowrap;
    text-align:left;
    padding-left: 120px;
    padding-right: 50px;
}
.about-content h3 {
  font-size: 70px;
    font-weight: 300;
    letter-spacing: 4px;
    color: #EA674F;
    white-space: nowrap;
    text-align:left;
}



.about-content p {
    font-size: 20px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 40px;
    padding-left: 120px;
    padding-right: 120px;
    text-align: justify;
      font-family: "Barlow", Arial, sans-serif;


}



.barlow-thin {
  font-family: "Barlow", Arial, sans-serif;
  font-weight: 100;
  font-style: normal;
}

.barlow-extralight {
  font-family: "Barlow", Arial, sans-serif;
  font-weight: 200;
  font-style: normal;
}

.barlow-light {
  font-family: "Barlow", Arial, sans-serif;
  font-weight: 300;
  font-style: normal;
}

.barlow-regular {
  font-family: "Barlow", Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
}

.barlow-medium {
  font-family: "Barlow", Arial, sans-serif;
  font-weight: 500;
  font-style: normal;
}

.barlow-semibold {
  font-family: "Barlow", Arial, sans-serif;
  font-weight: 600;
  font-style: normal;
}

.barlow-bold {
  font-family: "Barlow", Arial, sans-serif;
  font-weight: 700;
  font-style: normal;
}

.barlow-extrabold {
  font-family: "Barlow", Arial, sans-serif;
  font-weight: 800;
  font-style: normal;
}

.barlow-black {
  font-family: "Barlow", Arial, sans-serif;
  font-weight: 900;
  font-style: normal;
}

.barlow-thin-italic {
  font-family: "Barlow", Arial, sans-serif;
  font-weight: 100;
  font-style: italic;
}

.barlow-extralight-italic {
  font-family: "Barlow", Arial, sans-serif;
  font-weight: 200;
  font-style: italic;
}

.barlow-light-italic {
  font-family: "Barlow", Arial, sans-serif;
  font-weight: 300;
  font-style: italic;
}

.barlow-regular-italic {
  font-family: "Barlow", Arial, sans-serif;
  font-weight: 400;
  font-style: italic;
}

.barlow-medium-italic {
  font-family: "Barlow", Arial, sans-serif;
  font-weight: 500;
  font-style: italic;
}

.barlow-semibold-italic {
  font-family: "Barlow", Arial, sans-serif;
  font-weight: 600;
  font-style: italic;
}

.barlow-bold-italic {
  font-family: "Barlow", Arial, sans-serif;
  font-weight: 700;
  font-style: italic;
}

.barlow-extrabold-italic {
  font-family: "Barlow", Arial, sans-serif;
  font-weight: 800;
  font-style: italic;
}

.barlow-black-italic {
  font-family: "Barlow", Arial, sans-serif;
  font-weight: 900;
  font-style: italic;
}









































/* Button */
.about-button {
    display: inline-block;
    padding: 14px 50px;
    border: 2px solid #EA674F;
    color: #EA674F;
    text-decoration: none;
    letter-spacing: 2px;
    font-size: 18px;
    transition: all 0.3s ease;
    margin-bottom: 90px;
    object-position: right;
}



.about-button:hover {
    background: #EA674F;
    color: white;
}

/* Responsive */
@media (max-width: 1000px) {
    .about-container {
        grid-template-columns: 1fr;
    }

    .about-content {
        margin-top: 40px;
        padding: 60px 20px;
    }


  }



/* =========================
   TEAM BEREICH
   ORANGE NUR OBEN, INHALT WEISS
   ========================= */

.team-highlight-section{
  width: 100%;
  background: #fff;
}

/* ORANGER TITELBEREICH */
.team-header{
  background: #EA674F;
  padding: 55px 0 42px;
}

.team-header-inner{
  width: min(1330px, 92%);
  margin: 0 auto;
}

.team-highlight-title{
  margin: 0;
  font-size: 56px;
  font-weight: 300;
  letter-spacing: 2px;
  line-height: 1.1;
  text-transform: uppercase;
  color: #fff;
  padding-left: 44px;
}

/* WEISSER CONTENT */
.team-content{
  background: #fff;
  padding: 55px 0 70px;
}

.team-highlight-wrapper{
max-width: 1230px; 
 margin: 0 auto;
 padding: 0 0;
}

.team-highlight-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.team-highlight-card{
  display: flex;
  flex-direction: column;
}

.team-highlight-image{
  width: 100%;
  aspect-ratio: 1 / 0.76;
  overflow: hidden;
  background: #f2f2f2;
  
}

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

.team-highlight-info{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  padding-top: 18px;
}

.team-highlight-text h3{
  margin: 0 0 8px 0;
  font-size: 38px;
  font-weight: 300;
  line-height: 1.05;
  color: #EA674F;
}

.team-highlight-text p{
  margin: 0;
  font-size: 16px;
  line-height: 1.45;
  color: #444;
}

.team-mail-icon{
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.team-mail-icon img{
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block;
}

.team-mail-icon:hover{
  transform: scale(1.08);
  opacity: 0.9;
}













/* RESPONSIVE */
@media (max-width: 1100px){
  .team-highlight-title{
    font-size: 44px;
  }
}

@media (max-width: 900px){
  .team-header{
    padding: 40px 0 30px;
  }

  .team-content{
    padding: 40px 0 55px;
  }

  .team-highlight-grid{
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .team-highlight-title{
    font-size: 34px;
  }

  .team-highlight-text h3{
    font-size: 30px;
  }
}














/* SECTION */
.contact-section {
    height: 100vh;
    overflow: hidden;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%;
}

/* LINKES FORMULAR */
.contact-left {
    padding: 80px 90px;
    background: #f5f5f5;
}

.contact-left h2 {
    font-size: 60px;
    color: #EA674F;
    font-weight: 300;
    margin-bottom: 60px;
}

.contact-form {
    max-width: 600px;
}

.row {
    display: flex;
    gap: 40px;
    margin-bottom: 35px;
}

.field {
    flex: 1;
}

.field.full {
    margin-bottom: 35px;
}

.field label {
    display: block;
    color: #555;
    font-size: 20px;
    margin-bottom: 10px;
}

.field input,
.field textarea {
    width: 100%;
    border: none;
    border-bottom: 2px solid #EA674F;
    background: transparent;
    font-size: 18px;
    padding: 8px 0;
    outline: none;
}

.field textarea {
    height: 80px;
    resize: none;
}

/* CHECKBOX */
.privacy {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: #666;
    margin: 25px 0;
}

/* BUTTON */
.contact-form button {
    background: #EA674F;
    color: white;
    border: none;
    padding: 15px 45px;
    font-size: 22px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.4s ease;
}

.contact-form button.loading {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    padding: 0;
}

.contact-form button.loading .btn-text {
    opacity: 0;
}

/* RECHTES BILD */
.contact-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =========================
   CONTACT SUCCESS OVERLAY
   ========================= */

   .success-overlay{
    position: fixed;
    inset: 0;
    z-index: 30000;
  
    display: flex;
    align-items: center;
    justify-content: center;
  
    background: rgba(255,255,255,0.86);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.45s ease;
  }
  
  .success-overlay.active{
    opacity: 1;
    pointer-events: auto;
  }
  
  .success-box{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  
    transform: scale(0.88);
    opacity: 0;
    transition: transform 0.45s ease, opacity 0.45s ease;
  }
  
  .success-overlay.active .success-box{
    transform: scale(1);
    opacity: 1;
  }
  
  .success-logo{
    width: 300px;
    max-width: 70vw;
    height: auto;
    display: block;
    margin-bottom: 26px;
  
    animation: successFloat 2.4s ease-in-out infinite;
  }
  
  .success-check{
    font-size: 54px;
    line-height: 1;
    color: #EA674F;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.35s ease 0.45s, transform 0.35s ease 0.45s;
  }
  
  .success-overlay.active .success-check{
    opacity: 1;
    transform: translateY(0);
  }
  
  @keyframes successFloat{
    0%,100%{
      transform: translateY(0);
    }
    50%{
      transform: translateY(-8px);
    }
  }
  
  @media (max-width: 700px){
    .success-logo{
      width: 220px;
    }
  
    .success-check{
      font-size: 44px;
    }
  }
  



























 

/* =========================
   IMPRESSUM MODAL (helle freude Stil)
   ========================= */

.hf-modal{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.hf-modal.is-open{
  display: block;
}

.hf-modal__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(6px);
}

.hf-modal__panel{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -48%);
  width: min(980px, calc(100vw - 44px));
  max-height: 86vh;

  background: rgba(255,255,255,0.93);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 18px;
  box-shadow: 0 22px 60px rgba(0,0,0,0.35);

  overflow: hidden;
  opacity: 0;
  transition: opacity 260ms ease, transform 260ms ease;
  outline: none;
}

.hf-modal.is-open .hf-modal__panel{
  opacity: 1;
  transform: translate(-50%, -50%);
}

.hf-modal__close{
  position: absolute;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.08);
 background: rgb(255, 255, 255);
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
  display: grid;
  place-items: center;
  transition: transform 180ms ease, background 180ms ease;
}

.hf-modal__close:hover{
  transform: scale(1.05);
  background: rgba(255,255,255,0.95);
}

.hf-modal__content{
  padding: 34px 34px 26px;
}

.hf-modal__content h2{
  margin: 0 0 16px 0;
  font-size: 42px;
  font-weight: 300;
  letter-spacing: 0.03em;
  color: #EA674F; /* deine Orange */
}

.hf-modal__text{
  max-height: calc(86vh - 120px);
  overflow: auto;
  padding-right: 10px;
}

.hf-modal__text p{
  margin: 0 0 14px 0;
  color: #2a2a2a;
  font-size: 16px;
  line-height: 1.55;
}

.hf-modal__text h3{
  margin: 18px 0 8px;
  font-size: 18px;
  font-weight: 600;
  color: #2a2a2a;
}

.hf-modal__text h4{
  margin: 14px 0 6px;
  font-size: 16px;
  font-weight: 600;
  color: #2a2a2a;
}

.hf-modal__hr{
  border: none;
  height: 1px;
  background: rgba(0,0,0,0.10);
  margin: 18px 0;
}

.hf-modal__link{
  color: #EA674F;
  text-decoration: none;
  border-bottom: 1px solid rgba(216,115,95,0.45);
}

.hf-modal__link:hover{
  border-bottom-color: #EA674F
}

.hf-modal__small{
  display:block;
  margin-top: 10px;
  font-size: 13px;
  opacity: 0.8;
}

/* optional: Scrollbar schöner */
.hf-modal__text::-webkit-scrollbar{ width: 10px; }
.hf-modal__text::-webkit-scrollbar-thumb{
  background: rgba(0,0,0,0.18);
  border-radius: 99px;
}
.hf-modal__text::-webkit-scrollbar-thumb:hover{
  background: rgba(0,0,0,0.28);
}

@media (max-width: 520px){
  .hf-modal__content{ padding: 26px 18px 18px; }
  .hf-modal__content h2{ font-size: 30px; }
}









































/* =========================
   DATENSCHUTZ MODAL (modern)
   ========================= */

.hf-modal2{
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
}

.hf-modal2.is-open{
  display: block;
}

.hf-modal2__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.55);
  backdrop-filter: blur(10px);
}

/* Panel */
.hf-modal2__panel{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -48%);
  width: min(1040px, calc(100vw - 44px));
  max-height: 88vh;
  overflow: hidden;

  background: rgb(255, 255, 255);
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 22px;
  box-shadow: 0 30px 90px rgba(0,0,0,0.42);

  opacity: 0;
  transition: opacity 260ms ease, transform 260ms ease;
  outline: none;
}

.hf-modal2.is-open .hf-modal2__panel{
  opacity: 1;
  transform: translate(-50%, -50%);
}

/* Header sticky */
.hf-modal2__header{
  position: sticky;
  top: 0;
  z-index: 2;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 22px 26px;

  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.hf-modal2__header h2{
  margin: 0;
  font-size: 34px;
  font-weight: 300;
  letter-spacing: 0.03em;
  color: #EA674F; /* helle freude orange */
}

/* Close button modern */
.hf-modal2__close{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.75);
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
  display: grid;
  place-items: center;
  transition: transform 180ms ease, background 180ms ease;
}

.hf-modal2__close:hover{
  transform: scale(1.06);
  background: rgba(255,255,255,0.98);
}

/* Body */
.hf-modal2__body{
  padding: 18px 26px 26px;
}

.hf-modal2__text{
  max-height: calc(88vh - 90px);
  overflow: auto;
  padding-right: 10px;
}

/* Typo */
.hf-modal2__text p{
  margin: 0 0 14px 0;
  color: #232323;
  font-size: 15.5px;
  line-height: 1.65;
}

.hf-modal2__text h3{
  margin: 22px 0 10px;
  font-size: 17px;
  font-weight: 700;
  color: #222;
}

.hf-modal2__text strong{
  color: #111;
}

.hf-modal2__link{
  color: #EA674F;
  text-decoration: none;
  border-bottom: 1px solid rgba(216,115,95,0.45);
}

.hf-modal2__link:hover{
  border-bottom-color: #EA674F;
}

.hf-modal2__small{
  font-size: 13px;
  opacity: 0.8;
  margin-top: 18px;
}

/* Scrollbar nicer */
.hf-modal2__text::-webkit-scrollbar{ width: 10px; }
.hf-modal2__text::-webkit-scrollbar-thumb{
  background: rgba(0,0,0,0.18);
  border-radius: 999px;
}
.hf-modal2__text::-webkit-scrollbar-thumb:hover{
  background: rgba(0,0,0,0.28);
}

@media (max-width: 520px){
  .hf-modal2__header{ padding: 18px 18px; }
  .hf-modal2__header h2{ font-size: 26px; }
  .hf-modal2__body{ padding: 14px 18px 18px; }
}






:root{
  --hf-orange:#EA674F;
}


/* Standard: weiß (für dunklen Hintergrund / Bilder) */
.burger span{
  background: #fff;
  transition: background 0.25s ease;
}

/* Wenn Hintergrund hell (weiß) → Burger orange */
.burger.is-dark span{
  background: #EA674F;
}




/* ===== Burger Button ===== */
.burger{
  position: fixed;
  top: 22px;
  right: 22px;
  z-index: 12000;
  width: 52px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: grid;
  align-content: center;
  gap: 8px;
}

/* Striche */
.burger span{
  height: 2px;
  width: 100%;
  background: #fff;
  display: block;
  transition: opacity .2s ease, transform .25s ease;
}

/* Wenn Menü offen ist: Burger verschwindet */
.burger.is-hidden span{
  opacity: 0;
  transform: scaleX(0.7);
}

/* ===== Overlay ===== */
.menu-overlay{
  position: fixed;
  inset: 0;
  z-index: 11000;
  pointer-events: none;
  opacity: 0;
  transition: opacity .25s ease;
}

.menu-overlay.is-open{
  opacity: 1;
  pointer-events: auto;
}

/* Klickfläche zum Schließen.
   Wichtig: Der Backdrop liegt bewusst HINTER dem Menüpanel.
   Sonst überlagert er die Navigationslinks und Klicks landen auf dem Schließen-Button. */
.menu-backdrop{
  position: absolute;
  inset: 0;
  z-index: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

/* ===== Orange Fläche NUR rechte Hälfte ===== */
.menu-blob{
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  width: 50vw;
  height: 100vh;
  background: var(--hf-orange);

  transform: translateX(100%);
  transition: transform .65s cubic-bezier(.2,.9,.2,1);
  will-change: transform;
}

.menu-overlay.is-open .menu-blob{
  transform: translateX(0);
}

.menu-overlay.is-closing .menu-blob{
  transform: translateX(100%);
}

/* ===== Menü Inhalt nur in rechter Hälfte ===== */
.menu-panel{
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  width: 50vw;
  height: 100vh;

  display: grid;
  place-items: center;
  text-align: center;

  opacity: 0;
  transform: translateY(10px);
  transition: opacity .25s ease .2s, transform .25s ease .2s;
  pointer-events: none;
}

.menu-overlay.is-open .menu-panel{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* ===== X Button ===== */
.menu-close{
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 12001;
  background: none;
  border-radius: 0;
  border: none;
  color: #fff;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transform: scale(.95);
  transition: opacity .2s ease, transform .2s ease;
}

.menu-overlay.is-open .menu-close{
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.menu-close:hover{
  transform: scale(1.06);
}

/* ===== Links ===== */
.menu-list{
  position: relative;
  z-index: 3;
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.menu-link{
  position: relative;
  z-index: 4;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-weight: 300;
  letter-spacing: .08em;
  font-size: clamp(26px, 3.1vw, 46px);
  transition: opacity .2s ease, transform .2s ease;
}

.menu-link:hover{
  opacity: .9;
  transform: translateX(4px);
}

/* ===== Mobile ===== */
@media (max-width: 900px){
  .menu-blob,
  .menu-panel{
    width: 100vw;
  }
}

@media (max-width:520px){
  .burger{
    top: 16px;
    right: 16px;
  }

  .menu-close{
    top: 12px;
    right: 12px;
  }
}












/* ===== COOKIE BANNER – kleine Version ===== */

.cookie-banner{
  position: fixed;
  bottom: 30px;
  right: 30px;

  width: 600px;          /* vorher 900px */
  max-width: 90vw;

  background: rgba(255,255,255,0.97);
  border: 3px solid #ffffff;

  border-radius: 10px;
  padding: 22px 28px;    /* kleiner */

  box-shadow: 0 30px 80px rgba(0,0,0,0.22);

  z-index: 9999;

  opacity: 0;
  transform: translateY(20px);
  transition: all .4s ease;
  pointer-events: none;
}

.cookie-banner.active{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}


/* HEADER */

.cookie-top{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
}

.cookie-top h3{
  margin: 0;
  font-size: 26px;     /* vorher 42px */
  font-weight: 600;
  color: #EA674F;
}

.cookie-links{
  display: flex;
  gap: 20px;
  padding-top: 5px;
}

.cookie-links a{
  font-size: 14px;
  color: #3c3c3c;
  text-decoration: none;
}

.cookie-links a:hover{
  text-decoration: underline;
}


/* TEXT */

.cookie-text{
  font-size: 14px;    /* vorher 20px */
  line-height: 1.5;
  color: #5a5a5a;
  margin-bottom: 18px;
}


/* BUTTONS */

.cookie-actions{
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.cookie-btn{
  flex: 1;

  background: #EA674F;
  color: #fff;
  border: none;

  padding: 10px 16px;  /* kleiner */
  border-radius: 10px;
  font-size: 14px;

  cursor: pointer;
  transition: .25s ease;
}

.cookie-btn:hover{
  transform: translateY(-2px);
  filter: brightness(0.97);
}










/* ===== PROJEKTE ===== */
.projects-section{
  width: 100%;
  background: #fff;
  padding: 60px 0 80px;
}

.projects-wrapper{
  width: min(1180px, 92%);
  margin: 0 auto;
}

.projects-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 56px 70px;
  align-items: start;
}

.project-card p{
  font-size: 18px;
  line-height: 1.6;
  color:#333;
  margin:0;
}

.project-image{
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  overflow: hidden;
  background: #eee;
}

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

.project-title{
  margin: 18px 0 10px;
  font-size: 34px;
  line-height: 1.05;
  letter-spacing: 0.5px;
  font-weight: 700;
  color: #EA674F;
  text-transform: uppercase;
}

.project-desc{
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  color: #2b2b2b;
  max-width: 560px;
}

/* ===== BUTTON wie Screenshot ===== */
.projects-button-row{
  margin-top: 5px;

}

.projects-more-btn{
  width: 47%;
  height: 68px;
  border: 2px solid #EA674F;
  background: transparent;
  color: #EA674F;
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.projects-more-btn:hover{
  background: #EA674F;
  color: #fff;
}

.projects-more-btn:active{
  transform: scale(0.99);
}

.projects-more-btn:disabled{
  opacity: 0.55;
  cursor: default;
}

/* responsive */
@media (max-width: 900px){
  .projects-grid{
    grid-template-columns: 1fr;
    gap: 46px;
  }
  .project-title{
    font-size: 30px;
  }
  .project-desc{
    font-size: 17px;
  }
  .projects-more-btn{
    height: 62px;
  }
}


















:root{
  --hf-orange:#EA674F;
  --hf-text:#2b2b2b;
}

/* ===== Modal ===== */
.hf-modal{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.hf-modal.is-open{
  display: flex;
}

.hf-modal__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(2px);
}

.hf-modal__dialog{
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  max-height: calc(100vh - 32px);
  max-height: calc(100dvh - 32px);
  margin: 0;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 2px solid rgb(255, 255, 255);
  border-radius: 18px;
  box-shadow: 0 18px 60px rgba(0,0,0,0.28);
  overflow: hidden;

  transform: translateY(8px);
  opacity: 0;
  animation: hfModalIn 260ms ease forwards;
}

@keyframes hfModalIn{
  to { transform: translateY(0); opacity: 1; }
}

.hf-modal__close{
  position: absolute;
  top: 14px;
  right: 16px;
  width: 38px;
  height: 38px;
 
  background: rgba(146, 36, 17, 0.12);
  color: var(--hf-orange);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.hf-modal__close:hover{
  background: rgba(213,111,94,0.18);
}

.hf-modal__header{
  flex: 0 0 auto;
  padding: 26px 28px 14px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.hf-modal__title{
  margin: 0;
  font-size: clamp(26px, 3vw, 42px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hf-orange);
}

.hf-modal__subtitle{
  margin-top: 8px;
  color: #666;
  font-size: 15px;
}

.hf-modal__content{
  flex: 1 1 auto;
  min-height: 0;
  padding: 18px 28px 26px;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
}






/* ===== Referenzen Layout ===== */
.refs-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 26px;
}

.refs-block{
  border: 1px solid rgba(213,111,94,0.22);
  border-radius: 14px;
  padding: 16px 16px 14px;
  background: linear-gradient(#fff, #fff) padding-box,
              linear-gradient(180deg, rgba(213,111,94,0.20), rgba(213,111,94,0.08)) border-box;
}

.refs-block--full{
  grid-column: 1 / -1;
}

.refs-heading{
  margin: 0 0 10px;
  font-size: 16px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hf-orange);
}

.refs-list{
  margin: 0;
  padding-left: 18px;
  color: var(--hf-text);
  line-height: 1.55;
  font-size: 15px;
}

.refs-list li{
  margin: 6px 0;
}

.refs-list--cols{
  columns: 2;
  column-gap: 36px;
}

@media (max-width: 820px){
  .refs-grid{
    grid-template-columns: 1fr;
  }
  .refs-list--cols{
    columns: 1;
  }
  .hf-modal{
    padding: 8px;
  }
  .hf-modal__dialog{
    width: 100%;
    max-height: calc(100vh - 16px);
    max-height: calc(100dvh - 16px);
    margin: 0;
    border-radius: 14px;
  }
  .hf-modal__header{
    padding: 20px 20px 12px;
    padding-right: 64px;
  }
  .hf-modal__content{
    padding: 14px 20px 22px;
  }
}








/* ===== Das Studio Slideshow  ===== */
.buero-slideshow {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* Alle Slides liegen übereinander */
.buero-slideshow img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

  opacity: 0;
  transition: opacity 900ms ease;
}

/* Aktives Bild sichtbar */
.buero-slideshow img.is-active {
  opacity: 1;
}

/* Optional: wenn du auf Mobile keine riesige Bildhöhe willst */
@media (max-width: 1000px) {
  .buero-slideshow {
      min-height: 320px;
  }
}








/* Header Social Icons */

.hero-social img {
  width: 36px;        /* aktuelle Größe */
  height: auto;
  transition: transform 0.25s ease;
  cursor: pointer;
}

/* Hover Effekt */
.hero-social img:hover {
  transform: scale(1.25);
}




/* HERO CONTENT */
.hero-content{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 85%;
  max-width: 1400px;

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

/* LOGO LINKS */
.hero-logo{
  display: flex;
  justify-content: flex-end;
  padding-left: 100px; /* Abstand zur Linie */
}

/* MITTELLINIE */
.hero-divider{
  width: 2px;
  height: 420px; /* Linie geht nicht bis oben/unten */
  background: white;
}

/* SLOGAN RECHTS */
.hero-slogan{
  padding-left: 100px; /* exakt gleicher Abstand */
  font-size: 48px;
  letter-spacing: 3px;
  color: white;
}






.values-strip .strip-item{
  background: transparent;
  border: 0;
  color: #fff;
  font: inherit;
  letter-spacing: 6px;
  cursor: pointer;

  display: flex;
  justify-content: center;
  align-items: center;
}

/* Text im Button skalieren */
.values-strip .strip-item span{
  display: inline-block;
  transition: transform .18s ease;
}

.values-strip .strip-item:hover span{
  transform: scale(1.08);
}






/* ===============================
   ORANGE STRIPS (Services + Werte)
   =============================== */

#servicesStrip,
#valuesStrip{
  background: #EA674F;
  width: 100%;
  color: #fff;
}

/* Grid */
#servicesStrip .services-strip-grid,
#valuesStrip .services-strip-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
}

/* Item */
#servicesStrip .services-item,
#valuesStrip .services-item{
  position: relative;
  min-height: 150px;
  padding-bottom: 28px;
}



/* Linien */
#servicesStrip .services-item:nth-child(2)::before,
#servicesStrip .services-item:nth-child(3)::before,
#valuesStrip .services-item:nth-child(2)::before,
#valuesStrip .services-item:nth-child(3)::before{
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  height: 105px;
  width: 2px;
  background: rgba(255,255,255,0.65);
}

/* Buttons */
#servicesStrip .services-button,
#valuesStrip .services-button{
  width: 100%;
  height: 150px;

  display: flex;
  justify-content: center;
  align-items: center;

  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;

  font-size: clamp(26px, 2.8vw, 44px);
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Hover Effekt */
#servicesStrip .services-button span,
#valuesStrip .services-button span{
  display: inline-block;
  transition: transform 0.2s ease;
}

#servicesStrip .services-button:hover span,
#valuesStrip .services-button:hover span{
  transform: scale(1.07);
}

#servicesStrip .services-button.is-active span,
#valuesStrip .services-button.is-active span{
  transform: scale(1.07);
}

/* TEXT */
#servicesStrip .services-text,
#valuesStrip .services-text{
  max-height: 0;
  overflow: hidden;
  opacity: 0;

  transition: max-height 0.35s ease, opacity 0.25s ease;
  padding: 0 34px;
}

#servicesStrip .services-text.is-open,
#valuesStrip .services-text.is-open{
  max-height: 220px;
  opacity: 1;
  padding: 0 34px 10px;
}

#servicesStrip .services-text p,
#valuesStrip .services-text p{
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  text-align: left;
  color: #fff;
}

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

@media (max-width: 980px){

  #servicesStrip .services-strip-grid,
  #valuesStrip .services-strip-grid{
    grid-template-columns: 1fr;
  }

  #servicesStrip .services-item,
  #valuesStrip .services-item{
    min-height: auto;
  }

  #servicesStrip .services-item::before,
  #valuesStrip .services-item::before{
    display: none;
  }

  #servicesStrip .services-button,
  #valuesStrip .services-button{
    height: 110px;
  }

  #servicesStrip .services-text,
  #servicesStrip .services-text.is-open,
  #valuesStrip .services-text,
  #valuesStrip .services-text.is-open{
    padding-left: 24px;
    padding-right: 24px;
  }
}








.projects{
  background: #ffffff !important;
}

.projects-topbar{
  max-width: 1230px;
  margin: 0 auto 70px auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.projects-topbar-title{
  margin: 0;
  color: #EA674F;
  font-size: 70px;
  font-weight: 300;
  letter-spacing: 4px;
  line-height: 1.05;
  text-transform: uppercase;
}

.projects-topbar-button{
  margin: 0;
  flex-shrink: 0;
}

@media (max-width: 1000px){
  .projects-topbar{
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .projects-topbar-title{
    font-size: 42px;
    letter-spacing: 2px;
  }
}





/* BUTTON REIHE */
.projects-button-row{
  width: 100%;
  max-width: 1230px;
  margin: 5px auto 0 auto;

  display: flex;
  justify-content: flex-end; /* 👉 rechts */
}

/* BUTTON STYLE (gleich wie Referenzen) */
.projects-more-btn{
  padding: 14px 50px;
  border: 2px solid #EA674F;
  background: transparent;
  color: #EA674F;

  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;

  cursor: pointer;
  transition: all 0.3s ease;
}

/* HOVER */
.projects-more-btn:hover{
  background: #EA674F;
  color: #fff;
}


.projects-button-row{
  width: 100%;
  max-width: 1230px;
  margin: 10px auto 0 auto;

  display: flex;
  justify-content: flex-end; /* rechts */
}






.projects-section{

  padding: 20px 0 40px;
}



.about-button {
    display: inline-block;
    padding: 10px 40px;

    border: 2px solid #EA674F;
    background: #fff; /* 🔥 DAS ist wichtig */
    color: #EA674F;

    text-decoration: none;
    letter-spacing: 2px;
    font-size: 16px;
    transition: all 0.3s ease;
}







.cta-contact-block{
  display: flex;
  flex-direction: column; /* 🔥 untereinander */
  gap: 12px;
}

/* Icons oben */
.social-icons{
  display: flex;
  gap: 14px;
}

/* Telefonnummer darunter */
.contact-buttom{
  font-size: 16px;
  line-height: 1.4;
  color: #fff;
}














/* =========================
   COOKIE BANNER
   ========================= */

.cookie-banner{
  position: fixed;
  bottom: 30px;
  right: 30px;

  width: 600px;
  max-width: 90vw;

  background: rgba(255,255,255,0.97);
  border: 3px solid #ffffff;
  border-radius: 6px;
  padding: 22px 28px;

  box-shadow: 0 30px 80px rgba(0,0,0,0.22);
  z-index: 9999;

  opacity: 0;
  transform: translateY(20px);
  transition: all .4s ease;
  pointer-events: none;
}

.cookie-banner.active{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-top{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
}

.cookie-top h3{
  margin: 0;
  font-size: 26px;
  font-weight: 600;
  color: #E06A57;
}

.cookie-links{
  display: flex;
  gap: 20px;
  padding-top: 5px;
}

.cookie-links a{
  font-size: 14px;
  color: #3c3c3c;
  text-decoration: none;
}

.cookie-links a:hover{
  text-decoration: underline;
}

.cookie-text{
  font-size: 14px;
  line-height: 1.5;
  color: #5a5a5a;
  margin-bottom: 18px;
}

.cookie-actions{
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.cookie-btn{
  flex: 1;
  background: #EA674F;
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  transition: .25s ease;
  text-decoration: none;

  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cookie-btn:hover{
  transform: translateY(-2px);
  filter: brightness(0.97);
}










/* =========================
   COOKIE BANNER
   ========================= */

.cookie-banner{
  position: fixed;
  bottom: 30px;
  right: 30px;

  width: 600px;
  max-width: 90vw;

  background: rgba(255,255,255,0.97);
  border: 3px solid #ffffff;
  border-radius: 6px;
  padding: 22px 28px;

  box-shadow: 0 30px 80px rgba(0,0,0,0.22);
  z-index: 9999;

  opacity: 0;
  transform: translateY(20px);
  transition: all .4s ease;
  pointer-events: none;
}

.cookie-banner.active{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-top{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
}

.cookie-top h3{
  margin: 0;
  font-size: 26px;
  font-weight: 600;
  color: #EA674F;
}

.cookie-links{
  display: flex;
  gap: 20px;
  padding-top: 5px;
}

.cookie-links a{
  font-size: 14px;
  color: #3c3c3c;
  text-decoration: none;
}

.cookie-links a:hover{
  text-decoration: underline;
}

.cookie-text{
  font-size: 14px;
  line-height: 1.5;
  color: #5a5a5a;
  margin-bottom: 18px;
}

.cookie-actions{
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.cookie-btn{
  flex: 1;
  background: #EA674F;
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  transition: .25s ease;
  text-decoration: none;

  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cookie-btn:hover{
  transform: translateY(-2px);
  filter: brightness(0.97);
}









/* =========================
   COOKIE SETTINGS POPUP
   ========================= */

.cookie-settings-modal{
  position: fixed;
  inset: 0;
  z-index: 100000;

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.cookie-settings-modal.active{
  opacity: 1;
  pointer-events: auto;
}

.cookie-settings-backdrop{
  position: absolute;
  inset: 0;
  background: transparent;
}

.cookie-settings-panel{
  position: fixed;
  bottom: 30px;
  right: 30px;

  width: 600px;
  max-width: 90vw;
  height: auto;

  background: rgba(255,255,255,0.97);
  border: 3px solid #ffffff;
  border-radius: 6px;
  padding: 22px 28px;

  box-shadow: 0 30px 80px rgba(0,0,0,0.22);

  display: flex;
  flex-direction: column;

  transform: translateY(20px);
  transition: 0.35s ease;
}

.cookie-settings-modal.active .cookie-settings-panel{
  transform: translateY(0);
}

.cookie-settings-scroll{
  max-height: 260px;
  overflow-y: auto;
  padding-right: 6px;
}

.cookie-settings-scroll::-webkit-scrollbar{
  width: 8px;
}

.cookie-settings-scroll::-webkit-scrollbar-thumb{
  background: rgba(224,106,87,0.35);
  border-radius: 999px;
}

.cookie-setting-row{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 24px;
}

.cookie-setting-text{
  flex: 1;
}

.cookie-setting-text h3{
  margin: 0 0 8px 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  color: #4b4b4b;
}

.cookie-setting-text p{
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}

/* SWITCH */
.cookie-switch{
  position: relative;
  width: 70px;
  height: 36px;
  flex-shrink: 0;
  margin-top: 2px;
}

.cookie-switch input{
  display: none;
}

.cookie-slider{
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: #e3a295;
  cursor: pointer;
  transition: background 0.25s ease;
}

.cookie-slider::before{
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  left: 5px;
  top: 5px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.25s ease;
}

.cookie-switch input:checked + .cookie-slider{
  background: #EA674F;
}

.cookie-switch input:checked + .cookie-slider::before{
  transform: translateX(34px);
}

/* BUTTONS UNTEN */
.cookie-settings-actions{
  display: flex;
  gap: 14px;
  margin-top: 18px;
}

.cookie-settings-btn{
  flex: 1;
  background: #EA674F;
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  transition: .25s ease;
}

.cookie-settings-btn:hover{
  transform: translateY(-2px);
  filter: brightness(0.97);
}

/* Responsive */
@media (max-width: 700px){
  .cookie-banner{
    right: 15px;
    bottom: 15px;
    width: calc(100vw - 30px);
  }

  .cookie-settings-panel{
    right: 15px;
    bottom: 15px;
    width: calc(100vw - 30px);
  }
}









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


.footer{
  position: relative;
  height: 100vh;
  color: white;
}

/* BG */
.footer-bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

/* TOP */
.footer-top{
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;

  height: 70%;
  padding: 0 120px;
}

/* LOGO */
.footer-logo{
  display: flex;
  justify-content: flex-end; /* WICHTIG für gleichen Abstand */
}

.footer-logo img{
  width: 500px;
    padding-top: 130px;

}

/* LINIE */
.footer-divider{
  width: 2px;
  height: 350px;
  background: white;
 transform: translateY(60px);
}

/* TEXT */
.footer-text{
  font-size: 60px;
  line-height: 1.15;
  font-weight: 300;
  padding-left: 120px;
  padding-top: 130px;
}

/* LINIE UNTEN */
.footer-line{
  position: absolute;
  bottom: 130px;
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.6);
  z-index: 2;
  
}

/* BOTTOM */
.footer-bottom{
  position: absolute;
  bottom: 30px;
  width: 100%;
  z-index: 2;
}

/* ALLES IN EINER REIHE */
.footer-bottom-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 120px;

}

/* BLOECKE */
.footer-address,
.footer-contact,
.footer-legal{
  font-size: 17px;
  line-height: 1.2;
}

/* PIN */
.footer-pin img{
  width: 24px;
}

/* SOCIAL */
.footer-social{
  display: flex;
  gap: 14px;
}

.footer-social img{
  width: 24px;
  transition: 0.3s;
}

.footer-social img:hover{
  transform: scale(1.1);
}





/* Impressum & Datenschutz */
.footer-legal a{
  color: #fff;              /* weiß statt blau */
  text-decoration: none;    /* kein Unterstrich */
  font-size: 18px;
  line-height: 1.2;
}

/* Hover wie dein Design */
.footer-legal a:hover{
  text-decoration: underline;
  opacity: 0.9;
}





.map-icon img{
  width: 46px; /* gleiche Größe wie deine anderen Icons */
  transition: transform 0.2s ease;
  cursor: pointer;
}

.map-icon:hover img{
  transform: scale(1.1); /* leichte Vergrößerung */
}








/* ================= A11Y BEST PRACTICES: TOUCH TARGETS + SKIP LINK ================= */
.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 20000;
  background: #fff;
  color: #000;
  padding: 12px 16px;
  border-radius: 4px;
  text-decoration: none;
}

.skip-link:focus {
  left: 12px;
}

@media (max-width: 767px) {
  .hero-social__link,
  .footer-social .hero-social__link,
  .map-icon,
  .burger,
  .menu-close,
  .hero-cta,
  .menu-link,
  .cookie-btn,
  .cookie-links a,
  .footer-legal a,
  .hf-modal__close,
  .hf-modal2__close,
  .contact-form button,
  .projects-burger {
    min-width: 48px;
    min-height: 48px;
  }

  .hero-social__link,
  .footer-social .hero-social__link,
  .map-icon,
  .burger,
  .menu-close,
  .hero-cta,
  .cookie-btn,
  .cookie-links a,
  .footer-legal a,
  .hf-modal__close,
  .hf-modal2__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero-social {
    gap: 10px;
  }

  .footer-social {
    gap: 12px;
  }

  .footer-legal a {
    padding: 10px 0;
  }

  .cookie-links {
    gap: 14px;
    flex-wrap: wrap;
  }

  .privacy input {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    margin-top: 12px;
  }

  .privacy label {
    min-height: 48px;
    display: flex;
    align-items: center;
  }
}
