html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    max-width: 100%;
    font-family: 'Cormorant Garamond', serif;
    background-color: #E3DFDC;
}

* {
    img, video, svg {
  max-width: 100%;
  height: auto;
  display: block;
}
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* NAVBAR */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #E3DFDC;
    width: 100%;
    height: 150px;
    padding-left: 20px;
    padding-right: 80px;
    padding-bottom: 10px;
    border-bottom: 4px solid #AC978A;
    margin-bottom: 25px;
}

.nav-logo img {
    width: 201px;
    height: 160px;
    margin-top: 40px;
    margin-left: 0px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 160px;
    margin-left: 30px;
    margin-top: 35px;
}

.nav-links a {
    text-decoration: none;
    color: #0E3944;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: 26px;
    letter-spacing: 0.12em;
    line-height: 90%;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
    white-space: nowrap;
    text-transform: uppercase;
}

.nav-links a:hover {
    border-bottom: 2px solid #A28C7F;
}

/* HERO */
.hero {
    width: 100%;
    height: 640px;
    background-image: url('images/hero-bg.png');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.hero-text {
    position: absolute;
    left: 148px;
    top: 38%;
    transform: translateY(-50%);
    width: 85%;
    height: auto;
}

/* SOCIAL MEDIA */
.social-media {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #E3DFDC;
    padding: 60px 186px 60px 150px;
}

.social-left, .social-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.social-item {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.social-item img {
    width: 58px;
    height: 58px;
}

.social-item span {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: 48px;
    color: #0E3944;
}

.social-center img {
    width: 592px;
    height: 428px;
    object-fit: contain;
}

/* UNSERE MISSION */
.mission {
    padding: 80px 139px;
    background-color: #E3DFDC;
    text-align: center;
}

.mission-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: 150px;
    color: rgba(14, 57, 68, 0.07);
    line-height: 1;
    margin-bottom: 40px;
}

.mission-text {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 28px;
    color: rgba(14, 57, 68, 0.70);
    line-height: 103%;
    letter-spacing: -0.06em;
    max-width: 1618px;
    margin: 0 auto;
}

.mission-icon {
    width: 32px;
    height: 26px;
    display: block;
    margin: 130px auto 1px;
}

/* UNSERE LEISTUNGEN */
.leistungen {
    padding: 0;
    background-color: #E3DFDC;
    text-align: center;
}

.leistungen-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-style: italic;
    font-size: 100px;
    line-height: 1.2;
    letter-spacing: -0.03em;
    text-align: center;
    background: linear-gradient(180deg, #A28C7F 0%, #706966 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
    margin: 0 auto;
}

.leistungen-line {
    width: 1000px;
    height: 3px;
    background-color: #A28C7F;
    margin: 20px auto;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* LEISTUNGEN GRID */
.leistungen-grid {
    display: grid;
    grid-template-columns: repeat(3, 342px);
    gap: 120px 116px;
    padding: 40px 0;
    background-color: #E3DFDC;
    justify-content: center;
}

.leistung-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.leistung-img {
    width: 342px;
    height: 477px;
    object-fit: cover;
    border-radius: 180px;
}

.leistung-text {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: 30px;
    line-height: 90%;
    letter-spacing: -0.03em;
    text-align: center;
    color: #9D8A7C;
    margin-top: 20px;
    max-width: 342px;
}

/* PORTFOLIO */
.portfolio {
    position: relative;
    width: 100%;
    height: 26.4vw;
    overflow: hidden;
    margin-top: 180px;
}

.portfolio-item {
    position: absolute;
    height: 100%;
    overflow: hidden;
}

.portfolio-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.2s ease;
}

.portfolio-item .dark { opacity: 1; z-index: 1; }
.portfolio-item .light { opacity: 0; z-index: 2; }
.portfolio-item:hover .dark { opacity: 0; }
.portfolio-item:hover .light { opacity: 1; }

.p1 { left: -1vw; width: 29.6vw; z-index: 1; }
.p2 { left: 18vw; width: 25.0vw; z-index: 2; }
.p3 { left: 36vw; width: 28.9vw; z-index: 3; }
.p4 { left: 56vw; width: 28.3vw; z-index: 4; }
.p5 { left: 74vw; width: 28.5vw; z-index: 5; }

/* PORTFOLIO LINIE */
.portfolio-line {
    width: 100%;
    height: 3px;
    background-color: #A28C7F;
    box-shadow: 0 4px 4px rgba(0,0,0,0.25);
    margin-top: 178px;
}

/* KONTAKT */
.kontakt {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 50px 96px;
    background-color: #E3DFDC;
}

.kontakt-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 70px;
    line-height: 1;
    white-space: nowrap;
    background: linear-gradient(180deg, #AC978A 0%, #5C5656 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 68px;
}

.kontakt-email {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: 48px;
    color: #0E3944;
    text-decoration: none;
    margin-bottom: 5px;
}

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

.kontakt-phone {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: 48px;
    color: #0E3944;
    text-decoration: none;
    margin-bottom: 40px;
}

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

.kontakt-adresse {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: 48px;
    line-height: 90%;
    letter-spacing: -0.03em;
    color: #0E3944;
}

.kontakt-social {
    display: flex;
    align-items: center;
    gap: 21px;
    margin-top: 140px;
    transform: rotate(0.12deg);
}

.kontakt-social img {
    width: 58px;
    height: 58px;
    object-fit: contain;
}

.kontakt-social a:last-child img {
    width: 65px;
    height: 65px;
}

.kontakt-logo img {
    width: 450px;
    height: 540px;
    object-fit: contain;
}

/* FOOTER */
.footer {
    background-image: url('images/footer-bg.png');
    background-size: cover;
    background-position: center;
    padding: 40px 96px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-left a {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: 36px;
    color: #AC978A;
    text-decoration: none;
    line-height: 99%;
    letter-spacing: -0.03em;
}

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

.footer-right {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: 36px;
    color: #AC978A;
    line-height: 111%;
    letter-spacing: -0.04em;
    text-align: right;
    margin-top: 30px;
}

/* KONTAKT PAGE */
.kontakt-page {
    position: relative;
    width: 100%;
    height: 58.5vw;
    overflow: hidden;
    margin-top: -25px;
}

.kontakt-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.kontakt-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 10vw 7vw;
}

.kontakt-page-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 85px;
    line-height: 1;
    white-space: nowrap;
    background: linear-gradient(180deg, #AC978A 0%, #5C5656 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
}

.kontakt-page-email {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 50px;
    color: #0E3944;
    text-decoration: none;
    margin-bottom: 5px;
}

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

.kontakt-page-phone {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 50px;
    color: #0E3944;
    text-decoration: none;
    margin-bottom: 50px;
}

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

.kontakt-page-adresse {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 50px;
    color: #0E3944;
    line-height: 90%;
    letter-spacing: -0.03em;
    margin-bottom: 50px;
}

.kontakt-page-social {
    display: flex;
    align-items: center;
    gap: 21px;
}

.kontakt-page-social img {
    width: 89.95px;
    height: 87.82px;
    object-fit: contain;
}

.kontakt-page-social a:last-child img {
    width: 101px;
    height: 99px;
}

.kontakt-page-logo img {
    width: 349px;
    height: 413px;
    object-fit: contain;
    margin-top: 42px;
}

/* ÜBER UNS */
.ueber-hero {
    width: 100%;
    height: 42.3vw;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0px 0px rgba(0,0,0,0.25);
    margin-top: 120px;
}

.ueber-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: #AC978A;
    z-index: 1;
}

.ueber-hero::after {
    content: '';
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    height: 15px;
    background-color: #AC978A;
    z-index: 1;
}

.ueber-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
/* ARBEITEN */
.arbeiten-titel {
    padding-top: 105px;
    padding-left: 135px;
    padding-bottom: 20px;
}

.arbeiten-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-style: italic;
    font-size: 128px;
    line-height: 1.3;
    letter-spacing: -0.05em;
    background: linear-gradient(180deg, #143A47 0%, #AC978A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    padding-bottom: 20px;
}

.arbeiten-grid {
    padding-left: 133px;
    padding-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.arbeiten-reihe {
    display: flex;
    flex-direction: row;
    gap: 17px;
    align-items: flex-start;
}


.arbeiten-spalte {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.arbeiten-bild-link {
    text-decoration: none;
    display: block;
}

.arbeiten-bild {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.arbeiten-bild img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease;
}

.arbeiten-bild .normal { opacity: 1; z-index: 1; }
.arbeiten-bild .hover { opacity: 0; z-index: 2; }
.arbeiten-bild:hover .normal { opacity: 0; }
.arbeiten-bild:hover .hover { opacity: 1; }

.arbeiten-wrapper {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}

.arbeiten-textblock {
    display: flex;
    flex-direction: column;
    gap: 0px;
    padding-top: 60px;
    padding-left: -40px;
    margin-left: -40px;
    width:501px;

}

.arbeiten-text {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: 58px;
    line-height: 106%;
    letter-spacing: -0.02em;
    color: #AC978A;
    text-decoration: none;
    display: block;
    margin-bottom: -5px;
}

.arbeiten-text:hover {
    opacity: 0.7;
}

.arbeiten-text.aktiv {
    opacity: 1;
    font-weight: 600;
}

/* LEISTUNGEN PAGE */
.leistungen-page-titel {
    padding-top: 130px;
    padding-left: 131px;
}

.leistungen-page-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-style: italic;
    font-size: 128px;
    line-height: 90%;
    letter-spacing: -0.05em;
    background: linear-gradient(180deg, #143A47 0%, #AC978A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    padding-bottom: 20px;
}

/* LEISTUNGEN KOMPLETT */
.leistungen-komplett {
    width: 100%;
    margin-top: 120px;
}

.leistungen-komplett img {
    width: 100%;
    height: auto;
    display: block;
}
/* PROJEKT SEITEN */
.projekt-seite {
    width: 100%;
    margin-top: 50px;
    
}


.projekt-seite img {
    width: 100%;
    height: auto;
    display: block;
}

/* KATEGORIE SEITEN */
.kategorie-titel {
    padding-top: 100px;
    padding-left: 130px;
    padding-bottom: 145px;
}

.kategorie-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-style: italic;
    font-size: 128px;
    line-height: 90%;
    letter-spacing: -0.05em;
    background: linear-gradient(180deg, #143A47 0%, #AC978A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    padding-bottom: 20px;
}

.kategorie-grid {
    padding-left: 160px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
.kategorie-reihe {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}

.kategorie-reihe .arbeiten-bild-link:nth-child(2) {
    margin-left: 00px;
}

.kategorie-reihe .arbeiten-bild-link:nth-child(3) {
    margin-left: 0px;
}

.kategorie-grid {
    padding-left: 160px;
    padding-top: 0px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}


/* DATENSCHUTZ */
.datenschutz-titel {
    padding-top: 111px;
    padding-left: 95px;
}

.datenschutz-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-style: italic;
    font-size: 128px;
    line-height: 90%;
    letter-spacing: -0.05em;
    background: linear-gradient(180deg, #143A47 0%, #AC978A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    padding-bottom: 20px;
}

.datenschutz-text {
    padding: 60px 95px;
    max-width: 1207px;
}

.datenschutz-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 36px;
    line-height: 114%;
    letter-spacing: -0.05em;
    color: #0E3944;
    margin-top: 40px;
    margin-bottom: 10px;
}

.datenschutz-text p,
.datenschutz-text li {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: 36px;
    line-height: 114%;
    letter-spacing: -0.05em;
    color: #0E3944;
    margin-bottom: 10px;
}

.datenschutz-text ul {
    padding-left: 40px;
}

/* IMPRESSUM */
.impressum-titel {
    padding-top: 125px;
    padding-left: 111px;
}

.impressum-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-style: italic;
    font-size: 128px;
    line-height: 90%;
    letter-spacing: -0.05em;
    background: linear-gradient(180deg, #143A47 0%, #AC978A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    padding-bottom: 20px;
}

.impressum-text {
    padding: 60px 111px;
    max-width: 1207px;
}

.impressum-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 36px;
    line-height: 114%;
    letter-spacing: -0.05em;
    color: #0E3944;
    margin-top: 40px;
    margin-bottom: 10px;
}

.impressum-text p {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: 36px;
    line-height: 114%;
    letter-spacing: -0.05em;
    color: #0E3944;
    margin-bottom: 10px;
}


/* COOKIE */
.cookie-titel {
    padding-top: 111px;
    padding-left: 111px;
}

.cookie-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-style: italic;
    font-size: 128px;
    line-height: 90%;
    letter-spacing: -0.05em;
    background: linear-gradient(180deg, #143A47 0%, #AC978A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    padding-bottom: 20px;
}

.cookie-text {
    padding: 60px 111px;
    max-width: 1207px;
}

.cookie-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 36px;
    line-height: 114%;
    letter-spacing: -0.05em;
    color: #0E3944;
    margin-top: 40px;
    margin-bottom: 10px;
}

.cookie-text p,
.cookie-text li {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: 36px;
    line-height: 114%;
    letter-spacing: -0.05em;
    color: #0E3944;
    margin-bottom: 10px;
}

.cookie-text ul {
    padding-left: 40px;
}



/* ==================== MOBILE (max-width: 500px) ==================== */


/* ==================== COOKIE BANNER BASIS (alle Geräte) ==================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #0E3944;
    padding: 30px 96px;
    display: none;
    align-items: center;
    justify-content: space-between;
    z-index: 9999;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.2);
}

.cookie-banner-text {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: 22px;
    color: #E3DFDC;
    line-height: 1.4;
    max-width: 700px;
}

.cookie-banner-text a {
    color: #AC978A;
    text-decoration: underline;
}

.cookie-banner-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.cookie-btn-accept {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 0.08em;
    color: #0E3944;
    background-color: #AC978A;
    border: none;
    padding: 12px 30px;
    cursor: pointer;
    text-transform: uppercase;
}

.cookie-btn-decline {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: 20px;
    letter-spacing: 0.08em;
    color: #AC978A;
    background-color: transparent;
    border: 2px solid #AC978A;
    padding: 12px 30px;
    cursor: pointer;
    text-transform: uppercase;
}

.cookie-btn-settings {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: 20px;
    letter-spacing: 0.08em;
    color: #E3DFDC;
    background-color: transparent;
    border: 2px solid #E3DFDC;
    padding: 12px 30px;
    cursor: pointer;
    text-transform: uppercase;
}

.cookie-btn-accept:hover { opacity: 0.85; }
.cookie-btn-decline:hover { opacity: 0.7; }
.cookie-btn-settings:hover { opacity: 0.7; }


.cookie-settings-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #E3DFDC;
    padding: 50px;
    z-index: 10000;
    width: 600px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.cookie-settings-popup h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 36px;
    color: #0E3944;
    margin-bottom: 30px;
}

.cookie-settings-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #AC978A;
}

.cookie-settings-item label {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: 24px;
    color: #0E3944;
}

.cookie-settings-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.cookie-settings-save {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 0.08em;
    color: #0E3944;
    background-color: #AC978A;
    border: none;
    padding: 12px 40px;
    cursor: pointer;
    text-transform: uppercase;
    margin-top: 20px;
    width: 100%;
}

.cookie-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 9998;
}

/* ==================== MOBILE (max-width: 500px) ==================== */
@media (max-width: 500px) {

/* NAVBAR */
.navbar {
    height: auto;
    padding: 10px 20px 10px 10px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 0;
    margin-bottom: 0;
    border-bottom: 2px solid #AC978A;
}

.nav-logo img {
    width: clamp(70px, 16vw, 96px);
    height: auto;
    margin-top: 0;
    margin-left: 0;
}

.nav-links {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: clamp(10px, 3.5vw, 25px);
    margin: 0;
    margin-left: clamp(8px, 3vw, 20px);
    width: auto;
    justify-content: flex-end;
}

.nav-links a {
    font-size: clamp(11px, 3vw, 14px);
    letter-spacing: 0.06em;
}

/* HERO */
.hero {
    margin-top: 12px;
    height: 300px;
    background-position: center top;
}

.hero-text {
    left: 18px;
    top: 43%;
    width: 90%;
}

/* SOCIAL MEDIA */
.social-media {
    display: grid;
    grid-template-areas:
        "center center"
        "left right";
    grid-template-columns: 1fr 1fr;
    padding: 30px 20px;
    row-gap: 20px;
    column-gap: clamp(40px, 20vw, 90px);
    justify-items: center;
    align-items: start;
}

.social-center {
    grid-area: center;
}

.social-center img {
    width: clamp(200px, 70vw, 280px);
    height: auto;
}

.social-left {
    grid-area: left;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    justify-self: end;
}

.social-right {
    grid-area: right;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    justify-self: start;
}

.social-item span {
    font-size: clamp(13px, 4vw, 16px);
}

.social-item img {
    width: 22px;
    height: 22px;
}

/* MISSION */
.mission {
    padding: 30px 20px;
}

.mission-title {
    font-size: clamp(32px, 10vw, 42px);
    margin-bottom: 20px;
}

.mission-text {
    font-size: clamp(13px, 3.8vw, 15px);
    letter-spacing: -0.03em;
}

.mission-icon {
    margin: 30px auto 1px;
    width: 22px;
    height: 18px;
}

/* LEISTUNGEN */
.leistungen {
    padding: 0 0 30px 0;
}

.leistungen-title {
    font-size: clamp(22px, 7vw, 30px);
    white-space: normal;
    padding: 0 20px;
    line-height: 1.2;
}

.leistungen-line {
    width: 80%;
    margin: 10px auto;
    height: 2px;
}

.leistungen-grid {
    grid-template-columns: repeat(1, 220px);
    gap: 35px;
    padding: 20px 0;
}

.leistung-img {
    width: 220px;
    height: 306px;
    border-radius: 110px;
}

.leistung-text {
    font-size: clamp(13px, 3.8vw, 15px);
    max-width: 220px;
}

/* PORTFOLIO */
.portfolio {
    height: 72vw;
    overflow-x: scroll;
    overflow-y: hidden;
    margin-top: 40px;
    -webkit-overflow-scrolling: touch;
}

.p1 { left: 0vw;   width: 72vw; }
.p2 { left: 60vw;  width: 67vw; }
.p3 { left: 110vw; width: 77vw; }
.p4 { left: 170vw; width: 75vw; }
.p5 { left: 220vw; width: 72vw; }

.portfolio-item:active .dark  { opacity: 0; }
.portfolio-item:active .light { opacity: 1; }

/* PORTFOLIO LINIE */
.portfolio-line {
    margin-top: 105px !important;
}

/* KONTAKT */
.kontakt {
    flex-direction: row;
    flex-wrap: wrap;
    padding: 30px 20px;
    gap: 0;
    justify-content: space-between;
    align-items: center;
}

.kontakt-title {
    font-size: clamp(22px, 6vw, 27px);
    white-space: normal;
    margin-bottom: 16px;
    width: 100%;
}

.kontakt-email,
.kontakt-phone {
    font-size: clamp(13px, 4vw, 16px);
    margin-bottom: -1px;
}

.kontakt-phone {
    margin-bottom: 15px;
}

.kontakt-adresse {
    font-size: clamp(13px, 4vw, 16px);
    margin-top: 25px;
}

.kontakt-logo {
    align-self: center;
}

.kontakt-logo img {
    width: clamp(90px, 25vw, 120px);
    height: auto;
}

.kontakt-social {
    margin-top: 20px;
    gap: 12px;
}

.kontakt-social img {
    width: 28px;
    height: 28px;
}

.kontakt-social a:last-child img {
    width: 32px;
    height: 32px;
}

/* FOOTER */
.footer {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px;
    gap: 10px;
    background-size: cover;
}

.footer-left {
    gap: 3px;
}

.footer-left a {
    font-size: clamp(11px, 3.2vw, 14px);
}

.footer-right {
    font-size: clamp(10px, 3vw, 13px);
    text-align: right;
    margin-top: 10px;
    line-height: 1.4;
}

/* KONTAKT PAGE */
.kontakt-page {
    height: auto;
    min-height: 10vw;
    margin-top: 25px;
}

.kontakt-content {
    flex-direction: row;
    flex-wrap: wrap;
    padding: 25px 20px;
    gap: 20px;
    align-items: center;
    margin-top: 0;
}

.kontakt-page-title {
    font-size: clamp(20px, 6vw, 26px);
    white-space: normal;
    margin-bottom: 15px;
}

.kontakt-page-email,
.kontakt-page-phone,
.kontakt-page-adresse {
    font-size: clamp(13px, 4vw, 16px);
}

.kontakt-page-phone {
    margin-bottom: 20px;
}

.kontakt-page-adresse {
    margin-bottom: 20px;
}

.kontakt-page-logo {
    align-self: center;
    margin-left: auto;
}

.kontakt-page-logo img {
    width: clamp(100px, 28vw, 130px);
    height: auto;
    margin-top: 0;
}

.kontakt-page-social img {
    width: 36px;
    height: 35px;
}

.kontakt-page-social a:last-child img {
    width: 40px;
    height: 39px;
}

/* ÜBER UNS */
.ueber-hero {
    width: 112%;
    height: auto;
    max-height: none;
    overflow: hidden;
    margin-top: 45px;
    padding: 0;
    margin-left: -20px;
}

.ueber-hero-img {
    width: 100%;
    height: auto;
    max-height: none;
    display: block;
}

.ueber-hero::before {
    height: 4px;
}

.ueber-hero::after {
    height: 8px;
    bottom: 12px;
}

/* ARBEITEN */
.arbeiten-titel {
    padding-left: 55px;
    padding-top: 35px;
    padding-bottom: 0;
}

.arbeiten-title {
    font-size: clamp(30px, 9vw, 40px);
    line-height: 1.1;
    padding-bottom: 20px;
}

.arbeiten-wrapper {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    overflow: hidden !important;
}

.arbeiten-textblock {
    order: -1;
    padding-left: 41px;
    padding-top: 10px;
    margin-left: 15px !important;
    margin-bottom: 25px;
    width: 100% !important;
    box-sizing: border-box;
}

.arbeiten-text {
    font-size: clamp(15px, 4.5vw, 19px);
    line-height: 138%;
    display: block;
    white-space: normal;
    word-break: break-word;
}

.arbeiten-grid {
    display: flex !important;
    flex-direction: column !important;
    padding: 5px 10px !important;
    gap: 95px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 50px !important;
}

.arbeiten-reihe {
    display: flex !important;
    flex-direction: row !important;
    gap: 8px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    margin-bottom: 0 !important;
    overflow: hidden !important;
}

.arbeiten-bild-link {
    flex: 1 !important;
    min-width: 0 !important;
    max-width: 50% !important;
    display: block !important;
    overflow: visible !important;
}

.arbeiten-bild {
    width: 100% !important;
    height: 60vw !important;
    position: relative !important;
    overflow: visible !important;
}

.arbeiten-bild img.normal,
.arbeiten-bild img.hover {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
}

.arbeiten-bild-link .normal {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.arbeiten-bild-link .hover {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.arbeiten-bild-link.touch-active .normal {
    opacity: 0 !important; 
}

.arbeiten-bild-link.touch-active .hover {
    opacity: 1 !important;
}

/* LEISTUNGEN PAGE */
.leistungen-komplett {
    margin-top: 30px;
}

/* PROJEKT SEITEN */
.projekt-seite {
    margin-top: 15px;
}

/* KATEGORIE */
.kategorie-titel {
    padding-top: 30px;
    padding-left: 15px;
    padding-bottom: 20px;
}

.kategorie-title {
    font-size: clamp(30px, 9vw, 40px);
}

.kategorie-grid {
    padding-left: 15px;
    padding-top: 15px;
    gap: 12px;
}

.kategorie-reihe {
    flex-direction: column;
    gap: 12px;
}

.kategorie-reihe .arbeiten-bild-link:nth-child(2),
.kategorie-reihe .arbeiten-bild-link:nth-child(3) {
    margin-left: 0;
}

/* DATENSCHUTZ / IMPRESSUM / COOKIE */
.datenschutz-titel,
.impressum-titel,
.cookie-titel {
    padding-top: 30px;
    padding-left: 15px;
}

.datenschutz-title,
.impressum-title,
.cookie-title {
    font-size: clamp(30px, 9vw, 40px);
}

.datenschutz-text,
.impressum-text,
.cookie-text {
    padding: 20px 15px;
}

.datenschutz-text h2,
.impressum-text h2,
.cookie-text h2 {
    font-size: clamp(15px, 4.5vw, 18px);
    margin-top: 25px;
}

.datenschutz-text p,
.datenschutz-text li,
.impressum-text p,
.cookie-text p,
.cookie-text li {
    font-size: clamp(13px, 3.8vw, 15px);
}

/* COOKIE BANNER MOBILE */
.cookie-banner {
    flex-direction: column;
    padding: 15px;
    gap: 12px;
}

.cookie-banner-text {
    font-size: clamp(11px, 3.2vw, 13px);
    line-height: 1.4;
}

.cookie-banner-buttons {
    flex-direction: column;
    width: 100%;
    gap: 8px;
}

.cookie-btn-accept,
.cookie-btn-decline,
.cookie-btn-settings {
    font-size: clamp(11px, 3.2vw, 13px);
    padding: 10px;
    width: 100%;
    text-align: center;
}

.cookie-settings-popup {
    width: 92%;
    padding: 25px 15px;
}

.cookie-settings-popup h3 {
    font-size: clamp(20px, 5.5vw, 24px);
    margin-bottom: 20px;
}

.cookie-settings-item label {
    font-size: clamp(13px, 4vw, 16px);
}

.cookie-settings-save {
    font-size: clamp(13px, 4vw, 16px);
    padding: 10px;
}

} /* ==================== END MOBILE ==================== */



/* ============================================================
   BREAKPOINT 2: GroÃŸes Phone / kleines Tablet (501px â€“ 768px)
   ============================================================ */
@media (min-width: 501px) and (max-width: 768px) {

/* NAVBAR */
.navbar {
    height: auto;
    padding: 15px 30px 15px 20px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 0;
    margin-bottom: 0;
    border-bottom: 3px solid #AC978A;
}

.nav-logo img {
    width: clamp(100px, 16vw, 130px);
    height: auto;
    margin-top: 0;
    margin-left: 0;
}

.nav-links {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: clamp(15px, 4vw, 35px);
    margin: 0;
    margin-left: clamp(10px, 3vw, 25px);
    width: auto;
    justify-content: flex-end;
}

.nav-links a {
    font-size: clamp(13px, 2.5vw, 17px);
    letter-spacing: 0.08em;
}

/* HERO */
.hero {
    margin-top: 15px;
    height: clamp(350px, 55vw, 480px);
    background-position: center top;
}

.hero-text {
    left: clamp(25px, 5vw, 50px);
    top: 40%;
    width: 85%;
}

/* SOCIAL MEDIA */
.social-media {
    display: grid;
    grid-template-areas:
        "center center"
        "left right";
    grid-template-columns: 1fr 1fr;
    padding: 40px 30px;
    row-gap: 30px;
    column-gap: clamp(30px, 10vw, 60px);
    justify-items: center;
    align-items: start;
}

.social-center {
    grid-area: center;
}

.social-center img {
    width: clamp(280px, 65vw, 450px);
    height: auto;
}

.social-left {
    grid-area: left;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    justify-self: end;
}

.social-right {
    grid-area: right;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    justify-self: start;
}

.social-item span {
    font-size: clamp(18px, 4vw, 28px);
}

.social-item img {
    width: clamp(28px, 5vw, 40px);
    height: clamp(28px, 5vw, 40px);
}

/* MISSION */
.mission {
    padding: 50px 40px;
}

.mission-title {
    font-size: clamp(60px, 14vw, 100px);
    margin-bottom: 25px;
}

.mission-text {
    font-size: clamp(16px, 2.8vw, 22px);
    letter-spacing: -0.04em;
}

.mission-icon {
    margin: 60px auto 1px;
    width: 28px;
    height: 22px;
}

/* LEISTUNGEN */
.leistungen {
    padding: 0 0 40px 0;
}

.leistungen-title {
    font-size: clamp(40px, 9vw, 65px);
    white-space: normal;
    padding: 0 30px;
    line-height: 1.2;
}

.leistungen-line {
    width: 85%;
    margin: 15px auto;
    height: 2px;
}

.leistungen-grid {
    grid-template-columns: repeat(2, 240px);
    gap: 50px 40px;
    padding: 30px 0;
}

.leistung-img {
    width: 240px;
    height: 335px;
    border-radius: 120px;
}

.leistung-text {
    font-size: clamp(16px, 3vw, 22px);
    max-width: 240px;
}

/* PORTFOLIO */
.portfolio {
    height: 72vw;
    overflow-x: scroll;
    overflow-y: hidden;
    margin-top: 60px;
    -webkit-overflow-scrolling: touch;
}

.p1 { left: 0vw;   width: 72vw; }
.p2 { left: 60vw;  width: 67vw; }
.p3 { left: 110vw; width: 77vw; }
.p4 { left: 170vw; width: 75vw; }
.p5 { left: 220vw; width: 72vw; }

.portfolio-item:active .dark  { opacity: 0; }
.portfolio-item:active .light { opacity: 1; }

/* PORTFOLIO LINIE */
.portfolio-line {
    margin-top: 80px !important;
}

/* KONTAKT */
.kontakt {
    flex-direction: row;
    flex-wrap: wrap;
    padding: 40px 30px;
    gap: 0;
    justify-content: space-between;
    align-items: center;
}

.kontakt-title {
    font-size: clamp(30px, 7vw, 50px);
    white-space: normal;
    margin-bottom: 20px;
    width: 100%;
}

.kontakt-email,
.kontakt-phone {
    font-size: clamp(18px, 4vw, 30px);
    margin-bottom: 0;
}

.kontakt-phone {
    margin-bottom: 20px;
}

.kontakt-adresse {
    font-size: clamp(18px, 4vw, 30px);
    margin-top: 20px;
}

.kontakt-logo {
    align-self: center;
}

.kontakt-logo img {
    width: clamp(130px, 25vw, 200px);
    height: auto;
}

.kontakt-social {
    margin-top: 30px;
    gap: 15px;
}

.kontakt-social img {
    width: 36px;
    height: 36px;
}

.kontakt-social a:last-child img {
    width: 40px;
    height: 40px;
}

/* FOOTER */
.footer {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding: 25px 30px;
    gap: 15px;
    background-size: cover;
}

.footer-left {
    gap: 4px;
}

.footer-left a {
    font-size: clamp(14px, 2.8vw, 22px);
}

.footer-right {
    font-size: clamp(13px, 2.5vw, 20px);
    text-align: right;
    margin-top: 10px;
    line-height: 1.4;
}

/* KONTAKT PAGE */
.kontakt-page {
    height: auto;
    min-height: 80vw;
    margin-top: 20px;
}

.kontakt-content {
    flex-direction: row;
    flex-wrap: wrap;
    padding: 30px 25px;
    gap: 20px;
    align-items: center;
    margin-top: 0;
}

.kontakt-page-title {
    font-size: clamp(28px, 7vw, 50px);
    white-space: normal;
    margin-bottom: 20px;
}

.kontakt-page-email,
.kontakt-page-phone,
.kontakt-page-adresse {
    font-size: clamp(18px, 4vw, 30px);
}

.kontakt-page-phone {
    margin-bottom: 25px;
}

.kontakt-page-adresse {
    margin-bottom: 25px;
}

.kontakt-page-logo {
    align-self: center;
    margin-left: auto;
}

.kontakt-page-logo img {
    width: clamp(130px, 25vw, 200px);
    height: auto;
    margin-top: 0;
}

.kontakt-page-social img {
    width: 45px;
    height: 44px;
}

.kontakt-page-social a:last-child img {
    width: 50px;
    height: 49px;
}

/* ÃœBER UNS */
.ueber-hero {
    width: 100%;
    height: auto;
    max-height: none;
    overflow: hidden;
    margin-top: 60px;
    padding: 0;
}

.ueber-hero-img {
    width: 100%;
    height: auto;
    display: block;
}

.ueber-hero::before {
    height: 5px;
}

.ueber-hero::after {
    height: 10px;
    bottom: 20px;
}

/* ARBEITEN */
.arbeiten-titel {
    padding-left: clamp(30px, 5vw, 60px);
    padding-top: 50px;
    padding-bottom: 10px;
}

.arbeiten-title {
    font-size: clamp(50px, 11vw, 80px);
    line-height: 1.1;
    padding-bottom: 20px;
}

.arbeiten-wrapper {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    overflow: hidden !important;
}

.arbeiten-textblock {
    order: -1;
    padding-left: clamp(30px, 5vw, 60px);
    padding-top: 15px;
    margin-left: 0 !important;
    margin-bottom: 30px;
    width: 100% !important;
    box-sizing: border-box;
}

.arbeiten-text {
    font-size: clamp(22px, 5vw, 36px);
    line-height: 130%;
    display: block;
    white-space: normal;
    word-break: break-word;
}

.arbeiten-grid {
    display: flex !important;
    flex-direction: column !important;
    padding: 10px 20px !important;
    gap: 60px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: clamp(30px, 5vw, 60px) !important;
}

.arbeiten-reihe {
    display: flex !important;
    flex-direction: row !important;
    gap: 12px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    margin-bottom: 0 !important;
    overflow: hidden !important;
}

.arbeiten-bild-link {
    flex: 1 !important;
    min-width: 0 !important;
    max-width: 50% !important;
    display: block !important;
    overflow: visible !important;
}

.arbeiten-bild {
    width: 100% !important;
    height: 55vw !important;
    position: relative !important;
    overflow: visible !important;
}

.arbeiten-bild img.normal,
.arbeiten-bild img.hover {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
}

.arbeiten-bild-link .normal {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.arbeiten-bild-link .hover {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.arbeiten-bild-link.touch-active .normal { opacity: 0 !important; }
.arbeiten-bild-link.touch-active .hover  { opacity: 1 !important; }

/* LEISTUNGEN PAGE */
.leistungen-komplett {
    margin-top: 40px;
}

/* PROJEKT SEITEN */
.projekt-seite {
    margin-top: 20px;
}

/* KATEGORIE */
.kategorie-titel {
    padding-top: 50px;
    padding-left: 30px;
    padding-bottom: 30px;
}

.kategorie-title {
    font-size: clamp(50px, 11vw, 80px);
}

.kategorie-grid {
    padding-left: 30px;
    padding-top: 20px;
    gap: 20px;
}

.kategorie-reihe {
    flex-direction: column;
    gap: 20px;
}

.kategorie-reihe .arbeiten-bild-link:nth-child(2),
.kategorie-reihe .arbeiten-bild-link:nth-child(3) {
    margin-left: 0;
}

/* DATENSCHUTZ / IMPRESSUM / COOKIE */
.datenschutz-titel,
.impressum-titel,
.cookie-titel {
    padding-top: 50px;
    padding-left: 30px;
}

.datenschutz-title,
.impressum-title,
.cookie-title {
    font-size: clamp(50px, 11vw, 80px);
}

.datenschutz-text,
.impressum-text,
.cookie-text {
    padding: 30px 30px;
}

.datenschutz-text h2,
.impressum-text h2,
.cookie-text h2 {
    font-size: clamp(18px, 3.5vw, 26px);
    margin-top: 30px;
}

.datenschutz-text p,
.datenschutz-text li,
.impressum-text p,
.cookie-text p,
.cookie-text li {
    font-size: clamp(15px, 2.8vw, 22px);
}

/* COOKIE BANNER */
.cookie-banner {
    flex-direction: column;
    padding: 20px 30px;
    gap: 15px;
}

.cookie-banner-text {
    font-size: clamp(14px, 2.5vw, 18px);
    line-height: 1.4;
}

.cookie-banner-buttons {
    flex-direction: row;
    width: 100%;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-btn-accept,
.cookie-btn-decline,
.cookie-btn-settings {
    font-size: clamp(13px, 2.5vw, 17px);
    padding: 10px 20px;
}

.cookie-settings-popup {
    width: 88%;
    padding: 30px 20px;
}

} /* END 501px â€“ 768px */


/* ============================================================
   BREAKPOINT 3: Tablet / iPad (769px â€“ 1024px)
   ============================================================ */
@media (min-width: 769px) and (max-width: 1024px) {

/* NAVBAR */
.navbar {
    height: clamp(90px, 12vw, 120px);
    padding-left: 30px;
    padding-right: clamp(40px, 6vw, 70px);
    padding-bottom: 10px;
}

.nav-logo img {
    width: clamp(140px, 16vw, 175px);
    height: auto;
    margin-top: 20px;
}

.nav-links {
    gap: clamp(40px, 8vw, 90px);
    margin-top: 20px;
}

.nav-links a {
    font-size: clamp(17px, 2.2vw, 22px);
    letter-spacing: 0.10em;
}

/* HERO */
.hero {
    height: clamp(400px, 55vw, 560px);
}

.hero-text {
    left: clamp(60px, 8vw, 100px);
    top: 38%;
    width: 85%;
}

/* SOCIAL MEDIA */
.social-media {
    padding: clamp(40px, 6vw, 60px) clamp(60px, 10vw, 120px);
    justify-content: space-between;
}

.social-center img {
    width: clamp(350px, 45vw, 480px);
    height: auto;
}

.social-item span {
    font-size: clamp(28px, 4vw, 40px);
}

.social-item img {
    width: clamp(35px, 5vw, 50px);
    height: clamp(35px, 5vw, 50px);
}

/* MISSION */
.mission {
    padding: clamp(50px, 7vw, 80px) clamp(60px, 9vw, 100px);
}

.mission-title {
    font-size: clamp(80px, 13vw, 130px);
    margin-bottom: 30px;
}

.mission-text {
    font-size: clamp(18px, 2.5vw, 24px);
    letter-spacing: -0.05em;
}

.mission-icon {
    margin: clamp(70px, 10vw, 100px) auto 1px;
    width: 28px;
    height: 22px;
}

/* LEISTUNGEN */
.leistungen-title {
    font-size: clamp(60px, 9vw, 85px);
}

.leistungen-line {
    width: clamp(600px, 80vw, 800px);
}

.leistungen-grid {
    grid-template-columns: repeat(3, clamp(200px, 26vw, 280px));
    gap: clamp(60px, 9vw, 100px) clamp(40px, 7vw, 80px);
    padding: 30px 0;
}

.leistung-img {
    width: clamp(200px, 26vw, 280px);
    height: clamp(280px, 36vw, 390px);
    border-radius: 140px;
}

.leistung-text {
    font-size: clamp(18px, 2.5vw, 24px);
    max-width: clamp(200px, 26vw, 280px);
}

/* PORTFOLIO */
.portfolio {
    height: 26.4vw;
    margin-top: clamp(80px, 12vw, 130px);
    overflow: hidden;
}

.p1 { left: -1vw;  width: 29.6vw; }
.p2 { left: 18vw;  width: 25.0vw; }
.p3 { left: 36vw;  width: 28.9vw; }
.p4 { left: 56vw;  width: 28.3vw; }
.p5 { left: 74vw;  width: 28.5vw; }

/* PORTFOLIO LINIE */
.portfolio-line {
    margin-top: clamp(100px, 14vw, 150px);
}

/* KONTAKT */
.kontakt {
    padding: clamp(40px, 6vw, 60px) clamp(50px, 7vw, 80px);
}

.kontakt-title {
    font-size: clamp(45px, 7vw, 62px);
    margin-bottom: 40px;
}

.kontakt-email,
.kontakt-phone,
.kontakt-adresse {
    font-size: clamp(28px, 4vw, 40px);
}

.kontakt-social {
    margin-top: clamp(60px, 10vw, 100px);
    gap: 18px;
}

.kontakt-social img {
    width: clamp(38px, 5vw, 50px);
    height: clamp(38px, 5vw, 50px);
}

.kontakt-social a:last-child img {
    width: clamp(42px, 5.5vw, 55px);
    height: clamp(42px, 5.5vw, 55px);
}

.kontakt-logo img {
    width: clamp(250px, 32vw, 360px);
    height: auto;
}

/* FOOTER */
.footer {
    padding: clamp(30px, 4vw, 50px) clamp(50px, 7vw, 80px);
}

.footer-left a,
.footer-right {
    font-size: clamp(20px, 2.8vw, 28px);
}

/* KONTAKT PAGE */
.kontakt-page {
    height: 58.5vw;
    margin-top: -15px;
}

.kontakt-content {
    padding: clamp(6vw, 8vw, 10vw) clamp(4vw, 6vw, 7vw);
}

.kontakt-page-title {
    font-size: clamp(50px, 7vw, 72px);
    margin-bottom: 25px;
}

.kontakt-page-email,
.kontakt-page-phone,
.kontakt-page-adresse {
    font-size: clamp(28px, 4vw, 42px);
}

.kontakt-page-social img {
    width: clamp(55px, 7vw, 75px);
    height: clamp(54px, 6.8vw, 73px);
}

.kontakt-page-social a:last-child img {
    width: clamp(62px, 8vw, 84px);
    height: clamp(60px, 7.8vw, 82px);
}

.kontakt-page-logo img {
    width: clamp(220px, 28vw, 310px);
    height: auto;
    margin-top: 30px;
}

/* ÃœBER UNS */
.ueber-hero {
    height: 42.3vw;
    margin-top: clamp(60px, 9vw, 100px);
}

.ueber-hero::before {
    height: 6px;
}

.ueber-hero::after {
    height: 12px;
    bottom: 30px;
}

/* ARBEITEN */
.arbeiten-titel {
    padding-top: clamp(60px, 9vw, 90px);
    padding-left: clamp(60px, 9vw, 100px);
    padding-bottom: 15px;
}

.arbeiten-title {
    font-size: clamp(70px, 11vw, 105px);
    padding-bottom: 15px;
}

.arbeiten-grid {
    padding-left: clamp(60px, 9vw, 100px);
    padding-top: clamp(30px, 5vw, 50px);
    gap: clamp(20px, 3vw, 30px);
}

.arbeiten-textblock {
    padding-top: clamp(30px, 5vw, 50px);
    margin-left: clamp(-30px, -3vw, -20px) !important;
    width: clamp(280px, 38vw, 420px) !important;
}

.arbeiten-text {
    font-size: clamp(30px, 5vw, 48px);
}

/* LEISTUNGEN PAGE */
.leistungen-komplett {
    margin-top: clamp(60px, 9vw, 100px);
}

/* PROJEKT SEITEN */
.projekt-seite {
    margin-top: clamp(25px, 4vw, 40px);
}

/* KATEGORIE */
.kategorie-titel {
    padding-top: clamp(60px, 9vw, 90px);
    padding-left: clamp(60px, 9vw, 100px);
    padding-bottom: clamp(60px, 10vw, 100px);
}

.kategorie-title {
    font-size: clamp(70px, 11vw, 105px);
}

.kategorie-grid {
    padding-left: clamp(70px, 10vw, 110px);
    gap: clamp(30px, 5vw, 50px);
}

/* DATENSCHUTZ / IMPRESSUM / COOKIE */
.datenschutz-titel,
.impressum-titel,
.cookie-titel {
    padding-top: clamp(60px, 9vw, 90px);
    padding-left: clamp(50px, 7vw, 80px);
}

.datenschutz-title,
.impressum-title,
.cookie-title {
    font-size: clamp(70px, 11vw, 105px);
}

.datenschutz-text,
.impressum-text,
.cookie-text {
    padding: clamp(30px, 5vw, 50px) clamp(50px, 7vw, 80px);
}

.datenschutz-text h2,
.impressum-text h2,
.cookie-text h2 {
    font-size: clamp(22px, 3vw, 30px);
}

.datenschutz-text p,
.datenschutz-text li,
.impressum-text p,
.cookie-text p,
.cookie-text li {
    font-size: clamp(20px, 2.8vw, 28px);
}

/* COOKIE BANNER */
.cookie-banner {
    padding: 25px 60px;
}

.cookie-banner-text {
    font-size: clamp(16px, 2.2vw, 20px);
}

.cookie-btn-accept,
.cookie-btn-decline,
.cookie-btn-settings {
    font-size: clamp(15px, 2vw, 18px);
    padding: 10px 20px;
}

.cookie-settings-popup {
    width: 80%;
    max-width: 550px;
}

} /* END 769px â€“ 1024px */


/* ============================================================
   BREAKPOINT 4: Kleiner Desktop / MacBook (1025px â€“ 1280px)
   ============================================================ */
@media (min-width: 1025px) and (max-width: 1280px) {

/* NAVBAR */
.navbar {
    height: clamp(110px, 11vw, 140px);
    padding-left: 20px;
    padding-right: clamp(50px, 6vw, 75px);
    padding-bottom: 10px;
}

.nav-logo img {
    width: clamp(155px, 15vw, 185px);
    height: auto;
    margin-top: 30px;
}

.nav-links {
    gap: clamp(70px, 9vw, 130px);
    margin-top: 28px;
}

.nav-links a {
    font-size: clamp(20px, 2.2vw, 24px);
    letter-spacing: 0.11em;
}

/* HERO */
.hero {
    height: clamp(480px, 50vw, 600px);
}

.hero-text {
    left: clamp(80px, 10vw, 130px);
    top: 38%;
    width: 85%;
}

/* SOCIAL MEDIA */
.social-media {
    padding: clamp(50px, 5vw, 65px) clamp(100px, 13vw, 170px) clamp(50px, 5vw, 65px) clamp(80px, 11vw, 130px);
}

.social-center img {
    width: clamp(430px, 44vw, 540px);
    height: auto;
}

.social-item span {
    font-size: clamp(35px, 4vw, 44px);
}

.social-item img {
    width: clamp(44px, 5vw, 54px);
    height: clamp(44px, 5vw, 54px);
}

/* MISSION */
.mission {
    padding: clamp(60px, 6vw, 80px) clamp(80px, 10vw, 130px);
}

.mission-title {
    font-size: clamp(100px, 12vw, 140px);
    margin-bottom: 35px;
}

.mission-text {
    font-size: clamp(22px, 2.5vw, 26px);
}

.mission-icon {
    margin: clamp(90px, 10vw, 120px) auto 1px;
}

/* LEISTUNGEN */
.leistungen-title {
    font-size: clamp(75px, 8vw, 95px);
}

.leistungen-line {
    width: clamp(750px, 80vw, 950px);
}

.leistungen-grid {
    grid-template-columns: repeat(3, clamp(260px, 27vw, 320px));
    gap: clamp(80px, 10vw, 110px) clamp(60px, 9vw, 100px);
}

.leistung-img {
    width: clamp(260px, 27vw, 320px);
    height: clamp(365px, 38vw, 445px);
    border-radius: 160px;
}

.leistung-text {
    font-size: clamp(22px, 2.5vw, 28px);
    max-width: clamp(260px, 27vw, 320px);
}

/* PORTFOLIO */
.portfolio {
    height: 26.4vw;
    margin-top: clamp(110px, 14vw, 160px);
}

/* PORTFOLIO LINIE */
.portfolio-line {
    margin-top: clamp(130px, 14vw, 165px);
}

/* KONTAKT */
.kontakt {
    padding: clamp(40px, 5vw, 55px) clamp(60px, 8vw, 90px);
}

.kontakt-title {
    font-size: clamp(52px, 6vw, 65px);
    margin-bottom: 55px;
}

.kontakt-email,
.kontakt-phone,
.kontakt-adresse {
    font-size: clamp(35px, 4vw, 44px);
}

.kontakt-social {
    margin-top: clamp(90px, 11vw, 125px);
    gap: 20px;
}

.kontakt-social img {
    width: clamp(44px, 5vw, 54px);
    height: clamp(44px, 5vw, 54px);
}

.kontakt-logo img {
    width: clamp(320px, 35vw, 420px);
    height: auto;
}

/* FOOTER */
.footer {
    padding: clamp(30px, 4vw, 42px) clamp(60px, 8vw, 90px);
}

.footer-left a,
.footer-right {
    font-size: clamp(24px, 2.8vw, 32px);
}

/* KONTAKT PAGE */
.kontakt-page {
    height: 58.5vw;
}

.kontakt-page-title {
    font-size: clamp(62px, 7vw, 80px);
}

.kontakt-page-email,
.kontakt-page-phone,
.kontakt-page-adresse {
    font-size: clamp(36px, 4vw, 46px);
}

.kontakt-page-logo img {
    width: clamp(260px, 28vw, 330px);
    height: auto;
    margin-top: 35px;
}

/* ÃœBER UNS */
.ueber-hero {
    height: 42.3vw;
    margin-top: clamp(70px, 9vw, 105px);
}

/* ARBEITEN */
.arbeiten-titel {
    padding-top: clamp(70px, 8vw, 100px);
    padding-left: clamp(80px, 10vw, 120px);
}

.arbeiten-title {
    font-size: clamp(88px, 10vw, 116px);
}

.arbeiten-grid {
    padding-left: clamp(80px, 10vw, 120px);
    padding-top: clamp(40px, 5vw, 55px);
    gap: clamp(22px, 3vw, 28px);
}

.arbeiten-textblock {
    padding-top: clamp(40px, 5vw, 55px);
    margin-left: clamp(-35px, -3.5vw, -25px) !important;
    width: clamp(340px, 38vw, 470px) !important;
}

.arbeiten-text {
    font-size: clamp(40px, 5vw, 52px);
}

/* KATEGORIE */
.kategorie-titel {
    padding-top: clamp(70px, 8vw, 100px);
    padding-left: clamp(80px, 10vw, 118px);
    padding-bottom: clamp(80px, 11vw, 125px);
}

.kategorie-title {
    font-size: clamp(88px, 10vw, 116px);
}

.kategorie-grid {
    padding-left: clamp(90px, 12vw, 145px);
    gap: clamp(40px, 5vw, 55px);
}

/* DATENSCHUTZ / IMPRESSUM / COOKIE */
.datenschutz-titel,
.impressum-titel,
.cookie-titel {
    padding-top: clamp(70px, 9vw, 100px);
    padding-left: clamp(60px, 8vw, 88px);
}

.datenschutz-title,
.impressum-title,
.cookie-title {
    font-size: clamp(88px, 10vw, 116px);
}

.datenschutz-text,
.impressum-text,
.cookie-text {
    padding: clamp(40px, 5vw, 55px) clamp(60px, 8vw, 88px);
}

.datenschutz-text h2,
.impressum-text h2,
.cookie-text h2 {
    font-size: clamp(26px, 3vw, 33px);
}

.datenschutz-text p,
.datenschutz-text li,
.impressum-text p,
.cookie-text p,
.cookie-text li {
    font-size: clamp(26px, 3vw, 33px);
}

/* LEISTUNGEN PAGE */
.leistungen-komplett {
    margin-top: clamp(70px, 9vw, 110px);
}

} /* END 1025px â€“ 1280px */


/* ============================================================
   BREAKPOINT 5: GroÃŸer Desktop (min-width: 1920px)
   ============================================================ */
@media (min-width: 1920px) {

.navbar {
    height: 180px;
    padding-right: 120px;
}

.nav-logo img {
    width: 250px;
    height: 190px;
}

.nav-links a {
    font-size: 32px;
}

.nav-links {
    gap: 200px;
}

.hero {
    height: 800px;
}

.social-center img {
    width: 700px;
    height: 500px;
}

.social-item span {
    font-size: 58px;
}

.mission-title {
    font-size: 180px;
}

.mission-text {
    font-size: 34px;
}

.leistungen-title {
    font-size: 120px;
}

.leistungen-line {
    width: 1200px;
}

.leistungen-grid {
    grid-template-columns: repeat(3, 420px);
    gap: 140px 130px;
}

.leistung-img {
    width: 420px;
    height: 580px;
}

.leistung-text {
    font-size: 36px;
}

.kontakt-title {
    font-size: 90px;
}

.kontakt-email,
.kontakt-phone,
.kontakt-adresse {
    font-size: 60px;
}

.kontakt-logo img {
    width: 560px;
    height: 670px;
}

.footer-left a,
.footer-right {
    font-size: 42px;
}

.kontakt-page-title {
    font-size: 105px;
}

.kontakt-page-email,
.kontakt-page-phone,
.kontakt-page-adresse {
    font-size: 62px;
}

} /* END min-width: 1920px */