/* ============================================
   FONT: Fivo Sans Modern
   ============================================ */
@font-face {
    font-family: 'Fivo Sans Modern';
    src:
        url('fonts/FivoSansModern-Regular.woff2') format('woff2'),
        url('fonts/FivoSansModern-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Fivo Sans Modern';
    src:
        url('fonts/FivoSansModern-Medium.woff2') format('woff2'),
        url('fonts/FivoSansModern-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Fivo Sans Modern';
    src:
        url('fonts/FivoSansModern-Bold.woff2') format('woff2'),
        url('fonts/FivoSansModern-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ============================================
   CSS RESET & VARIABLES
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors - WARM PREMIUM THEME */
    --coal: #ffffff;
    --coal-light: #f8f5f0;
    --coal-lighter: #f0ebe4;
    --ember: #8b7355;
    --ember-glow: #a0866b;
    --ember-dark: #6e5a43;
    --cream: #1a1a1a;
    --cream-light: #faf7f2;
    --warm-white: #fffdf9;
    --olive: #5a6b4a;
    --olive-light: #7a8b6a;
    --gold: #b8a088;
    --text-light: #2a2a2a;
    --text-muted: #6b6560;

    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Fivo Sans Modern', -apple-system, sans-serif;
    --font-accent: 'Fivo Sans Modern', -apple-system, sans-serif;
    /* Spacing */
    --section-padding: clamp(30px, 6vw, 60px);
    --container-width: 1200px;
    --container-padding: clamp(20px, 5vw, 40px);

    /* Transitions */
    --transition-smooth: cubic-bezier(0.22, 1, 0.36, 1);
    --transition-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--coal);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: var(--ember);
    color: #ffffff;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul { list-style: none; }

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f8f5f0; }
::-webkit-scrollbar-thumb {
    background: var(--ember);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: var(--ember-glow); }


.logo {
    display: block;
    width: auto;
    height: auto;
    object-fit: contain;
}


/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.5s var(--transition-smooth);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: inline-flex;
    align-items: center;
    transition: transform 0.3s var(--transition-bounce);
}

.nav-logo:hover {
    transform: scale(1.04);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links a {
    font-family: var(--font-accent);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-light);
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--ember);
    transition: width 0.4s var(--transition-smooth);
}

.nav-links a:hover {
    color: var(--ember-glow);
}

.nav-links a:hover::after { width: 100%; }

.nav-cta {
    background: var(--ember) !important;
    color: #ffffff !important;
    padding: 12px 28px !important;
    border-radius: 50px;
    font-weight: 600 !important;
    transition: all 0.3s var(--transition-smooth) !important;
    box-shadow: 0 4px 15px rgba(139, 115, 85, 0.25);
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
    background: var(--ember-glow) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(139, 115, 85, 0.4) !important;
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--cream);
    transition: all 0.4s var(--transition-smooth);
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}
/* Nav na hero - białe teksty */
.navbar:not(.scrolled) .nav-links a {
    color: #ffffff;
}

.navbar:not(.scrolled) .nav-links a:hover {
    color: var(--ember-glow);
}

.navbar:not(.scrolled) .nav-toggle span {
    background: #ffffff;
}
/* Mobile menu - zawsze ciemne teksty po otwarciu */
@media (max-width: 768px) {
    .nav-links.active a {
        color: var(--cream) !important;
    }

    .nav-links.active .nav-cta {
        color: #ffffff !important;
    }

    /* Hamburger icon zmiana na ciemny po otwarciu */
    .nav-toggle.active span {
        background: var(--cream) !important;
    }
}
/* ========================================
   HUMMI LANG DROPDOWN — DESKTOP
======================================== */

.hummi-lang-dropdown {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 18px;
    z-index: 1200;
}

.hummi-lang-dropdown .dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    min-height: 44px;
    border: 1px solid rgba(139, 115, 85, 0.22);
    background: rgba(255, 253, 249, 0.92);
    color: var(--text-light);
    border-radius: 999px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1;
    transition:
        background 0.25s var(--transition-smooth),
        border-color 0.25s var(--transition-smooth),
        transform 0.25s var(--transition-smooth),
        box-shadow 0.25s var(--transition-smooth);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hummi-lang-dropdown .dropdown-toggle:hover,
.hummi-lang-dropdown .dropdown-toggle:focus-visible,
.hummi-lang-dropdown.is-open .dropdown-toggle {
    background: var(--warm-white);
    border-color: rgba(139, 115, 85, 0.45);
    box-shadow: 0 10px 28px rgba(26, 26, 26, 0.08);
    outline: none;
}

.hummi-lang-dropdown .dropdown-toggle svg {
    color: var(--ember);
    transition: transform 0.25s var(--transition-smooth);
}

.hummi-lang-dropdown.is-open .dropdown-toggle svg {
    transform: rotate(180deg);
}

.hummi-lang-dropdown .flag {
    width: 18px;
    height: 18px;
    display: block;
    flex-shrink: 0;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.hummi-lang-dropdown .dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    min-width: 180px;
    padding: 8px;
    background: rgba(255, 253, 249, 0.98);
    border: 1px solid rgba(139, 115, 85, 0.18);
    border-radius: 18px;
    box-shadow:
        0 18px 50px rgba(26, 26, 26, 0.14),
        0 2px 10px rgba(26, 26, 26, 0.05);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition:
        opacity 0.22s ease,
        transform 0.22s ease,
        visibility 0.22s ease;
    pointer-events: none;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.hummi-lang-dropdown.is-open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.hummi-lang-dropdown .lang-item {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 12px 14px;
    color: var(--text-light);
    text-decoration: none;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    transition:
        background 0.22s var(--transition-smooth),
        color 0.22s var(--transition-smooth),
        transform 0.22s var(--transition-smooth);
}

.hummi-lang-dropdown .lang-item:hover,
.hummi-lang-dropdown .lang-item:focus-visible {
    background: var(--coal-light);
    color: var(--ember-dark);
    outline: none;
    transform: translateX(2px);
}

.hummi-lang-dropdown .lang-item.active {
    background: rgba(184, 160, 136, 0.16);
    color: var(--ember-dark);
    font-weight: 700;
}

.hummi-lang-dropdown .lang-item.active .flag {
    box-shadow: 0 0 0 2px rgba(184, 160, 136, 0.35);
}

@media (max-width: 980px) {
    .hummi-lang-dropdown {
        margin-left: 10px;
    }

    .hummi-lang-dropdown .dropdown-toggle {
        padding: 9px 12px;
        min-height: 40px;
    }

    .hummi-lang-dropdown .dropdown-menu {
        right: -4px;
        min-width: 170px;
    }
}

@media (max-width: 768px) {
    .hummi-lang-dropdown {
        margin-left: auto;
        margin-right: 10px;
    }

    .hummi-lang-dropdown .dropdown-toggle {
        padding: 8px 11px;
        min-height: 38px;
        gap: 8px;
    }

    .hummi-lang-dropdown .dropdown-menu {
        top: calc(100% + 10px);
        right: 0;
        min-width: 160px;
        border-radius: 16px;
    }

    .hummi-lang-dropdown .lang-item {
        padding: 11px 12px;
        font-size: 0.92rem;
    }
}
/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    /* Zostawiamy tylko gradienty tutaj, obrazek wpadnie z PHP */
    background-image: linear-gradient(135deg,
            rgba(0, 0, 0, 0.7) 0%,
            rgba(0, 0, 0, 0.5) 40%,
            rgba(139, 115, 85, 0.15) 100%
        );
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transform: scale(1.1);
    transition: transform 8s ease-out;
    filter: saturate(1) contrast(0.97) brightness(0.9);
}

.hero .hero-bg {
    transform: scale(1);
}

/* Ember particles */
.ember-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.ember-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--ember-glow);
    border-radius: 50%;
    opacity: 0;
    filter: blur(1px);
    animation: float-up 4s ease-in infinite;
}

@keyframes float-up {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        opacity: 0;
        transform: translateY(-20vh) scale(1) translateX(var(--drift));
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-accent);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s 0.5s var(--transition-smooth) forwards;
}

.hero-badge::before,
.hero-badge::after {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 10vw, 9rem);
    font-weight: 900;
    line-height: 0.95;
    color: #ffffff;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s 0.7s var(--transition-smooth) forwards;
}

.hero-title--logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
}

.hero-title .line {
    display: block;
}

.hero-title .highlight {
    color: var(--ember);
    position: relative;
    display: inline-block;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--ember);
    opacity: 0.4;
    border-radius: 2px;
}

.hero-subtitle {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 400;
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s 0.9s var(--transition-smooth) forwards;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s 1.1s var(--transition-smooth) forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Buttons */
.btn {
    font-family: var(--font-accent);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 18px 40px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.4s var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.hero .btn-primary {
    background: #ffffff;
    color: #1a1a1a;
    border: 1px solid rgba(255,255,255,0.35);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.hero .btn-primary:hover {
    background: #f5f0e8;
    color: #111111;
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
}
.btn-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.35);
}

.btn-outline:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--font-accent);
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: fadeUp 1s 1.5s var(--transition-smooth) forwards;
    opacity: 0;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--ember), transparent);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0% { top: -100%; }
    100% { top: 100%; }
}

/* ============================================
   SECTION COMMON STYLES
   ============================================ */
.section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section-label {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--ember);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.section-label::before {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--ember);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--cream);
    line-height: 1.15;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 800px;
    line-height: 1.8;
	text-wrap: balance;
}

/* Reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s var(--transition-smooth),
                transform 0.8s var(--transition-smooth);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   ABOUT PIZZA SECTION
   ============================================ */
.about-pizza {
    background: var(--coal);
    overflow: hidden;
    /* Zmniejszamy dolny padding, żeby przysunąć O Pizzy do Pieca */
    padding-bottom: clamp(0px, 0vw, 0px) !important;
}

.about-pizza-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-pizza-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.about-pizza-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--transition-smooth);
}

.about-pizza-image:hover img {
    transform: scale(1.05);
}

.about-pizza-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.4) 0%,
        transparent 50%
    );
}

.about-pizza-image .floating-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    padding: 20px 25px;
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.floating-badge .temp {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--ember);
    line-height: 1;
}

.floating-badge .temp-label {
    font-family: var(--font-accent);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 5px;
}

.about-pizza-content {
    padding: 20px 0;
}

.pizza-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    padding-top: 50px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--ember);
    line-height: 1;
}

.stat-unit {
    font-family: var(--font-accent);
    font-size: 0.9rem;
    color: var(--ember-glow);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 8px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: var(--font-accent);
    font-weight: 500;
}

/* ============================================
   OVEN SECTION
   ============================================ */
.oven {
    background: var(--coal);
    position: relative;
    /* Zmniejszamy górny padding, żeby przysunąć Piec do O Pizzy */
    padding-top: clamp(40px, 6vw, 80px) !important; 
}

/* Opcjonalny delikatny gradient jako oddzielacz od poprzedniej sekcji */
.oven::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
}

.oven-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Obrazek po lewej */
.oven-visual {
    position: relative;
}

.oven-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.oven-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--transition-smooth);
}

.oven-image:hover img {
    transform: scale(1.05);
}

/* Delikatny overlay na zdjęciu, żeby dodać klimatu "żaru" */
.oven-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top right,
        rgba(232, 93, 38, 0.15) 0%,
        transparent 60%
    );
    pointer-events: none;
}

/* Tekst po prawej */
.oven-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.oven-text p + p {
    margin-top: 20px;
}

/* Responsywność */
@media (max-width: 1024px) {
    .oven-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    /* Na tabletach i mobile odwracamy kolejność - tekst u góry, zdjęcie na dole */
    .oven-visual {
        order: 2;
    }
    .oven-content {
        order: 1;
    }
    
    .oven-image {
        max-width: 600px;
        margin: 0 auto;
        aspect-ratio: 1/1; /* Na mobile zmieniamy proporcje na kwadrat */
    }
}

/* ============================================
   STORY SECTION
   ============================================ */
.story {
    background: var(--coal-light);
    position: relative;
}

.story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.08), transparent);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.story-content { order: 1; }
.story-visual { order: 2; }

.story-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.9;
    margin-top: 30px;
}

.story-text p + p {
    margin-top: 20px;
}

.story-highlight {
    color: var(--cream) !important;
    font-weight: 500;
}

.story-visual {
    position: relative;
}

.story-image-stack {
    position: relative;
    height: 550px;
}

.story-img {
    position: absolute;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    transition: transform 0.5s var(--transition-smooth);
}

.story-img:hover { transform: translateY(-10px) rotate(0deg) !important; }

.story-img img {
    width: 100%;
    height: 100%;
	
    object-fit: cover;
	
}

.story-img-1 {
    width: 300px;
    height: 380px;
    top: 0;
    left: 0;
    transform: rotate(-3deg);
    z-index: 2;
}

.story-img-2 {
    width: 260px;
    height: 320px;
    top: 80px;
    right: 0;
    transform: rotate(4deg);
    z-index: 1;
}

.story-year {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-display);
    font-size: 6rem;
    font-weight: 900;
    color: rgba(139, 115, 85, 0.06);
    z-index: 0;
    white-space: nowrap;
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team {
    background: var(--coal);
}

.team-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 70px;
}

.team-header .section-label {
    justify-content: center;
}

.team-header .section-label::after {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--ember);
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.team-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.5s var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: rgba(139, 115, 85, 0.15);
    box-shadow: 0 20px 60px rgba(139, 115, 85, 0.08);
}

.team-card-image {
    aspect-ratio: 1;
    overflow: hidden;
}

.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--transition-smooth);
    filter: grayscale(30%);
}

.team-card:hover .team-card-image img {
    transform: scale(1.08);
    filter: grayscale(0%);
}

.team-card-info {
    padding: 30px;
}

.team-card-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 5px;
}

.team-card-role {
    font-family: var(--font-accent);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ember);
    margin-bottom: 15px;
}

.team-card-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}
/* ============================================
   INTERIOR SECTION — HORIZONTAL GALLERY
   ============================================ */
.interior {
    background: var(--coal-light);
    position: relative;
    overflow: hidden;
}

.interior::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.08), transparent);
}

.interior-header {
    max-width: 600px;
    margin-bottom: 50px;
}

/* Gallery Slider */
.gallery-slider {
    position: relative;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
}

.gallery-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 20px;

    scrollbar-width: none;
    -ms-overflow-style: none;
}

.gallery-track::-webkit-scrollbar {
    display: none;
}

/* Pojedynczy slajd */
.gallery-slide {
    flex: 0 0 auto;
    width: min(380px, 70vw);
    scroll-snap-align: start;
    position: relative;
}

.gallery-slide-image {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/5;
    position: relative;
}

.gallery-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--transition-smooth);
}

.gallery-slide:hover .gallery-slide-image img {
    transform: scale(1.05);
}

/* Gradient overlay */
.gallery-slide-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.4) 0%,
        transparent 50%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 16px;
}

.gallery-slide:hover .gallery-slide-image::after {
    opacity: 1;
}

/* Label */
.gallery-slide-label {
    display: block;
    margin-top: 14px;
    font-family: var(--font-accent);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.gallery-slide:hover .gallery-slide-label {
    color: var(--ember);
}

/* Controls */
.gallery-controls {
    display: flex;
    gap: 12px;
    justify-content: center;
    padding: 25px 0 0;
}
.gallery-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: var(--coal);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-btn:hover {
    border-color: var(--ember);
    color: var(--ember);
    transform: scale(1.05);
}

.gallery-btn:active {
    transform: scale(0.95);
}

.gallery-btn.disabled {
    opacity: 0.3;
    pointer-events: none;
}


/* ============================================
   GALLERY — RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .gallery-slide {
        width: min(420px, 75vw);
    }
}

@media (max-width: 768px) {
    .gallery-slide {
        width: min(340px, 80vw);
    }

    .gallery-controls {
        display: none;
    }
}

@media (max-width: 480px) {
    .gallery-slide {
        width: 85vw;
    }
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    background: var(--coal-light);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.08), transparent);
}

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

.contact-info-group {
    margin-top: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-item:last-child { border-bottom: none; }

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(139, 115, 85, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    border: 1px solid rgba(139, 115, 85, 0.1);
}

.contact-item-label {
    font-family: var(--font-accent);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ember);
    margin-bottom: 6px;
}

.contact-item-value {
    font-size: 1rem;
    color: var(--cream);
    font-weight: 500;
}

.contact-item-extra {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.contact-map {
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    min-height: 450px;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(30%) brightness(1) contrast(1);
    transition: filter 0.5s ease;
}

.contact-map:hover iframe {
    filter: grayscale(0%) brightness(1) contrast(1);
}

/* Social links */
.social-links {
    display: flex;
    gap: 12px;
    margin-top: 40px;
}

.social-link {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    color: var(--text-muted);
}

.social-link:hover {
    background: var(--ember);
    border-color: var(--ember);
    color: #ffffff;
    transform: translateY(-3px);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #ffffff;
    padding: 40px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.footer .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
}

.footer-text {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-credit {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-credit a {
    color: var(--ember);
    transition: color 0.3s ease;
}

.footer-credit a:hover { color: var(--ember-glow); }

/* ============================================
   TAB MENU V2
   ============================================ */
.tabmenu-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 900px;
    margin: 25px auto 40px;
}
.tabmenu-tab {
    padding: 12px 24px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 50px;
    background: transparent;
    color: var(--text-muted);
    font-family: var(--font-accent);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tabmenu-tab:hover {
    border-color: var(--ember);
    color: var(--ember);
}

.tabmenu-tab.is-active {
    background: var(--ember);
    border-color: var(--ember);
    color: #ffffff;
}

.tabmenu-panels {
    max-width: 900px;
    margin: 0 auto;
}

.tabmenu-panel {
    display: none;
}

.tabmenu-panel.is-active {
    display: block;
}

.tabmenu-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* ============================================
   SEASON
   ============================================ */
.tabmenu-season {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.tabmenu-season-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
}

.tabmenu-season-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(139, 115, 85, 0.1);
    color: var(--ember);
    font-family: var(--font-accent);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.tabmenu-season-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--cream);
}

.tabmenu-season-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}

.tabmenu-season-card {
    background: var(--coal-light);
    border: 2px solid rgba(139, 115, 85, 0.15);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
}

.tabmenu-season-card:hover {
    border-color: var(--ember);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(139, 115, 85, 0.08);
}

.tabmenu-season-name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 8px;
}

.tabmenu-season-desc {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.tabmenu-season-price {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--ember);
}
/* ============================================
   FEATURED / SEASON CARDS (nad tabami)
   ============================================ */
.tabmenu-featured {
    max-width: 700px;
    margin: 25px auto 50px;
}

.tabmenu-featured-header {
    display: flex;
    align-items: center;
    justify-content: center; /* Wyśrodkowanie poziome */
    gap: 14px;
    margin-bottom: 22px;
    width: 100%; /* Upewniamy się, że zajmuje pełną szerokość i ma względem czego środkować */
}
.tabmenu-featured-badge {
    margin-top: 25px;
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(139, 115, 85, 0.1);
    color: var(--ember);
    font-family: var(--font-accent);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.tabmenu-featured-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--cream);
}

.tabmenu-featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.tabmenu-featured-card {
    background: var(--coal-light);
    border: 2px solid rgba(139, 115, 85, 0.12);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.tabmenu-featured-card:hover {
    border-color: var(--ember);
    transform: translateY(-5px);
    box-shadow: 0 14px 36px rgba(139, 115, 85, 0.1);
}

.tabmenu-featured-image {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.tabmenu-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--transition-smooth);
}

.tabmenu-featured-card:hover .tabmenu-featured-image img {
    transform: scale(1.05);
}

.tabmenu-featured-content {
    padding: 20px 22px 24px;
}

.tabmenu-featured-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 8px;
}

.tabmenu-featured-desc {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.tabmenu-featured-price {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--ember);
}

@media (max-width: 480px) {
    .tabmenu-featured-grid {
        grid-template-columns: 1fr;
    }
}
/* ============================================
   ACCORDIONS
   ============================================ */
.tabmenu-accordions {
    display: flex;
    flex-direction: column;
}

.tabmenu-cat {
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.tabmenu-cat:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.tabmenu-cat-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: padding 0.3s ease;
}

.tabmenu-cat-header:hover {
    padding-left: 10px;
}

.tabmenu-cat-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.tabmenu-cat-title {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 700;
    color: var(--cream);
    transition: color 0.3s ease;
}

.tabmenu-cat-header:hover .tabmenu-cat-title {
    color: var(--ember);
}

.tabmenu-cat-right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.tabmenu-cat-count {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    white-space: nowrap;
}

.tabmenu-cat-toggle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    flex-shrink: 0;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    line-height: 1;
}

.tabmenu-cat-header:hover .tabmenu-cat-toggle {
    border-color: var(--ember);
    color: var(--ember);
}

.tabmenu-cat.is-open .tabmenu-cat-toggle {
    background: var(--ember);
    border-color: var(--ember);
    color: #ffffff;
    transform: rotate(45deg);
}

.tabmenu-cat-body {
    display: none;
}

.tabmenu-cat.is-open .tabmenu-cat-body {
    display: block;
}

.tabmenu-cat-inner {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 8px 0 25px 0;
}
.tabmenu-cat-body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s ease;
}

.tabmenu-cat.is-open .tabmenu-cat-body {
    grid-template-rows: 1fr;
}

.tabmenu-cat-inner {
    min-height: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0;
    transition: padding 0.4s ease;
}

.tabmenu-cat.is-open .tabmenu-cat-inner {
    padding: 8px 0 25px 0;
}
/* ============================================
   DISHES
   ============================================ */
.tabmenu-dish {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 24px;
    background: var(--coal-light);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.tabmenu-dish:hover {
    border-color: rgba(139, 115, 85, 0.1);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.tabmenu-dish-info {
    flex: 1;
    min-width: 0;
}

.tabmenu-dish-name {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 3px;
}

.tabmenu-dish-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.tabmenu-dish-price {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ember);
    white-space: nowrap;
    flex-shrink: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .tabmenu-tabs {
        gap: 8px;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 8px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .tabmenu-tabs::-webkit-scrollbar {
        display: none;
    }

    .tabmenu-tab {
        padding: 10px 18px;
        font-size: 0.75rem;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .tabmenu-cat-header:hover {
        padding-left: 0;
    }

    .tabmenu-cat-count {
        display: none;
    }

    .tabmenu-dish {
        flex-direction: column;
        gap: 8px;
        padding: 16px 18px;
    }

    .tabmenu-dish-price {
        font-size: 1.1rem;
    }

    .tabmenu-season-grid {
        grid-template-columns: 1fr;
    }
     .tabmenu-tabs {
        flex-direction: column;
        gap: 10px;
        max-width: 100%;
        padding: 0;
    }

    .tabmenu-tab {
        padding: 14px 20px;
        font-size: 0.8rem;
        white-space: normal;
        text-align: center;
        width: 100%;
    }

    .tabmenu-cat-header:hover {
        padding-left: 0;
    }

    .tabmenu-cat-count {
        display: none;
    }

    .tabmenu-dish {
        flex-direction: column;
        gap: 8px;
        padding: 16px 18px;
    }

    .tabmenu-dish-price {
        font-size: 1.1rem;
    }

    .tabmenu-season-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   MENU PDF DOWNLOAD
   ============================================ */
.menu-pdf {
    text-align: center;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.menu-pdf-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: transparent;
    color: var(--ember);
    border: 2px solid var(--ember);
    border-radius: 50px;
    font-family: var(--font-accent);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.menu-pdf-btn:hover {
    background: var(--ember);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 115, 85, 0.25);
}

.menu-pdf-btn svg {
    transition: transform 0.3s ease;
}

.menu-pdf-btn:hover svg {
    transform: translateY(2px);
}

.menu-footer-actions {
    margin-top: 50px;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 30px;
}

.menu-pdf-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-family: var(--font-accent);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    padding: 12px 24px;
    border-radius: 50px;
}

.menu-pdf-link:hover {
    color: var(--ember);
    background: rgba(139, 115, 85, 0.05);
}

.menu-pdf-link svg {
    transition: transform 0.3s ease;
}

.menu-pdf-link:hover svg {
    transform: translateY(2px);
}
/* ============================================
   RESERVATION SECTION
   ============================================ */
.reservation {
    background: var(--coal);
    position: relative;
}

.reservation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.08), transparent);
}

.reservation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.reservation-info {
    padding-top: 20px;
}

/* Note box */
.reservation-note {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-top: 40px;
    padding: 20px 24px;
    background: var(--coal-light);
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.reservation-note-icon {
    color: var(--ember);
    flex-shrink: 0;
    margin-top: 2px;
}

.reservation-note p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.reservation-phone {
    color: var(--ember);
    font-weight: 600;
    transition: color 0.3s ease;
}

.reservation-phone:hover {
    color: var(--ember-glow);
}

/* ============================================
   RESERVATION FORM STYLING
   ============================================ */
.reservation-hummi-form {
    background: var(--coal-light);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.reservation-hummi-form .hummi-form-pole {
    margin-bottom: 20px;
}

.reservation-hummi-form label {
    display: block;
    font-family: var(--font-accent);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.reservation-hummi-form .hummi-form-wymagane {
    color: var(--ember);
}

.reservation-hummi-form .hummi-form-input,
.reservation-hummi-form .hummi-form-textarea,
.reservation-hummi-form select {
    width: 100%;
    padding: 14px 18px;
    background: var(--coal);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--cream);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
}

.reservation-hummi-form .hummi-form-input:focus,
.reservation-hummi-form .hummi-form-textarea:focus,
.reservation-hummi-form select:focus {
    border-color: var(--ember);
    box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.1);
}

.reservation-hummi-form .hummi-form-input::placeholder,
.reservation-hummi-form .hummi-form-textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.6;
}

.reservation-hummi-form .hummi-form-podpowiedz {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 6px;
}

.reservation-hummi-form .hummi-form-blad {
    display: block;
    font-size: 0.75rem;
    color: #ef4444;
    margin-top: 4px;
    min-height: 18px;
}

/* Submit button */
.reservation-hummi-form .hummi-form-footer {
    margin-top: 28px;
}

.reservation-hummi-form .hummi-form-submit {
    width: 100%;
    padding: 16px 32px;
    background: var(--ember);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-family: var(--font-accent);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(139, 115, 85, 0.25);
}

.reservation-hummi-form .hummi-form-submit:hover {
    background: var(--ember-glow);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(139, 115, 85, 0.35);
}

.reservation-hummi-form .hummi-form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Spinner */
.reservation-hummi-form .hummi-spinner {
    animation: hummi-spin 0.8s linear infinite;
}

@keyframes hummi-spin {
    to { transform: rotate(360deg); }
}

/* Status messages */
.reservation-hummi-form .hummi-form-status {
    text-align: center;
    margin-top: 16px;
    font-size: 0.9rem;
    min-height: 24px;
}

.reservation-hummi-form .hummi-form-sukces {
    color: var(--olive);
    font-weight: 500;
}

.reservation-hummi-form .hummi-form-blad-status {
    color: #ef4444;
    font-weight: 500;
}

/* Honeypot */
.reservation-hummi-form div[aria-hidden="true"] {
    display: none !important;
}

/* ============================================
   RESERVATION RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .reservation-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .reservation-hummi-form {
        padding: 28px 22px;
    }
}
/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .about-pizza-grid,
    .story-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .story-content { order: 2; }
    .story-visual { order: 1; }

    .story-image-stack {
        height: 400px;
        max-width: 500px;
        margin: 0 auto;
    }

    .interior-gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 250px 250px 250px;
    }

    .gallery-item-1 { grid-column: 1 / 3; grid-row: 1; }
    .gallery-item-2 { grid-column: 1; grid-row: 2; }
    .gallery-item-3 { grid-column: 2; grid-row: 2; }
    .gallery-item-4 { grid-column: 1; grid-row: 3; }
    .gallery-item-5 { grid-column: 2; grid-row: 3; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        transition: right 0.5s var(--transition-smooth);
    }

    .nav-links.active { right: 0; }

    .nav-links a {
        font-size: 1.2rem;
        letter-spacing: 3px;
        color: var(--cream);
    }

    .nav-toggle { display: flex; }

    .team-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .pizza-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .story-image-stack {
        height: 350px;
    }

    .story-img-1 {
        width: 220px;
        height: 280px;
    }

    .story-img-2 {
        width: 200px;
        height: 250px;
    }

    .interior-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 200px);
    }

    .gallery-item-1 { grid-column: 1; grid-row: 1; }
    .gallery-item-2 { grid-column: 1; grid-row: 2; }
    .gallery-item-3 { grid-column: 1; grid-row: 3; }
    .gallery-item-4 { grid-column: 1; grid-row: 4; }
    .gallery-item-5 { grid-column: 1; grid-row: 5; }

    .contact-map { min-height: 300px; }

    .footer .container {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .pizza-stats {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .floating-badge {
        bottom: 15px !important;
        left: 15px !important;
        padding: 15px 18px !important;
    }

    .floating-badge .temp {
        font-size: 2rem;
    }
}

/* =========================
   LOGO IMAGE SIZES
   ========================= */

.logo-nav {
    height: 42px;
    width: auto;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.08));
}

.logo-footer {
    height: 32px;
    width: auto;
    opacity: 0.95;
}

/* =========================
   HERO LOGO
   ========================= */
.hero-logo {
    width: min(500px, 82vw);
    height: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.35));
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 768px) {
    .logo-nav {
        height: 36px;
    }

    .logo-footer {
        height: 28px;
    }

    
    .hero-logo {
        width: min(540px, 88vw);
    }
}

@media (max-width: 480px) {
    .hero-logo {
        width: min(420px, 90vw);
    }
}
/* ============================================
   GALLERY SWIPE HINT
   ============================================ */
.gallery-swipe-hint {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
    color: var(--text-muted);
    font-family: var(--font-accent);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0.85;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.gallery-swipe-hint svg {
    animation: swipeHintMove 1.6s ease-in-out infinite;
}

.gallery-swipe-hint.is-hidden {
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
}

@keyframes swipeHintMove {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(6px);
    }
}

@media (max-width: 768px) {
    .gallery-swipe-hint {
        display: inline-flex;
        width: 100%;
    }
}
/* ============================================
   FLOATING PROMO BAR
   ============================================ */
.floating-promo {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease, visibility 0.4s;
    width: max-content;
    max-width: calc(100% - 40px);
}

.floating-promo.is-visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
}

.floating-promo-content {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 12px 16px 12px 20px;
    border-radius: 100px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.floating-promo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ember);
    background: rgba(139, 115, 85, 0.1);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    flex-shrink: 0;
}

.floating-promo-text {
    font-size: 0.85rem;
    line-height: 1.4;
    color: var(--text-muted);
}

.floating-promo-text strong {
    color: var(--cream);
    font-family: var(--font-display);
    font-size: 1rem;
}

.floating-promo-link {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    background: var(--ember);
    padding: 8px 16px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 10px;
}

.floating-promo-link:hover {
    background: var(--ember-glow);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 115, 85, 0.3);
}

.floating-promo-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    color: var(--text-muted);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-left: 4px;
}

.floating-promo-close:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--cream);
}

/* Wersja mobilna - pigułka staje się bardziej prostokątna */
@media (max-width: 600px) {
    .floating-promo {
        bottom: 20px;
        width: calc(100% - 32px);
    }
    
    .floating-promo-content {
        border-radius: 20px;
        flex-wrap: wrap;
        padding: 16px;
        gap: 12px;
        justify-content: center;
    }
    
    .floating-promo-text {
        text-align: left;
        flex: 1 1 calc(100% - 60px);
    }
    
    .floating-promo-link {
        width: 100%;
        text-align: center;
        margin-left: 0;
        margin-top: 4px;
        padding: 12px 16px;
    }
    
    .floating-promo-close {
        position: absolute;
        top: 12px;
        right: 12px;
    }
}
/* ============================================
   REVIEWS SECTION
   ============================================ */
.reviews {
    background: var(--coal);
    position: relative;
}

.reviews-header {
    max-width: 640px;
    margin-bottom: 40px;
}

.reviews-slider {
    position: relative;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
}

.reviews-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 16px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.reviews-track::-webkit-scrollbar {
    display: none;
}

/* Card */
.review-card {
    flex: 0 0 auto;
    width: min(340px, 80vw);
    scroll-snap-align: start;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
    padding: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
}

/* Top row */
.review-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.review-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #202124;
}

.review-google {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: -0.3px;
    flex-shrink: 0;
}

.g-blue   { color: #4285f4; }
.g-red    { color: #ea4335; }
.g-yellow { color: #fbbc05; }
.g-green  { color: #34a853; }

/* Stars */
.review-stars {
    color: #fbbc05;
    font-size: 1rem;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
}

/* Text */
.review-text {
    font-size: 0.9rem;
    line-height: 1.65;
    color: #3c4043;
}

/* Controls */
.reviews-controls {
    display: flex;
    gap: 12px;
    justify-content: center;
    padding-top: 22px;
}

.reviews-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: var(--coal);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.reviews-btn:hover {
    border-color: var(--ember);
    color: var(--ember);
    transform: scale(1.05);
}

.reviews-btn.disabled {
    opacity: 0.35;
    pointer-events: none;
}

/* Footer link */
.reviews-footer {
    text-align: center;
    margin-top: 22px;
}

.reviews-link {
    display: inline-flex;
    align-items: center;
    color: var(--ember);
    font-family: var(--font-accent);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.reviews-link:hover {
    color: var(--ember-glow);
}

/* Responsive */
@media (max-width: 768px) {
    .review-card {
        width: min(300px, 84vw);
    }

    .reviews-controls {
        display: none;
    }
}

@media (max-width: 480px) {
    .review-card {
        width: 86vw;
    }
}

/* ============================================
   EVENTS SECTION
   ============================================ */
.events {
    background: var(--coal-light);
    position: relative;
}

.events::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.08), transparent);
}

.events-header {
    max-width: 640px;
    margin-bottom: 50px;
}

/* Grid standardowy */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 360px));
    justify-content: center;
    gap: 28px;
}

/* Gdy jest tylko jeden event */
.events-grid--single {
    grid-template-columns: 1fr;
    justify-items: center;
}

.event-card {
    width: 100%;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.08);
}

.event-card-image {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.event-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--transition-smooth);
}

.event-card:hover .event-card-image img {
    transform: scale(1.05);
}

.event-card-content {
    padding: 22px 22px 24px;
    display: flex;                /* Wymusza układ flexbox */
    flex-direction: column;       /* Układa elementy pionowo */
    align-items: center;          /* Środkuje je poziomo */
    text-align: center;           /* Środkuje tekst wewnątrz akapitów i nagłówków */
}

.event-card-meta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(139, 115, 85, 0.08);
    color: var(--ember);
    font-family: var(--font-accent);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    /* Marginesy L/R auto nie są już potrzebne, bo 'align-items: center' na rodzicu to załatwia */
}

.event-card-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--cream);
    line-height: 1.2;
    margin-bottom: 12px;
}

.event-card-desc {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--text-muted);
}

/* ============================================
   FEATURED EVENT — jeśli jest tylko jeden
   ============================================ */
.event-card--featured {
    max-width: 980px;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: stretch;
}

.event-card--featured .event-card-image {
    aspect-ratio: auto;
    min-height: 360px;
    height: 100%;
}

.event-card--featured .event-card-content {
    padding: 34px 34px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;  /* <-- dodaj to */
    text-align: center;   /* <-- i to */
}
.event-card--featured .event-card-title {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    margin-bottom: 16px;
}

.event-card--featured .event-card-desc {
    font-size: 1rem;
    line-height: 1.8;
}
/* Gdy mamy FEATURED EVENT (1 event), ale klient NIE DODAŁ ZDJĘCIA */
.event-card--featured.event-card--no-image {
    grid-template-columns: 1fr; /* Usuwa dwukolumnowy układ */
    max-width: 640px;           /* Zwęża kartę, żeby tekst nie rozjeżdżał się na całą stronę jak tasiemiec */
    margin: 0 auto;             /* Centruje całą kartę w siatce */
}

.event-card--featured.event-card--no-image .event-card-content {
    padding: 40px;              /* Daje ładny oddech z każdej strony */
}
/* ============================================
   EVENTS RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .event-card--featured {
        max-width: 760px;
        grid-template-columns: 1fr;
    }

    .event-card--featured .event-card-image {
        min-height: 280px;
        aspect-ratio: 16/10;
    }
}

@media (max-width: 768px) {
    .events-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .event-card {
        max-width: 100%;
    }

    .event-card-title {
        font-size: 1.2rem;
    }

    .event-card--featured .event-card-content {
        padding: 24px 22px 28px;
    }

    .event-card--featured .event-card-title {
        font-size: 1.5rem;
    }

    .event-card--featured .event-card-desc {
        font-size: 0.95rem;
    }
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    max-width: 420px;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 18px 22px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(150%);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s ease;
}

.cookie-banner.is-visible {
    transform: translateY(0);
    opacity: 1;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cookie-text {
    font-size: 0.8rem;
    line-height: 1.5;
    color: var(--text-muted);
}

.cookie-text span {
    display: block;
    color: var(--ember-dark);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.cookie-link {
    color: var(--ember);
    text-decoration: underline;
    text-decoration-color: rgba(139, 115, 85, 0.4);
    text-underline-offset: 2px;
    transition: color 0.3s ease;
}

.cookie-link:hover {
    color: var(--ember-glow);
}

.cookie-btn {
    align-self: flex-start;
    background: var(--ember);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn:hover {
    background: var(--ember-glow);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 115, 85, 0.3);
}

@media (max-width: 480px) {
    .cookie-banner {
        bottom: 15px;
        left: 15px;
        right: 15px;
        max-width: none;
    }
}
/* Wymuszenie Fivo Sans Modern na wszystkich głównych akapitach */
p, 
.section-subtitle, 
.oven-text, 
.story-text, 
.team-card-desc, 
.mdish-desc, 
.review-text {
    font-family: var(--font-body);
    font-weight: 400;
}
/* ============================================
   BRAND STICKERS
   ============================================ */
.section--stickers {
    overflow: hidden;
}

.section--stickers .container {
    position: relative;
    z-index: 1;
}

.section-sticker {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    user-select: none;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.06));
    transition: transform 0.3s ease;
}

/* === POZYCJE NAKLEJEK === */

.sticker-pos-npizza {
    top: 125px;
    /* Od 20px na telefonach do 110px na dużych ekranach */
    right: clamp(20px, 5vw, 110px);
    width: 130px;
    transform: rotate(12deg);
}

.sticker-pos-tr {
    top: 40px;
    /* Od 12px na telefonach do 32px na dużych ekranach */
    right: clamp(12px, 3vw, 32px);
    width: 130px;
    transform: rotate(12deg);
}

.sticker-pos-trmenu {
    top: 100px;
    /* Od 15px na telefonach do 56px na dużych ekranach */
    right: clamp(15px, 4vw, 56px);
    width: 130px;
    transform: rotate(-2deg);
}

.sticker-pos-trrevievs {
    top: 100px;
    /* Od 15px na telefonach do 100px na dużych ekranach */
    right: clamp(15px, 5vw, 100px);
    width: 130px;
    transform: rotate(-3deg);
}

.sticker-pos-bl {
    bottom: 40px;
    left: clamp(12px, 3vw, 28px);
    width: 110px;
    transform: rotate(-8deg);
}
.sticker-pos-blmen1 {
    bottom: 40px;
    left: clamp(12px, 3vw, 28px);
    width: 110px;
    transform: rotate(-2deg);
}

.sticker-pos-blreservation {
    bottom: 100px;
    /* Od 15px na telefonach do 200px na ogromnych monitorach */
    left: clamp(10px, 5vw, 120px);
    width: 110px;
    transform: rotate(-8deg);
}

.sticker-pos-blmenu {
    bottom: 200px;
    left: clamp(25px, 4vw, 45px);
    width: 110px;
    transform: rotate(-1deg);
}

.sticker-pos-br {
    bottom: 30px;
    right: clamp(14px, 3vw, 30px);
    width: 100px;
    transform: rotate(15deg);
}

.sticker-pos-tl {
    top: 30px;
    left: clamp(12px, 3vw, 24px);
    width: 120px;
    transform: rotate(-12deg);
}

.sticker-pos-tlmenu {
    top: 85px;
    /* Od 15px na telefonach do 650px (środek) na wielkich monitorach */
    left: clamp(15px, 20vw, 650px);
    width: 244px;
    transform: rotate(-1deg);
}

.sticker-pos-tloven {
    top: 250px;
    /* Od 15px na telefonach do 500px na monitorach */
    left: clamp(50px, 35vw, 850px);
    width: 155px;
    transform: rotate(-5deg);
}

.sticker-pos-mr {
    top: 50%;
    right: clamp(12px, 3vw, 28px);
    transform: translateY(-50%) rotate(8deg);
    width: 110px;
}
/* === ROZMIARY === */
.sticker-sm { width: 80px; }
.sticker-md { width: 120px; }
.sticker-lg { width: 160px; }
.sticker-lgmenu { width: 180px; }
.sticker-lgmenu2 { width: 200px; }

/* === PRZEZROCZYSTOŚĆ === */
.sticker-subtle   { opacity: 0.12; }
.sticker-medium   { opacity: 0.22; }
.sticker-visible   { opacity: 1; }

/* === RESPONSIVE === */
@media (max-width: 1200px) {
    .section-sticker {
        opacity: 0.15 !important;
    }

    .sticker-pos-tr { right: -25px; }
    .sticker-pos-bl { left: -20px; }
    .sticker-pos-mr { right: -25px; }
}

@media (max-width: 768px) {
    .section-sticker {
        opacity: 0.1 !important;
    }

    .sticker-sm { width: 60px; }
    .sticker-md { width: 80px; }
    .sticker-lg { width: 110px; }

    .sticker-pos-tr { top: 20px; right: -15px; }
    .sticker-pos-bl { bottom: 20px; left: -15px; }
    .sticker-pos-br { bottom: 15px; right: 10px; }
    .sticker-pos-tl { top: 15px; left: -10px; }
}

@media (max-width: 480px) {
    .section-sticker {
        display: none;
    }
}