/* =============================================================================
   Fazenda Cachoeira da Grota — V2
   Gemeinsames Stylesheet für alle Sprachen und Unterseiten.

   Aufbau:
     01 Design-Tokens (hell / dunkel)
     02 Reset & Basis
     03 Typografie
     04 Layout
     05 Barrierefreiheit (Skip-Link, Fokus, sr-only)
     06 Buttons
     07 Kopfzeile, Navigation, Sprache, Theme
     08 Hero
     09 Vertrauensleiste
     10 Abschnitte
     11 Merkmal-Karten
     12 Hinweisboxen
     13 Wasserfall-Karten
     14 Foto-Galerie (Wischen)
     15 Apartments
     16 Gastgeber
     17 Eingebettete Karten & Videos
     18 Info-Karte / GPS
     19 Bewertungen
     20 FAQ
     21 Schluss-CTA
     22 Fußzeile
     23 WhatsApp-Button
     24 Lightbox
     25 Bewegung & Reveal
     26 Hausregeln-Seite
     27 Druck
   ============================================================================= */

/* ---------------------------------------------------------------------------
   01  DESIGN-TOKENS
   --------------------------------------------------------------------------- */

:root {
    /* Markenfarben */
    --forest-950: #0b1710;
    --forest-900: #12251a;
    --forest-800: #1a3527;
    --forest-700: #234834;
    --forest-600: #2e5c43;
    --forest-500: #3c7555;
    --forest-100: #dde8dd;
    --forest-50: #eff4ee;

    --sand-50: #fbf8f2;
    --sand-100: #f4efe4;
    --sand-200: #e9e1d2;
    --sand-300: #d9ceb9;

    --clay-700: #8e3a21;
    --clay-600: #a5432a;
    --clay-400: #e8916b;

    --gold-500: #b8801a;
    --gold-400: #d9a02b;
    --gold-200: #f0d9a3;

    /* WhatsApp-Grün, abgedunkelt: Weiß auf dem Original-Grün #25d366 erreicht
       nur 1,9:1 Kontrast. --wa-600 kommt auf 5,0:1, --wa-700 auf 6,8:1. */
    --wa-500: #25d366;
    --wa-600: #14803d;
    --wa-700: #0f6a31;

    /* Semantische Tokens — HELL */
    --bg: var(--sand-50);
    --bg-alt: var(--sand-100);
    --surface: #ffffff;
    --surface-2: var(--sand-100);
    --surface-3: var(--sand-200);
    --border: rgba(18, 37, 26, 0.13);
    --border-strong: rgba(18, 37, 26, 0.26);
    --text: #1a1f19;
    --text-muted: #55604f;
    --heading: var(--forest-900);
    --accent: var(--clay-600);
    --accent-soft: rgba(165, 67, 42, 0.10);
    --link: var(--forest-700);
    --link-hover: var(--clay-600);
    --gold: var(--gold-500);
    --focus: #17452f;
    --scrim: rgba(11, 23, 16, 0.55);

    --shadow-sm: 0 1px 2px rgba(18, 37, 26, 0.06), 0 2px 6px rgba(18, 37, 26, 0.05);
    --shadow-md: 0 2px 6px rgba(18, 37, 26, 0.06), 0 10px 26px rgba(18, 37, 26, 0.09);
    --shadow-lg: 0 4px 12px rgba(18, 37, 26, 0.08), 0 24px 60px rgba(18, 37, 26, 0.14);

    /* Schrift */
    --font-display: 'Fraunces', 'Iowan Old Style', 'Palatino Linotype', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

    /* Fluide Schriftskala */
    --step--2: clamp(0.75rem, 0.73rem + 0.10vw, 0.8125rem);
    --step--1: clamp(0.875rem, 0.855rem + 0.10vw, 0.9375rem);
    --step-0: clamp(1.0625rem, 1.04rem + 0.12vw, 1.125rem);
    --step-1: clamp(1.1875rem, 1.13rem + 0.30vw, 1.375rem);
    --step-2: clamp(1.375rem, 1.24rem + 0.65vw, 1.75rem);
    --step-3: clamp(1.75rem, 1.47rem + 1.35vw, 2.5rem);
    --step-4: clamp(2.125rem, 1.62rem + 2.45vw, 3.5rem);
    --step-5: clamp(2.5rem, 1.60rem + 4.35vw, 4.75rem);

    /* Abstände */
    --sp-1: 0.25rem;
    --sp-2: 0.5rem;
    --sp-3: 0.75rem;
    --sp-4: 1rem;
    --sp-5: 1.5rem;
    --sp-6: 2rem;
    --sp-7: 2.5rem;
    --sp-8: 3rem;
    --sp-9: 4rem;
    --sp-10: 5rem;

    --gutter: clamp(1.125rem, 4vw, 2rem);
    --section-y: clamp(3.5rem, 7vw, 7rem);
    --w-page: 1180px;
    --w-text: 42rem;
    --header-h: 62px;

    /* Radien */
    --r-xs: 8px;
    --r-sm: 12px;
    --r-md: 18px;
    --r-lg: 26px;
    --r-pill: 999px;

    --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* Semantische Tokens — DUNKEL (Systemeinstellung) */
@media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) {
        --bg: #0e1310;
        --bg-alt: #131a15;
        --surface: #171e18;
        --surface-2: #1e261f;
        --surface-3: #263028;
        --border: rgba(231, 235, 227, 0.14);
        --border-strong: rgba(231, 235, 227, 0.30);
        --text: #e7ebe3;
        --text-muted: #a8b3a5;
        --heading: #f2f5ee;
        --accent: var(--clay-400);
        --accent-soft: rgba(232, 145, 107, 0.14);
        --link: #8fd6a8;
        --link-hover: var(--clay-400);
        --gold: var(--gold-400);
        --focus: #a8e8c0;
        --scrim: rgba(4, 9, 6, 0.62);

        --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
        --shadow-md: 0 2px 6px rgba(0, 0, 0, 0.4), 0 10px 26px rgba(0, 0, 0, 0.45);
        --shadow-lg: 0 4px 12px rgba(0, 0, 0, 0.45), 0 24px 60px rgba(0, 0, 0, 0.55);

        color-scheme: dark;
    }
}

/* Semantische Tokens — DUNKEL (manuell gewählt) */
:root[data-theme="dark"] {
    --bg: #0e1310;
    --bg-alt: #131a15;
    --surface: #171e18;
    --surface-2: #1e261f;
    --surface-3: #263028;
    --border: rgba(231, 235, 227, 0.14);
    --border-strong: rgba(231, 235, 227, 0.30);
    --text: #e7ebe3;
    --text-muted: #a8b3a5;
    --heading: #f2f5ee;
    --accent: var(--clay-400);
    --accent-soft: rgba(232, 145, 107, 0.14);
    --link: #8fd6a8;
    --link-hover: var(--clay-400);
    --gold: var(--gold-400);
    --focus: #a8e8c0;
    --scrim: rgba(4, 9, 6, 0.62);

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 2px 6px rgba(0, 0, 0, 0.4), 0 10px 26px rgba(0, 0, 0, 0.45);
    --shadow-lg: 0 4px 12px rgba(0, 0, 0, 0.45), 0 24px 60px rgba(0, 0, 0, 0.55);

    color-scheme: dark;
}

:root[data-theme="light"] { color-scheme: light; }


/* ---------------------------------------------------------------------------
   02  RESET & BASIS
   --------------------------------------------------------------------------- */

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

html {
    overflow-x: clip;
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-h) + 1rem);
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-sans);
    font-size: var(--step-0);
    line-height: 1.68;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img, picture, video, iframe, svg { display: block; max-width: 100%; }

img { height: auto; }

/* Sicherheitsnetz: Ein Symbol-SVG ohne eigene Größenangabe bleibt textgroß,
   statt sich als Flex-Element auf die volle Breite aufzublasen.
   :where() hat keine Spezifität — jede echte Regel weiter unten gewinnt. */
:where(svg) { width: 1em; height: 1em; flex: none; }

button { font: inherit; color: inherit; }

::selection { background: var(--forest-600); color: #fff; }


/* ---------------------------------------------------------------------------
   03  TYPOGRAFIE
   --------------------------------------------------------------------------- */

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 600;
    font-optical-sizing: auto;
    line-height: 1.1;
    letter-spacing: -0.015em;
    color: var(--heading);
    margin: 0 0 0.45em;
    text-wrap: balance;
}

h1 { font-size: var(--step-5); }
h2 { font-size: var(--step-4); }
h3 { font-size: var(--step-2); }
h4 { font-size: var(--step-1); }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

.lead {
    font-size: var(--step-1);
    line-height: 1.55;
    color: var(--text);
}

/* Inline-Links sind unterstrichen — Farbe allein reicht als Erkennungsmerkmal
   nicht aus (WCAG 1.4.1). */
a {
    color: var(--link);
    text-decoration: underline;
    text-decoration-thickness: 1.5px;
    text-underline-offset: 0.18em;
    text-decoration-color: color-mix(in srgb, currentColor 45%, transparent);
    transition: color 0.15s var(--ease), text-decoration-color 0.15s var(--ease);
}

a:hover {
    color: var(--link-hover);
    text-decoration-color: currentColor;
}

/* Links, die als Fläche/Button auftreten, brauchen keine Unterstreichung. */
a.btn, a.nav__link, a.lang__opt, a.card-link, a.footer__brandlink, .no-underline {
    text-decoration: none;
}

strong, b { font-weight: 650; }

.kicker {
    display: block;
    font-family: var(--font-sans);
    font-size: var(--step--2);
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.85rem;
}

.kicker::before {
    content: "";
    display: inline-block;
    width: 1.6rem;
    height: 2px;
    background: currentColor;
    vertical-align: 0.28em;
    margin-right: 0.65rem;
    opacity: 0.8;
}

.muted { color: var(--text-muted); }
.small { font-size: var(--step--1); }
.center { text-align: center; }


/* ---------------------------------------------------------------------------
   04  LAYOUT
   --------------------------------------------------------------------------- */

.container {
    width: min(100% - 2 * var(--gutter), var(--w, var(--w-page)));
    margin-inline: auto;
}

.container--text { --w: var(--w-text); }
.container--mid { --w: 56rem; }

.stack > * + * { margin-top: var(--flow, 1.1em); }

.divider {
    height: 1px;
    background: var(--border);
    border: 0;
    margin: 0;
}


/* ---------------------------------------------------------------------------
   05  BARRIEREFREIHEIT
   --------------------------------------------------------------------------- */

.sr-only {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    top: 0.5rem;
    left: 0.5rem;
    z-index: 200;
    transform: translateY(-160%);
    background: var(--forest-800);
    color: #fff;
    padding: 0.85rem 1.25rem;
    border-radius: var(--r-sm);
    font-weight: 600;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: transform 0.18s var(--ease);
}

.skip-link:focus-visible {
    transform: translateY(0);
    color: #fff;
}

/* Einheitlicher, gut sichtbarer Fokusring auf allen Bedienelementen. */
:where(a, button, summary, [tabindex], input, select, textarea):focus-visible {
    outline: 3px solid var(--focus);
    outline-offset: 3px;
    border-radius: 6px;
}

/* Auf dunklen Flächen hellen Fokusring verwenden. */
.section--dark, .site-footer, .cta-final, .hero, .lightbox, .trustbar {
    --focus: #b7f0cd;
}


/* ---------------------------------------------------------------------------
   06  BUTTONS
   --------------------------------------------------------------------------- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    min-height: 48px;
    padding: 0.8rem 1.5rem;
    border: 2px solid transparent;
    border-radius: var(--r-pill);
    font-size: var(--step--1);
    font-weight: 650;
    letter-spacing: 0.005em;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.18s var(--ease), color 0.18s var(--ease),
                border-color 0.18s var(--ease), transform 0.12s var(--ease),
                box-shadow 0.18s var(--ease);
}

.btn:active { transform: translateY(1px) scale(0.99); }

.btn svg { width: 1.25em; height: 1.25em; flex: none; }

.btn--wa {
    background: var(--wa-600);
    color: #fff;
    box-shadow: 0 6px 20px rgba(15, 106, 49, 0.30);
}

.btn--wa:hover { background: var(--wa-700); color: #fff; }

.btn--ghost {
    background: transparent;
    color: var(--heading);
    border-color: var(--border-strong);
}

.btn--ghost:hover {
    background: var(--surface-2);
    color: var(--heading);
    border-color: var(--heading);
}

.btn--on-photo {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.btn--on-photo:hover {
    background: #fff;
    color: var(--forest-900);
    border-color: #fff;
}

.btn--solid {
    background: var(--forest-700);
    color: #fff;
}

.btn--solid:hover { background: var(--forest-800); color: #fff; }

.btn--sm { min-height: 44px; padding: 0.6rem 1.1rem; font-size: var(--step--2); }
.btn--lg { min-height: 54px; padding: 0.95rem 1.9rem; font-size: var(--step-0); }
.btn--block { display: flex; width: 100%; }

/* Kleiner Kopier-Button (Pix-Schlüssel, GPS) */
.copy-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    min-height: 36px;
    padding: 0.3rem 0.85rem;
    margin-inline: 0.15rem;
    border: 1.5px solid var(--gold);
    border-radius: var(--r-pill);
    background: var(--surface);
    color: var(--heading);
    font-size: var(--step--2);
    font-weight: 650;
    line-height: 1.2;
    cursor: pointer;
    vertical-align: middle;
    transition: background 0.18s var(--ease), color 0.18s var(--ease), border-color 0.18s var(--ease);
}

.copy-btn:hover { background: var(--gold); color: #fff; border-color: var(--gold); }

.copy-btn.is-copied {
    background: var(--forest-600);
    border-color: var(--forest-600);
    color: #fff;
}

.copy-btn svg { width: 1em; height: 1em; flex: none; }


/* ---------------------------------------------------------------------------
   07  KOPFZEILE / NAVIGATION
   --------------------------------------------------------------------------- */

.site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: color-mix(in srgb, var(--bg) 82%, transparent);
    backdrop-filter: blur(14px) saturate(1.4);
    -webkit-backdrop-filter: blur(14px) saturate(1.4);
    border-bottom: 1px solid transparent;
    transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.site-header.is-stuck {
    border-bottom-color: var(--border);
    background: color-mix(in srgb, var(--bg) 94%, transparent);
    box-shadow: 0 6px 22px rgba(18, 37, 26, 0.06);
}

.header__inner {
    width: min(100% - 2 * var(--gutter), var(--w-page));
    margin-inline: auto;
    min-height: var(--header-h);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.15rem;
    letter-spacing: -0.01em;
    color: var(--heading);
    text-decoration: none;
    white-space: nowrap;
    flex: none;
    padding: 0.35rem 0;
}

.brand__mark {
    width: 30px;
    height: 30px;
    flex: none;
    color: var(--forest-600);
}

:root[data-theme="dark"] .brand__mark,
:root:not([data-theme="light"]) .brand__mark { color: inherit; }

@media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) .brand__mark { color: #7fc79a; }
}

:root[data-theme="dark"] .brand__mark { color: #7fc79a; }

.brand__sub {
    display: none;
    font-family: var(--font-sans);
    font-size: var(--step--2);
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--text-muted);
    text-transform: uppercase;
}

.nav {
    display: flex;
    align-items: center;
    gap: 0.15rem;
    margin-left: auto;
}

.nav__link {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0.4rem 0.7rem;
    border-radius: var(--r-xs);
    color: var(--heading);
    font-size: var(--step--1);
    font-weight: 550;
    white-space: nowrap;
    position: relative;
}

.nav__link::after {
    content: "";
    position: absolute;
    left: 0.7rem;
    right: 0.7rem;
    bottom: 0.28rem;
    height: 2px;
    border-radius: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.22s var(--ease);
}

.nav__link:hover { color: var(--heading); }
.nav__link:hover::after,
.nav__link[aria-current="true"]::after { transform: scaleX(1); }

.header__tools {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex: none;
    margin-left: 0.6rem;
}

/* Sprachumschalter als Segment-Control */
.lang {
    display: flex;
    gap: 2px;
    padding: 3px;
    background: var(--surface-2);
    border-radius: var(--r-pill);
}

.lang__opt {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    min-height: 38px;
    padding: 0 0.5rem;
    border-radius: var(--r-pill);
    font-size: var(--step--2);
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--text-muted);
    transition: background 0.18s var(--ease), color 0.18s var(--ease);
}

.lang__opt:hover { color: var(--heading); background: var(--surface-3); }

.lang__opt[aria-current] {
    background: var(--forest-700);
    color: #fff;
}

:root[data-theme="dark"] .lang__opt[aria-current] { background: var(--forest-500); }

@media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) .lang__opt[aria-current] { background: var(--forest-500); }
}

/* Theme-Umschalter */
.icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex: none;
    padding: 0;
    border: 1px solid transparent;
    border-radius: var(--r-pill);
    background: var(--surface-2);
    color: var(--heading);
    cursor: pointer;
    transition: background 0.18s var(--ease), border-color 0.18s var(--ease);
}

.icon-btn:hover { background: var(--surface-3); }

.icon-btn svg { width: 20px; height: 20px; }

.theme-toggle .icon-moon { display: none; }

:root[data-theme="dark"] .theme-toggle .icon-sun { display: none; }
:root[data-theme="dark"] .theme-toggle .icon-moon { display: block; }

@media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) .theme-toggle .icon-sun { display: none; }
    :root:not([data-theme="light"]) .theme-toggle .icon-moon { display: block; }
}

.nav-toggle { display: none; }

/* Mobile Navigation */
@media (max-width: 999px) {
    .nav-toggle { display: inline-flex; }

    .nav {
        position: fixed;
        inset: var(--header-h) 0 auto 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        margin: 0;
        padding: 0.5rem var(--gutter) 1.25rem;
        background: var(--bg);
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-lg);
        transform: translateY(-8px);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
    }

    .nav.is-open {
        transform: none;
        opacity: 1;
        visibility: visible;
    }

    .nav__link {
        min-height: 52px;
        padding: 0.6rem 0.5rem;
        font-size: var(--step-0);
        border-bottom: 1px solid var(--border);
    }

    .nav__link:last-child { border-bottom: 0; }

    .nav__link::after { display: none; }

    .header__tools { margin-left: auto; }
}

@media (min-width: 560px) {
    .brand__sub { display: inline; }
}

@media (max-width: 419px) {
    .brand__mark { width: 26px; height: 26px; }
    .lang__opt { min-width: 34px; }
}


/* ---------------------------------------------------------------------------
   08  HERO
   --------------------------------------------------------------------------- */

.hero {
    position: relative;
    min-height: min(88svh, 780px);
    display: flex;
    align-items: flex-end;
    isolation: isolate;
    background: var(--forest-950);
}

.hero__media {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
}

.hero__scrim {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(to bottom, rgba(11, 23, 16, 0.34) 0%, rgba(11, 23, 16, 0) 32%),
        linear-gradient(to top, rgba(11, 23, 16, 0.88) 0%, rgba(11, 23, 16, 0.55) 32%, rgba(11, 23, 16, 0.05) 68%);
}

.hero__content {
    padding-block: clamp(3rem, 9vw, 5.5rem) clamp(2rem, 5vw, 3.25rem);
    color: #fff;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    max-width: 100%;
    padding: 0.4rem 0.9rem;
    margin-bottom: 1.15rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--r-pill);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    font-size: var(--step--2);
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hero__eyebrow svg {
    width: 1.15em;
    height: 1.15em;
    flex: none;
    opacity: 0.85;
}

/* Auf schmalen Handys nur der Ort — sonst bricht die Zeile um. */
.hero__eyebrow-region { display: none; }

@media (min-width: 420px) {
    .hero__eyebrow-region { display: inline; }
}

.hero h1 {
    color: #fff;
    max-width: 16ch;
    margin-bottom: 0.4em;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.42);
}

.hero__sub {
    max-width: 46ch;
    font-size: var(--step-1);
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.94);
    text-shadow: 0 1px 16px rgba(0, 0, 0, 0.5);
    margin-bottom: 1.75rem;
}

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

.hero__facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    margin-top: clamp(2rem, 5vw, 3rem);
    background: rgba(255, 255, 255, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--r-md);
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero__fact {
    background: rgba(11, 23, 16, 0.42);
    padding: 0.95rem 1.1rem;
}

.hero__fact dt {
    font-size: var(--step--2);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0.15rem;
}

.hero__fact dd {
    margin: 0;
    font-family: var(--font-display);
    font-size: var(--step-1);
    font-weight: 600;
    line-height: 1.2;
    color: #fff;
}

@media (min-width: 760px) {
    .hero__facts { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}


/* ---------------------------------------------------------------------------
   09  VERTRAUENSLEISTE
   --------------------------------------------------------------------------- */

.trustbar {
    background: var(--forest-900);
    color: #eef3ea;
}

.trustbar__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.6rem clamp(1.25rem, 4vw, 2.75rem);
    padding-block: 0.95rem;
    font-size: var(--step--1);
    font-weight: 550;
    text-align: center;
}

.trustbar__item { display: inline-flex; align-items: center; gap: 0.45rem; }

.trustbar__item svg { width: 1.1em; height: 1.1em; flex: none; opacity: 0.85; }

.stars {
    color: var(--gold-400);
    letter-spacing: 0.12em;
    font-size: 1.05em;
}


/* ---------------------------------------------------------------------------
   10  ABSCHNITTE
   --------------------------------------------------------------------------- */

.section { padding-block: var(--section-y); }

.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }

.section--alt { background: var(--bg-alt); }

.section--dark {
    background: var(--forest-950);
    color: #dfe7db;
    --text: #dfe7db;
    --text-muted: #b3c1ad;
    --heading: #ffffff;
    --accent: var(--gold-200);
    --link: #a8e8c0;
    --link-hover: var(--gold-200);
    --surface: #17281d;
    --surface-2: #1c3123;
    --border: rgba(255, 255, 255, 0.14);
    --border-strong: rgba(255, 255, 255, 0.3);
}

.section--dark h2, .section--dark h3 { color: #fff; }

.section__head { margin-bottom: clamp(1.75rem, 4vw, 2.75rem); }

.section__head p:last-child { margin-bottom: 0; }

.section__head--center {
    text-align: center;
    margin-inline: auto;
    max-width: 46rem;
}

.section__head--center .kicker::before { display: none; }

/* Randlose Bildbande zwischen zwei Abschnitten */
.band {
    height: clamp(14rem, 38vh, 27rem);
    overflow: hidden;
    background: var(--forest-800);
}

.band img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* ---------------------------------------------------------------------------
   11  MERKMAL-KARTEN
   --------------------------------------------------------------------------- */

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
    gap: clamp(0.85rem, 2vw, 1.25rem);
    margin-top: clamp(2rem, 4vw, 3rem);
    list-style: none;
    padding: 0;
}

.feature {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: clamp(1.25rem, 2.5vw, 1.6rem);
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.feature:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.feature__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 0.9rem;
    border-radius: 13px;
    background: var(--accent-soft);
    color: var(--accent);
}

.feature__icon svg { width: 22px; height: 22px; }

.feature h3 {
    font-size: var(--step-1);
    margin-bottom: 0.3em;
}

.feature p {
    font-size: var(--step--1);
    color: var(--text-muted);
    margin: 0;
}

/* Ausstattungs-Chips */
.amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem;
}

.amenities li {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.95rem;
    border: 1px solid var(--border);
    border-radius: var(--r-pill);
    background: var(--surface);
    font-size: var(--step--1);
    font-weight: 550;
    box-shadow: var(--shadow-sm);
}

.amenities svg {
    width: 1.15em;
    height: 1.15em;
    flex: none;
    color: var(--forest-600);
}

:root[data-theme="dark"] .amenities svg { color: #7fc79a; }

@media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) .amenities svg { color: #7fc79a; }
}


/* ---------------------------------------------------------------------------
   12  HINWEISBOXEN
   --------------------------------------------------------------------------- */

.notice {
    display: flex;
    gap: 0.9rem;
    padding: 1.15rem 1.35rem;
    margin-block: 1.5rem;
    border-radius: var(--r-md);
    border: 1px solid color-mix(in srgb, var(--gold) 35%, transparent);
    border-left: 5px solid var(--gold);
    background: color-mix(in srgb, var(--gold) 11%, var(--surface));
    font-size: var(--step--1);
    line-height: 1.6;
}

.notice__icon {
    flex: none;
    width: 1.6rem;
    height: 1.6rem;
    color: var(--gold);
}

.notice__icon svg { width: 100%; height: 100%; }

.notice__body > :last-child { margin-bottom: 0; }

.notice strong { color: var(--heading); }

.price-tag {
    display: inline-block;
    padding: 0.1rem 0.5rem;
    border-radius: var(--r-xs);
    background: color-mix(in srgb, var(--gold) 24%, transparent);
    font-weight: 700;
    white-space: nowrap;
}

.pixkey {
    font-family: var(--font-mono);
    font-size: 0.95em;
    font-weight: 700;
    letter-spacing: 0.02em;
    white-space: nowrap;
}


/* ---------------------------------------------------------------------------
   13  WASSERFALL-KARTEN
   --------------------------------------------------------------------------- */

.falls {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
    gap: clamp(0.85rem, 2vw, 1.15rem);
    margin: 0;
    padding: 0;
    list-style: none;
}

.fall {
    position: relative;
    margin: 0;
    border-radius: var(--r-md);
    overflow: hidden;
    background: var(--forest-800);
    aspect-ratio: 4 / 5;
}

.fall img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease);
}

.fall:hover img { transform: scale(1.05); }

.fall figcaption {
    position: absolute;
    inset: auto 0 0 0;
    padding: 3rem 1.1rem 1.1rem;
    background: linear-gradient(transparent, rgba(6, 14, 9, 0.85));
    color: #fff;
    font-family: var(--font-display);
    font-size: var(--step-1);
    font-weight: 600;
    line-height: 1.2;
}

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


/* ---------------------------------------------------------------------------
   14  FOTO-GALERIE (WISCHEN + LIGHTBOX)
   --------------------------------------------------------------------------- */

.gallery-block { margin-top: clamp(1.75rem, 4vw, 2.5rem); }

.gallery {
    --gallery-pad: var(--gutter);
    display: flex;
    gap: clamp(0.7rem, 1.6vw, 1rem);
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: var(--gallery-pad);
    padding: 0.25rem var(--gallery-pad) 1rem;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

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

@media (min-width: 1244px) {
    .gallery { --gallery-pad: calc((100% - var(--w-page)) / 2); }
}

.gallery figure {
    flex: 0 0 84%;
    max-width: 28rem;
    margin: 0;
    scroll-snap-align: start;
}

@media (min-width: 640px) { .gallery figure { flex-basis: 46%; } }
@media (min-width: 1000px) { .gallery figure { flex-basis: 31%; } }

/* Bild als Button — dadurch mit Tastatur bedienbar. */
.gallery__btn {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    border-radius: var(--r-md);
    background: var(--surface-2);
    cursor: zoom-in;
    overflow: hidden;
    position: relative;
}

.gallery__btn img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 0.55s var(--ease);
}

.gallery__btn:hover img { transform: scale(1.04); }

.gallery__btn::after {
    content: "";
    position: absolute;
    inset: auto 0.6rem 0.6rem auto;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(11, 23, 16, 0.6) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='M20 20l-3.5-3.5M11 8v6M8 11h6'/%3E%3C/svg%3E") center / 19px no-repeat;
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
    pointer-events: none;
}

.gallery__btn:hover::after,
.gallery__btn:focus-visible::after { opacity: 1; transform: none; }

.gallery figcaption {
    font-size: var(--step--1);
    color: var(--text-muted);
    line-height: 1.45;
    padding: 0.6rem 0.15rem 0;
}

.gallery-bar {
    width: min(100% - 2 * var(--gutter), var(--w-page));
    margin-inline: auto;
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.gallery-bar__hint {
    font-size: var(--step--2);
    color: var(--text-muted);
    margin: 0;
}

.gallery-bar__nav {
    display: none;
    gap: 0.4rem;
    margin-left: auto;
}

.gallery-bar__nav .icon-btn {
    border-color: var(--border);
    background: var(--surface);
}

.gallery-bar__nav .icon-btn:hover { background: var(--surface-2); }

.gallery-bar__nav .icon-btn[disabled] {
    opacity: 0.35;
    cursor: default;
}

.gallery-progress {
    flex: 1;
    height: 4px;
    max-width: 14rem;
    border-radius: 2px;
    background: var(--border);
    overflow: hidden;
}

.gallery-progress span {
    display: block;
    height: 100%;
    width: 30%;
    border-radius: 2px;
    background: var(--accent);
    transition: transform 0.15s linear, width 0.15s linear;
}

@media (min-width: 900px) {
    .gallery-bar__nav { display: flex; }
}

@media (hover: none) {
    .gallery__btn { cursor: pointer; }
}


/* ---------------------------------------------------------------------------
   15  APARTMENTS
   --------------------------------------------------------------------------- */

.apartments {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
    gap: clamp(0.9rem, 2vw, 1.3rem);
    margin-top: clamp(1.75rem, 4vw, 2.5rem);
}

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

.apt {
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.apt:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.apt__media { position: relative; overflow: hidden; }

.apt__media img {
    width: 100%;
    aspect-ratio: 16 / 11;
    object-fit: cover;
}

.apt__badge {
    position: absolute;
    top: 0.7rem;
    left: 0.7rem;
    padding: 0.2rem 0.7rem;
    border-radius: var(--r-pill);
    background: rgba(11, 23, 16, 0.72);
    color: #fff;
    font-size: var(--step--2);
    font-weight: 650;
    letter-spacing: 0.04em;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.apt__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1.05rem 1.1rem 1.15rem;
}

.apt__body h3 { font-size: var(--step-1); margin-bottom: 0.35rem; }

.apt__price {
    margin: 0 0 1rem;
    font-size: var(--step--1);
    color: var(--text-muted);
    line-height: 1.45;
}

.apt__price b {
    font-family: var(--font-display);
    font-size: var(--step-1);
    font-weight: 600;
    color: var(--heading);
}

.apt__actions {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.apt__actions .btn { width: 100%; }

/* Preis-Übersicht */
.pricebox {
    display: grid;
    gap: 1px;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 12rem), 1fr));
    margin-top: 1.5rem;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    overflow: hidden;
}

.pricebox > div {
    background: var(--surface);
    padding: 1rem 1.15rem;
}

.pricebox dt {
    font-size: var(--step--2);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.2rem;
}

.pricebox dd {
    margin: 0;
    font-family: var(--font-display);
    font-size: var(--step-1);
    font-weight: 600;
    color: var(--heading);
}

.pricebox dd small {
    display: block;
    font-family: var(--font-sans);
    font-size: var(--step--2);
    font-weight: 400;
    color: var(--text-muted);
    letter-spacing: 0;
}


/* ---------------------------------------------------------------------------
   16  GASTGEBER
   --------------------------------------------------------------------------- */

.host {
    display: grid;
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: center;
}

@media (min-width: 820px) {
    .host { grid-template-columns: minmax(0, 20rem) minmax(0, 1fr); }
}

.host__media {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    max-width: 20rem;
    margin-inline: auto;
    width: 100%;
}

.host__media img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    /* Oben nichts abschneiden — der Kopf soll vollständig im Bild bleiben. */
    object-position: center top;
}

.host__flags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.4rem;
    list-style: none;
    padding: 0;
}

.host__flags li {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.95rem;
    border-radius: var(--r-pill);
    background: var(--surface);
    border: 1px solid var(--border);
    font-size: var(--step--1);
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}


/* ---------------------------------------------------------------------------
   17  EINGEBETTETE KARTEN & VIDEOS (Laden erst auf Klick)
   --------------------------------------------------------------------------- */

.embed {
    position: relative;
    border-radius: var(--r-md);
    overflow: hidden;
    background: var(--surface-2);
    border: 1px solid var(--border);
}

.embed iframe {
    width: 100%;
    height: 100%;
    min-height: var(--embed-h, 380px);
    border: 0;
    display: block;
}

.embed__facade {
    display: block;
    position: relative;
    width: 100%;
    min-height: var(--embed-h, 380px);
    padding: 0;
    border: 0;
    background: var(--forest-800);
    color: #fff;
    cursor: pointer;
    overflow: hidden;
}

.embed__facade img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.62;
    transition: transform 0.6s var(--ease), opacity 0.3s var(--ease);
}

.embed__facade:hover img { transform: scale(1.04); opacity: 0.72; }

.embed__facade--plain {
    background:
        radial-gradient(120% 90% at 20% 10%, #2e5c43 0%, transparent 60%),
        radial-gradient(100% 80% at 85% 90%, #1a3527 0%, transparent 55%),
        var(--forest-900);
}

.embed__cta {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    min-height: inherit;
    padding: 2.5rem 1.5rem;
    text-align: center;
}

.embed__play {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    color: var(--forest-900);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    transition: transform 0.2s var(--ease);
}

.embed__facade:hover .embed__play { transform: scale(1.08); }

.embed__play svg { width: 28px; height: 28px; }

.embed__label {
    font-family: var(--font-display);
    font-size: var(--step-1);
    font-weight: 600;
    line-height: 1.25;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.5);
}

.embed__note {
    font-size: var(--step--2);
    color: rgba(255, 255, 255, 0.8);
    max-width: 30rem;
    line-height: 1.5;
}


/* ---------------------------------------------------------------------------
   18  INFO-KARTE / GPS
   --------------------------------------------------------------------------- */

.infocard {
    display: grid;
    gap: 1px;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
    margin-block: 1.5rem;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    overflow: hidden;
}

.infocard__cell {
    background: var(--surface);
    padding: 1.1rem 1.25rem;
}

.infocard__label {
    display: block;
    font-size: var(--step--2);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
}

.gps {
    font-family: var(--font-mono);
    font-size: var(--step--1);
    line-height: 1.5;
    word-break: break-word;
}

.infocard__cell .copy-btn { margin-top: 0.6rem; margin-inline: 0; }

.figure-plain { margin: 0 0 1.25rem; }

.figure-plain img {
    width: 100%;
    border-radius: var(--r-md);
}

.figure-plain figcaption {
    font-size: var(--step--2);
    color: var(--text-muted);
    padding-top: 0.55rem;
}


/* ---------------------------------------------------------------------------
   19  BEWERTUNGEN
   --------------------------------------------------------------------------- */

.rating {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.7rem 1.15rem;
    padding: 1.15rem 1.35rem;
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    box-shadow: var(--shadow-sm);
}

.rating__score {
    font-family: var(--font-display);
    font-size: var(--step-3);
    font-weight: 600;
    line-height: 1;
    color: var(--heading);
}

.rating__meta { font-size: var(--step--1); color: var(--text-muted); }

.rating__stars { font-size: var(--step-1); }

.pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.85rem;
    border-radius: var(--r-pill);
    background: var(--forest-800);
    color: #fff;
    font-size: var(--step--2);
    font-weight: 650;
}

:root[data-theme="dark"] .pill { background: var(--forest-600); }

@media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) .pill { background: var(--forest-600); }
}

.reviews {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
    gap: clamp(0.8rem, 1.8vw, 1.1rem);
    margin: 0;
    padding: 0;
    list-style: none;
}

.review {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    padding: 1.25rem 1.35rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    box-shadow: var(--shadow-sm);
}

.review__head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.75rem;
}

.review__name { font-weight: 650; }

.review__date { font-size: var(--step--2); color: var(--text-muted); white-space: nowrap; }

.review__stars { font-size: var(--step--1); letter-spacing: 0.1em; }

.review blockquote {
    margin: 0;
    font-size: var(--step--1);
    line-height: 1.6;
}

/* „Alle Bewertungen anzeigen" — funktioniert auch ohne JavaScript. */
.more-toggle { margin-top: clamp(0.8rem, 1.8vw, 1.1rem); }

.more-toggle > summary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 48px;
    padding: 0.75rem 1.6rem;
    margin-inline: auto;
    width: fit-content;
    border: 2px solid var(--border-strong);
    border-radius: var(--r-pill);
    background: var(--surface);
    color: var(--heading);
    font-size: var(--step--1);
    font-weight: 650;
    cursor: pointer;
    list-style: none;
    transition: background 0.18s var(--ease), border-color 0.18s var(--ease);
}

.more-toggle > summary::-webkit-details-marker { display: none; }

.more-toggle > summary:hover { background: var(--surface-2); border-color: var(--heading); }

.more-toggle > summary::after {
    content: "";
    width: 16px;
    height: 16px;
    background: var(--accent);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.6' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.6' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") center / contain no-repeat;
    transition: transform 0.22s var(--ease);
}

.more-toggle[open] > summary::after { transform: rotate(180deg); }

.more-toggle .label-less { display: none; }
.more-toggle[open] .label-more { display: none; }
.more-toggle[open] .label-less { display: inline; }

.more-toggle .reviews { margin-top: clamp(0.8rem, 1.8vw, 1.1rem); }

.reviews__foot {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.75rem;
    text-align: center;
}

.reviews__note { font-size: var(--step--2); color: var(--text-muted); margin: 0; }


/* ---------------------------------------------------------------------------
   20  FAQ
   --------------------------------------------------------------------------- */

.faq {
    display: grid;
    gap: 0.6rem;
    margin-top: clamp(1.5rem, 3vw, 2rem);
}

.faq details {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    overflow: hidden;
    transition: border-color 0.2s var(--ease);
}

.faq details[open] { border-color: var(--border-strong); }

.faq summary {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    min-height: 56px;
    padding: 0.9rem 1.25rem;
    cursor: pointer;
    font-family: var(--font-display);
    font-size: var(--step-1);
    font-weight: 600;
    color: var(--heading);
    list-style: none;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
    content: "";
    flex: none;
    width: 20px;
    height: 20px;
    margin-left: auto;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") center / contain no-repeat;
    color: var(--accent);
    transition: transform 0.22s var(--ease);
}

.faq details[open] summary::after { transform: rotate(180deg); }

.faq summary:hover { background: var(--surface-2); }

.faq__body {
    padding: 0 1.25rem 1.25rem;
    font-size: var(--step--1);
    color: var(--text-muted);
}

.faq__body > :last-child { margin-bottom: 0; }

/* Pix: Schlüssel zum Kopieren, dazu am großen Bildschirm der QR-Code */
.pix {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.pix__text { flex: 1; min-width: 0; }

.pix__text > :last-child { margin-bottom: 0; }

.pix__text .copy-btn { margin: 0.55rem 0 0; }

.pix__qr {
    display: none;
    flex: none;
    margin: 0;
    text-align: center;
}

.pix__qr img {
    /* 53 Module auf 176 px = gut 3 px je Modul — sicher scannbar. */
    width: 176px;
    height: 176px;
    padding: 8px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid var(--border);
}

.pix__qr figcaption {
    margin-top: 0.45rem;
    font-size: var(--step--2);
    color: var(--text-muted);
    max-width: 10rem;
}

/* Am Handy scannt niemand den eigenen Bildschirm — dort reicht der Kopierknopf. */
@media (min-width: 700px) {
    .pix__qr { display: block; }
}

/* Aufklappbare Karte im dunklen Abschnitt */
.disclosure summary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 44px;
    padding: 0.5rem 0;
    cursor: pointer;
    font-weight: 650;
    font-size: var(--step--1);
    color: var(--link);
    list-style: none;
}

.disclosure summary::-webkit-details-marker { display: none; }

.disclosure summary::after {
    content: "";
    width: 16px;
    height: 16px;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.6' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.6' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") center / contain no-repeat;
    transition: transform 0.22s var(--ease);
}

.disclosure[open] summary::after { transform: rotate(180deg); }

.disclosure__body { padding-top: 0.9rem; }


/* ---------------------------------------------------------------------------
   21  SCHLUSS-CTA
   --------------------------------------------------------------------------- */

.cta-final {
    position: relative;
    isolation: isolate;
    text-align: center;
    color: #fff;
    padding-block: clamp(4rem, 9vw, 7rem);
    background: var(--forest-950);
}

.cta-final__media {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.cta-final__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-final::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(rgba(11, 23, 16, 0.68), rgba(11, 23, 16, 0.82));
}

.cta-final h2 { color: #fff; max-width: 18ch; margin-inline: auto; }

.cta-final p {
    max-width: 34rem;
    margin-inline: auto;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-final .btn--wa { box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4); }


/* ---------------------------------------------------------------------------
   22  FUSSZEILE
   --------------------------------------------------------------------------- */

.site-footer {
    background: var(--forest-950);
    color: #a9bcac;
    font-size: var(--step--1);
    padding-block: clamp(2.5rem, 5vw, 3.5rem) calc(clamp(2.5rem, 5vw, 3.5rem) + 4.5rem);
}

.site-footer a { color: #dcece0; }
.site-footer a:hover { color: #fff; }

.footer__grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr));
}

.footer__brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-display);
    font-size: var(--step-1);
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.65rem;
}

.footer__brand svg { width: 30px; height: 30px; color: #7fc79a; flex: none; }

.footer h2 {
    font-family: var(--font-sans);
    font-size: var(--step--2);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #7f9a85;
}

.footer__title {
    font-size: var(--step--2);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #7f9a85;
    margin-bottom: 0.75rem;
}

.footer__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.5rem;
}

.footer__bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: 2.25rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: var(--step--2);
    color: #8ba48f;
}


/* ---------------------------------------------------------------------------
   23  WHATSAPP-BUTTON (schwebend)
   --------------------------------------------------------------------------- */

.fab {
    position: fixed;
    right: max(1rem, env(safe-area-inset-right));
    bottom: max(1rem, env(safe-area-inset-bottom));
    z-index: 55;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    min-height: 52px;
    padding: 0.7rem 1.25rem;
    border-radius: var(--r-pill);
    background: var(--wa-600);
    color: #fff;
    font-size: var(--step--1);
    font-weight: 650;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.28);
    transition: transform 0.18s var(--ease), background 0.18s var(--ease);
}

.fab:hover { background: var(--wa-700); color: #fff; transform: translateY(-2px); }

.fab svg { width: 22px; height: 22px; flex: none; }

@media (max-width: 380px) {
    .fab { padding: 0.7rem 0.9rem; }
    .fab span { display: none; }
}


/* ---------------------------------------------------------------------------
   24  LIGHTBOX
   --------------------------------------------------------------------------- */

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: none;
    background: rgba(8, 15, 10, 0.96);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.lightbox.is-open { display: block; }

.lb__track {
    display: flex;
    height: 100%;
    overflow-x: auto;
    overscroll-behavior: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

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

.lb__slide {
    flex: 0 0 100%;
    min-width: 0;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.9rem;
    margin: 0;
    padding: 4.25rem 1rem 4.75rem;
}

.lb__slide img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    flex: 0 1 auto;
    min-height: 0;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lb__slide figcaption {
    flex: none;
    max-width: 44rem;
    text-align: center;
    font-size: var(--step--1);
    line-height: 1.5;
    color: #dbe4d8;
}

.lb__close, .lb__nav {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    cursor: pointer;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: background 0.18s var(--ease), transform 0.18s var(--ease);
}

.lb__close:hover, .lb__nav:hover { background: rgba(255, 255, 255, 0.3); }

.lb__close svg, .lb__nav svg { width: 22px; height: 22px; }

.lb__close { top: 1rem; right: 1rem; }

.lb__nav { top: 50%; transform: translateY(-50%); }
.lb__nav:hover { transform: translateY(-50%) scale(1.06); }

.lb__prev { left: 1rem; }
.lb__next { right: 1rem; }

.lb__nav[disabled] { opacity: 0.3; cursor: default; }
.lb__nav[disabled]:hover { background: rgba(255, 255, 255, 0.14); transform: translateY(-50%); }

.lb__counter {
    position: absolute;
    left: 50%;
    bottom: 1.25rem;
    transform: translateX(-50%);
    padding: 0.3rem 0.9rem;
    border-radius: var(--r-pill);
    background: rgba(255, 255, 255, 0.12);
    color: #dbe4d8;
    font-size: var(--step--2);
    letter-spacing: 0.06em;
    font-variant-numeric: tabular-nums;
}

@media (max-width: 760px) {
    .lb__slide { padding: 3.75rem 0.5rem 4rem; }
    .lb__nav { display: none; }
}


/* ---------------------------------------------------------------------------
   25  BEWEGUNG & REVEAL
   --------------------------------------------------------------------------- */

/* Nur ausblenden, wenn JavaScript läuft — sonst bliebe der Text bei einem
   Skriptfehler dauerhaft unsichtbar. Die Klasse `js` setzt das Kopf-Skript. */
.js .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.js .reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }

    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }

    .js .reveal { opacity: 1; transform: none; }
}


/* ---------------------------------------------------------------------------
   26  HAUSREGELN-SEITE
   --------------------------------------------------------------------------- */

.page-head {
    padding-block: clamp(2.5rem, 6vw, 4rem) clamp(1.5rem, 3vw, 2rem);
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
}

.page-head h1 { font-size: var(--step-4); margin-bottom: 0.35em; }

.page-head p { max-width: 46ch; color: var(--text-muted); margin: 0; }

.rules {
    list-style: none;
    margin: 0 0 1.75rem;
    padding: 0;
    display: grid;
    gap: 0.6rem;
}

.rules li {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
    padding: 1.05rem 1.25rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    box-shadow: var(--shadow-sm);
}

.rules__icon {
    flex: none;
    width: 2.25rem;
    height: 2.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: var(--accent-soft);
    color: var(--accent);
}

.rules__icon svg { width: 20px; height: 20px; }

.rules strong { display: block; color: var(--heading); }

.rules p { margin: 0.15rem 0 0; font-size: var(--step--1); color: var(--text-muted); }

.backlink {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    min-height: 44px;
    font-weight: 600;
}


/* ---------------------------------------------------------------------------
   27  DRUCK
   --------------------------------------------------------------------------- */

@media print {
    .site-header, .fab, .lightbox, .gallery-bar__nav, .hero__actions,
    .embed, .theme-toggle, .skip-link { display: none !important; }

    body { background: #fff; color: #000; font-size: 11pt; }

    .hero { min-height: auto; }

    .js .reveal { opacity: 1; transform: none; }

    a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 9pt; word-break: break-all; }
}
