@font-face {
    font-family: 'Inter';
    src: url('../assets/fonts/Inter_18pt-Light.woff2') format('woff2');
    font-weight: 300; /* Light */
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../assets/fonts/Inter_18pt-Regular.woff2') format('woff2');
    font-weight: 400; /* Regular */
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../assets/fonts/Inter_18pt-Medium.woff2') format('woff2');
    font-weight: 500; /* Medium */
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../assets/fonts/Inter_18pt-Bold.woff2') format('woff2');
    font-weight: 700; /* Bold */
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../assets/fonts/Inter_18pt-ExtraBold.woff2') format('woff2');
    font-weight: 800; /* ExtraBold */
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../assets/fonts/Inter_18pt-Black.woff2') format('woff2');
    font-weight: 900; /* Black */
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Marble PL';
    src: url('../assets/fonts/Marble-Light-pl-final.woff2') format('woff2');
    font-weight: 300; /* Light */
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Marble PL';
    src: url('../assets/fonts/Marble-SemiBold-pl-final.woff2') format('woff2');
    font-weight: 600; /* SemiBold */
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Marble PL';
    src: url('../assets/fonts/Marble-Bold-pl-final.woff2') format('woff2');
    font-weight: 700; /* Bold */
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Marble PL';
    src: url('../assets/fonts/Marble-ExtraBold-pl-final.woff2') format('woff2');
    font-weight: 800; /* ExtraBold */
    font-style: normal;
    font-display: swap;
}
:root{
    --bg-light: #f4f4f5;
    --bg-dark: #18181b;
    --text-light: #f4f4f5;
    --text-dark: #090909;
    --dim: rgba(244, 244, 245, 0.35);
    --dimmer: rgba(244, 244, 245, 0.07);
    --wire: rgba(244, 244, 245, 0.55);
    --cursor-col: var(--text-light);
}

body{
    background-color: var(--bg-light);
    color: var(--text-dark);
    font-family: 'Inter',sans-serif;
    margin: 0;
    overflow-x: hidden;
}
html {
    overflow-x: hidden;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 15px;
    text-decoration: none;
    overflow: hidden;
    z-index: 1;
    font-family: 'Marble Pl', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    transform-origin: center center;
    cursor: pointer;
}


.btn:hover {
    transform: scale(1.05);
}


.btn::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50% 50% 0 0;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 0;
    
}

.btn:hover::before {
    top: 0;
    border-radius: 0;
    
}


.btn-text {
    position: relative;
    display: inline-flex;
    z-index: 1;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(150%);
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1;
}


.btn:hover .btn-text {
    transform: translateY(-150%);
}

.btn:hover::after {
    transform: translateY(0);
}

.btn-light {
    background-color: var(--bg-light);
    border: 1px solid var(--text-dark);
    color: var(--text-dark);
}

.btn-light::before {
    background-color: var(--text-dark);
}

.btn-light::after {
    color: var(--bg-light);
}

.btn-dark {
    background-color: var(--bg-dark);
    border: 1px solid var(--bg-dark);
    color: var(--text-light);
}

.btn-dark::before {
    background-color: var(--bg-light);
}

.btn-dark::after {
    color: var(--text-dark);
}

 /* WAFFEL WEB LOADER */
body {
    margin: 0;
}

#preloader {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background-color: black;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10002;
}

#preloader::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background-color: var(--bg-light);
    clip-path: circle(0% at 50% 50%);
    pointer-events: none;
}

#preloader.is-revealing::after {
    animation: circleRevealIn 1.2s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

#preloader p {
    font-family: "JetBrains Mono", monospace;
    font-weight: 600;
    font-size: 15vh;
    display: flex;
    justify-content: center;
    flex-direction: row;
    height: 2ch;
    line-height: 2ch;
    overflow: clip;
    color: white;
    transition: 1.6s cubic-bezier(.65, .05, 0, 1) transform;
}


@media (max-width: 768px) {
    #preloader p {
        font-size: 8vh;
    }
}

#preloader .number-track {
    width: 1ch;
    transition: 1.8s cubic-bezier(.65, .05, 0, 1) transform;
    pointer-events: none;
    user-select: none;
}

@keyframes trackClip {
    0% {
        clip-path: polygon(0% 200%, 100% 200%, 100% 100%, 0% 100%);
    }

    100% {
        clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%);
    }
}

@keyframes track100Clip {
    0% {
        clip-path: polygon(0% 300%, 100% 300%, 100% 100%, 0% 100%);
    }

    100% {
        clip-path: polygon(0% 200%, 100% 200%, 100% 100%, 0% 100%);
    }
}

@keyframes track10Clip {
    0% {
        clip-path: polygon(0% 1200%, 100% 1200%, 100% 100%, 0% 100%);
    }

    100% {
        clip-path: polygon(0% 1100%, 100% 1100%, 100% 100%, 0% 100%);
    }
}

@keyframes track1Clip {
    0% {
        clip-path: polygon(0% 10200%, 100% 10200%, 100% 100%, 0% 100%);
    }

    100% {
        clip-path: polygon(0% 10075%, 100% 10075%, 100% 100%, 0% 100%);
    }
}

:root {
    --left: calc(50% - (15vh) * 2.5);
    --right: calc(50% + (15vh) * 2.5);
    --top: 47%;
    --bottom: 60%;
}

@keyframes preloaderClip {
    0% {
        clip-path: polygon(evenodd, 0% 0%, 100% 0%, 100% 100%, 0% 100%, var(--left) var(--bottom), var(--left) var(--top), var(--right) var(--top), var(--right) var(--bottom), var(--left) var(--bottom), 0% 100%);
    }

    100% {
        clip-path: polygon(evenodd, 0% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 100%, 0% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 100%);
    }
}

@keyframes circleRevealIn {
    0% {
        clip-path: circle(0% at 50% 50%);
    }

    100% {
        clip-path: circle(150% at 50% 50%);
    }
}






/* HEADER I MENU  */
#site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1vw 2vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10000 !important; 
    background: var(--bg-light);
    pointer-events: auto;

    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    perspective: 1000;

}

    

.logo, .menu-toggle-btn {
    pointer-events: auto; 
}

.logo {
    font-family: 'Marble PL', sans-serif;
    font-weight: 800;
    font-size: clamp(1.5rem, 2vw, 2.5rem);
    color: var(--text-dark);
    text-decoration: none;
    letter-spacing: -0.02em;
    z-index: 10001;
}

.menu-toggle-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-dark);
    padding: 0;
    z-index: 10001;
}

.toggle-text {
    position: relative;
    height: 24px;
    width: 75px;
    overflow: hidden; 
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
}

.text-menu, .text-close {
    position: absolute;
    top: 0;
    right: 0;
    line-height: 24px;
    display: block;
}

.toggle-icon svg {
    display: block;
    transition: transform 0.3s ease;
}

.menu-toggle-btn:hover .toggle-icon svg {
    transform: scale(1.05);
}
.logo,.menu-toggle-btn {
    position: relative;
    pointer-events: auto;
    z-index: 10001;
}

/* OVERLAY MENU */

.menu-overlay{
    position: fixed;
    inset: 0;
    background-color: var(--bg-light);
    z-index: 9999;
    display: flex;
    align-items: center;
    clip-path: circle(0% at 95% 5%);
    visibility: hidden;

}

.menu-inner{
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 4vw;
    display: grid;
    grid-template-columns: 100px 1fr 400px;
    gap: 40px;
    align-items: center;
}
.vertical-text{
    display: inline-block;
    transform: rotate(-90deg);
    font-family: 'Marble PL', sans-serif;
    font-weight: 800;
    font-size: clamp(1.2rem, 4vw, 2rem);
    letter-spacing: 0.1em;
}

.main-nav{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1vh;
    counter-reset: menu-counter;
}

.menu-item{
    text-decoration: none;
    position: relative;
    counter-increment: menu-counter;
    display: inline-flex;
    align-items: center;
    transition: translate 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.menu-text{
    font-family: 'Marble PL', sans-serif;
    font-size: clamp(3rem, 8vw, 6.5rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--text-dark);

    /* przesuwany hover - gradient 200% */
    background: linear-gradient(to right, var(--text-dark) 50%, #e4e4e7 50%);
    background-size: 200% 100%;
    background-position: 0% 0%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: background-position 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* te które nie są najechane stają się szare */
.main-nav:has(.menu-item:hover) .menu-item:not(:hover) .menu-text{
    background-position: 100% 0%;
}
.menu-item:hover {
    translate: 60px 0 !important;
}

/* tworzenie licznika przed */
.menu-item::before{
    content: "0" counter(menu-counter);
    position: absolute;
    left: -50px; 
    top: 20%;
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    font-weight: 600;
    color: var(--text-dark);
    opacity: 0;
    transform: translateX(15px); 
    transition: all 0.75s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none; 
}
.menu-item:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.menu-col-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: stretch;
}

.menu-side-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.menu-contact-link {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.85rem, 1.05vw, 1rem);
    font-weight: 400;
    color: #d45a42;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 1px;
    line-height: 2;
    transition: opacity 0.3s ease;
}

.menu-contact-link:hover {
    opacity: 0.6;
}

.menu-contact-address {
    margin-top: 1.75rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1.65;
    color: var(--text-dark);
    font-style: normal;
}

.menu-social {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    list-style: none;
    padding: 0;
    margin: 2.5rem 0 0;
}

.menu-social a {
    display: flex;
    color: #71717a;
    transition: color 0.3s ease;
}

.menu-social a:hover {
    color: var(--text-dark);
}

.menu-social svg {
    width: 18px;
    height: 18px;
}

.dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent);
    border-radius: 50%;
}

/* DO ANIMACJI SPLI TEXT SCROLL */

.reveal-type {
    opacity: 0;
    visibility: hidden;
}
.line-wrapper {
    overflow: hidden;
}

@media (min-width: 1025px) and (max-width: 1440px),
       (min-width: 1025px) and (max-height: 900px) {
    .menu-text {
        font-size: clamp(2.35rem, 11vw, 4.5rem);
        line-height: 1;
    }
}
@media (max-width: 1024px){
    .menu-overlay {
        align-items: center;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .menu-inner{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        min-height: 100%;
        padding: calc(88px + 1.5rem) 6vw 3rem;
        gap: 0;
    }

    .menu-col-left {
        display: none;
    }

    .menu-col-center {
        width: 100%;
    }

    .main-nav{
        gap: 0.35rem;
        width: 100%;
    }

    .menu-text {
        font-size: clamp(2.35rem, 11vw, 3.25rem);
    }

    .menu-item:hover {
        translate: none !important;
    }

    .menu-item::before {
        display: none;
    }

    .menu-col-right {
        margin-top: 2.5rem;
        padding-top: 2rem;
        width: 100%;
        border-top: 1px solid rgba(9, 9, 9, 0.08);
    }

    .menu-contact-link {
        font-size: 0.9rem;
        line-height: 1.85;
    }

    .menu-contact-address {
        margin-top: 1.25rem;
        font-size: 0.7rem;
    }

    .menu-social {
        margin-top: 1.75rem;
        gap: 1.25rem;
    }

    .menu-desc p{
        visibility: hidden;
        font-size: 2rem;
    }
}

@media (max-width: 480px){
    .menu-inner {
        padding: calc(80px + 1rem) 5vw 2.5rem;
    }

    .main-nav {
        gap: 0.15rem;
    }

    .menu-text {
        font-size: clamp(2rem, 13vw, 2.75rem);
    }

    .menu-col-right {
        margin-top: 2rem;
        padding-top: 1.75rem;
    }
}

/* CIEMNY HEADER */

#site-header.header-dark {
    background: #090909;
}

#site-header.header-dark .logo {
    color: #FFFFFF;
}

#site-header.header-dark .menu-toggle-btn {
    color: #FFFFFF;
}


/* PRZEZROCZYSTY  */

#site-header.header-transparent {
    background: transparent;
}

#site-header.header-transparent .logo,
#site-header.header-transparent .menu-toggle-btn {
    color: #FFFFFF;
    transition: color 0.3s ease;
    /* Płynne przejście przy otwieraniu */
}

/* Klasa dodawana przez JS po kliknięciu toggle (ciemne logo i menu) */
#site-header.is-open .logo,
#site-header.is-open .menu-toggle-btn {
    color: var(--text-dark) !important;
}


/*  KURSOR  */
#cursor,
#cursor-ring,
#cursor-glow {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    will-change: transform;
}

#cursor {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--cursor-col, #fff);
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: background 0.5s ease;
}

#cursor-ring {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid var(--cursor-col, #fff);
    opacity: 0.3;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: border-color 0.5s ease;
}

@media (hover: none), (pointer: coarse) {
    #cursor,
    #cursor-ring,
    #cursor-glow {
        display: none !important;
    }
}

#cursor-glow {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    z-index: 0;
    z-index: 99997;
    transform: translate(-50%, -50%);
    pointer-events: none;
    mix-blend-mode: screen;
}

@media (min-width: 1025px) and (max-width: 1440px),
       (min-width: 1025px) and (max-height: 900px){
    #cursor-glow {
        width: 100px;
        height: 100px;
    }
}

/* FOOTER */

.footer-main {
    display: flex;
    flex-direction: column;
    height: 100vh;
    height: 100dvh;
    background: var(--bg-light);
    color: var(--text-dark);
    overflow: hidden;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
    gap: 2rem;
    flex: 0 0 28vh;
    height: 25vh;
    min-height: 0;
    padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1.5rem, 4vw, 3.5rem);
    border-bottom: 1px solid rgba(9, 9, 9, 0.08);
    overflow-y: auto;
}

.footer-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
}

.footer-col-contact {
    align-items: flex-end;
    text-align: right;
}

.footer-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(9, 9, 9, 0.4);
    margin-bottom: 0.65rem;
}

.footer-brand-mini {
    font-family: 'Marble PL', sans-serif;
    font-size: clamp(1.05rem, 1.2vw, 1.25rem);
    font-weight: 800;
    letter-spacing: 0.04em;
    margin-bottom: 0.25rem;
}

.footer-brand-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.5;
    color: rgba(9, 9, 9, 0.55);
    max-width: 22ch;
}

.footer-copy {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: rgba(9, 9, 9, 0.35);
    margin-top: 0.75rem;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.footer-nav a,
.footer-col-contact .footer-link {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-dark);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-nav a:hover,
.footer-col-contact .footer-link:hover {
    opacity: 0.55;
}

.footer-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.65;
    color: rgba(9, 9, 9, 0.55);
    max-width: 32ch;
    margin-top: 1rem;
}

.footer-brand {
    display: grid;
    grid-template-rows: 37.5vh 37.5vh;
    flex: 1 1 75vh;
    min-height: 0;
    overflow: hidden;
}

.footer-brand-row {
    display: flex;
    align-items: flex-end;
    height: 37.5vh;
    padding: 0 clamp(1.5rem, 4vw, 3.5rem) clamp(0.75rem, 2vh, 1.5rem);
    overflow: hidden;
}

.footer-brand-row-waffel {
    justify-content: flex-start;
}

.footer-brand-row-web {
    justify-content: flex-end;
}

.footer-brand-waffel,
.footer-brand-web {
    font-family: 'Marble PL', sans-serif;
    font-weight: 900;
    line-height: 0.85;
    letter-spacing: -0.03em;
    white-space: nowrap;
    color: var(--text-dark);
}

.footer-brand-waffel .char,
.footer-brand-web .char {
    display: inline-block;
    will-change: transform, opacity;
}

.footer-brand-waffel {
    font-size: min(calc((100vw - 7rem) / 4.5), 40vh, 30rem);
}

.footer-brand-web {
    font-size: min(calc((100vw - 7rem) / 4.5), 40vh, 30rem);
}

/* Footer — samo WAFFEL na środku (bez WEB) */
.footer-brand--solo {
    grid-template-rows: 1fr;
}

.footer-brand--solo .footer-brand-row-waffel {
    justify-content: center;
    align-items: center;
    height: 100%;
    padding-bottom: clamp(1rem, 3vh, 2.5rem);
}

.footer-brand--solo .footer-brand-waffel {
    font-size: clamp(15rem, 23vw, 25rem);
    text-align: center;
}

/* Footer — laptop (1025–1440px lub niska wysokość) */
@media (min-width: 1025px) and (max-width: 1440px),
       (min-width: 1025px) and (max-height: 900px) {
    .footer-top {
        overflow-y: visible;
        height: auto;
        flex: 0 0 auto;
        max-height: none;
        padding: clamp(1rem, 2vh, 1.5rem) clamp(1.25rem, 3.5vw, 2.5rem);
        gap: 1.15rem;
    }

    .footer-col {
        gap: 0.2rem;
    }

    .footer-label {
        font-size: 0.72rem;
        margin-bottom: 0.4rem;
        letter-spacing: 0.12em;
    }

    .footer-brand-mini {
        font-size: clamp(0.9rem, 1vw, 1.05rem);
    }

    .footer-brand-tagline {
        font-size: 0.82rem;
        line-height: 1.45;
    }

    .footer-copy {
        font-size: 0.82rem;
        margin-top: 0.45rem;
    }

    .footer-nav {
        gap: 0.15rem;
    }

    .footer-nav a,
    .footer-col-contact .footer-link {
        font-size: 1rem;
    }

    .footer-desc {
        font-size: 0.82rem;
        line-height: 1.5;
        margin-top: 0.55rem;
    }
}

/* Footer — tablet / mobile */
@media (max-width: 1024px) {
    .footer-main {
        height: 100dvh;
        min-height: 100dvh;
    }

    .footer-top {
        grid-template-columns: 1fr;
        flex: 0 0 auto;
        height: auto;
        gap: 2rem;
        padding: clamp(2rem, 8vh, 4rem) 6vw clamp(1.5rem, 5vh, 3rem);
        overflow-y: visible;
    }

    .footer-col {
        width: 100%;
        gap: 0.4rem;
    }

    .footer-col-brand {
        padding-bottom: 0.25rem;
        border-bottom: 1px solid rgba(9, 9, 9, 0.06);
    }

    .footer-brand-tagline {
        max-width: 28ch;
    }

    .footer-copy {
        margin-top: 0.5rem;
    }

    .footer-col-contact {
        align-items: flex-start;
        text-align: left;
    }

    .footer-desc {
        max-width: 100%;
        margin-top: 0.75rem;
    }

    .footer-label {
        font-size: 0.75rem;
        letter-spacing: 0.12em;
        margin-bottom: 0.5rem;
    }

    .footer-nav {
        gap: 0.45rem;
    }

    .footer-nav a,
    .footer-col-contact .footer-link {
        font-size: clamp(1rem, 4vw, 1.15rem);
    }

    .footer-brand {
        flex: 1 1 0;
        min-height: 0;
        grid-template-rows: 1fr 1fr;
    }

    .footer-brand-row {
        width: 100%;
        height: 100%;
        min-height: 0;
        padding: 0 4vw clamp(0.25rem, 1vh, 0.75rem);
        align-items: flex-end;
    }

    .footer-brand-row-waffel {
        justify-content: flex-start;
    }

    .footer-brand-row-web {
        justify-content: flex-end;
    }

    /* Ta sama wielkość liter — WAFFEL w lewo, WEB w prawo */
    .footer-brand-waffel,
    .footer-brand-web {
        font-size: min(calc((100vw - 8vw) / 4.5), 32dvh, 24rem);
    }

    .footer-brand--solo {
        grid-template-rows: 1fr;
    }

    .footer-brand--solo .footer-brand-row-waffel {
        justify-content: center;
        align-items: center;
    }

    .footer-brand--solo .footer-brand-waffel {
        font-size: min(calc((100vw - 8vw) / 5.5), 38dvh, 26rem);
    }
}

@media (max-width: 560px) {
    .footer-top {
        gap: 1.5rem;
        padding: max(1.25rem, env(safe-area-inset-top, 0px)) 5vw max(1rem, env(safe-area-inset-bottom, 0px));
    }

    .footer-brand-mini {
        font-size: 1rem;
    }

    .footer-brand-tagline,
    .footer-desc {
        font-size: 0.875rem;
    }

    .footer-nav a,
    .footer-col-contact .footer-link {
        font-size: 1rem;
    }

    .footer-brand-row {
        padding-left: 3vw;
        padding-right: 3vw;
    }

    .footer-brand-waffel{
        font-size: min(calc((100vw - 6vw) / 4.5), 34dvh, 22rem);
    }
    .footer-brand-web {
        font-size: min(calc((100vw - 6vw) / 4.5), 34dvh, 22rem);
        margin-bottom: 10vh;
    }
}
