/* ===== LOCAL FONTS ===== */
@font-face {
    font-family: 'Josefin Sans';
    src: url('fonts/josefin-sans-latin-300-normal.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Josefin Sans';
    src: url('fonts/josefin-sans-latin-400-normal.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Josefin Sans';
    src: url('fonts/josefin-sans-latin-600-normal.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Josefin Sans';
    src: url('fonts/josefin-sans-latin-700-normal.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Manrope';
    src: url('fonts/manrope-latin-400-normal.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Manrope';
    src: url('fonts/manrope-latin-500-normal.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Manrope';
    src: url('fonts/manrope-latin-600-normal.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Manrope';
    src: url('fonts/manrope-latin-700-normal.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

        :root {
            --mountain-dark: #1A354E;
            --mountain-blue: #2D4A5C;
            --ice-blue: #5B7690;
            --mist: #7A93A8;
            --snow: #9BB6D1;
            --accent: #5B8AA6;
            --deep: #0F1419;
        }

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

        ::selection {
            background: #EFCA16;
            color: #000000;
        }

        ::-moz-selection {
            background: #EFCA16;
            color: #000000;
        }

        body {
            font-family: 'Manrope', sans-serif;
            background: var(--mountain-dark);
            color: var(--snow);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4 {
            font-family: 'Josefin Sans', sans-serif;
            font-weight: 700;
            line-height: 1.2;
            letter-spacing: 0.02em;
        }

        /* Navigation – versteckt beim Laden, erscheint beim Scrollen */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 0.8rem 3rem;
            background: rgba(15, 20, 25, 0.72);
            backdrop-filter: blur(20px);
            z-index: 1000;
            border-bottom: 1px solid rgba(139, 169, 190, 0.15);
            /* Startzustand: unsichtbar */
            opacity: 0;
            transform: translateY(-100%);
            pointer-events: none;
            transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
        }

        nav.nav--visible {
            opacity: 1;
            transform: translateY(0);
            pointer-events: all;
        }

        nav .container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-img {
            height: 40px;
            width: auto;
            transition: transform 0.3s;
        }

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

        .nav-links {
            display: flex;
            gap: 3rem;
            list-style: none;
        }

        .nav-links a {
            color: var(--mist);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            position: relative;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            font-size: 0.85rem;
        }

        .nav-links a:hover {
            color: #EFCA16;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 1px;
            background: #EFCA16;
            transition: width 0.3s;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            padding: 0;
            overflow: hidden;
        }

        .hero-topo-bg {
            display: none;
        }

        .hero-mountain {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('images/karussell/small_gletscher.webp');
            background-size: cover;
            background-position: center;
            opacity: 1;
            filter: none;
            z-index: 1;
        }

        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 1;
            z-index: 2;
            transition: opacity 0.3s ease, transform 0.3s ease;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /* Leichter Abdunklung – oben etwas stärker für Logo-Lesbarkeit */
            background: linear-gradient(180deg,
                rgba(10, 15, 20, 0.45) 0%,
                rgba(10, 15, 20, 0.10) 35%,
                rgba(10, 15, 20, 0.10) 65%,
                rgba(10, 15, 20, 0.50) 100%);
            z-index: 3;
        }

        .hero-content {
            max-width: 580px;
            position: relative;
            z-index: 10;
            text-align: center;
            animation: fadeInUp 1.2s ease 0.3s backwards;
            /* Keine Box, kein Blur, kein Border – frei schwebend */
            background: none;
            backdrop-filter: none;
            border-radius: 0;
            padding: 0 2rem;
            border: none;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Nur Opacity – für absolut positionierte Hero-Elemente */
        @keyframes fadeIn {
            from { opacity: 0; }
            to   { opacity: 1; }
        }

        .hero-logo {
            max-width: 280px;
            width: 60%;
            height: auto;
            margin: 0 auto 1.8rem;
            /* Mehrfacher Drop-Shadow = Logo auf jedem Hintergrund lesbar */
            filter:
                drop-shadow(0 0 30px rgba(0, 0, 0, 0.9))
                drop-shadow(0 2px 60px rgba(0, 0, 0, 0.7))
                drop-shadow(0 0  8px rgba(0, 0, 0, 1));
            animation: fadeInUp 1.2s ease 0.5s backwards;
        }

        .hero-tagline {
            font-size: clamp(1.1rem, 2.8vw, 1.6rem);
            color: #ffffff;
            margin-bottom: 1.5rem;
            font-family: 'Josefin Sans', sans-serif;
            font-weight: 400;
            letter-spacing: 0.25em;
            text-transform: none;
            animation: fadeInUp 1.2s ease 0.7s backwards;
            text-shadow:
                0 1px 4px  rgba(0, 0, 0, 1),
                0 0  20px  rgba(0, 0, 0, 0.9),
                0 0  50px  rgba(0, 0, 0, 0.6);
        }

        .hero-subtitle {
            font-size: clamp(0.85rem, 1.5vw, 1rem);
            color: rgba(255, 255, 255, 0.88);
            max-width: 520px;
            margin: 0 auto 2rem;
            line-height: 1.8;
            animation: fadeInUp 1.2s ease 0.8s backwards;
            text-shadow: 0 1px 8px rgba(0, 0, 0, 0.95), 0 0 30px rgba(0, 0, 0, 0.7);
        }

        .cta-group {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeInUp 1.2s ease 0.9s backwards;
        }

        .cta-button {
            padding: 1.2rem 3rem;
            background: var(--ice-blue);
            color: var(--snow);
            text-decoration: none;
            border-radius: 10px;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s;
            border: 2px solid var(--ice-blue);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            font-size: 0.85rem;
        }

        .cta-button:hover {
            background: transparent;
            color: #EFCA16;
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(239, 202, 22, 0.3);
        }

        .cta-secondary {
            background: transparent;
            border: 2px solid rgba(139, 169, 190, 0.4);
            color: var(--snow);
        }

        .cta-secondary:hover {
            background: rgba(239, 202, 22, 0.08);
            border-color: #EFCA16;
        }

        /* ── Brave-style hero brand (Logo + Tagline, oberes Drittel) ── */
        .hero-brand {
            position: absolute;
            top: 12%;
            left: 50%;
            transform: translateX(-50%);
            text-align: center;
            z-index: 10;
            animation: fadeIn 1.0s ease 0.3s backwards;
            /* Transparente Box */
            background: rgba(10, 15, 20, 0.18);
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 14px;
            padding: 2rem 4rem 1.8rem;
            width: max-content;
            max-width: min(560px, 90vw);
        }

        .hero-brand .hero-logo {
            max-width: 220px;
            width: 100%;
            height: auto;
            margin: 0 auto 1.1rem;
            display: block;
            filter: none;
        }

        .hero-brand .hero-tagline {
            font-size: clamp(0.85rem, 1.8vw, 1.15rem);
            color: rgba(255, 255, 255, 0.88);
            font-family: 'Josefin Sans', sans-serif;
            font-weight: 400;
            letter-spacing: 0.30em;
            text-shadow: none;
            margin-bottom: 0.7rem;
        }

        .hero-brand .hero-subtitle {
            font-size: clamp(0.72rem, 1.2vw, 0.85rem);
            color: rgba(255, 255, 255, 0.65);
            font-family: 'Manrope', sans-serif;
            font-weight: 400;
            letter-spacing: 0.04em;
            line-height: 1.5;
            text-shadow: none;
            margin: 0;
        }

        /* ── Hero action buttons (Unterkante Viewport) ── */
        .hero-actions {
            position: absolute;
            bottom: 3.5rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: row;
            flex-wrap: nowrap;
            gap: 1.2rem;
            z-index: 10;
            justify-content: center;
            animation: fadeIn 1.0s ease 0.7s backwards;
            padding: 0 1.5rem;
        }

        .hero-action-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            padding: 0.85rem 1.8rem;
            background: rgba(255, 255, 255, 0.07);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            color: #ffffff;
            text-decoration: none;
            border-radius: 10px;
            font-family: 'Josefin Sans', sans-serif;
            font-weight: 600;
            font-size: 0.88rem;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            border: 1px solid rgba(255, 255, 255, 0.18);
            cursor: pointer;
            transition: background 0.25s, border-color 0.25s, transform 0.2s, box-shadow 0.25s;
            white-space: nowrap;
            flex-shrink: 0;
        }

        .hero-action-btn:hover {
            background: rgba(255, 255, 255, 0.25);
            border-color: rgba(255, 255, 255, 0.55);
            transform: translateY(-3px);
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
        }

        .hero-action-icon {
            font-size: 1rem;
            line-height: 1;
        }

        /* Outlined / secondary variant */
        .hero-action-btn--secondary {
            background: rgba(255, 255, 255, 0.07);
            border-color: rgba(255, 255, 255, 0.20);
        }

        .hero-action-btn--secondary:hover {
            background: rgba(255, 255, 255, 0.18);
            border-color: rgba(255, 255, 255, 0.50);
        }

        /* Gold / Einstieg variant */
        .hero-action-btn--gold {
            background: rgba(239, 202, 22, 0.20);
            border-color: rgba(239, 202, 22, 0.55);
            color: #EFCA16;
        }

        .hero-action-btn--gold:hover {
            background: rgba(239, 202, 22, 0.35);
            border-color: #EFCA16;
            box-shadow: 0 8px 28px rgba(239, 202, 22, 0.25);
            transform: translateY(-3px);
        }

        /* Scroll-Indicator versteckt – Buttons übernehmen die untere Kante */
        .scroll-indicator {
            display: none;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
            40% { transform: translateX(-50%) translateY(-10px); }
            60% { transform: translateX(-50%) translateY(-5px); }
        }

        .scroll-indicator::before {
            content: '↓';
            font-size: 2rem;
            color: var(--mist);
            opacity: 0.6;
        }

        /* Services Section */
        .services {
            padding: 10rem 3rem;
            position: relative;
            background: linear-gradient(180deg, var(--mountain-dark) 0%, var(--deep) 100%);
        }

        .services .topo-overlay {
            background-image: url('images/bg-pilatus.jpg');
            filter: brightness(0.9);
        }

        .topo-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('images/bg-topo.jpg');
            background-size: cover;
            background-position: center;
            opacity: 0.18;
            pointer-events: none;
        }

        .section-header {
            text-align: center;
            max-width: 900px;
            margin: 0 auto 6rem;
            position: relative;
            z-index: 1;
        }

        .section-icon {
            width: 10rem;
            height: 10rem;
            object-fit: contain;
            display: block;
            margin: 0 auto 1.5rem;
            filter: brightness(0) invert(1);
        }

        .section-label {
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            color: var(--ice-blue);
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .section-title {
            font-size: clamp(2.5rem, 5vw, 4rem);
            margin-bottom: 1.5rem;
            color: var(--snow);
            animation: fadeInUp 1s ease;
        }

        .section-description {
            color: var(--mist);
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .services-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 3rem;
            position: relative;
            z-index: 1;
        }

        .service-card {
            background: rgba(45, 74, 92, 0.15);
            border: 1px solid rgba(139, 169, 190, 0.2);
            border-radius: 10px;
            padding: 0;
            position: relative;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            animation: fadeInUp 1s ease backwards;
        }

        .service-card:nth-child(1) { animation-delay: 0.2s; }
        .service-card:nth-child(2) { animation-delay: 0.4s; }
        .service-card:nth-child(3) { animation-delay: 0.6s; }

        .service-video-container {
            position: relative;
            width: 100%;
            height: 250px;
            overflow: hidden;
            border-radius: 10px 10px 0 0;
        }

        .service-video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.5;
            transition: all 0.5s;
        }

        .service-card:hover .service-video {
            opacity: 0.7;
            transform: scale(1.05);
        }

        .service-video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, transparent 0%, rgba(15, 20, 25, 0.6) 100%);
        }

        .service-content {
            padding: 3rem;
            text-align: center;
        }

        .service-content p + p {
            margin-top: 1rem;
        }

        .service-icon {
            width: 3.5rem;
            height: 3.5rem;
            object-fit: contain;
            display: block;
            margin: 1rem auto 1.5rem;
            filter: brightness(0) invert(1);
        }

        .service-card::after {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(135deg, var(--ice-blue), var(--mist));
            border-radius: 10px;
            opacity: 0;
            z-index: -1;
            transition: opacity 0.5s;
        }

        .service-card:hover {
            transform: translateY(-10px);
            border-color: transparent;
        }

        .service-card:hover::after {
            opacity: 0.2;
        }

        .service-number {
            position: absolute;
            top: 1rem;
            right: 1rem;
            font-family: 'Josefin Sans', sans-serif;
            font-size: 3rem;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.15);
            line-height: 1;
            z-index: 1;
        }

        .service-card h3 {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            color: var(--snow);
            font-family: 'Josefin Sans', sans-serif;
        }

        .service-card p {
            color: var(--mist);
            font-size: 0.95rem;
            line-height: 1.8;
        }

        /* About Section */
        .about {
            padding: 10rem 3rem;
            background: var(--mountain-blue);
            position: relative;
            overflow: hidden;
        }

        .about-video-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.25;
            z-index: 0;
        }

        .about-video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, rgba(26, 53, 78, 0.6) 0%, rgba(26, 53, 78, 0.4) 100%);
            z-index: 1;
        }

        .values-grid {
            max-width: 1200px;
            margin: 4rem auto 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 3rem;
            position: relative;
            z-index: 1;
        }

        .value-card {
            text-align: center;
            padding: 2rem;
        }

        .value-icon {
            width: 4rem;
            height: 4rem;
            object-fit: contain;
            margin: 0 auto 1.5rem;
            display: block;
            filter: brightness(0) invert(1);
        }

        .value-card h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: var(--ice-blue);
        }

        .value-card p {
            color: rgba(232, 240, 245, 0.8);
            font-size: 0.95rem;
            line-height: 1.7;
        }

        /* Customer Types Section */
        .customers {
            padding: 10rem 3rem;
            background: var(--deep);
            position: relative;
        }

        .customers .topo-overlay {
            background-image: url('images/bg-muhen.jpg');
            opacity: 0.18;
        }

        .customer-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 2.5rem;
            position: relative;
            z-index: 1;
        }

        .customer-grid .customer-card {
            grid-column: span 2;
        }

        .customer-grid .customer-card:nth-child(4) {
            grid-column: 2 / 4;
        }

        .customer-grid .customer-card:nth-child(5) {
            grid-column: 4 / 6;
        }

        .customer-card {
            background: rgba(45, 74, 92, 0.15);
            border: 1px solid rgba(139, 169, 190, 0.2);
            border-radius: 10px;
            padding: 2.5rem;
            transition: all 0.4s;
            text-align: center;
        }

        .customer-card:hover {
            transform: translateY(-5px);
            border-color: #EFCA16;
        }

        .customer-icon {
            width: 3.5rem;
            height: 3.5rem;
            object-fit: contain;
            display: block;
            margin: 0 auto 1.2rem;
            filter: brightness(0) invert(1);
        }

        .customer-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--snow);
        }

        .customer-card p {
            color: var(--mist);
            font-size: 0.95rem;
            line-height: 1.7;
        }

        /* Process Section */
        .process {
            padding: 10rem 3rem;
            background: var(--mountain-blue);
            position: relative;
            overflow: hidden;
        }

        .process .topo-overlay {
            background-image: url('images/bg-luzern.jpg');
            opacity: 0.20;
        }

        .process-video-main {
            max-width: 1200px;
            margin: 0 auto 5rem;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(139, 169, 190, 0.2);
            animation: fadeInUp 1s ease;
            position: relative;
            z-index: 1;
        }

        .process-video-main video {
            width: 100%;
            display: block;
        }

        .process-content {
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .process h2 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            margin-bottom: 2rem;
            color: var(--snow);
        }

        .process p {
            color: rgba(232, 240, 245, 0.9);
            font-size: 1.1rem;
            line-height: 1.9;
        }

        /* Contact Section */
        .contact {
            padding: 10rem 3rem;
            background: var(--deep);
            position: relative;
            overflow: hidden;
        }

        .contact-video-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.3;
            z-index: 0;
        }

        .contact-video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, rgba(15, 20, 25, 0.55) 0%, rgba(15, 20, 25, 0.4) 100%);
            z-index: 1;
        }

        .contact-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .contact-title-icon {
            width: 10rem;
            height: 10rem;
            object-fit: contain;
            display: block;
            margin: 0 auto 1.5rem;
            filter: brightness(0) invert(1);
        }

        .contact h2 {
            font-size: clamp(3rem, 6vw, 5rem);
            margin-bottom: 2rem;
            color: var(--snow);
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            margin-top: 4rem;
            margin-bottom: 5rem;
        }

        /* Labels visuell versteckt, aber für Screenreader vorhanden */
        .contact-form label,
        #anfrageForm label {
            display: block;
            font-size: 0;
            line-height: 0;
            width: 100%;
        }

        .contact-form label input,
        .contact-form label textarea,
        #anfrageForm label input {
            width: 100%;
        }

        .contact-form input,
        .contact-form textarea {
            padding: 1.3rem 1.5rem;
            background: rgba(45, 74, 92, 0.15);
            border: 1px solid rgba(139, 169, 190, 0.2);
            border-radius: 10px;
            color: var(--snow);
            font-family: 'Manrope', sans-serif;
            font-size: 1rem;
            transition: all 0.3s;
        }

        .contact-form input::placeholder,
        .contact-form textarea::placeholder {
            color: var(--mist);
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            outline: none;
            border-color: #EFCA16;
            background: rgba(239, 202, 22, 0.05);
        }

        .contact-form textarea {
            min-height: 180px;
            resize: vertical;
        }

        /* Honeypot – visuell versteckt, Screenreader ignorieren */
        .honeypot {
            display: none !important;
        }

        .submit-button {
            padding: 1.3rem 3rem;
            background: var(--ice-blue);
            color: var(--snow);
            border: none;
            border-radius: 10px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            font-family: 'Manrope', sans-serif;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            font-size: 0.85rem;
        }

        .submit-button:hover {
            background: #EFCA16;
            color: #1A354E;
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(239, 202, 22, 0.35);
        }

        .form-feedback {
            margin-top: 1rem;
            font-size: 0.95rem;
            min-height: 1.5rem;
        }

        .form-success {
            color: #EFCA16;
        }

        .form-error {
            color: #e57373;
        }

        .submit-button:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

        .contact-info {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
            margin-top: 5rem;
            text-align: center;
        }

        .contact-info-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }

        .contact-icon {
            font-size: 2rem;
            color: var(--ice-blue);
        }

        .contact-icon img {
            width: 4rem;
            height: 4rem;
            object-fit: contain;
            display: block;
            filter: brightness(0) invert(1);
        }

        .contact-info-item h4 {
            font-size: 0.9rem;
            color: var(--ice-blue);
            margin-bottom: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        .contact-info-item p {
            color: var(--snow);
            font-size: 1.1rem;
            line-height: 1.6;
        }

        .contact-info-item a {
            color: var(--snow);
            text-decoration: none;
            transition: color 0.3s;
        }

        .contact-info-item a:hover {
            color: #EFCA16;
        }

        /* Footer */
        footer {
            padding: 4rem 3rem 3rem;
            background: var(--deep);
            border-top: 1px solid rgba(139, 169, 190, 0.15);
            text-align: center;
            color: var(--mist);
            position: relative;
        }

        .footer-logo-container {
            margin-bottom: 2rem;
        }

        .footer-logo {
            height: 50px;
            width: auto;
            opacity: 0.8;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        footer a {
            color: var(--mist);
            text-decoration: none;
            transition: color 0.3s;
            font-size: 0.9rem;
        }

        footer a:hover {
            color: #EFCA16;
        }

        .copyright {
            font-size: 0.9rem;
            opacity: 0.6;
        }

        .partner-note {
            max-width: 800px;
            margin: 4rem auto 0;
            padding: 2rem 2.5rem;
            border: 1px solid rgba(139, 169, 190, 0.2);
            border-radius: 8px;
            background: rgba(45, 74, 92, 0.15);
            font-size: 0.95rem;
            color: var(--mist);
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .partner-note a {
            color: var(--snow);
            text-decoration: none;
            transition: color 0.3s;
        }

        .partner-note a:hover {
            color: #EFCA16;
        }

        /* Floating Badge */
        .floating-badge {
            position: fixed;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%) translateY(0px);
            z-index: 999;
            pointer-events: none;
            will-change: transform;
        }

        .floating-badge img {
            width: 16px;
            height: 16px;
            object-fit: contain;
            opacity: 0.85;
            filter: drop-shadow(0 4px 12px rgba(0,0,0,0.35));
        }

        /* Mobile */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--snow);
            font-size: 1.5rem;
            cursor: pointer;
        }

        @media (max-width: 768px) {
            nav {
                padding: 1rem 1.5rem;
            }

            .logo-img {
                height: 30px;
            }

            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(15, 20, 25, 0.98);
                flex-direction: column;
                padding: 2rem;
                gap: 1.5rem;
                border-top: 1px solid rgba(139, 169, 190, 0.15);
            }

            .nav-links.active {
                display: flex;
            }

            .mobile-menu-btn {
                display: block;
            }

            .hero {
                padding: 0;
            }

            .hero-content {
                padding: 2.5rem 1.5rem;
            }

            .hero-logo {
                width: 90%;
            }

            /* Brave-style hero – mobile */
            .hero-brand {
                top: 10%;
                padding: 1.5rem 2rem 1.4rem;
                max-width: 90vw;
                width: 90vw;
            }

            .hero-brand .hero-logo {
                max-width: 180px;
            }

            .hero-actions {
                bottom: 2rem;
                gap: 0.6rem;
                flex-wrap: wrap;
                justify-content: center;
            }

            .hero-action-btn {
                font-size: 0.78rem;
                padding: 0.75rem 1.2rem;
            }

            .services,
            .about,
            .customers,
            .process,
            .contact {
                padding: 5rem 1.5rem;
            }

            .services-grid,
            .customer-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            /* Kundenkarten auf dem Handy einzeln untereinander */
            .customer-grid .customer-card,
            .customer-grid .customer-card:nth-child(4),
            .customer-grid .customer-card:nth-child(5) {
                grid-column: auto;
            }

            .service-content {
                padding: 2rem;
            }

            .service-video-container {
                height: 200px;
            }

            .values-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .contact-info {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .cta-group {
                flex-direction: column;
                align-items: stretch;
            }

            .cta-button {
                text-align: center;
            }

            .scroll-indicator {
                bottom: 2rem;
            }
        }

        /* Scroll animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ===== NAV EINSTIEG BUTTON ===== */
        .nav-einstieg {
            background: #EFCA16 !important;
            color: #1A354E !important;
            padding: 0.45rem 1.1rem !important;
            border-radius: 10px !important;
            font-weight: 700 !important;
            letter-spacing: 0.08em !important;
            transition: all 0.3s !important;
        }
        .nav-einstieg:hover {
            background: #fff !important;
            color: #1A354E !important;
            transform: translateY(-2px);
        }
        .nav-einstieg::after {
            display: none !important;
        }

        /* ===== EINSTIEG MODAL ===== */
        .einstieg-backdrop {
            position: fixed;
            inset: 0;
            background: rgba(10, 15, 20, 0.2);
            backdrop-filter: blur(2px);
            z-index: 2000;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }
        .einstieg-backdrop.is-open {
            opacity: 1;
        }

        .einstieg-modal {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -48%) scale(0.96);
            width: min(95vw, 1100px);
            max-height: 90vh;
            overflow-y: auto;
            background: linear-gradient(160deg, #1A354E 0%, #0F1419 100%);
            border: 1px solid rgba(155, 182, 209, 0.2);
            border-radius: 14px;
            padding: 3.5rem 3rem 3rem;
            z-index: 2100;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
            box-shadow: 0 40px 100px rgba(0,0,0,0.6);
        }
        .einstieg-modal.is-open {
            opacity: 1;
            pointer-events: all;
            transform: translate(-50%, -50%) scale(1);
        }

        .einstieg-close {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            background: rgba(155, 182, 209, 0.1);
            border: 1px solid rgba(155, 182, 209, 0.2);
            color: var(--mist);
            width: 2.5rem;
            height: 2.5rem;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
        }
        .einstieg-close:hover {
            background: rgba(239, 202, 22, 0.15);
            border-color: #EFCA16;
            color: #EFCA16;
        }

        .einstieg-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        .einstieg-label {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.25em;
            color: #EFCA16;
            font-weight: 700;
            margin-bottom: 0.8rem;
        }
        .einstieg-title {
            font-family: 'Josefin Sans', sans-serif;
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            color: var(--snow);
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .einstieg-subtitle {
            color: var(--mist);
            font-size: 1rem;
            max-width: 580px;
            margin: 0 auto;
            line-height: 1.7;
        }

        .einstieg-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

        .einstieg-card {
            background: rgba(45, 74, 92, 0.2);
            border: 1px solid rgba(155, 182, 209, 0.15);
            border-radius: 10px;
            padding: 2rem;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            transition: border-color 0.3s, transform 0.3s;
        }
        .einstieg-card:hover {
            border-color: rgba(155, 182, 209, 0.35);
            transform: translateY(-4px);
        }
        .einstieg-card--featured {
            background: rgba(239, 202, 22, 0.06);
            border-color: rgba(239, 202, 22, 0.35);
            position: relative;
        }
        .einstieg-card--featured:hover {
            border-color: rgba(239, 202, 22, 0.6);
        }

        .einstieg-card-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 0.5rem;
        }
        .einstieg-icon {
            width: 2.8rem;
            height: 2.8rem;
            object-fit: contain;
            filter: brightness(0) invert(1);
            opacity: 0.9;
        }
        .einstieg-badge-tag {
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            padding: 0.3rem 0.75rem;
            border-radius: 10px;
            background: rgba(155, 182, 209, 0.12);
            color: var(--mist);
            border: 1px solid rgba(155, 182, 209, 0.2);
        }
        .einstieg-badge-tag--highlight {
            background: rgba(239, 202, 22, 0.15);
            color: #EFCA16;
            border-color: rgba(239, 202, 22, 0.4);
        }

        .einstieg-card h3 {
            font-family: 'Josefin Sans', sans-serif;
            font-size: 1.25rem;
            color: var(--snow);
            line-height: 1.3;
        }
        .einstieg-tagline {
            font-size: 0.85rem;
            color: var(--ice-blue);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }
        .einstieg-desc {
            color: var(--mist);
            font-size: 0.88rem;
            line-height: 1.7;
            flex: 1;
        }
        .einstieg-facts {
            list-style: none;
            padding: 0;
            margin: 0.25rem 0;
            display: flex;
            flex-direction: column;
            gap: 0.4rem;
        }
        .einstieg-facts li {
            color: var(--mist);
            font-size: 0.82rem;
            line-height: 1.4;
        }

        .einstieg-cta {
            display: block;
            text-align: center;
            margin-top: 0.75rem;
            padding: 0.9rem 1.5rem;
            background: var(--ice-blue);
            color: var(--snow);
            text-decoration: none;
            border-radius: 10px;
            font-weight: 700;
            font-size: 0.82rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            transition: all 0.3s;
            border: 2px solid var(--ice-blue);
        }
        .einstieg-cta:hover {
            background: #EFCA16;
            border-color: #EFCA16;
            color: #1A354E;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(239, 202, 22, 0.3);
        }
        .einstieg-card--featured .einstieg-cta {
            background: #EFCA16;
            border-color: #EFCA16;
            color: #1A354E;
        }
        .einstieg-card--featured .einstieg-cta:hover {
            background: #fff;
            border-color: #fff;
        }

        /* ===== E-MAIL ANFRAGE POPUP ===== */
        .anfrage-backdrop {
            position: fixed;
            inset: 0;
            z-index: 3000;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.2s ease;
        }
        .anfrage-backdrop.is-open {
            opacity: 1;
            pointer-events: all;
        }

        .anfrage-popup {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -46%) scale(0.94);
            width: min(92vw, 420px);
            background: linear-gradient(150deg, #1e3f5a 0%, #111820 100%);
            border: 1px solid rgba(155, 182, 209, 0.25);
            border-radius: 8px;
            padding: 2.2rem 2rem 2rem;
            z-index: 3100;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.25s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            box-shadow: 0 30px 80px rgba(0,0,0,0.7);
        }
        .anfrage-popup.is-open {
            opacity: 1;
            pointer-events: all;
            transform: translate(-50%, -50%) scale(1);
        }

        .anfrage-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: rgba(155, 182, 209, 0.1);
            border: 1px solid rgba(155, 182, 209, 0.2);
            color: var(--mist);
            width: 2rem;
            height: 2rem;
            border-radius: 50%;
            cursor: pointer;
            font-size: 0.85rem;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
        }
        .anfrage-close:hover {
            border-color: #EFCA16;
            color: #EFCA16;
        }

        .anfrage-label {
            font-size: 0.72rem;
            text-transform: uppercase;
            letter-spacing: 0.22em;
            color: #EFCA16;
            font-weight: 700;
            margin-bottom: 0.4rem;
        }
        .anfrage-title {
            font-family: 'Josefin Sans', sans-serif;
            font-size: 1.25rem;
            color: var(--snow);
            margin-bottom: 0.75rem;
            line-height: 1.3;
        }
        .anfrage-hint {
            color: var(--mist);
            font-size: 0.85rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        #anfrageForm {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }
        #anfrageForm input[type="email"] {
            padding: 0.9rem 1.2rem;
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(155, 182, 209, 0.25);
            border-radius: 10px;
            color: var(--snow);
            font-family: 'Manrope', sans-serif;
            font-size: 0.95rem;
            transition: border-color 0.25s, background 0.25s;
        }
        #anfrageForm input[type="email"]::placeholder {
            color: var(--mist);
        }
        #anfrageForm input[type="email"]:focus {
            outline: none;
            border-color: #EFCA16;
            background: rgba(239,202,22,0.05);
        }
        #anfrageForm button[type="submit"] {
            padding: 0.9rem;
            background: #EFCA16;
            color: #1A354E;
            border: none;
            border-radius: 10px;
            font-family: 'Manrope', sans-serif;
            font-weight: 700;
            font-size: 0.88rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            cursor: pointer;
            transition: all 0.25s;
        }
        #anfrageForm button[type="submit"]:hover {
            background: #fff;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(239,202,22,0.25);
        }
        #anfrageForm button[type="submit"]:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            transform: none;
        }

        .anfrage-msg {
            margin-top: 0.75rem;
            font-size: 0.85rem;
            min-height: 1.2rem;
            text-align: center;
        }
        .anfrage-msg.ok  { color: #EFCA16; }
        .anfrage-msg.err { color: #e57373; }

        @media (max-width: 768px) {
            .einstieg-modal {
                padding: 2.5rem 1.5rem 2rem;
                border-radius: 10px;
            }
            .einstieg-cards {
                grid-template-columns: 1fr;
            }
            .einstieg-title {
                font-size: 1.6rem;
            }
        }
/* ── prefers-reduced-motion ──────────────────────────────────────────────────
   Nutzer mit Bewegungsempfindlichkeit (Epilepsie, vestibuläre Störungen)
   haben in ihrem OS «Bewegung reduzieren» aktiviert. Wir respektieren das:
   – Alle CSS-Animationen & Übergänge deaktiviert
   – Autoplay-Videos ausgeblendet (JS pausiert sie zusätzlich)
   – Hintergrundbild der hero-mountain bleibt sichtbar
   ──────────────────────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    /* Autoplay-Videos verstecken */
    video[autoplay] {
        display: none !important;
    }

    /* Fallback-Hintergrundbilder für Sektionen mit Video-Hintergrund */

    /* About-Sektion: Bergsteiger-Stimmung */
    .about {
        background-image: url('images/karussell/small_DSF6043.webp');
        background-size: cover;
        background-position: center;
    }

    /* Process-Sektion: Gletscherweg */
    .process {
        background-image: url('images/karussell/small_IMG_7291_SnapseedCopy.webp');
        background-size: cover;
        background-position: center;
    }

    /* Contact-Sektion: Gletscherbild */
    .contact {
        background-image: url('images/karussell/small_gletscher.webp');
        background-size: cover;
        background-position: center top;
    }

    /* Service-Cards: je ein anderes Bergbild */
    .service-card:nth-child(1) .service-video-container {
        background-image: url('images/karussell/small_IMG_4256.webp');
        background-size: cover;
        background-position: center;
    }
    .service-card:nth-child(2) .service-video-container {
        background-image: url('images/karussell/small_IMG_7341.webp');
        background-size: cover;
        background-position: center;
    }
    .service-card:nth-child(3) .service-video-container {
        background-image: url('images/karussell/small_IMG_9859.webp');
        background-size: cover;
        background-position: center;
    }
}

/* ===================================================== */
/* Termin-Buchung (Modal + Bestätigungsseite)            */
/* ===================================================== */

.contact-book-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    margin: 0 auto 2rem;
}
.contact-book-or {
    font-size: 0.85rem;
    color: var(--mist);
    letter-spacing: 0.05em;
}

.booking-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(10, 15, 20, 0.45);
    backdrop-filter: blur(3px);
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.booking-backdrop.is-open { opacity: 1; pointer-events: all; }

.booking-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -48%) scale(0.96);
    width: min(95vw, 640px);
    max-height: 90vh;
    overflow-y: auto;
    background: linear-gradient(160deg, #1A354E 0%, #0F1419 100%);
    border: 1px solid rgba(155, 182, 209, 0.2);
    border-radius: 14px;
    padding: 3rem 2.5rem 2.5rem;
    z-index: 2100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 40px 100px rgba(0,0,0,0.6);
}
.booking-modal.is-open {
    opacity: 1;
    pointer-events: all;
    transform: translate(-50%, -50%) scale(1);
}

.booking-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: rgba(155, 182, 209, 0.1);
    border: 1px solid rgba(155, 182, 209, 0.2);
    color: var(--mist);
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.booking-close:hover {
    background: rgba(239, 202, 22, 0.15);
    border-color: #EFCA16;
    color: #EFCA16;
}

.booking-header { text-align: center; margin-bottom: 2rem; }
.booking-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: #EFCA16;
    font-weight: 700;
    margin-bottom: 0.7rem;
}
.booking-title {
    font-family: 'Josefin Sans', sans-serif;
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    color: var(--snow);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}
.booking-subtitle {
    color: var(--mist);
    font-size: 0.98rem;
    max-width: 460px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Slot-Auswahl */
.booking-slots { display: flex; flex-direction: column; gap: 1.25rem; }
.booking-loading, .booking-empty {
    color: var(--mist);
    text-align: center;
    padding: 1.5rem 0;
}
.booking-day-label {
    font-family: 'Josefin Sans', sans-serif;
    color: var(--snow);
    font-size: 1.05rem;
    margin-bottom: 0.6rem;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid rgba(155, 182, 209, 0.15);
}
.booking-slot-row { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.booking-slot {
    background: rgba(45, 74, 92, 0.25);
    border: 1px solid rgba(155, 182, 209, 0.25);
    color: var(--snow);
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
    padding: 0.55rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}
.booking-slot:hover {
    border-color: #EFCA16;
    background: rgba(239, 202, 22, 0.12);
    color: #EFCA16;
    transform: translateY(-2px);
}

.booking-nofit {
    margin-top: 1.75rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(155, 182, 209, 0.15);
    text-align: center;
}
.booking-nofit p { color: var(--mist); margin-bottom: 0.4rem; font-size: 0.92rem; }
.booking-contact-link {
    color: #EFCA16;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
}
.booking-contact-link:hover { text-decoration: underline; }

/* Detail-Formular */
.booking-back {
    background: none;
    border: none;
    color: var(--mist);
    cursor: pointer;
    font-size: 0.9rem;
    padding: 0;
    margin-bottom: 1rem;
}
.booking-back:hover { color: #EFCA16; }
.booking-chosen {
    background: rgba(239, 202, 22, 0.08);
    border: 1px solid rgba(239, 202, 22, 0.3);
    border-radius: 8px;
    color: var(--snow);
    padding: 0.75rem 1rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
    text-align: center;
}
.booking-form label {
    display: block;
    color: var(--mist);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}
.booking-form input[type="text"],
.booking-form input[type="email"],
.booking-form textarea {
    width: 100%;
    margin-top: 0.4rem;
    background: rgba(15, 20, 25, 0.6);
    border: 1px solid rgba(155, 182, 209, 0.25);
    border-radius: 8px;
    color: var(--snow);
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
    padding: 0.7rem 0.9rem;
}
.booking-form textarea { min-height: 90px; resize: vertical; }
.booking-form input:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: #EFCA16;
}
.booking-mode {
    border: none;
    padding: 0;
    margin: 0 0 1rem;
}
.booking-mode legend {
    color: var(--mist);
    font-size: 0.9rem;
    padding: 0;
    margin-bottom: 0.4rem;
}
.booking-radio {
    display: inline-flex !important;
    align-items: center;
    gap: 0.4rem;
    margin-right: 1.25rem;
    color: var(--snow) !important;
    cursor: pointer;
}
.booking-submit, .booking-close-btn {
    width: 100%;
    background: #EFCA16;
    color: #0F1419;
    border: none;
    border-radius: 8px;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 0.5rem;
}
.booking-submit:hover, .booking-close-btn:hover {
    background: #f5d63a;
    transform: translateY(-2px);
}
.booking-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.booking-msg {
    text-align: center;
    margin-top: 0.9rem;
    font-size: 0.92rem;
    min-height: 1.2em;
}
.booking-msg.is-error { color: #ff9b9b; }
.booking-msg.is-success { color: #9be6a0; }

/* Erfolg */
.booking-success { text-align: center; padding: 1rem 0; }
.booking-success-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: rgba(155, 230, 160, 0.15);
    color: #9be6a0;
    border: 2px solid #9be6a0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1.25rem;
}
.booking-success h3 {
    font-family: 'Josefin Sans', sans-serif;
    color: var(--snow);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}
.booking-success p { color: var(--mist); line-height: 1.6; margin-bottom: 1.25rem; }
.booking-video-btn {
    display: inline-block;
    background: rgba(155, 182, 209, 0.12);
    border: 1px solid rgba(155, 182, 209, 0.3);
    color: var(--snow);
    text-decoration: none;
    border-radius: 8px;
    padding: 0.7rem 1.4rem;
    margin-bottom: 1rem;
    transition: all 0.2s;
}
.booking-video-btn:hover { border-color: #EFCA16; color: #EFCA16; }

@media (max-width: 560px) {
    .booking-modal { padding: 2.5rem 1.25rem 1.5rem; }
}

/* ── Bestätigungsseite (booking.php?view=…) ── */
.booking-view-body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, #1A354E 0%, #0F1419 100%);
    padding: 2rem 1rem;
}
.booking-view {
    width: min(94vw, 480px);
    background: rgba(15, 20, 25, 0.5);
    border: 1px solid rgba(155, 182, 209, 0.2);
    border-radius: 14px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.bv-logo { height: 40px; margin-bottom: 1.5rem; }
.bv-label {
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: #EFCA16;
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}
.booking-view h1 {
    font-family: 'Josefin Sans', sans-serif;
    color: var(--snow);
    font-size: 1.7rem;
    margin-bottom: 1.5rem;
}
.bv-row {
    display: flex;
    justify-content: space-between;
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(155, 182, 209, 0.12);
    color: var(--mist);
}
.bv-row strong { color: var(--snow); font-weight: 600; }
.bv-row a { color: #EFCA16; text-decoration: none; }
.bv-hint { color: var(--mist); font-size: 0.9rem; margin: 1.25rem 0; }
.bv-btn {
    display: inline-block;
    background: #EFCA16;
    color: #0F1419;
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    padding: 0.75rem 1.6rem;
}
