/* VERSION: 2025-08-17T1 */

/* =============================
   BASISSTIL FÜR DESKTOP
============================= */
:root {
  --sticky-header-height: 120px;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--sticky-header-height);
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Work Sans', Arial, sans-serif;
  background: #fff;
  color: #000;
  max-width: 1724px;
  margin-left: auto;
  margin-right: auto;
}

/* =============================
   HEADER UND TOPBAR
============================= */
.topbar {
  width: 100%;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 1000;
}

.topbar-container {
  max-width: 1380px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
}


.topbar-nav a {
  margin-left: 10px;
  font-weight: 500;
  text-decoration: none;
}

/* Mobile-Ausblendung */
@media (max-width: 900px) {
  .topbar {
  display: block;
}
  .mobile-logo {
    display: block;
  }
}


.logo {
  font-family: 'Raleway', Arial, sans-serif;
  font-size: 35px;
  font-weight: 700;
  letter-spacing: 3.5px;
  color: rgba(0,0,0,0.5);
}
/* Desktop: großes Logo zeigen, kleines Logo ausblenden */
.logo {
  display: block;
}
.mobile-logo {
  display: none;
}

nav a {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.9px;
  color: #000;
  text-decoration: none;
}

/* =============================
   HEADER-BILD UND OVERLAY
============================= */
.header-img-wrapper {
  width: 1380px;
  margin: 30px auto 0;
  position: relative;
}


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

.header-overlay {
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  text-align: center;
  color: #fff;
}

.header-overlay h1 {
  font-family: 'Raleway'; font-size: 70px; font-weight: 700; letter-spacing: 7px; text-shadow: 0 0 15px rgba(0,0,0,0.5);
}
.header-overlay h2 {
  font-family: 'Raleway'; font-size: 32px; font-weight: 700; letter-spacing: 4px; text-shadow: 0 0 10px rgba(97,31,31,1);
}
.cta {
  display: inline-block;
  width: 500px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  font-family: 'Raleway';
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #fff;
  background: rgba(182, 138, 99, 0.70); /* #DA6146 mit 85% Opazität */
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(218, 97, 70, 0.2); /* Glow in Buttonfarbe */
}

.cta:hover {
  background: rgba(182, 138, 99, 0.80); /* etwas dunkler für Hover-Effekt */
  box-shadow: 0 0 30px rgba(218, 97, 70, 0.3);
  transform: scale(1.01);
}





/* =============================
   BUTTONS UNTER DEM HEADER
============================= */
.three-buttons a {
  width: 322px;
  height: 65px;
  font-family: 'Raleway';
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 10%;
  border-radius: 35px;
  background: rgba(182, 138, 99, 0.70); /* #A4130F mit 85% Transparenz */
  color: #fff;
  text-align: center;
  line-height: 65px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.three-buttons a:hover {
  background: rgba(182, 138, 99, 0.80); /* dunklere Variante beim Hover */
  box-shadow: 0 0 10px rgba(164, 19, 15, 0.2);
  transform: scale(1.02);
}


/* =============================
   BUTTON ANPASSUNG
============================= */

/* Desktop-Standard: falls horizontal */
.three-buttons {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 100px 0;
}
.three-buttons a {
  flex: 1;
  max-width: 300px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  border-radius: 25px;
}

/* Mobile-Anpassung */
@media (max-width: 480px) {
  .three-buttons {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 40px 0;   /* oben & unten 40px */
  }

  .three-buttons a {
    width: 200px;
    height: 40px;
    line-height: 40px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.1em;
    border-radius: 25px;
    background: rgba(182, 138, 99, 0.70); /* #A4130F mit 85% Transparenz */
    color: #fff;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(182, 138, 99, 0.20);
  }

  .three-buttons a:hover {
    background: rgba(182, 138, 99, 0.80); /* dunklere Hover-Farbe */
    box-shadow: 0 0 18px rgba(182, 138, 99, 0.30);
    transform: scale(1.02);
  }
}


/* =============================
   PORTFOLIO-BEREICHE
============================= */
.portfolio-info, .statement-section, .vita-section, .contact-section {
  max-width: 1026px;
  margin: 0 auto 100px;
  text-align: left;
}

/* ==============
   STATEMENT-BEREICH
=============== */

.statement-section h2 {
  font-family: 'Raleway', Arial, sans-serif;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 6px;
}

.statement-section p {
  font-family: 'Work Sans', Arial, sans-serif;
  font-size: 17px;
  line-height: 30px;
  letter-spacing: 1.7px;
  margin: 18px 0 0;
  text-align: left;
}

/* ----- VITA Spezifikationen ----- */
.vita-container {
  max-width: 1026px;
  margin: 100px auto;
  text-align: left;
  font-family: 'Work Sans', Arial, sans-serif;
}

.vita-container h2 {
  font-family: 'Raleway', Arial, sans-serif;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 30px;
}

.vita-container h3 {
  font-family: 'Raleway', Arial, sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 2px;
  margin: 40px 0 20px;
}

.vita-container ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.vita-container li {
  font-size: 17px;
  line-height: 30px;
  letter-spacing: 1.7px;
  margin-bottom: 12px;
  position: relative;
  padding-left: 18px;
}

.vita-container li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: #000;
  font-size: 20px;
}

.portfolio-title {
  font-family: 'Raleway'; font-size: 30px; font-weight: 700; letter-spacing: 3px;
}
.portfolio-subtitle {
  font-family: 'Work Sans'; font-size: 30px; letter-spacing: 3px;
}
.portfolio-info p {
  font-size: 17px; line-height: 30px; letter-spacing: 1.7px;
}

/* =============================
   TEASER GRID
============================= */
.teaser-grid {
  width: 1380px;
  margin: 0 auto 100px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 100px 18px;
}
.teaserbox {
  background: #f3f3f3; border-radius: 8px; overflow: hidden;
  transition: transform .15s; cursor: pointer;
}
.teaserbox:hover { transform: scale(1.03); }
.teaserbox img { width: 100%; height: 294px; object-fit: cover; display: block; }
.teaserbox-hover {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.68); color: #fff; text-align: center;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .25s;
}
.teaserbox:hover .teaserbox-hover { opacity: 1; }

/* Mouseover-Effekt für Teaserboxen */
.teaserbox {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.0.8);
  cursor: pointer;
  transition: transform 0.2s;
  background: #f3f3f3;
}

.teaserbox:hover {
  transform: scale(1.03);
  z-index: 2;
}

/* Bild bleibt unverändert */
.teaserbox img {
  width: 100%;
  height: auto;
  display: block;
}

.teaser-caption {
  margin-top: 30px;
  text-align: left;
  font-family: 'Work Sans', Arial, sans-serif;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 1.7px;
  line-height: 20px;
  max-width: 294px;
}
/* Overlay-Effekt */
.teaserbox-hover {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.4);
  color: #fff;
  font-family: 'Work Sans', Arial, sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1.7px;
  text-align: center;
  padding: 15px;
  opacity: 0;
  transition: opacity 0.3s;
}

/* Mouseover aktivieren */
.teaserbox:hover .teaserbox-hover {
  opacity: 1;
}
/* =============================
   Kontakt-Bereich (Desktop)
============================= */
.contact-info {
    margin-top: 20px;
}

.contact-info p {
    margin-bottom: 15px;
}

.contact-info a {
    text-decoration: none;
    color: #000;
}

.round-btn {
    margin-top: 30px;
}
.round-btn {
  display: inline-block;
  width: 322px;
  height: 65px;
  font-family: 'Raleway', Arial, sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 10%;
  border-radius: 35px;
  background: rgba(0, 0, 0, 0.6);
  color: #ffffff;
  text-align: center;
  line-height: 65px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  margin-top: 30px;
  transition: background 0.2s;
}
.round-btn, .round-btn:link, .round-btn:visited {
  color: #ffffff;
}

.round-btn:hover, .round-btn:focus {
  color: #ffffff;
  background: #111;
}

.round-btn:hover {
  background: #111;
  color: #ffffff;
}
/* Portfolio Headline */
.portfolio-title {
  font-family: 'Raleway', Arial, sans-serif;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 3px;
  line-height: 38px;
}

.portfolio-subtitle {
  font-family: 'Work Sans', Arial, sans-serif;
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 3px;
  line-height: 38px;
}

/* Portfolio Text */
.portfolio-info p {
  font-family: 'Work Sans', Arial, sans-serif;
  font-size: 17px;
  line-height: 30px;
  letter-spacing: 1.7px;
  margin-top: 18px;
  margin-bottom: 18px;
  text-align: left;
}
/* =============================
   IMPRESSUM DATENSCHUTZ
============================= */

.info-box {
  max-width: 1026px;
  margin: 80px auto;
  padding: 40px;
  background: rgba(217, 217, 217, 0.5);
  border-radius: 18px;
  font-family: 'Work Sans', Arial, sans-serif;
  font-size: 17px;
  line-height: 30px;
  letter-spacing: 1.5px;
}
.info-box h2, .info-box h3 {
  font-family: 'Raleway', Arial, sans-serif;
  letter-spacing: 3px;
}
.info-box h2 {
  font-size: 30px;
  margin-bottom: 20px;
}
.info-box h3 {
  font-size: 22px;
  margin-top: 30px;
}
/* =============================
   TEASER GRID – DESKTOP
============================= */
.teaser-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  width: 1380px;
  max-width: 90vw;
  margin: 0 auto 100px auto;
}

/*.teaserbox img {
  width: 100%;
  height: auto;
  border-radius: 25px;
}*/

/* =============================
   FUSSBEREICH + INFO
============================= */
.footer-links {
  max-width: 1026px;
  margin: 30px auto 50px auto;
  display: flex;
  gap: 80px;
  font-family: 'Raleway', Arial, sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 2px;
  color: rgba(0, 0, 0, 0.8);
  justify-content: flex-start;
  text-align: left;
}
.footer-links {
  padding-left: 30px;
}


.footer-links a {
  text-decoration: none;
  color: rgba(0,0,0,0.8);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #000;
  text-decoration: underline;
}

/* Akkordeon Sektion (Impressum & Datenschutz) */
.info-section {
  max-width: 1026px;
  margin: 60px auto;
  font-family: 'Work Sans', sans-serif;
  font-size: 16px;
  line-height: 28px;
  background: #f2f2f2;
  padding: 30px;
  border-radius: 20px;
}

.info-section h2 {
  font-family: 'Raleway';
  font-weight: 700;
  font-size: 30px;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.info-section h3 {
  font-weight: 600;
  margin-top: 25px;
}

/* Optional: sanfter Ein-/Ausklappeffekt */
.info-section {
  transition: all 0.3s ease-in-out;
}

/* =============================
   TABLET ANPASSUNG
============================= */

@media (max-width: 900px) {
  /* Header-Bild & Text */
  .header-img-wrapper {
    width: 90vw;
    margin: 30px auto;
  }
	
  .teaser-caption {
  font-size: 14px;
  line-height: 20px;
  margin-top: 10px;
  padding: 0 10px;
  text-align: left;
}


  .header-overlay h1 {
    font-size: 45px;
    line-height: 52px;
    letter-spacing: 4px;
    margin-bottom: 15px;
  }

  .header-overlay h2 {
    font-size: 25px;
    line-height: 30px;
    letter-spacing: 2px;
    margin-bottom: 30px;
  }

  .cta {
    width: 300px;
    height: 50px;
    line-height: 50px;
    font-size: 18px;
    letter-spacing: 1.5px;
    border-radius: 25px;
  }

  /* Drei Buttons unter Header – untereinander mit Abstand */
  .three-buttons {
    flex-direction: column;
    align-items: center;
    gap: 25px;
    margin-bottom: 20px;
  }

  .three-buttons a {
    width: 300px;
    height: 50px;
    line-height: 50px;
    font-size: 16px;
    letter-spacing: 0.1em;
    border-radius: 25px;
  }


  /*.teaser-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    width: 90vw;
    margin: 30px auto;
  }
}*/

	
  /* Teaser Grid – 2 Spalten */
  .teaser-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    width: 90vw;
    margin: 30px auto 60px auto;
  }

  /* Allgemeine Section-Abstände */
  .portfolio-info,
  .statement-section,
  .vita-section,
  .contact-section {
    width: 90vw;
    margin: 30px auto;
  }

  /* Headings */
  .portfolio-title,
  .portfolio-subtitle {
    font-size: 24px;
    line-height: 30px;
    letter-spacing: 2px;
  }

  /* Paragraphs */
  .portfolio-info p,
  .statement-section p,
  .vita-section li,
  .contact-section p {
    font-size: 15px;
    line-height: 30px;
    letter-spacing: 0.05em;
    margin-bottom: 15px;
  }

  /* Footer – zentriert wie mobil */
  footer {
    width: 90vw;
    margin: 30px auto;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
}
@media (max-width: 900px) {
  #vita {
    padding: 0 45px;
    margin: 30px auto;
  }
}



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

@media (max-width: 640px) {

  .header-img-wrapper, .section-bg {
    width: 90vw;
    margin: 30px auto;
  }

  .cta {
    width: 200px;
    height: 30px;
    line-height: 30px;
    font-size: 15px;
  }

  /* Mobile: Teaser nur 1 Spalte */
  .teaser-grid {
    grid-template-columns: 1fr;
    gap: 40px 0;
  }

}
/* =============================
   PORTFOLIO-MOBILE
============================= */

@media (max-width: 480px) {
  .portfolio-title,
  .portfolio-subtitle {
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 2px;
  }

  .portfolio-info {
    padding-left: 35px;
    padding-right: 35px;
  }

  .portfolio-info p {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 1.4px;
    margin-left: 0;
    margin-right: 0;
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: left;
  }
}
/* =============================
   ABSTAND PORTFOLIO & TEASERBOXEN
============================= */

/* Abstand Portfolio-Bereich nach unten */
.portfolio-info {
  margin-bottom: 50px;
}

/* Desktop: vier Spalten */
/*.teaser-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
  width: 1380px;
  max-width: 90vw;
  margin: 0 auto 100px auto;
}*/
/* Mobile: eine Spalte */
@media (max-width: 480px) {
  
  .teaser-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    width: 100%;
    margin: 30px auto;
  }

  .teaserbox {
    width: 322px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /*.teaserbox img {
    width: 100%;
    height: auto;
    border-radius: 20px;
  }*/

  .teaser-caption {
    font-size: 14px;
    line-height: 20px;
    margin-top: 20px;
    width: 100%;
    text-align: left;
    padding-left: 0;
  }
}

@media (max-width: 480px) {
  .statement-section {
    width: 322px;
    margin: 0 auto;
    text-align: left;
  }

  .statement-section .portfolio-title {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 20px;
  }

  .statement-section p {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
  }
}

/* =============================
   VITA - MOBILE
============================= */
@media (max-width: 480px) {
  #vita {
    width: 322px;
    margin: 0 auto;
    text-align: left;
    padding: 0 35px;
  }

  #vita h2 {
    font-family: 'Raleway', Arial, sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 3px;
    line-height: 28px;
    margin-bottom: 20px;
  }

  #vita h3 {
    font-family: 'Raleway', Arial, sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 3px;
    line-height: 24px;
    margin-bottom: 15px;
    margin-top: 30px;
  }

  #vita li {
    font-family: 'Work Sans', Arial, sans-serif;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.1em;
    margin-bottom: 15px;
    text-align: left;
  }
}


/* Kontakt-Button an gleiche Styles wie andere Buttons anpassen */
/* Kontakt-Button linksbündig */
.round-btn {
  width: 200px;
  height: 30px;
  line-height: 30px;
  font-size: 15px;
  letter-spacing: 0.1em;
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  background: rgba(0,0,0,0.6);
  color: #fff;
  text-align: center;
  border-radius: 25px;
  display: block;
  margin: 20px 0; /* nur Abstand oben/unten */
  text-decoration: none;
  transition: background .2s;
}

.round-btn:hover {
  background: #111;
}


/* Footer-Bereich linksbündig untereinander */
footer {
  width: 100%;
  margin: 30px auto;
  text-align: left;
  font-family: 'Work Sans', sans-serif;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.1em;
  color: rgba(0,0,0,0.8);
  padding: 20px 5px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-links a {
  text-decoration: none;
  color: rgba(0,0,0,0.8);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.1em;
}

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

/* Mobile Header Feinanpassung */
@media (max-width: 480px) {
  .header-overlay h1 {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 3px;
    white-space: nowrap;
    margin-bottom: -5px; /* kleiner Abstand zum Subheader */
  }

  .header-overlay h2 {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 20px; /* größerer Abstand zum Button */
  }
}

.cta {
  margin-top: 0; /* Optional, falls Buttons zu nah dran waren */
}

html {
  scroll-behavior: smooth;
}

@media (min-width: 901px) {
  html {
    scroll-padding-top: 120px;
  }
}

@media (max-width: 480px) {
  .button-wrapper {
    margin: 10px auto 10px auto; /* Abstand nach oben/unten */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px; /* Abstand zwischen den Buttons */
  }

  .three-buttons a {
    width: 200px;
    height: 35px;
    line-height: 35px;
    font-size: 14px;
    letter-spacing: 0.05em;
    border-radius: 20px;
    margin: 0; /* Kein zusätzliches margin zwischen Buttons */
  }
}
/* E-Mail Button: Desktop (ab 901px) */
.round-btn {
  width: 402px;
  height: 65px;
  font-size: 18px;
  line-height: 65px;
  border-radius: 32px;
  text-align: center;
  display: inline-block;
}

/* Tablet: bis 900px */
@media (max-width: 900px) {
  .round-btn {
    width: 300px;
    height: 50px;
    font-size: 16px;
    line-height: 50px;
    border-radius: 25px;
  }
}

/* Mobile: bis 480px */
@media (max-width: 480px) {
  .round-btn {
    width: 200px;
    height: 30px;
    font-size: 14px;
    line-height: 30px;
    border-radius: 15px;
  }
}
@media (max-width: 600px) {
  #lightbox-title {
    font-size: 18px !important;
  }

  #lightbox-desc {
    font-size: 14px !important;
  }
#lightbox-title {
  color: white;
  font-weight: bold;
  margin-top: 18px;
  text-align: center;

  /* Standardgröße für Desktop */
  font-size: 24px;
}

#lightbox-desc {
  color: #fff;
  font-size: 18px;
  max-width: 900px;
  text-align: center;
  margin-top: 14px;
}

/* Mobil: unter 600px Bildschirmbreite */
@media screen and (max-width: 600px) {
  #lightbox-title {
    font-size: 20px;
  }
}
.lightbox-btn {
  background-color: transparent;
  border: 2px solid white;
  color: white;
  font-size: 18px;
  padding: 14px 22px;         /* Noch höhere Buttons */
  border-radius: 16px;        /* Noch rundere Ecken */
  margin: 0 12px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.lightbox-btn:hover {
  background-color: white;
  color: black;
}

/* Standard: Desktop-Style */
#lightbox button {
  background-color: transparent;
  border: 1px solid white;
  color: white;
  font-size: 20px;
  padding: 15px 24px;            /* Größere Höhe & Breite für Desktop */
  border-radius: 20px;
  margin: 0 12px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

/* Hover-Effekt */
#lightbox button:hover {
  background-color: white;
  color: black;
}

/* Mobile: unter 600px */
@media screen and (max-width: 600px) {
  #lightbox button {
    font-size: 18px;
    padding: 8px 16px;           /* Flacher & schmäler für Mobile */
    border-radius: 20px;         /* Etwas rundere Ecken optional */
    margin: 0 8px;
  }
}

@media screen and (max-width: 768px) {
  /* 1. Weißraum über Header entfernen */
  body, header, .topbar {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  /* 2. Overlay kleiner & höher platzieren */
  .header-overlay {
    transform: translate(-50%, -40%) !important;
    padding: 0.1rem 1rem !important;
  }

  .header-overlay h1 {
    font-size: 28px !important;
    margin-bottom: 8px !important;
    letter-spacing: 2px !important;
  }

  .header-overlay h2 {
    font-size: 14px !important;
    margin-bottom: 15px !important;
    letter-spacing: 1px !important;
    line-height: 1.2 !important;   /* enger: 1.2, luftiger: 1.4 */
  }

  .cta {
    width: 96% !important;
    height: 38px !important;
    font-size: 15px !important;
    line-height: 38px !important;
    margin-top: 10px !important;
    border-radius: 25px !important;
  }

  /* 3. Weniger Abstand zu den 3 Buttons darunter */
  #teaser,
  .button-wrapper {
    margin-top: -20px !important;
  }
}

/* ===== ARCHIV – nur diese Seite ===== */

/* Desktop */
body.archiv .teaser-grid{
  width: 1380px;
  margin: 0 auto 100px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 18px;
}

/* Tablet */
@media (max-width: 900px){
  body.archiv .teaser-grid{
    width: 90vw;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 18px;
    margin: 30px auto 60px;
  }
}

/* Mobile – 1 Spalte erzwingen */
@media (max-width: 520px){
  body.archiv .teaser-grid{
    display: grid !important;         /* überstimmt evtl. globales flex */
    grid-template-columns: 1fr !important;
    gap: 28px !important;
    width: 90vw;
    margin: 24px auto 50px;
  }

  /* Optional: kleinere Bildtexte */
  body.archiv .teaser-caption{
    font-size: 14px;
    line-height: 20px;
    margin-top: 10px;
    text-align: left;
  }
}

/* ===== ARCHIV – Serien & Themen (nur auf Archiv-Seite) ===== */
body.archiv .section-scanner {
  max-width: 1026px;
  margin: 40px auto 0;
  padding: 0 0;
}

body.archiv .three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: start;
  margin-bottom: 12px;
}

body.archiv .three-col .col h3 {
  margin: 0 0 6px;
  font-family: 'Raleway', Arial, sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 1.5px;
  line-height: 1.2;
}

body.archiv .three-col .col p {
  margin: 0;
  font-family: 'Work Sans', Arial, sans-serif;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: 0.05em;
}

/* Tablet/Mobile: Spalten untereinander, linksbündig */
@media (max-width: 900px) {
  body.archiv .three-col {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}
/* ===== ARCHIV – Teaser-Grid zentriert & responsiv ===== */
body.archiv .teaser-grid {
  width: 1380px;
  max-width: 90vw;
  margin: 0 auto 80px;   /* zentriert */
}

/* Jede Kachel max. Breite und mittig */
body.archiv .teaser-item {
  max-width: 720px;      /* verhindert randlos überbreit auf Mobile */
  width: 100%;
  justify-self: center;
  margin-left: auto;
  margin-right: auto;
}

/* Bildfüllung bleibt, Rundung etc. behandelst du bereits */
/*body.archiv .teaserbox img {
  display: block;
  width: 100%;
  height: auto;
}*/

/* Beschriftung linksbündig, ohne versetzten Innenabstand */
body.archiv .teaser-caption {
  max-width: 720px;
  width: 100%;
  margin: 18px auto 0;
  padding: 0;
  text-align: left;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: .05em;
}

/* Mobile: 1 Spalte, mittig, genug Luft */
@media (max-width: 900px) {
  body.archiv .teaser-grid {
    grid-template-columns: 1fr !important; /* falls woanders überschrieben */
    width: 90vw;
    margin: 20px auto 60px;
    gap: 36px;
  }
}
/* ===== ARCHIV – Teaserbilder mittig + Hovertexte ===== */
body.archiv .teaser-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  justify-items: center; /* Zentriert alle Kacheln */
  gap: 32px;
  max-width: 1400px;
  margin: 0 auto;
}

body.archiv .teaserbox {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}

/*body.archiv .teaserbox img {
  display: block;
  max-width: 100%;
  height: auto;
}*/

/* Hovertext wieder aktivieren */
body.archiv .description {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 40%, rgba(0,0,0,0) 100%);
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
  opacity: 0;
  transition: opacity .25s ease-in-out;
}

body.archiv .teaserbox:hover .description {
  opacity: 1;
}
/* --- ARCHIV: Kacheln zentrieren + Hover aktiv --- */
body.archiv .teaser-grid{
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  justify-items: center;              /* Kachel in Spalte zentrieren */
  justify-content: center;            /* Grid insgesamt zentrieren */
  max-width: 1400px;
  margin: 0 auto;
  gap: 32px 24px;
}

body.archiv .teaser-item{
  display: flex;
  flex-direction: column;
  align-items: center;                 /* Bild + Caption zentriert */
}

body.archiv .teaserbox{
  margin: 0 auto;                      /* Sicherheitsnetz */
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

/*body.archiv .teaserbox img{
  display: block;
  max-width: 100%;
  height: auto;
}*/

/* Caption optional mittig */
body.archiv .teaser-caption{
  max-width: 320px;
  text-align: center;
}

/* Hover-Overlay – beide möglichen Klassennamen unterstützen */
body.archiv .teaserbox-hover,
body.archiv .description{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  background: linear-gradient(to top, rgba(0,0,0,.65) 40%, rgba(0,0,0,0) 100%);
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
  opacity: 0;
  transition: opacity .25s ease-in-out;
}

body.archiv .teaserbox:hover .teaserbox-hover,
body.archiv .teaserbox:hover .description{
  opacity: 1;
}

/* Mobile: 1 Spalte, zentriert */
@media (max-width: 600px){
  body.archiv .teaser-grid{
    grid-template-columns: minmax(300px, 1fr);
    justify-items: center;
  }
}
.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* linksbündig */
  margin-top: 10px;
}

.footer-links a {
  text-decoration: none;
  color: #000;
  margin: 4px 0;
  font-size: 14px;
}

.footer-links .home-link {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 6px;
}
.footer-links {
    margin-top: 0px;   /* Abstand vom Button nach unten */
    padding-top: 0;     /* Falls Padding drin war, auf 0 setzen */
}

/* Kontakt-Bereich enger an den Footer rücken */
#kontakt.portfolio-info {
  margin-bottom: 0px !important;   /* vorher 50–100px */
}

/* optional: Footer-Links noch etwas näher zum Button */
.footer-links {
  margin-top: 5px !important;      /* bei Bedarf 0–10px */
  padding-top: 0 !important;
}

/* Abstand zwischen Kontakt-Bereich und Footer verringern (Desktop & Mobile) */
#kontakt.portfolio-info {
  margin-bottom: 5px !important; /* vorher wahrscheinlich 50px+ */
}

.footer-links {
  margin-top: 8px !important;
  padding-top: 0 !important;
}

/* Kontaktbereich dichter an den Footer (Desktop + Mobile) */
#kontakt .round-btn{
  margin-bottom: 10px !important;   /* Button -> unten kleiner Abstand */
}

#kontakt.portfolio-info{
  /* manche Regeln setzen margin als Shorthand; daher hier komplett überschreiben */
  margin: 0 auto 12px !important;   /* statt 50/100px */
}

/* Footer-Links selbst etwas nach oben */
footer .footer-links{
  margin-top: 8px !important;
  padding-top: 0 !important;
}

/* Mobile-Teaser-Captions linksbündig ausrichten */
@media (max-width: 768px) {
  .teaser-caption {
    text-align: left !important;
    padding-left: 4px; /* optionaler kleiner Abstand */
  }
}

/* Datenschutz / Impressum – Mobile-Optimierung */
@media (max-width: 600px) {
  .info-box {
    width: 90vw;
    padding: 20px 18px;
    border-radius: 14px;
    font-size: 15px;
    line-height: 26px;
    letter-spacing: 0.05em;
    margin: 20px auto; /* etwas Luft */
  }

  .info-box h2 {
    font-size: 26px;
    line-height: 32px;
    letter-spacing: 2px;
    margin: 0 0 12px 0;
  }

  .info-box h3 {
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 1px;
    margin: 18px 0 10px;
  }
}

/* Desktop/Tablet */
@media (min-width: 901px) {
  .topbar {
    position: sticky;   /* wenn sticky bei dir zickt, testweise: fixed */
    top: 0;
    z-index: 1000;
    background: #fff;   /* wichtig, damit die Linie sichtbar ist */
  }

  .topbar::after {
    content: "";
    position: absolute; /* bezieht sich auf .topbar (sticky ist "positioned") */
    left: 0;
    right: 0;
    bottom: 0;          /* genau an der Unterkante */
    height: 1px;
    background: rgba(0,0,0,.14); /* feine Trennlinie */
    pointer-events: none;
  }
}

/* Höhe deiner Desktop-Topbar einstellen */
:root { --topbar-h: 82px; } /* anpassen falls nötig */

/* 1) Header ganz nach oben holen */
.topbar {
  position: sticky;      /* oder fixed, falls du das nutzt */
  top: 0;
  background: #c6e6f7;   /* deine Topbar-Farbe, unbedingt opaque */
  z-index: 1000;
  isolation: isolate;
}

/* 2) Erstes Content-Element unter die Topbar zwingen */
#home,
.header-img-wrapper {
  position: relative;
  z-index: 0 !important;
  transform: none !important;
}


.topbar {
  border-bottom: none;
  transition: border-color 0.2s ease;
}

.scrolled .topbar {
  border-bottom: 1px solid rgba(0,0,0,0.14);
}

/* === Einheitliche Teaser-Captions auf START & ARCHIV (nur Desktop) === */
@media (min-width: 901px) {
  /* Typografie & Abstand */
  .teaser-caption {
    font-family: 'Work Sans', Arial, sans-serif;
    font-size: 17px;
    line-height: 20px;
    letter-spacing: 1.7px;
    margin-top: 30px;
    text-align: left;
    max-width: 294px;
  }

  /* Grid-Abstände angleichen */
  .teaser-grid {
    width: 1380px;
    margin: 0 auto 100px;
    grid-template-columns: repeat(4, 1fr);
    gap: 100px 18px;
  }
}

/* ===== ARCHIV: einheitliche Kacheln wie Startseite (Desktop) ===== */
@media (min-width: 901px) {
  body.archiv .teaserbox {
    border-radius: 24px;
    overflow: hidden;
  }
  body.archiv .teaserbox > img {
    display: block;
    width: 100%;
    height: 294px;
    object-fit: cover;
  }
  body.archiv .teaser-grid {
    /* gleiche Abstände wie Startseite */
    gap: 100px 18px;
  }
  body.archiv .teaser-caption {
    margin-top: 15px;
  }
}
@media (max-width: 900px) {
  .teaserbox-hover {
    opacity: 1 !important;   /* Immer sichtbar */
    background: rgba(0,0,0,0.55); /* gleichmäßiger Hintergrund */
    align-items: flex-end;   /* Text unten halten */
  }

  .teaserbox:hover .teaserbox-hover {
    opacity: 1 !important;   /* Hover-Effekt ausschalten */
  }
}
/* Archiv: Hovertext wie Startseite auch auf Mobile */
@media (max-width: 900px) {
  body.archiv .teaserbox-hover {
    opacity: 1 !important;
    background: linear-gradient(
      180deg,
      rgba(0,0,0,0) 40%,   /* oben durchsichtig */
      rgba(0,0,0,0.7) 100% /* unten dunkel */
    ) !important;
    align-items: flex-end;   /* Text bleibt unten */
    padding: 16px;
  }

  /* Hover-Effekt komplett deaktivieren */
  body.archiv .teaserbox:hover .teaserbox-hover {
    opacity: 1 !important;
  }
}
/* Einheitlicher Balken-Overlay auf Start + Archiv */
.teaserbox-hover{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;         /* Text unten */
  justify-content: center;
  padding: 14px 16px;
  color: #fff;
  text-align: center;
  font-weight: 600;
  background: linear-gradient(180deg,
              rgba(0,0,0,0) 55%,
              rgba(0,0,0,.75) 100%);  /* Balken unten */
  opacity: 0;
  transition: opacity .25s ease;
}
.teaserbox:hover .teaserbox-hover{ opacity: 1; }

/* Archiv: evtl. frühere "volle Abdunkelung" sicher überschreiben */
body.archiv .teaserbox-hover{
  background: linear-gradient(180deg,
              rgba(0,0,0,0) 55%,
              rgba(0,0,0,.75) 100%) !important;
}

/* Mobile: Text immer sichtbar, kein Hover nötig */
@media (max-width: 900px){
  .teaserbox-hover{ opacity: 1 !important; }
  .teaserbox:hover .teaserbox-hover{ opacity: 1 !important; }
}

/* Einheitlicher Balken unten – kein Verlauf */
.teaserbox-hover,
body.archiv .teaserbox-hover,
body.archiv .description {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  top: auto !important;               /* nur unten */
  height: 30px;                       /* Balkenhöhe (anpassen) */
  padding: 10px 14px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,.40) !important;  /* SOLID, kein Verlauf */
  color: #fff;
  opacity: 0;                         /* Standard: verborgen */
  transition: opacity .25s;
}

/* Desktop: nur bei Hover zeigen */
@media (min-width: 901px) {
  .teaserbox:hover .teaserbox-hover { opacity: 1 !important; }
}

/* Mobile: immer sichtbar */
@media (max-width: 900px) {
  .teaserbox-hover { opacity: 1 !important; }
}

/* Mobile: Mehr Abstand zwischen letzter Teaserbox (Hauptwerke)
   und der Headline "SERIEN & THEMEN" — nur im Archiv */
@media (max-width: 900px) {
  body.archiv section.teaser-grid[aria-label="Aktuelle Hauptwerke"] {
    margin-bottom: 60px;  /* nach Bedarf 40–80 anpassen */
  }
}
/* Mobile: Abstand zwischen Headline "SERIEN & THEMEN" und erstem Subblock verkleinern */
@media (max-width: 900px) {
  .portfolio-info.section-spacer h2 {
    margin-bottom: 10px; /* statt Standardwert (meist 24px–40px) */
  }
}
/* ===========================
   LIGHTBOX – Aktionen (Preis anfragen)
   FINAL: 70% Türkis, Weißer Text, 150px, kein Transform
   =========================== */

/* Container für Aktionsbereich */
#lightbox-actions{
  margin-top: 16px !important;
  display: flex !important;
  gap: 12px !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
}

/* Basis-Style NUR für Buttons in der Lightbox */
#lightbox-actions a.price-btn,
#lightbox-actions button.price-btn {
  box-sizing: border-box !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  width: 150px !important;         /* einheitliche Breite */
  min-width: 150px !important;
  flex: 0 0 150px !important;
  height: 33px !important;
  padding: 6px 15px !important;

  border-radius: 999px !important;
  border: 1px solid #0BAFB6 !important;                 /* 100% Türkis-Rand */
  background: rgba(11,175,182,.70) !important;          /* 70% Türkis */
  color: #fff !important;                                /* weißer Text */

  font: 400 13px/1 inherit !important;

  text-decoration: none !important;
  cursor: pointer !important;
  transition: box-shadow .2s, background .2s, border-color .2s !important;
  -webkit-tap-highlight-color: transparent !important;   /* iOS Tap-Highlight weg */
}

/* Link-Zustände erzwingen Weiß (falls <a>) */
#lightbox-actions a.price-btn:link,
#lightbox-actions a.price-btn:visited {
  color: #fff !important;
}

/* Hover / Focus / Active – ohne Transform, Text bleibt Weiß (auch Mobile) */
#lightbox-actions a.price-btn:hover,
#lightbox-actions button.price-btn:hover,
#lightbox-actions a.price-btn:focus,
#lightbox-actions button.price-btn:focus,
#lightbox-actions a.price-btn:focus-visible,
#lightbox-actions button.price-btn:focus-visible,
#lightbox-actions a.price-btn:active,
#lightbox-actions button.price-btn:active {
  background: rgba(11,175,182,.85) !important;   /* etwas kräftiger */
  border-color: #0BAFB6 !important;
  color: #fff !important;                        /* bleibt Weiß, auch beim Tippen */
  box-shadow: 0 6px 18px rgba(11,175,182,.30) !important;
}

/* Tastatur-Fokus-Ring (barrierefrei) */
#lightbox-actions a.price-btn:focus,
#lightbox-actions button.price-btn:focus {
  outline: 2px solid rgba(255,255,255,.8) !important;
  outline-offset: 2px !important;
}

/* Mobile Anpassung */
@media (max-width: 640px){
  #lightbox-actions a.price-btn,
  #lightbox-actions button.price-btn {
    width: 150px !important;
    height: 28px !important;
    font-size: 13px !important;
    padding: 0 10px !important;
    white-space: nowrap !important;
    text-align: center !important;
    color: #fff !important;  /* extra Absicherung für Mobile */
  }
}

/* Reduzierte Bewegung */
@media (prefers-reduced-motion: reduce){
  #lightbox-actions a.price-btn,
  #lightbox-actions button.price-btn { transition: none !important; }
}

/* Sanftes Scrollen global aktivieren */
html {
  scroll-behavior: smooth;
}

/* Abstand oben, damit Sticky-Header nichts überlappt */
@media (min-width: 768px) {
  #teaser,
  #position,
  #vita,
  #kontakt {
    scroll-margin-top: 80px; /* ggf. anpassen auf die Höhe deines Headers */
  }
}

/* --- Anker-Korrektur nur Desktop --- */
@media (min-width: 1025px) {
  #teaser,
  #position,
  #vita,
  #kontakt {
    scroll-margin-top: 230px; /* Abstand nach unten verschoben */
  }
}

/* Sanftes Scrollen überall */
html { scroll-behavior: smooth; }

/* Mobile/iPad: Abstand für #teaser vom oberen Rand */
@media (max-width: 1024px){
  #teaser { 
    scroll-margin-top: 140px;   /* bei Bedarf 120–160 testen */
  }
}

/* Sanft scrollen allgemein */
html { scroll-behavior: smooth; }

/* NUR Mobil/Tablet: mehr Abstand, damit Titel+Text sichtbar sind */
@media (max-width: 1024px){
  #teaser{
    scroll-margin-top: 200px !important; /* bei Bedarf 200/220 testen */
  }
}
/* RESIDUEN: 2 Kacheln IMMER mittig (überschreibt teaser-grid) */
.teaser-grid.residuen-grid{
  display: grid !important;
  grid-template-columns: repeat(2, minmax(280px, 360px));
  justify-content: center;
  gap: clamp(28px, 4vw, 64px);
}

@media (max-width: 820px){
  .teaser-grid.residuen-grid{
    grid-template-columns: 1fr;
    justify-content: stretch;
  }
  .teaser-grid.residuen-grid .teaser-item{
    max-width: 360px;
    margin: 0 auto;
  }
}
/* Mobile Nav: geschlossen -> nur mit .is-open offen */
@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }

  .primary-nav { display: none; }

  /* HIER ERSETZEN */
  .primary-nav.is-open {
    display: flex;
    flex-direction: column;
    align-items: center;   /* Block zentriert */
    justify-content: center;
    gap: 12px;
    text-align: center;    /* Text zentriert */
  }

  .primary-nav.is-open a{
    display: inline-block;
    margin: 0 !important;
    padding: 6px 0;
    text-align: center;
  }
}

@media (min-width: 901px) {
  .nav-toggle { display: none; }
  .primary-nav { display: flex; }
}
@media (max-width: 900px) {
  .topbar-container { flex-wrap: wrap; }
  .logo { flex: 1 1 auto; }
  .nav-toggle { margin-left: auto; }

  /* Menü unter der ersten Zeile */
  .primary-nav { width: 100%; padding-top: 12px; }
}
.nav-toggle{
  background: transparent;
  border: 0;
  font-size: 28px;
  line-height: 1;
  padding: 10px 12px;
  cursor: pointer;
  color: #000;
}
.logo a,
.logo a:visited,
.logo a:hover,
.logo a:active{
  color: inherit !important;
  text-decoration: none !important;
}
.topbar{ background:#fff !important; }
.logo a,
.logo a:visited,
.logo a:hover,
.logo a:active{
  color: inherit !important;
  text-decoration: none !important;
}
/* HARD RESET: Desktop-Teasergrid wieder als 4er-Grid erzwingen */
@media (min-width: 901px){
  .teaser-grid{
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    width: 1380px !important;
    max-width: 90vw !important;
    margin: 0 auto 100px auto !important;
    gap: 40px !important;
  }
}
/* Desktop: Hamburger IMMER aus (Hard-Override) */
@media (min-width: 901px){
  .nav-toggle{ display: none !important; }
}
/* Desktop: mehr Abstand in der Top-Navi */
@media (min-width: 901px){
  .primary-nav{
    gap: 18px;              /* hier drehen: 14–28px */
  }
  .primary-nav a{
    margin-left: 0 !important; /* falls alte margin-regeln drin sind */
    padding: 6px 4px;          /* optischer “Luft”-Puffer */
  }
}
/* =========================
   NAV – FINAL (nur 1 Quelle)
   ========================= */

/* MOBILE/TABLET: default zu, erst mit .is-open sichtbar */
@media (max-width: 900px){
  .nav-toggle{ display: inline-flex; }

  .primary-nav{
    display: none;
    width: 100%;
    padding-top: 12px;
  }

  .primary-nav.is-open{
    display: flex;
    flex-direction: column;
    align-items: center;      /* ZENTRIERT */
    justify-content: center;
    gap: 16px;                /* Abstand zwischen Punkten */
    text-align: center;
  }

  .primary-nav.is-open a{
    display: inline-block;
    text-align: center;
  }
}

/* DESKTOP: Hamburger weg, Menu immer sichtbar + mehr Abstand */
@media (min-width: 901px){
  .nav-toggle{ display: none !important; }

  .primary-nav{
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
    gap: 28px;                /* <— HIER Abstand Desktop */
  }

  .primary-nav a{
    margin: 0 !important;     /* damit gap wirkt */
    white-space: nowrap;
  }
}
/* ===== STEP 1: ARCHIV – Desktop-Navi wie Home erzwingen ===== */
@media (min-width: 901px){
  body.archiv .nav-toggle{
    display: none;
  }

  body.archiv .primary-nav{
    display: flex;
    gap: 28px;              /* gleicher Abstand wie Home */
    align-items: center;
  }

  body.archiv .logo a,
  body.archiv .logo a:visited,
  body.archiv .logo a:hover,
  body.archiv .logo a:active{
    color: inherit;
    text-decoration: none;
  }
}
/* ARCHIV: Abstand unter Topbar reduzieren (nur diese Seite) */
body.archiv main{
  padding-top: 0;
}

body.archiv main > .portfolio-info:first-of-type{
  margin-top: 1px;   /* stell hier z.B. 20–60 ein */
}
/* DIAGNOSE: ALLES über der ersten Archiv-Headline brutal entfernen */
body.archiv * {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
/* Teaser-Grid früher entschärfen (unabhängig von der Navi) */
@media (max-width: 1200px){
  .teaser-grid:not(.residuen-grid){
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 28px !important;
  }
}
/* ANKLÄNGE: Kontaktblock weiter nach unten schieben */
section#kontakt.portfolio-info{
  margin-top: 140px !important;   /* hier drehen */
}
#kontakt.portfolio-info{
  margin-top: 140px !important;  /* hier drehen */
}