/* Adrenalin Becker – Outdoor palette: forest green, water blue, stone, white */
:root {
    --color-forest: #1e4d3a;
    --color-forest-dark: #153529;
    --color-water: #2a7a9e;
    --color-water-light: #4a9ec4;
    --color-stone: #5c6670;
    --color-stone-light: #8a939c;
    --color-bg: #f7f9f8;
    --color-white: #ffffff;
    --color-accent: #c45c2a;
    --font-display: "Inter", system-ui, sans-serif;
    --font-body: "DM Sans", system-ui, sans-serif;
    --radius: 12px;
    --shadow: 0 12px 40px rgba(21, 53, 41, 0.12);
    --header-h: 72px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 1.0625rem;
    line-height: 1.6;
    color: var(--color-stone);
    background: var(--color-white);
}

body.is-home {
    background: var(--color-white);
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 9999;
    padding: 1rem 1.25rem;
    background: var(--color-forest);
    color: var(--color-white);
    text-decoration: none;
    font-weight: 600;
}

.skip-link:focus {
    left: 0;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-water);
}

a:hover {
    color: var(--color-forest);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(30, 77, 58, 0.08);
}

.site-header--home {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    background: transparent;
    border-bottom: none;
    backdrop-filter: none;
    transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header--home.is-scrolled {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: var(--header-h);
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #111;
}

.logo-icon {
    display: flex;
    color: inherit;
}

.logo-wordmark {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.1;
}

.site-header--home:not(.is-scrolled) .logo {
    color: #fff;
}

.site-header--home.is-scrolled .logo {
    color: #111;
}

.header-nav-wrap {
    display: flex;
    align-items: center;
    gap: 0.5rem 1rem;
    flex: 1;
    justify-content: flex-end;
}

.header-call {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.65rem;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    color: #111;
    white-space: nowrap;
    border-radius: 8px;
}

.header-call:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #111;
}

.site-header--home:not(.is-scrolled) .header-call {
    color: #fff;
}

.site-header--home:not(.is-scrolled) .header-call:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.site-header--home.is-scrolled .header-call {
    color: #111;
}

.site-header--home.is-scrolled .header-call:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #111;
}

.header-call-icon {
    display: flex;
    opacity: 0.9;
}

.header-tools {
    display: none;
    align-items: center;
    gap: 0.15rem;
    margin-left: auto;
}

.header-call-mobile {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: #111;
    border-radius: 10px;
}

.header-call-mobile:hover {
    background: rgba(0, 0, 0, 0.06);
    color: #111;
}

.site-header--home:not(.is-scrolled) .header-call-mobile {
    color: #fff;
}

.site-header--home:not(.is-scrolled) .header-call-mobile:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.site-header--home.is-scrolled .header-call-mobile {
    color: #111;
}

@media (max-width: 960px) {
    .header-call-mobile {
        display: flex;
    }

    .header-nav-wrap {
        margin-left: 0;
    }
}


.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    height: 3px;
    width: 24px;
    background: #111;
    border-radius: 2px;
}

.site-header--home:not(.is-scrolled) .nav-toggle span {
    background: #fff;
}

.site-header--home.is-scrolled .nav-toggle span {
    background: #111;
}

.site-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.25rem 0.5rem;
}

.site-nav a {
    display: block;
    padding: 0.5rem 0.65rem;
    text-decoration: none;
    color: var(--color-stone);
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: 8px;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
    color: var(--color-forest);
    background: rgba(30, 77, 58, 0.08);
}

.site-header--home:not(.is-scrolled) .site-nav a {
    color: rgba(255, 255, 255, 0.92);
}

.site-header--home:not(.is-scrolled) .site-nav a:hover,
.site-header--home:not(.is-scrolled) .site-nav a[aria-current="page"] {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
}

.site-header--home.is-scrolled .site-nav a {
    color: var(--color-stone);
}

.site-header--home.is-scrolled .site-nav a:hover,
.site-header--home.is-scrolled .site-nav a[aria-current="page"] {
    color: var(--color-forest);
    background: rgba(30, 77, 58, 0.08);
}

@media (max-width: 960px) {
    .header-tools {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .header-nav-wrap {
        order: 3;
        flex: 1 1 100%;
        flex-direction: column;
        align-items: stretch;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }

    .header-nav-wrap.is-open {
        max-height: 560px;
    }

    .site-nav {
        width: 100%;
    }

    .site-nav ul {
        flex-direction: column;
        align-items: stretch;
        padding: 0.5rem 0 0;
        gap: 0;
    }

    .site-nav a {
        padding: 0.65rem 0;
        border-radius: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }

    .site-header--home:not(.is-scrolled) .site-nav a {
        color: #111;
        background: transparent;
    }

    .site-header--home:not(.is-scrolled) .header-nav-wrap.is-open {
        background: #fff;
        padding: 0 1.25rem 1rem;
        margin: 0 -1.25rem -0.5rem;
        border-radius: 0 0 12px 12px;
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    }

    .site-header--home:not(.is-scrolled) .header-nav-wrap.is-open .site-nav a {
        color: var(--color-stone);
    }

    .site-header--home:not(.is-scrolled) .header-nav-wrap.is-open .site-nav a:hover,
    .site-header--home:not(.is-scrolled) .header-nav-wrap.is-open .site-nav a[aria-current="page"] {
        color: var(--color-forest);
        background: rgba(30, 77, 58, 0.06);
    }

    .header-call {
        justify-content: center;
        margin-top: 0.5rem;
        padding: 0.75rem;
        border: 1px solid rgba(0, 0, 0, 0.1);
    }

    .site-header--home:not(.is-scrolled) .header-nav-wrap:not(.is-open) .header-call {
        display: none;
    }

    .site-header--home:not(.is-scrolled) .header-nav-wrap.is-open .header-call {
        display: inline-flex;
        color: #111;
        border-color: rgba(0, 0, 0, 0.12);
    }
}

.hero {
    position: relative;
    min-height: clamp(320px, 55vh, 520px);
    display: flex;
    align-items: flex-end;
    color: var(--color-white);
    background: var(--color-forest-dark);
    overflow: hidden;
}

.hero--home {
    min-height: min(92vh, 820px);
    align-items: center;
    padding-top: var(--header-h);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.25) 45%, rgba(0, 0, 0, 0.35) 100%),
        var(--hero-photo, none) center / cover no-repeat;
}

.hero-bg--photo {
    background-blend-mode: normal, multiply;
}

.hero-inner {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.25rem;
    width: 100%;
}

.hero--home .hero-inner {
    padding-top: 2rem;
    padding-bottom: 4rem;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 0.75rem;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}

.hero--home h1 {
    max-width: 18ch;
}

.hero p.lead {
    font-size: 1.15rem;
    max-width: 36rem;
    margin: 0 0 1.5rem;
    opacity: 0.95;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.btn-hero-solid {
    background: #fff;
    color: #111;
    border-color: #fff;
    font-family: var(--font-display);
    font-weight: 600;
}

.btn-hero-solid:hover {
    background: #f0f0f0;
    color: #111;
    border-color: #f0f0f0;
}

.btn-hero-solid::after {
    content: " ›";
    font-weight: 700;
}

/* Vertrauens-Leiste direkt unter dem Hero (Startseite) */
.trust-strip {
    position: relative;
    z-index: 2;
    background: #fff;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 8px 32px -12px rgba(15, 23, 42, 0.12);
}

.trust-strip__inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 1.15rem 1.25rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.15rem 1.5rem;
}

@media (min-width: 560px) {
    .trust-strip__inner {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .trust-strip__inner {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
        padding: 1.25rem 1.5rem;
    }
}

.trust-strip__item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: flex-start;
}

@media (min-width: 900px) {
    .trust-strip__item {
        justify-content: center;
        text-align: left;
    }
}

.trust-strip__icon {
    display: flex;
    flex-shrink: 0;
    color: #475569;
}

.trust-strip__text {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.35;
    color: #334155;
    letter-spacing: -0.01em;
}

.main-home {
    padding-top: 0;
}

.page-hero {
    position: relative;
    overflow: hidden;
}

.page-hero--image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: clamp(240px, 36vh, 420px);
    padding: clamp(2.25rem, 5vw, 3.5rem) 1.25rem;
    color: #fff;
}

.page-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(0, 0, 0, 0.55) 0%,
        rgba(0, 0, 0, 0.35) 50%,
        rgba(0, 0, 0, 0.5) 100%
    );
}

.page-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
}

.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    margin: 0 0 0.5rem;
    line-height: 1.12;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.page-hero p {
    margin: 0 auto;
    max-width: 42rem;
    font-size: 1.05rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 1px 16px rgba(0, 0, 0, 0.35);
}

main#main {
    padding-bottom: 3rem;
}

.section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 1.25rem;
}

.section--center {
    text-align: center;
}

.section--white {
    background: var(--color-white);
}

.section--muted {
    background: #f3f4f6;
}

.section-title-large {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.35rem);
    font-weight: 800;
    color: #111;
    margin: 0 0 0.75rem;
    line-height: 1.15;
}

.section--center .section-intro {
    margin-left: auto;
    margin-right: auto;
}

.section-intro--narrow {
    max-width: 36rem;
}

.eyebrow {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-stone-light);
    margin: 0 0 0.75rem;
}

.card-grid--offers {
    margin-top: 0.5rem;
    text-align: left;
}

.card--offer {
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.card-image-wrap {
    position: relative;
}

.price-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: rgba(255, 255, 255, 0.95);
    color: #111;
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.card-meta {
    font-size: 0.85rem;
    color: var(--color-stone-light);
    margin: 0 0 0.5rem;
    font-weight: 600;
}

.link-arrow {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
    color: #111;
    text-decoration: none;
    margin-top: auto;
    align-self: flex-start;
}

.link-arrow::after {
    content: " →";
}

.link-arrow:hover {
    color: var(--color-water);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
    text-align: left;
}

.why-card {
    background: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 14px;
    padding: 1.35rem 1.25rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.why-card h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: #111;
    margin: 0 0 0.5rem;
}

.why-card p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--color-stone);
    line-height: 1.55;
}

.why-icon {
    display: flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    margin-bottom: 0.85rem;
    color: #111;
}

.section h2 {
    font-family: var(--font-display);
    color: var(--color-forest);
    font-size: 1.65rem;
    margin: 0 0 1rem;
}

.section-intro {
    max-width: 42rem;
    margin-bottom: 1.5rem;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.25rem;
}

.card {
    background: var(--color-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.card-img {
    aspect-ratio: 16 / 10;
    background: linear-gradient(145deg, var(--color-water-light), var(--color-forest));
    object-fit: cover;
}

.card-body {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card--offer .card-body {
    padding: 1.35rem 1.25rem 1.5rem;
}

.card--offer .card-body h3 {
    color: #111;
    font-size: 1.25rem;
}

.card-body h3 {
    font-family: var(--font-display);
    color: var(--color-forest);
    margin: 0 0 0.5rem;
    font-size: 1.2rem;
}

.card-body p {
    margin: 0 0 1rem;
    flex: 1;
    font-size: 0.98rem;
}

.feature-list {
    margin: 0;
    padding-left: 1.2rem;
    color: var(--color-stone);
}

.feature-list li {
    margin-bottom: 0.35rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.25rem;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border-radius: 10px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn-primary {
    background: var(--color-forest);
    color: var(--color-white);
}

.btn-primary:hover {
    background: var(--color-forest-dark);
    color: var(--color-white);
}

.btn-secondary {
    background: var(--color-water);
    color: var(--color-white);
}

.btn-secondary:hover {
    background: #236a8a;
    color: var(--color-white);
}

.btn-outline {
    background: transparent;
    border-color: var(--color-forest);
    color: var(--color-forest);
}

.btn-outline:hover {
    background: var(--color-forest);
    color: var(--color-white);
}

.btn-outline-light {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.85);
    color: var(--color-white);
}

.btn-outline-light:hover {
    background: var(--color-white);
    color: var(--color-forest);
}

.trust-bar {
    background: var(--color-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1.25rem 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: -2rem;
    position: relative;
    z-index: 2;
}

.trust-bar strong {
    display: block;
    font-family: var(--font-display);
    color: var(--color-forest);
    font-size: 0.95rem;
}

.trust-bar span {
    font-size: 0.9rem;
    color: var(--color-stone);
}

/* CTA-Band: volle Viewport-Breite, Hintergrundbild */
.cta-band {
    position: relative;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    overflow: hidden;
    color: #fff;
    padding: clamp(3.25rem, 10vw, 5.5rem) 1.5rem;
    text-align: center;
}

.cta-band__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.cta-band__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(8, 12, 16, 0.55) 0%,
        rgba(8, 12, 16, 0.72) 50%,
        rgba(8, 12, 16, 0.78) 100%
    );
}

.cta-band__inner {
    position: relative;
    z-index: 1;
    max-width: 40rem;
    margin: 0 auto;
}

.cta-band__headline {
    font-family: "Instrument Sans", var(--font-display), system-ui, sans-serif;
    font-size: clamp(1.75rem, 4.5vw, 2.5rem);
    font-weight: 600;
    letter-spacing: -0.035em;
    line-height: 1.15;
    margin: 0 0 1rem;
    text-shadow: 0 2px 28px rgba(0, 0, 0, 0.35);
}

.cta-band__text {
    margin: 0 0 1.75rem;
    font-size: clamp(1rem, 2.2vw, 1.125rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.88);
    text-shadow: 0 1px 16px rgba(0, 0, 0, 0.35);
}

.cta-band__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem 1rem;
}

.cta-band__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.65rem 1.5rem;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    border-radius: 999px;
    background: #fff;
    color: #0c0c0c;
    border: 2px solid #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.cta-band__btn:hover {
    color: #0c0c0c;
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.cta-band__btn--outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.55);
}

.cta-band__btn--outline:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.85);
    box-shadow: none;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--color-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin: 1rem 0;
}

.pricing-table th,
.pricing-table td {
    padding: 0.85rem 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(92, 102, 112, 0.12);
}

.pricing-table th {
    background: rgba(30, 77, 58, 0.08);
    color: var(--color-forest);
    font-family: var(--font-display);
}

.pricing-table tr:last-child td {
    border-bottom: none;
}

.split {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .split {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
}

blockquote.testimonial {
    margin: 0;
    padding: 1.25rem 1.5rem;
    border-left: 4px solid var(--color-water);
    background: var(--color-white);
    border-radius: 0 var(--radius) var(--radius) 0;
    box-shadow: var(--shadow);
}

blockquote.testimonial cite {
    display: block;
    margin-top: 0.75rem;
    font-style: normal;
    font-weight: 600;
    color: var(--color-forest);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.85rem;
}

@media (min-width: 560px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gallery-grid__btn {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--color-stone-light);
    cursor: zoom-in;
    font: inherit;
    color: inherit;
}

.gallery-grid__btn:focus-visible {
    outline: 2px solid var(--color-water);
    outline-offset: 3px;
}

.gallery-grid__btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
    vertical-align: middle;
}

.gallery-grid__btn:hover img {
    transform: scale(1.05);
}

/* Galerie Lightbox */
.gallery-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 400;
    grid-template: 1fr / 1fr;
    place-items: center;
    padding: 1rem;
}

.gallery-lightbox.is-open {
    display: grid;
}

.gallery-lightbox__backdrop {
    grid-area: 1 / 1;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    border: none;
    background: rgba(8, 12, 16, 0.92);
    cursor: pointer;
}

.gallery-lightbox__dialog {
    grid-area: 1 / 1;
    position: relative;
    z-index: 1;
    max-width: min(96vw, 1400px);
    max-height: 92vh;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.35rem;
    pointer-events: none;
}

.gallery-lightbox__close {
    pointer-events: auto;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.gallery-lightbox__close:hover {
    background: rgba(255, 255, 255, 0.22);
}

.gallery-lightbox__close:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.gallery-lightbox__img {
    pointer-events: auto;
    display: block;
    max-width: 96vw;
    max-height: calc(92vh - 52px);
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: var(--radius);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}

.gallery-page__cta {
    margin-top: 1.75rem;
    text-align: center;
}

/* —— Zielgruppen: Firmen, Vereine, Familien —— */
.section--firmen .section-intro--narrow,
.section--vereine .section-intro--narrow,
.section--familien .section-intro--narrow {
    margin-left: auto;
    margin-right: auto;
}

.audience-callout {
    max-width: 42rem;
    margin: clamp(1.5rem, 3vw, 2rem) auto 0;
    padding: 1rem 1.25rem;
    border-radius: 14px;
    border: 1px solid rgba(30, 77, 58, 0.12);
    background: rgba(42, 122, 158, 0.06);
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--color-stone);
}

.audience-callout strong {
    color: var(--color-forest);
}

.audience-callout a {
    color: var(--color-water);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

.audience-callout a:hover {
    color: var(--color-forest);
}

.firmen-block {
    margin-top: clamp(2.25rem, 5vw, 3rem);
}

.firmen-block--programme {
    margin-top: clamp(2.75rem, 6vw, 3.5rem);
}

.firmen-block__eyebrow {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-water);
    margin: 0 0 0.6rem;
    text-align: center;
}

.firmen-block__title {
    font-family: var(--font-display);
    font-size: clamp(1.65rem, 3.5vw, 2.1rem);
    font-weight: 800;
    color: var(--color-forest);
    margin: 0 0 1.35rem;
    line-height: 1.15;
    letter-spacing: -0.03em;
    text-align: center;
}

.firmen-goals {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 720px) {
    .firmen-goals {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.1rem;
    }
}

.firmen-goal {
    padding: 1.35rem 1.2rem;
    border-radius: 16px;
    border: 1px solid rgba(30, 77, 58, 0.1);
    background: #fff;
    box-shadow: 0 4px 22px rgba(21, 53, 41, 0.06);
    text-align: center;
}

.firmen-goal__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    border-radius: 14px;
    background: rgba(42, 122, 158, 0.1);
    color: var(--color-water);
}

.firmen-goal__title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-forest);
    margin: 0 0 0.5rem;
    letter-spacing: -0.02em;
}

.firmen-goal__text {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--color-stone);
}

.firmen-programme-split {
    display: grid;
    gap: 1.75rem;
    align-items: start;
    max-width: 960px;
    margin: 0 auto;
}

@media (min-width: 800px) {
    .firmen-programme-split {
        grid-template-columns: minmax(0, 1fr) minmax(240px, 38%);
        gap: 2rem;
        align-items: center;
    }
}

ul.firmen-programme-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.firmen-programme-list li {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    margin-bottom: 0.65rem;
    padding: 0.9rem 1.1rem;
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #fff;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
    color: var(--color-stone);
    font-size: 1rem;
    line-height: 1.4;
}

.firmen-programme-list li:last-child {
    margin-bottom: 0;
}

.firmen-programme-list .tour-checklist__icon {
    margin-top: 0;
    flex-shrink: 0;
}

.firmen-programme-list__hint {
    font-weight: 400;
    font-size: 0.9em;
    color: var(--color-stone-light);
}

.firmen-programme__figure {
    margin: 0;
}

.firmen-programme__figure img {
    width: 100%;
    border-radius: 16px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    box-shadow: 0 16px 48px rgba(21, 53, 41, 0.12);
    vertical-align: middle;
}

.firmen-page__cta {
    margin-top: clamp(2rem, 4vw, 2.5rem);
    text-align: center;
}

/* —— Kontakt —— */
.section--kontakt {
    max-width: 1120px;
}

.kontakt-page-head {
    text-align: center;
    max-width: 36rem;
    margin: 0 auto 2.25rem;
}

.kontakt-page-head__eyebrow {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-water);
    margin: 0 0 0.65rem;
}

.kontakt-page-head__lede {
    margin: 0;
    font-size: 1.0625rem;
    line-height: 1.6;
    color: var(--color-stone);
}

.kontakt-layout {
    display: grid;
    gap: 1.5rem;
    align-items: start;
}

@media (min-width: 900px) {
    .kontakt-layout {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
        gap: 2rem;
    }
}

.kontakt-card,
.kontakt-form-card {
    border-radius: 20px;
    border: 1px solid rgba(30, 77, 58, 0.1);
    background: #fff;
    box-shadow: 0 8px 32px rgba(21, 53, 41, 0.06);
    padding: clamp(1.35rem, 3vw, 1.85rem);
}

.kontakt-card__title,
.kontakt-form-card__title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--color-forest);
    margin: 0 0 1.15rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.kontakt-card__address {
    font-style: normal;
    margin: 0 0 1.25rem;
    font-size: 1rem;
    line-height: 1.65;
    color: var(--color-stone);
}

.kontakt-card__address strong {
    display: block;
    font-size: 1.05rem;
    color: var(--color-forest);
    margin-bottom: 0.35rem;
}

.kontakt-card__channels {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.kontakt-channel {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.65rem 0.85rem;
    border-radius: 12px;
    background: rgba(42, 122, 158, 0.06);
    color: var(--color-forest);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background 0.2s ease, color 0.2s ease;
}

.kontakt-channel:hover {
    background: rgba(42, 122, 158, 0.12);
    color: var(--color-water);
}

.kontakt-channel__icon {
    flex-shrink: 0;
    display: flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.85);
    color: var(--color-water);
}

.kontakt-card__note {
    margin: 1.25rem 0 0;
    padding-top: 1.1rem;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--color-stone-light);
}

.kontakt-form .alert {
    border-radius: 12px;
}

.kontakt-form .alert-success {
    background: rgba(30, 77, 58, 0.1);
    border-color: rgba(30, 77, 58, 0.2);
}

.kontakt-form__privacy {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
    font-size: 0.9rem;
    line-height: 1.5;
    font-weight: 500;
    color: var(--color-stone);
}

.kontakt-form__privacy input {
    width: auto;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.kontakt-form__privacy a {
    font-weight: 600;
}

.kontakt-form .form-actions {
    margin-top: 0.25rem;
}

.kontakt-form .btn-primary {
    min-width: min(100%, 220px);
    padding: 0.75rem 1.5rem;
}

@media (min-width: 480px) {
    .kontakt-form .form-actions {
        display: flex;
        justify-content: flex-end;
    }
}

.kontakt-form input,
.kontakt-form select,
.kontakt-form textarea {
    border-radius: 10px;
    border-color: rgba(92, 102, 112, 0.2);
    padding: 0.7rem 0.95rem;
}

.kontakt-form textarea {
    min-height: 9rem;
    resize: vertical;
}

.form-grid {
    display: grid;
    gap: 1rem;
}

@media (min-width: 640px) {
    .form-grid.two {
        grid-template-columns: 1fr 1fr;
    }
}

label {
    display: block;
    font-weight: 600;
    color: var(--color-forest);
    margin-bottom: 0.35rem;
    font-size: 0.9rem;
}

input,
select,
textarea {
    width: 100%;
    padding: 0.65rem 0.85rem;
    border: 1px solid rgba(92, 102, 112, 0.25);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
}

input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--color-water);
    outline-offset: 2px;
}

.form-actions {
    margin-top: 0.5rem;
}

.alert {
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    margin-bottom: 1rem;
}

.alert-success {
    background: rgba(30, 77, 58, 0.12);
    color: var(--color-forest-dark);
    border: 1px solid rgba(30, 77, 58, 0.25);
}

.alert-error {
    background: rgba(196, 92, 42, 0.12);
    color: #7a3318;
    border: 1px solid rgba(196, 92, 42, 0.3);
}

.legal-content {
    max-width: 720px;
}

.legal-content h2 {
    font-size: 1.25rem;
    margin-top: 2rem;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.site-footer {
    background: #f1f5f9;
    color: #334155;
    padding: 2.5rem 1.25rem 1.5rem;
    margin-top: 0;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.site-footer address {
    font-style: normal;
    margin: 0;
}

.site-footer strong {
    color: #0a0a0a;
}

.site-footer a {
    color: #475569;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}

.site-footer a:hover {
    color: #0a0a0a;
    border-bottom-color: rgba(10, 10, 10, 0.2);
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, max-content));
    justify-content: center;
    justify-items: start;
    gap: 2rem 2.5rem;
}

.footer-grid > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    max-width: 22rem;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.4rem;
}

.regiondo-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.75rem;
    padding: 1.15rem 1.25rem;
    background: rgba(30, 77, 58, 0.08);
    border: 1px solid rgba(30, 77, 58, 0.15);
    border-radius: var(--radius);
    border-left: 4px solid var(--color-water);
}

.regiondo-cta__text {
    margin: 0;
    flex: 1;
    min-width: 200px;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--color-stone);
}

.regiondo-cta .btn-primary {
    flex-shrink: 0;
}

.footer-copy {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    font-size: 0.85rem;
    color: #64748b;
    text-align: center;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    color: #333;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 -6px 32px rgba(0, 0, 0, 0.08);
}

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

.cookie-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.cookie-text {
    margin: 0;
    flex: 1;
    min-width: 220px;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #444;
}

.cookie-text a {
    color: var(--color-water);
    font-weight: 600;
}

.btn-cookie {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.55rem 1.15rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    background: #fff;
    color: #111;
    cursor: pointer;
    flex-shrink: 0;
}

.btn-cookie:hover {
    background: #f5f5f5;
}

.badge {
    display: inline-block;
    padding: 0.2rem 0.55rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    background: rgba(42, 122, 158, 0.15);
    color: var(--color-water);
    border-radius: 6px;
}

/* ——— Startseite 2026 (Hero bleibt unverändert) ——— */
.main-home--26 {
    --ink: #0a0a0a;
    --muted: #64748b;
    --line: rgba(15, 23, 42, 0.08);
    --surface: #fafafa;
    --font-pro: "Instrument Sans", var(--font-display), system-ui, sans-serif;
}

.block-26 {
    padding: clamp(3.5rem, 8vw, 6rem) 1.25rem;
}

.block-26__contain {
    max-width: 1120px;
    margin: 0 auto;
}

.block-26--offers {
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(42, 122, 158, 0.07), transparent 55%),
        linear-gradient(180deg, #fff 0%, var(--surface) 100%);
}

/* Zweiter Karten-Block (z. B. Events): gleiches Raster, leicht anderer Verlauf */
.block-26--offers-alt {
    background:
        radial-gradient(ellipse 70% 45% at 80% 0%, rgba(30, 77, 58, 0.06), transparent 50%),
        linear-gradient(180deg, var(--surface) 0%, #fff 55%, var(--surface) 100%);
}

.block-26--why {
    background: #fff;
}

.block-26--audiences {
    background: var(--surface);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.block-26--quote {
    background: #fff;
    padding-top: clamp(2.5rem, 6vw, 4rem);
    padding-bottom: clamp(2.5rem, 6vw, 4rem);
}

.block-26--referenzen {
    background: #fff;
    padding-top: clamp(2.5rem, 6vw, 4rem);
    padding-bottom: clamp(2.5rem, 6vw, 4rem);
    border-top: 1px solid var(--line);
}

.referenzen-26 {
    max-width: 48rem;
    margin: 0 auto;
}

.referenzen-26__viewport {
    display: grid;
    grid-template: 1fr / 1fr;
    place-items: start center;
    width: 100%;
    max-width: 42rem;
    margin: 0 auto;
}

.referenzen-26__slide {
    grid-area: 1 / 1;
    width: 100%;
    margin: 0;
    padding: clamp(2rem, 4vw, 2.75rem) clamp(1.5rem, 4vw, 3rem);
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.03) 0%, rgba(42, 122, 158, 0.06) 100%);
    border: 1px solid var(--line);
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.55s ease;
    z-index: 0;
}

.referenzen-26__slide.is-active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
}

.referenzen-26__text {
    margin: 0;
    font-family: var(--font-pro);
    font-size: clamp(1.2rem, 2.8vw, 1.55rem);
    font-weight: 500;
    letter-spacing: -0.025em;
    line-height: 1.45;
    color: var(--ink);
}

.referenzen-26__src {
    margin-top: 1.25rem;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #94a3b8;
}

.referenzen-26__dots {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.35rem;
}

.referenzen-26__dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: #cbd5e1;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.referenzen-26__dot:hover {
    background: #94a3b8;
}

.referenzen-26__dot.is-active {
    background: var(--color-water);
    transform: scale(1.2);
}

.referenzen-26__dot:focus-visible {
    outline: 2px solid var(--color-water);
    outline-offset: 3px;
}

.block-26__head {
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.block-26__head--center {
    text-align: center;
}

.block-26__head--center .lede-26 {
    margin-left: auto;
    margin-right: auto;
}

.title-26 {
    font-family: var(--font-pro);
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 600;
    letter-spacing: -0.035em;
    line-height: 1.08;
    color: var(--ink);
    margin: 0 0 1rem;
}

.title-26--sm {
    font-size: clamp(1.65rem, 3.5vw, 2.25rem);
}

.lede-26 {
    font-size: 1.0625rem;
    line-height: 1.65;
    color: var(--muted);
    max-width: 38rem;
    margin: 0;
}

.lede-26--tight {
    max-width: 36rem;
}

.eyebrow-26 {
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #94a3b8;
    margin: 0 0 0.85rem;
}

.eyebrow-26--brand {
    color: var(--color-water);
    letter-spacing: 0.2em;
}

.offer-grid-26 {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 3vw, 2rem);
}

/* Drei Erlebnis-Karten: eigene Reihe, nicht das Vierer-Raster von „Dein perfektes Event“ */
@media (min-width: 768px) {
    .offer-grid-26--three {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.25rem;
    }

    .offer-grid-26--events {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.25rem;
    }
}

@media (min-width: 1100px) {
    .offer-grid-26--events {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.offer-card-26 {
    --card-radius: 14px;
    --price-green: #2d5a4c;
    display: flex;
    flex-direction: column;
    border-radius: var(--card-radius);
    border: none;
    background: #fff;
    overflow: hidden;
    box-shadow:
        0 4px 24px rgba(15, 23, 42, 0.06),
        0 2px 8px rgba(15, 23, 42, 0.04);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.offer-card-26:hover {
    box-shadow:
        0 12px 40px rgba(15, 23, 42, 0.1),
        0 4px 12px rgba(15, 23, 42, 0.06);
    transform: translateY(-2px);
}

.offer-card-26__media {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #e2e8f0;
    border-radius: var(--card-radius) var(--card-radius) 0 0;
}

.offer-card-26__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.offer-card-26:hover .offer-card-26__media img {
    transform: scale(1.03);
}

.offer-card-26__tag {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--ink);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.offer-card-26__body {
    padding: 1.35rem 1.5rem 1.35rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0.5rem;
}

.offer-card-26__dur {
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 600;
    color: #94a3b8;
    letter-spacing: 0.02em;
}

.offer-card-26__title {
    font-family: var(--font-pro);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    margin: 0;
    line-height: 1.25;
    color: #0f172a;
}

.offer-card-26__title a {
    color: inherit;
    text-decoration: none;
}

.offer-card-26__title a:hover {
    color: var(--color-water);
}

.offer-card-26__text {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.55;
    color: #64748b;
    flex: 1;
}

.offer-card-26__footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem 1rem;
    margin-top: 0.35rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.offer-card-26__price {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--price-green);
    letter-spacing: -0.01em;
}

.offer-card-26__more {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-water);
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.offer-card-26__more::after {
    content: " →";
    font-weight: 700;
}

.offer-card-26__more:hover {
    color: #236a8a;
}

.bento-26 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 0.5rem;
}

@media (min-width: 560px) {
    .bento-26 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .bento-26 {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.1rem;
    }
}

.bento-26__cell {
    display: flex;
    flex-direction: column;
    min-height: 12.5rem;
    padding: 1.5rem 1.35rem;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: #fff;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.bento-26__cell:hover {
    border-color: rgba(15, 23, 42, 0.12);
    background: #fafafa;
}

.bento-26__cell h3 {
    font-family: var(--font-pro);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin: 0 0 0.5rem;
}

.bento-26__cell p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--muted);
    flex: 1;
}

.bento-26__icon {
    display: flex;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.04);
    color: var(--ink);
    margin-bottom: 1rem;
}

.stats-26 {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(0.85rem, 2vw, 1.15rem);
    margin-top: clamp(2.35rem, 5vw, 3.25rem);
    max-width: 58rem;
    margin-left: auto;
    margin-right: auto;
    padding: clamp(1.35rem, 3vw, 1.85rem);
    border-radius: 24px;
    background:
        radial-gradient(ellipse 100% 90% at 50% -10%, rgba(42, 122, 158, 0.11), transparent 58%),
        radial-gradient(ellipse 80% 70% at 0% 100%, rgba(30, 77, 58, 0.06), transparent 52%),
        linear-gradient(165deg, #f8fafb 0%, #f1f5f9 100%);
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.9) inset,
        0 12px 40px rgba(15, 23, 42, 0.05);
}

@media (min-width: 640px) {
    .stats-26 {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

.stats-26__item {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: clamp(1.45rem, 3vw, 1.85rem) 1.15rem 1.35rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.75);
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.95) inset,
        0 6px 28px rgba(15, 23, 42, 0.055),
        0 2px 10px rgba(15, 23, 42, 0.03);
    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease,
        border-color 0.28s ease;
}

.stats-26__item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 0;
    background: linear-gradient(90deg, var(--color-forest) 0%, var(--color-water) 55%, var(--color-water-light) 100%);
    opacity: 0.92;
}

.stats-26__item:nth-child(2)::before {
    background: linear-gradient(90deg, var(--color-water) 0%, var(--color-water-light) 100%);
}

.stats-26__item:nth-child(3)::before {
    background: linear-gradient(90deg, var(--color-water-light) 0%, var(--color-forest) 100%);
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
    .stats-26__item:hover {
        transform: translateY(-4px);
        border-color: rgba(42, 122, 158, 0.2);
        box-shadow:
            0 1px 0 rgba(255, 255, 255, 0.98) inset,
            0 14px 36px rgba(15, 23, 42, 0.08),
            0 4px 14px rgba(42, 122, 158, 0.08);
    }
}

.stats-26__value {
    margin: 0 0 0.55rem;
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.6vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.028em;
    line-height: 1.05;
    color: var(--ink);
    font-variant-numeric: tabular-nums lining-nums;
    font-feature-settings: "tnum" 1, "lnum" 1;
}

.stats-26__plus,
.stats-26__percent {
    font-weight: 800;
    color: var(--color-water);
}

.stats-26__unit {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.52em;
    color: var(--muted);
    margin-left: 0.08em;
    letter-spacing: 0;
    vertical-align: 0.12em;
}

.stats-26__label {
    margin: 0;
    padding-top: 0.65rem;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1.4;
    color: var(--muted);
}

.audience-26 {
    display: grid;
    gap: 0;
    border-radius: 20px;
    border: 1px solid var(--line);
    overflow: hidden;
    background: #fff;
}

@media (min-width: 768px) {
    .audience-26 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.audience-26__item {
    padding: clamp(1.5rem, 3vw, 2rem);
    border-bottom: 1px solid var(--line);
}

.audience-26__item:last-child {
    border-bottom: none;
}

@media (min-width: 768px) {
    .audience-26__item {
        border-bottom: none;
        border-right: 1px solid var(--line);
    }

    .audience-26__item:last-child {
        border-right: none;
    }
}

.audience-26__label {
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #94a3b8;
}

.audience-26__title {
    font-family: var(--font-pro);
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: -0.025em;
    color: var(--ink);
    margin: 0.5rem 0 0.65rem;
}

.audience-26__text {
    margin: 0 0 1.1rem;
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--muted);
}

.audience-26__link {
    font-family: var(--font-display);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--ink);
    text-decoration: none;
    border-bottom: 1px solid rgba(10, 10, 10, 0.18);
    padding-bottom: 2px;
}

.audience-26__link:hover {
    color: var(--color-water);
    border-bottom-color: var(--color-water);
}

.quote-26 {
    margin: 0;
    padding: clamp(2rem, 4vw, 2.75rem) clamp(1.5rem, 4vw, 3rem);
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.03) 0%, rgba(42, 122, 158, 0.06) 100%);
    border: 1px solid var(--line);
    text-align: center;
}

.quote-26 blockquote {
    margin: 0;
    font-family: var(--font-pro);
    font-size: clamp(1.2rem, 2.8vw, 1.55rem);
    font-weight: 500;
    letter-spacing: -0.025em;
    line-height: 1.45;
    color: var(--ink);
}

.quote-26 figcaption {
    margin-top: 1.25rem;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #94a3b8;
}

body.is-home main#main {
    padding-bottom: 0;
}

/* —— Erlebnis-Detail unter Page-Hero (Canyoning & Co.) —— */
.section--experience-page {
    padding-bottom: 0;
}

.tour-story {
    margin-bottom: 2.5rem;
}

.tour-story__grid {
    display: grid;
    gap: 2rem 2.5rem;
    align-items: start;
}

@media (min-width: 900px) {
    .tour-story__grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    }
}

.tour-story__eyebrow {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-water);
    margin: 0 0 0.65rem;
}

.tour-story__title {
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #111;
    margin: 0 0 1.1rem;
    line-height: 1.12;
    letter-spacing: -0.03em;
}

.tour-story__lead {
    margin: 0 0 1rem;
    color: var(--color-stone);
    line-height: 1.65;
    max-width: 38rem;
}

.tour-checklist {
    list-style: none;
    margin: 1.35rem 0 0;
    padding: 0;
}

.tour-checklist li {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
    margin-bottom: 0.65rem;
    color: var(--color-stone);
    line-height: 1.45;
}

.tour-checklist__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    margin-top: 0.12rem;
    border-radius: 50%;
    background: var(--color-forest);
    color: #fff;
}

.tour-story__figure {
    margin: 0 0 1rem;
}

.tour-story__img {
    width: 100%;
    border-radius: 16px;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    box-shadow: 0 20px 50px rgba(21, 53, 41, 0.15);
}

.tour-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.tour-fact {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
    padding: 0.85rem 1rem;
    background: #eef1ef;
    border-radius: 12px;
    border: 1px solid rgba(30, 77, 58, 0.06);
}

.tour-fact__icon {
    flex-shrink: 0;
    color: var(--color-stone);
    opacity: 0.9;
    display: flex;
}

.tour-fact__text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

.tour-fact__label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-stone-light);
}

.tour-fact__value {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    color: #111;
    line-height: 1.25;
}

.tour-story__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.35rem;
}

/* Horizontale Streifen-Galerie */
.strip-gallery-section {
    margin-top: 0.5rem;
    padding-bottom: 3rem;
}

.strip-gallery-section__head {
    max-width: 1200px;
    margin: 0 auto 1rem;
    padding: 0 1.25rem;
}

.strip-gallery-section__title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-forest);
    margin: 0;
}

.strip-gallery {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    overflow: hidden;
}

.strip-gallery__track {
    display: flex;
    gap: 0.85rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 1.25rem;
    padding: 0.35rem 1.25rem 1rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.strip-gallery__item {
    flex: 0 0 min(78vw, 380px);
    scroll-snap-align: start;
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: var(--color-stone-light);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.strip-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* —— JGA-Seite (Paketkarten & Kalkulation) —— */
.section--jga .jga-detail {
    margin-top: 2.75rem;
    margin-bottom: 2.5rem;
}

.jga-detail__head {
    max-width: 40rem;
    margin-bottom: 1.75rem;
}

.jga-detail__title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3.2vw, 2rem);
    font-weight: 800;
    color: #111;
    margin: 0 0 0.65rem;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.jga-detail__lede {
    margin: 0;
    color: var(--color-stone);
    line-height: 1.65;
    font-size: 1.02rem;
}

.jga-package-grid {
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 900px) {
    .jga-package-grid {
        grid-template-columns: repeat(3, 1fr);
        align-items: stretch;
    }
}

.jga-card {
    background: #f1f5f4;
    border: 1px solid rgba(30, 77, 58, 0.1);
    border-radius: 16px;
    padding: 1.35rem 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    box-shadow: 0 4px 20px rgba(21, 53, 41, 0.06);
}

.jga-card__title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--color-forest);
    margin: 0 0 0.35rem;
    letter-spacing: -0.02em;
}

.jga-card__meta {
    margin: 0 0 1rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-stone-light);
    line-height: 1.4;
}

.jga-card__text {
    margin: 0 0 1rem;
    font-size: 0.98rem;
    color: var(--color-stone);
    line-height: 1.55;
}

.jga-card__label {
    margin: 0 0 0.4rem;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-water);
}

.jga-card__list {
    margin: 0 0 1rem;
    padding-left: 1.15rem;
    color: var(--color-stone);
    font-size: 0.95rem;
    line-height: 1.5;
}

.jga-card__list li {
    margin-bottom: 0.3rem;
}

.jga-card__facts {
    margin: 0 0 1rem;
    display: grid;
    gap: 0.65rem;
}

.jga-card__facts div {
    display: grid;
    gap: 0.15rem;
}

.jga-card__facts dt {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-stone-light);
}

.jga-card__facts dd {
    margin: 0;
    font-size: 0.95rem;
    color: var(--color-stone);
    line-height: 1.45;
}

.jga-card__price {
    margin-top: auto;
    margin-bottom: 0;
    font-size: 0.98rem;
    color: var(--color-stone);
    line-height: 1.5;
}

.jga-card__foot {
    margin-top: auto;
    margin-bottom: 0;
    font-size: 0.88rem;
    color: var(--color-stone-light);
    line-height: 1.45;
}

.jga-pricing-block {
    margin-bottom: 2.5rem;
}

.jga-pricing-block__title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--color-forest);
    margin: 0 0 1rem;
    letter-spacing: -0.02em;
}

.jga-pricing-block__inner {
    background: linear-gradient(165deg, rgba(30, 77, 58, 0.06) 0%, rgba(42, 122, 158, 0.05) 100%);
    border: 1px solid rgba(30, 77, 58, 0.12);
    border-radius: 16px;
    padding: 1.5rem 1.25rem 1.35rem;
    max-width: 36rem;
}

.jga-pricing-table__total td {
    border-bottom: none;
    padding-top: 1rem;
}

.jga-pricing-table__hint {
    display: block;
    font-weight: 400;
    font-size: 0.85rem;
    color: var(--color-stone-light);
    margin-top: 0.2rem;
}

.jga-pricing-block__note {
    margin: 1rem 0 0;
    font-size: 0.9rem;
    color: var(--color-stone);
    line-height: 1.55;
}

.jga-pricing-block__cta {
    margin: 1.25rem 0 0;
}
