* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/********* BREAKPOINTS **********/

/* Breakpoint: 576px+ */
@media (min-width: 36em) {}

/* Breakpoint: 768px+ */
@media (min-width: 48em) {}

/* Breakpoint: 992px+ */
@media (min-width: 62em) {}

/* Breakpoint: 1200px+ */
@media (min-width: 75em) {}

/* Breakpoint: 1400px+ */
@media (min-width: 87.5em) {}

/********* BASIS **********/

html {
    font-size: 1em;
}

body {
    font-family: "Montserrat", sans-serif;
}

.container {
    max-width: 75rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 62em) {
    .container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

/********* BUTTON **********/

.button {
    text-decoration: none;
    color: #ffffff;
    background-color: transparent;
    border: 0.1rem solid white;
    border-radius: 999999px;
    padding: 0.75rem 2rem;
    display: inline-block;
    transition: background-color 0.2s ease;
}

.button:hover {
    background-color: rgba(255, 255, 255, 0.25);
}

/********* NAVIGATION **********/

.header {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #4c6265;
    padding: 0 25px;
    min-height: 100px;
}

.logo {
    width: 15rem;
    display: block;
    flex-shrink: 0;
}

.logo img {
    display: block;
    width: 100%;
    height: auto;
}

.navigation {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.menu {
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
    align-items: center;
    gap: 0.25rem;
    z-index: 1;
}

.menu li {
    list-style-type: none;
}

.menu li a {
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 40px 25px;
    font-size: 1rem;
    line-height: 1;
    transition: background-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.menu li a:hover {
    box-shadow:
        0 -5px 0 #fff inset,
        500px 0 0 rgba(255, 255, 255, 0.03) inset;
    padding: 42px 25px;
}

/* Sprachumschalter */

.lang-switch {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-left: 0.75rem;
    margin-left: 0.75rem;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.lang-switch a {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-width: 2.6rem;
    height: 2.2rem;
    padding: 0 0.8rem !important;
    border-radius: 999px;
    line-height: 1 !important;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: none !important;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.lang-switch a:hover {
    padding: 0 0.8rem !important;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: none !important;
}

.lang-switch a[aria-current="page"] {
    background: rgb(91, 210, 152);
    color: #093c42;
    border-color: rgb(91, 210, 152);
}

.lang-switch strong {
    font-weight: 700;
}

.hamburger {
    position: relative;
    width: 30px;
    height: 4px;
    background: #fff;
    border-radius: 10px;
    cursor: pointer;
    z-index: 2;
    transition: 0.3s;
}

.hamburger:before,
.hamburger:after {
    content: "";
    position: absolute;
    height: 4px;
    right: 0;
    background: #fff;
    border-radius: 10px;
    transition: 0.3s;
}

.hamburger:before {
    top: -10px;
    width: 20px;
}

.hamburger:after {
    top: 10px;
    width: 25px;
}

.toggle-menu {
    position: absolute;
    width: 30px;
    height: 100%;
    z-index: 3;
    cursor: pointer;
    opacity: 0;
}

.hamburger,
.toggle-menu {
    display: none;
}

.navigation input:checked ~ .hamburger {
    background: transparent;
}

.navigation input:checked ~ .hamburger:before {
    top: 0;
    transform: rotate(-45deg);
    width: 30px;
}

.navigation input:checked ~ .hamburger:after {
    top: 0;
    transform: rotate(45deg);
    width: 30px;
}

.navigation input:checked ~ .menu {
    right: 0;
    box-shadow: -20px 0 40px rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 62em) {
    .hamburger,
    .toggle-menu {
        display: block;
    }

    .header {
        padding: 10px 25px;
        min-height: 90px;
    }

    .logo {
        width: 12rem;
    }

    .menu {
        justify-content: flex-start;
        flex-direction: column;
        align-items: center;
        position: fixed;
        top: 0;
        right: -220px;
        background-color: #4c6265;
        width: 220px;
        height: 100%;
        padding-top: 100px;
        transition: 0.2s;
        gap: 0;
    }

    .menu li {
        width: 100%;
    }

    .menu li a {
        padding: 42px 25px;
        box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1) inset;
    }

    .menu li a:hover {
        padding: 42px 25px;
        box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1) inset;
        background-color: rgba(255, 255, 255, 0.06);
    }

    .lang-switch {
        justify-content: center;
        width: 100%;
        padding: 1.25rem 0;
        margin-left: 0;
        border-left: none;
    }

    .lang-switch a {
        min-width: 3rem;
        height: 2.4rem;
        padding: 0 0.9rem !important;
    }

    .lang-switch a:hover {
        padding: 0 0.9rem !important;
    }
}

@media (min-width: 62em) {
    .navigation input:checked ~ .menu {
        right: 0;
        box-shadow: none;
    }
}

.header__heading {
    color: #ffffff;
    font-size: 2rem;
}

@media (min-width: 36em) {
    .header__heading {
        font-size: 3rem;
    }
}

@media (min-width: 62em) {
    .header__heading {
        padding-top: 5rem;
    }
}

.header__sub-heading {
    font-size: 1rem;
    color: #ffffff;
    padding-top: 0.5rem;
    padding-bottom: 2rem;
}

@media (min-width: 36em) {
    .header__sub-heading {
        font-size: 1.25rem;
    }
}

@media (min-width: 62em) {
    .header__sub-heading {
        padding-bottom: 7.5rem;
    }
}

/********* ADVENTURE-BEREICH **********/

.adventures {
    background-color: rgb(225, 233, 225);
    padding-bottom: 3rem;
}

.adventures__card {
    background-color: #ffffff;
    flex: 0 0 22.333333rem;
    margin: 1rem;
    border-radius: 1rem;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.5);
    will-change: transform;
    transform: scale(1);
    transition: transform 0.25s ease-in-out;
    position: relative;
}

.adventures__card:hover {
    transform: scale(1.05);
}

.adventures__card-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    margin-left: -1rem;
    margin-right: -1rem;
}

.adventures__card-img {
    width: 100%;
    display: block;
    height: 27rem;
    object-fit: cover;
    object-position: 50% 0%;
}

.adventures__card-heading {
    margin: 0;
    padding-top: 2rem;
    padding-bottom: 2rem;
    font-size: 1.5rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
}

.adventures__card-date {
    color: #ffffff;
    text-align: left;
    font-size: 1rem;
    margin: 0;
    padding: 2rem;
    line-height: 1.5rem;
}

.text-primary {
    color: rgb(192, 126, 3);
}

.adventures__card-bottom {
    position: absolute;
    bottom: 0;
    padding-bottom: 1.5rem;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-backdrop-filter: blur(0.5rem);
    backdrop-filter: blur(0.5rem);
}

.adventures--contact .button {
    background-color: rgb(91, 210, 152);
    border: none;
    color: #093c42;
    font-weight: 600;
    padding: 0.9rem 2.2rem;
}

.adventures--contact .button:hover {
    background-color: rgb(75, 185, 135);
}

/********* STORY-BEREICH **********/

.story {
    background-image: url("/images/main/schaefersee-2000x1125.jpg");
    background-position: 50% 50%;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 4rem;
    padding-bottom: 4rem;
    background-attachment: fixed;
}

@media (min-width: 62em) {
    .story {
        background-image: url("/images/main/schaefersee-2000x1125.jpg");
        background-position: 50% 50%;
        background-attachment: fixed;
    }
}

@media (min-width: 62em) {
    .story__inner {
        padding-left: 50%;
    }
}

.story__paragraph {
    color: #ffffff;
    text-align: left;
    font-size: 1rem;
    margin: 0;
    padding: 1.5rem;
    line-height: 1.75rem;
    background-color: rgba(75, 75, 75, 0.2);
    -webkit-backdrop-filter: blur(0.1rem);
    backdrop-filter: blur(0.3rem);
}

/********* ÜBERSCHRIFTEN **********/

.heading {
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #014153;
    padding: 2rem 0;
}

.heading--centered {
    text-align: center;
}

.heading__pre-text {
    display: block;
    font-size: 1.5rem;
    font-weight: 200;
}

.heading--white {
    color: #ffffff;
    padding-left: 1.5rem;
    background-color: rgba(75, 75, 75, 0.2);
    -webkit-backdrop-filter: blur(0.1rem);
    backdrop-filter: blur(0.3rem);
}

.heading--top::before {
    content: "";
    display: block;
    height: 0.25rem;
    width: 7.5rem;
    background-color: #9B9940;
    margin-bottom: 2rem;
}

/********* FOOTER-BEREICH **********/

.footer {
    background-color: #4c6265;
    padding: 3rem 0;
}

.footer__container {
    max-width: 75rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
    display: flex;
    flex-direction: row;
}

@media (min-width: 62em) {
    .footer__container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.footer__text-column {
    flex: 0 0 50%;
}

.footer__logo-column {
    flex: 0 0 50%;
    display: flex;
    justify-content: right;
    align-items: center;
}

.footer__heading {
    color: white;
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
}

.footer__contact-item {
    position: relative;
    margin-bottom: 1rem;
}

.footer__contact-item-icon {
    background-color: rgb(91, 210, 152);
    height: 4rem;
    width: 4rem;
    text-align: center;
    border-radius: 99999rem;
    font-size: 2.5rem;
    color: #093c42;
    position: relative;
    z-index: 2;
}

.footer__contact-item-icon--phone {
    line-height: 3.7rem;
}

.icon {
    fill: currentColor;
    height: 1em;
    vertical-align: middle;
    position: relative;
}

.footer__contact-item-link {
    position: absolute;
    text-decoration: none;
    color: white;
    padding: 1rem 2rem;
    background-color: #3F99A7;
    border-top-right-radius: 1rem;
    border-bottom-right-radius: 1rem;
    top: 0.4rem;
    left: 2rem;
    z-index: 1;
    width: 19rem;
    text-align: center;
    overflow: hidden;
}

.footer__contact-item-link::after {
    content: "";
    position: absolute;
    top: 0;
    left: calc(-100% - 5rem);
    width: calc(100% + 5rem);
    bottom: 0;
    z-index: -1;
    background-image: linear-gradient(-45deg, transparent 2.82rem, #093c42 2.82rem);
    transition: transform 0.5s ease-in-out;
}

.footer__contact-item-link:hover::after {
    transform: translate(100%, 0);
}

.footer__logo-container {
    font-size: 20rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 62em) {
    .footer__container {
        flex-direction: column;
    }

    .footer__logo-container {
        display: none;
    }
}

.footer_text {
    text-align: center;
    border-top: 0.1rem solid rgba(255, 255, 255, 0.25);
    padding-top: 1rem;
    color: rgb(225, 233, 225);
}

.top {
    padding-left: 50px;
    color: rgb(225, 233, 225);
}

/********* UNTERSEITEN-LAYOUT **********/

body.page {
    background: #4c6265;
}

body.page .story {
    background: none !important;
    background-image: none !important;
    background-attachment: scroll !important;
    background-color: #4c6265 !important;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

@media (min-width: 62em) {
    body.page .story__inner {
        padding-left: 0 !important;
    }
}

body.page .story__inner {
    max-width: 1100px;
}

body.page .story__paragraph {
    background-color: rgba(255, 255, 255, 0.08);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

body.page .heading--white {
    background-color: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding-left: 0;
}

body.page .feature {
    display: flex;
    gap: 48px;
    align-items: center;
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

body.page .feature:last-child {
    border-bottom: none;
}

body.page .feature__media {
    flex: 0 0 320px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    border: 2px solid rgba(255, 255, 255, 0.18);
}

body.page .feature__media img,
body.page .feature__media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

body.page .feature__content {
    flex: 1 1 auto;
    color: #fff;
}

@media (max-width: 900px) {
    body.page .feature {
        flex-direction: column;
        align-items: flex-start;
    }

    body.page .feature__media {
        width: 260px;
        height: 260px;
        flex-basis: auto;
    }
}

.feature__content--full {
    width: 100%;
}

.feature__diagram {
    margin: 1.5rem 0 2rem 0;
    text-align: center;
}

.feature__diagram img {
    display: block;
    width: 100%;
    max-width: 980px;
    height: auto;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/********* PROJEKT-BOXEN **********/

.project-facts {
    margin: 20px;
    padding: 18px 22px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    max-width: 460px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.6);
}

.project-facts__title {
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0.04em;
    color: #ffffff;
}

.project-facts__item {
    font-size: 0.95rem;
    margin-bottom: 6px;
    color: #ffffff;
}

.project-facts__item span {
    font-weight: 600;
    color: #9fd3c7;
}

/********* MOBILE FIXES **********/
@media screen and (max-width: 48em) {

    html {
        font-size: 15px;
    }

    body {
        overflow-x: hidden;
    }

    .container {
        padding-left: 0.9rem;
        padding-right: 0.9rem;
    }

    .header {
        min-height: 78px;
        height: auto;
        padding: 10px 16px;
    }

    .logo {
        width: 10.5rem;
    }

    .navigation {
        min-width: 0;
    }

    .menu {
        top: 0;
        right: -100%;
        width: min(82vw, 320px);
        max-width: 320px;
        height: 100dvh;
        padding-top: 84px;
        overflow-y: auto;
        align-items: stretch;
    }

    .navigation input:checked ~ .menu {
        right: 0;
    }

    .menu li {
        width: 100%;
    }

    .menu li a {
        padding: 20px 18px;
        font-size: 1rem;
        line-height: 1.25;
        text-align: center;
        word-break: normal;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .menu li a:hover {
        padding: 20px 18px;
    }

    .lang-switch {
        justify-content: center;
        width: 100%;
        padding: 1rem 0 1.25rem 0;
        margin-left: 0;
        border-left: none;
    }

    .lang-switch a {
        min-width: 3rem;
        height: 2.25rem;
        padding: 0 0.8rem !important;
    }

    .heading {
        font-size: 1.7rem;
        line-height: 1.2;
        letter-spacing: 0.03em;
        padding: 1.25rem 0;
        overflow-wrap: break-word;
        word-break: normal;
        hyphens: auto;
    }

    .heading__pre-text {
        font-size: 1rem;
        line-height: 1.3;
    }

    .heading--white {
        padding-left: 0;
    }

    .heading--top::before {
        width: 5rem;
        margin-bottom: 1rem;
    }

    /* Startseite: weiße Überschriften im Blur-Kasten mit mehr Innenabstand */
    body:not(.page) .heading--white {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    body:not(.page) .heading--top::before {
        margin-left: 1rem;
    }

    .story {
        padding-top: 2rem;
        padding-bottom: 2rem;
        background-attachment: fixed;
    }

    .story__paragraph {
        font-size: 0.98rem;
        line-height: 1.6;
        padding: 1rem;
        width: 100%;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    body.page .story {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    body.page .story__inner {
        max-width: 100%;
    }

    body.page .feature {
        flex-direction: column;
        align-items: center;
        gap: 1.25rem;
        padding: 1.5rem 0;
        text-align: left;
    }

    body.page .feature__media {
        width: min(72vw, 240px);
        height: min(72vw, 240px);
        flex: 0 0 auto;
        margin-left: auto;
        margin-right: auto;
    }

    body.page .feature__content {
        width: 100%;
        min-width: 0;
    }

    .feature__content--full {
        width: 100%;
    }

    .feature__diagram {
        margin: 1rem 0 1.5rem 0;
    }

    .project-facts {
        max-width: 100%;
        width: calc(100% - 2rem);
        margin: 20px auto;
        padding: 16px 18px;
    }

    .adventures {
        padding-bottom: 2rem;
    }

    .adventures__card {
        flex: 1 1 100%;
        margin: 0.75rem 0;
    }

    .adventures__card-img {
        height: 18rem;
    }

    .adventures__card-heading {
        font-size: 1.2rem;
        padding-top: 1.25rem;
        padding-bottom: 1.25rem;
    }

    .button,
    .adventures--contact .button {
        width: auto;
        max-width: 100%;
        padding: 0.85rem 1.4rem;
        text-align: center;
    }

    .footer {
        padding: 2rem 0;
    }

    .footer__container {
        padding-left: 1rem;
        padding-right: 1rem;
        flex-direction: column;
        align-items: center;
    }

    .footer__text-column,
    .footer__logo-column {
        flex: 1 1 auto;
        width: 100%;
    }

    .footer__heading {
        font-size: 1.6rem;
        text-align: center;
        margin-bottom: 1.25rem;
    }

    /* Footer-Kontakt mobil: Icon und Kontaktfeld nebeneinander */
    .footer__contact-item {
        margin-bottom: 1rem;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        max-width: 24rem;
        margin-left: auto;
        margin-right: auto;
    }

    .footer__contact-item-icon {
        position: relative;
        flex: 0 0 4rem;
        margin-bottom: 0;
    }

    .footer__contact-item-link {
        position: relative;
        left: auto;
        top: auto;
        width: auto;
        min-width: 0;
        flex: 1 1 auto;
        max-width: 18rem;
        margin-left: -0.5rem;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
        border-top-right-radius: 1rem;
        border-bottom-right-radius: 1rem;
        text-align: center;
        padding: 1rem 1.25rem;
    }

    .footer_text {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        text-align: center;
    }

    .top {
        padding-left: 0;
    }
}

/* =========================================================
   Leben am Schäfersee
   ========================================================= */

.life-hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    background-image: url("/images/gallery/banner-reiher.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #fff;
    overflow: hidden;
}

.life-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.58)),
        linear-gradient(to right, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.04));
    z-index: 1;
}

.life-hero .container {
    position: relative;
    z-index: 2;
}

.life-hero .heading {
    color: #f2ecdf;
}

.life-hero .heading__pre-text {
    color: rgba(242, 236, 223, 0.88);
}

.life-hero__content {
    max-width: 860px;
    padding: 16rem 0 10rem;
}

.life-hero__lead {
    max-width: 760px;
    margin: 2.4rem auto 0;
    font-size: 2rem;
    line-height: 1.75;
    text-align: center;
    color: rgba(242, 236, 223, 0.95);
    text-shadow: 0 0.2rem 0.8rem rgba(0, 0, 0, 0.18);
}

.life-hero__buttons {
    display: flex;
    justify-content: center;
    gap: 1.6rem;
    flex-wrap: wrap;
    margin-top: 3.2rem;
}

.button--ghost {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.75);
    color: #fff;
}

.button--ghost:hover {
    background: rgba(255, 255, 255, 0.08);
}

/* Überlappender Introblock */
.life-intro-panel {
    position: relative;
    margin-top: -5rem;
    z-index: 20;
}

.life-intro-panel__inner {
    position: relative;
    z-index: 21;
    max-width: 980px;
    margin: 0 auto;
    padding: 4rem 4.5rem;
    background: #f5f3ee;
    box-shadow: 0 1.8rem 4.4rem rgba(0, 0, 0, 0.16);
    border-radius: 0.4rem;
}

.life-intro-panel__text {
    margin: 0;
    font-size: 2rem;
    line-height: 1.8;
    color: #1d1d1d;
    text-align: center;
}

/* Story-Blöcke der Unterseite */
.story--life {
    padding-top: 8rem;
    padding-bottom: 4rem;
}

.story--schaefersee-bg {
    position: relative;
    background-image:
        linear-gradient(rgba(20, 20, 20, 0.62), rgba(20, 20, 20, 0.62)),
        url("/images/main/schaefersee.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* Vollbreiter Bildbanner */
.life-banner {
    width: 100%;
    margin: 2rem 0 7rem;
    overflow: hidden;
}

.life-banner img {
    display: block;
    width: 100%;
    height: 100rem;
    object-fit: cover;
    object-position: center center;
}

/* Bildstreifen */
.life-gallery-strip {
    padding: 2rem 0 7rem;
}

.life-gallery-strip__grid {
    display: grid;
    gap: 2rem;
    align-items: start;
}

.life-gallery-strip__grid--two {
    grid-template-columns: repeat(2, 1fr);
}

.life-gallery-strip__grid--three {
    grid-template-columns: repeat(3, 1fr);
}

.life-gallery-strip__item {
    margin: 0;
    overflow: hidden;
    background: #111;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.14);
    align-self: start;
}

.life-gallery-strip__item img {
    display: block;
    width: 100%;
    height: 32rem;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.life-gallery-strip__item:hover img {
    transform: scale(1.03);
}

.life-gallery-strip__caption {
    padding: 1.4rem 1.6rem 1.6rem;
    font-size: 1.35rem;
    line-height: 1.6;
    color: #555;
    background: #fff;
}

/* Featured Image */
.life-featured-image {
    padding: 2rem 0 8rem;
}

.life-featured-image__figure {
    margin: 0;
    background: #111;
    box-shadow: 0 1.6rem 4rem rgba(0, 0, 0, 0.18);
}

.life-featured-image__figure img {
    display: block;
    width: 100%;
    max-height: 82rem;
    object-fit: cover;
    object-position: center center;
}

.life-featured-image__caption {
    padding: 1.6rem 2rem 2rem;
    font-size: 1.4rem;
    letter-spacing: 0.03em;
    color: #555;
    background: #fff;
}

/* Große Galerie */
.life-gallery {
    padding: 4rem 0 10rem;
}

.life-gallery__grid--mosaic {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 8rem;
    gap: 1.8rem;
    margin-top: 4rem;
}

.life-gallery__item {
    margin: 0;
    overflow: hidden;
    background: #111;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.14);
}

.life-gallery__item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.life-gallery__caption {
    padding: 1.2rem 1.4rem 1.4rem;
    font-size: 1.3rem;
    line-height: 1.5;
    color: #666;
    background: #fff;
}

.life-gallery__item:hover img {
    transform: scale(1.035);
}

.life-gallery__item--large {
    grid-column: span 7;
    grid-row: span 5;
}

.life-gallery__item--wide {
    grid-column: span 7;
    grid-row: span 4;
}

.life-gallery__item:not(.life-gallery__item--large):not(.life-gallery__item--wide):not(.life-gallery__item--full) {
    grid-column: span 5;
    grid-row: span 2;
}

/* Bessere Lesbarkeit in hellen Bild-/Galeriebereichen */
.life-gallery .heading,
.life-featured-image .heading {
    color: #222;
}

/* Optional etwas ruhigere Textbreite in Inhaltsblöcken */
.story--life .story__inner {
    max-width: 1100px;
    margin: 0 auto;
}

/* Mobile / Tablet */
@media (max-width: 1100px) {
    .life-hero {
        min-height: 75vh;
        background-attachment: scroll;
    }

    .life-hero__content {
        padding: 14rem 0 8rem;
    }

    .story--schaefersee-bg {
        background-attachment: scroll;
    }

    .life-banner img {
        height: 40rem;
    }

    .life-gallery-strip__grid--two,
    .life-gallery-strip__grid--three {
        grid-template-columns: 1fr;
    }

    .life-gallery-strip__item img {
        height: 34rem;
    }

    .life-gallery__grid--mosaic {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 20rem;
    }

    .life-gallery__item--large,
    .life-gallery__item--wide,
    .life-gallery__item:not(.life-gallery__item--large):not(.life-gallery__item--wide) {
        grid-column: span 1;
        grid-row: span 1;
    }
}

@media (max-width: 700px) {
    .life-hero__lead {
        font-size: 1.7rem;
        line-height: 1.65;
    }

    .life-intro-panel {
        margin-top: -4rem;
    }

    .life-intro-panel__inner {
        padding: 3rem 2.4rem;
    }

    .life-intro-panel__text {
        font-size: 1.7rem;
        line-height: 1.7;
    }

    .life-banner img {
        height: 28rem;
    }

    .life-featured-image__figure img {
        max-height: 48rem;
    }

    .life-gallery__grid--mosaic {
        grid-template-columns: 1fr;
        grid-auto-rows: 24rem;
    }
}

/* =========================================================
   Weitere Vogelbeobachtungen am Schäfersee
   ========================================================= */

.life-banner--bird-portrait {
    margin: 2rem 0 5rem;
}

.life-banner--bird-portrait img {
    display: block;
    width: 100%;
    height: 34rem;
    object-fit: cover;
    object-position: left center;
}

/* Vogelgalerie baut auf dem bestehenden Mosaik-System auf */
.life-gallery__grid--birds .life-gallery__item--full {
    grid-column: 1 / -1;
    grid-row: span 4;
}

.life-gallery__grid--birds .life-gallery__item--full img {
    object-position: center center;
}

/* Bildunterschriften in dieser Galerie ausblenden */
.life-gallery__grid--birds figcaption,
.life-gallery__grid--birds .life-gallery__caption {
    display: none;
}

@media (max-width: 1100px) {
    .life-banner--bird-portrait img {
        height: 24rem;
        object-position: 25% center;
    }

    .life-gallery__grid--birds .life-gallery__item--full,
    .life-gallery__grid--birds .life-gallery__item--large,
    .life-gallery__grid--birds .life-gallery__item--wide,
    .life-gallery__grid--birds .life-gallery__item:not(.life-gallery__item--large):not(.life-gallery__item--wide):not(.life-gallery__item--full) {
        grid-column: span 1;
        grid-row: span 1;
    }
}

@media (max-width: 700px) {
    .life-banner--bird-portrait img {
        height: 18rem;
        object-position: 22% center;
    }
}