/* =========================================================
   BEATA ZAMOROWSKA & PARTNERS
   PREMIUM WEBSITE
========================================================= */

/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    color-scheme: dark;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family:
        Inter,
        Arial,
        Helvetica,
        sans-serif;

    /* Głębokie, warstwowe tło zamiast płaskiej czerni */
    background-color: #090a0c;
    background-image:
        radial-gradient(
            ellipse 120% 70% at 50% -12%,
            rgba(216, 176, 106, 0.055),
            transparent 62%
        ),
        radial-gradient(
            ellipse 90% 55% at 108% 40%,
            rgba(64, 74, 92, 0.16),
            transparent 58%
        ),
        radial-gradient(
            ellipse 85% 50% at -8% 78%,
            rgba(46, 54, 68, 0.14),
            transparent 60%
        );

    color: #f5f5f5;

    line-height: 1.6;

    overflow-x: hidden;
}

/* Bardzo subtelna tekstura (noise) generowana inline — brak assetów.
   Znajduje się tylko w górnych warstwach, nie przeszkadza w czytelności. */
body::before {
    content: "";

    position: fixed;

    inset: 0;

    z-index: -1;

    pointer-events: none;

    opacity: 0.03;

    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

@media (max-width: 700px) {

    /* Na telefonach tekstura nie jest potrzebna — mniej pracy dla GPU */
    body::before {
        display: none;
    }
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}

/* =========================================================
   ZMIENNE
========================================================= */

:root {
    --background: #090a0c;
    --background-light: #101216;
    --card: #15181d;
    --card-light: #1b1f25;
    --text: #f7f7f7;
    --text-muted: #9da3ad;
    --accent: #d8b06a;
    --accent-light: #f2d69b;
    --border: rgba(255, 255, 255, 0.09);
    --border-light: rgba(255, 255, 255, 0.16);
    --shadow:
        0 25px 70px rgba(0, 0, 0, 0.35);
    --parallax-y: 0px;

    /* --- Premium polish tokens --- */
    --gold-gradient:
        linear-gradient(135deg, #ecd39b 0%, var(--accent) 55%, #c39a52 100%);
    --gold-glow:
        0 12px 38px rgba(216, 176, 106, 0.20),
        0 4px 14px rgba(216, 176, 106, 0.14);
    --radius-card: 24px;
}

/* =========================================================
   HEADER
========================================================= */

header {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 82px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    padding: 0 6%;

    background:
        rgba(9, 10, 12, 0.72);

    backdrop-filter:
        blur(20px);

    -webkit-backdrop-filter:
        blur(20px);

    border-bottom:
        1px solid var(--border);

    z-index: 1000;
}

.logo {
    font-size: 19px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--text);
    white-space: nowrap;
    min-width: 0;
    max-width: 100%;

    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 44px;
    width: auto;
    max-width: 44px;
    object-fit: contain;
    border-radius: 8px;
    flex: 0 0 auto;
}

/* =========================================================
   NAVIGACJA
========================================================= */

nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

nav a {
    position: relative;

    font-size: 14px;
    color: var(--text-muted);

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

nav a:hover {
    color: var(--text);

    transform:
        translateY(-2px);
}

nav a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;
    height: 2px;

    background:
        var(--accent);

    transition:
        width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

/* =========================================================
   LANGUAGE SWITCHER
========================================================= */

.language-switcher {
    display: flex;
    align-items: center;
    gap: 5px;

    margin-left: 5px;
    padding: 4px;

    border:
        1px solid var(--border);

    border-radius: 999px;

    background:
        rgba(255, 255, 255, 0.035);
}

.language-switcher button {
    border: none;

    background: transparent;
    color: var(--text-muted);

    cursor: pointer;

    padding:
        7px 9px;

    border-radius: 999px;

    font-size: 12px;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.language-switcher button:hover {
    background:
        rgba(255, 255, 255, 0.08);

    color: #ffffff;

    transform:
        translateY(-1px);
}

/* =========================================================
   HERO
========================================================= */

#home {
    min-height: 100vh;

    position: relative;

    display: flex;
    align-items: center;

    overflow: hidden;

    padding:
        150px 7% 100px;

    background:

        radial-gradient(
            circle at 85% 20%,
            rgba(216, 176, 106, 0.15),
            transparent 32%
        ),

        radial-gradient(
            circle at 10% 90%,
            rgba(255, 255, 255, 0.04),
            transparent 30%
        ),

        linear-gradient(
            135deg,
            #08090b,
            #101216 55%,
            #08090b
        );
}

#home::before {
    content: "";

    position: absolute;

    width: 650px;
    height: 650px;

    right:
        -250px;

    top:
        calc(-220px + var(--parallax-y, 0px));

    border-radius: 50%;

    background:
        rgba(216, 176, 106, 0.07);

    filter:
        blur(100px);

    animation:
        heroLight 10s ease-in-out infinite;

    pointer-events: none;
}

@keyframes heroLight {

    0%,
    100% {
        transform:
            translate(0, 0)
            scale(1);
    }

    50% {
        transform:
            translate(-40px, 35px)
            scale(1.08);
    }
}

/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content {
    position: relative;

    z-index: 5;

    width: 100%;
    max-width: 900px;

    animation:
        heroContentAppear
        1s
        ease
        forwards;
}

@keyframes heroContentAppear {

    from {
        opacity: 0;

        transform:
            translateY(40px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);
    }
}

#home .subtitle {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 25px;

    color:
        var(--accent);

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
}

#home .subtitle::before {
    content: "";

    width: 35px;
    height: 1px;

    background:
        var(--accent);
}

#home h1 {
    max-width: 850px;

    margin: 0;

    font-size:
        clamp(
            55px,
            8vw,
            105px
        );

    line-height: 0.92;

    letter-spacing:
        -5px;

    font-weight: 800;

    color:
        #ffffff;
}

.hero-description {
    max-width: 650px;

    margin-top: 35px;

    color:
        var(--text-muted);

    font-size:
        clamp(
            16px,
            2vw,
            20px
        );

    line-height:
        1.8;
}

.hero-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;

    margin-top: 42px;
}

.hero-buttons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 56px;

    padding:
        0 30px;

    border-radius:
        999px;

    border:
        1px solid var(--border);

    font-size: 14px;
    font-weight: 700;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.hero-buttons a:first-child {
    background:
        var(--gold-gradient);

    color:
        #14110a;

    border-color:
        transparent;

    box-shadow:
        var(--gold-glow);
}

.hero-buttons a:first-child:hover {
    transform:
        translateY(-2px);

    filter:
        brightness(1.07);

    box-shadow:
        0 18px 52px rgba(216, 176, 106, 0.30),
        0 6px 18px rgba(216, 176, 106, 0.20);
}

.hero-buttons a:last-child {
    background:
        rgba(255, 255, 255, 0.035);

    color:
        #ffffff;

    border-color:
        rgba(255, 255, 255, 0.15);

    backdrop-filter:
        blur(10px);
}

.hero-buttons a:last-child:hover {
    transform:
        translateY(-4px);

    background:
        rgba(255, 255, 255, 0.09);

    border-color:
        rgba(255, 255, 255, 0.3);
}

.hero-content::before {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    left:
        55%;

    top:
        calc(35% + var(--parallax-y, 0px));

    border-radius: 50%;

    background:
        rgba(216, 176, 106, 0.05);

    filter:
        blur(60px);

    animation:
        heroGlow 6s ease-in-out infinite;

    pointer-events: none;
}

@keyframes heroGlow {

    0%,
    100% {
        transform:
            scale(1);

        opacity:
            0.5;
    }

    50% {
        transform:
            scale(1.4);

        opacity:
            0.9;
    }
}

/* =========================================================
   SEKCJE
========================================================= */

/* Dodatkowe, spokojne światło z dolnej krawędzi Hero */
#home::after {
    content: "";

    position: absolute;

    left:
        -220px;

    bottom:
        -260px;

    width:
        560px;

    height:
        560px;

    border-radius:
        50%;

    background:
        rgba(96, 110, 134, 0.10);

    filter:
        blur(120px);

    pointer-events:
        none;
}

section:not(#home) {
    padding:
        120px 8%;

    position: relative;
}

.section-heading {
    max-width:
        800px;

    margin-bottom:
        70px;
}

.section-heading .subtitle {
    display:
        inline-block;

    margin-bottom:
        18px;

    color:
        var(--accent);

    text-transform:
        uppercase;

    letter-spacing:
        3px;

    font-size:
        12px;

    font-weight:
        700;
}

.section-heading h2 {
    margin-bottom:
        22px;

    font-size:
        clamp(
            40px,
            5vw,
            68px
        );

    line-height:
        1;

    letter-spacing:
        -3px;

    /* Delikatny, stalowo-złoty akcent świetlny na wielkich nagłówkach */
    background:
        linear-gradient(
            120deg,
            #ffffff 0%,
            #f2eee6 55%,
            #d9cbae 100%
        );

    -webkit-background-clip:
        text;

    background-clip:
        text;

    -webkit-text-fill-color:
        transparent;
}

/* Subtelna złota kreska pod nagłówkami sekcji */
.section-heading h2::after {
    content: "";

    display:
        block;

    width:
        64px;

    height:
        1px;

    margin-top:
        26px;

    background:
        linear-gradient(
            90deg,
            var(--accent),
            rgba(216, 176, 106, 0)
        );
}

.section-heading p {
    color:
        var(--text-muted);

    font-size:
        18px;
}

/* =========================================================
   SERVICES
========================================================= */

#services {
    /* Ton przejściowy: miękka grafitowa poświata odcinająca się od Hero */
    background:
        radial-gradient(
            ellipse 70% 45% at 50% 0%,
            rgba(216, 176, 106, 0.035),
            transparent 60%
        ),
        linear-gradient(
            180deg,
            #101216 0%,
            #0c0e11 100%
        );
}

.service-section {
    margin-bottom:
        120px;
}

.service-section:last-child {
    margin-bottom:
        0;
}

.service-section > h2 {
    margin-bottom:
        15px;

    font-size:
        clamp(
            30px,
            4vw,
            44px
        );

    letter-spacing:
        -1px;
}

.service-section > p {
    max-width:
        680px;

    margin-bottom:
        45px;

    color:
        var(--text-muted);
}

.service-grid {
    display:
        grid;

    grid-template-columns:
        repeat(
            2,
            minmax(
                0,
                1fr
            )
        );

    gap:
        20px;
}

.service-card {
    position:
        relative;

    min-height:
        190px;

    padding:
        38px;

    overflow:
        hidden;

    border:
        1px solid var(--border);

    border-radius:
        24px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.045),
            rgba(255, 255, 255, 0.015)
        );

    transition:
        transform 0.45s ease,
        border-color 0.45s ease,
        box-shadow 0.45s ease,
        background 0.45s ease;
}

.service-card::before {
    content:
        "";

    position:
        absolute;

    width:
        180px;

    height:
        180px;

    right:
        -90px;

    top:
        -90px;

    border-radius:
        50%;

    background:
        rgba(
            216,
            176,
            106,
            0.07
        );

    filter:
        blur(35px);

    transition:
        transform 0.6s ease;
}

.service-card:hover {
    transform:
        translateY(-8px);

    border-color:
        rgba(
            216,
            176,
            106,
            0.35
        );

    box-shadow:
        var(--shadow);

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.07),
            rgba(255, 255, 255, 0.025)
        );
}

.service-card:hover::before {
    transform:
        scale(1.7);
}

.service-card h3 {
    position:
        relative;

    z-index:
        2;

    margin-bottom:
        13px;

    font-size:
        23px;

    letter-spacing:
        -0.5px;
}

.service-card p {
    position:
        relative;

    z-index:
        2;

    color:
        var(--text-muted);

    line-height:
        1.7;
}

/* =========================================================
   CATERING
========================================================= */

#catering {
    /* Tylko ciepłe poświaty — BEZ kryjącej warstwy tła.
       Pełny var(--background) tworzył widoczny ciemny
       prostokąt na tle jaśniejszego gradientu sekcji
       #services (zaczynał się przy dużym nagłówku). */
    background:

        radial-gradient(
            circle at 85% 35%,
            rgba(
                216,
                176,
                106,
                0.12
            ),
            transparent 42%
        ),

        radial-gradient(
            ellipse 80% 60% at 12% 85%,
            rgba(150, 96, 48, 0.08),
            transparent 62%
        );
}

/* =========================================================
   ABOUT
========================================================= */

#about {
    background:
        radial-gradient(
            ellipse 60% 50% at 18% 30%,
            rgba(255, 255, 255, 0.028),
            transparent 55%
        ),
        linear-gradient(
            180deg,
            #101216 0%,
            #0b0d10 100%
        );
}

#about .section-heading {
    max-width:
        900px;
}

#about .section-heading p {
    margin-bottom:
        20px;
}

/* =========================================================
   CONTACT
========================================================= */

#contact {
    background:

        radial-gradient(
            circle at 75% 20%,
            rgba(
                216,
                176,
                106,
                0.09
            ),
            transparent 35%
        ),

        linear-gradient(
            135deg,
            #11151b,
            #090a0c
        );
}

.contact-info {
    display:
        grid;

    gap:
        18px;

    margin-bottom:
        40px;
}

.contact-info p {
    color:
        var(--text-muted);

    font-size:
        18px;
}

.contact-info strong {
    margin-right:
        8px;

    color:
        var(--text);
}

.contact-info a {
    color:
        var(--accent);

    overflow-wrap: anywhere;
    word-break: break-word;

    transition:
        color 0.3s ease;
}

.contact-info a:hover {
    color:
        var(--accent-light);
}

.contact-buttons {
    display:
        flex;

    flex-wrap:
        wrap;

    gap:
        14px;
}

.contact-buttons a {
    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    min-height:
        54px;

    padding:
        0 30px;

    border-radius:
        999px;

    border:
        1px solid var(--border);

    background:
        rgba(
            255,
            255,
            255,
            0.035
        );

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease;
}

.contact-buttons a:first-child {
    background:
        var(--gold-gradient);

    color:
        #14110a;

    font-weight:
        700;

    border-color:
        transparent;

    box-shadow:
        var(--gold-glow);
}

.contact-buttons a:hover {
    transform:
        translateY(-2px);

    color:
        #14110a;
}

.contact-buttons a:first-child:hover {
    background:
        var(--gold-gradient);

    filter:
        brightness(1.07);

    border-color:
        transparent;

    box-shadow:
        0 18px 52px rgba(216, 176, 106, 0.30),
        0 6px 18px rgba(216, 176, 106, 0.20);
}

/* =========================================================
   FOOTER
========================================================= */

footer {
    padding:
        40px 8%;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        20px;

    flex-wrap:
        wrap;

    border-top:
        1px solid var(--border);

    background:
        #07080a;

    color:
        var(--text-muted);

    font-size:
        14px;
}

/* =========================================================
   SCROLLBAR
========================================================= */

::-webkit-scrollbar {
    width:
        8px;
}

::-webkit-scrollbar-track {
    background:
        #08090b;
}

::-webkit-scrollbar-thumb {
    background:
        rgba(
            216,
            176,
            106,
            0.55
        );

    border-radius:
        20px;
}

::-webkit-scrollbar-thumb:hover {
    background:
        var(--accent);
}

::selection {
    background:
        var(--accent);

    color:
        #111;
}

/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1000px) {

    header {
        padding:
            0 4%;
    }

    nav {
        gap:
            16px;
    }

    nav a {
        font-size:
            13px;
    }

    #home {
        padding-left:
            5%;

        padding-right:
            5%;
    }

    section:not(#home) {
        padding:
            100px 5%;
    }

    .service-grid {
        grid-template-columns:
            1fr;
    }
}

/* =========================================================
   RESPONSIVE — TELEFON
========================================================= */

@media (max-width: 700px) {

    header {
        height:
            auto;

        min-height:
            75px;

        padding:
            16px 5%;

        flex-direction:
            column;

        gap:
            13px;
    }

    .logo {
        font-size:
            17px;
    }

    .logo-img {
        height:
            34px;

        max-width:
            34px;
    }

    nav {
        width:
            100%;

        justify-content:
            center;

        flex-wrap:
            wrap;

        gap:
            10px 14px;
    }

    nav a {
        font-size:
            11px;
    }

    .language-switcher {
        margin-left:
            0;
    }

    #home {
        min-height:
            100svh;

        padding:
            180px 24px 90px;

        align-items:
            center;
    }

    #home h1 {
        font-size:
            clamp(
                48px,
                14vw,
                72px
            );

        letter-spacing:
            -3px;
    }

    #home .subtitle {
        font-size:
            10px;

        letter-spacing:
            3px;
    }

    .hero-description {
        font-size:
            16px;

        line-height:
            1.7;

        margin-top:
            28px;
    }

    .hero-buttons {
        flex-direction:
            column;

        align-items:
            stretch;

        margin-top:
            35px;
    }

    .hero-buttons a {
        width:
            100%;
    }

    section:not(#home) {
        padding:
            85px 24px;
    }

    .section-heading {
        margin-bottom:
            50px;
    }

    .section-heading h2 {
        font-size:
            42px;

        letter-spacing:
            -2px;
    }

    .section-heading p {
        font-size:
            16px;
    }

    .service-section {
        margin-bottom:
            80px;
    }

    .service-section > h2 {
        font-size:
            34px;
    }

    .service-card {
        min-height:
            auto;

        padding:
            30px;
    }

    .service-card h3 {
        font-size:
            21px;
    }

    .contact-info p {
        font-size:
            16px;
    }

    .contact-buttons {
        flex-direction:
            column;
    }

    .contact-buttons a {
        width:
            100%;
    }

    footer {
        flex-direction:
            column;

        align-items:
            flex-start;

        padding:
            35px 24px;
    }
}

/* =========================================================
   SERVICE OVERVIEW
========================================================= */

.service-overview {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 22px;

    margin-bottom: 110px;
}

.overview-card {
    position: relative;

    min-height: 360px;

    padding: 38px;

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    overflow: hidden;

    border:
        1px solid var(--border);

    border-radius:
        28px;

    background:
        linear-gradient(
            145deg,
            #171a20,
            #0f1115
        );

    transition:
        transform 0.45s ease,
        border-color 0.45s ease,
        box-shadow 0.45s ease;
}

.overview-number {
    position: absolute;

    top: 25px;
    right: 28px;

    font-size: 13px;
    letter-spacing: 2px;

    color:
        rgba(
            255,
            255,
            255,
            0.35
        );
}

.overview-icon {
    position: absolute;

    top: 35px;
    left: 35px;

    width: 68px;
    height: 68px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 20px;

    background:
        rgba(
            216,
            176,
            106,
            0.10
        );

    border:
        1px solid
        rgba(
            216,
            176,
            106,
            0.20
        );

    font-size: 30px;

    transition:
        transform 0.45s ease,
        background 0.45s ease;
}

.overview-card h3 {
    margin-bottom: 12px;

    font-size: 28px;

    letter-spacing:
        -0.8px;
}

.overview-card p {
    margin-bottom: 25px;

    color:
        var(--text-muted);

    font-size: 15px;

    line-height:
        1.7;
}

.overview-link {
    color:
        var(--accent);

    font-size: 14px;
    font-weight: 700;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.overview-card:hover {
    transform:
        translateY(-10px);

    border-color:
        rgba(
            216,
            176,
            106,
            0.38
        );

    box-shadow:
        0 30px 80px
        rgba(
            0,
            0,
            0,
            0.40
        );
}

.overview-card:hover .overview-icon {
    transform:
        translateY(-5px)
        rotate(-4deg);

    background:
        rgba(
            216,
            176,
            106,
            0.18
        );
}

.overview-card:hover .overview-link {
    color:
        var(--accent-light);

    transform:
        translateX(5px);
}

.overview-card::before {
    content: "";

    position: absolute;

    width: 260px;
    height: 260px;

    top: -150px;
    right: -120px;

    border-radius: 50%;

    background:
        rgba(
            216,
            176,
            106,
            0.06
        );

    filter:
        blur(50px);

    transition:
        transform 0.6s ease;
}

.overview-card:hover::before {
    transform:
        scale(1.5);
}

@media (max-width: 900px) {

    .service-overview {
        grid-template-columns:
            1fr;

        margin-bottom:
            80px;
    }

    .overview-card {
        min-height:
            300px;
    }
}

@media (max-width: 600px) {

    .overview-card {
        min-height:
            330px;

        padding:
            30px;
    }

    .overview-icon {
        left:
            30px;

        top:
            30px;
    }

    .overview-card h3 {
        font-size:
            25px;
    }
}

/* =========================================================
   DELIKATNE ANIMACJE
========================================================= */

@keyframes hero-reveal {

    from {
        opacity: 0;
        transform: translateY(26px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroSlideIn {

    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

#home .subtitle,
#home h1,
#home .hero-description,
#home .hero-buttons {
    opacity: 0;

    will-change: opacity, transform;

    animation:
        hero-reveal 0.9s
        cubic-bezier(0.22, 1, 0.36, 1)
        forwards;
}

#home .subtitle {
    animation-delay: 0.1s;
}

/* Animacja pojawiania się nagłówka w sekcji Hero - przesunięcie z prawej */
#home h1 {
    animation:
        heroSlideIn 1.2s
        cubic-bezier(0.4, 0, 0.2, 1)
        0.2s forwards;
}

#home .hero-description {
    animation-delay: 0.32s;
}

#home .hero-buttons {
    animation-delay: 0.44s;
}

.reveal {
    opacity: 0;

    transform:
        translateY(30px);

    transition:
        opacity 0.75s ease,
        transform 0.75s ease;
}

.reveal.is-visible {
    opacity: 1;

    transform:
        translateY(0);
}

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    #home {
        --parallax-y: 0px;
    }

    #home .subtitle,
    #home h1,
    #home .hero-description,
    #home .hero-buttons {
        opacity: 1;

        animation: none;

        will-change: auto;
    }

    .reveal {
        opacity: 1;

        transform: none;

        transition: none;
    }
}

/* =========================================================
   MENU HAMBURGER — TELEFON
========================================================= */

.menu-toggle {
    display: none;

    width: 44px;
    height: 44px;

    align-items: center;
    justify-content: center;

    flex-direction: column;

    gap: 5px;

    border: 1px solid var(--border);

    border-radius: 14px;

    background:
        rgba(255, 255, 255, 0.035);

    cursor: pointer;
}

.menu-toggle span {
    display: block;

    width: 19px;
    height: 2px;

    border-radius: 999px;

    background:
        var(--text);

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}

.menu-toggle:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

@media (max-width: 700px) {

    header {
        height: 76px;

        min-height: 76px;

        padding: 0 24px;

        flex-direction: row;

        flex-wrap: wrap;

        gap: 0;
    }

    header.menu-open {
        height: auto;

        padding:
            16px 24px 20px;
    }

    .logo {
        font-size: 16px;
    }

    .logo-img {
        height: 32px;

        max-width: 32px;
    }

    .menu-toggle {
        display: inline-flex;
    }

    header.menu-open .menu-toggle span:nth-child(1) {
        transform:
            translateY(7px)
            rotate(45deg);
    }

    header.menu-open .menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    header.menu-open .menu-toggle span:nth-child(3) {
        transform:
            translateY(-7px)
            rotate(-45deg);
    }

    nav {
        display: none;

        order: 3;

        width: 100%;

        margin-top: 16px;

        padding: 12px;

        flex-direction: column;

        align-items: stretch;

        gap: 3px;

        border: 1px solid var(--border);

        border-radius: 20px;

        background:
            rgba(21, 24, 29, 0.94);
    }

    header.menu-open nav {
        display: flex;

        animation:
            mobile-menu-open 0.28s ease both;
    }

    nav a {
        width: 100%;

        padding: 12px 14px;

        border-radius: 12px;

        font-size: 14px;

        color:
            var(--text);
    }

    nav a::after {
        display: none;
    }

    nav a:hover {
        transform:
            translateX(4px);

        background:
            rgba(255, 255, 255, 0.055);
    }

    .language-switcher {
        align-self: flex-start;

        margin:
            8px 0 2px;
    }

    body.menu-open {
        overflow: hidden;
    }

    #home {
        padding-top: 145px;
    }
}

@keyframes mobile-menu-open {

    from {
        opacity: 0;

        transform:
            translateY(-10px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);
    }
}

/* =========================================================
   QUOTE BUILDER — KREATOR ZAMÓWIENIA
========================================================= */

.quote-builder {
    position: relative;

    max-width: 780px;
    margin: 0 auto;

    padding: 48px 44px;

    border: 1px solid var(--border);
    border-radius: 28px;

    /* Ciemne szkło z delikatnym światłem w górnej części */
    background:
        radial-gradient(
            ellipse 90% 40% at 50% -10%,
            rgba(216, 176, 106, 0.06),
            transparent 60%
        ),
        linear-gradient(
            180deg,
            #171b21 0%,
            #12151a 100%
        );

    box-shadow: var(--shadow);

    overflow: hidden;
}

/* Złota włosowa linia na górnej krawędzi kreatora */
.quote-builder::before {
    content: "";

    position: absolute;

    top: 0;
    left: 50%;

    width: 180px;
    height: 1px;

    transform: translateX(-50%);

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(216, 176, 106, 0.65),
            transparent
        );
}

.quote-progress {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 8px;

    margin-bottom: 40px;
}

.quote-progress-item {
    position: relative;

    display: flex;
    flex-direction: column;
    align-items: center;

    flex: 1;

    gap: 8px;
}

.quote-progress-item::after {
    content: "";

    position: absolute;

    top: 17px;
    left: 50%;

    width: 100%;
    height: 1px;

    background: var(--border);

    z-index: 0;
}

.quote-progress-item:last-child::after {
    display: none;
}

.quote-progress-item.is-complete::after {
    background: var(--accent);

    transition: background 0.4s ease;
}

.quote-progress-item span {
    position: relative;

    z-index: 1;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    border-radius: 50%;
    border: 1px solid var(--border);

    background: var(--background);
    color: var(--text-muted);

    font-size: 12px;
    font-weight: 700;

    transition:
        border-color 0.35s ease,
        background 0.35s ease,
        color 0.35s ease,
        transform 0.35s ease;
}

.quote-progress-item p {
    margin: 0;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;

    color: var(--text-muted);

    transition: color 0.35s ease;
}

.quote-progress-item.is-active span {
    border-color: var(--accent);
    background: rgba(216, 176, 106, 0.14);
    color: var(--accent-light);

    transform: scale(1.08);
}

.quote-progress-item.is-active p {
    color: var(--text);
}

.quote-progress-item.is-complete span {
    border-color: var(--accent);
    background: var(--accent);
    color: #101010;
}

.quote-step {
    display: none;
}

.quote-step.is-active {
    display: block;

    animation: quoteStepIn 0.45s ease both;
}

@keyframes quoteStepIn {

    from {
        opacity: 0;

        transform: translateX(18px);
    }

    to {
        opacity: 1;

        transform: translateX(0);
    }
}

.quote-step-title {
    margin-bottom: 26px;

    font-size: 20px;
    font-weight: 700;

    color: var(--text);
}

.quote-service-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 16px;
}

.quote-service-option {
    position: relative;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 14px;

    padding: 26px 22px;

    border: 1px solid var(--border);
    border-radius: 20px;

    background: rgba(255, 255, 255, 0.02);
    color: var(--text);

    text-align: left;
    cursor: pointer;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.quote-service-option:hover {
    transform: translateY(-4px);

    border-color: var(--border-light);
    background: rgba(255, 255, 255, 0.045);
}

.quote-service-option.is-selected {
    border-color: var(--accent);
    background: rgba(216, 176, 106, 0.09);
    box-shadow: 0 18px 45px rgba(216, 176, 106, 0.18);
}

.quote-service-icon {
    font-size: 30px;
}

.quote-service-copy strong {
    display: block;

    margin-bottom: 4px;

    font-size: 15px;
}

.quote-service-copy small {
    display: block;

    font-size: 13px;
    color: var(--text-muted);
}

.quote-check {
    position: absolute;

    top: 16px;
    right: 16px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 22px;
    height: 22px;

    border-radius: 50%;
    border: 1px solid var(--border);

    font-size: 11px;
    color: transparent;

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.quote-service-option.is-selected .quote-check {
    border-color: var(--accent);
    background: var(--accent);
    color: #101010;

    transform: scale(1.1);
}

.quote-selected-service {
    display: flex;
    align-items: center;

    gap: 14px;

    margin-bottom: 28px;
    padding: 14px 18px;

    border: 1px solid var(--border);
    border-radius: 16px;

    background: rgba(255, 255, 255, 0.02);
}

.quote-selected-icon {
    font-size: 26px;
}

.quote-selected-service small {
    display: block;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;

    color: var(--text-muted);
}

.quote-selected-name {
    display: block;

    font-size: 15px;
    font-weight: 700;

    color: var(--text);
}

.quote-service-fields {
    display: none;
}

.quote-service-fields.is-active {
    display: block;

    animation: quoteFieldsIn 0.4s ease both;
}

@keyframes quoteFieldsIn {

    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.quote-fields-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 20px;

    margin-top: 20px;
}

.quote-field-full {
    grid-column: 1 / -1;
}

.quote-field label {
    display: block;

    margin-bottom: 9px;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.6px;

    color: var(--text-muted);
}

.quote-field input,
.quote-field select,
.quote-field textarea {
    width: 100%;

    padding: 14px 16px;

    border: 1px solid var(--border);
    border-radius: 12px;

    background: rgba(255, 255, 255, 0.03);
    color: var(--text);

    font-family: inherit;
    font-size: 14px;

    transition:
        border-color 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.quote-field textarea {
    min-height: 120px;

    resize: vertical;
}

.quote-field select {
    cursor: pointer;

    appearance: none;

    background-image:
        linear-gradient(45deg, transparent 50%, var(--accent) 50%),
        linear-gradient(135deg, var(--accent) 50%, transparent 50%);

    background-position:
        calc(100% - 22px) center,
        calc(100% - 17px) center;

    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
}

.quote-field input::placeholder,
.quote-field textarea::placeholder {
    color: var(--text-muted);
}

.quote-field input:focus,
.quote-field select:focus,
.quote-field textarea:focus {
    outline: none;

    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 0 3px rgba(216, 176, 106, 0.15);
}

.quote-field input.has-error,
.quote-field select.has-error,
.quote-field textarea.has-error {
    border-color: #e2685c;
    box-shadow: 0 0 0 3px rgba(226, 104, 92, 0.15);

    animation: quoteShake 0.35s ease;
}

/* Upewnienie, że opcje rozwijanej listy są czytelne od razu po otwarciu */
.quote-field select option,
#quote-builder select option {
    background-color: var(--background);   /* ciemne tło */
    color: var(--text);                    /* jasny tekst */
    padding: 8px 12px;
}

@keyframes quoteShake {

    20%,
    80% {
        transform: translateX(-3px);
    }

    40%,
    60% {
        transform: translateX(3px);
    }
}

.quote-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 14px;

    margin-top: 34px;
}

.quote-actions-end {
    justify-content: flex-end;
}

.quote-next,
.quote-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    min-height: 54px;
    padding: 0 30px;

    border: none;
    border-radius: 999px;

    background: var(--gold-gradient);
    color: #14110a;

    font-size: 14px;
    font-weight: 700;

    cursor: pointer;

    box-shadow: var(--gold-glow);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        filter 0.3s ease;
}

.quote-next:hover,
.quote-submit:hover {
    transform: translateY(-2px);

    filter: brightness(1.07);
    box-shadow:
        0 18px 52px rgba(216, 176, 106, 0.30),
        0 6px 18px rgba(216, 176, 106, 0.20);
}

.quote-next span:last-child,
.quote-submit span:last-child {
    transition: transform 0.3s ease;
}

.quote-next:hover span:last-child,
.quote-submit:hover span:last-child {
    transform: translateX(4px);
}

.quote-back {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    min-height: 54px;
    padding: 0 26px;

    border: 1px solid var(--border);
    border-radius: 999px;

    background: transparent;
    color: var(--text-muted);

    font-size: 14px;
    font-weight: 600;

    cursor: pointer;

    transition:
        color 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}

.quote-back:hover {
    color: var(--text);

    border-color: var(--border-light);
    background: rgba(255, 255, 255, 0.04);

    transform: translateY(-3px);
}

.quote-form-message {
    min-height: 20px;

    margin-top: 22px;

    font-size: 13px;
    text-align: center;

    color: var(--text-muted);

    transition: color 0.3s ease;
}

.quote-form-message.is-error {
    color: #e2685c;
}

.quote-form-message.is-success {
    font-weight: 700;

    color: var(--accent-light);
}

@media (max-width: 760px) {

    .quote-builder {
        padding: 34px 22px;

        border-radius: 22px;
    }

    .quote-service-options {
        grid-template-columns: 1fr;
    }

    .quote-fields-grid {
        grid-template-columns: 1fr;
    }

    .quote-progress-item p {
        font-size: 9px;
    }

    .quote-actions {
        flex-direction: column-reverse;
    }

    .quote-actions .quote-back,
    .quote-actions .quote-next,
    .quote-actions .quote-submit {
        width: 100%;
    }
}

/* =========================================================
   RESPONSIVE — MAŁE TELEFONY I SAFE AREA
========================================================= */

.quote-builder,
.hero-content,
.section-heading,
.service-overview,
.service-grid,
.quote-fields-grid {
    max-width: 100%;
}

@media (max-width: 700px) {

    header {
        padding-top: env(safe-area-inset-top);
        padding-left: max(20px, env(safe-area-inset-left));
        padding-right: max(20px, env(safe-area-inset-right));
        height: calc(76px + env(safe-area-inset-top));
        min-height: calc(76px + env(safe-area-inset-top));
    }

    header.menu-open {
        height: auto;
        padding-top: max(16px, env(safe-area-inset-top));
        padding-bottom: 20px;
        padding-left: max(20px, env(safe-area-inset-left));
        padding-right: max(20px, env(safe-area-inset-right));
    }

    .logo {
        flex: 1;
        padding-right: 12px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    #home {
        min-height: 100vh;
        min-height: 100svh;
        padding-top: calc(120px + env(safe-area-inset-top));
        padding-right: max(20px, env(safe-area-inset-right));
        padding-bottom: calc(72px + env(safe-area-inset-bottom));
        padding-left: max(20px, env(safe-area-inset-left));
    }

    #home h1 {
        font-size: clamp(32px, 9.5vw, 46px);
        letter-spacing: -1.4px;
        line-height: 1.08;
        max-width: 100%;
        overflow-wrap: anywhere;
    }

    #home::before {
        width: 320px;
        height: 320px;
        right: -140px;
        top: -120px;
    }

    section:not(#home) {
        padding-top: 72px;
        padding-bottom: 72px;
        padding-left: max(20px, env(safe-area-inset-left));
        padding-right: max(20px, env(safe-area-inset-right));
    }

    .section-heading h2 {
        font-size: clamp(28px, 8vw, 40px);
        letter-spacing: -1.2px;
        line-height: 1.12;
    }

    .service-section > h2 {
        font-size: clamp(24px, 7vw, 32px);
    }

    .quote-field input,
    .quote-field select,
    .quote-field textarea {
        font-size: 16px;
        max-width: 100%;
    }

    .quote-builder {
        padding: 28px 16px;
    }

    .quote-progress-item p {
        text-align: center;
        letter-spacing: 0.4px;
        line-height: 1.3;
        max-width: 4.8em;
        overflow-wrap: anywhere;
    }

    footer {
        padding-left: max(20px, env(safe-area-inset-left));
        padding-right: max(20px, env(safe-area-inset-right));
        padding-bottom: calc(28px + env(safe-area-inset-bottom));
    }
}

@media (max-width: 380px) {

    .logo {
        white-space: normal;
        line-height: 1.25;
        font-size: 13px;
        letter-spacing: 0;
    }

    .logo-img {
        height: 30px;

        max-width: 30px;
    }

    #home h1 {
        font-size: clamp(28px, 11vw, 36px);
        letter-spacing: -1px;
    }

    .hero-buttons a,
    .contact-buttons a {
        min-height: 52px;
    }
}

/* =========================
     ASYSTENT WIRTUALNY
========================= */
.assistant-toggle {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    border: none;
    border-radius: 50%;
    color: var(--background);
    font-size: 28px;
    cursor: pointer;
    z-index: 2000;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.assistant-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.assistant-panel {
    position: fixed;
    right: 0;
    bottom: 80px;
    width: 320px;
    max-width: 90vw;
    background:
        radial-gradient(
            ellipse 120% 45% at 50% 0%,
            rgba(216, 176, 106, 0.055),
            transparent 55%
        ),
        linear-gradient(
            180deg,
            #16191e 0%,
            #0d0f12 100%
        );
    border: 1px solid var(--border-light);
    border-radius: 16px;
    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(216, 176, 106, 0.06);
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) translateX(20px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    overflow: hidden;
}

.assistant-panel.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) translateX(0);
}

.assistant-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.03),
            transparent
        );
}

.assistant-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.4px;
}

.assistant-close {
    background: none;
    border: none;
    font-size: 20px;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px 8px;
}

.assistant-close:hover {
    color: var(--text);
}

.assistant-body {
    padding: 24px;
}

.assistant-step {
    margin-bottom: 24px;
}

.assistant-step.hidden {
    display: none;
}

.assistant-bubble {
    background: var(--background-light);
    border-radius: 12px;
    padding: 12px 16px;
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text);
}

.assistant-options {
    display: grid;
    gap: 8px;
}

.assistant-option {
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 14px;
    color: var(--text);
    cursor: pointer;
    transition: background 0.2s ease;
}

.assistant-option:hover {
    background: var(--accent-light);
    color: var(--background);
}

.assistant-option.selected {
    background: var(--accent);
    color: var(--background-light);
}

.assistant-input-group {
    margin-top: 8px;
}

.assistant-input-group input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--background);
    color: var(--text);
    font-size: 14px;
}

.assistant-footer {
    padding: 16px 24px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.assistant-footer-btn {
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 13px;
    color: var(--text);
    cursor: pointer;
    transition: background 0.2s ease;
}

.assistant-footer-btn:hover {
    background: var(--accent);
    color: var(--background-light);
}

.assistant-btn-primary {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--background-light);
    font-weight: 700;
}

.assistant-btn-primary:hover {
    background: var(--accent-light);
}

.assistant-footer-btn:disabled {
    opacity: 0.5;
    cursor: default;
}

.assistant-footer-btn:disabled:hover {
    background: var(--background);
    color: var(--text);
}

.assistant-chat {
    display: none;
}

.assistant-chat.assistant-chat-visible {
    display: block;
}

.assistant-chat-history {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
    max-height: 220px;
    overflow-y: auto;
}

.assistant-chat-message {
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.5;
}

.assistant-chat-message.assistant {
    align-self: flex-start;
    background: var(--background-light);
    color: var(--text);
}

.assistant-chat-message.user {
    align-self: flex-end;
    background: var(--accent);
    color: var(--background-light);
}

.assistant-chat-input-row {
    display: flex;
    gap: 8px;
}

.assistant-chat-input {
    flex: 1;
    min-width: 0;
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--background);
    color: var(--text);
    font-size: 14px;
}

.assistant-chat-input::placeholder {
    color: var(--text-muted);
}

.assistant-chat-send {
    background: var(--accent);
    border: none;
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 13px;
    color: var(--background-light);
    cursor: pointer;
}

.assistant-chat-send:hover {
    background: var(--accent-light);
}

.assistant-chat-action {
    display: flex;
    justify-content: center;
    margin: 8px 0;
}

.assistant-chat-action .assistant-option {
    width: auto;
    min-width: 160px;
}

/* Widok gotowego zapytania */
.assistant-quote-preview {
    display: none;
}

.assistant-quote-preview.assistant-quote-preview-visible {
    display: block;
}

.assistant-quote-preview-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text);
}

.assistant-quote-preview-info {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.assistant-quote-preview-body {
    width: 100%;
    min-height: 180px;
    resize: vertical;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--background);
    color: var(--text);
    font-size: 14px;
    line-height: 1.55;
    margin-bottom: 12px;
    font-family: inherit;
}

.assistant-quote-preview-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.assistant-quote-preview-actions .assistant-option {
    flex: 1 1 auto;
    min-width: 120px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .assistant-toggle,
    .assistant-panel {
        transition: none;
    }
}
        @media (prefers-reduced-motion: reduce) {
    .assistant-toggle,
    .assistant-panel {
        transition: none;
    }
}

/* Assistant quote preview result states */
.assistant-quote-result {
    margin-top: 14px;
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.4;
    border: 1px solid transparent;
    text-align: center;
}
.assistant-quote-result-title {
    display: block;
    font-weight: 600;
    margin-bottom: 4px;
}
.assistant-quote-result-sub {
    display: block;
    font-size: 13px;
    opacity: 0.8;
}
.assistant-quote-result.is-success {
    background: rgba(46, 125, 50, 0.08);
    border-color: rgba(46, 125, 50, 0.3);
    color: #2e7d32;
}
.assistant-quote-result.is-error {
    background: rgba(211, 47, 47, 0.08);
    border-color: rgba(211, 47, 47, 0.3);
    color: #d32f2f;
}
.assistant-quote-preview-send:disabled,
.assistant-quote-preview-back[disabled] {
    opacity: 0.6;
    pointer-events: auto;
    cursor: default;
}
.assistant-quote-retry {
    margin-top: 10px;
}

/* =========================================================
   MENU — SEKCJA Z LISTĄ DAŃ
   Elegancki, „restauracyjny” wygląd oparty na istniejącej
   palecie (--card / --border / --accent) i strukturze HTML.
========================================================= */

#menu {
    padding-top: 40px;
    padding-bottom: 140px;
}

.menu-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 36px;
    max-width: 1240px;
    margin: 0 auto;
}

/* --- Karta kategorii --- */

.menu-category {
    position: relative;
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.02),
            rgba(255, 255, 255, 0)
        ),
        var(--card);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 40px 38px 44px;
    overflow: hidden;
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.menu-category::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 72px;
    height: 2px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.9;
}

/* subtelny blask rozchodzący się za nagłówkiem kategorii */
.menu-category::after {
    content: "";
    position: absolute;
    top: -70px;
    left: 50%;
    width: 260px;
    height: 150px;
    transform: translateX(-50%);
    background: radial-gradient(
        circle,
        rgba(216, 176, 106, 0.16),
        rgba(216, 176, 106, 0.04) 55%,
        transparent 74%
    );
    pointer-events: none;
    opacity: 0.9;
}

.menu-category:hover {
    border-color: var(--border-light);
    box-shadow:
        0 24px 52px -22px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(216, 176, 106, 0.1),
        0 0 0 1px inset rgba(255, 255, 255, 0.03);
}

/* --- Nagłówek kategorii + separator --- */

.menu-category h3 {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    text-align: center;
    text-shadow: 0 0 22px rgba(216, 176, 106, 0.28);
}

.menu-category h3::after {
    content: "◆";
    display: block;
    margin-top: 12px;
    margin-bottom: 28px;
    font-size: 9px;
    letter-spacing: 0;
    color: var(--accent);
    opacity: 0.55;
}

/* --- Lista dań jak w karcie menu restauracji --- */

.menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-list li {
    position: relative;
    display: flex;
    align-items: baseline;
    gap: 14px;
    padding: 13px 12px 13px 8px;
    border-radius: 8px;
    font-size: 16px;
    line-height: 1.55;
    color: var(--text);
    cursor: default;
    transition:
        color 0.25s ease,
        transform 0.25s ease,
        background 0.25s ease;
}

/* delikatny separator między pozycjami */
.menu-list li + li {
    border-top: 1px dashed rgba(255, 255, 255, 0.07);
}

/* elegancki znacznik zamiast bulleta */
.menu-list li::before {
    content: "—";
    flex: none;
    color: var(--accent);
    opacity: 0.45;
    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

/* subtelny, złoty pionowy akcent pojawiający się przy aktywnej pozycji */
.menu-list li::after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 2px;
    height: 14px;
    transform: translateY(-50%) scaleY(0);
    background: linear-gradient(
        180deg,
        transparent,
        var(--accent-light),
        transparent
    );
    opacity: 0.9;
    transition: transform 0.25s ease;
}

.menu-list li:hover {
    color: var(--accent-light);
    transform: translateX(5px);
    background: linear-gradient(
        90deg,
        rgba(216, 176, 106, 0.12),
        rgba(216, 176, 106, 0) 70%
    );
}

.menu-list li:hover::before {
    opacity: 1;
    transform: translateX(2px);
}

.menu-list li:hover::after {
    transform: translateY(-50%) scaleY(1);
}

/* --- Kategorie pojawiają się subtelnie przy wejściu w viewport --- */
.menu-category.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition:
        opacity 0.55s ease,
        transform 0.55s ease;
}

.menu-category.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .menu-category.reveal,
    .menu-category.reveal.is-visible {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .menu-list li,
    .menu-list li::before,
    .menu-list li::after {
        transition: none;
    }
}

/* --- Responsywność --- */

@media (max-width: 1024px) {
    .menu-categories {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 28px;
    }
}

@media (max-width: 720px) {
    #menu {
        padding-bottom: 96px;
    }

    .menu-categories {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .menu-category {
        padding: 32px 26px 34px;
    }

    .menu-category h3 {
        font-size: 17px;
        letter-spacing: 2.4px;
    }

    .menu-category h3::after {
        margin-bottom: 22px;
    }

    .menu-list li {
        padding-top: 11px;
        padding-bottom: 11px;
        font-size: 15px;
    }
}
/* =========================================================
   MENU - INTERAKTYWNY PODGLAD ZDJECIA DANIA
========================================================= */

.menu-dish-preview {
    position: fixed;
    left: 0;
    top: 0;
    width: 252px;
    padding: 12px 12px 20px;
    border-radius: 22px;
    background: rgba(16, 18, 22, 0.62);
    border: 1px solid var(--border);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
    z-index: 800;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(0.94);
    transition:
        opacity 0.3s ease,
        transform 0.3s ease,
        visibility 0.3s ease;
}

.menu-dish-preview.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* --- Mgielka (delikatnie wylania zdjecie) --- */
.menu-dish-preview__mist {
    position: absolute;
    inset: -6px 0 0;
    z-index: 0;
    pointer-events: none;
    overflow: visible;
    border-radius: inherit;
}

.menu-dish-preview__mist::before,
.menu-dish-preview__mist::after {
    content: "";
    position: absolute;
    top: -8px;
    pointer-events: none;
    opacity: 0;
}

.menu-dish-preview__mist::before {
    left: -18%;
    width: 80%;
    height: 90%;
    background: radial-gradient(
        circle,
        rgba(242, 214, 155, 0.34),
        rgba(242, 214, 155, 0.05) 60%,
        transparent 72%
    );
    filter: blur(10px);
}

.menu-dish-preview__mist::after {
    right: -14%;
    top: 6px;
    width: 70%;
    height: 80%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.14),
        rgba(255, 255, 255, 0.03) 55%,
        transparent 72%
    );
    filter: blur(12px);
}

.menu-dish-preview.is-visible .menu-dish-preview__mist::before {
    animation: menuMistRise 3.8s ease-out infinite;
}

.menu-dish-preview.is-visible .menu-dish-preview__mist::after {
    animation: menuMistRise 4.6s 0.7s ease-out infinite;
}

@keyframes menuMistRise {
    0% {
        opacity: 0;
        transform: translateY(16px) scale(0.9);
    }
    24% {
        opacity: 1;
    }
    58% {
        opacity: 0.6;
    }
    100% {
        opacity: 0;
        transform: translateY(-20px) scale(1.06);
    }
}

/* --- Babelki unoszace sie ku gorze --- */
.menu-dish-preview__particle {
    position: absolute;
    bottom: 4px;
    left: var(--x, 30%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(242, 214, 155, 0.65),
        rgba(242, 214, 155, 0.15) 70%
    );
    box-shadow: 0 0 8px rgba(242, 214, 155, 0.35);
    filter: blur(0.5px);
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    transform: scale(var(--s, 1));
}

.menu-dish-preview__particle:nth-child(2) {
    --x: 14%;
    --d: 0s;
    --s: 0.9;
}
.menu-dish-preview__particle:nth-child(3) {
    --x: 54%;
    --d: 1.1s;
    --s: 1.15;
}
.menu-dish-preview__particle:nth-child(4) {
    --x: 84%;
    --d: 2.0s;
    --s: 0.7;
}

.menu-dish-preview.is-visible .menu-dish-preview__particle {
    animation: menuBubbleRise 3.4s ease-in infinite;
    animation-delay: var(--d, 0s);
}

@keyframes menuBubbleRise {
    0% {
        opacity: 0;
        transform: translateY(0) scale(var(--s, 1));
    }
    18% {
        opacity: 0.9;
    }
    60% {
        opacity: 0.35;
    }
    100% {
        opacity: 0;
        transform: translateY(-74px) scale(calc(var(--s, 1) * 1.35));
    }
}

/* --- Zdjecie (wejscie + delikatne plywanie) --- */
.menu-dish-preview__img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 168px;
    object-fit: cover;
    border-radius: 14px;
    background: var(--card);
    border: 1px solid var(--border-light);
    box-shadow:
        0 20px 44px rgba(0, 0, 0, 0.55),
        inset 0 0 0 1px rgba(255, 255, 255, 0.04);
    opacity: 0;
}

.menu-dish-preview.is-visible .menu-dish-preview__img {
    opacity: 1;
}

.menu-dish-preview.is-visible .menu-dish-preview__img.is-animating {
    animation:
        menuImgIn 0.5s ease,
        menuPreviewFloat 5s 0.6s ease-in-out infinite;
}

@keyframes menuImgIn {
    from {
        opacity: 0;
        transform: scale(0.94) translateY(8px);
        filter: blur(6px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
        filter: blur(0);
    }
}

@keyframes menuPreviewFloat {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-5px) rotate(0.25deg);
    }
}

/* =========================================================
   PREMIUM POLISH — spójna warstwa wykończeniowa
   (wyłącznie wizualna; nie zmienia logiki ani struktury)
========================================================= */

/* --- Tła przejściowe: MENU i KREATOR --- */

#menu {
    /* Ciepłe, spokojne światło karty dań na grafitowym tle */
    background:
        radial-gradient(
            ellipse 75% 40% at 50% 0%,
            rgba(216, 176, 106, 0.045),
            transparent 62%
        ),
        linear-gradient(
            180deg,
            #0d0f12 0%,
            #090a0c 100%
        );
}

#quote-builder {
    background:
        radial-gradient(
            ellipse 70% 45% at 85% 15%,
            rgba(96, 110, 134, 0.07),
            transparent 60%
        ),
        linear-gradient(
            180deg,
            #0b0d10 0%,
            #101216 100%
        );
}

/* =========================================================
   SPRZĄTANIE — czystość, świeżość, profesjonalizm
========================================================= */

/* Chłodne, srebrzyste światło sekcji */
#cleaning {
    position: relative;
}

#cleaning::before {
    content: "";

    position: absolute;

    top: -60px;
    right: -120px;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    background:
        rgba(210, 224, 240, 0.05);

    filter: blur(110px);

    pointer-events: none;
}

/* Połysk przesuwający się po kartach przy hoverze */
#cleaning .service-card::after {
    content: "";

    position: absolute;

    top: -40%;
    left: -80%;

    width: 55%;
    height: 180%;

    transform: rotate(18deg);

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.07),
            transparent
        );

    opacity: 0;

    transition:
        left 0.7s ease,
        opacity 0.4s ease;

    pointer-events: none;
}

#cleaning .service-card:hover::after {
    left: 130%;

    opacity: 1;
}

/* =========================================================
   CATERING — ciepło i głębia
========================================================= */

#catering .service-card {
    background:
        linear-gradient(
            145deg,
            rgba(216, 176, 106, 0.05),
            rgba(255, 255, 255, 0.012)
        );
}

#catering .service-card:hover {
    border-color:
        rgba(216, 176, 106, 0.45);

    box-shadow:
        var(--shadow),
        0 0 42px rgba(216, 176, 106, 0.10);
}

/* =========================================================
   CIASTA I DESERY — miękkość i elegancja
========================================================= */

#cakes {
    position: relative;
}

#cakes::before {
    content: "";

    position: absolute;

    top: -40px;
    left: -140px;

    width: 380px;
    height: 380px;

    border-radius: 50%;

    background:
        rgba(242, 214, 155, 0.05);

    filter: blur(105px);

    pointer-events: none;
}

#cakes .service-card {
    border-radius:
        28px;
}

/* Miękkie ciepłe tło karty w spoczynku */
#cakes .service-card::before {
    background:
        rgba(
            242,
            214,
            155,
            0.10
        );

    filter:
        blur(50px);
}

/* =========================================================
   UJEDNOLICENIE FOCUS STATES
======================================================== */

.hero-buttons a:focus-visible,
.contact-buttons a:focus-visible,
.quote-next:focus-visible,
.quote-submit:focus-visible,
.quote-back:focus-visible,
.quote-service-option:focus-visible,
.assistant-option:focus-visible,
.assistant-footer-btn:focus-visible,
.assistant-chat-send:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

.quote-field input:focus-visible,
.quote-field select:focus-visible,
.quote-field textarea:focus-visible {
    outline: 1px solid rgba(216, 176, 106, 0.5);
}

/* Delikatna złota poświata przycisku asystenta */
.assistant-toggle {
    box-shadow:
        0 18px 48px rgba(0, 0, 0, 0.45),
        0 6px 22px rgba(216, 176, 106, 0.16);
}

/* =========================================================
   FOOTER — subtelny podpis autora
======================================================== */

.footer-credit {
    /* Pozycja wizualna: na środku drugiego wiersza stopki,
       mimo że w DOM stoi przed akapitem z lokalizacją
       (selektor "footer p:last-child" w JS musi dalej trafiać
       w akapit z lokalizacją, aby tłumaczenia działały). */
    order: 5;

    width: 100%;

    margin-top: 14px;

    padding-top: 14px;

    border-top:
        1px solid rgba(255, 255, 255, 0.05);

    text-align: center;

    font-size: 12px;

    letter-spacing: 0.4px;

    color:
        rgba(199, 205, 215, 0.88);

    display:
        flex;

    flex-direction:
        column;

    gap:
        4px;
}

.footer-credit span {
    font-size: 10px;

    letter-spacing: 3px;

    text-transform: uppercase;

    color:
        rgba(186, 193, 205, 0.52);
}

footer {
    flex-wrap:
        wrap;

    row-gap:
        0;
}

/* =========================================================
   PREFERENCJE RUCHU — rozszerzenie istniejącej obsługi
======================================================== */

@media (prefers-reduced-motion: reduce) {

    body::before {
        display: none;
    }

    #home::after {
        display: none;
    }

    #cleaning::before,
    #cleaning .service-card::after,
    #cakes::before {
        transition: none;

        opacity: 0;
    }

    #cleaning .service-card:hover::after {
        opacity: 0.06;
    }
}

/* --- Osluga ograniczenia ruchu --- */
@media (prefers-reduced-motion: reduce) {
    .menu-dish-preview,
    .menu-dish-preview__img,
    .menu-dish-preview__mist::before,
    .menu-dish-preview__mist::after,
    .menu-dish-preview__particle {
        animation: none !important;
        transition: none !important;
    }
}

/* =========================================================
   O NAS — ROZSZERZENIE (STATYSTYKI + HISTORIA)
========================================================= */

.about-content {
    max-width: 900px;

    margin: 56px auto 0;
}

.about-stats {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;

    margin-bottom: 56px;
}

.stat-item {
    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 10px;

    padding: 34px 18px;

    border: 1px solid var(--border);

    border-radius: var(--radius-card);

    background:
        linear-gradient(
            160deg,
            rgba(216, 176, 106, 0.07),
            rgba(255, 255, 255, 0.02) 45%
        ),
        var(--card);

    text-align: center;

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.stat-item:hover {
    border-color: rgba(216, 176, 106, 0.35);

    box-shadow: var(--gold-glow);
}

.stat-number {
    font-size: clamp(30px, 4vw, 44px);

    font-weight: 800;

    letter-spacing: -1px;

    background: var(--gold-gradient);

    -webkit-background-clip: text;

    background-clip: text;

    color: transparent;

    line-height: 1;
}

.stat-label {
    font-size: 12px;

    font-weight: 600;

    letter-spacing: 2.5px;

    text-transform: uppercase;

    color: var(--text-muted);
}

.about-story {
    position: relative;

    padding: 42px 44px;

    border: 1px solid var(--border);

    border-radius: var(--radius-card);

    background:
        linear-gradient(
            155deg,
            rgba(216, 176, 106, 0.06),
            transparent 40%
        ),
        var(--card);

    overflow: hidden;
}

.about-story::before {
    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 2px;

    background: var(--gold-gradient);

    opacity: 0.65;
}

.about-story h3 {
    margin-bottom: 18px;

    font-size: 22px;

    color: var(--accent-light);
}

.about-story p {
    margin-bottom: 14px;

    color: var(--text-muted);
}

.about-story p:last-child {
    margin-bottom: 0;
}

@media (max-width: 700px) {

    .about-stats {
        grid-template-columns: 1fr;

        gap: 14px;
    }

    .about-story {
        padding: 30px 24px;
    }
}

/* =========================================================
   OPINIE KLIENTÓW
========================================================= */

#reviews {
    padding-top: 90px;
}

.review-rotator {
    position: relative;

    max-width: 860px;

    min-height: 300px;

    margin: 0 auto 64px;

    padding: 58px 60px 46px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 18px;

    border: 1px solid var(--border-light);

    border-radius: 28px;

    background:
        radial-gradient(
            ellipse 80% 90% at 50% 0%,
            rgba(216, 176, 106, 0.09),
            transparent 60%
        ),
        rgba(21, 24, 29, 0.72);

    backdrop-filter: blur(14px);

    box-shadow: var(--shadow);

    text-align: center;

    transition:
        opacity 0.45s ease,
        filter 0.45s ease,
        transform 0.45s ease;
}

.review-rotator.is-leaving {
    opacity: 0;

    filter: blur(6px);

    transform: translateY(-8px);
}

.review-rotator.is-entering {
    animation: review-enter 0.7s ease both;
}

@keyframes review-enter {

    from {
        opacity: 0;

        filter: blur(6px);

        transform: translateY(16px);
    }

    to {
        opacity: 1;

        filter: blur(0);

        transform: translateY(0);
    }
}

.review-badge {
    display: inline-block;

    padding: 7px 16px;

    border: 1px solid rgba(216, 176, 106, 0.35);

    border-radius: 999px;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 3px;

    text-transform: uppercase;

    color: var(--accent-light);

    background: rgba(216, 176, 106, 0.08);
}

.review-stars {
    font-size: 15px;

    letter-spacing: 5px;

    color: var(--accent);

    text-shadow:
        0 0 12px rgba(216, 176, 106, 0.35);
}

.review-rotator .review-text {
    font-size: clamp(17px, 2vw, 22px);

    font-style: italic;

    line-height: 1.55;

    color: var(--text);
}

.review-author,
.review-card .review-author {
    font-size: 14px;

    letter-spacing: 1px;

    color: var(--text-muted);
}

.review-author-name {
    color: var(--accent-light);

    font-weight: 600;
}

.reviews-grid {
    max-width: 1100px;

    margin: 0 auto;

    padding: 0 24px;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 22px;
}

.review-card {
    padding: 30px 28px;

    border: 1px solid var(--border);

    border-radius: var(--radius-card);

    background:
        linear-gradient(
            165deg,
            rgba(216, 176, 106, 0.05),
            transparent 45%
        ),
        var(--card);

    transition:
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.review-card:hover {
    border-color: rgba(216, 176, 106, 0.32);

    transform: translateY(-4px);

    box-shadow: var(--gold-glow);
}

.review-card .review-stars {
    margin-bottom: 14px;

    font-size: 13px;

    letter-spacing: 4px;
}

.review-card .review-text {
    margin-bottom: 16px;

    font-size: 15px;

    font-style: italic;

    line-height: 1.6;

    color: var(--text-muted);
}

.review-card-location {
    font-size: 12px;

    letter-spacing: 2px;

    text-transform: uppercase;

    color: var(--accent);

    opacity: 0.75;
}

@media (max-width: 980px) {

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {

    #reviews {
        padding-top: 70px;
    }

    .review-rotator {
        margin-left: 18px;

        margin-right: 18px;

        padding: 44px 26px 38px;

        min-height: 340px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;

        padding: 0 18px;
    }
}

/* --- Obsługa ograniczenia ruchu --- */
@media (prefers-reduced-motion: reduce) {

    .review-rotator,
    .review-card,
    .stat-item {
        transition: none;
    }

    .review-rotator.is-leaving {
        opacity: 1;

        filter: none;

        transform: none;
    }

    .review-rotator.is-entering {
        animation: none;
    }

    .review-card:hover {
        transform: none;
    }
}

/* =========================================================
   ASYSTENT — PRZYCISKI SZYBKIEGO WYBORU (scoped)
========================================================= */

.assistant-chat-quick {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    padding: 10px 14px;
}

.assistant-chat-quick:empty {
    display: none;
}

.assistant-quick-reply {
    padding: 8px 14px;

    font-size: 13px;

    border: 1px solid rgba(216, 176, 106, 0.35);

    background:
        rgba(216, 176, 106, 0.06);

    transition:
        border-color 0.25s ease,
        background-color 0.25s ease;
}

.assistant-quick-reply:hover {
    border-color: var(--accent);

    background:
        rgba(216, 176, 106, 0.12);
}

@media (prefers-reduced-motion: reduce) {

    .assistant-quick-reply {
        transition: none;
    }
}
/* =========================================================
   DEKORACYJNE TŁO line-art (bezpieczne, additive)
   - body::after jest w tym pliku nieużywana — dodajemy tu warstwę.
   - position: fixed + z-index:-1 + pointer-events:none → dekoracje
     znajdują się ZA całą treścią i nie przechwytują kliknięć.
   - Nie zmienia layoutu ani pozycji żadnego elementu strony.
============================================================= */
body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;

    /* Dwie graficzne szyny: lewa (sprzątanie) i prawa (catering/ciasta) */
    background-image:
        url("decor-left.svg"),
        url("decor-right.svg");
    background-repeat:
        repeat-y,
        repeat-y;
    background-position:
        left center,
        right center;
    background-size:
        200px auto,
        200px auto;

    /* Bardzo subtelny odcień dopasowany do designu (gold/beige) */
    opacity: 0.10;
}

/* Telefon / wąskie ekrany: dekoracje zmniejszamy i wsuwamy przy krawędzi,
   a na bardzo małych ekranach chowamy, by nie zasłaniać tekstu. */
@media (max-width: 900px) {
    body::after {
        background-size:
            110px auto,
            110px auto;
        opacity: 0.06;
    }
}

@media (max-width: 600px) {
    body::after {
        display: none;
    }
}

/* Użytkownicy ograniczający ruch: bez dekoracji */
@media (prefers-reduced-motion: reduce) {
    body::after {
        display: none;
    }
}
