:root {
            --primary-color: #4a5568;
            --secondary-color: #2d3748;
            --accent-color: #e8dcc6;
            --background-color: #b7c5d1;
            --white-color: #ffffff;
            --light-gray: #f8f9fa;
            --text-color: #4a5568;
            --text-light: #718096;
            --green-accent: #959f68;
            --red-accent: #b83c3c;
            --france-blue: #0055a4;
            --france-white: #ffffff;
            --france-red: #ef4135;
            --dark-blue-text: #415a78;
        }

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

        body {
            font-family: 'Georgia', serif;
            line-height: 1.6;
            color: var(--dark-blue-text);
            background-color: var(--background-color);
            -webkit-tap-highlight-color: transparent;
        }

a {
    color: inherit; /* Übernimmt die Farbe vom Elternelement */
    text-decoration: none; /* Entfernt Unterstreichung */
}

a:visited {
    color: inherit; /* Auch besuchte Links nicht blau */
}

a:hover {
    color: inherit; /* Hover-Zustand bleibt gleich */
}
.footer-nav a {
    color: var(--white-color);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-nav a:visited {
    color: var(--white-color);
}


        /* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: var(--background-color);
    padding: 0 2rem;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}
.hero-photo {
    position: absolute;
    /* LQIP: winziger unscharfer Platzhalter, inline eingebettet (kein Request),
       damit sofort etwas sichtbar ist, bevor das echte Bild eintrifft. */
    background-image: url('data:image/jpeg;base64,/9j//gAQTGF2YzYyLjI4LjEwMQD/2wBDAAgYGBwYHCEhISEhISckJygoKCcnJycoKCgrKyszMzMrKysoKCsrMDAzMzc5NzQ0MzQ5OTw8PEhIRUVUVFdnZ3z/xABoAAEBAQEBAAAAAAAAAAAAAAAFAwIEBgEBAQEAAAAAAAAAAAAAAAAAAAIEEAACAQMCAwkBAAAAAAAAAAABAhEAIRKRYTFxA7GSwQRRQeEiFFIRAQADAQAAAAAAAAAAAAAAAAABEVES/8AAEQgADgAUAwEiAAIRAAMRAP/aAAwDAQACEQMRAD8A8p08wLETxiIjaT4VZiuILplxi47JnWilfauguosyzysdYrNxGABjeykD23vyqWWx0+KfPmAphEUD0b7HU1n9Lfwndq6H/9k=');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    opacity: 0.8;
    transition: all 0.3s ease;
    overflow: hidden;
}
.hero > :not(.hero-photo) {
    position: relative;
    z-index: 2;
}
.hero-photo picture {
    display: block;
    width: 100%;
    height: 100%;
}
.hero-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.hero-photo-frame {
    position: absolute;
    inset: 8px;
    z-index: 2;
    width: calc(100% - 16px);
    height: calc(100% - 16px);
    pointer-events: none;
    overflow: visible;
}
.hero-photo-frame polygon {
    fill: none;
    stroke: rgba(65, 90, 120, 0.72);
    stroke-width: 1.15;
    stroke-dasharray: 3.2 3.8;
    stroke-linecap: round;
    vector-effect: non-scaling-stroke;
}
.hero-photo-frame--mobile { display: none; }
    .hero-logo {
    font-size: 3.2rem;
    color: var(--white-color);
    margin-bottom: 1rem;
    font-style: normal; 
    font-weight: normal;
    text-align: center;
    line-height: 1.2;
    max-width: 900px;
}
.france-italic {
    font-style: italic;
    font-weight: normal;
    color: var(--dark-blue-text); 
}
        .hero-subtitle {
            font-size: 1.2rem;
            color: var(--white-color);
            margin-bottom: 2rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
        }

        .hero-quote {
            font-size: 1.5rem;
            color: var(--accent-color);
            font-style: italic;
            margin-bottom: 3rem;
            max-width: 600px;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 0.7rem;
            background: rgba(248, 249, 250, 0.92);
            color: #2d373e;
            padding: 0.9rem 1.15rem 0.9rem 1.35rem;
            border: 1px solid rgba(45, 55, 62, 0.16);
            border-radius: 0.35rem;
            font-family: Georgia, serif;
            font-size: 1rem;
            font-weight: normal;
            cursor: pointer;
            text-decoration: none;
            transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
            box-shadow: 0 8px 22px rgba(45, 55, 62, 0.16);
            position: relative;
            letter-spacing: 0.03em;
            backdrop-filter: blur(8px);
        }

        .cta-button::after {
            content: '→';
            font-family: Arial, Helvetica, sans-serif;
            font-size: 1.1em;
            transition: transform 0.3s ease;
        }

        .cta-button:hover::after {
            transform: translateX(3px);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 14px 30px rgba(45, 55, 62, 0.22);
            background: var(--white-color);
            color: #2d373e;
        }

        .cta-button:active {
            transform: translateY(-2px) scale(0.98);
        }

        /* Section Styles */
      .section {
    padding: 5rem 0;
    padding-top: 6rem;
    width: 100%;
}
.section-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
        .section-title {
            font-size: 2.5rem;
            color: var(--dark-blue-text);
            text-align: center;
            margin-bottom: 1rem;
            font-weight: normal;
        }

        .section-subtitle {
            text-align: center;
            color: var(--accent-color);
            font-style: italic;
            margin-bottom: 3rem;
            font-size: 1.2rem;
        }

        /* About Section */
        .about {
    background-color: var(--light-gray);
    padding: 6rem 0 5rem 0;
    width: 100%;
}

        .about-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .about-text {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        /* Menu Section */
       .menu {
    background-color: var(--white-color);
    padding: 6rem 0 5rem 0;
    width: 100%;
}

        .menu-grid {
            display: grid;
            /* Drei Karten am Desktop, zwei am Tablet, eine am Handy - ohne feste
               Haltepunkte. min() verhindert Ueberlauf, wenn weniger als 320px
               Platz bleiben. */
            grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
            /* Jede Karte behaelt ihre eigene Hoehe. Sonst wuerde eine zugeklappte
               Karte neben einer aufgeklappten auf deren Hoehe mitgezogen. */
            align-items: start;
            gap: 3rem;
            margin-top: 3rem;
        }

        .menu-category {
            background-color: var(--light-gray);
            padding: 2rem;
        }

        .menu-category h3 {
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
            text-align: center;
        }

        .menu-item {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px dotted var(--text-light);
        }

        .menu-item-info h4 {
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }

        .menu-item-info p {
            color: var(--text-light);
            font-size: 0.9rem;
        }

        .menu-item-price {
            font-family: Arial, Helvetica, sans-serif;
            font-weight: 700;
            font-size: 1.05rem;
            color: var(--dark-blue-text);
            background: rgba(65, 90, 120, 0.06);
            padding: 0.25rem 0.6rem;
            border-radius: 8px;
            border: 1px solid rgba(65, 90, 120, 0.12);
            font-variant-numeric: tabular-nums;
            letter-spacing: 0.2px;
        }

        /* Gallery Section */
       .gallery {
    background-color: var(--light-gray);
    padding: 6rem 0 5rem 0;
    width: 100%;
}

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .gallery-item {
            height: 250px;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white-color);
            font-style: italic;
            font-weight: bold;
            font-size: 1.2rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
            transition: transform 0.3s ease;
            position: relative;
            border-radius: 10px;
            overflow: hidden;
        }

        .gallery-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.3);
            transition: background 0.3s ease;
            z-index: 1;
        }

        /* Das responsive <picture> fuellt die Kachel, der Overlay liegt darueber. */
        .gallery-item picture {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

        .gallery-item img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        .gallery-item:hover::before {
            background: rgba(0, 0, 0, 0.1);
        }

        .gallery-item span {
            position: relative;
            z-index: 2;
        }

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

        /* LQIP-Platzhalter (inline, ~0,4 KB) statt der 7-13 MB Originale */
        .gallery-item:nth-child(1) { background-image: url('data:image/jpeg;base64,/9j/4AAQSkZJRgABAgAIvwiYAAD//gAQTGF2YzYyLjI4LjEwMQD/2wBDAAgYGBwYHCEhISEhISckJygoKCcnJycoKCgrKyszMzMrKysoKCsrMDAzMzc5NzQ0MzQ5OTw8PEhIRUVUVFdnZ3z/xABpAAADAQEAAAAAAAAAAAAAAAADBQYHBAEBAAAAAAAAAAAAAAAAAAAAAxAAAQMDAQMNAQAAAAAAAAAAAQIRIQMAEjEEUxQiMjThktHBoZFBgXFRQhEBAQEBAAAAAAAAAAAAAAAAABEhYf/AABEIAA4AFAMBIgACEQADEQD/2gAMAwEAAhEDEQA/AK9dIqW66alNDMcD76wI/bHiiono7JB/jnay0j5e9EIyDWmpIU5KmiIefIW1AnqeKARUqDLJT8ptS4j6a+zKlvR2+u3K9loLUVKQCTqZ8DYeC2fdj1PfZwudf//Z'); }
        .gallery-item:nth-child(2) { background-image: url('data:image/jpeg;base64,/9j//gAQTGF2YzYyLjI4LjEwMQD/2wBDAAgYGBwYHCEhISEhISckJygoKCcnJycoKCgrKyszMzMrKysoKCsrMDAzMzc5NzQ0MzQ5OTw8PEhIRUVUVFdnZ3z/xABpAAEBAQEBAAAAAAAAAAAAAAAHBQMCBgEBAQAAAAAAAAAAAAAAAAAAAwQQAAIBAgQGAwEAAAAAAAAAAAECABEhEkFRA1KBIgUxFAQTkdERAQACAgMBAAAAAAAAAAAAAAEAIQMCBJESEf/AABEIAA4AFAMBIgACEQADEQD/2gAMAwEAAhEDEQA/AISNZSOKh/kTu31Rfrr01ZhY2ByqTrCkgYTTNQees9r2TfZ9zcRiW6QQTlQ+OdYmrclSoqlZxhkh/lEMwwixI86TD224R+mC8rGV9emD4Z//2Q=='); }
        .gallery-item:nth-child(3) { background-image: url('data:image/jpeg;base64,/9j//gAQTGF2YzYyLjI4LjEwMQD/2wBDAAgYGBwYHCEhISEhISckJygoKCcnJycoKCgrKyszMzMrKysoKCsrMDAzMzc5NzQ0MzQ5OTw8PEhIRUVUVFdnZ3z/xABlAAEBAQEBAAAAAAAAAAAAAAAEAwEGBQEAAwEAAAAAAAAAAAAAAAAAAQIEBRAAAgIBBAEFAQAAAAAAAAAAAQIRACExYRIDgZFRBEHhExEAAwEBAQAAAAAAAAAAAAAAAAECEUES/8AAEQgADgAUAwEiAAIRAAMRAP/aAAwDAQACEQMRAD8AqG4rDffuRYHrQjkVBxE7Ua/AZ1DBxMAkNp6/l9Ao+jNOIxpch1vS5ScqGZssQZmMRibvmqfqE4wAIin/AJb1tB5Z/9k='); }
        .gallery-item:nth-child(4) { background-image: url('data:image/jpeg;base64,/9j//gAQTGF2YzYyLjI4LjEwMQD/2wBDAAgYGBwYHCEhISEhISckJygoKCcnJycoKCgrKyszMzMrKysoKCsrMDAzMzc5NzQ0MzQ5OTw8PEhIRUVUVFdnZ3z/xABoAAEBAQEBAAAAAAAAAAAAAAAFAwIEBgEBAQEAAAAAAAAAAAAAAAAAAAIEEAACAQMCAwkBAAAAAAAAAAABAhEAIRKRYTFxA7GSwQRRQeEiFFIRAQADAQAAAAAAAAAAAAAAAAABEVES/8AAEQgADgAUAwEiAAIRAAMRAP/aAAwDAQACEQMRAD8A8p08wLETxiIjaT4VZiuILplxi47JnWilfauguosyzysdYrNxGABjeykD23vyqWWx0+KfPmAphEUD0b7HU1n9Lfwndq6H/9k='); }
        .gallery-item:nth-child(5) { background-image: url('data:image/jpeg;base64,/9j//gAQTGF2YzYyLjI4LjEwMQD/2wBDAAgYGBwYHCEhISEhISckJygoKCcnJycoKCgrKyszMzMrKysoKCsrMDAzMzc5NzQ0MzQ5OTw8PEhIRUVUVFdnZ3z/xAB0AAACAwEBAAAAAAAAAAAAAAAEBQMCAAcGAQEAAwEBAAAAAAAAAAAAAAADAAEEBgUQAAEDAgIJAwUBAAAAAAAAAAECEQAhEgMxUUFxoVITBJKR0QWjUxVh4SJiEQEAAwEBAQAAAAAAAAAAAAAAATERUSEi/8AAEQgAHgAUAwEiAAIRAAMRAP/aAAwDAQACEQMRAD8Aomm38RglNP4SzPQeTJLDwmEWqFQ42ic89aF08xqLYaL23PJGxvqfJ+4fhgW1pC2TpMi9c4vWdZ7jCQk5nLWrUn12CbAw+YXJyijrsV02hwlLsAWy0xbnAVDzSvccVJIwykJegKQd5kf3PqeJHYmL7Swa2td5mZX+fE2fPBe9f//Z'); }
        .gallery-item:nth-child(6) { background-image: url('data:image/jpeg;base64,/9j//gAQTGF2YzYyLjI4LjEwMQD/2wBDAAgYGBwYHCEhISEhISckJygoKCcnJycoKCgrKyszMzMrKysoKCsrMDAzMzc5NzQ0MzQ5OTw8PEhIRUVUVFdnZ3z/xABmAAEBAQEBAAAAAAAAAAAAAAAFAwIEBwEBAQEAAAAAAAAAAAAAAAAABQIDEAACAQMDAAsBAAAAAAAAAAABAgBBUREhEvAEA9HBsSKikZJhMVMRAQEBAAAAAAAAAAAAAAAAAAARAf/AABEIAA4AFAMBIgACEQADEQD/2gAMAwEAAhEDEQA/AO5BqNPw6/cm65fdS0HV91Oe8q5rzxgZG6YLoMZFLr3iY39Xb1J2TzDpJUsCUBytyKmD+T+Y+RmsTX//2Q=='); }

        /* Contact Section */
       .contact {
    background-color: var(--white-color);
    padding: 6rem 0 5rem 0;
    width: 100%;
}

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            margin-top: 3rem;
        }

        .contact-info {
            padding: 2rem;
            background-color: var(--light-gray);
        }

        .contact-info h3 {
            color: var(--green-accent);
            margin-bottom: 1rem;
        }

        .opening-hours h3 {
            color: var(--red-accent);
            margin-bottom: 1rem;
        }

        .contact-info p {
            margin-bottom: 0.5rem;
        }

        .opening-hours {
            padding: 2rem;
            background-color: var(--light-gray);
        }

        .hours-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.5rem;
            padding: 0.25rem 0;
            border-bottom: 1px dotted var(--text-light);
        }

        /* ===================== Footer ===================== */
        footer {
            position: relative;
            background: #2d373e;
            color: var(--white-color);
            padding: 4rem 2rem 1.75rem;
            overflow: hidden;
        }

        /* Feiner, warmer Abschluss zum Seiteninhalt */
        footer::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: rgba(232, 220, 198, 0.72);
        }

        .footer-inner {
            max-width: 1100px;
            margin: 0 auto;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem 2.5rem;
            text-align: left;
            padding-bottom: 2.5rem;
        }

        .footer-brand-name {
            font-size: 1.65rem;
            letter-spacing: 0.04em;
            line-height: 1.2;
            margin-bottom: 0.3rem;
        }

        .footer-brand-sub {
            font-size: 0.72rem;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 1.4rem;
        }

        .footer-quote {
            font-style: italic;
            color: var(--accent-color);
            font-size: 1.05rem;
            line-height: 1.55;
            max-width: 30ch;
            margin-bottom: 1.75rem;
        }

        .footer-heading {
            font-family: 'Georgia', serif;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.18em;
            color: rgba(255, 255, 255, 0.55);
            margin-bottom: 1.1rem;
        }

        .footer-list {
            list-style: none;
            display: grid;
            gap: 0.7rem;
        }

        .footer-list a {
            position: relative;
            display: inline-block;
            color: rgba(255, 255, 255, 0.88);
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.25s ease;
        }

        .footer-list a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -3px;
            width: 0;
            height: 1px;
            background: var(--accent-color);
            transition: width 0.3s ease;
        }

        .footer-list a:hover,
        .footer-list a:focus-visible {
            color: var(--accent-color);
        }

        .footer-list a:hover::after,
        .footer-list a:focus-visible::after {
            width: 100%;
        }

        .footer-contact {
            font-style: normal;
            display: grid;
            gap: 0.85rem;
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.88);
        }

        .footer-contact-item {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            line-height: 1.5;
        }

        .footer-contact-item i {
            flex: none;
            width: 1rem;
            margin-top: 0.3rem;
            text-align: center;
            font-size: 0.85rem;
            color: var(--accent-color);
        }

        .footer-contact a {
            color: inherit;
            text-decoration: none;
            transition: color 0.25s ease;
        }

        .footer-contact a:hover,
        .footer-contact a:focus-visible {
            color: var(--accent-color);
        }

        .footer-hours {
            display: grid;
            font-size: 0.92rem;
        }

        .footer-hours-row {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            gap: 1rem;
            padding: 0.4rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            color: rgba(255, 255, 255, 0.88);
        }

        .footer-hours-row:last-child {
            border-bottom: 0;
        }

        .footer-hours-row span + span {
            font-variant-numeric: tabular-nums;
            white-space: nowrap;
        }

        .footer-hours-row.is-closed {
            color: rgba(255, 255, 255, 0.45);
        }

        .social-links {
            display: flex;
            gap: 0.7rem;
        }

        .social-links a {
            width: 42px;
            height: 42px;
            border-radius: 14px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 1.05rem;
            color: var(--white-color);
            text-decoration: none;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.14);
            backdrop-filter: blur(6px);
            transition: transform 0.25s ease, background 0.25s ease,
                        border-color 0.25s ease, color 0.25s ease,
                        box-shadow 0.25s ease;
        }

        .social-links a:hover,
        .social-links a:focus-visible {
            color: var(--dark-blue-text);
            background: var(--accent-color);
            border-color: var(--accent-color);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
        }

        /* --- Untere Leiste --- */
        .footer-bottom {
            display: grid;
            grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
            align-items: center;
            gap: 1rem 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.12);
        }

        .footer-copyright {
            display: grid;
            gap: 0.15rem;
            font-size: 0.82rem;
            line-height: 1.5;
            color: rgba(255, 255, 255, 0.6);
            text-align: left;
        }

        .footer-nav {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-self: end;
            gap: 0.9rem;
        }

        .footer-nav a,
        .footer-nav .consent-reopen {
            font-size: 0.82rem;
            padding: 0.2rem 0;
            border-radius: 0;
            color: rgba(255, 255, 255, 0.62);
            background: transparent;
            border: 0;
            transition: color 0.25s ease;
        }

        .footer-nav a:hover,
        .footer-nav a:focus-visible,
        .footer-nav .consent-reopen:hover,
        .footer-nav .consent-reopen:focus-visible {
            color: var(--white-color);
            background: transparent;
            text-decoration: underline;
            text-underline-offset: 0.25rem;
        }

        .footer-bottom .qc-powered {
            margin-top: 0;
            grid-column: 2;
            grid-row: 1;
        }

        @media (max-width: 992px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 2.5rem 2rem;
            }

            .footer-brand {
                grid-column: 1 / -1;
            }
        }

        @media (max-width: 600px) {
            footer {
                padding: 3rem 1.25rem 1.5rem;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 2.25rem;
                padding-bottom: 2rem;
            }

            .footer-quote {
                max-width: none;
            }

            .footer-bottom {
                display: flex;
                flex-direction: column;
                align-items: flex-start;
            }

            .footer-nav { justify-self: auto; }
            .footer-bottom .qc-powered { order: -1; }
        }

        /* Mobile Responsiveness */
        @media (max-width: 1024px) {
            .menu-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }
            
            .contact-grid {
                grid-template-columns: 1fr;
            }
        }
@media (min-width: 769px) {
    .hero-photo {
        top: 0;
        left: 0;
        width: 500px;
        height: 600px;
        /* Große geschwungene Form - schließt links und oben ab */
        clip-path: polygon(
            0% 0%, 
            100% 0%, 
            85% 25%, 
            70% 50%, 
            60% 75%, 
            40% 85%, 
            20% 90%, 
            0% 100%
        );
    }
    
    .hero-photo:hover {
        opacity: 0.9;
        transform: scale(1.01);
    }
}

       @media (max-width: 768px) {

   

    .aktionen-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .aktion-card {
        padding: 1.5rem;
    }

    .aktion-icon {
        font-size: 2.5rem;
    }

    .aktion-title {
        font-size: 1.2rem;
    }

    .footer-nav {
        gap: 0.5rem;
    }

    .hero-logo {
        font-size: 2.2rem;
        line-height: 1.3;
        padding: 0 1rem;
    }
 .hero-photo {
        top: 0;
        left: 0;
        /* Groesser und mitwachsend. Das Seitenverhaeltnis bleibt exakt 5:6,
           damit die clip-path-Form unveraendert bleibt - sie wird nur skaliert. */
        --hero-photo-w: min(78vw, 330px);
        width: var(--hero-photo-w);
        height: calc(var(--hero-photo-w) * 1.2);
        /* Mobile: Schöne geschwungene Form - schließt oben und links ab */
        clip-path: polygon(
            0% 0%, 
            100% 0%, 
            80% 30%, 
            60% 55%, 
            45% 75%, 
            25% 85%, 
            0% 95%
        );
    }
    
    .hero-photo:hover {
        opacity: 0.9;
        transform: scale(1.02);
    }
    .hero-photo-frame { inset: 5px; width: calc(100% - 10px); height: calc(100% - 10px); }
    .hero-photo-frame--desktop { display: none; }
    .hero-photo-frame--mobile { display: block; }

    /* Einspaltig erst am Handy - diese Regel lag versehentlich ausserhalb
       der Medienabfrage und hat die Karten auf jeder Breite gestapelt. */
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
      .hero-content {
        position: relative;
        z-index: 2;
        max-width: 800px;
    }
    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-quote {
        font-size: 1.3rem;
        padding: 0 1rem;
    }
 

    .section-title {
        font-size: 2.2rem;
    }

    .section {
        padding: 3rem 1.5rem;
    }

    .menu-category {
        padding: 1.5rem;
    }

    .menu-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem 0;
    }

    .menu-item-price {
        margin-top: 0.5rem;
        align-self: flex-end;
        font-size: 1.2rem;
    }

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

    .gallery-item {
        height: 200px;
    }

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

    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .about-content {
        padding: 0 1rem;
    }

    .footer-quote {
        font-size: 1rem;
    }




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

        @media (max-width: 480px) {
            .hero-logo {
                font-size: 2.2rem;
            }

            .hero-quote {
                font-size: 1.1rem;
            }
   .hero-photo {
        /* Groesser und mitwachsend. Verhaeltnis bleibt exakt 4:5, damit die
           clip-path-Form unveraendert bleibt - sie wird nur skaliert. */
        --hero-photo-w: min(74vw, 320px);
        width: var(--hero-photo-w);
        height: calc(var(--hero-photo-w) * 1.25);
        /* Noch kompakter für sehr kleine Bildschirme */
        clip-path: polygon(
            0% 0%, 
            100% 0%, 
            75% 35%, 
            55% 60%, 
            35% 80%, 
            15% 90%, 
            0% 100%
        );
    }
            .section-title {
                font-size: 1.8rem;
            }

            .section {
                padding: 2rem 1rem;
            }

            .menu-category {
                padding: 1rem;
            }

            .menu-item-info h4 {
                font-size: 1rem;
            }

            .menu-item-info p {
                font-size: 0.85rem;
            }

            .about-text {
                font-size: 1rem;
            }

            .gallery-item {
                height: 150px;
                font-size: 0.9rem;
            }

            .social-links {
                gap: 0.55rem;
            }

            .social-links a {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
        }

        @media (max-width: 360px) {
            .hero-logo {
        font-size: 1.8rem;
        line-height: 1.4;
    }


            .cta-button {
                padding: 0.8rem 1.5rem;
                font-size: 0.9rem;
            }
        }

        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }

        /* Add some visual interest */
        .decorative-line {
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, var(--france-blue) 0%, var(--france-blue) 33%, var(--france-white) 33%, var(--france-white) 66%, var(--france-red) 66%, var(--france-red) 100%);
            margin: 2rem auto;
            border-radius: 2px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        }


        /* Fixed Call Button
           Erscheint als Schriftzug und zieht sich danach sanft zum runden Badge zusammen. */
        .fixed-call-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1000;
            display: inline-flex;
            align-items: center;
            height: 60px;
            min-width: 60px;
            border: none;
            border-radius: 999px;
            background: var(--green-accent);
            color: var(--white-color);
            text-decoration: none;
            cursor: pointer;
            box-shadow: 0 10px 28px rgba(149, 159, 104, 0.38);
            opacity: 0;
            visibility: hidden;
            transform: translateY(18px) scale(0.94);
            transition:
                opacity 0.5s ease,
                transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1),
                background-color 0.4s ease,
                box-shadow 0.4s ease;
        }

        .fixed-call-btn.scroll-visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scale(1);
        }

        .fixed-call-btn__icon {
            flex: 0 0 60px;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.35rem;
        }

        .fixed-call-btn__label {
            display: block;
            max-width: 0;
            padding-right: 0;
            overflow: hidden;
            white-space: nowrap;
            opacity: 0;
            transform: translateX(-10px);
            font-size: 0.95rem;
            font-weight: 600;
            letter-spacing: 0.02em;
            transition:
                max-width 0.75s cubic-bezier(0.22, 0.61, 0.36, 1),
                padding-right 0.75s cubic-bezier(0.22, 0.61, 0.36, 1),
                opacity 0.4s ease,
                transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
        }

        /* Geoeffneter Zustand: kurz nach dem Einblenden, beim Hover und per Tastatur */
        .fixed-call-btn.is-open .fixed-call-btn__label,
        .fixed-call-btn:hover .fixed-call-btn__label,
        .fixed-call-btn:focus-visible .fixed-call-btn__label {
            max-width: 16rem;
            padding-right: 1.5rem;
            opacity: 1;
            transform: translateX(0);
        }

        .fixed-call-btn.scroll-visible:hover,
        .fixed-call-btn.scroll-visible:focus-visible {
            background: var(--red-accent);
            box-shadow: 0 14px 34px rgba(184, 60, 60, 0.38);
            transform: translateY(-3px) scale(1.02);
        }

        .fixed-call-btn.scroll-visible:active {
            transform: translateY(0) scale(0.97);
        }

        .fixed-call-btn::before {
            content: '';
            position: absolute;
            inset: -4px;
            border: 1px solid rgba(255, 255, 255, 0.6);
            border-radius: inherit;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }

        .fixed-call-btn:hover::before,
        .fixed-call-btn:focus-visible::before {
            opacity: 1;
            animation: pulse 1.8s ease-out infinite;
        }

        @keyframes pulse {
            0% { transform: scale(1); opacity: 0.7; }
            60% { transform: scale(1.06); opacity: 0.25; }
            100% { transform: scale(1.12); opacity: 0; }
        }

        @media (prefers-reduced-motion: reduce) {
            .fixed-call-btn,
            .fixed-call-btn__label {
                transition-duration: 0.01ms;
            }

            .fixed-call-btn:hover::before,
            .fixed-call-btn:focus-visible::before {
                animation: none;
            }
        }

        /* Kompaktere Masse auf kleinen Screens */
        @media (max-width: 768px) {
            .fixed-call-btn {
                bottom: 20px;
                right: 20px;
                height: 52px;
                min-width: 52px;
            }

            .fixed-call-btn__icon {
                flex: 0 0 52px;
                width: 52px;
                height: 52px;
                font-size: 1.2rem;
            }

            .fixed-call-btn__label {
                font-size: 0.88rem;
            }

            .fixed-call-btn.is-open .fixed-call-btn__label,
            .fixed-call-btn:hover .fixed-call-btn__label,
            .fixed-call-btn:focus-visible .fixed-call-btn__label {
                padding-right: 1.25rem;
            }
        }
        @media (max-width: 1200px) {
            .section {
                max-width: none;
            }
        }

        @media (max-width: 992px) {
            .section {
                max-width: none;
            }
            
            .hero-quote {
                max-width: 500px;
            }
        }
   @keyframes fadeInOrganic {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 0.9;
        transform: scale(1);
    }
}

.hero-photo {
    animation: fadeInOrganic 1.2s ease 0.5s both;
}

/* Hero Content Wrapper für bessere Kontrolle */
.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}
    
/* === Enterprise Additions ======================================== */
/* Collapsible Menu Categories (Accordion) */
.menu-category {
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.05);
}
.menu-category h3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.menu-category h3.menu-toggle {
    cursor: pointer;
    user-select: none;
    position: relative;
    padding-right: 2.25rem; /* space for chevron */
}
.menu-category h3.menu-toggle::after {
    content: "\f078"; /* fa-chevron-down */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.25s ease;
    opacity: .8;
}
.menu-category.open h3.menu-toggle::after {
    transform: translateY(-50%) rotate(180deg);
}
/* Inner wrapper for smooth open/close */
.menu-items {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s ease;
}
.menu-category.open .menu-items {
    max-height: 2000px; /* large enough for content */
}

/* Hinweis unter der Ueberschrift der Speisekarte. Die Legende liegt in einer
   zugeklappten Karte am Ende - dieser Satz macht sie vorher auffindbar. */
.menu-allergy-hint {
    max-width: 46rem;
    margin: -1rem auto 0;
    color: var(--text-light);
    font-size: 0.88rem;
    line-height: 1.65;
    text-align: center;
}

/* Allergen- und Zusatzstoff-Kennzeichnung hinter dem Gerichtnamen. */
.menu-allergens {
    display: inline-block;
    margin-left: 0.4rem;
    padding: 0.1rem 0.4rem;
    border: 1px solid rgba(65, 90, 120, 0.16);
    border-radius: 0.3rem;
    background: rgba(65, 90, 120, 0.07);
    color: var(--dark-blue-text);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    white-space: nowrap;
    vertical-align: 0.12em;
}

/* Hinweiszeilen innerhalb einer Kategorie. Sie tragen bewusst zusaetzlich
   die Klasse menu-item, damit site.js sie mit in den aufklappbaren
   Bereich einsortiert - sonst blieben sie bei zugeklappter Karte sichtbar. */
.menu-item--note {
    display: block;
    margin-bottom: 1.25rem;
    padding-bottom: 0;
    border-bottom: 0;
}

.menu-item--note p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.85rem;
    font-style: italic;
    line-height: 1.6;
}

/* === Legende: Allergene & Zusatzstoffe ==========================
   Bewusst keine Kachel im Raster, sondern eine zurueckhaltende Zeile
   unter der Karte. Geoeffnet nimmt sie die Anmutung der Karten an. */
.legend {
    max-width: 900px;
    margin: 2.75rem auto 0;
}

.legend__toggle {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    width: 100%;
    padding: 0.5rem 0;
    border: 0;
    background: transparent;
    color: var(--text-light);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 0.25s ease;
}

/* Feine Linien links und rechts statt eines Rahmens. */
.legend__toggle::before,
.legend__toggle::after {
    content: "";
    flex: 1 1 auto;
    height: 1px;
    background: rgba(65, 90, 120, 0.18);
    transition: background-color 0.25s ease;
}

.legend__label {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}

.legend__chevron {
    width: 15px;
    height: 15px;
    flex: 0 0 auto;
    transition: transform 0.32s cubic-bezier(0.22, 0.8, 0.25, 1);
}

.legend__toggle:hover,
.legend__toggle:focus-visible {
    color: var(--dark-blue-text);
    outline: none;
}

.legend__toggle:hover::before,
.legend__toggle:hover::after,
.legend__toggle:focus-visible::before,
.legend__toggle:focus-visible::after {
    background: rgba(184, 150, 96, 0.55);
}

.legend__toggle:focus-visible .legend__label {
    outline: 2px solid var(--dark-blue-text);
    outline-offset: 4px;
    border-radius: 2px;
}

.legend.is-open .legend__chevron {
    transform: rotate(180deg);
}

/* Geoeffnet: gleiche Kartenanmutung wie die Kategorien, nur in warmem Papierton. */
.legend__panel {
    overflow: hidden;
    max-height: 0;
    visibility: hidden;
    transition: max-height 0.4s ease, visibility 0.4s;
}

.legend.is-open .legend__panel {
    max-height: 2400px;
    visibility: visible;
}

.legend__inner {
    margin-top: 1.4rem;
    padding: 1.9rem clamp(1.25rem, 3vw, 2.25rem);
    border: 1px solid rgba(184, 150, 96, 0.3);
    border-radius: 12px;
    background-color: #faf6ee;
    text-align: left;
}

.legend__intro,
.legend__note {
    margin: 0;
    color: var(--text-light);
    font-size: 0.86rem;
    font-style: italic;
    line-height: 1.65;
}

.legend__note {
    margin-top: 1.6rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(184, 150, 96, 0.32);
}

.legend__title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 1.8rem 0 0.85rem;
    color: var(--dark-blue-text);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.legend__title::after {
    content: "";
    flex: 1 1 auto;
    height: 1px;
    background: rgba(184, 150, 96, 0.4);
}

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

.legend__list li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(184, 150, 96, 0.22);
}

.legend__list li:last-child {
    border-bottom: 0;
}

.legend__key {
    flex: 0 0 1.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 1.75rem;
    border: 1px solid rgba(65, 90, 120, 0.18);
    border-radius: 0.35rem;
    background: rgba(255, 255, 255, 0.9);
    color: var(--dark-blue-text);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1;
}

.legend__text {
    flex: 1 1 auto;
    padding-top: 0.28rem;
    color: var(--text-color);
    font-size: 0.85rem;
    line-height: 1.55;
}

/* Ab dieser Breite passt die Allergenliste in zwei Spalten. */
@media (min-width: 720px) {
    .legend__list--two {
        columns: 2;
        column-gap: 2.6rem;
    }

    .legend__list--two li {
        break-inside: avoid;
        -webkit-column-break-inside: avoid;
    }
}

/* Gallery performance */
.gallery-item {
    will-change: transform;
}

/* Performance: render heavy sections lazily */
.menu, .gallery {
    content-visibility: auto;
    contain-intrinsic-size: 800px;
}

/* Google Map responsive frame */
.map-wrapper { margin-top: 2rem; }
.map-frame {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    background: #e9eef3;
}
.map-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
/* ================================================================ */

/* Quove Creativ badge (footer) - Aufkleber mit umgeknickter Ecke rechts oben */

/* Registriert, damit sich der Knick beim Hover weich aufstellt.
   Browser ohne @property springen einfach auf den neuen Wert. */
@property --qc-fold {
    syntax: "<length>";
    inherits: false;
    initial-value: 16px;
}

.qc-powered {
    margin-top: 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}
/* Kleine kursive Zeile unter dem Aufkleber */
.qc-updated {
    display: block;
    width: min(100%, 230px);
    margin-top: 0.45rem;
    padding-bottom: 0.7rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.68rem;
    font-style: italic;
    letter-spacing: 0.2px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.55);
    text-align: center;
}
.qc-badge {
    --qc-fold: 16px;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.75rem;
    color: #2d373e;
    background: #f8f7f2;
    border: 1px solid rgba(255,255,255,0.42);
    padding: 0.5rem 1.05rem 0.5rem 0.62rem;
    border-radius: 0.55rem;
    text-decoration: none;
    /* Die Ecke rechts oben ist diagonal weggeschnitten - dort sitzt der Knick. */
    clip-path: polygon(0 0, calc(100% - var(--qc-fold)) 0, 100% var(--qc-fold), 100% 100%, 0 100%);
    /* Schlagschatten als filter, weil clip-path einen box-shadow mit wegschneiden wuerde. */
    box-shadow: 0 1px 0 rgba(255,255,255,0.7) inset;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.22));
    transform: rotate(-1.5deg);
    transition: transform .2s ease, filter .2s ease, --qc-fold .25s ease;
}
/* Die umgeschlagene Ecke: die Rueckseite des Aufklebers. */
.qc-badge::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: var(--qc-fold);
    height: var(--qc-fold);
    /* Rueckseite des Papiers - eine Stufe dunkler, ohne Verlauf. */
    background: #e3dfd1;
    clip-path: polygon(0 0, 100% 100%, 0 100%);
    /* Wirft einen kurzen Schatten auf die Aufkleberflaeche darunter. */
    filter: drop-shadow(-2px 2px 3px rgba(45, 55, 62, 0.26));
    transition: width .25s ease, height .25s ease;
}
.qc-badge:visited,
.qc-badge:hover,
.qc-badge:focus-visible,
.qc-badge:active { color: #2d373e; }
.qc-badge:hover,
.qc-badge:focus-visible {
    --qc-fold: 22px;
    transform: translateY(-2px) rotate(0deg);
    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.28));
}
.qc-badge:focus-visible { outline: 2px solid #f8f7f2; outline-offset: 3px; }
.qc-logo { display: block; width: 1.8rem; height: 1.8rem; flex: 0 0 auto; }
.qc-copy {
    background: linear-gradient(105deg, #2d373e 37%, #79838a 48%, #f6f4ea 50%, #79838a 52%, #2d373e 63%);
    background-size: 260% 100%;
    background-position: 130% 0;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: qc-shimmer 5s ease-in-out infinite;
}
.qc-badge strong { font-family: inherit; font-weight: 700; letter-spacing: .2px; }
@keyframes qc-shimmer { 0%, 55% { background-position: 130% 0; } 100% { background-position: -35% 0; } }
@media (prefers-reduced-motion: reduce) { .qc-copy { animation: none; } }

html.a11y-text-1 { font-size: 110%; }
html.a11y-text-2 { font-size: 120%; }
html.a11y-high-contrast {
    --dark-blue-text: #111820;
    --text-light: #263640;
    --primary-color: #14232c;
    --background-color: #dce4e8;
}
html.a11y-high-contrast body {
    color: #111820;
    text-rendering: optimizeLegibility;
}
html.a11y-high-contrast .content-text,
html.a11y-high-contrast .about-text,
html.a11y-high-contrast .menu-item-info p {
    color: #18242c;
}
html.a11y-high-contrast .main-content,
html.a11y-high-contrast .menu-category,
html.a11y-high-contrast .contact-info,
html.a11y-high-contrast .opening-hours {
    border-color: #263640;
}
html.a11y-highlight-links a:not(.lp-brand):not(.lp-skip) {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 0.22em;
}
html.a11y-reduce-motion *,
html.a11y-reduce-motion *::before,
html.a11y-reduce-motion *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
}

/* Dezente Bewegungen – bewusst langsam und zurückhaltend für eine hochwertige Wirkung. */
@media (prefers-reduced-motion: no-preference) {
    .hero-logo,
    .hero-content > .decorative-line,
    .hero-quote,
    .hero-content > .cta-button {
        animation: hero-reveal 850ms cubic-bezier(.22, .8, .25, 1) both;
    }
    .hero-content > .decorative-line { animation-delay: 120ms; }
    .hero-quote { animation-delay: 210ms; }
    .hero-content > .cta-button { animation-delay: 310ms; }

    html.motion-ready .reveal {
        opacity: 0;
        transform: translateY(22px);
        transition: opacity 700ms cubic-bezier(.22, .8, .25, 1), transform 700ms cubic-bezier(.22, .8, .25, 1);
    }
    html.motion-ready .reveal.is-visible {
        opacity: 1;
        transform: translateY(0);
    }
    html.motion-ready .reveal--delay-1 { transition-delay: 90ms; }
    html.motion-ready .reveal--delay-2 { transition-delay: 180ms; }

    .menu-category,
    .contact-info,
    .opening-hours {
        border: 1px solid rgba(65, 90, 120, 0.08);
        box-shadow: 0 8px 24px rgba(45, 55, 62, 0.045);
        transition: transform 350ms cubic-bezier(.22, .8, .25, 1), box-shadow 350ms ease, border-color 350ms ease;
    }
    .menu-category:hover,
    .contact-info:hover,
    .opening-hours:hover {
        transform: translateY(-5px);
        border-color: rgba(65, 90, 120, 0.18);
        box-shadow: 0 18px 34px rgba(45, 55, 62, 0.10);
    }
    .gallery-item {
        box-shadow: 0 10px 24px rgba(45, 55, 62, 0.10);
        transition: transform 500ms cubic-bezier(.22, .8, .25, 1), box-shadow 500ms ease;
    }
    .gallery-item:hover {
        transform: translateY(-5px) scale(1.02);
        box-shadow: 0 20px 38px rgba(45, 55, 62, 0.18);
    }
}
@keyframes hero-reveal {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Über uns und Galerie: neutrale, transparente Graukörnung. */
.about,
.gallery {
    position: relative;
    isolation: isolate;
    background-color: var(--light-gray);
}
.about::before,
.gallery::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.17;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.38' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 220px 220px;
    mix-blend-mode: normal;
    pointer-events: none;
}
.about > .section-content,
.gallery > .section-content { position: relative; z-index: 1; }
.about-content {
    position: relative;
    max-width: 880px;
    padding: clamp(2rem, 5vw, 4rem);
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(65, 90, 120, 0.10);
    border-radius: 0.35rem;
    box-shadow: 0 18px 48px rgba(45, 55, 62, 0.07);
}
.about-content::before,
.about-content::after {
    content: '';
    position: absolute;
    width: 2.75rem;
    height: 2.75rem;
    border-color: var(--green-accent);
    opacity: 0.75;
}
.about-content::before { top: 0.85rem; left: 0.85rem; border-top: 1px solid; border-left: 1px solid; }
.about-content::after { right: 0.85rem; bottom: 0.85rem; border-right: 1px solid; border-bottom: 1px solid; }
.about-text {
    position: relative;
    margin: 0 0 1.25rem 0;
    padding-left: 0;
    text-align: left;
    line-height: 1.85;
    border-left: 0;
}
.about-text--lead {
    margin: 2.25rem auto 2.5rem;
    max-width: 650px;
    padding: 0;
    text-align: center;
    color: var(--dark-blue-text);
    font-size: 1.24rem;
    font-style: italic;
    line-height: 1.65;
    border: 0;
}
.about-text--lead::before { display: none; }
.about-text:last-child { margin-bottom: 0; }
@media (max-width: 600px) {
    .about-content { padding: 2.5rem 1.6rem; }
    .about-text { padding-left: 0; }
    .about-text--lead { font-size: 1.12rem; }
}

/* Galerie: ruhige, redaktionelle Bildstrecke mit Café-Charakter. */
.gallery-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-rows: 8.5rem;
    gap: 1.15rem;
    max-width: 1120px;
    margin: 3.5rem auto 0;
}
.gallery-item {
    height: auto;
    min-height: 0;
    border: 5px solid rgba(255, 255, 255, 0.78);
    border-radius: 0.45rem;
    box-shadow: 0 12px 30px rgba(45, 55, 62, 0.12);
    isolation: isolate;
    align-items: flex-end;
    justify-content: flex-start;
    transition: box-shadow 450ms ease, transform 450ms cubic-bezier(.22, .8, .25, 1);
}
.gallery-item:nth-child(1) { grid-column: span 7; grid-row: span 3; }
.gallery-item:nth-child(2) { grid-column: span 5; grid-row: span 3; }
.gallery-item:nth-child(3),
.gallery-item:nth-child(4),
.gallery-item:nth-child(5) { grid-column: span 4; grid-row: span 2; }
.gallery-item:nth-child(6) { grid-column: span 12; grid-row: span 2; }
.gallery-item::before {
    background: linear-gradient(180deg, rgba(15, 24, 29, 0.02) 42%, rgba(15, 24, 29, 0.48) 100%);
    transition: opacity 450ms ease;
}
.gallery-item picture,
.gallery-item img { transition: transform 700ms cubic-bezier(.22, .8, .25, 1); }
.gallery-item span {
    margin: 0 0 1rem 1rem;
    padding: 0.38rem 0.62rem;
    color: #2d373e;
    background: rgba(250, 249, 246, 0.94);
    border-radius: 0.2rem;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.12);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.68rem;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-shadow: none;
    text-transform: uppercase;
}
.gallery-item::after {
    content: '© Sarah Jane Photography';
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    z-index: 2;
    padding: 0.14rem 0.22rem;
    color: rgba(255, 255, 255, 0.65);
    background: rgba(20, 29, 34, 0.12);
    border-radius: 0.1rem;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.4rem;
    font-weight: 500;
    letter-spacing: 0.025em;
    line-height: 1;
    pointer-events: none;
}
.gallery-item:hover { transform: none; }
@media (prefers-reduced-motion: no-preference) {
    .gallery-item:hover,
    html.motion-ready .gallery-item.reveal.is-visible:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(45, 55, 62, 0.18); }
    .gallery-item:hover img { transform: scale(1.045); }
    .gallery-item:hover::before {
        opacity: 0.78;
        background: linear-gradient(180deg, rgba(15, 24, 29, 0.02) 42%, rgba(15, 24, 29, 0.48) 100%);
    }
}
@media (max-width: 768px) {
    .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: auto; gap: 1rem; }
    .gallery-item,
    .gallery-item:nth-child(n) { grid-column: auto; grid-row: auto; height: auto; min-height: 0; aspect-ratio: 4 / 3; }
}

/* Hero: großformatige Bildbühne unter der Wortmarke. */
.hero {
    min-height: 720px;
    height: 100svh;
    justify-content: flex-start;
    padding-top: clamp(8rem, 14vh, 10.5rem);
    background: #b7c5d1;
}
.hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: min(100%, 860px);
    margin: 0 auto;
}
.hero-logo {
    max-width: 980px;
    margin-bottom: 0.75rem;
    color: #2d373e;
    font-size: clamp(2.3rem, 4.6vw, 4.2rem);
    letter-spacing: -0.025em;
    text-shadow: none;
}
.france-italic { color: var(--dark-blue-text); }
.hero-quote {
    margin-bottom: 1.75rem;
    color: rgba(45, 55, 62, 0.82);
    font-size: clamp(1.05rem, 1.8vw, 1.35rem);
}
.hero-photo {
    top: auto;
    right: auto;
    bottom: 0;
    left: 50%;
    width: min(82vw, 1100px);
    height: clamp(300px, 43vh, 480px);
    --hero-photo-w: auto;
    clip-path: none;
    border: 7px solid rgba(248, 249, 250, 0.9);
    border-bottom: 0;
    border-radius: 1rem 1rem 0 0;
    box-shadow: 0 -8px 32px rgba(45, 55, 62, 0.12), 0 20px 42px rgba(45, 55, 62, 0.22);
    opacity: 1;
    transform: translateX(-50%);
    isolation: isolate;
}
.hero-photo::before {
    content: '';
    position: absolute;
    inset: 0.55rem 0.55rem 0;
    z-index: 2;
    border: 1px dashed rgba(232, 220, 198, 0.72);
    border-bottom: 0;
    border-radius: 0.55rem 0.55rem 0 0;
    pointer-events: none;
}
.hero-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(20, 29, 34, 0.03) 40%, rgba(20, 29, 34, 0.28) 100%);
    pointer-events: none;
}
.hero-photo picture { position: relative; z-index: 0; }
.hero-photo-frame { display: none; }
.hero-photo:hover { opacity: 1; transform: translateX(-50%) scale(1.01); }
@media (max-width: 768px) {
    .hero {
        min-height: 640px;
        padding: 7rem 1.25rem 0;
    }
    .hero-logo { font-size: clamp(2.15rem, 10vw, 3rem); line-height: 1.15; }
    .hero-quote { margin-bottom: 1.25rem; }
    .hero-photo {
        width: calc(100% - 2.5rem);
        height: clamp(215px, 34svh, 310px);
        border-width: 5px;
        border-radius: 0.7rem 0.7rem 0 0;
    }
    .hero-photo::before { inset: 0.38rem 0.38rem 0; border-radius: 0.38rem 0.38rem 0 0; }
}


/* Finale Hero-Variante: vollflächiger, klassischer Banner statt Bildkarte. */
.hero {
    min-height: 680px;
    justify-content: center;
    padding: 7.5rem 2rem 3rem;
    background: #2d373e;
}
.hero-photo {
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    transform: none;
}
.hero-photo::before {
    inset: 1.1rem;
    border: 1px dashed rgba(248, 249, 250, 0.38);
    border-radius: 0.55rem;
}
.hero-photo::after {
    background:
        linear-gradient(0deg, rgba(112, 78, 52, 0.18), rgba(112, 78, 52, 0.18)),
        linear-gradient(90deg, rgba(27, 24, 22, 0.82) 0%, rgba(38, 31, 27, 0.58) 42%, rgba(55, 40, 30, 0.12) 76%, rgba(35, 28, 24, 0.25) 100%);
}
.hero-photo img { filter: saturate(0.9) sepia(0.08) contrast(1.025) brightness(0.97); }
.hero-content {
    align-items: flex-start;
    width: min(100%, 650px);
    margin: 0 auto 0 max(2rem, calc((100vw - 1200px) / 2 + 2rem));
    text-align: left;
}
.hero-logo {
    margin-bottom: 0.85rem;
    color: var(--white-color);
    text-align: left;
    text-shadow: 0 3px 22px rgba(0, 0, 0, 0.22);
}
/* "Frankreich" eine Spur feiner als der Rest der Zeile.
   Palatino liegt auf Windows und macOS vor und hat deutlich duennere
   Striche als Georgia; Georgia bleibt als Rueckfallebene stehen. */
.france-italic {
    color: #f3e7ce;
    position: relative;
    display: inline-block;
    font-family: Baskerville, "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
    font-style: italic;
    font-weight: 400;
    font-size: 1.045em;
    letter-spacing: 0.012em;
    line-height: 0.93;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.24);
}
.france-italic::after {
    content: "";
    position: absolute;
    left: 14%;
    right: 16%;
    bottom: -0.12em;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(243, 231, 206, 0.72), transparent);
}
.hero-heading-icon {
    position: relative;
    display: inline-flex;
    width: 1.38em;
    height: 0.76em;
    margin: 0 0.12em;
    vertical-align: middle;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255, 255, 255, 0.92);
    border-radius: 999px;
    color: #26343c;
    background: #d8c9b5;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
    transform: translateY(-0.04em);
}
.hero-heading-icon::after {
    content: none;
}
.hero-heading-icon i {
    position: relative;
    z-index: 1;
    font-size: 0.42em;
}
.hero-france-map {
    position: relative;
    z-index: 1;
    display: block;
    width: 0.5em;
    height: 0.5em;
    object-fit: contain;
}
.hero-heading-icon--fleur {
    width: 1.38em;
    height: 0.76em;
    margin: 0 0.12em;
    vertical-align: middle;
    background: #cfc0ac;
}
.hero-flourish {
    position: relative;
    z-index: 1;
    display: block;
    width: 0.5em;
    height: 0.5em;
    object-fit: contain;
}
@media (max-width: 768px) {
    .hero-heading-icon {
        margin-inline: 0.1em;
        border-width: 2px;
    }
}
.hero-quote {
    color: rgba(255, 255, 255, 0.86);
    text-align: left;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
}
.hero-content > .decorative-line { margin: 1.35rem 0; }
.hero-photo:hover { transform: scale(1.01); }
@media (max-width: 768px) {
    .hero {
        min-height: 650px;
        padding: 6.5rem 1.35rem 2.5rem;
        overflow: hidden;
    }
    .hero-content {
        align-items: center;
        width: 100%;
        margin: 0 auto;
        text-align: center;
    }
    .hero-logo,
    .hero-quote { text-align: center; }
    .hero-content > .decorative-line { margin: 1.35rem auto; }
    .hero-photo::before { inset: 0.7rem; border-radius: 0.35rem; }
    .hero-photo::after {
        background:
            linear-gradient(0deg, rgba(112, 78, 52, 0.2), rgba(112, 78, 52, 0.2)),
            linear-gradient(180deg, rgba(31, 27, 24, 0.32) 0%, rgba(35, 28, 24, 0.74) 100%);
    }
    .hero-photo {
        inset: -1px;
        width: calc(100% + 2px);
        height: calc(100% + 2px);
    }
}

/* Reservierungs-FAB: ausschließlich mobil, mit weichem Ausgleiten beim Hochscrollen. */
@media (max-width: 768px) {
    .fixed-call-btn {
        transform: translate3d(0, 1.4rem, 0) scale(0.9);
        filter: blur(2px);
        transition:
            opacity 0.32s ease,
            transform 0.52s cubic-bezier(0.22, 0.61, 0.36, 1),
            filter 0.32s ease,
            visibility 0s linear 0.52s,
            background-color 0.4s ease,
            box-shadow 0.4s ease;
    }
    .fixed-call-btn.scroll-visible {
        filter: blur(0);
        transform: translate3d(0, 0, 0) scale(1);
        transition-delay: 0s;
    }
}
@media (min-width: 769px) {
    .fixed-call-btn { display: none !important; }
}


/* ==================================================================
   Hero-Textbuehne - ruhig, franzoesisch, wenige Elemente mit viel Luft.
   Steht bewusst am Dateiende und ueberschreibt die frueheren Varianten.
   ================================================================== */

.hero {
    isolation: isolate;
    padding-bottom: clamp(5rem, 10vh, 7rem);
}

/* Feine Koernung ueber dem Foto - dieselbe Bildsprache wie "Ueber uns". */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.1;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.38' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 220px 220px;
}

.hero-content {
    width: min(100%, 640px);
    gap: 0;
}

/* Warmer Lichtschein hinter der Typo - loest den Text vom Foto, ohne Kasten. */
.hero-content::before {
    content: '';
    position: absolute;
    inset: -18% -28% -22% -34%;
    z-index: -1;
    pointer-events: none;
    background: radial-gradient(56% 58% at 30% 46%,
        rgba(243, 231, 206, 0.16) 0%,
        rgba(243, 231, 206, 0.06) 46%,
        rgba(243, 231, 206, 0) 76%);
}

/* --- Wortmarke ---------------------------------------------------- */
.hero-logo {
    margin-bottom: 0;
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    line-height: 1.06;
    letter-spacing: -0.03em;
}

/* --- Trikolore-Strich mit auslaufender Haarlinie ------------------- */
.hero-content > .decorative-line {
    position: relative;
    width: 72px;
    height: 2px;
    margin: 1.65rem 0 1.5rem;
    border-radius: 999px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.24);
}
.hero-content > .decorative-line::after {
    content: '';
    position: absolute;
    top: 50%;
    left: calc(100% + 0.9rem);
    width: 190px;
    height: 1px;
    background: linear-gradient(90deg, rgba(243, 231, 206, 0.5), rgba(243, 231, 206, 0));
}

/* --- Zitat und Uebersetzung --------------------------------------- */
.hero-quote {
    max-width: 30ch;
    margin: 0 0 0.6rem;
    padding-left: 0;
    font-size: clamp(1.15rem, 2vw, 1.55rem);
    line-height: 1.45;
    letter-spacing: 0.005em;
    color: rgba(255, 255, 255, 0.93);
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.26);
}
.hero-quote::before { content: none; }

.hero-quote-de {
    max-width: 34ch;
    margin: 0 0 2.35rem;
    font-family: Georgia, serif;
    font-style: italic;
    font-size: clamp(0.82rem, 1.15vw, 0.95rem);
    line-height: 1.5;
    color: rgba(243, 231, 206, 0.62);
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.28);
}

/* --- Signatur-Zeile ----------------------------------------------- */
.hero-signature {
    position: relative;
    margin: 2.5rem 0 0;
    padding-top: 1.15rem;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.73rem;
    letter-spacing: 0.19em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.58);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}
.hero-signature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: min(100%, 320px);
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
}
.hero-signature__sep {
    display: inline-block;
    width: 4px;
    height: 4px;
    margin: 0 0.85rem;
    border-radius: 50%;
    background: rgba(243, 231, 206, 0.55);
    vertical-align: 0.18em;
}

/* --- Scroll-Hinweis ------------------------------------------------ */
.hero > .hero-scroll {
    position: absolute;
    left: 50%;
    bottom: clamp(1.1rem, 3.2vh, 2.2rem);
    z-index: 3;
    transform: translateX(-50%);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}
.hero > .hero-scroll:hover,
.hero > .hero-scroll:focus-visible { color: rgba(255, 255, 255, 0.9); }
.hero-scroll__line {
    position: relative;
    width: 1px;
    height: 46px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.18);
}
.hero-scroll__label { padding-left: 0.34em; }

@media (prefers-reduced-motion: no-preference) {
    .hero-scroll__line::after {
        content: '';
        position: absolute;
        inset: 0 0 auto 0;
        height: 42%;
        background: linear-gradient(180deg, rgba(243, 231, 206, 0), rgba(243, 231, 206, 0.95));
        animation: hero-scroll-travel 2.6s cubic-bezier(0.65, 0, 0.35, 1) infinite;
    }

    /* Gestaffeltes, ruhiges Aufziehen der Hero-Zeilen */
    .hero-quote-de,
    .hero-signature,
    .hero > .hero-scroll {
        animation: hero-reveal 850ms cubic-bezier(0.22, 0.8, 0.25, 1) both;
    }
    .hero-content > .decorative-line { animation-delay: 150ms; }
    .hero-quote { animation-delay: 260ms; }
    .hero-quote-de { animation-delay: 350ms; }
    .hero-content > .cta-button { animation-delay: 450ms; }
    .hero-signature { animation-delay: 560ms; }
    .hero > .hero-scroll { animation-delay: 780ms; }
}

@keyframes hero-scroll-travel {
    0% { transform: translateY(-110%); }
    100% { transform: translateY(260%); }
}

@media (max-width: 768px) {
    .hero { padding-bottom: 3.25rem; }
    .hero-content {
        width: 100%;
        max-width: 100%;
    }
    .hero-content::before { inset: -14% -8%; }
    .hero-logo {
        max-width: 100%;
        font-size: clamp(1.8rem, 9.1vw, 3rem);
        line-height: 1.12;
    }
    .hero-content > .decorative-line { margin: 1.45rem 0 1.35rem; }
    .hero-content > .decorative-line::after { display: none; }
    .hero-quote {
        max-width: 28ch;
        margin: 0 0 0.55rem;
    }
    .hero-quote-de {
        max-width: 32ch;
        margin: 0 auto 2rem;
        text-align: center;
    }
    .hero-signature {
        margin-top: 2.1rem;
        padding-top: 1.05rem;
        font-size: 0.66rem;
        letter-spacing: 0.15em;
        text-align: center;
    }
    .hero-signature::before {
        left: 50%;
        width: min(100%, 220px);
        transform: translateX(-50%);
        background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0));
    }
    .hero-signature__sep { margin: 0 0.65rem; }
    .hero > .hero-scroll { display: none; }
}

/* ==================================================================
   Hero Art Direction 2026 – Editorial Café, warm und räumlich
   ================================================================== */
.hero {
    min-height: clamp(740px, 94svh, 940px);
    padding: clamp(8.5rem, 14vh, 11rem) 2rem clamp(5.5rem, 9vh, 7rem);
    overflow: hidden;
    background: #251f1b;
}
.hero-photo::before {
    inset: 1rem;
    border: 1px solid rgba(243, 231, 206, 0.34);
    border-radius: 1.1rem;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}
.hero-photo::after {
    background:
        radial-gradient(circle at 76% 42%, rgba(163, 119, 78, 0.1), transparent 30%),
        linear-gradient(90deg, rgba(26, 22, 20, 0.88) 0%, rgba(38, 29, 24, 0.67) 39%, rgba(75, 51, 34, 0.22) 70%, rgba(37, 28, 23, 0.38) 100%),
        linear-gradient(0deg, rgba(119, 82, 53, 0.2), rgba(119, 82, 53, 0.2));
}
.hero-photo img {
    filter: saturate(0.84) sepia(0.14) contrast(1.05) brightness(0.92);
    transform: scale(1.015);
}
.hero-content {
    position: relative;
    z-index: 3;
    width: min(100%, 720px);
    margin-left: max(2rem, calc((100vw - 1200px) / 2 + 2rem));
}
.hero-content::before {
    inset: -22% -30% -26% -30%;
    background: radial-gradient(58% 62% at 28% 48%, rgba(32, 25, 21, 0.42), rgba(32, 25, 21, 0) 76%);
}
.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.72rem;
    margin: 0 0 1.55rem;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
}
.hero-kicker::before {
    content: "";
    width: 34px;
    height: 1px;
    background: #d2b183;
}
.hero-kicker span { color: #e1c49b; }
.hero-logo {
    max-width: 760px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3.4rem, 6.35vw, 6.15rem);
    font-weight: 400;
    line-height: 0.94;
    letter-spacing: -0.055em;
    text-wrap: balance;
}
.france-italic {
    margin-left: 0.18em;
    color: #eedcc0;
    font-size: 1.08em;
    font-weight: 400;
    letter-spacing: -0.02em;
}
.france-italic::after {
    left: 6%;
    right: 8%;
    bottom: -0.06em;
    opacity: 0.7;
}
.hero-content > .decorative-line {
    width: 86px;
    margin: 2.05rem 0 1.8rem;
    box-shadow: 0 3px 16px rgba(0, 0, 0, 0.24);
}
.hero-content > .decorative-line::after { width: clamp(120px, 18vw, 250px); }
.hero-quote {
    font-family: Baskerville, "Palatino Linotype", Georgia, serif;
    font-size: clamp(1.2rem, 1.8vw, 1.55rem);
    line-height: 1.55;
    letter-spacing: 0.015em;
    margin-bottom: 1.75rem;
}
.hero-quote-de { margin-bottom: 1.8rem; }
.hero-content > .cta-button {
    display: inline-flex;
    margin-top: 0.5rem;
    min-width: 235px;
    min-height: 54px;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 0.85rem 0.9rem 0.85rem 1.35rem;
    border: 1px solid rgba(243, 231, 206, 0.62);
    border-radius: 0.75rem;
    color: #28221e;
    background: rgba(243, 231, 206, 0.94);
    box-shadow: 0 14px 34px rgba(15, 12, 10, 0.22);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 0.98rem;
    font-weight: 600;
    letter-spacing: 0.025em;
}
.hero-content > .cta-button span {
    display: inline-grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: 0.48rem;
    color: #f7eee2;
    background: #5d4434;
    transition: transform 0.35s cubic-bezier(0.22, 0.8, 0.25, 1), background 0.3s ease;
}
.hero-content > .cta-button::after { content: none; }
.hero-content > .cta-button:hover,
.hero-content > .cta-button:focus-visible {
    color: #171310;
    background: #fff8ee;
    border-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}
.hero-content > .cta-button:hover span,
.hero-content > .cta-button:focus-visible span {
    background: #453225;
    transform: rotate(8deg);
}
.hero-signature { margin-top: 2rem; }

/* Eigenständige Signets statt Icons innerhalb der Überschrift. */
.hero-emblems {
    position: absolute;
    top: 50%;
    right: max(2rem, calc((100vw - 1240px) / 2 + 1rem));
    z-index: 3;
    width: 260px;
    height: 230px;
    transform: translateY(-44%);
    pointer-events: none;
}
.hero-emblem {
    position: absolute;
    display: flex;
    height: 92px;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1.2rem;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 999px;
    color: #fffaf3;
    background: rgba(102, 73, 52, 0.82);
    box-shadow: 0 18px 42px rgba(16, 12, 10, 0.28);
    backdrop-filter: blur(14px);
}
.hero-emblem img {
    width: 52px;
    height: 52px;
    object-fit: contain;
}
.hero-emblem span {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1rem;
    font-style: italic;
    letter-spacing: 0.04em;
    white-space: nowrap;
}
.hero-emblem--france {
    top: 0;
    right: 0;
    width: 208px;
    transform: rotate(3deg);
}
.hero-emblem--local {
    right: 40px;
    bottom: 0;
    width: 232px;
    background: rgba(46, 54, 58, 0.84);
    transform: rotate(-3deg);
}
.hero-emblems::before {
    content: "";
    position: absolute;
    top: 82px;
    right: 95px;
    width: 1px;
    height: 72px;
    background: linear-gradient(rgba(243, 231, 206, 0.55), rgba(243, 231, 206, 0));
    transform: rotate(18deg);
}

@media (prefers-reduced-motion: no-preference) {
    .hero-photo img { animation: hero-image-breathe 18s ease-in-out infinite alternate; }
    .hero-emblem--france { animation: hero-emblem-one 7s ease-in-out infinite; }
    .hero-emblem--local { animation: hero-emblem-two 8s ease-in-out infinite; }
    .hero-kicker { animation: hero-reveal 750ms 80ms cubic-bezier(0.22, 0.8, 0.25, 1) both; }
}
@keyframes hero-image-breathe {
    from { transform: scale(1.015); }
    to { transform: scale(1.055); }
}
@keyframes hero-emblem-one {
    0%, 100% { transform: rotate(3deg) translateY(0); }
    50% { transform: rotate(1.5deg) translateY(-7px); }
}
@keyframes hero-emblem-two {
    0%, 100% { transform: rotate(-3deg) translateY(0); }
    50% { transform: rotate(-1deg) translateY(6px); }
}

@media (min-width: 769px) and (max-width: 1120px) {
    .hero-content { width: min(100%, 590px); margin-left: 1.75rem; }
    .hero-logo { font-size: clamp(3.1rem, 6vw, 4.35rem); }
    .hero-emblems { right: 1.4rem; transform: translateY(-42%) scale(0.82); transform-origin: right center; }
}

@media (max-width: 768px) {
    .hero {
        min-height: 700px;
        padding: 7.75rem 1.15rem 4.5rem;
    }
    .hero-photo::before { inset: 0.65rem; border-radius: 0.8rem; }
    .hero-photo::after {
        background:
            linear-gradient(0deg, rgba(108, 73, 48, 0.22), rgba(108, 73, 48, 0.16)),
            linear-gradient(180deg, rgba(27, 24, 22, 0.36) 0%, rgba(34, 27, 23, 0.73) 60%, rgba(26, 22, 19, 0.86) 100%);
    }
    .hero-content {
        width: 100%;
        margin: 0;
        align-items: flex-start;
        text-align: left;
    }
    .hero-kicker {
        margin-bottom: 1.15rem;
        font-size: 0.59rem;
        letter-spacing: 0.2em;
    }
    .hero-kicker::before { width: 22px; }
    .hero-logo {
        /* Keine ch-Begrenzung: sie war schmaler als "Frankreich in" und hat
           das "in" in eine eigene Zeile gedrueckt. Die Umbrueche steuern
           die <br> im Markup. */
        max-width: 100%;
        font-size: clamp(2.35rem, 10.5vw, 3.7rem);
        line-height: 1.02;
        letter-spacing: -0.045em;
        text-align: left;
    }
    .france-italic { margin-left: 0; }
    .hero-content > .decorative-line { margin: 1.65rem 0 1.45rem; }
    .hero-quote {
        margin-left: 0;
        margin-right: 0;
        /* Deutlicher Abstand nach unten: der Knopf steht als eigene
           Handlung fuer sich, nicht direkt am Zitat geklebt. */
        margin-bottom: 2.6rem;
        font-size: clamp(1.05rem, 4.8vw, 1.3rem);
        text-align: left;
    }
    .hero-content > .cta-button { min-width: min(100%, 245px); }
    .hero-signature {
        max-width: 30ch;
        margin-top: 1.65rem;
        line-height: 1.75;
    }
    .hero-signature__sep { display: block; width: 3px; height: 3px; margin: 0.25rem auto; }
    .hero-emblems {
        top: 5.35rem;
        right: auto;
        left: 50%;
        display: flex;
        width: auto;
        height: auto;
        gap: 0.45rem;
        transform: translateX(-50%);
    }
    .hero-emblems::before { display: none; }
    .hero-emblem,
    .hero-emblem--france,
    .hero-emblem--local {
        position: relative;
        inset: auto;
        width: auto;
        min-width: 126px;
        height: 54px;
        gap: 0.55rem;
        padding: 0.42rem 0.75rem;
        border-width: 1.5px;
        transform: none;
    }
    .hero-emblem img { width: 30px; height: 30px; }
    .hero-emblem span { font-size: 0.72rem; }
}

@media (max-width: 380px) {
    .hero { min-height: 680px; padding-top: 7.25rem; }
    .hero-emblem,
    .hero-emblem--france,
    .hero-emblem--local { min-width: 112px; padding-inline: 0.6rem; }
    .hero-emblem span { font-size: 0.65rem; }
}

/* Einheitliche französische Trennlinie wie im Hero. */
.decorative-line {
    position: relative;
    width: 86px;
    height: 2px;
    margin: 2rem auto;
    border-radius: 999px;
    background: linear-gradient(90deg,
        var(--france-blue) 0%,
        var(--france-blue) 33.333%,
        var(--france-white) 33.333%,
        var(--france-white) 66.666%,
        var(--france-red) 66.666%,
        var(--france-red) 100%);
    box-shadow: 0 2px 10px rgba(45, 55, 62, 0.14);
}
.decorative-line::after {
    content: "";
    position: absolute;
    top: 50%;
    left: calc(100% + 0.9rem);
    width: clamp(120px, 18vw, 250px);
    height: 1px;
    background: linear-gradient(90deg, rgba(45, 55, 62, 0.28), rgba(45, 55, 62, 0));
    transform: translateY(-50%);
}
.hero-content > .decorative-line {
    margin: 2.05rem 0 1.8rem;
    box-shadow: 0 3px 16px rgba(0, 0, 0, 0.24);
}
.hero-content > .decorative-line::after {
    background: linear-gradient(90deg, rgba(243, 231, 206, 0.5), rgba(243, 231, 206, 0));
}
@media (max-width: 768px) {
    .decorative-line::after { display: none; }
    /* Im Hero linksbuendig, ausserhalb weiter zentriert.
       Mehr Luft ueber der Linie als darunter - die Linie gehoert
       optisch zum Zitat, nicht zur Ueberschrift. */
    .hero-content > .decorative-line { margin: 2rem 0 1.35rem; }
}

/* Galerie-Slider (mobil): flache Bildstrecke im Stil der uebrigen Seite.
   Bewusst ohne Schlagschatten - der Schatten reichte weiter nach unten als
   der Innenabstand des Scrollers und wurde von overflow-y: hidden
   abgeschnitten, was die Karten unten wie abgesaegt wirken liess. */
.gallery-slider-controls { display: none; }

@media (max-width: 768px) {
    .gallery .section-content {
        padding-right: 1.6rem;
        padding-left: 1.6rem;
        overflow: visible;
    }

    .gallery-grid {
        /* Kartenbreite an einer Stelle definiert - der seitliche Innenabstand
           leitet sich daraus ab, damit erste und letzte Karte sauber mittig
           einrasten und links wie rechts gleich viel durchblitzt. */
        --gal-card: min(74%, 330px);

        display: flex;
        align-items: flex-start;
        width: calc(100% + 3.2rem);
        max-width: none;
        margin: 2.5rem 0 0 -1.6rem;
        padding: 0.35rem calc((100% - var(--gal-card)) / 2);
        gap: 0.85rem;
        overflow-x: auto;
        overflow-y: hidden;
        overscroll-behavior-inline: contain;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        touch-action: pan-x pan-y;
        cursor: grab;
    }

    .gallery-grid:active { cursor: grabbing; }
    .gallery-grid::-webkit-scrollbar { display: none; }

    .gallery-item,
    .gallery-item:nth-child(n) {
        flex: 0 0 var(--gal-card);
        width: var(--gal-card);
        height: auto;
        min-height: 0;
        aspect-ratio: 4 / 5;
        /* Flach: feine Kontur statt Passepartout und Schlagschatten. */
        border: 1px solid rgba(65, 90, 120, 0.16);
        border-radius: 0.75rem;
        box-shadow: none;
        scroll-snap-align: center;
        scroll-snap-stop: always;
    }

    .gallery-item img { filter: saturate(0.94) contrast(1.015) sepia(0.025); }

    /* Etwas kraeftigerer Verlauf, weil die Bildunterschrift jetzt ohne
       eigenes Kaestchen direkt auf dem Foto sitzt. */
    .gallery-item::before {
        background: linear-gradient(180deg, rgba(18, 24, 28, 0) 46%, rgba(18, 24, 28, 0.68) 100%);
    }

    .gallery-item span {
        margin: 0 0 1rem 1.05rem;
        padding: 0;
        border-radius: 0;
        color: #f6f1e8;
        background: transparent;
        box-shadow: none;
        font-size: 0.66rem;
        letter-spacing: 0.18em;
        text-shadow: 0 1px 8px rgba(0, 0, 0, 0.55);
    }

    .gallery-item::after {
        top: 0.6rem;
        right: 0.7rem;
        font-size: 0.44rem;
        opacity: 0.4;
    }

    /* --- Steuerung: gleiche Sprache wie Kopfleiste und Legende ---------- */
    .gallery-slider-controls {
        display: flex;
        width: 100%;
        margin-top: 1.5rem;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
    }

    .gallery-slider-button {
        display: inline-grid;
        flex: 0 0 44px;
        width: 44px;
        height: 44px;
        place-items: center;
        padding: 0;
        border: 1px solid rgba(65, 90, 120, 0.22);
        border-radius: 0.75rem;
        color: #33465f;
        background: transparent;
        box-shadow: none;
        cursor: pointer;
        transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, opacity 0.25s ease;
    }

    .gallery-slider-button svg { width: 19px; height: 19px; }

    .gallery-slider-button:not(:disabled):hover {
        color: #22303f;
        border-color: rgba(65, 90, 120, 0.4);
        background: rgba(65, 90, 120, 0.07);
    }

    .gallery-slider-button:focus-visible {
        outline: 2px solid var(--red-accent);
        outline-offset: 2px;
    }

    .gallery-slider-button:disabled { opacity: 0.28; cursor: default; }

    .gallery-slider-status {
        display: grid;
        flex: 1 1 auto;
        grid-template-columns: auto minmax(70px, 1fr) auto;
        align-items: center;
        gap: 0.75rem;
        color: #566878;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 0.66rem;
        font-variant-numeric: tabular-nums;
        letter-spacing: 0.14em;
    }

    .gallery-slider-current { color: #22303f; font-weight: 700; }

    .gallery-slider-track {
        position: relative;
        height: 1px;
        overflow: hidden;
        background: rgba(65, 90, 120, 0.2);
    }

    .gallery-slider-track i {
        position: absolute;
        inset: 0;
        background: var(--red-accent);
        transform: scaleX(0.1667);
        transform-origin: left center;
        transition: transform 0.42s cubic-bezier(0.22, 0.8, 0.25, 1);
    }
}
