@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url("../fonts/inter-300.ttf") format("truetype");
}

@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("../fonts/inter-400.ttf") format("truetype");
}

@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url("../fonts/inter-500.ttf") format("truetype");
}

@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url("../fonts/inter-600.ttf") format("truetype");
}

@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("../fonts/inter-700.ttf") format("truetype");
}

@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url("../fonts/inter-800.ttf") format("truetype");
}

:root {
            --brand: #ef232a;
            --ink: #17191c;
            --soft: #f7f7f4;
            --muted: #676b72;
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            overflow-x: hidden;
            background: var(--soft);
            color: var(--ink);
            font-family: "Inter", Arial, sans-serif;
            letter-spacing: 0;
        }

        canvas {
            display: block;
            width: 100%;
            height: 100%;
            outline: none;
        }

        #canvas-container {
            position: fixed;
            top: 0;
            left: 0;
            z-index: 0;
            width: 100vw;
            height: var(--app-height, 100vh);
            pointer-events: none;
        }

        #site-header {
            top: 0;
            left: 0;
            right: 0;
            backface-visibility: hidden;
            -webkit-backface-visibility: hidden;
        }

        #site-header.header-frosted {
            background: rgba(26, 27, 29, 0.9);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
            mix-blend-mode: normal;
        }

        .map-shell {
            background: #17191c;
        }

        .map-shell::before,
        .map-shell::after {
            content: none;
        }

        .map-frame {
            mix-blend-mode: normal;
        }

        #contact .map-shell {
            width: 100%;
            height: 380px;
            min-height: 340px;
        }

        @media (min-width: 768px) {
            #contact .map-shell {
                height: 590px;
                min-height: 0;
            }
        }

        @media (min-width: 1024px) {
            #contact .map-shell {
                align-self: stretch;
                height: 100%;
                min-height: 620px;
            }
        }

        .nav-link {
            position: relative;
            display: inline-flex;
            align-items: center;
        }

        .nav-link::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -0.45rem;
            width: 100%;
            height: 1px;
            background: currentColor;
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.35s ease;
        }

        .nav-link:hover::after {
            transform: scaleX(1);
            transform-origin: left;
        }

        .site-footer-inner {
            row-gap: 1.8rem;
        }

        .site-footer-brand {
            margin: 0;
            line-height: 1.2;
        }

        .site-footer-nav {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 2.75rem;
        }

        .site-footer-link {
            position: relative;
            display: inline-flex;
            align-items: center;
            min-height: 2.25rem;
            color: rgba(255, 255, 255, 0.52);
            line-height: 1;
            transition: color 220ms ease;
        }

        .site-footer-link::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -0.48rem;
            width: 100%;
            height: 1px;
            background: var(--brand);
            opacity: 0.9;
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 260ms ease;
        }

        .site-footer-link:hover,
        .site-footer-link:focus-visible {
            color: #ffffff;
        }

        .site-footer-link:hover::after,
        .site-footer-link:focus-visible::after {
            transform: scaleX(1);
            transform-origin: left;
        }

        @media (max-width: 767px) {
            .site-footer-inner {
                gap: 2rem;
            }

            .site-footer-nav {
                flex-direction: column;
                justify-content: center;
                gap: 1.05rem;
            }

            .site-footer-link {
                min-height: 2.45rem;
                justify-content: center;
                padding: 0.15rem 0;
            }

            .site-footer-link::after {
                bottom: 0.28rem;
            }
        }

        .mobile-header-phone {
            display: inline-flex;
            height: 2.5rem;
            align-items: center;
            justify-content: center;
            background: #ffffff;
            padding: 0 0.78rem;
            color: #000000;
            font-size: 0.58rem;
            font-weight: 800;
            letter-spacing: 0.08em;
            line-height: 1;
            white-space: nowrap;
            transition: background-color 0.2s ease;
        }

        .mobile-header-phone:hover,
        .mobile-header-phone:focus {
            background: #dddddd;
        }

        .desktop-header-appointment {
            display: none;
        }

        .hero-copy-lock {
            width: min(100%, 22rem);
            min-width: 0;
            margin: 0 auto;
            text-align: center;
            white-space: normal;
        }

        .hero-title {
            font-size: clamp(2.75rem, 13vw, 4.2rem);
            line-height: 0.86;
            letter-spacing: 0;
        }

        .eyebrow {
            display: block;
            margin-bottom: 1.45rem;
            color: rgba(23, 25, 28, 0.42);
            font-size: 0.62rem;
            font-weight: 800;
            letter-spacing: 0.36em;
            text-transform: uppercase;
        }

        .canvas-vignette {
            position: absolute;
            inset: 0;
            z-index: 5;
            pointer-events: none;
            will-change: opacity;
            background:
                linear-gradient(90deg, rgba(247, 247, 244, 0.1), rgba(247, 247, 244, 0) 14%),
                linear-gradient(180deg, rgba(247, 247, 244, 0.72), rgba(247, 247, 244, 0) 18%, rgba(247, 247, 244, 0) 78%, rgba(247, 247, 244, 0.58));
        }

        #hero-callouts {
            position: fixed;
            left: 0;
            top: 0;
            z-index: 20;
            width: 100vw;
            height: 100vh;
            overflow: hidden;
            pointer-events: none;
        }

        .hero-callout-lines {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            overflow: visible;
            pointer-events: none;
        }

        .hero-callout-line {
            stroke: rgba(23, 25, 28, 0.46);
            stroke-width: 1;
            fill: none;
            stroke-linecap: round;
            vector-effect: non-scaling-stroke;
        }

        .hero-hotspot-dot {
            position: absolute;
            width: 0.68rem;
            height: 0.68rem;
            border: 1px solid rgba(255, 255, 255, 0.96);
            border-radius: 999px;
            background: rgba(239, 35, 42, 0.96);
            box-shadow: 0 0 0 0 rgba(239, 35, 42, 0.52), 0 0 1rem rgba(239, 35, 42, 0.42);
            opacity: 0;
            transform: translate(-50%, -50%) scale(0.4);
            animation: premiumPulse 2.2s ease-out infinite;
            pointer-events: none;
        }

        .hero-dot-1 { left: 48%; top: 40%; }
        .hero-dot-2 { left: 56%; top: 47%; }
        .hero-dot-3 { left: 67%; top: 40%; }
        .hero-dot-4 { left: 73%; top: 39%; }
        .hero-dot-5 { left: 81%; top: 44%; }

        @keyframes premiumPulse {
            0% {
                box-shadow: 0 0 0 0 rgba(239, 35, 42, 0.52), 0 0 1rem rgba(239, 35, 42, 0.42);
            }
            72% {
                box-shadow: 0 0 0 0.9rem rgba(239, 35, 42, 0), 0 0 1rem rgba(239, 35, 42, 0.42);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(239, 35, 42, 0), 0 0 1rem rgba(239, 35, 42, 0.42);
            }
        }

        .hero-callout-card {
            position: absolute;
            width: clamp(12.75rem, 17vw, 16.25rem);
            min-height: 7.6rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            background:
                linear-gradient(145deg, rgba(255, 255, 255, 0.44), rgba(255, 255, 255, 0.2)),
                rgba(247, 247, 244, 0.36);
            box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.46);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            opacity: 0;
            transform: translateY(1rem) scale(0.96);
            pointer-events: auto;
        }

        .hero-callout-card::before {
            content: "";
            position: absolute;
            left: 1.15rem;
            top: 1.15rem;
            width: 0.38rem;
            height: 0.38rem;
            border-radius: 999px;
            background: var(--brand);
            box-shadow: 0 0 1rem rgba(239, 35, 42, 0.72);
        }

        .hero-callout-card h3 {
            margin: 0 0 0.7rem;
            padding-left: 1.1rem;
            color: var(--ink);
            font-size: clamp(1rem, 1.15vw, 1.18rem);
            font-weight: 800;
            letter-spacing: 0;
            line-height: 1;
        }

        .hero-callout-card p {
            margin: 0;
            color: rgba(23, 25, 28, 0.68);
            font-size: 0.86rem;
            font-weight: 300;
            line-height: 1.45;
        }

        .hero-callout-1 { left: 4%; top: 9%; }
        .hero-callout-2 { right: 4%; left: auto; top: 16%; }
        .hero-callout-3 { right: 4%; top: 50%; }
        .hero-callout-4 { left: 4%; bottom: 12%; }
        .hero-callout-5 { right: 4%; bottom: 7%; }

        #service-callouts {
            position: fixed;
            left: 0;
            top: 0;
            z-index: 24;
            width: 100vw;
            height: 100vh;
            overflow: hidden;
            pointer-events: none;
        }

        .service-callout-lines {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            overflow: visible;
            pointer-events: none;
        }

        .service-callout-line {
            stroke: rgba(23, 25, 28, 0.46);
            stroke-width: 1;
            fill: none;
            stroke-linecap: round;
            vector-effect: non-scaling-stroke;
        }

        .service-hotspot-dot {
            position: absolute;
            width: 0.68rem;
            height: 0.68rem;
            border: 1px solid rgba(255, 255, 255, 0.96);
            border-radius: 999px;
            background: rgba(239, 35, 42, 0.96);
            box-shadow: 0 0 0 0 rgba(239, 35, 42, 0.52), 0 0 1rem rgba(239, 35, 42, 0.42);
            opacity: 0;
            transform: translate(-50%, -50%) scale(0.4);
            animation: premiumPulse 2.2s ease-out infinite;
            pointer-events: none;
        }

        .service-dot-ppf { left: 72%; top: 51%; }
        .service-dot-chrome { left: 56%; top: 39%; }
        .service-dot-partial { left: 64%; top: 42%; }

        .service-callout-card {
            position: absolute;
            width: clamp(13.25rem, 17vw, 16.75rem);
            min-height: 7.6rem;
            border: 1px solid rgba(255, 255, 255, 0.22);
            background:
                linear-gradient(145deg, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0.21)),
                rgba(247, 247, 244, 0.38);
            box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.17), inset 0 1px 0 rgba(255, 255, 255, 0.48);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            opacity: 0;
            transform: translateY(1rem) scale(0.96);
            pointer-events: auto;
        }

        .service-callout-card::before {
            content: "";
            position: absolute;
            left: 1.15rem;
            top: 1.15rem;
            width: 0.38rem;
            height: 0.38rem;
            border-radius: 999px;
            background: var(--brand);
            box-shadow: 0 0 1rem rgba(239, 35, 42, 0.72);
        }

        .service-callout-card h3 {
            margin: 0 0 0.7rem;
            padding-left: 1.1rem;
            color: var(--ink);
            font-size: clamp(1rem, 1.1vw, 1.16rem);
            font-weight: 800;
            letter-spacing: 0;
            line-height: 1.05;
        }

        .service-callout-card p {
            margin: 0;
            color: rgba(23, 25, 28, 0.68);
            font-size: 0.84rem;
            font-weight: 300;
            line-height: 1.45;
        }

        .service-callout-ppf { right: 6%; top: 14%; }
        .service-callout-chrome { left: 5%; top: 22%; }
        .service-callout-partial { left: 41%; top: 8%; }
        .service-callout-architecture { right: 7%; bottom: 10%; }
        .service-callout-interior { left: 7%; bottom: 10%; }

        .service-callout-floating {
            background:
                linear-gradient(145deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.18)),
                rgba(247, 247, 244, 0.3);
        }

        .service-callout-floating::before {
            display: none;
        }

        .service-callout-floating h3 {
            padding-left: 0;
        }

        #mobile-focus-callouts {
            position: fixed;
            left: 0;
            top: 0;
            width: 100vw;
            height: var(--app-height, 100vh);
            overflow: visible;
        }

        .mobile-focus-lines {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            overflow: visible;
            pointer-events: none;
        }

        .mobile-focus-line {
            stroke: rgba(23, 25, 28, 0.42);
            stroke-width: 1;
            fill: none;
            stroke-linecap: round;
            vector-effect: non-scaling-stroke;
            opacity: 0;
        }

        .mobile-focus-dot {
            position: absolute;
            left: 50%;
            top: 46%;
            width: 0.7rem;
            height: 0.7rem;
            border: 1px solid rgba(255, 255, 255, 0.96);
            border-radius: 999px;
            background: rgba(239, 35, 42, 0.96);
            box-shadow: 0 0 0 0 rgba(239, 35, 42, 0.52), 0 0 1rem rgba(239, 35, 42, 0.42);
            opacity: 0;
            transform: translate(-50%, -50%) scale(0.5);
            animation: premiumPulse 2.2s ease-out infinite;
            pointer-events: none;
        }

        .mobile-focus-slot {
            position: absolute;
            left: 50%;
            width: min(21.25rem, calc(100vw - 2rem));
            height: clamp(7.75rem, 19svh, 8.55rem);
            transform: translateX(-50%);
            contain: layout;
            overflow: visible;
            pointer-events: none;
        }

        .mobile-focus-slot-top {
            top: max(calc(env(safe-area-inset-top) + 5.75rem), calc(var(--app-height, 100svh) * 0.12));
        }

        .mobile-focus-slot-bottom {
            bottom: max(calc(env(safe-area-inset-bottom) + 4.75rem), calc(var(--app-height, 100svh) * 0.075));
        }

        .mobile-focus-card {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
            border: 1px solid rgba(255, 255, 255, 0.42);
            background:
                linear-gradient(145deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.28)),
                rgba(247, 247, 244, 0.42);
            box-shadow: 0 1.4rem 3.8rem rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.55);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            padding: 1.05rem 1.2rem;
            opacity: 0;
            transform: translateY(1rem) scale(0.98);
            pointer-events: none;
        }

        .mobile-focus-card::before {
            content: "";
            position: absolute;
            left: 1.2rem;
            top: 1.12rem;
            width: 0.38rem;
            height: 0.38rem;
            border-radius: 999px;
            background: var(--brand);
            box-shadow: 0 0 1rem rgba(239, 35, 42, 0.72);
        }

        .mobile-focus-card h3 {
            margin: 0 0 0.75rem;
            padding-left: 1.05rem;
            color: var(--ink);
            font-size: 1.02rem;
            font-weight: 800;
            letter-spacing: 0;
            line-height: 1.05;
        }

        .mobile-focus-card p {
            margin: 0;
            color: rgba(23, 25, 28, 0.68);
            font-size: 0.82rem;
            font-weight: 300;
            line-height: 1.38;
        }

        .mobile-focus-floating::before {
            display: none;
        }

        .mobile-focus-floating h3 {
            padding-left: 0;
        }

        .mobile-story-pricing-cta {
            display: none;
        }

        .portfolio-frame,
        .portfolio-media,
        .portfolio-image {
            will-change: transform, opacity;
        }

        .portfolio-image {
            min-height: 130%;
            margin-top: -15%;
        }

        .portfolio-social {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 0.9rem;
            max-width: 100%;
            text-align: center;
        }

        .portfolio-social-label {
            color: rgba(23, 25, 28, 0.38);
            font-size: 0.58rem;
            font-weight: 800;
            letter-spacing: 0.36em;
            line-height: 1;
            text-transform: uppercase;
        }

        .portfolio-social-links {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            gap: 0.85rem;
            max-width: 100%;
        }

        .portfolio-social-link {
            position: relative;
            display: inline-flex;
            min-height: 3.5rem;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            overflow: hidden;
            border: 1px solid rgba(23, 25, 28, 0.14);
            background: #17191c;
            color: #fff;
            padding: 0 1.55rem;
            font-size: 0.62rem;
            font-weight: 800;
            letter-spacing: 0.28em;
            line-height: 1;
            text-decoration: none;
            text-transform: uppercase;
            white-space: nowrap;
            transition: transform 420ms ease, border-color 420ms ease, background-color 420ms ease, box-shadow 420ms ease;
        }

        .portfolio-social-link::after {
            content: "";
            position: absolute;
            inset-inline: 1.15rem;
            bottom: 0.72rem;
            height: 1px;
            background: #ef232a;
            transform: scaleX(0);
            transform-origin: left center;
            transition: transform 420ms ease;
        }

        .portfolio-social-link:hover,
        .portfolio-social-link:focus-visible {
            transform: translateY(-0.18rem);
            border-color: rgba(239, 35, 42, 0.58);
            background: #111417;
            box-shadow: 0 1.1rem 2.5rem rgba(23, 25, 28, 0.18);
        }

        .portfolio-social-link:hover::after,
        .portfolio-social-link:focus-visible::after {
            transform: scaleX(1);
        }

        .portfolio-social-arrow {
            color: rgba(255, 255, 255, 0.72);
            transition: color 420ms ease, transform 420ms ease;
        }

        .portfolio-social-link:hover .portfolio-social-arrow,
        .portfolio-social-link:focus-visible .portfolio-social-arrow {
            color: #ef232a;
            transform: translate(0.16rem, -0.16rem);
        }

        .pricing-copy-layout {
            display: grid;
            gap: 2rem;
        }

        .pricing-cards {
            display: grid;
            gap: 1.25rem;
            margin-top: 3.5rem;
        }

        .pricing-note {
            position: relative;
            padding-left: 1.15rem;
        }

        .pricing-note::before {
            content: "";
            position: absolute;
            left: 0;
            top: 0.72em;
            width: 0.42rem;
            height: 0.42rem;
            border-radius: 999px;
            background: var(--brand);
            box-shadow: 0 0 1rem rgba(239, 35, 42, 0.42);
        }

        .pricing-card-shell {
            min-width: 0;
        }

        .pricing-tier-card {
            position: relative;
            display: flex;
            min-height: 34rem;
            height: 100%;
            flex-direction: column;
            justify-content: space-between;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.1);
            background:
                linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
                #202225;
            padding: clamp(1.45rem, 2.4vw, 2rem);
            box-shadow: 0 1.35rem 3.5rem rgba(0, 0, 0, 0.16);
            transition: transform 500ms ease, border-color 500ms ease, box-shadow 500ms ease, background 500ms ease;
        }

        .pricing-tier-card::before {
            content: "";
            position: absolute;
            inset: 0;
            pointer-events: none;
            background:
                radial-gradient(circle at 16% 0%, rgba(239, 35, 42, 0.16), transparent 32%),
                linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 26%);
            opacity: 0;
            transition: opacity 500ms ease;
        }

        .pricing-tier-card::after {
            content: "";
            position: absolute;
            left: 1.6rem;
            right: 1.6rem;
            top: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--brand), rgba(239, 35, 42, 0), transparent);
            opacity: 0.62;
        }

        .pricing-tier-card:hover,
        .pricing-tier-card:focus-within {
            transform: translateY(-0.5rem);
            border-color: rgba(239, 35, 42, 0.55);
            box-shadow: 0 2rem 4.75rem rgba(0, 0, 0, 0.22), 0 0 2.75rem rgba(239, 35, 42, 0.11);
        }

        .pricing-tier-card:hover::before,
        .pricing-tier-card:focus-within::before {
            opacity: 1;
        }

        .pricing-tier-card > * {
            position: relative;
            z-index: 1;
        }

        .pricing-tier-card--featured {
            border-color: rgba(239, 35, 42, 0.34);
            background:
                linear-gradient(145deg, rgba(239, 35, 42, 0.11), rgba(255, 255, 255, 0.035) 42%, rgba(255, 255, 255, 0.018)),
                #222427;
            box-shadow: 0 1.6rem 4.25rem rgba(0, 0, 0, 0.22), 0 0 3.5rem rgba(239, 35, 42, 0.08);
        }

        .pricing-tier-card--ceramic {
            background:
                linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018)),
                #1c1e21;
        }

        .pricing-title-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
        }

        .pricing-kicker,
        .pricing-badge {
            display: inline-flex;
            align-items: center;
            color: rgba(255, 255, 255, 0.42);
            font-size: 0.58rem;
            font-weight: 800;
            letter-spacing: 0.28em;
            line-height: 1;
            text-transform: uppercase;
        }

        .pricing-badge {
            border: 1px solid rgba(239, 35, 42, 0.44);
            color: rgba(255, 255, 255, 0.72);
            letter-spacing: 0.18em;
            padding: 0.42rem 0.55rem;
        }

        .pricing-tier-card h3 {
            margin: 1.35rem 0 0;
            color: #ffffff;
            font-size: clamp(2.1rem, 4vw, 3rem);
            font-weight: 800;
            letter-spacing: 0;
            line-height: 0.96;
        }

        .pricing-card-copy {
            margin: 1rem 0 0;
            max-width: 22rem;
            color: rgba(255, 255, 255, 0.58);
            font-size: 0.95rem;
            font-weight: 300;
            line-height: 1.65;
        }

        .pricing-list {
            display: grid;
            margin: 2rem 0 0;
            padding: 0;
            list-style: none;
        }

        .pricing-list li {
            display: flex;
            align-items: baseline;
            justify-content: space-between;
            gap: 1rem;
            min-width: 0;
            border-top: 1px solid rgba(255, 255, 255, 0.095);
            padding: 0.92rem 0;
            color: rgba(255, 255, 255, 0.72);
            font-size: 0.94rem;
            line-height: 1.35;
        }

        .pricing-list li:last-child {
            border-bottom: 1px solid rgba(255, 255, 255, 0.095);
        }

        .pricing-list span {
            min-width: 0;
        }

        .pricing-list strong {
            flex: 0 0 auto;
            color: #ffffff;
            font-size: 0.98rem;
            font-weight: 800;
            white-space: nowrap;
        }

        .pricing-request {
            margin-top: 2.25rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding: 1.35rem 0;
            color: #ffffff;
            font-size: clamp(1.8rem, 3vw, 2.55rem);
            font-weight: 800;
            line-height: 1.02;
        }

        .pricing-cta {
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
            margin-top: 2.25rem;
            width: fit-content;
            color: rgba(255, 255, 255, 0.56);
            font-size: 0.58rem;
            font-weight: 800;
            letter-spacing: 0.24em;
            line-height: 1;
            text-transform: uppercase;
            transition: color 420ms ease, opacity 420ms ease, transform 420ms ease;
        }

        .pricing-cta span {
            color: rgba(239, 35, 42, 0.72);
            transition: transform 420ms ease, color 420ms ease;
        }

        .pricing-tier-card:hover .pricing-cta,
        .pricing-tier-card:focus-within .pricing-cta {
            color: #ffffff;
            transform: translateY(-1px);
        }

        .pricing-tier-card:hover .pricing-cta span,
        .pricing-tier-card:focus-within .pricing-cta span {
            color: var(--brand);
            transform: translate(0.18rem, -0.18rem);
        }

        @media (min-width: 768px) {
            .pricing-cards {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .pricing-tier-card--ceramic {
                grid-column: 1 / -1;
            }
        }

        @media (min-width: 1024px) {
            .pricing-copy-layout {
                grid-template-columns: 1fr 0.68fr;
                align-items: end;
            }

            .pricing-copy-layout .pricing-note {
                justify-self: end;
            }

            .pricing-cards {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }

            .pricing-tier-card--ceramic {
                grid-column: auto;
            }
        }

        .faq-section {
            position: relative;
            isolation: isolate;
        }

        .faq-shell {
            position: relative;
        }

        .faq-eyebrow {
            display: block;
            margin-bottom: 1.25rem;
            color: rgba(23, 25, 28, 0.36);
            font-size: 0.62rem;
            font-weight: 800;
            letter-spacing: 0.36em;
            line-height: 1;
            text-transform: uppercase;
        }

        .faq-intro h2 {
            margin: 0;
            color: #17191c;
            font-size: clamp(3rem, 7vw, 5.8rem);
            font-weight: 800;
            letter-spacing: 0;
            line-height: 0.92;
        }

        .faq-intro p {
            max-width: 42rem;
            margin: 2rem auto 0;
            color: rgba(23, 25, 28, 0.62);
            font-size: 1.08rem;
            font-weight: 300;
            letter-spacing: 0;
            line-height: 1.65;
        }

        .faq-list {
            margin-top: clamp(3rem, 7vw, 5rem);
            border-top: 1px solid rgba(23, 25, 28, 0.12);
        }

        .faq-item {
            border-bottom: 1px solid rgba(23, 25, 28, 0.12);
            transition: border-color 320ms ease;
        }

        .faq-item h3 {
            margin: 0;
        }

        .faq-item.is-open {
            border-color: rgba(239, 35, 42, 0.46);
        }

        .faq-question {
            display: flex;
            width: 100%;
            align-items: center;
            justify-content: space-between;
            gap: 1.5rem;
            border: 0;
            background: transparent;
            color: #17191c;
            cursor: pointer;
            font-family: inherit;
            padding: 1.55rem 0;
            text-align: left;
            transition: color 320ms ease;
        }

        .faq-question:hover,
        .faq-question:focus-visible,
        .faq-item.is-open .faq-question {
            color: var(--brand);
        }

        .faq-question:focus-visible {
            outline: 2px solid rgba(239, 35, 42, 0.36);
            outline-offset: 0.35rem;
        }

        .faq-question > span:first-child {
            font-size: clamp(1.05rem, 2.4vw, 1.42rem);
            font-weight: 800;
            letter-spacing: 0;
            line-height: 1.18;
        }

        .faq-icon {
            position: relative;
            flex: 0 0 auto;
            width: 2.35rem;
            height: 2.35rem;
            border: 1px solid rgba(23, 25, 28, 0.16);
            background: rgba(255, 255, 255, 0.42);
            transition: background-color 320ms ease, border-color 320ms ease, transform 320ms ease;
        }

        .faq-icon::before,
        .faq-icon::after {
            content: "";
            position: absolute;
            left: 50%;
            top: 50%;
            width: 0.82rem;
            height: 1px;
            background: currentColor;
            transform: translate(-50%, -50%);
            transition: transform 320ms ease, background-color 320ms ease;
        }

        .faq-icon::after {
            transform: translate(-50%, -50%) rotate(90deg);
        }

        .faq-item.is-open .faq-icon {
            border-color: #17191c;
            background: #17191c;
            color: #fff;
            transform: translateY(-0.08rem);
        }

        .faq-item.is-open .faq-icon::after {
            transform: translate(-50%, -50%) rotate(0deg);
        }

        .faq-answer {
            padding: 0 4.25rem 1.75rem 0;
        }

        .faq-answer p {
            max-width: 48rem;
            margin: 0;
            color: rgba(23, 25, 28, 0.66);
            font-size: 1rem;
            font-weight: 300;
            letter-spacing: 0;
            line-height: 1.72;
        }

        @media (min-width: 1024px) {
            .faq-section {
                padding-bottom: 9.5rem;
            }

            .faq-list {
                max-width: 60rem;
                margin-inline: auto;
                border-top-color: rgba(23, 25, 28, 0.1);
            }

            .faq-item {
                border-bottom-color: rgba(23, 25, 28, 0.1);
            }

            .faq-item.is-open {
                border-bottom-color: rgba(239, 35, 42, 0.5);
            }

            .faq-question {
                padding: 1.85rem 0;
            }

            .faq-question > span:first-child {
                max-width: 44rem;
            }

            .faq-icon {
                margin-right: 0.35rem;
            }

            .faq-answer {
                padding: 0 6rem 2.15rem 0;
            }

            .faq-answer p {
                max-width: 42rem;
                font-size: 1.03rem;
                line-height: 1.78;
            }
        }

        @media (max-width: 520px) {
            .portfolio-social {
                gap: 0.72rem;
            }

            .portfolio-social-links {
                width: 100%;
                flex-direction: row;
                align-items: center;
                gap: 0.55rem;
            }

            .portfolio-social-link {
                min-height: 2.8rem;
                padding-inline: 0.92rem;
                font-size: 0.54rem;
                letter-spacing: 0.15em;
            }
        }

        @media (max-width: 355px) {
            .portfolio-social-links {
                flex-direction: column;
            }

            .portfolio-social-link {
                min-width: 11.5rem;
                max-width: 100%;
            }
        }

        @media (max-width: 640px) {
            .pricing-note {
                max-width: 100%;
                padding-left: 1rem;
            }

            .pricing-tier-card {
                min-height: auto;
                padding: 1.35rem;
            }

            .pricing-tier-card:hover,
            .pricing-tier-card:focus-within {
                transform: none;
            }

            .pricing-tier-card::after {
                left: 1.35rem;
                right: 1.35rem;
            }

            .pricing-title-row {
                align-items: flex-start;
                flex-direction: column;
                gap: 0.8rem;
            }

            .pricing-tier-card h3 {
                font-size: clamp(2rem, 11vw, 2.75rem);
            }

            .pricing-card-copy {
                font-size: 0.92rem;
                line-height: 1.58;
            }

            .pricing-list {
                margin-top: 1.55rem;
            }

            .pricing-list li {
                gap: 0.8rem;
                padding: 0.84rem 0;
                font-size: 0.9rem;
            }

            .pricing-list strong {
                font-size: 0.94rem;
            }

            .pricing-request {
                margin-top: 1.8rem;
                font-size: 2rem;
            }

            .pricing-cta {
                min-height: 2.75rem;
                align-items: center;
            }

            .faq-intro {
                text-align: left;
            }

            .faq-intro h2 {
                font-size: clamp(2.6rem, 14vw, 4.2rem);
            }

            .faq-intro p {
                margin-top: 1.4rem;
                font-size: 0.98rem;
                line-height: 1.58;
            }

            .faq-list {
                margin-top: 2.5rem;
            }

            .faq-question {
                gap: 1rem;
                padding: 1.25rem 0;
            }

            .faq-question > span:first-child {
                font-size: 1.02rem;
            }

            .faq-icon {
                width: 2rem;
                height: 2rem;
            }

            .faq-answer {
                padding: 0 0 1.35rem;
            }

            .faq-answer p {
                font-size: 0.94rem;
                line-height: 1.62;
            }
        }

        .page-transition-overlay {
            position: fixed;
            inset: 0;
            z-index: 9999;
            display: grid;
            place-items: center;
            background: #0a0a0a;
            clip-path: polygon(-42% 0, -8% 0, -48% 100%, -82% 100%);
            opacity: 0;
            pointer-events: none;
            will-change: clip-path, opacity;
        }

        .page-transition-overlay.is-active {
            pointer-events: auto;
        }

        .page-transition-brand {
            color: rgba(255, 255, 255, 0.96);
            font-size: clamp(0.86rem, 1.2vw, 1.35rem);
            font-weight: 700;
            letter-spacing: 0.48em;
            line-height: 1;
            opacity: 0;
            text-transform: uppercase;
            transform: translateY(1rem);
            white-space: nowrap;
        }

        .page-transition-brand span {
            color: rgba(255, 255, 255, 0.5);
        }

        [data-transition-page="legal"] .page-transition-overlay {
            clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
            opacity: 1;
            pointer-events: auto;
        }

        [data-transition-page="legal"] .page-transition-brand {
            opacity: 1;
            transform: translateY(0);
        }

        .legal-page {
            min-height: 100vh;
            background:
                radial-gradient(circle at 20% 0%, rgba(239, 35, 42, 0.1), transparent 28rem),
                linear-gradient(135deg, rgba(255, 255, 255, 0.045), transparent 32rem),
                #0a0a0a;
            color: #ffffff;
        }

        .legal-card {
            border: 1px solid rgba(255, 255, 255, 0.1);
            background:
                linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035)),
                rgba(255, 255, 255, 0.05);
            box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
        }

        .legal-content h2 {
            margin-top: 2.5rem;
            color: rgba(255, 255, 255, 0.94);
            font-size: 1.1rem;
            font-weight: 800;
            letter-spacing: 0;
        }

        .legal-content p,
        .legal-content li {
            color: rgba(209, 213, 219, 0.78);
            line-height: 1.85;
        }

        .legal-content a {
            color: var(--brand);
            transition: color 0.25s ease;
        }

        .legal-content a:hover {
            color: #ffffff;
        }

        @media (prefers-reduced-motion: reduce) {
            .page-transition-overlay {
                display: none;
            }
        }

        @media (max-width: 767px) {
            html,
            body {
                max-width: 100%;
                overflow-x: hidden !important;
                -ms-overflow-style: none;
                scrollbar-width: none;
            }

            html::-webkit-scrollbar,
            body::-webkit-scrollbar {
                width: 0;
                height: 0;
                display: none;
            }

            #site-header {
                position: fixed !important;
                top: 0 !important;
                left: 0 !important;
                right: 0 !important;
                height: 5rem !important;
                min-height: 5rem;
                z-index: 1000;
                mix-blend-mode: difference;
                transform: translate3d(0, 0, 0);
                -webkit-transform: translate3d(0, 0, 0);
                transition: none !important;
                will-change: transform;
                contain: paint;
            }

            #site-header.header-frosted {
                background: transparent;
                backdrop-filter: none;
                -webkit-backdrop-filter: none;
                box-shadow: none;
                mix-blend-mode: difference;
            }

            #home {
                height: var(--app-height, 100svh);
                min-height: var(--app-height, 100svh);
            }

            #canvas-container,
            #mobile-focus-callouts,
            .mobile-focus-lines {
                width: 100%;
                max-width: 100%;
            }

            #canvas-container canvas,
            .canvas-vignette {
                max-width: 100%;
            }

            #hero-text-panel {
                height: 80%;
                min-height: 0;
                overflow: visible;
                padding-bottom: clamp(6.5rem, 14svh, 8.5rem);
            }

            #hero-copy {
                position: relative;
                z-index: 30;
            }

            .eyebrow {
                margin-bottom: 1rem;
                font-size: 0.54rem;
            }

            #hero-callouts,
            #service-callouts {
                display: none;
            }

            .hero-copy-lock {
                width: min(100%, 21rem);
            }

            #hero-copy p {
                font-size: clamp(1rem, 4.6vw, 1.22rem);
                line-height: 1.22;
                margin-bottom: 2rem;
            }

            #hero-copy .hero-actions {
                position: relative;
                z-index: 40;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 1.15rem;
                margin-top: 1.75rem;
                margin-bottom: clamp(6.75rem, 15svh, 9rem);
                width: 100%;
                overflow: visible;
            }

            #hero-copy .hero-actions > a:first-child {
                min-height: 3.5rem;
                height: auto;
                width: min(17rem, 82vw);
                padding-top: 1rem;
                padding-bottom: 1rem;
            }

            #hero-copy .hero-actions > a {
                position: relative;
                z-index: 1;
                justify-content: center;
                align-items: center;
                overflow: visible;
                line-height: 1.1;
                text-align: center;
                white-space: nowrap;
            }

            .canvas-vignette {
                background:
                    linear-gradient(180deg, rgba(247, 247, 244, 0.92), rgba(247, 247, 244, 0.58) 30%, rgba(247, 247, 244, 0.1) 44%, rgba(247, 247, 244, 0) 56%, rgba(247, 247, 244, 0) 82%, rgba(247, 247, 244, 0.72));
            }

            #scroll-indicator {
                display: none;
            }

            .mobile-story-pricing-cta {
                position: fixed;
                left: auto;
                right: 0;
                bottom: max(calc(env(safe-area-inset-bottom) + 1rem), 1.15rem);
                z-index: 48;
                display: flex;
                justify-content: flex-end;
                padding: 0 1rem;
                opacity: 0;
                visibility: hidden;
                pointer-events: none;
                transform: translateY(0.45rem);
            }

            .mobile-story-pricing-cta a {
                display: inline-flex;
                min-height: 2.55rem;
                max-width: calc(100vw - 2rem);
                align-items: center;
                justify-content: center;
                gap: 0.45rem;
                border: 1px solid rgba(23, 25, 28, 0.14);
                background: rgba(247, 247, 244, 0.74);
                padding: 0.66rem 0.82rem;
                color: rgba(23, 25, 28, 0.74);
                font-size: 0.53rem;
                font-weight: 800;
                line-height: 1;
                letter-spacing: 0.16em;
                text-transform: uppercase;
                white-space: nowrap;
                box-shadow: 0 0.7rem 1.8rem rgba(0, 0, 0, 0.08);
                backdrop-filter: blur(14px);
                -webkit-backdrop-filter: blur(14px);
                pointer-events: auto;
                transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease, transform 180ms ease;
            }

            .mobile-story-pricing-cta a span {
                display: inline-block;
                transition: transform 180ms ease;
            }

            .mobile-story-pricing-cta a:hover,
            .mobile-story-pricing-cta a:focus-visible {
                border-color: rgba(239, 35, 42, 0.45);
                background: rgba(255, 255, 255, 0.9);
                color: #17191c;
                transform: translateY(-1px);
            }

            .mobile-story-pricing-cta a:hover span,
            .mobile-story-pricing-cta a:focus-visible span {
                transform: translateX(0.16rem);
            }
        }

        @media (min-width: 768px) {
            .mobile-header-phone {
                display: none;
            }

            .desktop-header-appointment {
                display: inline-flex;
            }
        }

        @media (min-width: 768px) and (max-width: 1023px) {
            .hero-copy-lock {
                width: min(100%, 42rem);
            }

            .hero-title {
                font-size: clamp(3.8rem, 7.2vw, 5.3rem);
                line-height: 0.88;
            }

            #hero-copy p {
                max-width: 36rem;
                margin-left: auto;
                margin-right: auto;
                font-size: clamp(1.12rem, 2.2vw, 1.45rem);
            }

            .hero-callout-card {
                width: min(13.5rem, 30vw);
            }

            .hero-callout-1 { left: 7%; top: 11%; }
            .hero-callout-2 { left: 38%; top: 12%; }
            .hero-callout-3 { right: 6%; top: 30%; }
            .hero-callout-4 { left: 6%; bottom: 14%; }
            .hero-callout-5 { right: 7%; bottom: 12%; }
        }

        @media (min-width: 1024px) {
            .hero-copy-lock {
                width: clamp(22rem, 37vw, 44rem);
                min-width: clamp(22rem, 37vw, 44rem);
                margin: 0;
                text-align: left;
            }

            .hero-title {
                font-size: clamp(4.6rem, 8.8vw, 10rem);
                line-height: 0.82;
            }

            .hero-callout-1 { left: 14%; top: 15%; }
            .hero-callout-2 { left: 43%; top: 16%; }
            .hero-callout-3 { right: 8%; top: 22%; }
            .hero-callout-4 { left: 8%; bottom: 15%; }
            .hero-callout-5 { right: 10%; bottom: 12%; }
        }

        #contact .wpcf7 {
            width: 100%;
        }

        #contact .wpcf7-form {
            display: block;
        }

        #contact .wpcf7-form p,
        #contact .wpcf7-form .pv-cf7-field,
        #contact .wpcf7-form .pv-cf7-submit {
            min-width: 0;
            margin: 0;
        }

        #contact .pv-cf7-grid {
            display: grid;
            grid-template-columns: repeat(6, minmax(0, 1fr));
            gap: 0.9rem 1rem;
        }

        #contact .pv-cf7-span-2 {
            grid-column: span 2;
        }

        #contact .pv-cf7-span-3 {
            grid-column: span 3;
        }

        #contact .pv-cf7-span-full,
        #contact .wpcf7-form > p:nth-of-type(n+5) {
            grid-column: 1 / -1;
        }

        #contact .wpcf7-form label {
            display: grid;
            gap: 0.5rem;
            color: rgba(23, 25, 28, 0.55);
            font-size: 0.62rem;
            font-weight: 800;
            letter-spacing: 0.28em;
            text-transform: uppercase;
        }

        #contact .wpcf7-form .wpcf7-form-control-wrap {
            display: block;
            width: 100%;
        }

        #contact .wpcf7-form input:not([type="submit"]),
        #contact .wpcf7-form select,
        #contact .wpcf7-form textarea {
            width: 100%;
            min-height: 3.5rem;
            border: 1px solid rgba(23, 25, 28, 0.12);
            background: #ffffff;
            padding: 0 1rem;
            color: #17191c;
            font-size: 1rem;
            font-weight: 500;
            letter-spacing: 0;
            outline: none;
            transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
        }

        #contact .wpcf7-form select {
            appearance: none;
            background-image: linear-gradient(45deg, transparent 50%, rgba(23, 25, 28, 0.55) 50%), linear-gradient(135deg, rgba(23, 25, 28, 0.55) 50%, transparent 50%);
            background-position: calc(100% - 1.2rem) 50%, calc(100% - 0.85rem) 50%;
            background-repeat: no-repeat;
            background-size: 0.35rem 0.35rem, 0.35rem 0.35rem;
        }

        #contact .wpcf7-form textarea {
            min-height: 9.75rem;
            padding-top: 1rem;
            resize: vertical;
        }

        #contact .pv-cf7-upload {
            display: grid;
            gap: 0.45rem;
        }

        #contact .pv-cf7-help {
            color: rgba(23, 25, 28, 0.45);
            font-size: 0.74rem;
            font-weight: 500;
            letter-spacing: 0;
            line-height: 1.45;
        }

        #contact .wpcf7-form input[type="file"] {
            display: flex;
            align-items: center;
            min-height: 3.75rem;
            padding: 0.72rem 1rem;
            cursor: pointer;
            color: rgba(23, 25, 28, 0.58);
        }

        #contact .wpcf7-form input[type="file"]::file-selector-button {
            margin-right: 0.9rem;
            border: 1px solid rgba(23, 25, 28, 0.18);
            background: #17191c;
            color: #ffffff;
            cursor: pointer;
            font-size: 0.62rem;
            font-weight: 800;
            letter-spacing: 0.18em;
            line-height: 1;
            padding: 0.82rem 1rem;
            text-transform: uppercase;
            transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
        }

        #contact .wpcf7-form input[type="file"]:hover::file-selector-button,
        #contact .wpcf7-form input[type="file"]:focus::file-selector-button {
            background: #ef232a;
            border-color: #ef232a;
            transform: translateY(-1px);
        }

        #contact .wpcf7-form input::placeholder,
        #contact .wpcf7-form textarea::placeholder {
            color: rgba(23, 25, 28, 0.3);
        }

        #contact .wpcf7-form input:not([type="submit"]):focus,
        #contact .wpcf7-form select:focus,
        #contact .wpcf7-form textarea:focus {
            border-color: #ef232a;
            box-shadow: 0 0 0 3px rgba(239, 35, 42, 0.08);
        }

        #contact .wpcf7-form input[type="submit"] {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 3.5rem;
            margin-top: 0.5rem;
            border: 0;
            background: #17191c;
            padding: 0 1.75rem;
            color: #ffffff;
            cursor: pointer;
            font-size: 0.62rem;
            font-weight: 800;
            letter-spacing: 0.28em;
            text-transform: uppercase;
            transition: background-color 0.2s ease;
        }

        #contact .wpcf7-form input[type="submit"]:hover,
        #contact .wpcf7-form input[type="submit"]:focus {
            background: #ef232a;
        }

        #contact .wpcf7-spinner {
            margin: 0.75rem auto 0;
        }

        #contact .wpcf7-not-valid-tip {
            margin-top: 0.45rem;
            color: #ef232a;
            font-size: 0.72rem;
            font-weight: 600;
            letter-spacing: 0;
            text-transform: none;
        }

        #contact .wpcf7 form .wpcf7-response-output {
            grid-column: 1 / -1;
            margin: 0.5rem 0 0;
            border: 1px solid rgba(23, 25, 28, 0.16);
            padding: 0.85rem 1rem;
            color: rgba(23, 25, 28, 0.72);
            font-size: 0.9rem;
            line-height: 1.5;
            letter-spacing: 0;
            text-transform: none;
        }

        @media (max-width: 767px) {
            #contact .wpcf7-form {
                display: block;
            }

            #contact .pv-cf7-grid {
                grid-template-columns: 1fr;
                gap: 0.85rem;
            }

            #contact .pv-cf7-span-2,
            #contact .pv-cf7-span-3,
            #contact .pv-cf7-span-full,
            #contact .wpcf7-form > p {
                grid-column: 1 / -1;
            }

            #contact .wpcf7-form input:not([type="submit"]),
            #contact .wpcf7-form select,
            #contact .wpcf7-form textarea {
                min-height: 3.65rem;
            }

            #contact .wpcf7-form input[type="file"] {
                min-height: 3.85rem;
                padding: 0.7rem;
            }

            #contact .wpcf7-form input[type="file"]::file-selector-button {
                margin-right: 0.7rem;
                padding: 0.78rem 0.82rem;
            }
        }

        body > [consent-skip-blocker="1"][data-bg] {
            font-family: "Inter", Arial, sans-serif !important;
        }

        body > [consent-skip-blocker="1"][data-bg] > dialog {
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            padding: 1rem !important;
            overflow: auto !important;
        }

        body > [consent-skip-blocker="1"][data-bg] > dialog > div {
            width: min(31.5rem, calc(100vw - 2rem)) !important;
            max-height: min(44rem, calc(100svh - 2rem)) !important;
            border: 1px solid rgba(17, 17, 17, 0.14) !important;
            border-radius: 0 !important;
            background: #ffffff !important;
            color: #17191c !important;
            box-shadow: 0 2.5rem 6rem rgba(15, 17, 21, 0.26) !important;
            overflow: hidden auto !important;
        }

        body > [consent-skip-blocker="1"][data-bg] > dialog > div > div {
            border-radius: 0 !important;
            background: #ffffff !important;
        }

        body > [consent-skip-blocker="1"][data-bg] > dialog [role="heading"] {
            color: #17191c !important;
            font-family: "Inter", Arial, sans-serif !important;
            font-size: clamp(1.35rem, 2.6vw, 1.75rem) !important;
            font-weight: 800 !important;
            letter-spacing: 0 !important;
            line-height: 1.05 !important;
        }

        body > [consent-skip-blocker="1"][data-bg] > dialog p,
        body > [consent-skip-blocker="1"][data-bg] > dialog span,
        body > [consent-skip-blocker="1"][data-bg] > dialog div {
            font-family: "Inter", Arial, sans-serif !important;
        }

        body > [consent-skip-blocker="1"][data-bg] > dialog p {
            color: rgba(23, 25, 28, 0.76) !important;
            font-size: 0.86rem !important;
            font-weight: 400 !important;
            line-height: 1.55 !important;
        }

        body > [consent-skip-blocker="1"][data-bg] > dialog a {
            color: rgba(23, 25, 28, 0.68) !important;
            text-decoration-thickness: 1px !important;
            text-underline-offset: 0.22em !important;
        }

        body > [consent-skip-blocker="1"][data-bg] > dialog a[role="button"] {
            display: inline-flex !important;
            align-items: center !important;
            justify-content: center !important;
            width: 100% !important;
            min-height: 3.2rem !important;
            border: 1px solid rgba(23, 25, 28, 0.14) !important;
            border-radius: 0 !important;
            background: #17191c !important;
            color: #ffffff !important;
            font-family: "Inter", Arial, sans-serif !important;
            font-size: 0.58rem !important;
            font-weight: 800 !important;
            letter-spacing: 0.22em !important;
            line-height: 1.2 !important;
            text-align: center !important;
            text-transform: uppercase !important;
            text-decoration: none !important;
            transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease !important;
        }

        body > [consent-skip-blocker="1"][data-bg] > dialog a[role="button"]:hover,
        body > [consent-skip-blocker="1"][data-bg] > dialog a[role="button"]:focus-visible {
            border-color: #ef232a !important;
            background: #ef232a !important;
            color: #ffffff !important;
        }

        body > [consent-skip-blocker="1"][data-bg] > dialog a[role="button"][class*="-ext-4-298"] {
            background: #f5f5f2 !important;
            color: #17191c !important;
        }

        body > [consent-skip-blocker="1"][data-bg] > dialog a[role="button"][class*="-ext-4-298"]:hover,
        body > [consent-skip-blocker="1"][data-bg] > dialog a[role="button"][class*="-ext-4-298"]:focus-visible {
            border-color: rgba(23, 25, 28, 0.22) !important;
            background: #e8e8e4 !important;
            color: #17191c !important;
        }

        body > [consent-skip-blocker="1"][data-bg] > dialog a[role="button"][class*="-ext-4-300"] {
            min-height: auto !important;
            border: 0 !important;
            background: transparent !important;
            color: rgba(23, 25, 28, 0.58) !important;
            font-size: 0.76rem !important;
            font-weight: 600 !important;
            letter-spacing: 0 !important;
            text-transform: none !important;
            text-decoration: underline !important;
        }

        body > [consent-skip-blocker="1"][data-bg] > dialog a[role="button"][class*="-ext-4-300"]:hover,
        body > [consent-skip-blocker="1"][data-bg] > dialog a[role="button"][class*="-ext-4-300"]:focus-visible {
            background: transparent !important;
            color: #ef232a !important;
        }

        .map-shell .rcb-content-blocker {
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            width: 100% !important;
            height: 100% !important;
            min-height: inherit !important;
            border: 0 !important;
            background:
                radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.1), transparent 34%),
                linear-gradient(135deg, #111417 0%, #17191c 52%, #0f1115 100%) !important;
            color: #ffffff !important;
            padding: clamp(1.5rem, 4vw, 3rem) !important;
            overflow: hidden !important;
        }

        .map-shell .rcb-content-blocker::before {
            content: "";
            position: absolute;
            inset: 1px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            pointer-events: none;
        }

        .map-shell .rcb-content-blocker * {
            font-family: "Inter", Arial, sans-serif !important;
            box-sizing: border-box !important;
        }

        .map-shell .rcb-content-blocker > div,
        .map-shell .rcb-content-blocker > div > div,
        .map-shell .rcb-content-blocker > div > div > div {
            width: min(100%, 28rem) !important;
            max-width: 28rem !important;
            margin: 0 auto !important;
            background: transparent !important;
        }

        .map-shell .rcb-content-blocker > div > div {
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            height: auto !important;
            min-height: 0 !important;
            overflow: visible !important;
        }

        .map-shell .rcb-content-blocker > div > div > div {
            display: flex !important;
            flex-direction: column !important;
            align-items: flex-start !important;
            justify-content: center !important;
            gap: 0 !important;
            height: auto !important;
            min-height: 0 !important;
            padding: 0 !important;
            overflow: visible !important;
        }

        .map-shell .rcb-content-blocker > div > div > div > div {
            width: 100% !important;
            height: auto !important;
            min-height: 0 !important;
            margin: 0 !important;
            padding: 0 !important;
            overflow: visible !important;
        }

        .map-shell .rcb-content-blocker a:not([role="button"]),
        .map-shell .rcb-content-blocker a[role="button"][id],
        .map-shell .rcb-content-blocker br {
            position: absolute !important;
            width: 1px !important;
            height: 1px !important;
            overflow: hidden !important;
            clip: rect(0, 0, 0, 0) !important;
            opacity: 0 !important;
            pointer-events: none !important;
            white-space: nowrap !important;
        }

        .map-shell .rcb-content-blocker [role="heading"] {
            color: #ffffff !important;
            font-size: 0 !important;
            font-weight: 800 !important;
            letter-spacing: 0 !important;
            line-height: 0 !important;
            text-align: left !important;
        }

        .map-shell .rcb-content-blocker [role="heading"]::after {
            content: "Google Maps laden";
            display: block;
            color: #ffffff;
            font-size: clamp(1.7rem, 4vw, 2.35rem);
            font-weight: 800;
            letter-spacing: 0;
            line-height: 1.02;
        }

        .map-shell .rcb-content-blocker p[role="presentation"] {
            display: block !important;
            max-width: 25rem !important;
            margin: 1rem 0 0 !important;
            color: transparent !important;
            font-size: 0 !important;
            line-height: 0 !important;
            text-align: left !important;
        }

        .map-shell .rcb-content-blocker p[role="presentation"] * {
            display: none !important;
        }

        .map-shell .rcb-content-blocker p[role="presentation"]::before {
            content: "Die Karte wird erst nach Ihrer Zustimmung geladen. Dabei können Daten an Google übertragen werden.";
            display: block;
            color: rgba(255, 255, 255, 0.72);
            font-size: 0.98rem;
            font-weight: 300;
            line-height: 1.65;
        }

        .map-shell .rcb-content-blocker a[role="button"]:not([id]) {
            display: inline-flex !important;
            align-items: center !important;
            justify-content: center !important;
            width: auto !important;
            min-width: 12rem !important;
            min-height: 3.4rem !important;
            margin-top: 1.6rem !important;
            border: 1px solid rgba(255, 255, 255, 0.16) !important;
            border-radius: 0 !important;
            background: #ffffff !important;
            padding: 0 1.75rem !important;
            color: #17191c !important;
            font-size: 0 !important;
            font-weight: 800 !important;
            line-height: 1 !important;
            position: static !important;
            text-align: center !important;
            text-decoration: none !important;
            box-shadow: 0 1.4rem 3.5rem rgba(0, 0, 0, 0.22) !important;
            transition: background-color 0.25s ease, border-color 0.25s ease !important;
        }

        .map-shell .rcb-content-blocker a[role="button"]:not([id])::after {
            content: "Karte laden";
            color: #17191c;
            font-size: 0.62rem;
            font-weight: 800;
            letter-spacing: 0.28em;
            text-transform: uppercase;
        }

        .map-shell .rcb-content-blocker a[role="button"]:not([id]):hover,
        .map-shell .rcb-content-blocker a[role="button"]:not([id]):focus-visible {
            border-color: #ef232a !important;
            background: #ef232a !important;
        }

        .map-shell .rcb-content-blocker a[role="button"]:not([id]):hover::after,
        .map-shell .rcb-content-blocker a[role="button"]:not([id]):focus-visible::after {
            color: #ffffff;
        }

        @media (max-width: 767px) {
            body > [consent-skip-blocker="1"][data-bg] > dialog {
                padding: 0.75rem !important;
            }

            body > [consent-skip-blocker="1"][data-bg] > dialog > div {
                width: 92vw !important;
                max-height: calc(100svh - 1.5rem) !important;
            }

            body > [consent-skip-blocker="1"][data-bg] > dialog a[role="button"] {
                min-height: 3.2rem !important;
                padding: 0.9rem 1rem !important;
                letter-spacing: 0.16em !important;
            }

            .map-shell .rcb-content-blocker {
                min-height: 340px !important;
                padding: 1.5rem !important;
            }

            .map-shell .rcb-content-blocker [role="heading"]::after {
                font-size: 1.75rem !important;
            }

            .map-shell .rcb-content-blocker p[role="presentation"]::before {
                font-size: 0.92rem;
                line-height: 1.55;
            }

            .map-shell .rcb-content-blocker a[role="button"]:not([id]) {
                width: 100% !important;
                max-width: 17.5rem !important;
                margin-top: 1.25rem !important;
            }
        }

        body > [consent-skip-blocker="1"][data-bg] {
            background-color: rgba(15, 17, 21, 0.58) !important;
            backdrop-filter: blur(2px);
            -webkit-backdrop-filter: blur(2px);
        }

        body > [consent-skip-blocker="1"][data-bg] > dialog {
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            width: 100vw !important;
            height: 100svh !important;
            padding: 1.25rem !important;
            background: transparent !important;
            color: #17191c !important;
            overflow: auto !important;
        }

        body > [consent-skip-blocker="1"][data-bg] > dialog > div {
            width: min(32.5rem, 92vw) !important;
            max-height: min(44rem, 88svh) !important;
            border: 1px solid rgba(0, 0, 0, 0.12) !important;
            border-radius: 2px !important;
            background: #ffffff !important;
            color: #17191c !important;
            box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.22) !important;
            overflow: hidden auto !important;
        }

        body > [consent-skip-blocker="1"][data-bg] > dialog > div > div {
            display: block !important;
            background: #ffffff !important;
        }

        body > [consent-skip-blocker="1"][data-bg] > dialog > div > div > a:not([role="button"]) {
            position: absolute !important;
            width: 1px !important;
            height: 1px !important;
            overflow: hidden !important;
            clip: rect(0, 0, 0, 0) !important;
            white-space: nowrap !important;
        }

        body > [consent-skip-blocker="1"][data-bg] > dialog > div > div > div:first-of-type {
            padding: 2.35rem 2.6rem 1.15rem !important;
            border-bottom: 1px solid rgba(23, 25, 28, 0.08) !important;
            background: #ffffff !important;
            text-align: left !important;
        }

        body > [consent-skip-blocker="1"][data-bg] > dialog > div > div > div:nth-of-type(2) {
            padding: 1.65rem 2.6rem 2.35rem !important;
            background: #ffffff !important;
            text-align: left !important;
        }

        body > [consent-skip-blocker="1"][data-bg] > dialog [role="heading"] {
            color: #17191c !important;
            font-size: clamp(1.65rem, 3vw, 2.15rem) !important;
            font-weight: 800 !important;
            letter-spacing: -0.01em !important;
            line-height: 1.02 !important;
            text-align: left !important;
        }

        body > [consent-skip-blocker="1"][data-bg] > dialog p {
            color: rgba(23, 25, 28, 0.68) !important;
            font-size: 0.84rem !important;
            font-weight: 400 !important;
            line-height: 1.62 !important;
            text-align: left !important;
        }

        body > [consent-skip-blocker="1"][data-bg] > dialog a:not([role="button"]) {
            color: rgba(23, 25, 28, 0.58) !important;
            font-size: 0.82rem !important;
            font-weight: 500 !important;
            text-decoration-color: rgba(23, 25, 28, 0.3) !important;
            text-underline-offset: 0.25em !important;
        }

        body > [consent-skip-blocker="1"][data-bg] > dialog a:not([role="button"]):hover,
        body > [consent-skip-blocker="1"][data-bg] > dialog a:not([role="button"]):focus-visible {
            color: #ef232a !important;
        }

        body > [consent-skip-blocker="1"][data-bg] > dialog a[role="button"] {
            display: inline-flex !important;
            align-items: center !important;
            justify-content: center !important;
            width: 100% !important;
            min-height: 3.35rem !important;
            border: 1px solid #17191c !important;
            border-radius: 0 !important;
            background: #17191c !important;
            color: #ffffff !important;
            padding: 0.95rem 1.2rem !important;
            font-size: 0.58rem !important;
            font-weight: 800 !important;
            letter-spacing: 0.24em !important;
            line-height: 1.25 !important;
            text-align: center !important;
            text-transform: uppercase !important;
            text-decoration: none !important;
            transition: background-color 0.24s ease, border-color 0.24s ease, color 0.24s ease !important;
        }

        body > [consent-skip-blocker="1"][data-bg] > dialog a[role="button"][class*="-ext-4-298"] {
            border-color: rgba(23, 25, 28, 0.16) !important;
            background: #ffffff !important;
            color: #17191c !important;
        }

        body > [consent-skip-blocker="1"][data-bg] > dialog a[role="button"][class*="-ext-4-300"] {
            min-height: auto !important;
            margin-top: 0.2rem !important;
            border: 0 !important;
            background: transparent !important;
            color: rgba(23, 25, 28, 0.55) !important;
            padding: 0.35rem 0 !important;
            font-size: 0.78rem !important;
            font-weight: 600 !important;
            letter-spacing: 0 !important;
            text-align: center !important;
            text-transform: none !important;
            text-decoration: underline !important;
            text-decoration-color: rgba(23, 25, 28, 0.22) !important;
        }

        body > [consent-skip-blocker="1"][data-bg] > dialog a[role="button"]:hover,
        body > [consent-skip-blocker="1"][data-bg] > dialog a[role="button"]:focus-visible {
            border-color: #ef232a !important;
            background: #ef232a !important;
            color: #ffffff !important;
        }

        body > [consent-skip-blocker="1"][data-bg] > dialog a[role="button"][class*="-ext-4-298"]:hover,
        body > [consent-skip-blocker="1"][data-bg] > dialog a[role="button"][class*="-ext-4-298"]:focus-visible {
            border-color: rgba(23, 25, 28, 0.24) !important;
            background: #f3f3ef !important;
            color: #17191c !important;
        }

        body > [consent-skip-blocker="1"][data-bg] > dialog a[role="button"][class*="-ext-4-300"]:hover,
        body > [consent-skip-blocker="1"][data-bg] > dialog a[role="button"][class*="-ext-4-300"]:focus-visible {
            background: transparent !important;
            color: #ef232a !important;
        }

        .map-shell {
            isolation: isolate;
        }

        .map-shell .rcb-content-blocker {
            display: grid !important;
            place-items: center !important;
            width: 100% !important;
            height: 100% !important;
            min-height: inherit !important;
            padding: clamp(1.4rem, 4vw, 2.5rem) !important;
            background:
                radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.08), transparent 30%),
                linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
                linear-gradient(135deg, #111417 0%, #17191c 55%, #0f1113 100%) !important;
            background-size: auto, 48px 48px, 48px 48px, auto !important;
            color: #ffffff !important;
            overflow: hidden !important;
        }

        .map-shell .rcb-content-blocker::before {
            content: "";
            position: absolute;
            inset: 1px;
            z-index: 0;
            border: 1px solid rgba(255, 255, 255, 0.12);
            pointer-events: none;
        }

        .map-shell .rcb-content-blocker > div {
            position: relative !important;
            z-index: 1 !important;
            display: flex !important;
            flex-direction: column !important;
            align-items: center !important;
            justify-content: center !important;
            width: min(100%, 28rem) !important;
            max-width: 28rem !important;
            min-height: 0 !important;
            margin: 0 auto !important;
            border: 1px solid rgba(255, 255, 255, 0.14) !important;
            background: rgba(255, 255, 255, 0.055) !important;
            padding: clamp(1.65rem, 4vw, 2.45rem) !important;
            box-shadow: 0 2rem 4.5rem rgba(0, 0, 0, 0.28) !important;
            text-align: center !important;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .map-shell .rcb-content-blocker > div::after {
            content: "Kleiststraße 11 · 89077 Ulm";
            display: block;
            margin-top: 1.35rem;
            color: rgba(255, 255, 255, 0.48);
            font-size: 0.62rem;
            font-weight: 800;
            letter-spacing: 0.22em;
            line-height: 1.4;
            text-transform: uppercase;
        }

        .map-shell .rcb-content-blocker > div > div,
        .map-shell .rcb-content-blocker > div > div > div {
            display: contents !important;
            width: auto !important;
            max-width: none !important;
            margin: 0 !important;
            padding: 0 !important;
            background: transparent !important;
        }

        .map-shell .rcb-content-blocker > div > div > div > div {
            width: 100% !important;
            max-width: 100% !important;
            margin: 0 !important;
            padding: 0 !important;
            background: transparent !important;
            overflow: visible !important;
        }

        .map-shell .rcb-content-blocker a:not([role="button"]),
        .map-shell .rcb-content-blocker a[role="button"][id],
        .map-shell .rcb-content-blocker br {
            position: absolute !important;
            width: 1px !important;
            height: 1px !important;
            overflow: hidden !important;
            clip: rect(0, 0, 0, 0) !important;
            opacity: 0 !important;
            pointer-events: none !important;
            white-space: nowrap !important;
        }

        .map-shell .rcb-content-blocker [role="heading"] {
            display: block !important;
            color: #ffffff !important;
            font-size: 0 !important;
            font-weight: 800 !important;
            letter-spacing: 0 !important;
            line-height: 0 !important;
            text-align: center !important;
        }

        .map-shell .rcb-content-blocker [role="heading"]::before {
            content: "Google Maps";
            display: block;
            margin-bottom: 0.8rem;
            color: rgba(255, 255, 255, 0.42);
            font-size: 0.58rem;
            font-weight: 800;
            letter-spacing: 0.34em;
            line-height: 1;
            text-transform: uppercase;
        }

        .map-shell .rcb-content-blocker [role="heading"]::after {
            content: "Standortkarte laden";
            display: block;
            color: #ffffff;
            font-size: clamp(1.65rem, 4vw, 2.25rem);
            font-weight: 800;
            letter-spacing: 0;
            line-height: 1.04;
        }

        .map-shell .rcb-content-blocker p[role="presentation"] {
            display: block !important;
            max-width: 24rem !important;
            margin: 1rem auto 0 !important;
            color: transparent !important;
            font-size: 0 !important;
            line-height: 0 !important;
            text-align: center !important;
        }

        .map-shell .rcb-content-blocker p[role="presentation"] * {
            display: none !important;
        }

        .map-shell .rcb-content-blocker p[role="presentation"]::before {
            content: "Die Karte wird erst nach Ihrer Zustimmung geladen. Dabei können Daten an Google übertragen werden.";
            display: block;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.95rem;
            font-weight: 300;
            line-height: 1.62;
        }

        .map-shell .rcb-content-blocker a[role="button"]:not([id]) {
            display: inline-flex !important;
            align-items: center !important;
            justify-content: center !important;
            width: 100% !important;
            max-width: 17.5rem !important;
            min-height: 3.35rem !important;
            margin: 1.55rem auto 0 !important;
            border: 1px solid #ffffff !important;
            border-radius: 0 !important;
            background: #ffffff !important;
            padding: 0 1.5rem !important;
            color: #17191c !important;
            font-size: 0 !important;
            font-weight: 800 !important;
            line-height: 1 !important;
            position: static !important;
            text-align: center !important;
            text-decoration: none !important;
            box-shadow: none !important;
            transition: background-color 0.25s ease, border-color 0.25s ease !important;
        }

        .map-shell .rcb-content-blocker a[role="button"]:not([id])::after {
            content: "Karte laden";
            color: #17191c;
            font-size: 0.6rem;
            font-weight: 800;
            letter-spacing: 0.28em;
            line-height: 1.2;
            text-transform: uppercase;
        }

        .map-shell .rcb-content-blocker a[role="button"]:not([id]):hover,
        .map-shell .rcb-content-blocker a[role="button"]:not([id]):focus-visible {
            border-color: #ef232a !important;
            background: #ef232a !important;
        }

        .map-shell .rcb-content-blocker a[role="button"]:not([id]):hover::after,
        .map-shell .rcb-content-blocker a[role="button"]:not([id]):focus-visible::after {
            color: #ffffff;
        }

        @media (max-width: 767px) {
            body > [consent-skip-blocker="1"][data-bg] > dialog {
                padding: 0.75rem !important;
            }

            body > [consent-skip-blocker="1"][data-bg] > dialog > div {
                width: 92vw !important;
                max-height: 86svh !important;
            }

            body > [consent-skip-blocker="1"][data-bg] > dialog > div > div > div:first-of-type {
                padding: 1.65rem 1.45rem 0.95rem !important;
            }

            body > [consent-skip-blocker="1"][data-bg] > dialog > div > div > div:nth-of-type(2) {
                padding: 1.25rem 1.45rem 1.65rem !important;
            }

            body > [consent-skip-blocker="1"][data-bg] > dialog [role="heading"] {
                font-size: 1.55rem !important;
            }

            body > [consent-skip-blocker="1"][data-bg] > dialog a[role="button"] {
                min-height: 3.2rem !important;
                padding: 0.9rem 1rem !important;
                letter-spacing: 0.16em !important;
            }

            .map-shell .rcb-content-blocker {
                min-height: 360px !important;
                padding: 1.25rem !important;
            }

            .map-shell .rcb-content-blocker > div {
                width: 100% !important;
                padding: 1.55rem 1.25rem !important;
            }

            .map-shell .rcb-content-blocker [role="heading"]::before {
                margin-bottom: 0.7rem;
                font-size: 0.54rem;
            }

            .map-shell .rcb-content-blocker [role="heading"]::after {
                font-size: 1.75rem !important;
            }

            .map-shell .rcb-content-blocker p[role="presentation"]::before {
                font-size: 0.9rem;
                line-height: 1.55;
            }

            .map-shell .rcb-content-blocker a[role="button"]:not([id]) {
                max-width: 100% !important;
                margin-top: 1.25rem !important;
            }

            .map-shell .rcb-content-blocker > div::after {
                margin-top: 1.15rem;
                font-size: 0.56rem;
                letter-spacing: 0.18em;
            }
        }

        /* Final premium pass for Real Cookie Banner surfaces. */
        body > [consent-skip-blocker="1"][data-bg] {
            --pv-consent-red: #ef232a;
            --pv-consent-ink: #17191c;
            --pv-consent-soft: #f7f7f4;
            background: rgba(15, 17, 19, 0.62) !important;
            backdrop-filter: blur(3px);
            -webkit-backdrop-filter: blur(3px);
        }

        body > [consent-skip-blocker="1"][data-bg] > dialog {
            padding: 1.5rem !important;
            background: transparent !important;
        }

        body > [consent-skip-blocker="1"][data-bg] > dialog > div {
            width: min(32.5rem, 92vw) !important;
            max-height: min(44rem, 86svh) !important;
            border: 1px solid rgba(0, 0, 0, 0.12) !important;
            border-radius: 3px !important;
            background: #ffffff !important;
            box-shadow: 0 2.2rem 5.5rem rgba(0, 0, 0, 0.24) !important;
        }

        body > [consent-skip-blocker="1"][data-bg] > dialog > div > div > div:first-of-type {
            padding: 2.55rem 2.75rem 1.25rem !important;
            border-bottom: 1px solid rgba(23, 25, 28, 0.08) !important;
            text-align: left !important;
        }

        body > [consent-skip-blocker="1"][data-bg] > dialog > div > div > div:nth-of-type(2) {
            padding: 1.75rem 2.75rem 2.55rem !important;
            text-align: left !important;
        }

        body > [consent-skip-blocker="1"][data-bg] > dialog [role="heading"] {
            color: var(--pv-consent-ink) !important;
            font-size: clamp(1.78rem, 3vw, 2.2rem) !important;
            font-weight: 800 !important;
            letter-spacing: -0.015em !important;
            line-height: 1 !important;
        }

        body > [consent-skip-blocker="1"][data-bg] > dialog p {
            color: rgba(23, 25, 28, 0.68) !important;
            font-size: 0.84rem !important;
            line-height: 1.64 !important;
        }

        body > [consent-skip-blocker="1"][data-bg] > dialog a:not([role="button"]),
        body > [consent-skip-blocker="1"][data-bg] > dialog a[role="button"][class*="-ext-4-300"] {
            color: var(--pv-consent-red) !important;
            text-decoration-color: rgba(239, 35, 42, 0.42) !important;
            text-underline-offset: 0.26em !important;
        }

        body > [consent-skip-blocker="1"][data-bg] > dialog a:not([role="button"]):hover,
        body > [consent-skip-blocker="1"][data-bg] > dialog a:not([role="button"]):focus-visible,
        body > [consent-skip-blocker="1"][data-bg] > dialog a[role="button"][class*="-ext-4-300"]:hover,
        body > [consent-skip-blocker="1"][data-bg] > dialog a[role="button"][class*="-ext-4-300"]:focus-visible {
            color: #c91822 !important;
            text-decoration-color: #c91822 !important;
        }

        body > [consent-skip-blocker="1"][data-bg] > dialog a[role="button"] {
            min-height: 3.55rem !important;
            border-radius: 0 !important;
            font-size: 0.58rem !important;
            font-weight: 800 !important;
            letter-spacing: 0.2em !important;
            transition: background-color 0.24s ease, border-color 0.24s ease, color 0.24s ease, transform 0.24s ease !important;
        }

        body > [consent-skip-blocker="1"][data-bg] > dialog a[role="button"]:not([class*="-ext-4-298"]):not([class*="-ext-4-300"]) {
            border-color: var(--pv-consent-ink) !important;
            background: var(--pv-consent-ink) !important;
            color: #ffffff !important;
            box-shadow: 0 1rem 2.2rem rgba(23, 25, 28, 0.16) !important;
        }

        body > [consent-skip-blocker="1"][data-bg] > dialog a[role="button"][class*="-ext-4-298"] {
            border: 1px solid rgba(23, 25, 28, 0.28) !important;
            background: #ffffff !important;
            color: var(--pv-consent-ink) !important;
            box-shadow: inset 0 0 0 1px rgba(23, 25, 28, 0.04) !important;
        }

        body > [consent-skip-blocker="1"][data-bg] > dialog a[role="button"][class*="-ext-4-300"] {
            min-height: auto !important;
            border: 0 !important;
            background: transparent !important;
            box-shadow: none !important;
            padding: 0.45rem 0 0 !important;
            font-size: 0.78rem !important;
            font-weight: 600 !important;
            letter-spacing: 0 !important;
            text-transform: none !important;
        }

        body > [consent-skip-blocker="1"][data-bg] > dialog a[role="button"]:not([class*="-ext-4-300"]):hover,
        body > [consent-skip-blocker="1"][data-bg] > dialog a[role="button"]:not([class*="-ext-4-300"]):focus-visible {
            transform: translateY(-1px);
        }

        body > [consent-skip-blocker="1"][data-bg] > dialog a[role="button"]:not([class*="-ext-4-298"]):not([class*="-ext-4-300"]):hover,
        body > [consent-skip-blocker="1"][data-bg] > dialog a[role="button"]:not([class*="-ext-4-298"]):not([class*="-ext-4-300"]):focus-visible {
            border-color: var(--pv-consent-red) !important;
            background: var(--pv-consent-red) !important;
        }

        body > [consent-skip-blocker="1"][data-bg] > dialog a[role="button"][class*="-ext-4-298"]:hover,
        body > [consent-skip-blocker="1"][data-bg] > dialog a[role="button"][class*="-ext-4-298"]:focus-visible {
            border-color: var(--pv-consent-ink) !important;
            background: var(--pv-consent-ink) !important;
            color: #ffffff !important;
        }

        .map-shell .rcb-content-blocker {
            --pv-map-red: #ef232a;
            background:
                radial-gradient(circle at 50% 45%, rgba(239, 35, 42, 0.16), transparent 28%),
                radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.075), transparent 26%),
                linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                linear-gradient(135deg, #0f1113 0%, #15181c 58%, #0f1113 100%) !important;
            background-size: auto, auto, 56px 56px, 56px 56px, auto !important;
        }

        .map-shell .rcb-content-blocker > div {
            width: min(100%, 27rem) !important;
            max-width: 27rem !important;
            padding: clamp(2rem, 4vw, 2.65rem) !important;
            border: 1px solid rgba(255, 255, 255, 0.18) !important;
            background:
                linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.045)) !important;
            box-shadow:
                0 2.25rem 5rem rgba(0, 0, 0, 0.32),
                0 0 0 1px rgba(255, 255, 255, 0.03) inset !important;
        }

        .map-shell .rcb-content-blocker > div::before {
            content: "";
            display: block;
            width: 2.5rem;
            height: 2px;
            margin: 0 auto 1.35rem;
            background: var(--pv-map-red);
            box-shadow: 0 0 1.4rem rgba(239, 35, 42, 0.42);
        }

        .map-shell .rcb-content-blocker [role="heading"]::before {
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
            margin-bottom: 0.85rem;
            color: rgba(255, 255, 255, 0.48);
            font-size: 0.56rem;
            font-weight: 800;
            letter-spacing: 0.34em;
            line-height: 1;
            text-transform: uppercase;
        }

        .map-shell .rcb-content-blocker [role="heading"]::after {
            content: "Standortkarte laden";
            font-size: clamp(1.72rem, 4vw, 2.28rem);
            line-height: 1.02;
        }

        .map-shell .rcb-content-blocker p[role="presentation"]::before {
            color: rgba(255, 255, 255, 0.72);
            font-size: 0.96rem;
            line-height: 1.65;
        }

        .map-shell .rcb-content-blocker a[role="button"]:not([id]) {
            max-width: 18rem !important;
            min-height: 3.45rem !important;
            margin-top: 1.65rem !important;
            border-color: #ffffff !important;
            background: #ffffff !important;
            box-shadow: 0 1.2rem 2.4rem rgba(0, 0, 0, 0.22) !important;
        }

        .map-shell .rcb-content-blocker a[role="button"]:not([id])::after {
            font-size: 0.6rem;
            letter-spacing: 0.28em;
        }

        .map-shell .rcb-content-blocker a[role="button"]:not([id]):hover,
        .map-shell .rcb-content-blocker a[role="button"]:not([id]):focus-visible {
            border-color: var(--pv-map-red) !important;
            background: var(--pv-map-red) !important;
        }

        .map-shell .rcb-content-blocker > div::after {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: auto;
            margin: 1.4rem auto 0;
            border: 1px solid rgba(255, 255, 255, 0.12);
            background: rgba(255, 255, 255, 0.045);
            padding: 0.48rem 0.7rem;
            color: rgba(255, 255, 255, 0.52);
            font-size: 0.58rem;
            letter-spacing: 0.2em;
        }

        @media (max-width: 767px) {
            body > [consent-skip-blocker="1"][data-bg] > dialog {
                padding: 0.75rem !important;
            }

            body > [consent-skip-blocker="1"][data-bg] > dialog > div {
                width: 92vw !important;
                max-height: 86svh !important;
            }

            body > [consent-skip-blocker="1"][data-bg] > dialog > div > div > div:first-of-type {
                padding: 1.7rem 1.45rem 1rem !important;
            }

            body > [consent-skip-blocker="1"][data-bg] > dialog > div > div > div:nth-of-type(2) {
                padding: 1.25rem 1.45rem 1.65rem !important;
            }

            body > [consent-skip-blocker="1"][data-bg] > dialog [role="heading"] {
                font-size: 1.52rem !important;
            }

            body > [consent-skip-blocker="1"][data-bg] > dialog p {
                font-size: 0.82rem !important;
            }

            body > [consent-skip-blocker="1"][data-bg] > dialog a[role="button"] {
                min-height: 3.25rem !important;
                letter-spacing: 0.16em !important;
            }

            .map-shell .rcb-content-blocker {
                min-height: 360px !important;
                padding: 1.15rem !important;
            }

            .map-shell .rcb-content-blocker > div {
                width: min(100%, 92%) !important;
                padding: 1.65rem 1.25rem !important;
            }

            .map-shell .rcb-content-blocker > div::before {
                margin-bottom: 1.05rem;
            }

            .map-shell .rcb-content-blocker [role="heading"]::before {
                margin-bottom: 0.7rem;
                font-size: 0.52rem;
            }

            .map-shell .rcb-content-blocker [role="heading"]::after {
                font-size: 1.68rem !important;
            }

            .map-shell .rcb-content-blocker p[role="presentation"]::before {
                font-size: 0.88rem;
                line-height: 1.55;
            }

            .map-shell .rcb-content-blocker a[role="button"]:not([id]) {
                max-width: 100% !important;
                min-height: 3.25rem !important;
                margin-top: 1.25rem !important;
            }

            .map-shell .rcb-content-blocker > div::after {
                margin-top: 1.1rem;
                font-size: 0.52rem;
                letter-spacing: 0.16em;
            }
        }

        /* RCB renders inner spans inside actions; force them to inherit the styled action color. */
        body > [consent-skip-blocker="1"][data-bg] > dialog a[role="button"] > *,
        body > [consent-skip-blocker="1"][data-bg] > dialog button > * {
            color: inherit !important;
            font: inherit !important;
            letter-spacing: inherit !important;
            text-transform: inherit !important;
            text-decoration: inherit !important;
        }

        body > [consent-skip-blocker="1"][data-bg] > dialog a[role="button"][class*="-ext-4-298"],
        body > [consent-skip-blocker="1"][data-bg] > dialog a[role="button"][class*="-ext-4-298"] > * {
            color: #111417 !important;
        }

        body > [consent-skip-blocker="1"][data-bg] > dialog a[role="button"][class*="-ext-4-298"]:hover,
        body > [consent-skip-blocker="1"][data-bg] > dialog a[role="button"][class*="-ext-4-298"]:focus-visible {
            border-color: #111417 !important;
            background: #111417 !important;
            color: #ffffff !important;
        }

        body > [consent-skip-blocker="1"][data-bg] > dialog a[role="button"][class*="-ext-4-298"]:hover > *,
        body > [consent-skip-blocker="1"][data-bg] > dialog a[role="button"][class*="-ext-4-298"]:focus-visible > * {
            color: #ffffff !important;
        }

        body > [consent-skip-blocker="1"][data-bg] > dialog a[role="button"][class*="-ext-4-300"],
        body > [consent-skip-blocker="1"][data-bg] > dialog a[role="button"][class*="-ext-4-300"] > *,
        body > [consent-skip-blocker="1"][data-bg] > dialog a:not([role="button"]),
        body > [consent-skip-blocker="1"][data-bg] > dialog a:not([role="button"]) > * {
            color: #ef232a !important;
            text-decoration-color: rgba(239, 35, 42, 0.48) !important;
        }

        body > [consent-skip-blocker="1"][data-bg] > dialog a[role="button"][class*="-ext-4-300"]:hover,
        body > [consent-skip-blocker="1"][data-bg] > dialog a[role="button"][class*="-ext-4-300"]:focus-visible,
        body > [consent-skip-blocker="1"][data-bg] > dialog a:not([role="button"]):hover,
        body > [consent-skip-blocker="1"][data-bg] > dialog a:not([role="button"]):focus-visible {
            color: #c9182b !important;
            text-decoration-color: #c9182b !important;
        }

        body > [consent-skip-blocker="1"][data-bg] > dialog a[role="button"][class*="-ext-4-300"]:hover > *,
        body > [consent-skip-blocker="1"][data-bg] > dialog a[role="button"][class*="-ext-4-300"]:focus-visible > *,
        body > [consent-skip-blocker="1"][data-bg] > dialog a:not([role="button"]):hover > *,
        body > [consent-skip-blocker="1"][data-bg] > dialog a:not([role="button"]):focus-visible > * {
            color: #c9182b !important;
        }

        /* Final calm consent surface refinement. */
        body > [consent-skip-blocker="1"][data-bg] > dialog * {
            border-color: rgba(23, 25, 28, 0.12);
        }

        body > [consent-skip-blocker="1"][data-bg] > dialog a,
        body > [consent-skip-blocker="1"][data-bg] > dialog a > * {
            color: #ef232a !important;
            text-decoration-color: rgba(239, 35, 42, 0.48) !important;
        }

        body > [consent-skip-blocker="1"][data-bg] > dialog a:hover,
        body > [consent-skip-blocker="1"][data-bg] > dialog a:focus-visible,
        body > [consent-skip-blocker="1"][data-bg] > dialog a:hover > *,
        body > [consent-skip-blocker="1"][data-bg] > dialog a:focus-visible > * {
            color: #c9182b !important;
            text-decoration-color: #c9182b !important;
        }

        body > [consent-skip-blocker="1"][data-bg] > dialog a[role="button"]:not([class*="-ext-4-300"]),
        body > [consent-skip-blocker="1"][data-bg] > dialog a[role="button"]:not([class*="-ext-4-300"]) > *,
        body > [consent-skip-blocker="1"][data-bg] > dialog button,
        body > [consent-skip-blocker="1"][data-bg] > dialog button > * {
            text-decoration: none !important;
        }

        body > [consent-skip-blocker="1"][data-bg] > dialog a[role="button"]:not([class*="-ext-4-298"]):not([class*="-ext-4-300"]),
        body > [consent-skip-blocker="1"][data-bg] > dialog a[role="button"]:not([class*="-ext-4-298"]):not([class*="-ext-4-300"]) > *,
        body > [consent-skip-blocker="1"][data-bg] > dialog button:not([class*="-ext-4-298"]):not([class*="-ext-4-300"]),
        body > [consent-skip-blocker="1"][data-bg] > dialog button:not([class*="-ext-4-298"]):not([class*="-ext-4-300"]) > * {
            color: #ffffff !important;
        }

        body > [consent-skip-blocker="1"][data-bg] > dialog a[role="button"][class*="-ext-4-298"],
        body > [consent-skip-blocker="1"][data-bg] > dialog a[role="button"][class*="-ext-4-298"] > *,
        body > [consent-skip-blocker="1"][data-bg] > dialog button[class*="-ext-4-298"],
        body > [consent-skip-blocker="1"][data-bg] > dialog button[class*="-ext-4-298"] > * {
            color: #111417 !important;
        }

        body > [consent-skip-blocker="1"][data-bg] > dialog a[role="button"][class*="-ext-4-298"]:hover,
        body > [consent-skip-blocker="1"][data-bg] > dialog a[role="button"][class*="-ext-4-298"]:focus-visible,
        body > [consent-skip-blocker="1"][data-bg] > dialog button[class*="-ext-4-298"]:hover,
        body > [consent-skip-blocker="1"][data-bg] > dialog button[class*="-ext-4-298"]:focus-visible {
            background: #111417 !important;
            border-color: #111417 !important;
            color: #ffffff !important;
        }

        body > [consent-skip-blocker="1"][data-bg] > dialog a[role="button"][class*="-ext-4-298"]:hover > *,
        body > [consent-skip-blocker="1"][data-bg] > dialog a[role="button"][class*="-ext-4-298"]:focus-visible > *,
        body > [consent-skip-blocker="1"][data-bg] > dialog button[class*="-ext-4-298"]:hover > *,
        body > [consent-skip-blocker="1"][data-bg] > dialog button[class*="-ext-4-298"]:focus-visible > * {
            color: #ffffff !important;
        }

        body > [consent-skip-blocker="1"][data-bg] > dialog a[role="button"][class*="-ext-4-300"],
        body > [consent-skip-blocker="1"][data-bg] > dialog a[role="button"][class*="-ext-4-300"] > * {
            color: #ef232a !important;
            text-decoration-color: rgba(239, 35, 42, 0.48) !important;
        }

        .map-shell .rcb-content-blocker {
            background:
                radial-gradient(circle at 50% 43%, rgba(255, 255, 255, 0.055), transparent 36%),
                linear-gradient(135deg, #0f1113 0%, #111417 100%) !important;
            background-size: auto !important;
            padding: clamp(1.25rem, 3vw, 2rem) !important;
        }

        .map-shell .rcb-content-blocker::before {
            border-color: rgba(255, 255, 255, 0.08) !important;
        }

        .map-shell .rcb-content-blocker > div {
            width: min(100%, 25.5rem) !important;
            max-width: 25.5rem !important;
            min-height: 0 !important;
            height: auto !important;
            padding: clamp(1.75rem, 3vw, 2.25rem) !important;
            border: 1px solid rgba(23, 25, 28, 0.12) !important;
            background: rgba(255, 255, 255, 0.96) !important;
            color: #17191c !important;
            box-shadow: 0 1.4rem 3.2rem rgba(0, 0, 0, 0.2) !important;
            backdrop-filter: none;
            -webkit-backdrop-filter: none;
        }

        .map-shell .rcb-content-blocker > div::before {
            width: 2rem;
            height: 2px;
            margin: 0 auto 1.2rem;
            background: #ef232a;
            box-shadow: none;
        }

        .map-shell .rcb-content-blocker > div::after {
            border: 0 !important;
            background: transparent !important;
            padding: 0 !important;
            color: rgba(23, 25, 28, 0.48) !important;
            font-size: 0.58rem !important;
            letter-spacing: 0.18em !important;
        }

        .map-shell .rcb-content-blocker > div > div,
        .map-shell .rcb-content-blocker > div > div > div,
        .map-shell .rcb-content-blocker > div > div > div > div,
        .map-shell .rcb-content-blocker > div > div > div > div > div {
            border: 0 !important;
            background: transparent !important;
            box-shadow: none !important;
            min-height: 0 !important;
            height: auto !important;
            margin: 0 !important;
            padding: 0 !important;
            overflow: visible !important;
        }

        .map-shell .rcb-content-blocker [role="heading"]::before {
            color: rgba(23, 25, 28, 0.42) !important;
            margin-bottom: 0.75rem;
        }

        .map-shell .rcb-content-blocker [role="heading"]::after {
            color: #17191c !important;
            font-size: clamp(1.55rem, 3vw, 2rem);
        }

        .map-shell .rcb-content-blocker p[role="presentation"] {
            max-width: 22.5rem !important;
            margin: 0.9rem auto 0 !important;
        }

        .map-shell .rcb-content-blocker p[role="presentation"]::before {
            color: rgba(23, 25, 28, 0.62) !important;
            font-size: 0.92rem;
            line-height: 1.6;
        }

        .map-shell .rcb-content-blocker p:not([role="presentation"]),
        .map-shell .rcb-content-blocker a[role="button"][id],
        .map-shell .rcb-content-blocker [class*="-ext-9-265"],
        .map-shell .rcb-content-blocker [class*="-ext-8-272"] {
            display: none !important;
        }

        .map-shell .rcb-content-blocker a[role="button"]:not([id]) {
            max-width: 16.5rem !important;
            min-height: 3.25rem !important;
            margin-top: 1.35rem !important;
            border: 1px solid #17191c !important;
            background: #17191c !important;
            box-shadow: none !important;
        }

        .map-shell .rcb-content-blocker a[role="button"]:not([id])::after {
            color: #ffffff !important;
        }

        .map-shell .rcb-content-blocker a[role="button"]:not([id]):hover,
        .map-shell .rcb-content-blocker a[role="button"]:not([id]):focus-visible {
            border-color: #ef232a !important;
            background: #ef232a !important;
        }

        @media (max-width: 767px) {
            .map-shell .rcb-content-blocker {
                min-height: 360px !important;
                padding: 1rem !important;
            }

            .map-shell .rcb-content-blocker > div {
                width: min(100%, 92%) !important;
                padding: 1.55rem 1.25rem !important;
            }

            .map-shell .rcb-content-blocker [role="heading"]::after {
                font-size: 1.5rem !important;
            }

            .map-shell .rcb-content-blocker p[role="presentation"]::before {
                font-size: 0.86rem;
            }
        }

        /* Final RCB accent-line color correction. */
        body > [consent-skip-blocker="1"][data-bg] > dialog [class*="-ext-6-289"]::before,
        body > [consent-skip-blocker="1"][data-bg] > dialog [class*="-ext-6-289"]::after,
        .map-shell .rcb-content-blocker [class*="-ext-6-289"]::before,
        .map-shell .rcb-content-blocker [class*="-ext-6-289"]::after {
            background: #ef232a !important;
            background-color: #ef232a !important;
            border-color: #ef232a !important;
            box-shadow: none !important;
        }

        .map-shell .rcb-content-blocker a[role="button"][id],
        .map-shell .rcb-content-blocker a[role="button"][id] > * {
            color: #ef232a !important;
            outline-color: #ef232a !important;
            text-decoration-color: rgba(239, 35, 42, 0.48) !important;
        }
