@font-face{
    font-family:'Inter';
    src:url('/assets/fonts/inter-v20-latin-regular.woff2') format('woff2');
    font-weight:400;
    font-style:normal;
    font-display:swap;
}

@font-face{
    font-family:'Inter';
    src:url('/assets/fonts/inter-v20-latin-600.woff2') format('woff2');
    font-weight:600;
    font-style:normal;
    font-display:swap;
}

@font-face{
    font-family:'Inter';
    src:url('/assets/fonts/inter-v20-latin-700.woff2') format('woff2');
    font-weight:700;
    font-style:normal;
    font-display:swap;
}

:root{
    --sr-green:#6f9a40;
    --sr-green-dark:#567430;
    --sr-text:#13161a;
    --sr-muted:#66707b;
    --sr-bg:#f5f5f1;
    --sr-white:#ffffff;
    --sr-dark:#0f1216;
    --sr-dark-soft:#171c22;
    --sr-line:rgba(19,22,26,.08);
    --sr-shadow-sm:0 10px 24px rgba(16,24,40,.06);
    --sr-shadow:0 24px 60px rgba(16,24,40,.10);
    --sr-shadow-lg:0 30px 90px rgba(16,24,40,.16);
    --sr-shadow-xl:0 38px 110px rgba(16,24,40,.20);
    --sr-radius:20px;
    --sr-radius-lg:34px;
    --sr-pill:999px;
    --sr-container:1360px;
}

*{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    margin:0;
    font-family:'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    color:var(--sr-text);
    background:
        radial-gradient(circle at top left, rgba(111,154,64,.035), transparent 28%),
        radial-gradient(circle at bottom right, rgba(15,18,22,.03), transparent 24%),
        var(--sr-bg);
    line-height:1.65;
    text-rendering:optimizeLegibility;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6{
    margin-top:0;
    font-family:inherit;
    font-weight:700;
    letter-spacing:-.028em;
    line-height:1.06;
}

img{
    display:block;
    max-width:100%;
    height:auto;
}

a{
    color:inherit;
    text-decoration:none;
}

.site-wrap{
    min-height:100vh;
}

.container{
    width:min(var(--sr-container), calc(100% - 34px));
    margin:0 auto;
}

/* HEADER */

.site-header{
    position:fixed;
    top:0;
    left:0;
    right:0;
    z-index:1000;
    background:rgba(255,255,255,.74);
    backdrop-filter:blur(18px) saturate(140%);
    -webkit-backdrop-filter:blur(18px) saturate(140%);
    border-bottom:1px solid rgba(255,255,255,.24);
    box-shadow:0 10px 34px rgba(15,18,22,.05);
}

.header-inner{
    min-height:90px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:22px;
}

.site-logo{
    display:inline-flex;
    align-items:center;
    flex-shrink:0;
}

.site-logo img{
    height:70px;
    width:auto;
}

.site-nav{
    margin-left:auto;
}

.site-nav ul{
    display:flex;
    align-items:center;
    gap:30px;
    margin:0;
    padding:0;
    list-style:none;
}

.site-nav > ul > li{
    position:relative;
}

.site-nav a{
    font-size:15px;
    font-weight:600;
    color:#1f2937;
    transition:color .2s ease, opacity .2s ease;
}

.site-nav > ul > li > a{
    display:inline-flex;
    align-items:center;
    min-height:90px;
}

.site-nav a:hover,
.site-nav a.is-active{
    color:var(--sr-green);
}

.nav-toggle{
    display:none;
    background:none;
    border:0;
    padding:0;
    cursor:pointer;
}

.nav-toggle span{
    display:block;
    width:26px;
    height:3px;
    margin:5px 0;
    border-radius:999px;
    background:#111827;
}

/* BUTTONS */

.header-cta,
.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:56px;
    padding:0 26px;
    border-radius:var(--sr-pill);
    font-size:15px;
    font-weight:600;
    letter-spacing:.01em;
    transition:transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease, color .25s ease;
}

.header-cta,
.btn-primary{
    background:linear-gradient(180deg, #82ad4f 0%, #6f9a40 100%);
    color:#fff;
    box-shadow:0 18px 40px rgba(111,154,64,.30);
}

.header-cta:hover,
.btn-primary:hover{
    transform:translateY(-2px);
    box-shadow:0 24px 54px rgba(111,154,64,.36);
}

.btn-secondary{
    background:rgba(255,255,255,.82);
    color:var(--sr-text);
    border:1px solid rgba(255,255,255,.22);
    box-shadow:0 14px 32px rgba(15,18,22,.12);
    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);
}

.btn-secondary:hover{
    transform:translateY(-2px);
    box-shadow:0 22px 48px rgba(15,18,22,.16);
    border-color:rgba(255,255,255,.34);
}

.btn-secondary-light{
    background:rgba(255,255,255,.10);
    color:#fff;
    border:1px solid rgba(255,255,255,.18);
    box-shadow:none;
}

/* DROPDOWN */

.has-dropdown{
    position:relative;
}

.dropdown{
    position:absolute;
    top:100%;
    left:0;
    width:900px;
    padding:30px;
    background:rgba(255,255,255,.94);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    border-radius:24px;
    box-shadow:0 36px 90px rgba(0,0,0,.14);
    opacity:0;
    pointer-events:none;
    transform:translateY(10px);
    transition:.25s ease;
    border:1px solid rgba(255,255,255,.4);
    z-index:999;
}

.has-dropdown:hover .dropdown{
    opacity:1;
    pointer-events:auto;
    transform:translateY(0);
}

.dropdown-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:30px;
}

.dropdown h4{
    margin:0 0 10px;
    font-size:14px;
    text-transform:uppercase;
    color:var(--sr-green);
    letter-spacing:.04em;
    font-weight:700;
}

.dropdown a{
    display:block;
    margin:6px 0;
    min-height:auto !important;
    font-size:15px;
    color:#333;
    transition:.2s;
    font-weight:500;
}

.dropdown a:hover{
    color:var(--sr-green);
    transform:translateX(3px);
}

/* HERO STARTSEITE */

.hero-editorial{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:flex-end;
    overflow:hidden;
    background:#dfe4d8;
}

.hero-editorial-media{
    position:absolute;
    inset:0;
}

.hero-editorial-media img{
    width:100%;
    height:100%;
    object-fit:cover;
    transform:scale(1.01);
}

.hero-editorial-overlay{
    position:absolute;
    inset:0;
    background:
        linear-gradient(90deg, rgba(11,14,18,.82) 0%, rgba(11,14,18,.58) 33%, rgba(11,14,18,.24) 64%, rgba(11,14,18,.08) 100%),
        linear-gradient(180deg, rgba(11,14,18,.08) 0%, rgba(11,14,18,.30) 100%);
}

.hero-editorial-content{
    position:relative;
    z-index:2;
    width:100%;
    padding-top:178px;
    padding-bottom:68px;
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:40px;
}

.hero-editorial-copy{
    max-width:640px;
    color:#fff;
}

.hero-label{
    display:inline-flex;
    align-items:center;
    min-height:38px;
    padding:0 16px;
    border-radius:var(--sr-pill);
    background:rgba(255,255,255,.12);
    color:#fff;
    font-size:12px;
    font-weight:700;
    letter-spacing:.08em;
    text-transform:uppercase;
    border:1px solid rgba(255,255,255,.18);
    box-shadow:inset 0 1px 0 rgba(255,255,255,.10);
}

.hero-label-dark{
    background:rgba(255,255,255,.08);
}

.hero-editorial-copy h1{
    margin:22px 0 18px;
    max-width:640px;
    font-size:clamp(34px, 4.6vw, 72px);
    font-weight:700;
    line-height:.96;
    letter-spacing:-.045em;
    text-wrap:balance;
    overflow-wrap:normal;
    word-break:normal;
    hyphens:none;
    text-shadow:0 8px 24px rgba(0,0,0,.18);
}

.hero-editorial-copy p{
    max-width:520px;
    margin:0;
    font-size:19px;
    line-height:1.68;
    color:rgba(255,255,255,.86);
    font-weight:400;
    text-shadow:0 6px 20px rgba(0,0,0,.14);
}

.hero-editorial-actions{
    display:flex;
    flex-wrap:wrap;
    gap:16px;
    margin-top:36px;
}

.hero-editorial-note{
    max-width:340px;
    padding:24px 26px;
    border-radius:24px;
    background:linear-gradient(180deg, rgba(255,255,255,.16) 0%, rgba(255,255,255,.10) 100%);
    color:#fff;
    border:1px solid rgba(255,255,255,.18);
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);
    box-shadow:0 22px 60px rgba(0,0,0,.16);
}

.hero-editorial-note strong{
    display:block;
    margin-bottom:8px;
    font-size:20px;
    font-weight:600;
}

.hero-editorial-note span{
    color:rgba(255,255,255,.84);
    line-height:1.65;
}

/* GENERIC SECTIONS */

.section{
    padding:118px 0;
}

.eyebrow{
    display:inline-flex;
    align-items:center;
    min-height:34px;
    padding:0 14px;
    border-radius:var(--sr-pill);
    background:rgba(111,154,64,.10);
    color:var(--sr-green-dark);
    font-size:12px;
    font-weight:600;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.section-head{
    max-width:760px;
    margin-bottom:34px;
}

.section-head-center{
    text-align:center;
    margin-left:auto;
    margin-right:auto;
}

.section-head h2{
    margin:16px 0 14px;
    font-size:clamp(34px, 4.5vw, 62px);
    font-weight:700;
    line-height:1.03;
    letter-spacing:-.035em;
}

.section-head p{
    margin:0;
    font-size:18px;
    color:var(--sr-muted);
    font-weight:400;
    line-height:1.72;
}

/* INTRO STARTSEITE */

.editorial-intro{
    background:#f8f8f4;
}

.editorial-intro-grid{
    display:grid;
    grid-template-columns:.92fr 1.08fr;
    gap:46px;
    align-items:start;
}

.editorial-intro-left h2{
    margin:16px 0 0;
    font-size:clamp(34px, 4.3vw, 58px);
    font-weight:700;
    line-height:1.03;
    letter-spacing:-.035em;
}

.editorial-intro-right p{
    margin:0 0 20px;
    font-size:20px;
    color:var(--sr-muted);
    font-weight:400;
    line-height:1.75;
}

/* SERVICES STARTSEITE */

.services-impact{
    padding-top:118px;
    padding-bottom:118px;
    background:linear-gradient(180deg, #f7f8f4 0%, #f1f4ec 100%);
}

.services-impact-head{
    margin-bottom:38px;
}

.services-impact-grid{
    display:grid;
    grid-template-columns:1.15fr .85fr;
    gap:26px;
}

.impact-card{
    position:relative;
    min-height:420px;
    border-radius:30px;
    overflow:hidden;
    background:#dfe5d7;
    box-shadow:0 24px 60px rgba(16,24,40,.10);
    transform:translateZ(0);
    transition:transform .35s ease, box-shadow .35s ease;
}

.impact-card:hover{
    transform:translateY(-8px);
    box-shadow:0 34px 86px rgba(16,24,40,.16);
}

.impact-card-large{
    min-height:620px;
    grid-row:span 2;
}

.impact-card img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .5s ease;
}

.impact-card:hover img{
    transform:scale(1.03);
}

.impact-card-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(180deg, rgba(0,0,0,.06) 0%, rgba(0,0,0,.18) 35%, rgba(0,0,0,.66) 100%);
}

.impact-card-content{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    z-index:2;
    padding:30px;
    color:#fff;
}

.impact-kicker{
    display:inline-flex;
    align-items:center;
    min-height:30px;
    padding:0 12px;
    border-radius:999px;
    background:rgba(255,255,255,.14);
    border:1px solid rgba(255,255,255,.18);
    color:#fff;
    font-size:12px;
    font-weight:600;
    letter-spacing:.08em;
    text-transform:uppercase;
    margin-bottom:12px;
}

.impact-kicker-dark{
    background:rgba(111,154,64,.10);
    border:1px solid rgba(111,154,64,.16);
    color:var(--sr-green-dark);
}

.impact-card-content h3,
.impact-card-text-inner h3{
    margin:0 0 10px;
    font-size:clamp(28px, 2.2vw, 42px);
    font-weight:700;
    line-height:1.04;
    letter-spacing:-.03em;
}

.impact-card-content p,
.impact-card-text-inner p{
    margin:0;
    max-width:520px;
    font-size:17px;
    line-height:1.58;
    color:rgba(255,255,255,.84);
    font-weight:400;
}

.impact-card-content a,
.impact-card-text-inner a{
    display:inline-flex;
    margin-top:18px;
    font-weight:600;
    font-size:16px;
}

.impact-card-content a{
    color:#fff;
}

.impact-card-text{
    min-height:420px;
    background:linear-gradient(180deg, #ffffff 0%, #f8faf5 100%);
    border:1px solid rgba(17,24,39,.08);
}

.impact-card-text-inner{
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    padding:36px;
}

.impact-card-text-inner p{
    color:var(--sr-muted);
}

.impact-card-text-inner a{
    color:var(--sr-green-dark);
}

/* QUOTE */

.quote-section{
    padding-top:20px;
}

.quote-box{
    padding:48px 50px;
    border-radius:30px;
    background:linear-gradient(180deg, #141922 0%, #0f1216 100%);
    color:#fff;
    box-shadow:var(--sr-shadow-xl);
}

.quote-box p{
    margin:0;
    max-width:980px;
    font-size:clamp(28px, 3.6vw, 48px);
    font-weight:600;
    line-height:1.14;
    letter-spacing:-.028em;
}

/* CTA STARTSEITE */

.dark-cta-section{
    background:#f2f4ef;
}

.dark-cta-box{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:30px;
    padding:44px;
    border-radius:32px;
    background:linear-gradient(180deg, #171c22 0%, #0f1216 100%);
    color:#fff;
    box-shadow:var(--sr-shadow-xl);
}

.dark-cta-copy{
    max-width:760px;
}

.dark-cta-copy h2{
    margin:16px 0 14px;
    font-size:clamp(34px, 4.2vw, 56px);
    font-weight:700;
    line-height:1.03;
    letter-spacing:-.035em;
}

.dark-cta-copy p{
    margin:0;
    color:rgba(255,255,255,.78);
    font-size:19px;
    font-weight:400;
    line-height:1.72;
}

.dark-cta-actions{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    flex-shrink:0;
}

/* FOOTER */

.site-footer{
    padding:64px 0;
    background:linear-gradient(180deg, #101722 0%, #0f1721 100%);
    color:#fff;
}

.footer-grid{
    display:grid;
    grid-template-columns:1.2fr 1fr 1fr;
    gap:30px;
}

.site-footer h3,
.site-footer h4{
    margin-top:0;
    margin-bottom:14px;
}

.site-footer p,
.site-footer a{
    color:rgba(255,255,255,.78);
}

/* LEISTUNGEN PAGE */

.leistungen-hero{
    position:relative;
    min-height:78vh;
    display:flex;
    align-items:flex-end;
    overflow:hidden;
    background:#dfe4d8;
}

.leistungen-hero-media{
    position:absolute;
    inset:0;
}

.leistungen-hero-media img{
    width:100%;
    height:100%;
    object-fit:cover;
    transform:scale(1.01);
}

.leistungen-hero-overlay{
    position:absolute;
    inset:0;
    background:
        linear-gradient(90deg, rgba(11,14,18,.82) 0%, rgba(11,14,18,.56) 34%, rgba(11,14,18,.24) 66%, rgba(11,14,18,.08) 100%),
        linear-gradient(180deg, rgba(11,14,18,.08) 0%, rgba(11,14,18,.28) 100%);
}

.leistungen-hero-content{
    position:relative;
    z-index:2;
    width:100%;
    padding-top:178px;
    padding-bottom:68px;
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:34px;
}

.leistungen-hero-copy{
    max-width:640px;
    color:#fff;
}

.leistungen-hero-copy h1{
    margin:22px 0 18px;
    max-width:640px;
    font-size:clamp(34px, 4.6vw, 72px);
    font-weight:700;
    line-height:.96;
    letter-spacing:-.045em;
    text-wrap:balance;
    overflow-wrap:normal;
    word-break:normal;
    hyphens:none;
    text-shadow:0 8px 24px rgba(0,0,0,.18);
}

.leistungen-hero-copy p{
    max-width:520px;
    margin:0;
    font-size:19px;
    line-height:1.68;
    color:rgba(255,255,255,.84);
    font-weight:400;
    text-shadow:0 6px 20px rgba(0,0,0,.14);
}

.leistungen-hero-actions{
    display:flex;
    flex-wrap:wrap;
    gap:16px;
    margin-top:36px;
}

.leistungen-hero-card{
    max-width:340px;
    padding:24px 26px;
    border-radius:24px;
    background:linear-gradient(180deg, rgba(255,255,255,.16) 0%, rgba(255,255,255,.10) 100%);
    color:#fff;
    border:1px solid rgba(255,255,255,.18);
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);
    box-shadow:0 22px 60px rgba(0,0,0,.16);
}

.leistungen-hero-card strong{
    display:block;
    margin-bottom:8px;
    font-size:20px;
    font-weight:600;
}

.leistungen-hero-card span{
    color:rgba(255,255,255,.84);
    line-height:1.65;
}

.leistungen-intro{
    background:#f8f8f4;
}

.leistungen-intro-box{
    background:linear-gradient(180deg, #ffffff 0%, #fafbf8 100%);
    border:1px solid rgba(111,154,64,.14);
    border-radius:30px;
    padding:38px;
    box-shadow:var(--sr-shadow);
}

.leistungen-intro-grid{
    display:grid;
    grid-template-columns:1fr .95fr;
    gap:32px;
    align-items:start;
}

.leistungen-intro-grid p{
    margin:0 0 16px;
    font-size:19px;
    color:var(--sr-muted);
    font-weight:400;
    line-height:1.72;
}

.leistungen-benefits{
    display:grid;
    gap:14px;
}

.leistungen-benefit{
    padding:18px 20px;
    border-radius:18px;
    background:rgba(111,154,64,.05);
    border:1px solid rgba(111,154,64,.10);
}

.leistungen-benefit strong{
    display:block;
    margin-bottom:6px;
    font-size:17px;
    font-weight:600;
}

.leistungen-benefit span{
    color:var(--sr-muted);
}

.leistungen-highlight{
    background:linear-gradient(180deg, #f7f8f4 0%, #eef2e7 100%);
}

.leistungen-highlight-grid{
    display:grid;
    grid-template-columns:1.15fr .85fr;
    gap:26px;
}

.leistung-stage{
    position:relative;
    min-height:420px;
    border-radius:30px;
    overflow:hidden;
    background:#dfe5d7;
    box-shadow:var(--sr-shadow);
    transition:transform .35s ease, box-shadow .35s ease;
}

.leistung-stage:hover{
    transform:translateY(-8px);
    box-shadow:var(--sr-shadow-xl);
}

.leistung-stage-large{
    min-height:540px;
    grid-row:span 2;
}

.leistung-stage img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .5s ease;
}

.leistung-stage:hover img{
    transform:scale(1.03);
}

.leistung-stage-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(180deg, rgba(0,0,0,.06) 0%, rgba(0,0,0,.18) 35%, rgba(0,0,0,.66) 100%);
}

.leistung-stage-content{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    z-index:2;
    padding:30px;
    color:#fff;
}

.leistung-stage-content span{
    display:inline-flex;
    align-items:center;
    min-height:30px;
    padding:0 12px;
    border-radius:999px;
    background:rgba(255,255,255,.14);
    border:1px solid rgba(255,255,255,.18);
    color:#fff;
    font-size:12px;
    font-weight:600;
    letter-spacing:.08em;
    text-transform:uppercase;
    margin-bottom:12px;
}

.leistung-stage-content h3,
.leistung-stage-content h2{
    margin:0 0 10px;
    font-size:clamp(28px, 2.2vw, 42px);
    font-weight:700;
    line-height:1.04;
    letter-spacing:-.03em;
}

.leistung-stage-content p{
    margin:0;
    max-width:520px;
    font-size:17px;
    line-height:1.58;
    color:rgba(255,255,255,.84);
    font-weight:400;
}

.leistung-stage-content a{
    display:inline-flex;
    margin-top:18px;
    font-weight:600;
    font-size:16px;
    color:#fff;
}

.leistungen-overview{
    background:#f8f8f4;
}

.leistungen-overview-grid{
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:24px;
}

.overview-card{
    background:linear-gradient(180deg, #ffffff 0%, #fafbf8 100%);
    border:1px solid rgba(17,24,39,.08);
    border-radius:26px;
    overflow:hidden;
    box-shadow:var(--sr-shadow-sm);
    transition:transform .3s ease, box-shadow .3s ease;
}

.overview-card:hover{
    transform:translateY(-7px);
    box-shadow:var(--sr-shadow);
}

.overview-card-image{
    height:220px;
    overflow:hidden;
    background:#eef2e8;
}

.overview-card-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .45s ease;
}

.overview-card:hover .overview-card-image img{
    transform:scale(1.03);
}

.overview-card-body{
    padding:26px;
}

.overview-kicker{
    display:inline-block;
    margin-bottom:10px;
    color:var(--sr-green-dark);
    font-size:12px;
    font-weight:600;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.overview-card-body h3{
    margin:0 0 10px;
    font-size:28px;
    font-weight:700;
    line-height:1.08;
    letter-spacing:-.028em;
}

.overview-card-body p{
    margin:0;
    color:var(--sr-muted);
    font-size:16px;
    font-weight:400;
    line-height:1.68;
}

.overview-card-body a{
    display:inline-flex;
    margin-top:18px;
    color:var(--sr-green-dark);
    font-weight:600;
}

.projektablauf{
    background:#ffffff;
}

.projektablauf-grid{
    display:grid;
    grid-template-columns:.95fr 1.05fr;
    gap:34px;
    align-items:start;
}

.projektablauf-copy h2{
    margin:16px 0 14px;
    font-size:clamp(34px, 4.2vw, 58px);
    font-weight:700;
    line-height:1.03;
    letter-spacing:-.035em;
}

.projektablauf-copy p{
    margin:0;
    color:var(--sr-muted);
    font-size:18px;
    font-weight:400;
    line-height:1.72;
}

.projektablauf-steps{
    display:grid;
    gap:16px;
}

.projekt-step{
    padding:24px 26px;
    border-radius:22px;
    background:linear-gradient(180deg, #ffffff 0%, #fafbf8 100%);
    border:1px solid rgba(17,24,39,.08);
    box-shadow:var(--sr-shadow-sm);
}

.projekt-step strong{
    display:block;
    margin-bottom:6px;
    font-size:18px;
    font-weight:600;
}

.projekt-step span{
    color:var(--sr-muted);
    line-height:1.65;
}

.leistungen-teaser-links{
    background:#ffffff;
}

.leistungen-teaser-links-grid{
    display:grid;
    grid-template-columns:repeat(4, minmax(0, 1fr));
    gap:14px;
}

.leistungen-teaser-links-grid a{
    display:flex;
    align-items:center;
    min-height:66px;
    padding:16px 20px;
    border-radius:20px;
    background:linear-gradient(180deg, #ffffff 0%, #fafbf8 100%);
    border:1px solid rgba(17,24,39,.08);
    box-shadow:var(--sr-shadow-sm);
    font-weight:600;
    transition:.25s ease;
}

.leistungen-teaser-links-grid a:hover{
    transform:translateY(-4px);
    color:var(--sr-green-dark);
    box-shadow:var(--sr-shadow);
}

.leistungen-gallery{
    background:linear-gradient(180deg, rgba(111,154,64,.04) 0%, rgba(255,255,255,0) 100%);
}

.leistungen-gallery-grid{
    display:grid;
    grid-template-columns:1.2fr 1fr 1fr;
    gap:18px;
}

.gallery-item{
    height:220px;
    border-radius:24px;
    overflow:hidden;
    box-shadow:var(--sr-shadow-sm);
    background:#e8ece0;
}

.gallery-item-large{
    height:458px;
    grid-row:span 2;
}

.gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .45s ease;
}

.gallery-item:hover img{
    transform:scale(1.03);
}

.leistungen-cta{
    background:#f2f4ef;
}

.leistungen-cta-box{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:30px;
    padding:44px;
    border-radius:32px;
    background:linear-gradient(180deg, #171c22 0%, #0f1216 100%);
    color:#fff;
    box-shadow:var(--sr-shadow-xl);
}

.leistungen-cta-copy{
    max-width:760px;
}

.leistungen-cta-copy h2{
    margin:16px 0 14px;
    font-size:clamp(34px, 4.2vw, 56px);
    font-weight:700;
    line-height:1.03;
    letter-spacing:-.035em;
}

.leistungen-cta-copy p{
    margin:0;
    color:rgba(255,255,255,.78);
    font-size:19px;
    font-weight:400;
    line-height:1.72;
}

.leistungen-cta-actions{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    flex-shrink:0;
}

/* RESPONSIVE */

@media (max-width: 1180px){
    .leistungen-overview-grid{
        grid-template-columns:repeat(2, minmax(0, 1fr));
    }

    .leistungen-highlight-grid{
        grid-template-columns:1fr 1fr;
    }

    .leistung-stage-large{
        min-height:460px;
        grid-column:span 2;
        grid-row:auto;
    }

    .leistungen-teaser-links-grid{
        grid-template-columns:repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1100px){
    .services-impact-grid{
        grid-template-columns:1fr 1fr;
    }

    .impact-card-large{
        min-height:520px;
        grid-column:span 2;
        grid-row:auto;
    }

    .dropdown{
        width:760px;
    }

    .dropdown-grid{
        grid-template-columns:repeat(2, 1fr);
    }
}

@media (max-width: 980px){
    .hero-editorial-content,
    .editorial-intro-grid,
    .footer-grid,
    .dark-cta-box,
    .leistungen-hero-content,
    .leistungen-intro-grid,
    .projektablauf-grid,
    .leistungen-cta-box{
        display:grid;
        grid-template-columns:1fr;
    }

    .site-nav{
        display:none;
        position:absolute;
        top:90px;
        left:16px;
        right:16px;
        background:#fff;
        border:1px solid rgba(17,24,39,.08);
        border-radius:20px;
        box-shadow:var(--sr-shadow);
        padding:18px;
        margin-left:0;
    }

    .site-nav.is-open{
        display:block;
    }

    .site-nav ul{
        flex-direction:column;
        align-items:flex-start;
        gap:16px;
    }

    .site-nav > ul > li > a{
        min-height:auto;
    }

    .nav-toggle{
        display:block;
    }

    .header-cta{
        display:none;
    }

    .dropdown{
        display:none !important;
    }

    .hero-editorial{
        min-height:860px;
    }

    .hero-editorial-content{
        align-items:end;
        padding-top:156px;
        padding-bottom:44px;
    }

    .hero-editorial-note{
        max-width:none;
    }

    .services-impact-grid,
    .leistungen-highlight-grid,
    .leistungen-overview-grid,
    .leistungen-gallery-grid,
    .leistungen-teaser-links-grid{
        grid-template-columns:1fr;
    }

    .impact-card-large{
        grid-column:auto;
        min-height:440px;
    }

    .impact-card,
    .impact-card-text{
        min-height:360px;
    }

    .impact-card-content,
    .impact-card-text-inner,
    .leistung-stage-content,
    .overview-card-body{
        padding:24px;
    }

    .leistung-stage-large{
        grid-column:auto;
        min-height:380px;
    }

    .leistung-stage{
        min-height:320px;
    }

    .leistungen-hero{
        min-height:760px;
    }

    .leistungen-hero-content{
        padding-top:156px;
        padding-bottom:44px;
    }

    .leistungen-hero-card{
        max-width:none;
    }

    .overview-card-image{
        height:200px;
    }

    .gallery-item,
    .gallery-item-large{
        height:220px;
        grid-row:auto;
    }
}

@media (max-width: 640px){
    .container{
        width:min(var(--sr-container), calc(100% - 22px));
    }

    .site-logo img{
        height:58px;
    }

    .hero-editorial-content,
    .leistungen-hero-content{
        padding-top:138px;
        padding-bottom:30px;
    }

    .hero-editorial-copy,
    .leistungen-hero-copy{
        max-width:100%;
    }

    .hero-editorial-copy h1,
    .leistungen-hero-copy h1{
        max-width:100%;
        font-size:clamp(34px, 10.5vw, 52px);
        line-height:1.04;
        letter-spacing:-.03em;
        overflow-wrap:normal;
        word-break:normal;
        hyphens:none;
        text-wrap:balance;
    }

    .hero-editorial-copy p,
    .leistungen-hero-copy p{
        max-width:100%;
        font-size:18px;
        line-height:1.58;
    }

    .hero-editorial-copy p,
    .editorial-intro-right p,
    .dark-cta-copy p,
    .leistungen-hero-copy p,
    .leistungen-intro-grid p,
    .projektablauf-copy p,
    .leistungen-cta-copy p{
        font-size:18px;
    }

    .quote-box,
    .dark-cta-box,
    .leistungen-intro-box,
    .leistungen-cta-box{
        padding:26px;
    }

    .btn,
    .header-cta{
        width:100%;
    }

    .hero-editorial-actions,
    .dark-cta-actions,
    .leistungen-hero-actions,
    .leistungen-cta-actions{
        width:100%;
    }

    .overview-card-image{
        height:180px;
    }

    .gallery-item,
    .gallery-item-large{
        height:200px;
    }
}

@media (max-width: 420px){
    .hero-editorial-copy h1,
    .leistungen-hero-copy h1{
        font-size:clamp(32px, 10vw, 44px);
        line-height:1.05;
        letter-spacing:-.025em;
        hyphens:none;
    }

    .hero-editorial-actions,
    .leistungen-hero-actions{
        gap:12px;
    }
}