* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  scroll-padding-top: 4rem;
}

body {
  margin: 0;
  font-style: normal;
  overflow-x: hidden;
  position: relative;
  font-size: var(--default);
  font-family: "Poppins", Arial, Helvetica, sans-serif;
  color: var(--black);
  background-color: var(--bg);
  line-height:1.4;
  hyphens: auto;
  overflow-wrap: break-word;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
}

:root {
  /* Voreingestellte Farben, diese sind von Projekt zu Projekt unterschiedlich. Also anpassen!
    Hauptfarben: */
    --lightgreen:#E9FE71;
    --green:#566501;
    --lightergreen:#D1D5BA;
    --green-opacity:#d1d5ba36;

  /* Farben fÃ¼r Schriften */
  /* Schriftfarbe fÃ¼r FlieÃŸtexte, reines Schwarz vermeiden -> Kann zu einer Ãœberanstrengung der Augen fÃ¼hren, wenn Nutzer den Text Ã¼ber einen lÃ¤ngeren Zeitraum lesen. */
  --black: #222222;

  --gray:#222222;

  --white:#FDFDFD;

  /* Hintergrundfarbe, Abwandlung von weiÃŸ, reines WeiÃŸ vermeiden -> starke Helligkeit von reinem WeiÃŸ kann einen hohen Kontrast zu den umgebenden Elementen erzeugen => "White Glare-Effect" */
  --bg: #f2f2f2;
  --bg-black:#161616;

  /* Abstandswerte */
  /* Sehr kleiner Abstand */
  --g-xs: 8px;
  /* Kleiner Abstand */
  --g-m1: 16px;
  /* Mittlerer Abstand */
  --g-m2: 24px;
  /* GroÃŸer Abstand */
  --g-m3: 32px;
  /* Sehr groÃŸer Abstand */
  --g-l1: 40px;
  --g-l2: 48px;
  --g-xl: 56px;
  --g-xxl: 64px;

  --default: clamp(1rem, 1vw + 0.75rem, 1.1875rem);
  /* Abstand zwischen Paragraphen */
  --p-gap: var(--g-xs);

  /* Abstand von Ãœberschriften zur Section */
  --h-gap: var(--g-m3);

  /*Farben fÃ¼r Swiper*/
  --swiper-theme-color: var(--black);

  --bs-gutter-x: 1.5rem;
}

.lightgreen-color{
    color:var(--lightgreen) !important;
}

.green-color{
    color:var(--green) !important;
}

.bg-green{
    background-color:var(--lightergreen);
}

h1, h2, h3{
    color:var(--black) !important;
    line-height:1.2;
}

.intro h1{
    font-size: clamp(1.8rem, 4vw, 2.45rem);
}

@media screen and (min-width:768px){
    .intro h1{
        font-size:2.45rem;
    }
}

h1{
    font-size: clamp(2.2rem, 3.5vw, 3.2rem);
}

h2{
    font-size: clamp(2rem, 3.5vw, 3rem);
}

h3{
    font-size: clamp(1.8rem, 4vw, 2.45rem);
}

@media screen and (min-width:768px){
    h2{
        font-size:var(--g-l2);
    }
}

.slogan{
    font-size:var(--g-m2);
}

p, a{
    font-size:var(--default);
}

img, video{
    width:100%;
    border-radius:8px;
}

section{
    padding:70px 0;
}

@media screen and (min-width:768px){
    section{
        padding:100px 0;
    }
}

.intro img{
    min-height:225px;
    object-fit:cover;
}

.intro-section{
    padding-bottom:38px;
}

@media screen and (min-width:768px){
    .intro-section{
        padding-bottom:70px;
        padding-top:56px;
    }
}

.skip-link{
    top:1rem;
    left:1rem;
    z-index:1000;
    padding:.75rem 1rem;
    background:var(--black);
    color:var(--white);
    text-decoration:none;
    border-radius:8px;
    transform: translateY(-200%);
    transition: transform 0.2s ease;
}

.skip-link:focus-visible {
    transform: translateY(0);
    outline: 3px solid var(--lightgreen);
    outline-offset: 3px;
}

.more{
    color:var(--green);
    background:none;
    font-family:"Poppins";
    text-transform:none;
    font-weight:600;
    border:none;
    font-size:var(--default);
    cursor:pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration:underline;
    text-underline-offset: 8px;
    text-decoration-thickness: 2px;
    text-decoration-color:var(--green);
    underline-offset:2px;
    padding:unset;
    padding:15px 0;
}

.more:hover{
    transform: translateY(-1px);
    color:var(--lightergreen);
    opacity: 0.92;
}

footer a, footer p, footer h3{
    color:var(--white) !important;
}

footer a:hover{
    color:var(--lightgreen) !important;
}

footer p{
    margin-bottom:0.45rem;
}

.no-style{
    margin-bottom:0;
}

footer h3{
    margin-bottom:0.4rem;
    font-size:1.3rem;
}

header{
    z-index:2;
    position:relative;
    background-color:var(--white);
}

.hero{
    background-image:url('../media/hero_website.jpg');
    min-height:73vh;
    /* height:66vh; */
    background-size:cover;
    background-position:bottom;
    backdrop-filter:blur(5px);
    position: relative;
    overflow: hidden;
    display:flex;
        align-items:center;
}

@media screen and (min-width:768px){
    .hero{
        min-height:66vh;
    }
}

.hero::before{
    content:'';
    position:absolute;
    width:100%;
    height:100%;
     backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    background-color:#00000066;
    z-index:-1;
}

@media screen and (min-width:1280px){
    .hero{
        height:80vh;
    }
}

/* aside{
    display:none !important;
} */

/* @media screen and (min-width:955px){
    aside{
        display:block !important;
    }
} */

/* aside{
    height:100vh;
    background-color:var(--white);
    width:60px;
    position:fixed;
    top:0;
    left:0;
    z-index:1;
    border-bottom:solid 2px var(--gray);
}

aside .aside-item img{
    width:24px;
    height:24px;
} */

.hero p, h1{
    color:var(--white)
}

.hero h1{
    font-size:2.18rem;
    margin-bottom:18px;
    color:var(--white)!important;
}

@media screen and (min-width:768px){
    .hero h1{
    font-size:3.4rem;
    margin-bottom:6px;
    color:var(--white) !important;
}
}

.hero p{
    font-size:1.2rem;
}

@media screen and (min-width:768px){
    .hero p{
    
    font-size:1.4rem;
}
} 

.hero .subheading{
    font-size:2rem;
    margin-bottom:6px;
}

.btn-prim{
    background-color:var(--green);
    padding: 13px 22px 15px 22px;
    font-family:"Poppins";
    color:var(--white);
    font-size:18px;
    text-transform:uppercase;
    width:fit-content;
    border:none;
    cursor:pointer;
    font-weight:600;
    text-decoration:none;
    border-radius:8px;
}

.btn-prim:hover{
    background-color:var(--lightgreen);
    color:var(--black);
}

/* .full{
    height:100%;
    padding-top:32px;
    padding-bottom:38px;
} */
 .full{
    height:100%;
    padding-top:36px;
    padding-bottom:29px;
}


footer{
    background-color:var(--green);
}

footer img{
    max-width:160px;
}

hr{
    opacity:0.2;
}

li {
    list-style-position: inside;
}

footer ul{
    list-style:none;
}

#index-media{
    height:373px;
    object-fit:cover;
     image-rendering: auto;
     image-rendering: crisp-edges;
     
}

.card {
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 8px;
background-color:var(--white);
  box-shadow: rgba(0, 0, 0, 0.18) 0px 2px 4px;

  transition:
    transform .25s ease,
    box-shadow .25s ease;

    padding:32px;
    height:100%;
    display: flex;
    flex-direction: column;
}

.card:hover {
  transform: translateY(-2px);
}

.wrapper img{
    width:56px;
}

.video-wrapper {
  position: relative;
}

.video-toggle {
  position: absolute;
  bottom: 18px;
  left: 12px;

  width: 56px;
  height: 56px;

  border: none;
  border-radius: 10px;

  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;

  transition: transform 0.2s ease, background 0.2s ease;
}

.video-toggle:hover {
  transform: scale(1.05);
  background: rgba(0, 0, 0, 0.55);
}

.video-toggle img {
  width: 40px;
  height: 40px;
}

.autospacer{
    flex: 1 auto;
    flex-basis: auto;
    display: flex;
    margin: 0 !important;
}

/* =========================
   HEADER
========================= */
.header {
    position:fixed;
    top:16px;
    left:50%;
    transform:translateX(-50%);
    width:calc(100% - 32px);
    max-width:1296px;
    height:64px;
    display:grid;
    grid-template-columns:1fr auto 1fr;
    align-items:center;
    padding:0 24px;
    border-radius:999px;
    z-index:100;
    transition:
        height .35s ease,
        background .35s ease,
        backdrop-filter .35s ease,
        box-shadow .35s ease;
}

/* Zustand beim Scrollen */
.header.scrolled {
    height:60px;
    background:rgba(255,255,255,0.6);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    border: 1px solid rgba(0,0,0,.08);
    box-shadow: 0 10px 35px rgba(0,0,0,.08);
}

/* =========================
   LOGO
========================= */
.logo {
    justify-self:start;
    display:flex;
    max-width:118px;
}

@media screen and (min-width:768px){
    .logo{
        max-width:unset;
    }
}

/* =========================
   NAVIGATION
========================= */
.main-nav {
    display:flex;
    gap:40px;
}

.main-nav a {
    position:relative;
    color:var(--black);
    text-decoration:none;
    font-size:var(--default);
    font-weight:500;
}

.main-nav a::after {
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:100%;
    height:2px;
    background:var(--black);
    transform:scaleX(0);
    transform-origin:left;
    transition:.25s;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
    transform:scaleX(1);
}

/* =========================
   PROFIL KONTAKT
========================= */
.profile-contact {
    justify-self:end;
    height:44px;
    width:44px;
    display:flex;
    align-items:center;
    overflow:hidden;
    border-radius:999px;
    text-decoration:none;
    transition: width .35s ease;
}

.profile-contact:hover,
.profile-contact:focus-visible {
    width:140px;
    background-color:var(--black);
}

.profile-image {
    position:relative;
    width:44px;
    height:44px;
    flex-shrink:0;
    padding:4px;
}


/* grüner Puls-Ring */

.profile-image::before {
    content:"";
    position:absolute;
    inset:1px;
    border-radius:50%;
    border:2px solid var(--green);
    animation:pulse-ring 2.5s infinite;
}

.profile-image img {
    position:relative;
    z-index:1;
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:50%;
}

@keyframes pulse-ring {
    0% {
        transform:scale(1);
        opacity:1;
    }
    50% {
        transform:scale(1.12);
        opacity:.45;
    }
    100% {
        transform:scale(1);
        opacity:1;
    }
}

.profile-text {
    color:var(--white);
    white-space:nowrap;
    font-size:var(--g-m1);
    padding-left:12px;
    opacity:0;
    transition:.25s;
}

.profile-contact:hover .profile-text,
.profile-contact:focus-visible .profile-text {
    opacity:1;
}

/* =========================
   HAMBURGER
========================= */

/* .menu-toggle {
    display:none;
    width:40px;
    height:40px;
    border:0;
    background:none;
    cursor:pointer;
}

.menu-toggle span {
    display:block;
    width:22px;
    height:2px;
    margin:5px auto;
    background:var(--gray);
    transition:.25s;
} */
 .menu-toggle {
    display: none;
    position: relative;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    z-index: 110;
}

.menu-toggle span {
    position: absolute;
    left: 50%;
    width: 24px;
    height: 2px;
    background: var(--black);
    border-radius: 2px;
    transform: translateX(-50%);
    transition:
        transform .4s cubic-bezier(.77,0,.18,1),
        opacity .25s ease,
        top .4s cubic-bezier(.77,0,.18,1);
}

.menu-toggle span:nth-child(1) {
    top: 13px;
}

.menu-toggle span:nth-child(2) {
    top: 21px;
    width:15px;
    right:6%;
    left:unset;
    background: #465201;
}

.menu-toggle span:nth-child(3) {
    top: 29px;
}

/* Geöffnet → X */

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    top: 21px;
    transform: translateX(-50%) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
    transform: translateX(-50%) scaleX(0);
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    top: 21px;
    transform: translateX(-50%) rotate(-45deg);
}

/* =========================
   MOBILE
========================= */

/* @media(max-width:768px){
.header {
    top:0;
    width:100%;
    height:56px;
    border-radius:0;
    padding:0 20px;
    display:flex;
    justify-content:space-between;
    background:
    rgba(252,252,252,.9);
    backdrop-filter:
    blur(12px);
    border-bottom:
    1px solid rgba(0,0,0,.08);
}

.main-nav {
    position:fixed;
    top:37px;
    left:0;
    width:100%;
    padding:30px 24px;
    flex-direction:column;
    gap:24px;
    background:var(--white);
    transform:translateY(-120%);
    transition:.3s;
    align-items: center;
    height:100vh;
}

.main-nav.open {
    transform:translateY(0);
}

.main-nav a {
    color:var(--black);
}

.profile-contact {
    display:none;
}

.menu-toggle {
    display:block;
}
} */

html.menu-open {
    overflow-y: hidden !important;
    overflow-x: hidden !important
}

@media (max-width: 768px) {

    .header {
        top: 0;
        width: 100%;
        height: 56px;
        border-radius: 0;
        padding: 0 20px;
        display: flex;
        justify-content: space-between;
        background: rgba(252,252,252,.9);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-bottom: 1px solid rgba(0,0,0,.08);
    }

    .main-nav {
        position: fixed;
        inset: 0;

        width: 100%;
        height: 100dvh;
        max-height: 100dvh;

        overflow-y: auto;
        overscroll-behavior: contain;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        gap: 12px;
        padding: 80px 24px 40px;

        background: var(--white);

        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: scale(.97);

        transition:
            opacity .35s ease,
            transform .5s cubic-bezier(.77,0,.18,1),
            visibility 0s linear .5s;
    }

    .main-nav.open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: scale(1);

        transition:
            opacity .35s ease,
            transform .5s cubic-bezier(.77,0,.18,1),
            visibility 0s linear 0s;
    }

    .main-nav a {
        position: relative;

        color: var(--black);
        text-decoration: none;

        font-size: clamp(2rem, 8vw, 3.5rem);
        font-weight: 500;

        opacity: 0;
        transform: translateY(25px);

        transition:
            opacity .45s ease,
            transform .55s cubic-bezier(.77,0,.18,1);
    }

    .main-nav.open a {
        opacity: 1;
        transform: translateY(0);
    }

    .main-nav a::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -4px;
        width: 100%;
        height: 2px;

        background: var(--green);

        transform: scaleX(0);
        transform-origin: left;

        transition: transform .35s ease;
    }

    .main-nav a:hover::after,
    .main-nav a:focus-visible::after {
        transform: scaleX(1);
    }
    /* Verzögerung für die einzelnen Links */

    .main-nav.open a:nth-child(1) {
        transition-delay: .08s;
    }

    .main-nav.open a:nth-child(2) {
        transition-delay: .14s;
    }

    .main-nav.open a:nth-child(3) {
        transition-delay: .20s;
    }

    .profile-contact {
        display: none;
    }

    .menu-toggle {
        display: block;
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }

}

.process-section{
    padding:160px 0;
    background:#f5f5f7;
}



.process-header{
    width:min(1200px,90%);
    margin:auto;
    margin-bottom:100px;
}


.process-header span{
    font-family:monospace;
    font-size:12px;
    letter-spacing:.25em;
    color:#777;
}



.process-header h2{
    margin-top:25px;
    font-size:clamp(3rem,6vw,5.5rem);
    line-height:1.05;
    letter-spacing:-.06em;
    color:#222;
}



.process-cards{
    width:min(1200px,90%);
    margin:auto;
    display:flex;
    flex-direction:column;
    gap:35px;
}



.process-card{
    display:grid;
    grid-template-columns:55px 1.1fr 1fr;
    min-height:340px;
    background:var(--white);
    border:1px solid #d4dbe5;
    overflow:hidden;
    transition:.35s ease;
    border-radius:var(--g-xs);
}

#cover-nasch{
  background-image:url('../media/projects/nasch-ev.jpg');
  background-size:cover;
  background-repeat: no-repeat;
  background-position: center;
}

#bieretikett{
background-image:url('../media/projects/bieretikett_2.png.jpg');
  background-size:cover;
  background-repeat: no-repeat;
  background-position: center;
}

#acheramiel{
background-image:url('../media/projects/achera-miel.jpg');
  background-size:cover;
  background-repeat: no-repeat;
  background-position: center;
}

#verkaufsberatung{
background-image:url('../media/projects/verkaufsberatung.jpg');
  background-size:cover;
  background-repeat: no-repeat;
  background-position: center;
}

#planetarium{
background-image:url('../media/projects/planetarium_frizlar.jpg');
  background-size:cover;
  background-repeat: no-repeat;
  background-position: center;
}


.process-card:hover{
    transform:translateY(-5px);
    box-shadow:
    0 20px 50px rgba(0,0,0,.08);
}



.role{
    border-right:1px solid #d4dbe5;
    display:flex;
    justify-content:center;
    align-items:center;
}



.role span{
    writing-mode:vertical-rl;
    transform:rotate(180deg);
    font-size:10px;
    letter-spacing:.2em;
    color:#6b7a91;
}



.process-content{
    padding:40px;
    display:flex;
    flex-direction:column;
}



.process-content h3{
    font-size:var(--g-m3);
    font-weight:500;
    letter-spacing:-.04em;
    margin:0;
    color:#222;
}

@media screen and (min-width:768px){
    .process-content h3{
        font-size:2.3rem;
    }
}

.process-content h3 span{
    color:#566501;
}

.process-content p{
    line-height:1.7;
    color:#555;
    max-width:500px;
}

.process-content .more{
    padding-top:15px;
    padding-bottom:0;
}

.process-image{
    background:#f1f1ed;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
}



.placeholder{
    font-size:70px;
}



.browser{
    width:80%;
    height:180px;
    background:white;
    border-radius:15px;
    box-shadow:0 20px 50px rgba(0,0,0,.1);
    display:flex;
    gap:8px;
    padding:15px;
}



.browser div{
    width:10px;
    height:10px;
    background:#ccc;
    border-radius:50%;
}



.score{
    font-size:100px;
    font-weight:700;
    color:#222;
}


.score small{
    display:block;
    font-size:12px;
    letter-spacing:.2em;
}

@media(max-width:800px){

.process-card{
    grid-template-columns:1fr;
}


.role{
    height:45px;
    border-right:none;
    border-bottom:1px solid #d4dbe5;
}


.role span{
    writing-mode:horizontal-tb;
    transform:none;
}

.process-image{
    min-height:315px;
}

}

.ai-label{
    position:absolute;
    bottom:8px;
    right:8px;
    border-radius:256px;
    backdrop-filter: blur(8px);
    padding: 5px 13px 5px 16px;
    background-color:var(--green-opacity);
}

.ai-label p, .badge p{
    font-size:0.8rem;
    font-weight:400;
}

.badge{
    bottom:8px;
    right:8px;
    border-radius:256px;
    backdrop-filter: blur(8px);
    padding: 5px 13px 5px 16px;
    background-color:var(--green-opacity);
    width:fit-content;
}

.back{
    margin-top:24px;
    display:block;
    text-decoration: none;
}

@media screen and (min-width:769px){
    .back{
        margin-top:92px;
    }
}

.back span{
    font-size:0.9rem;
    color:var(--black);
    text-decoration: none;
}

/*Notizblock*/
/* =========================================
   NAMENSENTWICKLUNG · NOTIZBLOCK
   ========================================= */

.name-note {
    position: relative;
    width: 100%;
    margin-left: auto;
    padding: 32px 34px 28px;
    background: #f8f7f2;
    border: 1px solid #e4e2da;
    border-radius: 3px;
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.07),
        0 2px 6px rgba(0, 0, 0, 0.04);

    transform: rotate(1deg);
}

/* kleiner Farbstreifen oben */
.name-note::before {
    content: "";
    position: absolute;
    top: 0;
    left: 34px;
    width: 55px;
    height: 4px;
    background: #566501;
    border-radius: 0 0 3px 3px;
}


/* Kopfbereich */
.name-note_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.name-note_label {
    color: #566501;
}

.name-note_date {
    color: #aaa;
}

/* Überschrift */
.name-note_title {
    margin: 0;
    font-size: 32px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -0.045em;
    color: var(--black);
}


/* Trennlinie */
.name-note_line {
    width: 100%;
    height: 1px;
    margin: 28px 0 0;
    background: #deddd5;
}

.name-note_item {
    display: grid;
    grid-template-columns: 32px 1fr;
    align-items: center;
    padding: 8px 0;
    min-height: 44px;

    border-bottom: 1px solid #e3e1d9;
}

.name-note_item span {
    font-size: 10px;
    font-weight: 600;
    color: #aaa;
}

.name-note_item strong {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.015em;
    color: #292929;
}


/* Footer */
.name-note_footer {
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.13em;
    color: #aaa;
}


/* Mobile */
@media (max-width: 767px) {

    .name-note {
        max-width: none;
        margin-top: 40px;
        transform: rotate(0);
    }

    .name-note_title {
        font-size: 28px;
    }
}

@media screen and (min-width:1200px){
    .name-note{
        max-width:430px;
    }
}

/* Ausgeschiedener Name */
.name-note_item-rejected strong {
    color: #aaa;
    text-decoration: line-through;
    text-decoration-thickness: 1px;
}


/* Engere Auswahl */
.name-note_item-shortlist strong {
    position: relative;
    display: inline-block;
    width: fit-content;
    z-index: 1;
}

.name-note_item-shortlist strong::after {
    content: "";
    position: absolute;
    z-index: -1;

    top: 50%;
    left: -10px;
    right: -10px;
    height: 30px;

    border: 1.5px solid #566501;
    border-radius: 50%;

    transform: translateY(-50%) rotate(-2deg);
}

.full-note{
    transform:unset !important;
    max-width:unset;
}

.highlighted{
    border-left:#566501 solid 4px;
    padding:18px;
    background-color:var(--green-opacity);
}

/* =========================================
   LK ACCORDION
   ========================================= */

.lk-accordion {
    width: 100%;
}


/* Einzelnes Element */
.lk-accordion__item {
    border-top: 1px solid #dcdcd7;
}

.lk-accordion__item:last-child {
    border-bottom: 1px solid #dcdcd7;
}


/* Klickbarer Bereich */
.lk-accordion__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 0 18px;
    width: 100%;
    min-height: 76px;

    cursor: pointer;

    list-style: none;
    color: #222;
}


/* Standard-Dreieck des Browsers entfernen */
.lk-accordion__trigger::-webkit-details-marker {
    display: none;
}

.lk-accordion__trigger::marker {
    content: "";
}


/* Titel */
.lk-accordion__title {
    font-size: var(--g-m2);
    line-height: 1.3;
    font-weight: 500;
    letter-spacing: -0.025em;
}


/* Plus-Icon */
.lk-accordion__icon {
    position: relative;

    flex: 0 0 24px;
    width: 24px;
    height: 24px;

    border: 1px solid #222;
    border-radius: 50%;

    transition:
        transform 0.25s ease,
        background-color 0.25s ease;
}


/* horizontale Linie */
.lk-accordion__icon::before,
.lk-accordion__icon::after {
    content: "";

    position: absolute;
    top: 50%;
    left: 50%;

    width: 9px;
    height: 1px;

    background: currentColor;

    transform: translate(-50%, -50%);
}


/* vertikale Linie */
.lk-accordion__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);

    transition: transform 0.25s ease;
}


/* Geöffnet */
.lk-accordion__item[open] .lk-accordion__icon {
    transform: rotate(45deg);
}


/* Inhalt */
.lk-accordion__content {
    padding: 0 0 30px 0;

    color: #555;
    font-size: 16px;
    line-height: 1.7;
}

.lk-accordion__content p {
    margin: 0;
}


/* Tastatur-Fokus
   Wichtig für WCAG 2.2 */
.lk-accordion__trigger:focus-visible {
    outline: 3px solid #566501;
    outline-offset: 6px;
    border-radius: 2px;
}


/* Hover */
@media (hover: hover) {

    .lk-accordion__trigger:hover .lk-accordion__icon {
        background: #222;
        color: #fff;
    }

}


/* Bewegungen reduzieren */
@media (prefers-reduced-motion: reduce) {

    .lk-accordion__icon,
    .lk-accordion__icon::after {
        transition: none;
    }

}


/* Mobile */
@media (max-width: 767px) {

    .lk-accordion__trigger {
        min-height: 68px;
        gap: 20px;
    }

    .lk-accordion__title {
        font-size: 18px;
    }

    .lk-accordion__content {
        padding: 0 35px 25px 0;
        font-size: 15px;
    }

}

/* =========================================
   MORPHOLOGISCHE TABELLE
   ========================================= */

.morph-matrix {
    width: 100%;
}

.morph-matrix table {
    width: 100%;
    border-collapse: collapse;

    color: #222;
}


/* Caption ist für Screenreader vorhanden,
   aber visuell nicht notwendig */
.morph-matrix caption {
    position: absolute;

    width: 1px;
    height: 1px;

    padding: 0;
    margin: -1px;

    overflow: hidden;
    clip: rect(0, 0, 0, 0);

    white-space: nowrap;
    border: 0;
}


/* =========================================
   DESKTOP
   ========================================= */

.morph-matrix thead th {
    padding: 16px 18px;

    background: #f4f4f1;
    border-bottom: 1px solid #d8d8d2;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;

    color: #666;
    text-align: left;
}


.morph-matrix tbody th,
.morph-matrix tbody td {
    border-bottom: 1px solid #deded8;
    border-right: 1px solid #deded8;

    vertical-align: middle;
}


.morph-matrix tbody tr:last-child th,
.morph-matrix tbody tr:last-child td {
    border-bottom: 0;
}


.morph-matrix th:last-child,
.morph-matrix td:last-child {
    border-right: 0;
}


/* Parameter */
.morph-matrix tbody th {
    width: 230px;
    min-width: 230px;

    padding: 22px 18px;

    background: #fafaf7;

    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;

    text-align: left;
}


/* Lösung */
.morph-matrix td {
    width: 170px;
    height: 170px;

    padding: 12px;

    text-align: center;
}


/* Bilder */
.morph-matrix td img {
    display: block;

    width: 100%;
    height: 145px;

    object-fit: contain;

    border-radius: 3px;
}


/* =========================================
   TABLET
   ========================================= */

@media (max-width: 991px) {

    .morph-matrix tbody th {
        width: 180px;
        min-width: 180px;

        font-size: 14px;
    }

    .morph-matrix td {
        width: 145px;
        height: 145px;
    }

    .morph-matrix td img {
        height: 120px;
    }

}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 767px) {

    /*
     * Die Tabelle bleibt semantisch eine Tabelle.
     * Nur die Darstellung verändert sich.
     */

    .morph-matrix table,
    .morph-matrix thead,
    .morph-matrix tbody,
    .morph-matrix tr,
    .morph-matrix th,
    .morph-matrix td {
        display: block;
    }


    /* Kopfzeile wird auf Mobile nicht benötigt,
       da data-label die Information übernimmt. */
    .morph-matrix thead {
        position: absolute;

        width: 1px;
        height: 1px;

        overflow: hidden;
        clip: rect(0, 0, 0, 0);
    }


    /* Jede Tabellenzeile wird zu einem Block */
    .morph-matrix tbody tr {
        margin-bottom: 35px;

        border: 1px solid #deded8;
        border-radius: 4px;

        overflow: hidden;
    }


    .morph-matrix tbody tr:last-child {
        margin-bottom: 0;
    }


    /* Parameter */
    .morph-matrix tbody th {
        width: 100%;
        min-width: 0;

        padding: 18px 20px;

        background: #f5f5f1;

        border: 0;
        border-bottom: 1px solid #deded8;

        font-size: 17px;
    }


    /* Jede Lösung */
    .morph-matrix tbody td {
        display: grid;
        grid-template-columns: 90px 1fr;
        align-items: center;

        width: 100%;
        height: auto;
        min-height: 110px;

        padding: 10px 15px;

        border: 0;
        border-bottom: 1px solid #e8e8e3;

        text-align: left;
    }


    .morph-matrix tbody td:last-child {
        border-bottom: 0;
    }


    /*
     * Der Spaltenname wird auf Mobile
     * wieder sichtbar.
     */
    .morph-matrix td::before {
        content: attr(data-label);

        font-size: 10px;
        font-weight: 700;
        letter-spacing: .08em;
        text-transform: uppercase;

        color: #888;
    }


    .morph-matrix td img {
        width: 100%;
        height: 90px;

        object-fit: contain;
    }


    /* Leere Lösungsfelder ausblenden */
    .morph-matrix td:not(:has(img)) {
        display: none;
    }

}


/* =========================================
   SEHR KLEINE DISPLAYS
   ========================================= */

@media (max-width: 420px) {

    .morph-matrix tbody td {
        grid-template-columns: 75px 1fr;
    }

    .morph-matrix td img {
        height: 80px;
    }

}

.expand {
    cursor: zoom-in;
}

.image-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 2rem;

    background: rgb(0 0 0 / 75%);
    backdrop-filter:blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.image-overlay-light {
    background: rgb(255 255 255 / 75%);
    backdrop-filter:blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.image-overlay-light .image-overlay__close {
    color: #222;
    background: rgb(0 0 0 / 10%);
}

.image-overlay-light .image-overlay__close:hover {
    background: rgb(0 0 0 / 15%);
}

.image-overlay[hidden] {
    display: none;
}

.image-overlay__image {
    max-width: 100%;
    max-height: 90vh;
    width: auto;
    height: auto;

    object-fit: contain;
}

.image-overlay__close {
    position: absolute;
    top: 1rem;
    right: 1rem;

    width: 3rem;
    height: 3rem;

    display: grid;
    place-items: center;

    border: 0;
    border-radius: 50%;

    background: rgb(255 255 255 / 15%);
    color: white;

    font-size: 2rem;
    line-height: 1;

    cursor: pointer;
}

.image-overlay__close:hover {
    background: rgb(255 255 255 / 25%);
}

.image-overlay__close:focus-visible,
.expand:focus-visible {
    outline: 3px solid currentColor;
    outline-offset: 4px;
}

.image-overlay-open {
    overflow: hidden;
}

.accessibility-link {
    left: 2rem;
    bottom: 0;
    width: 3.5rem;
    height: 3.5rem;
    background: var(--green);
    border-radius: 8px;
    border-bottom-left-radius:0px;
    border-bottom-right-radius:0px;
    box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.accessibility-link img {
    width: 2rem;
    height: 2rem;
}

.accessibility-link:hover {
    transform: translateY(-16px);
    border-bottom-left-radius:8px;
    border-bottom-right-radius:8px;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.15);
}

.accessibility-link:focus-visible {
    outline: 3px solid var(--lightgreen);
    outline-offset: 3px;
}

@media (max-width: 576px) {
    .accessibility-link {
        left: 0rem;
        bottom: 0rem;
        border-top-left-radius:0px;
        border-bottom-left-radius:0px;
    }
}


.instagram-consent {
    padding: 2rem;
    border: 1px solid #ddd;
    border-radius: 1rem;
    margin-bottom: 2rem;
}

.instagram-consent-info {
    margin-top: 1rem;
    margin-bottom: 0;
}



.space{
    height:80px
}