
        :root {
            --red: #d35952;
            --bg-base: #3e3d3d;
            --bg-present: #464646;
            --bg-products: #1a1a1a;
            --text-light: #e0e0e0;
            --font-mono: 'Courier New', Courier, monospace;
            --font-sans: 'Arial', sans-serif;
        }

        body {
            margin: 0;
            padding: 0;
            font-family: var(--font-mono);
            color: var(--text-light);
            background-color: var(--bg-base);
            background-image: radial-gradient(circle at center, rgba(255,255,255,0.03) 0%, rgba(0,0,0,0.1) 100%);
            overflow-x: hidden;
        }

        h1, h2 {
            font-family: var(--font-sans);
            font-weight: normal;
            margin: 0;
        }

        .text-red { color: var(--red); }
        .text-center { text-align: center; }
        .flex { display: flex; }
        .relative { position: relative; }
        
        a {
            color: var(--text-light);
            text-decoration: none;
            border-bottom: 1px solid var(--text-light);
            padding-bottom: 2px;
            transition: color 0.2s, border-color 0.2s;
        }
        a:hover {
            color: var(--red);
            border-color: var(--red);
        }

        /* --- Heroes --- */
        .hero {
            display: flex;
            height: 450px;
            width: 100%;
        }
        .hero > div { flex: 1; }
        .hero img { width: 100%; height: 100%; object-fit: cover; }

        .hero-market {
            height: clamp(480px, 32vw, 610px);
        }
        .hero-market__media {
            position: relative;
            overflow: hidden;
            background-color: #333;
        }
        .hero-market__media::before {
            content: '';
            position: absolute;
            inset: -15%;
            background-image: var(--hero-market-image, none);
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            transform: translate3d(0, var(--hero-market-parallax-y, 0px), 0);
            will-change: transform;
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #535252;
        }

        .logo-box { position: relative; text-align: left; }
        .logo-box h1 { font-size: 4rem; color: var(--red); letter-spacing: 1px; }
        .logo-box h1 .dark { color: #111; }
        .logo-box .subtitle { font-family: var(--font-sans); font-size: 0.9rem; color: #111; position: absolute; top: -12px; left: 25px; letter-spacing: 1px; }

        .hero-market__logo-box {
            width: min(520px, 82%);
            text-align: center;
        }
        .hero-market__marks {
            display: flex;
            align-items: flex-end;
            justify-content: center;
            gap: clamp(24px, 3vw, 48px);
        }
        .hero-market .brand-logo {
            width: clamp(135px, 9vw, 170px);
            height: auto;
            margin-bottom: 18px;
            object-fit: contain;
        }
        .hero-market__icon {
            width: clamp(145px, 10vw, 180px) !important;
            height: clamp(145px, 10vw, 180px) !important;
            object-fit: contain !important;
        }
        .hero-market__logo-box h1 {
            margin-top: -8px;
            color: var(--red);
            font-size: clamp(4rem, 5vw, 6rem);
            line-height: 1;
            letter-spacing: 1px;
        }

        /* --- Text Sections --- */
        .text-section {
            padding: 60px 20px;
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            font-size: 0.95rem;
            line-height: 1.8;
            letter-spacing: 0.5px;
        }
        .text-section p { margin-bottom: 25px; }
        .text-section strong { font-weight: bold; color: #fff; }

        .contact-bar {
            margin-top: 50px;
            font-size: 0.85rem;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 15px;
        }

        /* --- Market Intro --- */
        .market-intro {
            box-sizing: border-box;
            width: min(100%, 1920px);
            margin: 0 auto;
            padding: 64px 24px 38px;
            text-align: center;
        }
        .market-intro__copy {
            max-width: 790px;
            margin: 0 auto;
            color: #f2f2f2;
            font-size: .94rem;
            line-height: 1.65;
            letter-spacing: .35px;
        }
        .market-intro__copy p { margin: 0 0 24px; }
        .market-intro__copy p:last-child { margin-bottom: 0; }
        .market-intro__copy strong { color: #fff; }
        .market-contact {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 22px;
            width: min(100%, 820px);
            margin: 50px auto 0;
            padding: 0 12px 15px;
            border-bottom: 1px solid rgba(211, 89, 82, .42);
            color: #fff;
            font-size: .82rem;
            letter-spacing: .2px;
        }
        .market-contact a {
            border: 0;
            padding: 0;
            color: inherit;
        }
        .market-contact a:hover { color: var(--red); }
        .market-contact__separator { color: rgba(255,255,255,.72); }

        /* --- SVGs --- */
        .svg-badge {
            position: absolute;
            width: 150px;
            height: 150px;
            z-index: 1;
            object-fit: contain;
        }
        .badge-logo-1 { top: -80px; right: -50px; width: 130px; height: 130px;}
        
        /* --- Feinste Spezialitäten --- */
        .specialties-section {
            box-sizing: border-box;
            position: relative;
            width: min(100%, 1920px);
            margin: 0 auto;
            padding: 42px 24px 92px;
        }
        .specialties-list { max-width: 1080px; margin: 0 auto; }
        .specialties-title {
            color: var(--red);
            font-size: 2.45rem;
            text-align: center;
            margin-bottom: 72px;
        }
        .specialty-row {
            position: relative;
            display: grid;
            grid-template-columns: minmax(0, 1.5fr) minmax(290px, .92fr);
            gap: 66px;
            align-items: center;
            margin: 0 auto 112px;
        }
        .specialty-row:last-child { margin-bottom: 0; }
        .specialty-row.reverse {
            grid-template-columns: minmax(290px, .92fr) minmax(0, 1.5fr);
        }
        .specialty-row.reverse .specialty-image { grid-column: 2; grid-row: 1; }
        .specialty-row.reverse .specialty-copy { grid-column: 1; grid-row: 1; }
        .specialty-image { margin: 0; }
        .specialty-image img {
            display: block;
            width: 100%;
            aspect-ratio: 1.55 / 1;
            height: auto;
            object-fit: cover;
        }
        .specialty-copy {
            position: relative;
            z-index: 2;
            align-self: start;
            padding-top: 72px;
            font-size: .96rem;
            line-height: 1.72;
            letter-spacing: .4px;
            color: #f1f1f1;
        }
        .specialty-copy h2 {
            color: var(--red);
            font-size: 1.75rem;
            line-height: 1.08;
            margin-bottom: 20px;
        }
        .specialty-copy p { margin: 0; }
        .specialty-copy strong { color: #fff; }
        .specialty-badge {
            position: absolute;
            top: -82px;
            left: -112px;
            width: 148px;
            height: 148px;
            z-index: 3;
            pointer-events: none;
            object-fit: contain;
        }
        .specialty-row.reverse .specialty-badge {
            right: -112px;
            left: auto;
        }
        .badge-pos-5 { left: -140px; top: 40px; width: 170px; height: 170px; } /* Present badge */

        /* --- Hours --- */
        .hours-section {
            padding: 60px 20px;
            text-align: center;
        }
        .hours-section hr { width: 60%; border: 0; border-top: 1px solid #733c39; margin: 0 auto 50px auto; }
        .hours-section h2 { font-size: 3.5rem; margin-bottom: 20px; letter-spacing: 1px;}
        .hours-section .sub { font-family: var(--font-mono); font-size: 1.1rem; margin-bottom: 40px; }
        
        .hours-nav {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 60px;
            font-size: 0.95rem;
            line-height: 1.8;
        }
        .arrow { color: var(--red); font-size: 3rem; font-family: var(--font-sans); font-weight: 100; cursor: pointer; }
        .hours-text span { color: var(--red); text-decoration: underline; margin-right: 5px; }

        /* --- Present Section --- */
        .bg-present { background-color: var(--bg-present); }
        .hero-present {
            height: clamp(480px, 27.8vw, 540px);
            background-color: #535252;
        }
        .hero-present__brand {
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #535252;
        }
        .hero-present__brand-inner {
            width: min(430px, 84%);
            transform: translateY(30px);
        }
        .hero-present__marks {
            display: flex;
            align-items: flex-end;
            gap: 14px;
            min-height: 165px;
            padding-left: 160px;
        }
        .hero-present .present-logo {
            width: 112px;
            height: 112px;
            flex: 0 0 auto;
            max-width: none;
            margin: 0;
            object-fit: contain;
        }
        .hero-present .present-paper-icon {
            width: 170px;
            height: 150px;
            flex: 0 0 auto;
            object-fit: contain;
            transform: none;
        }
        .hero-present__brand h1 {
            margin: -24px 0 0;
            color: var(--red);
            font-size: clamp(4.5rem, 5vw, 6rem);
            line-height: 1;
            letter-spacing: 1px;
        }
        .hero-present__subtitle {
            margin: 12px 0 0 8px;
            color: #fff;
            font-size: 1.22rem;
            line-height: 1.2;
            letter-spacing: .3px;
        }
        .hero-present__media { overflow: hidden; }
        .hero-present__media img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* --- Present Intro --- */
        .present-info {
            box-sizing: border-box;
            position: relative;
            width: min(100%, 1920px);
            margin: 0 auto;
            padding: 34px 24px 0;
            text-align: center;
            background: radial-gradient(ellipse at 50% 18%, #595959 0%, #414141 42%, #292929 76%, #222 100%);
        }
        .present-info__copy {
            max-width: 780px;
            margin: 0 auto;
            color: #fff;
            font-size: 1rem;
            line-height: 1.65;
            letter-spacing: .35px;
        }
        .present-info__copy p { margin: 0 0 28px; }
        .present-info__copy p:last-child { margin-bottom: 0; }
        .present-info__copy strong { color: #fff; }
        .present-info__badge {
            position: absolute;
            top: 112px;
            left: calc(50% - 482px);
            width: 152px;
            height: 152px;
            object-fit: contain;
            pointer-events: none;
        }
        .present-contact {
            box-sizing: border-box;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 22px;
            width: min(100%, 774px);
            margin: 90px auto 0;
            padding: 0 12px 26px;
            border-bottom: 1px solid rgba(211, 89, 82, .58);
            color: #fff;
            font-size: .84rem;
            font-weight: bold;
            letter-spacing: .2px;
        }
        .present-contact a {
            border: 0;
            padding: 0;
            color: inherit;
        }
        .present-contact a:hover { color: var(--red); }
        .present-contact a[href^="mailto:"] { text-decoration: underline; }
        .present-contact__separator { color: rgba(255,255,255,.78); }

        /* --- Present Hours --- */
        .present-hours {
            box-sizing: border-box;
            width: min(100%, 1920px);
            min-height: 414px;
            margin: 0 auto;
            padding: 111px 24px 70px;
            text-align: center;
            background: radial-gradient(ellipse at 50% -12%, #303030 0%, #202020 48%, #111 76%, #050505 100%);
        }
        .present-hours h2 {
            margin: 0;
            color: #bd554e;
            font-size: 3.5rem;
            line-height: 1.1;
            letter-spacing: 1px;
        }
        .present-hours__subtitle {
            margin: 27px 0 0;
            color: #fff;
            font-size: 1.1rem;
            line-height: 1.3;
        }
        .present-hours__text {
            margin-top: 65px;
            color: #bd4f49;
            font-size: 1rem;
            line-height: 1.75;
            letter-spacing: .25px;
        }
        .present-hours__text span {
            color: inherit;
            text-decoration: underline;
        }
        
        .present-icon {
            position: absolute;
            top: -60px;
            left: 20px;
        }
        .icon-book {
            background: #000;
            color: #fff;
            font-family: var(--font-sans);
            font-size: 0.9rem;
            font-weight: bold;
            padding: 4px 10px;
            transform: rotate(-10deg);
            border-radius: 2px;
            position: relative;
            z-index: 2;
        }
        .icon-book-red { color: var(--red); }
        .icon-note {
            background: #fff;
            width: 75px;
            height: 75px;
            position: absolute;
            top: -20px;
            right: -65px;
            transform: rotate(20deg);
            z-index: 1;
            box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
            border-radius: 1px;
        }
        .icon-pin {
            width: 8px;
            height: 8px;
            background: var(--red);
            border-radius: 50%;
            position: absolute;
            top: 6px;
            right: 12px;
            box-shadow: 1px 1px 2px rgba(0,0,0,0.5);
        }

        /* --- Produkte --- */
        .products-section {
            box-sizing: border-box;
            width: min(100%, 1920px);
            min-height: 552px;
            margin: 0 auto;
            padding: 64px 24px 106px;
            background-color: #101010;
            text-align: center;
        }
        .products-section h2 {
            margin: 0 0 56px;
            color: #bd554e;
            font-size: 2.25rem;
            line-height: 1.2;
        }
        .products-carousel {
            position: relative;
            left: 10px;
            width: min(100%, 1045px);
            margin: 0 auto;
        }
        .products-track {
            display: flex;
            gap: 10px;
            overflow-x: auto;
            overflow-y: hidden;
            scroll-behavior: smooth;
            scroll-snap-type: x mandatory;
            scrollbar-width: none;
        }
        .products-track::-webkit-scrollbar { display: none; }
        .product-card {
            flex: 0 0 212px;
            width: 212px;
            height: 283px;
            margin: 0;
            scroll-snap-align: start;
        }
        .product-card img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .product-card figcaption {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }
        .products-carousel__button {
            position: absolute;
            top: 50%;
            z-index: 3;
            width: 44px;
            height: 70px;
            padding: 0;
            border: 0;
            color: #fff;
            background: transparent;
            font-family: Arial, sans-serif;
            font-size: 3rem;
            font-weight: 200;
            line-height: 1;
            cursor: pointer;
            transform: translateY(-50%);
        }
        .products-carousel__button--prev { left: 0; }
        .products-carousel__button--next { right: 18px; }
        .products-carousel__button[hidden] { display: none; }

        .specialty-badge-img { display:block; }
        /* --- Footer --- */
        .site-footer {
            box-sizing: border-box;
            width: min(100%, 1920px);
            min-height: 231px;
            margin: 0 auto;
            padding: 65px 24px 29px;
            background-color: #b2534d;
            color: white;
            font-size: .82rem;
            line-height: 1.45;
        }
        .site-footer__inner {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            width: min(100%, 960px);
            margin: 0 auto;
        }
        .site-footer a { color: #fff; border-color: #fff; }
        .site-footer a:hover { color: #f0f0f0; border-color: #f0f0f0; }
        .site-footer__title { margin: 0 0 21px; font-weight: bold; }
        .site-footer__address { margin: 0; font-style: normal; }
        .site-footer__address span,
        .site-footer__address a { display: block; width: fit-content; border: 0; padding: 0; }
        .site-footer__address a { font-weight: bold; }
        .site-footer__privacy { display: inline-block; margin-top: 15px; }
        .site-footer__links { display: flex; gap: 26px; margin-right: 80px; padding-bottom: 4px; }

        /* --- Scroll Reveal Animations --- */
        .reveal-on-scroll {
            opacity: 0;
            transition:
                opacity .85s cubic-bezier(.22, 1, .36, 1),
                transform .85s cubic-bezier(.22, 1, .36, 1);
            transition-delay: var(--reveal-delay, 0ms);
            will-change: opacity, transform;
        }
        .reveal-from-up { transform: translate3d(0, 34px, 0); }
        .reveal-from-left { transform: translate3d(-42px, 0, 0); }
        .reveal-from-right { transform: translate3d(42px, 0, 0); }
        .reveal-on-scroll.is-revealed {
            opacity: 1;
            transform: translate3d(0, 0, 0);
            will-change: auto;
        }

        .brand-logo { width: 346px; max-width: 82vw; height: auto; display: block; filter: drop-shadow(0 10px 18px rgba(0,0,0,.18)); }
        .present-logo { width: 206px; max-width: 70vw; height: auto; display: block; margin: 0 auto 24px auto; }
        .hero-photo { display:block; width:100%; height:100%; object-fit:cover; }
        .section-copy { max-width: 620px; margin-left: 60px; margin-right: 8%; font-size: .95rem; line-height: 1.8; letter-spacing: .4px; color: var(--text-light); padding-top: 10px; }
        .section-copy h2 { color: var(--red); font-size: 2.35rem; margin-bottom: 22px; }
        .section-copy p { margin: 0 0 22px 0; }
        .section-copy strong { color:#fff; }
        @media (max-width: 900px) {
            .hero { height: auto; flex-direction: column; }
            .hero > div { min-height: 300px; }
            .hero-market__media { min-height: 56vw !important; }
            .hero-market__brand { min-height: 360px !important; }
            .hero-market__logo-box { width: min(520px, 90%); }
            .hero-market__logo-box h1 { font-size: clamp(3.2rem, 13vw, 4.8rem); }
            .hero-present__brand { min-height: 410px !important; }
            .hero-present__media { min-height: 56vw !important; }
            .hero-present__brand-inner { width: min(430px, 90%); text-align: center; }
            .hero-present__brand-inner { transform: none; }
            .hero-present__marks { justify-content: center; padding-left: 0; }
            .hero-present__brand h1 { font-size: clamp(4.2rem, 18vw, 5.5rem); }
            .hero-present__subtitle { margin-left: 0; }
            .present-info { padding: 52px 20px 0; }
            .present-info__badge {
                position: relative;
                top: auto;
                left: auto;
                display: block;
                margin: 0 auto 28px;
            }
            .present-contact { flex-wrap: wrap; gap: 10px 16px; margin-top: 46px; }
            .present-hours { min-height: 390px; padding-top: 76px; }
            .present-hours h2 { font-size: clamp(2.7rem, 10vw, 3.5rem); }
            .present-hours__text { margin-top: 50px; }
            .market-intro { padding: 52px 20px 28px; }
            .market-contact { flex-wrap: wrap; gap: 10px 16px; margin-top: 38px; }
            .specialties-section { padding: 55px 20px 80px; }
            .specialties-title { font-size: 2.1rem; margin-bottom: 45px; }
            .specialty-row,
            .specialty-row.reverse { display: flex; flex-direction: column; gap: 28px; margin-bottom: 65px; }
            .specialty-row.reverse .specialty-image,
            .specialty-row.reverse .specialty-copy { grid-column: auto; grid-row: auto; }
            .specialty-row.reverse .specialty-copy { order: 2; }
            .specialty-row.reverse .specialty-image { order: 1; }
            .specialty-image img { height: auto; max-height: 360px; }
            .specialty-copy { text-align: center; max-width: 760px; }
            .specialty-badge { top: -92px !important; left: 50% !important; right: auto !important; transform: translateX(-50%); }
            .section-copy { margin: 38px auto 0 auto; max-width: 760px; text-align: center; }
            .svg-badge { opacity: .35; }
            .products-section { min-height: auto; padding: 58px 20px 82px; }
            .products-section h2 { margin-bottom: 44px; }
            .products-carousel { left: 0; }
        }

        @media (max-width: 560px) {
            .market-intro__copy {
                width: 100%;
                max-width: 100%;
                font-size: .88rem;
                overflow-wrap: anywhere;
            }
            .market-intro__copy br { display: none; }
            .market-contact { flex-direction: column; }
            .market-contact__separator { display: none; }
            .present-info__copy {
                width: 100%;
                max-width: 100%;
                font-size: .88rem;
                overflow-wrap: anywhere;
            }
            .present-info__copy br { display: none; }
            .present-contact { flex-direction: column; }
            .present-contact__separator { display: none; }
            .present-hours { min-height: 360px; padding: 66px 18px 58px; }
            .present-hours__subtitle { margin-top: 20px; }
            .present-hours__text { margin-top: 42px; font-size: .92rem; }
            .specialties-section { padding-right: 16px; padding-left: 16px; }
            .specialty-row,
            .specialty-row.reverse { margin-bottom: 82px; }
            .specialty-copy { font-size: .91rem; }
            .specialty-copy h2 { font-size: 1.65rem; }
            .specialty-badge { width: 126px; height: 126px; top: -78px !important; }
            .hero-present .present-logo { width: 100px; height: 100px; }
            .hero-present .present-paper-icon { width: 158px; height: 140px; }
            .site-footer { padding: 50px 24px 42px; }
            .site-footer__inner { flex-direction: column; align-items: flex-start; gap: 34px; }
            .site-footer__links { flex-wrap: wrap; gap: 14px 24px; margin-right: 0; }
            .reveal-from-up { transform: translate3d(0, 22px, 0); }
            .reveal-from-left { transform: translate3d(-24px, 0, 0); }
            .reveal-from-right { transform: translate3d(24px, 0, 0); }
            .reveal-on-scroll.is-revealed { transform: translate3d(0, 0, 0); }
        }

        /* --- Legal / Impressum --- */
        .legal-page {
            min-height: 70vh;
            padding: clamp(86px, 10vw, 140px) 24px;
            background:
                radial-gradient(circle at 85% 8%, rgba(211, 89, 82, .16), transparent 30%),
                var(--bg-base);
            color: #fff;
        }
        .legal-page__inner { width: min(1080px, 100%); margin: 0 auto; }
        .legal-page__header { max-width: 720px; margin-bottom: 48px; }
        .legal-page__eyebrow {
            margin: 0 0 10px;
            color: var(--red);
            font-size: .78rem;
            font-weight: 700;
            letter-spacing: .16em;
            text-transform: uppercase;
        }
        .legal-page__header h1 {
            margin: 0 0 16px;
            color: #fff;
            font-size: clamp(2.6rem, 7vw, 4.8rem);
            line-height: 1;
        }
        .legal-page__header > p:last-child {
            max-width: 580px;
            margin: 0;
            color: var(--text-light);
            line-height: 1.7;
        }
        .legal-page__grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 20px;
        }
        .legal-card {
            padding: clamp(26px, 4vw, 38px);
            border: 1px solid rgba(255, 255, 255, .12);
            border-radius: 18px;
            background: rgba(255, 255, 255, .055);
            box-shadow: 0 18px 45px rgba(0, 0, 0, .12);
        }
        .legal-card--wide { grid-column: 1 / -1; }
        .legal-card h2 {
            margin: 0 0 22px;
            color: var(--red);
            font-size: clamp(1.25rem, 2.5vw, 1.65rem);
        }
        .legal-card p,
        .legal-card address,
        .legal-card li,
        .legal-card dd {
            color: #fff;
            line-height: 1.75;
        }
        .legal-card p:last-child { margin-bottom: 0; }
        .legal-card address { font-style: normal; }
        .legal-card a {
            color: #fff;
            text-decoration-color: rgba(255, 255, 255, .55);
            text-underline-offset: 4px;
        }
        .legal-card a:hover { color: var(--red); }
        .legal-card__details { display: grid; gap: 14px; margin: 0; }
        .legal-card__details > div {
            display: grid;
            grid-template-columns: minmax(105px, .42fr) 1fr;
            gap: 18px;
            padding-bottom: 14px;
            border-bottom: 1px solid rgba(255, 255, 255, .1);
        }
        .legal-card__details > div:last-child { padding-bottom: 0; border-bottom: 0; }
        .legal-card__details dt { color: var(--text-light); font-weight: 700; }
        .legal-card__details dd { min-width: 0; margin: 0; overflow-wrap: anywhere; }
        .legal-card__credits { margin: 0; padding-left: 20px; }

        @media (max-width: 720px) {
            .legal-page__grid { grid-template-columns: 1fr; }
            .legal-card--wide { grid-column: auto; }
        }

        @media (max-width: 460px) {
            .legal-card__details > div { grid-template-columns: 1fr; gap: 4px; }
        }

        /* --- Language switcher --- */
        .language-switcher {
            position: fixed;
            z-index: 1200;
            top: 18px;
            right: 20px;
            display: inline-flex;
            align-items: center;
            gap: 9px;
            padding: 8px 12px;
            border: 1px solid rgba(255, 255, 255, .24);
            border-radius: 999px;
            background: rgba(30, 30, 30, .72);
            box-shadow: 0 8px 28px rgba(0, 0, 0, .2);
            backdrop-filter: blur(9px);
        }
        .language-switcher a {
            border: 0;
            color: rgba(255, 255, 255, .68);
            font-size: .78rem;
            font-weight: 700;
            letter-spacing: .08em;
            line-height: 1;
            text-decoration: none;
            transition: color .2s ease;
        }
        .language-switcher a:hover,
        .language-switcher a.is-active { color: #fff; }
        .language-switcher a.is-active { text-decoration: underline; text-decoration-color: var(--red); text-decoration-thickness: 2px; text-underline-offset: 5px; }
        .language-switcher span {
            width: 1px;
            height: 14px;
            background: rgba(255, 255, 255, .28);
        }

        @media (max-width: 560px) {
            .language-switcher { top: 10px; right: 10px; padding: 8px 11px; }
        }
