/* =====================================
   Works
===================================== */

.works {
    padding: 0 0 110px;
}

.works-container {
    width: min(1400px, 92%);
    margin: 0 auto;
    padding: 48px 42px 60px;

    overflow: hidden;

    border: 1px solid rgba(212, 192, 138, .2);
    border-radius: 28px;

    background: rgba(0, 0, 0, .05);
    box-shadow:
        0 24px 70px rgba(0, 0, 0, .34),
        inset 0 1px 0 rgba(255, 255, 255, .03);
    backdrop-filter: blur(1.5px);
}

@media (min-width: 1025px) {
    .works-container {
        width: min(1360px, calc(92% - 40px));
    }
}

.works__intro {
    margin-bottom: 52px;
    text-align: center;
}

.works__title {
    position: relative;

    margin-bottom: 24px;
    padding-bottom: 20px;

    color: #E8E4DA;

    font-size: clamp(34px, 2.8vw, 46px);
    line-height: 1.1;
    text-shadow: 0 3px 16px rgba(0, 0, 0, .65);
}

.works__title::after {
    content: "";

    position: absolute;
    bottom: 0;
    left: 50%;

    width: 120px;
    height: 2px;

    background: linear-gradient(
        90deg,
        transparent,
        #D4C08A,
        transparent
    );

    transform: translateX(-50%);
}

.works__subtitle {
    max-width: 1200px;
    margin: 0 auto;

    color: #E8E4DA;

    font-size: clamp(17px, 1.35vw, 20px);
    font-weight: 700;
    line-height: 1.35;
    text-align: center;
}

.works__item {
    position: relative;

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

    min-width: 0;
    margin: 0;
    padding: 18px;

    overflow: hidden;

    border: 1px solid rgba(212, 192, 138, .22);
    border-radius: 22px;

    background: rgba(0, 0, 0, .05);
    box-shadow: 0 16px 42px rgba(0, 0, 0, .28);
    backdrop-filter: blur(1.5px);

    transition:
        border-color .35s ease,
        box-shadow .35s ease,
        transform .35s ease;

    cursor: zoom-in;
}

.works__item:focus-visible {
    outline: 2px solid #D4C08A;
    outline-offset: 4px;
}

.works__item--clone {
    display: none;
}

.works__item::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(212, 192, 138, .85),
        transparent
    );

    opacity: .65;
}

.works__item:hover {
    border-color: #D4C08A;
    box-shadow: 0 20px 52px rgba(0, 0, 0, .34);
    transform: translateY(-5px);
}

.works__item img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;

    transition: transform .4s ease;
}

.works__item:hover img {
    transform: scale(1.025);
}

.works__item--featured {
    width: min(100%, 460px);
    aspect-ratio: 1 / 1;

    margin: 0 auto 70px;
}

.works__grid {
    display: grid;
    grid-template-columns: repeat(16, minmax(0, 1fr));
    gap: 28px;
}

.works__grid .works__item {
    grid-column: span 4;
    aspect-ratio: 1 / 1;
}

.works__grid .works__item:nth-child(5),
.works__grid .works__item:nth-child(12) {
    grid-column: 3 / span 4;
}

.works__instagram {
    margin-top: 56px;
    text-align: center;
}

.works__instagram-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 48px;
    padding: 11px 28px;

    border: 1px solid rgba(212, 192, 138, .38);
    border-radius: 16px;

    color: #E8E4DA;
    background: rgba(0, 0, 0, .05);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, .26),
        inset 0 1px 0 rgba(255, 255, 255, .05);
    backdrop-filter: blur(1.5px);

    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
    text-align: center;
    text-decoration: none;

    transition:
        color .3s ease,
        background-color .3s ease,
        box-shadow .3s ease,
        transform .3s ease;
}

.works__instagram-link:hover,
.works__instagram-link:focus-visible {
    color: #E8E4DA;
    border-color: #D4C08A;
    background: rgba(0, 0, 0, .12);
    box-shadow:
        0 14px 34px rgba(0, 0, 0, .36),
        0 0 18px rgba(212, 192, 138, .42),
        0 0 36px rgba(212, 192, 138, .2),
        inset 0 0 14px rgba(212, 192, 138, .08);
    outline: none;
    transform: translateY(-2px);
}

.works__instagram-link:active {
    color: #E8E4DA;
    border-color: #F2D98E;
    background: rgba(212, 192, 138, .1);
    box-shadow:
        0 0 20px rgba(212, 192, 138, .55),
        0 0 42px rgba(212, 192, 138, .3),
        inset 0 0 18px rgba(212, 192, 138, .14);
    transform: translateY(0) scale(.98);
}

/* =====================================
   Works Lightbox
===================================== */

.works-lightbox {
    width: 100%;
    max-width: none;
    height: 100%;
    max-height: none;

    padding: 32px;

    border: 0;

    background: rgba(0, 0, 0, .9);
}

.works-lightbox::backdrop {
    background: rgba(0, 0, 0, .82);
    backdrop-filter: blur(5px);
}

.works-lightbox__image {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;
}

.works-lightbox__close {
    position: fixed;
    z-index: 1;
    top: 20px;
    right: 24px;

    display: grid;
    place-items: center;

    width: 48px;
    height: 48px;

    padding: 0;

    border: 1px solid rgba(212, 192, 138, .65);
    border-radius: 50%;

    color: #E8E4DA;
    background: rgba(0, 0, 0, .65);

    font-size: 30px;
    line-height: 1;

    cursor: pointer;
}

.works-lightbox__close:hover,
.works-lightbox__close:focus-visible {
    border-color: #D4C08A;
    background: rgba(0, 0, 0, .9);
    outline: none;
}

/* =====================================
   Studio
===================================== */

.studio {
    padding: 0 0 110px;
}

.studio-container {
    width: min(1400px, 92%);
    margin: 0 auto;
    padding: 48px 42px 60px;

    overflow: hidden;

    border: 1px solid rgba(212, 192, 138, .2);
    border-radius: 28px;

    background: rgba(0, 0, 0, .05);
    box-shadow:
        0 24px 70px rgba(0, 0, 0, .34),
        inset 0 1px 0 rgba(255, 255, 255, .03);
    backdrop-filter: blur(1.5px);
}

@media (min-width: 1025px) {
    .studio-container {
        width: min(1360px, calc(92% - 40px));
    }
}

.studio__intro {
    margin-bottom: 44px;
    text-align: center;
}

.studio__title {
    position: relative;

    margin-bottom: 20px;
    padding-bottom: 20px;

    color: #E8E4DA;

    font-size: clamp(34px, 2.8vw, 46px);
    line-height: 1.1;
    text-shadow: 0 3px 16px rgba(0, 0, 0, .65);
}

.studio__title::after {
    content: "";

    position: absolute;
    bottom: 0;
    left: 50%;

    width: 120px;
    height: 2px;

    background: linear-gradient(
        90deg,
        transparent,
        #D4C08A,
        transparent
    );

    transform: translateX(-50%);
}

.studio__subtitle {
    color: #E8E4DA;

    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
}

.studio__image {
    position: relative;

    margin: 0;

    overflow: hidden;

    border: 1px solid rgba(212, 192, 138, .38);
    border-radius: 22px;

    background: rgba(0, 0, 0, .05);
    box-shadow: 0 18px 48px rgba(0, 0, 0, .34);
    backdrop-filter: blur(1.5px);
}

.studio__image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.studio__image--overview {
    width: min(100%, 980px);
    aspect-ratio: 2 / 1;

    margin-inline: auto;
}

.studio__heading {
    margin: 54px 0 34px;

    color: #E8E4DA;

    font-size: clamp(26px, 2.2vw, 34px);
    line-height: 1.2;
    text-align: center;
}

.studio__details {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(320px, .85fr);
    align-items: center;
    gap: clamp(42px, 5vw, 70px);
}

.studio__image--workspace {
    aspect-ratio: 2 / 1;
}

.studio__text {
    padding: 34px 32px;

    border: 1px solid rgba(212, 192, 138, .25);
    border-left: 3px solid rgba(212, 192, 138, .72);
    border-radius: 0 20px 20px 0;

    background: rgba(0, 0, 0, .28);
    box-shadow: 0 16px 42px rgba(0, 0, 0, .28);
    backdrop-filter: blur(2.5px);
}

.studio__text p {
    color: #F1F1F1;

    font-size: 16px;
    line-height: 1.7;
}

.studio__features {
    display: grid;
    gap: 14px;

    margin: 24px 0 0;
    padding: 0;

    list-style: none;
}

.studio__features li {
    display: flex;
    align-items: center;
    gap: 4px;

    color: #E8E4DA;

    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
}

.studio__features i {
    display: grid;
    place-items: center;

    width: 26px;

    color: #E8E4DA;

    font-size: 16px;
}

/* =====================================
   Schwerpunkte
===================================== */

.specialties {
    padding: 0 0 110px;
}

.specialties-container {
    width: min(1360px, calc(92% - 40px));
    margin: 0 auto;
    padding: 48px 42px 58px;

    border: 1px solid rgba(212, 192, 138, .22);
    border-radius: 28px;

    background: rgba(0, 0, 0, .05);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .28);
    backdrop-filter: blur(1.5px);
}

.specialties__intro {
    margin-bottom: 42px;

    text-align: center;
}

.specialties__title {
    position: relative;

    margin-bottom: 20px;
    padding-bottom: 20px;

    color: #E8E4DA;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 3.2vw, 46px);
    line-height: 1.15;
    text-shadow: 0 3px 16px rgba(0, 0, 0, .65);
}

.specialties__title::after {
    content: "";

    position: absolute;
    bottom: 0;
    left: 50%;

    width: 140px;
    height: 1px;

    background: linear-gradient(90deg, transparent, #D4C08A, transparent);

    transform: translateX(-50%);
}

.specialties__subtitle {
    width: min(100%, 1120px);
    margin: 0 auto;

    color: #E8E4DA;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 16px;
    line-height: 1.55;
    text-align: center;
}

@media (min-width: 1025px) {
    .specialties__subtitle {
        white-space: nowrap;
    }
}

.specialties__grid {
    display: grid;
    gap: 26px;
}

.specialties__grid--services {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.specialties__grid--styles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.specialties__heading {
    margin: 46px 0 30px;

    color: #E8E4DA;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    line-height: 1.2;
    text-align: center;
}

.specialties__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    min-height: 190px;
    padding: 28px 24px;

    border: 1px solid rgba(212, 192, 138, .45);
    border-radius: 20px;

    background: rgba(0, 0, 0, .05);
    box-shadow: 0 14px 34px rgba(0, 0, 0, .2);
    backdrop-filter: blur(1.5px);

    text-align: center;
}

.specialties__card i {
    margin-bottom: 15px;

    color: #E8E4DA;

    font-size: 27px;
}

.specialties__card h3 {
    margin-bottom: 12px;

    color: #E8E4DA;

    font-size: 21px;
    line-height: 1.25;
}

.specialties__card p {
    max-width: 500px;

    color: #F1F1F1;

    font-size: 15px;
    line-height: 1.55;
}

/* =====================================
   Bewertungen
===================================== */

.reviews {
    padding: 0 0 110px;
}

.reviews-container {
    width: min(1360px, calc(92% - 40px));
    margin: 0 auto;
    padding: 48px 42px 54px;

    border: 1px solid rgba(212, 192, 138, .22);
    border-radius: 28px;

    background: rgba(0, 0, 0, .05);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .28);
    backdrop-filter: blur(1.5px);

    text-align: center;
}

.reviews__intro {
    margin-bottom: 38px;
}

.reviews__title {
    position: relative;

    margin-bottom: 20px;
    padding-bottom: 20px;

    color: #E8E4DA;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 3.2vw, 46px);
    line-height: 1.15;
    text-shadow: 0 3px 16px rgba(0, 0, 0, .65);
}

.reviews__title::after {
    content: "";

    position: absolute;
    bottom: 0;
    left: 50%;

    width: 140px;
    height: 1px;

    background: linear-gradient(90deg, transparent, #D4C08A, transparent);

    transform: translateX(-50%);
}

.reviews__subtitle {
    width: min(100%, 900px);
    margin: 0 auto;

    color: #E8E4DA;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 16px;
    line-height: 1.55;
}

.reviews__summary {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px 22px;

    width: min(100%, 980px);
    margin: 0 auto;
    padding: 28px 32px;

    border: 1px solid rgba(212, 192, 138, .35);
    border-radius: 20px;

    background: rgba(0, 0, 0, .12);
    backdrop-filter: blur(2px);
}

.reviews__stars {
    display: flex;
    gap: 5px;

    color: #E8E4DA;

    font-size: 22px;
}

.reviews__score {
    color: #E8E4DA;

    font-size: 22px;
    line-height: 1.2;
}

.reviews__count {
    color: #F1F1F1;

    font-size: 15px;
    line-height: 1.5;
}

.reviews__carousel {
    display: grid;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: min(72%, 760px);
    gap: 24px;

    width: min(100%, 1080px);
    margin: 30px auto 0;
    padding: 1px 2px 5px;

    overflow-x: auto;
    overscroll-behavior-inline: contain;

    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;

    scrollbar-width: none;
    touch-action: pan-x;
}

.reviews__carousel::-webkit-scrollbar {
    display: none;
}

.reviews__card {
    display: flex;
    flex-direction: column;
    justify-content: center;

    min-height: 210px;
    padding: 30px 34px;

    border: 1px solid rgba(212, 192, 138, .32);
    border-radius: 20px;

    background: rgba(0, 0, 0, .2);
    box-shadow: 0 14px 34px rgba(0, 0, 0, .2);
    backdrop-filter: blur(2px);

    text-align: left;

    scroll-snap-align: center;
    scroll-snap-stop: always;
}

.reviews__card > i {
    margin-bottom: 16px;

    color: #E8E4DA;

    font-size: 24px;
}

.reviews__card blockquote {
    margin: 0;

    color: #F1F1F1;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 17px;
    font-style: italic;
    line-height: 1.65;
}

.reviews__card footer {
    display: flex;
    align-items: baseline;
    gap: 4px;

    margin-top: 20px;
}

.reviews__card footer strong {
    color: #E8E4DA;

    font-size: 15px;
}

.reviews__card footer span {
    color: rgba(241, 241, 241, .7);

    font-size: 13px;
}

.reviews__note {
    width: min(100%, 760px);
    margin: 24px auto 0;

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

    font-size: 14px;
    line-height: 1.55;
}

.reviews__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;

    margin-top: 28px;
}

.reviews__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 290px;
    min-height: 48px;
    padding: 11px 22px;

    border: 1px solid rgba(228, 201, 93, .72);
    border-radius: 999px;

    background: rgba(0, 0, 0, .24);
    color: #E8E4DA;
    box-shadow: 0 0 0 rgba(228, 201, 93, 0);

    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
    text-decoration: none;

    transition:
        color .25s ease,
        border-color .25s ease,
        background-color .25s ease,
        box-shadow .25s ease,
        transform .25s ease;
}

.reviews__link--primary {
    background: rgba(0, 0, 0, .24);
    color: #E8E4DA;
    box-shadow: 0 0 0 rgba(228, 201, 93, 0);
}

.reviews__link:hover,
.reviews__link:focus-visible {
    border-color: #F0D765;

    background: rgba(228, 201, 93, .13);
    color: #E8E4DA;
    box-shadow: 0 0 22px rgba(228, 201, 93, .38);

    transform: translateY(-2px);
}

.reviews__link:active {
    box-shadow: 0 0 30px rgba(228, 201, 93, .52);

    transform: translateY(0) scale(.98);
}

/* =====================================
   Footer
===================================== */

.site-footer {
    padding: 0 0 30px;
}

.site-footer__inner {
    width: min(1360px, calc(92% - 40px));
    margin: 0 auto;
    padding: 48px 42px 24px;

    border: 1px solid rgba(212, 192, 138, .22);
    border-radius: 28px;

    background: rgba(0, 0, 0, .18);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .32);
    backdrop-filter: blur(2.5px);
}

.site-footer__content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(170px, .45fr) minmax(0, 1fr);
    gap: clamp(50px, 7vw, 100px);
}

.site-footer__logo {
    flex: 0 0 auto;
    margin: 0;
}

.site-footer__logo .custom-logo-link,
.site-footer__logo > a {
    display: inline-block;

    color: #E8E4DA;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    font-weight: 700;
    text-decoration: none;
}

.site-footer__logo img {
    display: block;

    width: auto;
    max-width: 132px;
    max-height: 78px;
    object-fit: contain;
    filter: brightness(1.04) saturate(1.05) drop-shadow(0 5px 12px rgba(0, 0, 0, .2));
}

.site-footer__studio-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;

    width: fit-content;
}

.site-footer__studio > h2 {
    text-align: center;
}

.site-footer__studio-row address {
    flex: 0 0 auto;
}

.site-footer__studio {
    justify-self: start;

    width: fit-content;
    max-width: 100%;
}

.site-footer__name {
    display: inline-block;

    margin-bottom: 16px;

    color: #E8E4DA;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
}

.site-footer__brand > p {
    max-width: 470px;

    color: rgba(241, 241, 241, .84);

    font-size: 15px;
    line-height: 1.65;
}

.site-footer__socials {
    display: flex;
    gap: 12px;
}

.site-footer__socials a {
    display: grid;
    place-items: center;

    width: 44px;
    height: 44px;

    border: 1px solid rgba(228, 201, 93, .55);
    border-radius: 50%;

    background: rgba(0, 0, 0, .22);
    color: #E8E4DA;

    font-size: 18px;
    text-decoration: none;

    transition:
        color .25s ease,
        border-color .25s ease,
        background-color .25s ease,
        box-shadow .25s ease,
        transform .25s ease;
}

.site-footer__socials a:hover,
.site-footer__socials a:focus-visible {
    border-color: #F0D765;

    background: rgba(228, 201, 93, .13);
    color: #E8E4DA;
    box-shadow: 0 0 20px rgba(228, 201, 93, .38);

    transform: translateY(-2px);
}

.site-footer__column h2 {
    margin-bottom: 20px;

    color: #E8E4DA;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
    line-height: 1.25;
}

.site-footer__column address {
    display: grid;
    gap: 18px;

    font-style: normal;
}

.site-footer__column address a {
    display: flex;
    align-items: flex-start;
    gap: 12px;

    color: rgba(241, 241, 241, .86);

    font-size: 15px;
    line-height: 1.55;
    text-decoration: none;
}

.site-footer__studio address a:last-child {
    margin-top: -8px;
}

.site-footer__creator address > span {
    display: block;

    color: rgba(241, 241, 241, .86);

    font-size: 15px;
    line-height: 1.55;
}

.site-footer__creator-logo {
    display: block;

    flex: 0 0 auto;

    width: 74px;
    height: 68px;
    margin: 0;

    object-fit: contain;
    object-position: left center;
}

.site-footer__creator-row {
    display: flex;
    align-items: flex-start;
    gap: 4px;

    width: fit-content;
}

.site-footer__creator-row address {
    flex: 0 0 auto;

    gap: 0;
}

.site-footer__creator-row address a {
    position: relative;

    gap: 0;
    margin-top: 0;
}

.site-footer__creator-row address a i {
    position: absolute;
    left: -30px;
}

.site-footer__creator {
    justify-self: end;

    width: fit-content;
    max-width: 100%;
}

.site-footer__creator > h2 {
    text-align: center;
}

.site-footer__column address i {
    width: 18px;
    margin-top: 4px;

    color: #E8E4DA;

    text-align: center;
}

.site-footer__column ul {
    display: grid;
    gap: 12px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.site-footer__legal-column {
    justify-self: center;

    text-align: center;
}

.site-footer__column li a {
    color: rgba(241, 241, 241, .86);

    font-size: 15px;
    line-height: 1.45;
    text-decoration: none;
}

.site-footer__column a:hover,
.site-footer__column a:focus-visible,
.site-footer__legal a:hover,
.site-footer__legal a:focus-visible {
    color: #E8E4DA;
}

.site-footer__bottom {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;

    margin-top: 38px;
    padding-top: 22px;

    border-top: 1px solid rgba(212, 192, 138, .18);
}

.site-footer__bottom > p:last-child {
    text-align: right;
}

.site-footer__bottom p,
.site-footer__legal a {
    color: rgba(241, 241, 241, .65);

    font-size: 13px;
    line-height: 1.45;
}

.site-footer__legal {
    display: flex;
    gap: 22px;
}

.site-footer__legal a {
    text-decoration: none;
}

/* =====================================
   Rechtliche Seiten
===================================== */

.legal-page {
    padding: 30px 0 90px;
}

.legal-page__card {
    width: min(1000px, 88%);
    margin: 0 auto;
    padding: 52px 58px 60px;

    border: 1px solid rgba(212, 192, 138, .25);
    border-radius: 28px;

    background: rgba(0, 0, 0, .16);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .3);
    backdrop-filter: blur(2.5px);
}

.legal-page__intro h1 {
    position: relative;

    margin-bottom: 42px;
    padding-bottom: 20px;

    color: #E8E4DA;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(36px, 4vw, 48px);
    line-height: 1.15;
    text-align: center;
}

.legal-page__intro h1::after {
    content: "";

    position: absolute;
    bottom: 0;
    left: 50%;

    width: 140px;
    height: 1px;

    background: linear-gradient(90deg, transparent, #D4C08A, transparent);

    transform: translateX(-50%);
}

.legal-page__content {
    display: grid;
    gap: 34px;
}

.legal-page__content section {
    padding: 26px 28px;

    border: 1px solid rgba(212, 192, 138, .2);
    border-radius: 18px;

    background: rgba(0, 0, 0, .16);
}

.legal-page__content h2 {
    margin-bottom: 16px;

    color: #E8E4DA;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 23px;
    line-height: 1.3;
}

.legal-page__content h3 {
    margin: 22px 0 12px;

    color: #E8E4DA;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 19px;
    line-height: 1.35;
}

.legal-page__updated {
    margin-top: -26px;
    margin-bottom: 38px;

    color: rgba(241, 241, 241, .72);

    font-size: 14px;
    line-height: 1.5;
    text-align: center;
}

.legal-page__content p,
.legal-page__content a {
    color: #F1F1F1;

    font-size: 16px;
    line-height: 1.7;
}

.legal-page__content p + p {
    margin-top: 16px;
}

.legal-page__content ul {
    display: grid;
    gap: 7px;

    margin: 16px 0;
    padding-left: 24px;

    color: #F1F1F1;

    font-size: 16px;
    line-height: 1.6;
}

.legal-page__content li::marker {
    color: #E8E4DA;
}

.legal-page__content a {
    text-decoration-color: rgba(228, 201, 93, .6);
    text-underline-offset: 3px;
}

.legal-page__content a:hover,
.legal-page__content a:focus-visible {
    color: #E8E4DA;
}

/* =====================================
   Cookie-Banner
===================================== */

.site-footer__cookie-settings {
    padding: 0;
    border: 0;

    background: transparent;
    color: rgba(241, 241, 241, .86);

    font: inherit;
    cursor: pointer;
}

.site-footer__cookie-settings:hover,
.site-footer__cookie-settings:focus-visible {
    color: #E8E4DA;
}

.cookie-banner {
    position: fixed;
    z-index: 9999;
    right: 20px;
    bottom: 20px;
    left: 20px;

    opacity: 0;
    transform: translateY(24px);
    transition: opacity .25s ease, transform .25s ease;
}

.cookie-banner[hidden] {
    display: none;
}

.cookie-banner.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.cookie-banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    width: min(1120px, 100%);
    margin: 0 auto;
    padding: 22px 26px;

    border: 1px solid rgba(228, 201, 93, .7);
    border-radius: 20px;

    background: rgba(4, 11, 8, .96);
    box-shadow: 0 12px 42px rgba(0, 0, 0, .65), 0 0 24px rgba(228, 201, 93, .12);
    backdrop-filter: blur(12px);
}

.cookie-banner__copy {
    max-width: 650px;
}

.cookie-banner__copy h2 {
    margin-bottom: 7px;

    color: #E8E4DA;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    line-height: 1.25;
}

.cookie-banner__copy p,
.cookie-banner__copy a {
    color: rgba(241, 241, 241, .88);

    font-size: 14px;
    line-height: 1.55;
}

.cookie-banner__copy a {
    color: #E8E4DA;
    text-underline-offset: 3px;
}

.cookie-banner__actions {
    display: flex;
    flex: 0 0 auto;
    gap: 12px;
}

.cookie-banner__button {
    min-height: 44px;
    padding: 10px 18px;

    border: 1px solid #D4B94F;
    border-radius: 999px;

    color: #E8E4DA;

    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: color .25s ease, background-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.cookie-banner__button--secondary {
    background: rgba(0, 0, 0, .3);
}

.cookie-banner__button--primary {
    background: rgba(18, 47, 35, .92);
    box-shadow: 0 0 16px rgba(228, 201, 93, .14);
}

.cookie-banner__button:hover,
.cookie-banner__button:focus-visible {
    background: rgba(228, 201, 93, .16);
    color: #E8E4DA;
    box-shadow: 0 0 22px rgba(228, 201, 93, .35);
    transform: translateY(-2px);
}

@media (max-width: 767px) {
    .cookie-banner {
        right: 10px;
        bottom: 10px;
        left: 10px;
    }

    .cookie-banner__inner {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;

        padding: 20px 18px;

        border-radius: 16px;
    }

    .cookie-banner__copy h2 {
        font-size: 19px;
        text-align: center;
    }

    .cookie-banner__copy p {
        font-size: 13px;
        text-align: center;
    }

    .cookie-banner__actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .cookie-banner__button {
        padding-inline: 10px;

        font-size: 13px;
    }
}

/* =====================================
   Terminanfrage
===================================== */

body.appointment-modal-open {
    overflow: hidden;
}

.appointment-trigger {
    position: fixed;
    z-index: 900;
    right: 0;
    top: 58%;

    min-height: 50px;
    padding: 11px 24px 11px 20px;

    border: 2px solid #E4C95D;
    border-right: 0;
    border-radius: 999px 0 0 999px;

    background: rgba(13, 48, 36, .96);
    color: #E8E4DA;
    box-shadow: 0 0 18px rgba(228, 201, 93, .24);

    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition: color .25s ease, background-color .25s ease, box-shadow .25s ease, padding-right .25s ease;
}

.appointment-trigger:hover,
.appointment-trigger:focus-visible {
    padding-right: 30px;

    background: rgba(20, 68, 50, .98);
    color: #E8E4DA;
    box-shadow: 0 0 26px rgba(228, 201, 93, .46);
}

.appointment-trigger span {
    margin-right: 5px;
}

.appointment-modal {
    position: fixed;
    z-index: 10000;
    inset: 0;

    display: grid;
    place-items: center;

    padding: 24px;

    opacity: 0;
    transition: opacity .25s ease;
}

.appointment-modal[hidden] {
    display: none;
}

.appointment-modal.is-visible {
    opacity: 1;
}

.appointment-modal__backdrop {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, .76);
    backdrop-filter: blur(7px);
}

.appointment-modal__dialog {
    position: relative;
    z-index: 1;

    width: min(760px, 100%);
    max-height: calc(100vh - 48px);
    padding: 36px 38px 38px;

    overflow-y: auto;

    border: 1px solid rgba(228, 201, 93, .78);
    border-radius: 22px;

    background: rgba(4, 24, 17, .98);
    box-shadow: 0 22px 70px rgba(0, 0, 0, .72), 0 0 30px rgba(228, 201, 93, .12);
    transform: translateY(20px) scale(.985);
    transition: transform .25s ease;
}

.appointment-modal.is-visible .appointment-modal__dialog {
    transform: translateY(0) scale(1);
}

.appointment-modal__dialog > h2 {
    margin: 0 46px 28px;

    color: #E8E4DA;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 27px;
    line-height: 1.25;
    text-align: center;
}

.appointment-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;

    display: grid;
    place-items: center;

    width: 42px;
    height: 42px;
    border: 1px solid rgba(228, 201, 93, .65);
    border-radius: 50%;

    background: rgba(0, 0, 0, .35);
    color: #E8E4DA;

    font-size: 18px;
    cursor: pointer;
    transition: background-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.appointment-modal__close:hover,
.appointment-modal__close:focus-visible {
    background: rgba(228, 201, 93, .16);
    box-shadow: 0 0 18px rgba(228, 201, 93, .32);
    transform: rotate(5deg);
}

.appointment-form {
    display: grid;
    gap: 24px;
}

.appointment-form__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.appointment-form label,
.appointment-form__conditional {
    display: grid;
    gap: 8px;
}

.appointment-form label > span,
.appointment-form legend {
    color: #F3E9C5;

    font-size: 15px;
    line-height: 1.4;
}

.appointment-form b {
    color: #E87868;
}

.appointment-form input[type="text"],
.appointment-form input[type="email"],
.appointment-form input[type="tel"],
.appointment-form select,
.appointment-form textarea {
    width: 100%;
    padding: 13px 15px;

    border: 1px solid rgba(212, 192, 138, .5);
    border-radius: 13px;

    outline: 0;
    background: rgba(255, 255, 255, .065);
    color: #F1F1F1;

    font: inherit;
    font-size: 15px;
    transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.appointment-form input::placeholder,
.appointment-form textarea::placeholder {
    color: rgba(241, 241, 241, .58);
}

.appointment-form select option {
    background: #10261D;
    color: #F1F1F1;
}

.appointment-form input:focus,
.appointment-form select:focus,
.appointment-form textarea:focus {
    border-color: #E4C95D;
    background: rgba(255, 255, 255, .09);
    box-shadow: 0 0 0 3px rgba(228, 201, 93, .12);
}

.appointment-form textarea {
    resize: vertical;
}

.appointment-form fieldset {
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
}

.appointment-form__choices {
    display: grid;
    gap: 12px;
}

.appointment-form__choices legend {
    margin-bottom: 10px;
}

.appointment-form__choices label,
.appointment-form__privacy {
    display: flex;
    align-items: flex-start;
    gap: 10px;

    cursor: pointer;
}

.appointment-form input[type="radio"],
.appointment-form input[type="checkbox"] {
    flex: 0 0 auto;

    margin-top: 3px;

    accent-color: #D9B94D;
}

.appointment-form__conditional {
    gap: 22px;
}

.appointment-form__conditional[hidden],
.appointment-form__grid[hidden],
.appointment-form__call[hidden],
.appointment-form__privacy[hidden],
.appointment-form__submit[hidden] {
    display: none;
}

.appointment-form__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;

    margin-top: 10px;
}

.appointment-form__pills label {
    display: block;
}

.appointment-form__pills input {
    position: absolute;

    opacity: 0;
    pointer-events: none;
}

.appointment-form__pills span {
    display: block;

    padding: 9px 14px;

    border: 1px solid rgba(212, 192, 138, .45);
    border-radius: 999px;

    background: rgba(255, 255, 255, .055);
    color: #F1F1F1;

    cursor: pointer;
    transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.appointment-form__pills input:checked + span {
    border-color: #E4C95D;

    background: rgba(228, 201, 93, .18);
    color: #E8E4DA;
    box-shadow: 0 0 14px rgba(228, 201, 93, .18);
}

.appointment-form__call {
    padding: 22px;

    border: 1px solid rgba(228, 201, 93, .5);
    border-radius: 16px;

    background: rgba(0, 0, 0, .25);
    text-align: center;
}

.appointment-form__call p {
    margin-bottom: 12px;

    color: #F1F1F1;
}

.appointment-form__call a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 12px 20px;

    border: 1px solid #D4B94F;
    border-radius: 999px;

    background: rgba(18, 47, 35, .9);
    color: #E8E4DA;

    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 0 18px rgba(228, 201, 93, .18);
}

.appointment-form__privacy span {
    font-size: 13px;
}

.appointment-form__privacy a {
    color: #E8E4DA;
    text-underline-offset: 3px;
}

.appointment-form__honeypot {
    position: absolute;
    left: -10000px;
}

.appointment-form__status {
    min-height: 0;
    margin: 0;

    font-size: 14px;
    font-weight: 700;
    text-align: center;
}

.appointment-form__status.is-error {
    color: #FF9D8F;
}

.appointment-form__status.is-success {
    padding: 13px;

    border: 1px solid rgba(102, 208, 143, .45);
    border-radius: 12px;

    background: rgba(60, 153, 96, .13);
    color: #A8E9BF;
}

.appointment-form__submit {
    min-height: 48px;
    padding: 12px 20px;

    border: 1px solid #D4B94F;
    border-radius: 999px;

    background: linear-gradient(90deg, #B78F42, #E2C47D);
    color: #142019;

    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition: box-shadow .2s ease, filter .2s ease, transform .2s ease;
}

.appointment-form__submit:hover,
.appointment-form__submit:focus-visible {
    filter: brightness(1.08);
    box-shadow: 0 0 24px rgba(228, 201, 93, .32);
    transform: translateY(-2px);
}

.appointment-form__submit:disabled {
    cursor: wait;
    opacity: .7;
}

@media (max-width: 767px) {
    .appointment-trigger {
        top: auto;
        right: 10px;
        bottom: 12px;

        min-height: 44px;
        padding: 9px 16px;

        border-right: 2px solid #E4C95D;
        border-radius: 999px;

        font-size: 13px;
    }

    .appointment-trigger:hover,
    .appointment-trigger:focus-visible {
        padding-right: 16px;
    }

    .appointment-modal {
        padding: 10px;
    }

    .appointment-modal__dialog {
        max-height: calc(100vh - 20px);
        padding: 28px 18px 24px;

        border-radius: 17px;
    }

    .appointment-modal__dialog > h2 {
        margin: 4px 42px 24px 0;

        font-size: 21px;
        text-align: left;
    }

    .appointment-modal__close {
        top: 12px;
        right: 12px;

        width: 38px;
        height: 38px;
    }

    .appointment-form {
        gap: 20px;
    }

    .appointment-form__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .appointment-form__choices label > span {
        font-size: 14px;
    }

    .appointment-form__pills {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .appointment-form__pills span {
        padding: 9px 8px;

        font-size: 13px;
        text-align: center;
    }

    .appointment-form__call a {
        width: 100%;
        padding-inline: 10px;
    }
}

