/* ==========================================================
   GIUSI ATELIER
   Version 0.4
   ========================================================== */

:root{

    --color-bg:#f7f3ee;
    --color-white:#ffffff;

    --color-text:#2c2b2a;
    --color-text-light:#777777;

    --color-gold:#722f37;
    --color-gold-dark:#808080;

    --color-border:#ece7df;

    --container:1280px;

    --radius:12px;

    --transition:.35s ease;

}

/* ==========================================================
   RESET
   ========================================================== */

*,
*::before,
*::after{

    margin:0;
    padding:0;

    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:"Inter",sans-serif;

    color:var(--color-text);

    background:var(--color-bg);

    line-height:1.7;

    overflow-x:hidden;

}

img{

    display:block;

    width:100%;

    height:auto;

}

a{

    color:inherit;

    text-decoration:none;

}

ul{

    list-style:none;

}

.container{

    width:min(92%,var(--container));

    margin:auto;

}

/* ==========================================================
   TYPOGRAPHY
   ========================================================== */

h1,
h2,
h3,
.logo-title{

    font-family:"Cormorant Garamond",serif;

}

h1{

    font-size:clamp(3.8rem,7vw,6.4rem);

    line-height:.95;

    font-weight:600;

}

h2{

    font-size:clamp(2.8rem,5vw,4rem);

    line-height:1.05;

    margin-bottom:30px;

}

p{

    color:var(--color-text-light);

    font-size:1.05rem;

}

.section-label{

    display:inline-block;

    color:var(--color-gold);

    letter-spacing:4px;

    font-size:.8rem;

    margin-bottom:18px;

    text-transform:uppercase;

}

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

.site-header{

    position:fixed;

    left:0;

    top:0;

    width:100%;

    z-index:999;

    transition:var(--transition);

    background:rgba(247,243,238,.88);

    backdrop-filter:blur(14px);

    border-bottom:1px solid rgba(0,0,0,.04);

}

.site-header .container{

    display:flex;

    align-items:center;

    justify-content:space-between;

    height:95px;

}

.logo{

    display:flex;

    flex-direction:column;

}

.logo-title{

    letter-spacing:10px;

    font-size:2rem;

    color:#222;

}

.logo-subtitle{

    letter-spacing:7px;

    color:var(--color-gold);

    font-size:.8rem;

    margin-top:-4px;

}

.main-nav{

    display:flex;

    gap:38px;

}

.main-nav a{

    position:relative;

    font-size:.95rem;

    transition:var(--transition);

}

.main-nav a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-7px;

    width:0;

    height:1px;

    background:var(--color-gold);

    transition:var(--transition);

}

.main-nav a:hover{

    color:var(--color-gold);

}

.main-nav a:hover::after{

    width:100%;

}

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

.hero{

    position:relative;

    min-height:100svh;

    padding-top:120px;

    padding-bottom:80px;

    height:auto;

    display:flex;

    align-items:center;

    overflow:hidden;

}

.hero::before{

    content:"";

    position:absolute;

    inset:0;

    background:url("../images/hero.jpg") center center/cover;

    transform:scale(1.05);

}

.hero-overlay{

    position:absolute;

    inset:0;

    background: #000000;

    linear-gradient(
        rgba(0,0,0,.555),
        rgba(0,0,0,.555)
    );

}

.hero-content{

    position:relative;

    z-index:2;

    max-width:760px;

    color:#fff;

}

.hero-eyebrow{

    color:#fff;

    letter-spacing:5px;

    font-size:.8rem;

    margin-bottom:24px;

}

.hero-text{

    color:rgba(255,255,255,.82);

    max-width:560px;

    margin-top:28px;

    font-size:1.15rem;

}

/* ==========================================================
   BUTTONS
   ========================================================== */

.hero-buttons{

    display:flex;

    gap:20px;

    margin-top:45px;
       
    flex-direction:column;

    width:100%;

}

.hero-commission::before{

    background:
        url("../images/auftrag-hero.jpg")
        center center/cover;

}

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:18px 34px;

    border-radius:100px;

    transition:var(--transition);

    font-weight:500;

    width:100%;

    max-width:340px;

}

.btn-gold{

    background:var(--color-gold);

    color:white;

}

.btn-gold:hover{

    background:var(--color-gold-dark);

    transform:translateY(-3px);

}

.btn-light{

    background: rgba(255,255,255, .12);
    color: #2c2b2a;
    border: 1px solid rgba(44,43,42, .18);
    backdrop-filter: blur(6px);
    box-shadow: 0 8px 24px rgba(0,0,0,.04);

}

.btn-light:hover{

    background:rgba(200,164,106,.12);
    border-color: rgba(200,164,106,.45);
    color: var(--color-gold);
    transform: translateY(-2px)

    color:#222;

}

/* ==========================================================
   ÜBER GIUSI
========================================================== */

.about-preview{

    padding:140px 0;

    background:#fff;

}

.split{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:90px;

    align-items:center;

}

.about-image{

    position:relative;

}

.about-image img{

    border-radius:18px;

    box-shadow:0 40px 70px rgba(0,0,0,.15);

}

.image-placeholder{

    height:680px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:18px;

    background:#efeae2;

    color:#999;

    border:2px dashed #d7cfc3;

}

.about-text h2{

    margin-bottom:35px;

}

.about-text p{

    margin-bottom:24px;

    max-width:520px;

}

.about-text .btn{

    margin-top:20px;

}

/* ==========================================================
   GALERIE
========================================================== */

.gallery-preview{

    padding:140px 0;

    background:var(--color-bg);

}

.gallery-preview h2{

    margin-bottom:60px;

}

.gallery-grid{

    display:grid;

    grid-template-columns:1.35fr 1fr;

    grid-template-rows:420px 420px;

    gap:32px;

}

.art-card{

    position:relative;

    overflow:hidden;

    border-radius:18px;

    background:#fff;

    box-shadow:0 20px 50px rgba(0,0,0,.08);

    transition:.35s;

}

.art-card img{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

    transition:.8s;

}

.art-card:hover{

    transform:translateY(-12px);

}

.art-card:hover img{

    transform:scale(1.08);

}

.center{

    display:flex;

    justify-content:center;

    margin-top:70px;

}

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

.cta{

    padding:170px 0;

    text-align:center;

    background:#222;

    color:white;

}

.cta h2{

    color:white;

    margin-bottom:25px;

}

.cta p{

    color:rgba(255,255,255,.75);

    max-width:650px;

    margin:0 auto 50px;

}

.cta .btn{

    min-width:240px;

}

/* ==========================================================
   SCROLL ANIMATIONEN
========================================================== */

.fade-up{

    opacity:0;

    transform:translateY(60px);

    transition:1s ease;

}

.fade-up.active{

    opacity:1;

    transform:translateY(0);

}

.fade{

    opacity:0;

    transition:1s ease;

}

.fade.active{

    opacity:1;

}

/* ==========================================================
   DEKORATIVE ELEMENTE
========================================================== */

.gold-line{

    width:120px;

    height:2px;

    background:var(--color-gold);

    margin:35px 0;

}

.brush{

    position:absolute;

    width:180px;

    height:180px;

    border-radius:50%;

    background:rgba(200,164,106,.08);

    filter:blur(8px);

    z-index:-1;

}

.shadow-soft{

    box-shadow:0 25px 60px rgba(0,0,0,.10);

}

.rounded{

    border-radius:18px;

}

/* ==========================================================
   SECTION SPACING
========================================================== */

section{

    position:relative;

}

section + section{

    border-top:1px solid rgba(0,0,0,.03);

}

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

/* ==========================================================
   SCROLLBAR
========================================================== */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#efebe6;

}

::-webkit-scrollbar-thumb{

    background:var(--color-gold);

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--color-gold-dark);

}

/* ==========================================================
   TEXT MARKIERUNG
========================================================== */

::selection{

    background:var(--color-gold);

    color:#fff;

}

/* ==========================================================
   SANFTE EINBLENDUNGEN
========================================================== */

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

.animate{

    animation:fadeUp .8s ease forwards;

}

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

@media (max-width:1100px){

    .split{

        grid-template-columns:1fr;

        gap:60px;

    }

    .gallery-grid{

        grid-template-columns:1fr 1fr;

    }

    .footer-grid{

        grid-template-columns:1fr;

        gap:50px;

    }

}

@media (max-width:820px){

    .site-header .container{

        height:90px;

    }

    .main-nav{

        display:none;

    }

    h1{

        font-size:3.5rem;

    }

    h2{

        font-size:2.6rem;

    }

    .hero{

        min-height:850px;

    }

    .hero-buttons{

        flex-direction:column;

        align-items:flex-start;

    }

    .gallery-grid{

        grid-template-columns:1fr;

    }

    .art-card img{

        height:360px;

    }

}

@media (max-width:560px){

    body{

        font-size:15px;

    }

    .hero{

        min-height:760px;

    }

    .hero-content{

        text-align:left;

    }

    h1{

        font-size:2.8rem;

    }

    h2{

        font-size:2.1rem;

    }

    .about-preview,
    .gallery-preview,
    .cta{

        padding:90px 0;

    }

    .btn{

        width:100%;

    }

}

@media(max-width:1000px){

.process-grid{

    grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:650px){

.process-grid{

    grid-template-columns:1fr;

}
    
   .process .container{

    position:relative;

}

.process-line{

    position:absolute;

    top:265px;

    left:10%;

    width:80%;

    height:2px;

    background:linear-gradient(
        to right,
        transparent,
        var(--color-gold),
        transparent
    );

    z-index:0;

}

.process-grid{

    position:relative;

    z-index:2;

} 

}

@media(max-width:900px){

    .possibilities-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:650px){

    .possibilities-grid{

        grid-template-columns:1fr;

    }

}

/* ==========================================================
   VALUES
========================================================== */

.values{

    padding:120px 0;

    background:#fff;

}

.values .container{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.value{

    background:#faf8f5;

    padding:45px 35px;

    border-radius:18px;

    border:1px solid var(--color-border);

}

.value:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 45px rgba(0,0,0,.08);

}

.value h3{

 margin-bottom:18px;

    font-size:2rem;

}

.value p{

    margin-bottom:0;

}

.value::before{

    content:"";

    display:block;

    width:55px;

    height:2px;

    background:var(--color-gold);

    margin-bottom:22px;

}

/* ==========================================================
   QUOTE
========================================================== */

.quote{

    padding:180px 0;

    background:#f3eee7;

    text-align:center;

}

.quote blockquote{

    max-width:900px;

    margin:auto;

    font-family:"Cormorant Garamond",serif;

    font-size:3rem;

    line-height:1.3;

    color:#222;

}

.quote span{

    display:block;

    margin-top:35px;

    letter-spacing:4px;

    color:var(--color-gold);

    text-transform:uppercase;

    font-size:.8rem;

}

/* ==========================================================
   IMAGE HOVER OVERLAY
========================================================== */

.art-card{

    position:relative;

}

.art-card::after{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        transparent,
        rgba(0,0,0,.55)
    );

    opacity:0;

    transition:.4s;

}

.art-card:hover::after{

    opacity:1;

}

.art-title{

    position:absolute;

    left:30px;

    bottom:25px;

    color:#fff;

    z-index:5;

    opacity:0;

    transform:translateY(15px);

    transition:.35s;

    font-family:"Cormorant Garamond",serif;

    font-size:2rem;

}

.art-card:hover .art-title{

    opacity:1;

    transform:translateY(0);

}

/* ==========================================================
   KEN BURNS HERO
========================================================== */

@keyframes kenburns{

    0%{

        transform:scale(1);

    }

    100%{

        transform:scale(1.12);

    }

}

.hero::before{

    animation:kenburns 18s ease-in-out infinite alternate;

}

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

@media(max-width:1000px){

.values .container{

display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;

}

}

@media(max-width:650px){

.values .container{

grid-template-columns:1fr;

}

.quote blockquote{

font-size:2.2rem;

}

}

.fade-up{

    opacity:0;

    transform:translateY(40px);

}

.fade-up.active{

    opacity:1;

    transform:translateY(0);

}

.lion{

    grid-row:span 2;

}

.cat{

    grid-column:2;

}

.dancer{

    grid-column:2;

}

.woman{

    grid-column:1;

}

.footer-social{

    display:flex;

    flex-direction:column;

    align-items:flex-start;

}

.footer-social a{

    display:flex;

    align-items:center;

    gap:12px;

    color:rgba(255,255,255,.75);

    transition:.3s;

}

.footer-social h4{

    margin-bottom:24px;

}

.footer-social a:hover{

    color:var(--color-gold);

    transform:translateX(6px);

}

.footer-social i{

    width:22px;

    text-align:center;

    font-size:1.1rem;

}

.social-icons{

    display:flex;

    gap:16px;

}

.social-icons a{

    width:52px;

    height:52px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    text-decoration:none;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.12);

    color:#fff;

    font-size:1.3rem;

    transition:.35s ease;

}

.social-icons a:hover{

    background:var(--color-gold);

    border-color:var(--color-gold);

    transform:translateY(-5px);

    box-shadow:0 10px 30px rgba(200,164,106,.35);

}

.site-footer{
    background:#171412;
    color:#e7e1d9;
    padding:90px 0 30px;
    position:relative;
}

.site-footer::before{
    content:"";
    position:absolute;
    top:0;
    left:50%;
    transform:translateX(-50%);
    width:180px;
    height:2px;
    background:var(--color-gold);
}
.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:60px;
}

.footer-logo{
    display:flex;
    flex-direction:column;
    margin-bottom:24px;
}

.footer-logo span{
    font-family:"Cormorant Garamond",serif;
    font-size:2.2rem;
    letter-spacing:8px;
    color:#fff;
}

.footer-logo small{
    letter-spacing:7px;
    color:var(--color-gold);
    font-size:.8rem;
    margin-top:4px;
}

.footer-logo::after{
    content:"";
    width:90px;
    height:2px;
    background:var(--color-gold);
    margin-top:16px;
}

.footer-brand p{
    color:rgba(255,255,255,.7);
    line-height:1.8;
}

.footer-nav ul{
    list-style:none;
    padding:0;
}

.footer-nav li{
    margin-bottom:12px;
}

.footer-nav a,
.footer-contact p{
    color:rgba(255,255,255,.7);
}

.footer-nav a:hover{
    color:var(--color-gold);
}

.footer-bottom{
    margin-top:70px;
    padding-top:25px;
    border-top:1px solid rgba(255,255,255,.08);
    text-align:center;
    color:rgba(255,255,255,.55);
}

.footer-bottom a{
    color:inherit;
}

.footer-bottom a:hover{
    color:var(--color-gold);
}

.hero-line{

    width:140px;

    height:2px;

    background:var(--color-gold);

    margin:40px 0;

}



.hero-text{

    font-size:1.25rem;

    line-height:1.9;

    max-width:620px;

    margin-top:35px;

    color:rgba(255,255,255,.88);

}

.hero-buttons{

    margin-top:55px;

}

.scroll-indicator{

    margin-top:90px;

    display:flex;

    align-items:center;

    gap:18px;

    color:rgba(255,255,255,.75);

    letter-spacing:3px;

    text-transform:uppercase;

    font-size:.75rem;

}

.mouse{

    width:26px;

    height:42px;

    border:1px solid rgba(255,255,255,.5);

    border-radius:20px;

    display:flex;

    justify-content:center;

    padding-top:7px;

}

.wheel{

    width:3px;

    height:8px;

    border-radius:10px;

    background:var(--color-gold);

    animation:scrollWheel 2s infinite;

}

@keyframes scrollWheel{

    0%{
        opacity:0;
        transform:translateY(0);
    }

    50%{
        opacity:1;
    }

    100%{
        opacity:0;
        transform:translateY(12px);
    }

}

/* ==========================================================
   PROCESS
========================================================== */

.process{

    padding:140px 0;
    background:#fff;

}

.process-grid{

    margin-top:80px;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:35px;

}

.step{

    position:relative;

    padding:55px 38px;

    background:#faf8f5;

    border-radius:18px;

    border:1px solid var(--color-border);

    transition:.35s;

}

.step:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 45px rgba(0,0,0,.08);

}

.step-number{

    width:74px;

    height:74px;

    border-radius:50%;

    background:var(--color-gold);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-family:"Cormorant Garamond",serif;

    font-size:2rem;

    margin-bottom:30px;

    box-shadow:0 12px 30px rgba(200,164,106,.35);

    position:relative;

    z-index:3;

}

.step h3{

    margin-bottom:18px;

    font-size:1.6rem;

}

.step p{

    line-height:1.8;

}

/* ==========================================================
   POSSIBILITIES
========================================================== */

.possibilities{

    padding:140px 0;

    background:var(--color-bg);

}

.section-intro{

    max-width:700px;

    margin:0 auto 70px;

    text-align:center;

}

.possibilities h2{

    text-align:center;

}

.possibilities .section-label{

    display:block;

    text-align:center;

}

.possibilities-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.possibility{

    background:#fff;

    border:2px solid rgba(114,47,55,.22);

    border-radius:22px;

    padding:40px 35px;

    min-height:180px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

    position:relative;

    overflow:hidden;

    transition:.35s ease;

}

.possibility::before{

    content:"";

    width:70px;

    height:2px;

    background:#722F37;

    margin-bottom:28px;

}



.possibility:hover{

    transform:translateY(-8px);

    border-color:#722F37;

    box-shadow:0 18px 40px rgba(0,0,0,.08);

}




.possibility:hover::before{

    background:rgba(0,0,0,.08);

}


.possibility h3{

    color:var(--color-text);

    font-size:2rem;

    font-family:"Cormorant Garamond",serif;

    font-weight:600;

    margin-bottom:18px;

}


.possibility h3::after{

    content:"";

    display:block;

    width:55px;

    height:2px;

    background:#722F37;

    margin:18px auto 0;

}



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

.faq{

    padding:140px 0;

    background:#fff;

}

.faq h2{

    text-align:center;
    margin-bottom:70px;

}

.faq .section-label{

    display:block;
    text-align:center;

}

.faq-list{

    max-width:900px;
    margin:auto;

}

.faq-item{

    border-bottom:1px solid var(--color-border);

}

.faq-item summary{

    list-style:none;
    cursor:pointer;

    padding:28px 0;

    font-size:1.2rem;

    font-weight:600;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.faq-item summary::-webkit-details-marker{

    display:none;

}

.faq-item summary::after{

    content:"+";

    font-size:2rem;

    color:var(--color-gold);

    transition:.3s;

}

.faq-item[open] summary::after{

    transform:rotate(45deg);

}

.faq-item p{

    padding:0 0 28px;

    max-width:700px;

    line-height:1.8;

}

/* ==========================================================
   COMMISSION CTA
========================================================== */

.commission-cta{

    padding:160px 0;

    background:#171412;

    text-align:center;

    color:#fff;

}

.commission-cta h2{

    color:#fff;

    max-width:850px;

    margin:0 auto 30px;

}

.commission-cta p{

    max-width:650px;

    margin:0 auto 50px;

    color:rgba(255,255,255,.75);

    font-size:1.1rem;

    line-height:1.8;

}

.commission-cta .btn{

    min-width:260px;

}




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

.contact-hero{

    padding:180px 0 100px;

    background:#F7F4F2;

    text-align:center;

}

.contact-hero h1{

    max-width:900px;

    margin:20px auto 35px;

}

.contact-hero p{

    max-width:700px;

    margin:auto;

    font-size:1.15rem;

    line-height:1.9;

}

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

.contact-section{

    padding:120px 0 160px;

    background:#fff;

}

.contact-grid{

    display:grid;

    grid-template-columns:420px 1fr;

    gap:70px;

    align-items:start;

}

.contact-info{

    padding:45px;

    background:#F7F4F2;

    border-radius:22px;

    border:1px solid var(--color-border);

}

.contact-info h2{

    margin-bottom:25px;

}

.contact-info>p{

    margin-bottom:40px;

}

.contact-item{

    padding:22px 0;

    border-bottom:1px solid var(--color-border);

}

.contact-item:last-child{

    border:none;

}

.contact-item h4{

    margin-bottom:8px;

    color:#722F37;

    letter-spacing:2px;

    text-transform:uppercase;

    font-size:.8rem;

}

.contact-item p{

    margin:0;

}

.contact-form-wrapper{

    background:#fff;

    padding:55px;

    border-radius:22px;

    border:1px solid var(--color-border);

    box-shadow:0 25px 60px rgba(0,0,0,.05);

}

.form-group{

    margin-bottom:28px;

}

.form-group label{

    display:block;

    margin-bottom:10px;

    font-size:.9rem;

    font-weight:600;

    color:#555;

}

.form-group input,
.form-group textarea{

    width:100%;

    padding:18px 20px;

    border:1px solid #ddd;

    border-radius:14px;

    background:#fafafa;

    font-size:1rem;

    transition:.3s;

    font-family:inherit;

}

.form-group input:focus,
.form-group textarea:focus{

    outline:none;

    border-color:#722F37;

    background:#fff;

    box-shadow:0 0 0 5px rgba(114,47,55,.08);

}

textarea{

    resize:vertical;

    min-height:180px;

}

.contact-form-wrapper .btn{

    width:100%;

    padding:20px;

    font-size:1rem;

}

@media(max-width:1000px){

.contact-grid{

    grid-template-columns:1fr;

}

.contact-info{

    order:2;

}

.contact-form-wrapper{

    order:1;

}

}

input[type="file"]{

    width:100%;

    padding:18px;

    border:2px dashed rgba(114,47,55,.25);

    border-radius:14px;

    background:#faf8f8;

    cursor:pointer;

    transition:.3s;

}

input[type="file"]:hover{

    border-color:#722F37;

    background:#fff;

}

input[type="file"]::file-selector-button{

    background:#722F37;

    color:#fff;

    border:none;

    padding:12px 18px;

    border-radius:10px;

    cursor:pointer;

    margin-right:18px;

    transition:.3s;

}

input[type="file"]::file-selector-button:hover{

    background:#5d2530;

}

.hero-contact::before{

    background:
        url("../images/kontakt-hero.jpg")
        center center/cover;

}

/* ==========================================================
   GALLERY HERO
========================================================== */

.hero-gallery::before{

    background:
        url("../images/gallery-hero.jpg")
        center center/cover;

}

/* ==========================================================
   GALLERY PAGE
========================================================== */

.gallery-page{

    padding:120px 0 150px;

    background:#fff;

}

.gallery-page h2{

    margin-bottom:65px;

}


/* ==========================================================
   MASONRY GALERIE
========================================================== */

.gallery-masonry{

    columns:3;

    column-gap:30px;

}


.gallery-item{

    position:relative;

    overflow:hidden;

    margin:0 0 30px;

    break-inside:avoid;

    cursor:pointer;

    border-radius:18px;

    background:#f5f1ec;

    box-shadow:
        0 12px 35px rgba(0,0,0,.07);

    transition:
        transform .4s ease,
        box-shadow .4s ease;

}


/* Bild */

.gallery-item img{

    width:100%;

    height:auto;

    display:block;

    transition:
        transform .7s ease,
        filter .5s ease;

}


/* Hover */

.gallery-item:hover{

    transform:translateY(-6px);

    box-shadow:
        0 22px 45px rgba(0,0,0,.12);

}


.gallery-item:hover img{

    transform:scale(1.04);

    filter:brightness(.9);

}


/* ==========================================================
   HOVER OVERLAY
========================================================== */

.gallery-item::after{

    content:"";

    position:absolute;

    inset:0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.55),
            rgba(0,0,0,.08) 45%,
            transparent 70%
        );

    opacity:0;

    transition:.4s ease;

    pointer-events:none;

}


.gallery-item:hover::after{

    opacity:1;

}


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

@media(max-width:1000px){

    .gallery-page{

        padding:100px 0 120px;

    }

    .gallery-masonry{

        columns:2;

        column-gap:24px;

    }

    .gallery-item{

        margin-bottom:24px;

    }

}

/* ==========================================================
   DESKTOP GALERIE
========================================================== */

.gallery-slider{

    display:flex;

    overflow:hidden;

    width:100%;

    border-radius:18px;

    touch-action:pan-y;

}
.gallery-slide{

    position:relative;

    overflow:hidden;

    border-radius:18px;

    background:#f5f1ec;

    box-shadow:0 12px 35px rgba(0,0,0,.07);

    cursor:pointer;

}

.gallery-slide img{

    width:100%;

    height:420px;

    object-fit:cover;

    display:block;

    transition:
        transform .7s ease,
        filter .5s ease;

}

.gallery-slide:hover img{

    transform:scale(1.04);

    filter:brightness(.92);

}

.gallery-slider-controls{

    display:none;

}

@media(max-width:650px){

    .gallery-page{

        padding:80px 0 100px;

    }

    .gallery-page h2{

        margin-bottom:40px;

    }


    /* ----------------------------------------------------------
       MOBILE GALERIE SLIDER
    ---------------------------------------------------------- */

    .gallery-masonry{

        display:none;

    }

.gallery-slider {

    display:flex;

    overflow-x:hidden;

    overflow-y:hidden;

    width:100%;

    border-radius:18px;

    touch-action:pan-y;

    scroll-snap-type:x mandatory;

}

    .gallery-slide{

        flex:0 0 100%;

        width:100%;

        scroll-snap-align:start;

        display:flex;

        align-items:center;

        justify-content:center;

        background:#f5f1ec;

        border-radius:18px;

        overflow:hidden;

        cursor:pointer;

    }

    .gallery-slide img{

        width:100%;

        height:auto;

        max-height:70vh;

        object-fit:contain;

        display:block;

    }


    /* ----------------------------------------------------------
       SLIDER STEUERUNG
    ---------------------------------------------------------- */

    .gallery-slider-controls{

        display:flex;

        align-items:center;

        justify-content:center;

        gap:22px;

        margin-top:25px;

    }

    .gallery-prev,
    .gallery-next{

        width:42px;

        height:42px;

        border:none;

        border-radius:50%;

        background:#f5f1ec;

        color:var(--color-text);

        font-size:1.8rem;

        line-height:1;

        display:flex;

        align-items:center;

        justify-content:center;

        cursor:pointer;

        transition:.3s ease;

    }

    .gallery-prev:hover,
    .gallery-next:hover{

        background:var(--color-gold);

        color:#fff;

    }


    /* ----------------------------------------------------------
       PUNKTE
    ---------------------------------------------------------- */

    .gallery-dots{

        display:flex;

        align-items:center;

        justify-content:center;

        gap:8px;

    }

    .gallery-dot{

        width:7px;

        height:7px;

        border-radius:50%;

        background:#d8d0c7;

        transition:.3s ease;

    }

    .gallery-dot.active{

        width:20px;

        border-radius:10px;

        background:var(--color-gold);

    }

}



/* ==========================================================
   LIGHTBOX
========================================================== */

.lightbox{

    position:fixed;

    inset:0;

    background:rgba(15,15,15,.94);

    display:flex;

    align-items:center;

    justify-content:center;

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:9999;

}

.lightbox.active{

    opacity:1;

    visibility:visible;

}

.lightbox-image{

    max-width:88%;

    max-height:88%;

    border-radius:16px;

    box-shadow:0 25px 60px rgba(0,0,0,.35);

}

.lightbox-close{

    position:absolute;

    top:35px;

    right:45px;

    font-size:3rem;

    color:#fff;

    cursor:pointer;

    transition:.3s;

}

.lightbox-close:hover{

    color:var(--color-gold);

}

.lightbox-prev,
.lightbox-next{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:60px;

    height:60px;

    border:none;

    border-radius:50%;

    background:rgba(255,255,255,.12);

    color:#fff;

    font-size:2rem;

    cursor:pointer;

    transition:.3s;

}

.lightbox-prev{

    left:40px;

}

.lightbox-next{

    right:40px;

}

.lightbox-prev:hover,
.lightbox-next:hover{

    background:var(--color-gold);

}

/* ==========================================================
   MOBILE MENÜ – FINAL
========================================================== */

@media (max-width:900px){

    .menu-toggle{
        display:flex !important;
        position:relative;
        width:44px;
        height:44px;
        margin:0;
        padding:0;
        border:0;
        background:transparent !important;
        flex-direction:column;
        align-items:flex-end;
        justify-content:center;
        gap:6px;
        cursor:pointer;
        z-index:10003;
        -webkit-appearance:none;
        appearance:none;
    }

    .menu-toggle span{
        display:block !important;
        width:28px !important;
        height:2px !important;
        margin:0 !important;
        padding:0 !important;
        background:#2c2b2a !important;
        border-radius:2px;
        opacity:1 !important;
        visibility:visible !important;
        transform-origin:center;
        transition:
            transform .3s ease,
            opacity .25s ease,
            background .3s ease;
    }

    .menu-toggle.active{
        position:fixed;
        top:20px;
        right:4%;
        z-index:10003;
    }

    .menu-toggle.active span{
        background:#fff !important;
    }

    .menu-toggle.active span:nth-child(1){
        transform:translateY(8px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2){
        opacity:0 !important;
    }

    .menu-toggle.active span:nth-child(3){
        transform:translateY(-8px) rotate(-45deg);
    }

    .main-nav{
        position:fixed;
        inset:0;
        width:100%;
        height:100vh;
        height:100dvh;
        margin:0;
        padding:100px 30px 60px;
        background:#080808 !important;
        display:flex !important;
        flex-direction:column;
        align-items:center;
        justify-content:center;
        gap:0;
        box-sizing:border-box;
        visibility:hidden;
        opacity:0;
        pointer-events:none;
        transform:translateY(-10px);
        transition:
            opacity .3s ease,
            transform .3s ease,
            visibility .3s ease;
        z-index:10000;
        box-shadow:none;
    }

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

    .main-nav a{
        display:block;
        width:100%;
        padding:16px 10px;
        text-align:center;
        color:#fff !important;
        font-family:"Cormorant Garamond",serif;
        font-size:2.2rem;
        font-weight:400;
        letter-spacing:.5px;
        text-decoration:none;
        transition:
            color .25s ease,
            transform .25s ease;
    }

    .main-nav a:hover{
        color:var(--color-gold) !important;
        transform:none;
    }

    .main-nav a.active{
        color:var(--color-gold) !important;
        font-weight:400;
    }

    .main-nav a.active::after{
        display:none;
    }

    body.menu-open{
        overflow:hidden;
    }

}

/* ==========================================================
   STARTSEITE – MOBILE OPTIMIERUNG
========================================================== */

@media (max-width:650px){

    /* ----------------------------------------------------------
       HERO
    ---------------------------------------------------------- */

    .hero{

        min-height:420px;

        padding-top:110px;
        padding-bottom:60px;

        display:flex;
        align-items:center;

    }

    .hero-content{

        width:100%;
        max-width:100%;

    }

    .hero-eyebrow{

        font-size:.7rem;
        letter-spacing:2.5px;
        line-height:1.5;
        margin-bottom:22px;

    }

    .hero-text{

        font-size:1.15rem;
        line-height:1.6;
        margin-top:18px;
        max-width:100%;

    }

    .hero-line{

        width:80px;
        height:2px;
        margin:26px 0;

    }

    .hero-buttons{

        margin-top:32px;
        gap:12px;

    }

    .hero-buttons .btn{

        width:100%;
        max-width:none;
        padding:16px 22px;

    }


    /* ----------------------------------------------------------
       ÜBER GIUSI
    ---------------------------------------------------------- */

    .about-preview{

        padding:80px 0;

    }

    .split{

        gap:45px;

    }

    .about-image img{

        width:100%;
        border-radius:16px;

    }

    .about-text h2{

        margin-bottom:25px;

    }

    .about-text p{

        margin-bottom:18px;
        font-size:1rem;
        line-height:1.75;

    }


    /* ----------------------------------------------------------
       WERTE
    ---------------------------------------------------------- */

    .values{

        padding:80px 0;

    }

    .values .container{

        grid-template-columns:1fr;
        gap:18px;

    }

    .value{

        padding:30px 26px;
        border-radius:16px;

    }

    .value h3{

        font-size:1.8rem;
        margin-bottom:12px;

    }

    .value p{

        font-size:.98rem;
        line-height:1.7;

    }


    /* ----------------------------------------------------------
       GALERIE-HINWEIS
    ---------------------------------------------------------- */

    .gallery-preview{

        padding:80px 0;

        text-align:center;

    }

    .gallery-preview h2{

        margin-bottom:25px;

    }

    .gallery-intro{

        max-width:500px;

        margin:0 auto;

        font-size:1rem;

        line-height:1.75;

    }

    .gallery-preview .center{

        margin-top:35px;

    }

    .gallery-preview .btn{

        width:100%;
        max-width:none;

    }


    /* ----------------------------------------------------------
       CTA
    ---------------------------------------------------------- */

    .cta{

        padding:90px 0;

    }

    .cta h2{

        font-size:2.4rem;
        margin-bottom:20px;

    }

    .cta p{

        font-size:1rem;
        line-height:1.75;
        margin-bottom:35px;

    }

    .cta .btn{

        width:100%;
        max-width:none;

    }

}

/* ==========================================================
   FOOTER – MOBILE OPTIMIERUNG
========================================================== */

@media (max-width:650px){

    .site-footer{

        width:100%;

        overflow:hidden;

    }

    .site-footer .container{

        width:100%;

        max-width:100%;

        padding-left:24px;
        padding-right:24px;

        box-sizing:border-box;

    }

    .footer-grid{

        display:grid;

        grid-template-columns:1fr;

        gap:42px;

        width:100%;

        margin:0;

    }

    .footer-brand,
    .footer-nav,
    .footer-contact,
    .footer-social{

        width:100%;

        min-width:0;

        max-width:100%;

        box-sizing:border-box;

    }

    .footer-brand p{

        line-height:1.7;

    }

    .footer-nav ul{

        margin:0;
        padding:0;

        list-style:none;

    }

    .footer-nav li{

        margin-bottom:10px;

    }

    .footer-contact p{

        margin-bottom:8px;

        overflow-wrap:anywhere;

    }

    .footer-social{

        width:100%;

    }

    .social-icons{

        display:flex;

        gap:18px;

    }

    .footer-bottom{

        width:100%;

        box-sizing:border-box;

        padding-left:24px;
        padding-right:24px;

        text-align:center;

    }

    .footer-bottom p{

        line-height:1.7;

        overflow-wrap:anywhere;

    }

}
/* ==========================================================
   AUFTRAGSARBEITEN – MOBILE HERO
========================================================== */

@media (max-width:650px){

    .hero-commission{

        min-height:420px;

        padding-top:90px;
        padding-bottom:55px;

    }

    .hero-commission .hero-content{

        width:100%;
        max-width:100%;

    }

    .hero-commission .hero-eyebrow{

        font-size:.68rem;

        letter-spacing:2.2px;

        line-height:1.5;

        margin-bottom:22px;

    }

    .hero-commission .hero-text{

        font-size:1.08rem;

        line-height:1.75;

        max-width:100%;

        margin-top:20px;

    }

    .hero-commission .hero-line{

        width:80px;

        margin:28px 0;

    }

    .hero-commission .hero-buttons{

        margin-top:32px;

        gap:12px;

        width:100%;

    }

    .hero-commission .hero-buttons .btn{

        width:100%;

        max-width:none;

        padding:16px 22px;

    }

}

/* ==========================================================
   AUFTRAGSARBEITEN – MOBILE ABLAUF
========================================================== */

@media (max-width:650px){

    .process{

        padding:80px 0;

    }

    .process .section-label{

        margin-bottom:14px;

    }

    .process h2{

        font-size:2.25rem;

        line-height:1.1;

        margin-bottom:45px;

    }

    .process-grid{

        display:grid;

        grid-template-columns:1fr;

        gap:18px;

        margin-top:0;

    }

    .process-line{

        display:none;

    }

    .step{

        padding:30px 26px;

        border-radius:16px;

    }

    .step-number{

        width:58px;
        height:58px;

        font-size:1.6rem;

        margin-bottom:20px;

    }

    .step h3{

        font-size:1.65rem;

        margin-bottom:10px;

    }

    .step p{

        font-size:.98rem;

        line-height:1.7;

    }

}


/* ==========================================================
   AUFTRAGSARBEITEN – MOBILE MÖGLICHKEITEN
========================================================== */

@media (max-width:650px){

    .possibilities{

        padding:80px 0;

    }

    .possibilities h2{

        font-size:2.25rem;

        line-height:1.1;

        margin-bottom:20px;

    }

    .possibilities .section-intro{

        margin:0 auto 40px;

        font-size:1rem;

        line-height:1.75;

    }

    .possibilities-grid{

        grid-template-columns:1fr;

        gap:14px;

    }

    .possibility{

        min-height:0;

        padding:28px 24px;

        border-radius:16px;

    }

    .possibility::before{

        width:50px;

        margin-bottom:18px;

    }

    .possibility h3{

        font-size:1.75rem;

        margin-bottom:0;

    }

    .possibility h3::after{

        margin-top:14px;

    }

}


/* ==========================================================
   AUFTRAGSARBEITEN – MOBILE FAQ
========================================================== */

@media (max-width:650px){

    .faq{

        padding:80px 0;

    }

    .faq h2{

        font-size:2.25rem;

        line-height:1.1;

        margin-bottom:40px;

    }

    .faq-item summary{

        padding:22px 0;

        font-size:1.05rem;

        line-height:1.4;

        gap:20px;

    }

    .faq-item summary::after{

        flex-shrink:0;

        font-size:1.7rem;

    }

    .faq-item p{

        padding:0 30px 22px 0;

        font-size:.98rem;

        line-height:1.7;

    }

}


/* ==========================================================
   KONTAKT – MOBILE OPTIMIERUNG
========================================================== */

@media (max-width:650px){

    /* ----------------------------------------------------------
       HERO
    ---------------------------------------------------------- */

    .hero-contact{

        min-height:420px;

        padding-top:90px;
        padding-bottom:55px;

    }

    .hero-contact .hero-content{

        width:100%;
        max-width:100%;

    }

    .hero-contact .hero-eyebrow{

        font-size:.7rem;

        letter-spacing:2.5px;

        line-height:1.5;

        margin-bottom:20px;

    }

    .hero-contact .hero-text{

        font-size:1.08rem;

        line-height:1.75;

        max-width:100%;

        margin-top:20px;

    }

    .hero-contact .hero-line{

        width:80px;

        margin:28px 0;

    }

    .hero-contact .hero-buttons{

        margin-top:30px;

        width:100%;

    }

    .hero-contact .hero-buttons .btn{

        width:100%;
        max-width:none;

    }


    /* ----------------------------------------------------------
       KONTAKTBEREICH
    ---------------------------------------------------------- */

    .contact-section{

        padding:70px 0 90px;

    }

    .contact-grid{

        grid-template-columns:1fr;

        gap:35px;

    }


    /* ----------------------------------------------------------
       KONTAKTINFO
    ---------------------------------------------------------- */

    .contact-info{

        padding:30px 24px;

        border-radius:18px;

    }

    .contact-info > p{

        margin-bottom:25px;

        font-size:1rem;

        line-height:1.7;

    }

    .contact-item{

        padding:18px 0;

    }


    /* ----------------------------------------------------------
       FORMULAR
    ---------------------------------------------------------- */

    .contact-form-wrapper{

        width:100%;

        padding:30px 20px;

        border-radius:18px;

        box-sizing:border-box;

    }

    .form-group{

        width:100%;

        margin-bottom:22px;

    }

    .form-group input,
    .form-group textarea{

        width:100%;

        max-width:100%;

        box-sizing:border-box;

        padding:16px 17px;

        font-size:16px;

    }

    .form-group textarea{

        min-height:160px;

    }


    /* ----------------------------------------------------------
       BILDER-UPLOAD
    ---------------------------------------------------------- */

    input[type="file"]{

        width:100%;

        box-sizing:border-box;

        padding:14px;

        font-size:.9rem;

    }

    input[type="file"]::file-selector-button{

        display:block;

        margin:0 0 12px 0;

        width:100%;

    }


    .form-group small{

        display:block;

        margin-top:10px;

        line-height:1.6;

        font-size:.82rem;

    }


    /* ----------------------------------------------------------
       ABSENDE-BUTTON
    ---------------------------------------------------------- */

    .contact-form-wrapper .btn{

        width:100%;

        max-width:none;

        padding:17px 20px;

    }

}


/* ==========================================================
   MOBILE MENÜ – MODERNES FULLSCREEN DESIGN
========================================================== */

@media (max-width:650px){

    /* Menü-Button */

    .menu-toggle{

        width:44px;
        height:44px;

        padding:0;

        border:0;

        background:transparent;

        display:flex;

        flex-direction:column;

        align-items:flex-end;

        justify-content:center;

        gap:6px;

        cursor:pointer;

        z-index:1001;

    }

    .menu-toggle span{

        display:block;

        height:2px;

        background:#fff;

        transition:
            width .3s ease,
            transform .3s ease,
            opacity .3s ease;

    }

    .menu-toggle span:nth-child(1){

        width:28px;

    }

    .menu-toggle span:nth-child(2){

        width:20px;

    }

    .menu-toggle span:nth-child(3){

        width:28px;

    }


    /* ----------------------------------------------------------
       FULLSCREEN NAVIGATION
    ---------------------------------------------------------- */

    .main-nav{

        position:fixed;

        inset:0;

        width:100%;
        height:100dvh;

        background:#080808;

        display:flex;

        align-items:center;

        justify-content:center;

        flex-direction:column;

        padding:100px 30px 60px;

        box-sizing:border-box;

        visibility:hidden;

        opacity:0;

        pointer-events:none;

        transform:translateY(-15px);

        transition:
            opacity .35s ease,
            transform .35s ease,
            visibility .35s ease;

        z-index:1000;

    }


    .main-nav.active{

        visibility:visible;

        opacity:1;

        pointer-events:auto;

        transform:translateY(0);

    }


    /* ----------------------------------------------------------
       NAVIGATIONSLINKS
    ---------------------------------------------------------- */

    .main-nav ul{

        width:100%;

        margin:0;
        padding:0;

        list-style:none;

        display:flex;

        flex-direction:column;

        align-items:center;

        gap:8px;

    }

    .main-nav li{

        width:100%;

        text-align:center;

    }

    .main-nav a{

        display:block;

        width:100%;

        padding:14px 10px;

        color:#fff;

        font-family:var(--font-heading);

        font-size:2rem;

        font-weight:400;

        letter-spacing:.5px;

        text-decoration:none;

        transition:
            color .25s ease,
            transform .25s ease;

    }

    .main-nav a:hover{

        color:var(--color-gold);

        transform:translateX(4px);

    }


    /* ----------------------------------------------------------
       AKTIVE SEITE
    ---------------------------------------------------------- */

    .main-nav a.active{

        color:var(--color-gold);

    }


    /* ----------------------------------------------------------
       MENÜ-BUTTON ÜBER DEM MENÜ
    ---------------------------------------------------------- */

    .site-header{

        position:relative;

        z-index:1002;

    }


    .main-nav.active ~ .menu-toggle{

        z-index:1003;

    }

}


/* ==========================================================
   MOBILE MENÜ – BUTTON / X
========================================================== */

@media (max-width:650px){

    .menu-toggle{

        position:relative;

        z-index:1003;

    }

    .menu-toggle span{

        transform-origin:center;

    }

    /* Geöffnet */

    .main-nav.active ~ .menu-toggle span:nth-child(1){

        transform:
            translateY(8px)
            rotate(45deg);

        width:28px;

    }

    .main-nav.active ~ .menu-toggle span:nth-child(2){

        opacity:0;

        width:28px;

    }

    .main-nav.active ~ .menu-toggle span:nth-child(3){

        transform:
            translateY(-8px)
            rotate(-45deg);

        width:28px;

    }

}


/* ==========================================================
   MOBILE MENÜ – FINAL
========================================================== */

@media (max-width:650px){

    /* ----------------------------------------------------------
       MENÜ-BUTTON
    ---------------------------------------------------------- */

    .menu-toggle{

        display:flex !important;

        position:relative;

        width:44px;
        height:44px;

        padding:0;

        margin:0;

        border:0;

        background:transparent;

        flex-direction:column;

        align-items:flex-end;

        justify-content:center;

        gap:6px;

        cursor:pointer;

        z-index:10003;

    }


    .menu-toggle span{

        display:block !important;

        height:2px;

        border-radius:2px;

        background:#2c2b2a;

        transition:
            transform .3s ease,
            opacity .25s ease,
            width .3s ease,
            background .3s ease;

    }


    .menu-toggle span:nth-child(1){

        width:28px;

    }

    .menu-toggle span:nth-child(2){

        width:20px;

    }

    .menu-toggle span:nth-child(3){

        width:28px;

    }


    /* ----------------------------------------------------------
       BUTTON WIRD ZUM X
    ---------------------------------------------------------- */

    .menu-toggle.active{

        position:fixed;

        top:20px;

        right:4%;

    }

    .menu-toggle.active span{

        width:28px;

        background:#fff;

    }

    .menu-toggle.active span:nth-child(1){

        transform:
            translateY(8px)
            rotate(45deg);

    }

    .menu-toggle.active span:nth-child(2){

        opacity:0;

    }

    .menu-toggle.active span:nth-child(3){

        transform:
            translateY(-8px)
            rotate(-45deg);

    }


    /* ----------------------------------------------------------
       FULLSCREEN MENÜ
    ---------------------------------------------------------- */

    .main-nav{

        position:fixed;

        inset:0;

        width:100%;

        height:100dvh;

        margin:0;

        padding:110px 30px 60px;

        background:#080808;

        display:flex !important;

        flex-direction:column;

        align-items:center;

        justify-content:center;

        gap:0;

        box-sizing:border-box;

        visibility:hidden;

        opacity:0;

        pointer-events:none;

        transform:translateY(-12px);

        transition:
            opacity .3s ease,
            transform .3s ease,
            visibility .3s ease;

        z-index:10000;

        box-shadow:none;

    }


    .main-nav.active{

        visibility:visible;

        opacity:1;

        pointer-events:auto;

        transform:translateY(0);

    }


    /* ----------------------------------------------------------
       NAVIGATION
    ---------------------------------------------------------- */

    .main-nav a{

        display:block;

        width:100%;

        padding:16px 10px;

        text-align:center;

        color:#fff;

        font-family:"Cormorant Garamond",serif;

        font-size:2.2rem;

        font-weight:400;

        letter-spacing:.5px;

        text-decoration:none;

        transition:
            color .25s ease,
            transform .25s ease;

    }


    .main-nav a:hover{

        color:var(--color-gold);

        transform:none;

    }


    .main-nav a.active{

        color:var(--color-gold);

        font-weight:400;

    }


    .main-nav a.active::after{

        display:none;

    }


    /* ----------------------------------------------------------
       SEITE HINTER DEM MENÜ NICHT SCROLLEN
    ---------------------------------------------------------- */

    body.menu-open{

        overflow:hidden;

    }

}


/* ==========================================================
   RECHTLICHE SEITEN
========================================================== */

.legal-page{

    padding:110px 0 120px;

}

.legal-page h1{

    margin-top:18px;

    margin-bottom:55px;

}

.legal-content{

    max-width:780px;

}

.legal-content h2{

    margin-top:45px;

    margin-bottom:16px;

    font-family:var(--font-heading);

    font-size:1.8rem;

    font-weight:500;

}

.legal-content h2:first-child{

    margin-top:0;

}

.legal-content p{

    margin-bottom:20px;

    font-size:1rem;

    line-height:1.8;

}

.legal-content a{

    color:var(--color-gold);

    text-decoration:none;

}

.legal-content a:hover{

    text-decoration:underline;

}


/* ----------------------------------------------------------
   MOBILE
---------------------------------------------------------- */

@media (max-width:650px){

    .legal-page{

        padding:80px 0 90px;

    }

    .legal-page h1{

        font-size:2.8rem;

        line-height:1.1;

        margin-bottom:40px;

    }

    .legal-content h2{

        margin-top:35px;

        font-size:1.6rem;

    }

    .legal-content p{

        font-size:.98rem;

        line-height:1.75;

    }

}


/* Social-Media SVG Icons */

.social-icons a svg {
    width: 26px;
    height: 26px;
    display: block;
    fill: currentColor;
}

.social-icons a svg path {
    fill: currentColor;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ==========================================================
   HONEYPOT – SPAM-SCHUTZ
========================================================== */

.form-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* ==========================================================
   FORMULAR – ERFOLGSSEITE
========================================================== */

.form-success{

    min-height:calc(100vh - 140px);

    display:flex;

    align-items:center;

    padding:120px 0 100px;

    text-align:center;

}


.form-success .container{

    max-width:760px;

    margin:0 auto;

}


.form-success h1{

    margin:20px 0 25px;

}


.form-success-text{

    max-width:620px;

    margin:0 auto 40px;

    font-size:18px;

    line-height:1.8;

}


/* ==========================================================
   FORMULAR – ERFOLGSSEITE
========================================================== */

.form-success{

    min-height:100svh;

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

    padding:150px 20px 100px;

    text-align:center;

}

.form-success .container{

    width:100%;
    max-width:900px;

    margin:0 auto;

}

.form-success .section-label{

    display:block;

    margin-bottom:20px;

}

.form-success h1{

    max-width:900px;

    margin:0 auto 28px;

    font-size:clamp(3rem,5.5vw,5rem);

    line-height:1.05;

    font-weight:600;

}

.form-success-text{

    max-width:620px;

    margin:0 auto 42px;

    font-size:1.05rem;

    line-height:1.8;

}

.form-success .btn{

    width:auto;

    max-width:none;

    min-width:260px;

}


/* ==========================================================
   DANKE-SEITE – MOBILE
========================================================== */

@media(max-width:650px){

    .form-success{

        min-height:calc(100svh - 90px);

        padding:110px 20px 80px;

    }

    .form-success .section-label{

        margin-bottom:16px;

        font-size:.72rem;

        letter-spacing:3px;

    }

    .form-success h1{

        font-size:2.8rem;

        line-height:1.08;

        margin-bottom:22px;

    }

    .form-success-text{

        max-width:520px;

        font-size:1rem;

        line-height:1.7;

        margin-bottom:32px;

    }

    .form-success .btn{

        width:100%;

        max-width:320px;

        min-width:0;

    }

}


/* ==========================================================
   ENDE DER DATEI
========================================================== */