@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 300 600;
    font-display: swap;
    src: url("assets/fonts/inter-latin.woff2") format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC,
        U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F,
        U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: "Playfair Display";
    font-style: normal;
    font-weight: 500 700;
    font-display: swap;
    src: url("assets/fonts/playfair-display-latin.woff2") format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC,
        U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F,
        U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Shared site styles */

/* Cross-page navigation */
@view-transition {
    navigation: auto;
}

@keyframes page-fade-out {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@keyframes page-fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

::view-transition-old(root) {
    animation: 420ms ease-in-out both page-fade-out;
}

::view-transition-new(root) {
    animation: 420ms ease-in-out both page-fade-in;
}

/* Homepage */
        :root {
            --gold: #c79a1f;
            --dark-gold: #8a6b12;
            --light-gold: #f8f1df;
            --soft-gold: #f3e9c8;
            --text: #2c2410;
            --text-light: #5a4e2e;
            --white: #ffffff;
            --bg: #fdfbf7;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', system-ui, sans-serif;
            color: var(--text);
            background: var(--bg);
            line-height: 1.6;
        }

        /* Header / Nav */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            background: rgba(253, 251, 247, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(199, 154, 31, 0.2);
            transition: box-shadow 0.3s;
        }

        header.scrolled {
            box-shadow: 0 2px 20px rgba(0,0,0,0.06);
        }

        .nav-container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0.9rem 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-nav {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
            color: var(--dark-gold);
        }

        .logo-nav .logo-picture {
            display: flex;
        }

        /* The logo is a JPG with a hard white box. multiply blends the white
           into whatever sits behind it, so no rectangle edges show. */
        .logo-nav img {
            height: 48px;
            width: auto;
            mix-blend-mode: multiply;
        }

        .logo-nav span {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            font-size: 1.15rem;
            letter-spacing: 0.5px;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        nav a {
            text-decoration: none;
            color: var(--text);
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.2s;
        }

        nav a:hover {
            color: var(--gold);
        }

        /* Burger toggle: hidden until the nav collapses into a panel. */
        .nav-toggle {
            display: none;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            padding: 0;
            background: transparent;
            border: 1px solid var(--gold);
            border-radius: 12px;
            color: var(--dark-gold);
            cursor: pointer;
        }

        .nav-toggle:hover {
            background: var(--light-gold);
        }

        .nav-toggle:focus-visible {
            outline: 3px solid var(--dark-gold);
            outline-offset: 2px;
        }

        /* Three bars from one element: the middle one is the box itself,
           the outer two are its pseudo-elements. */
        .nav-toggle-bars,
        .nav-toggle-bars::before,
        .nav-toggle-bars::after {
            display: block;
            width: 22px;
            height: 2px;
            border-radius: 2px;
            background: currentColor;
            transition: transform 0.25s ease, opacity 0.2s ease;
        }

        .nav-toggle-bars {
            position: relative;
        }

        .nav-toggle-bars::before,
        .nav-toggle-bars::after {
            content: '';
            position: absolute;
            left: 0;
        }

        .nav-toggle-bars::before {
            top: -7px;
        }

        .nav-toggle-bars::after {
            top: 7px;
        }

        .nav-toggle[aria-expanded="true"] .nav-toggle-bars {
            background: transparent;
        }

        .nav-toggle[aria-expanded="true"] .nav-toggle-bars::before {
            transform: translateY(7px) rotate(45deg);
        }

        .nav-toggle[aria-expanded="true"] .nav-toggle-bars::after {
            transform: translateY(-7px) rotate(-45deg);
        }

        .lang-switch {
            font-size: 0.85rem;
            color: var(--dark-gold);
            border: 1px solid var(--gold);
            padding: 0.3rem 0.7rem;
            border-radius: 20px;
            cursor: pointer;
            background: transparent;
            font-family: inherit;
        }

        .lang-switch:hover {
            background: var(--light-gold);
        }

        /* Hero */
        .hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 7rem 1.5rem 4rem;
            background: linear-gradient(180deg, var(--white) 0%, var(--light-gold) 100%);
            position: relative;
        }

        .hero-logo {
            max-width: 437px;
            width: 85%;
            margin-bottom: 1.2rem;
        }

        @keyframes hero-logo-in {
            from {
                opacity: 0;
                transform: translateY(22px);
            }
        }

        .hero-logo img {
            display: block;
            width: 100%;
            height: auto;
            /* Animate the blending element itself. `backwards` applies the
               starting state during the delay, but leaves no transform layer
               behind once the animation ends. */
            animation: hero-logo-in 1190ms cubic-bezier(0.22, 1, 0.36, 1) 350ms backwards;
            /* The logo is a JPG with a hard white box. multiply makes the
               white read as the hero gradient behind it, so the rectangle
               edge disappears; border-radius softens the corners for any
               browser that ignores the blend mode. */
            mix-blend-mode: multiply;
            border-radius: 24px;
        }

        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.8rem, 5vw, 2.8rem);
            color: var(--dark-gold);
            margin-bottom: 0.5rem;
            letter-spacing: 1px;
        }

        .hero p {
            max-width: 560px;
            color: var(--text-light);
            font-size: 1.05rem;
            margin-bottom: 2rem;
        }

        .btn {
            display: inline-block;
            background: var(--gold);
            color: white;
            padding: 0.85rem 2rem;
            border-radius: 40px;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.25s;
            border: 2px solid var(--gold);
        }

        .btn:hover {
            background: var(--dark-gold);
            border-color: var(--dark-gold);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(139, 107, 18, 0.25);
        }

        /* Keep the primary hero action centered. */
        .hero-actions {
            display: flex;
            justify-content: center;
        }

        /* Hero video */
        .hero-video {
            margin-top: 3rem;
            width: 100%;
            max-width: 290px;
            position: relative;
            border-radius: 26px;
            padding: 8px;
            background: linear-gradient(160deg, var(--gold), var(--soft-gold) 45%, var(--dark-gold));
            box-shadow: 0 18px 45px rgba(139, 107, 18, 0.22);
        }

        .hero-portrait picture {
            display: block;
        }

        .hero-video video {
            display: block;
            width: 100%;
            aspect-ratio: 9 / 16;
            object-fit: cover;
            border-radius: 20px;
            background: #000;
        }

        .hero-video .sound-toggle {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            border: none;
            cursor: pointer;
            background: rgba(44, 36, 16, 0.55);
            backdrop-filter: blur(6px);
            color: white;
            font-size: 1.5rem;
            line-height: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s, transform 0.2s;
        }

        .hero-video .sound-toggle:hover {
            background: var(--gold);
            transform: translateX(-50%) scale(1.06);
        }

        .hero-video-caption {
            margin-top: 1rem;
            font-size: 0.85rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--dark-gold);
            opacity: 0.8;
            margin-bottom: 0;
        }

        /* Hero duo: portrait + video (Option B) */
        .hero-duo {
            margin-top: 2.8rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: flex-start;
            gap: 1.5rem;
        }

        /* Two 9:16 cards side by side get tall fast - keep them
           narrower than the single-video layout so the hero still
           fits a laptop viewport without scrolling. */
        .hero-duo .hero-video {
            margin-top: 0;
            max-width: 250px;
        }

        .hero-portrait {
            position: relative;
            width: 100%;
            max-width: 250px;
            border-radius: 26px;
            padding: 8px;
            background: linear-gradient(160deg, var(--gold), var(--soft-gold) 45%, var(--dark-gold));
            box-shadow: 0 18px 45px rgba(139, 107, 18, 0.22);
        }

        .hero-portrait img {
            display: block;
            width: 100%;
            height: auto;
            aspect-ratio: 9 / 16;
            object-fit: cover;
            object-position: center 12%;
            border-radius: 20px;
        }

        .portrait-caption {
            position: absolute;
            left: 8px;
            right: 8px;
            bottom: 8px;
            padding: 2.5rem 1rem 1.1rem;
            border-radius: 0 0 20px 20px;
            background: linear-gradient(180deg, rgba(44, 36, 16, 0) 0%, rgba(44, 36, 16, 0.82) 65%);
            color: #fff;
            text-align: center;
        }

        .portrait-caption strong {
            display: block;
            font-family: 'Playfair Display', serif;
            font-size: 1.15rem;
            letter-spacing: 0.5px;
        }

        .portrait-caption span {
            font-size: 0.72rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            opacity: 0.85;
        }

        /* On phones the two 9:16 cards stack, so shrink them to stay scrollable */
        @media (max-width: 600px) {
            .hero-duo {
                gap: 1rem;
            }
            .hero-portrait,
            .hero-duo .hero-video {
                width: calc(50% - 0.5rem);
                max-width: 180px;
                padding: 5px;
                border-radius: 20px;
            }
            .hero-portrait img,
            .hero-duo .hero-video video {
                border-radius: 16px;
            }
            .hero-portrait .portrait-caption {
                left: 5px;
                right: 5px;
                bottom: 5px;
                border-radius: 0 0 16px 16px;
            }
            .hero-portrait .portrait-caption {
                padding: 2rem 0.5rem 0.7rem;
            }
            .hero-portrait .portrait-caption strong {
                font-size: 0.9rem;
            }
            .hero-portrait .portrait-caption span {
                font-size: 0.6rem;
                letter-spacing: 1px;
            }
            .hero-video .sound-toggle {
                width: 44px;
                height: 44px;
                font-size: 1.1rem;
                bottom: 12px;
            }
        }

        /* Founder band: personal introduction plus social proof. */
        .founder-band {
            background: linear-gradient(135deg, var(--dark-gold) 0%, var(--gold) 100%);
            padding: 0;
        }

        .founder-band .container {
            display: grid;
            grid-template-columns: 290px 1fr;
            gap: 3.5rem;
            align-items: start;
            padding: 4rem 1.5rem;
        }

        .founder-photo img {
            display: block;
            width: 100%;
            height: auto;
            aspect-ratio: 3 / 4;
            object-fit: cover;
            /* Keeps his head under the arch when the 429x769 photo is
               cropped to 3:4. */
            object-position: center 40%;
            border-radius: 160px 160px 24px 24px;
            border: 6px solid rgba(255, 255, 255, 0.35);
            box-shadow: 0 22px 50px rgba(0, 0, 0, 0.25);
        }

        .founder-quote {
            color: #fff;
        }

        .founder-quote h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.5rem, 3vw, 2rem);
            margin-bottom: 1rem;
        }

        .founder-quote p {
            font-size: 1.02rem;
            line-height: 1.75;
            margin-bottom: 1.5rem;
        }

        @media (max-width: 800px) {
            .founder-band .container {
                grid-template-columns: 1fr;
                gap: 2rem;
                justify-items: center;
                text-align: center;
                padding: 3rem 1.5rem;
            }
            /* A width, not a max-width: the image sizes itself from its
               box, so a shrink-to-fit column would collapse it. */
            .founder-photo {
                width: 220px;
                max-width: 100%;
            }
            .founder-quote {
                width: 100%;
            }
            /* Centred headline, but running text stays left-aligned. */
            .founder-quote p {
                text-align: left;
            }
        }

        /* The areas of support, two columns wide inside the band. */
        .profile-areas {
            list-style: none;
            columns: 2;
            column-gap: 2rem;
            margin-bottom: 2rem;
        }

        .profile-areas li {
            break-inside: avoid;
            padding: 0.3rem 0 0.3rem 1.5rem;
            position: relative;
            font-size: 0.95rem;
        }

        .profile-areas li::before {
            content: '✓';
            position: absolute;
            left: 0;
            opacity: 0.75;
        }

        .profile-stats {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem 2.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.35);
        }

        .profile-stat strong {
            display: block;
            font-family: 'Playfair Display', serif;
            font-size: 2.4rem;
            line-height: 1;
        }

        .profile-stat span {
            font-size: 0.88rem;
            opacity: 0.9;
        }

        @media (max-width: 800px) {
            .profile-areas {
                columns: 1;
                text-align: left;
                max-width: 320px;
                margin-left: auto;
                margin-right: auto;
            }
            .profile-stats {
                justify-content: center;
            }
        }

        /* Sections */
        section {
            padding: 5rem 1.5rem;
        }

        .container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            color: var(--dark-gold);
            text-align: center;
            margin-bottom: 0.5rem;
        }

        .section-line {
            width: 60px;
            height: 3px;
            background: var(--gold);
            margin: 0 auto 2.5rem;
        }

        /* Services */
        .services-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }

        @media (max-width: 700px) {
            .services-grid {
                grid-template-columns: 1fr;
            }
            .nav-toggle {
                display: flex;
                /* After the language switch, so the burger sits at the edge. */
                order: 3;
            }

            .lang-switch {
                order: 2;
            }

            /* Panel below the fixed header; the header is its containing block. */
            #primaryNav {
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                /* Opaque, unlike the header bar: the hero logo sits directly
                   behind the panel and would otherwise show through. */
                background: var(--bg);
                border-bottom: 1px solid rgba(199, 154, 31, 0.2);
                box-shadow: 0 12px 24px rgba(44, 36, 16, 0.12);
                opacity: 0;
                visibility: hidden;
                transform: translateY(-8px);
                pointer-events: none;
                transition: opacity 0.25s ease, transform 0.25s ease,
                            visibility 0.25s ease;
            }

            #primaryNav.is-open {
                opacity: 1;
                visibility: visible;
                transform: none;
                pointer-events: auto;
            }

            #primaryNav ul {
                flex-direction: column;
                gap: 0;
                padding: 0.25rem 1.5rem 0.75rem;
            }

            /* The list item carries the row: the language rules keep the
               anchors inline, and a flex item is blockified anyway, so the
               padding below still gives a full-width touch target. */
            #primaryNav ul li {
                display: flex;
                border-top: 1px solid rgba(199, 154, 31, 0.18);
            }

            #primaryNav ul li:first-child {
                border-top: none;
            }

            #primaryNav a {
                flex: 1;
                padding: 0.95rem 0.25rem;
                font-size: 1.05rem;
            }
        }

        .service-card {
            background: white;
            border: 1px solid rgba(199, 154, 31, 0.25);
            border-radius: 12px;
            padding: 2rem;
            transition: transform 0.25s, box-shadow 0.25s;
        }

        .service-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 30px rgba(139, 107, 18, 0.1);
        }

        .service-card h3 {
            font-family: 'Playfair Display', serif;
            color: var(--dark-gold);
            font-size: 1.25rem;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }

        .service-card h3 span {
            font-size: 1.4rem;
        }

        .service-card ul {
            list-style: none;
        }

        .service-card li {
            padding: 0.4rem 0;
            color: var(--text-light);
            font-size: 0.95rem;
            position: relative;
            padding-left: 1.3rem;
        }

        .service-card li::before {
            content: "•";
            color: var(--gold);
            font-weight: bold;
            position: absolute;
            left: 0;
        }

        /* About */
        .about {
            background: white;
        }

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

        .about-content p {
            color: var(--text-light);
            margin-bottom: 1rem;
            font-size: 1.05rem;
        }

        /* Contact */
        .contact {
            background: linear-gradient(180deg, var(--light-gold) 0%, var(--soft-gold) 100%);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: start;
        }

        @media (max-width: 700px) {
            .contact-grid {
                grid-template-columns: 1fr;
            }
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 0.9rem;
            margin-bottom: 1.3rem;
        }

        .contact-item .icon {
            width: 40px;
            height: 40px;
            background: var(--gold);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            flex-shrink: 0;
        }

        .contact-item .icon--whatsapp {
            background: transparent;
        }

        .contact-item .icon--whatsapp img {
            display: block;
            width: 40px;
            height: 40px;
        }

        .contact-item .icon img.contact-icon {
            width: 20px;
            height: 20px;
            filter: brightness(0) invert(1);
        }

        .contact-item--link {
            width: fit-content;
            padding-right: 0.75rem;
            border-radius: 8px;
            color: var(--text);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.2s, background-color 0.2s;
        }

        .contact-item--link:hover {
            color: var(--dark-gold);
            background: rgba(255, 255, 255, 0.35);
        }

        .contact-item--link:focus-visible {
            outline: 2px solid var(--dark-gold);
            outline-offset: 4px;
        }

        .contact-item a {
            color: var(--text);
            text-decoration: none;
            font-weight: 500;
        }

        .contact-item a:hover {
            color: var(--dark-gold);
        }

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

        .contact-item--route {
            align-items: flex-start;
        }

        .contact-item address {
            font-style: normal;
            font-weight: 500;
            line-height: 1.5;
        }

        .contact-item--route .route-button {
            margin-top: 0.7rem;
        }

        .contact-item .route-button {
            display: flex;
            align-items: center;
            width: fit-content;
            gap: 0.5rem;
            padding: 0.55rem 0.8rem;
            border-radius: 8px;
            background: var(--dark-gold);
            color: white;
            font-size: 0.86rem;
            line-height: 1.3;
            transition: background-color 0.2s, transform 0.2s;
        }

        .contact-item .route-button:hover {
            background: #6f560e;
            color: white;
            transform: translateY(-1px);
        }

        .contact-item .route-button:focus-visible {
            outline: 2px solid var(--dark-gold);
            outline-offset: 3px;
        }

        .contact-item .route-button img {
            width: 17px;
            height: 17px;
            filter: brightness(0) invert(1);
            flex-shrink: 0;
        }

        /* Location map: Leaflet from our own webspace, tiles from OpenStreetMap */
        .contact-map {
            display: flex;
            flex-direction: column;
            gap: 0.6rem;
            height: 100%;
        }

        .contact-map__canvas {
            /* Own stacking context so Leaflet's panes and controls (z-index up
               to 800) can never paint over the fixed site header. */
            position: relative;
            z-index: 0;
            flex: 1;
            min-height: 380px;
            background: var(--white);
            border: 1px solid rgba(199, 154, 31, 0.3);
            border-radius: 12px;
            box-shadow: 0 12px 30px rgba(139, 107, 18, 0.12);
        }

        .contact-map__fallback {
            display: flex;
            flex-direction: column;
            justify-content: center;
            height: 100%;
            padding: 1.5rem;
            color: var(--text-light);
            font-size: 0.95rem;
            text-align: center;
        }

        /* Leaflet chrome, toned down to the gold palette */
        .contact-map .leaflet-container {
            border-radius: 12px;
            font-family: inherit;
            background: var(--soft-gold);
        }

        .contact-map .leaflet-bar {
            border: none;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(44, 36, 16, 0.25);
        }

        .contact-map .leaflet-bar a {
            color: var(--dark-gold);
            border-bottom-color: rgba(199, 154, 31, 0.3);
        }

        .contact-map .leaflet-bar a:hover {
            background: var(--light-gold);
            color: var(--dark-gold);
        }

        .contact-map .leaflet-control-attribution {
            background: rgba(255, 255, 255, 0.85);
            font-size: 0.68rem;
            padding: 0 6px;
        }

        .contact-map .leaflet-control-attribution a {
            color: var(--dark-gold);
        }

        /* Marker: a gold pin, so no external image is needed */
        .map-pin {
            display: block;
            width: 26px;
            height: 26px;
            background: linear-gradient(135deg, var(--gold), var(--dark-gold));
            border: 3px solid #fff;
            border-radius: 50% 50% 50% 0;
            transform: rotate(-45deg);
            box-shadow: 0 4px 10px rgba(44, 36, 16, 0.4);
        }

        .contact-map .map-label {
            padding: 3px 9px;
            background: var(--dark-gold);
            border: none;
            border-radius: 6px;
            color: #fff;
            font-size: 0.78rem;
            font-weight: 600;
            letter-spacing: 0.3px;
            box-shadow: 0 4px 10px rgba(44, 36, 16, 0.25);
        }

        .contact-map .map-label::before {
            border-top-color: var(--dark-gold);
        }

        @media (max-width: 700px) {
            .contact-map__canvas {
                min-height: 300px;
            }
        }

        /* Footer */
        footer {
            background: var(--dark-gold);
            color: white;
            text-align: center;
            padding: 2rem 1.5rem;
        }

        footer p {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        footer .slogan {
            font-family: 'Playfair Display', serif;
            letter-spacing: 2px;
            margin-top: 0.5rem;
            font-size: 0.95rem;
            color: var(--soft-gold);
        }

        footer .footer-links {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.7rem;
            margin-top: 1rem;
        }

        footer .footer-links a {
            color: white;
            font-size: 0.88rem;
            font-weight: 500;
            text-underline-offset: 0.18em;
        }

        footer .footer-links a:hover {
            color: var(--soft-gold);
        }

        footer .footer-links span {
            opacity: 0.55;
        }

        /* Floating WhatsApp shortcut */
        .whatsapp-fab {
            position: fixed;
            right: 1.25rem;
            bottom: 1.25rem;
            /* Above the fixed header (100) and every Leaflet pane (up to 800). */
            z-index: 900;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, var(--gold), var(--dark-gold));
            border: 2px solid rgba(255, 255, 255, 0.85);
            border-radius: 50%;
            box-shadow: 0 10px 24px rgba(44, 36, 16, 0.28);
            transition: transform 0.25s ease, box-shadow 0.25s ease,
                        opacity 0.25s ease, visibility 0.25s ease;
            /* "backwards" only: once the entrance has played the element falls
               back to its normal styles, so the hide transition still works. */
            animation: whatsapp-fab-in 0.5s ease-out 0.5s backwards;
        }

        @keyframes whatsapp-fab-in {
            from {
                opacity: 0;
                transform: translateY(18px) scale(0.9);
            }
        }

        .whatsapp-fab img {
            width: 30px;
            height: 30px;
            /* The source mark is WhatsApp green; on the gold disc it reads
               as a white glyph, like the other contact icons. */
            filter: brightness(0) invert(1);
        }

        .whatsapp-fab:hover {
            transform: translateY(-2px);
            box-shadow: 0 14px 30px rgba(44, 36, 16, 0.35);
        }

        .whatsapp-fab:focus-visible {
            outline: 3px solid var(--dark-gold);
            outline-offset: 3px;
        }

        @media (max-width: 700px) {
            .whatsapp-fab {
                right: 1rem;
                bottom: 1rem;
            }

            /* Redundant once the contact section's own WhatsApp button is on
               screen. Desktop keeps the shortcut visible at all times. */
            .whatsapp-fab.is-hidden {
                opacity: 0;
                visibility: hidden;
                transform: translateY(12px) scale(0.85);
                pointer-events: none;
            }
        }

        /* Language content */
        html:not([lang="en"]) .en,
        html:not([lang="en"]) .en-inline,
        html:not([lang="en"]) .en-flex { display: none; }
        html[lang="en"] .de,
        html[lang="en"] .de-inline,
        html[lang="en"] .de-flex { display: none; }
        html[lang="en"] .en { display: block; }
        html[lang="en"] .en-inline { display: inline; }
        html[lang="en"] .en-flex { display: flex; }

/* Legal pages */
.legal-page {
    --gold: #c79a1f;
    --dark-gold: #8a6b12;
    --light-gold: #f8f1df;
    --soft-gold: #f3e9c8;
    --text: #2c2410;
    --text-light: #5a4e2e;
    --white: #ffffff;
    --bg: #fdfbf7;
    --border: rgba(199, 154, 31, 0.26);
}

.legal-page * {
    box-sizing: border-box;
}

.legal-page {
    scroll-behavior: smooth;
}

.legal-page {
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    color: var(--text);
    background: var(--bg);
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 1rem;
    line-height: 1.7;
}

.legal-page a {
    color: var(--dark-gold);
    text-underline-offset: 0.18em;
}

.legal-page a:hover {
    color: var(--gold);
}

.legal-page a:focus-visible {
    outline: 3px solid rgba(199, 154, 31, 0.45);
    outline-offset: 4px;
    border-radius: 4px;
}

.legal-page .skip-link {
    position: absolute;
    top: -5rem;
    left: 1rem;
    z-index: 1000;
    padding: 0.65rem 1rem;
    color: var(--white);
    background: var(--dark-gold);
    border-radius: 0 0 8px 8px;
}

.legal-page .skip-link:focus {
    top: 0;
}

.legal-page .site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(253, 251, 247, 0.96);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(10px);
}

.legal-page .header-inner {
    width: min(100% - 2rem, 1100px);
    min-height: 76px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.legal-page .brand {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--dark-gold);
    text-decoration: none;
}

.legal-page .brand img {
    display: block;
    width: auto;
    height: 48px;
    mix-blend-mode: multiply;
}

.legal-page .brand picture {
    display: flex;
}

.legal-page .brand span {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.12rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.legal-page .home-link {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0.45rem 0.9rem;
    border: 1px solid var(--gold);
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
}

.legal-page .home-link:hover {
    color: var(--white);
    background: var(--dark-gold);
    border-color: var(--dark-gold);
}

.legal-page main {
    flex: 1 0 auto;
}

.legal-page .legal-hero {
    padding: clamp(3.5rem, 8vw, 6rem) 1rem clamp(5.5rem, 10vw, 8rem);
    text-align: center;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-gold) 100%);
}

.legal-page .legal-hero h1 {
    max-width: 100%;
    margin: 0;
    color: var(--dark-gold);
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(2.3rem, 7vw, 4.4rem);
    font-weight: 600;
    line-height: 1.08;
    overflow-wrap: anywhere;
}

.legal-page .legal-hero p:last-child {
    max-width: 620px;
    margin: 1rem auto 0;
    color: var(--text-light);
}

.legal-page .legal-wrap {
    width: min(100% - 2rem, 900px);
    margin: clamp(-4rem, -6vw, -3rem) auto 5rem;
    position: relative;
}

.legal-page .legal-card {
    padding: clamp(1.5rem, 5vw, 4rem);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: 0 18px 50px rgba(90, 78, 46, 0.11);
}

.legal-page .legal-section + .legal-section {
    margin-top: 2.4rem;
    padding-top: 2.4rem;
    border-top: 1px solid var(--border);
}

.legal-page .legal-section h2 {
    margin: 0 0 0.8rem;
    color: var(--dark-gold);
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    font-weight: 600;
    line-height: 1.3;
}

.legal-page .legal-section p {
    margin: 0.75rem 0 0;
}

.legal-page .legal-section p:first-of-type {
    margin-top: 0;
}

.legal-page .legal-section ul {
    margin: 0.8rem 0 0;
    padding-left: 1.3rem;
}

.legal-page .legal-section li + li {
    margin-top: 0.45rem;
}

.legal-page .legal-highlight {
    margin: 1.5rem 0;
    padding: 1.25rem 1.4rem;
    background: var(--light-gold);
    border: 1px solid var(--gold);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(138, 107, 18, 0.08);
}

.legal-page .legal-highlight h3 {
    margin: 0;
    color: var(--dark-gold);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.15rem;
    line-height: 1.35;
}

.legal-page .legal-highlight p {
    margin-top: 0.7rem;
}

.legal-page .legal-address {
    margin: 0;
    padding: 1.25rem 1.4rem;
    background: var(--light-gold);
    border-radius: 12px;
    font-style: normal;
}

.legal-page .legal-address strong {
    color: var(--dark-gold);
}

.legal-page .contact-lines {
    display: grid;
    grid-template-columns: max-content 1fr;
    gap: 0.4rem 0.8rem;
    margin: 0;
}

.legal-page .contact-lines dt {
    color: var(--text-light);
    font-weight: 600;
}

.legal-page .contact-lines dd {
    margin: 0;
    min-width: 0;
    overflow-wrap: anywhere;
}

.legal-page .site-footer {
    flex: 0 0 auto;
    padding: 2rem 1rem;
    color: var(--white);
    background: var(--dark-gold);
    text-align: center;
}

.legal-page .site-footer p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.92;
}

.legal-page .footer-slogan {
    margin-top: 0.35rem !important;
    color: var(--soft-gold);
    font-family: "Playfair Display", Georgia, serif;
    letter-spacing: 0.14em;
}

.legal-page .footer-links {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
}

.legal-page .footer-links a {
    color: var(--white);
    font-size: 0.88rem;
    font-weight: 500;
}

.legal-page .footer-links a:hover,
.legal-page .footer-links a[aria-current="page"] {
    color: var(--soft-gold);
}

.legal-page .footer-links span {
    opacity: 0.55;
}

@media (max-width: 560px) {
    .legal-page .header-inner {
        min-height: 68px;
    }

    .legal-page .brand img {
        height: 40px;
    }

    .legal-page .brand span {
        display: none;
    }

    .legal-page .home-link {
        font-size: 0.82rem;
    }

    .legal-page .legal-hero {
        padding-top: 3rem;
    }

    .legal-page .legal-wrap {
        width: min(100% - 1rem, 900px);
        margin-bottom: 3rem;
    }

    .legal-page .legal-card {
        border-radius: 14px;
    }

    .legal-page .contact-lines {
        grid-template-columns: 1fr;
        gap: 0.05rem;
    }

    .legal-page .contact-lines dd + dt {
        margin-top: 0.55rem;
    }
}
