        :root {
            --primary-color: #cd8201;
            --secondary-color: #8b7355;
            --accent-color: #d4af37;
            --light-bg: #f8f6f3;
            --white: #ffffff;
            --text-dark: #2c2416;
            --text-light: #6b6b6b;
            --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            --font-sans: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            --font-display: "Barlow Semi Condensed";
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }
        body{
        font-family: var(--font-sans);
        color: var(--text-dark);
        line-height: 1.6;
        overflow-x: hidden;
        font-weight: 400;
        font-synthesis-weight: none;
        font-synthesis-style: none;
        }

        h1,h2,h3{
        font-family: 'Arial';
        font-weight: 100;            /* 600/700 zależnie od sekcji */
        letter-spacing: 0.1em;       /* delikatne „oddemenuchy” */
        line-height: 1.15;
        }

        .container {
            max-width: 100vw;
            margin: 0 auto;
            padding: 0 40px;
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: transparent;
            z-index: 1000;
            transition: var(--transition);
            padding: 25px 0;
        }

        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            padding: 15px 0;
        }

        .nav-container {
            max-width: 1800px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo h1 {
            font-size: 28px;
            color: var(--white);
            letter-spacing: 3px;
            margin: 0;
            transition: var(--transition);
        }

        .navbar.scrolled .logo h1 {
            color: var(--primary-color);
        }

        .logo-subtitle {
            display: block;
            font-size: 11px;
            letter-spacing: 4px;
            color: var(--accent-color);
            margin-top: -5px;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 45px;
        }

        .nav-menu a {
            text-decoration: none;
            color: var(--white);
            font-size: 14px;
            font-weight: 400;
            letter-spacing: 1px;
            position: relative;
            transition: var(--transition);
        }

        .navbar.scrolled .nav-menu a {
            color: var(--text-dark);
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--accent-color);
            transition: var(--transition);
        }

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

        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
        }

        .menu-toggle span {
            width: 25px;
            height: 2px;
            background: var(--white);
            transition: var(--transition);
        }

        .navbar.scrolled .menu-toggle span {
            background: var(--primary-color);
        }



        /* Creations Gallery */
        .creations {
            padding: 60px 0;
            background: var(--light-bg);
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .gallery {
            width: 100%;
            height: auto;               /* nadpisuje height:600px z main.min.css */
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;                  /* nadpisuje gap:30px z main.min.css */
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            aspect-ratio: unset;        /* usuwa aspect-ratio:1/1 z main.min.css */
            border-radius: 4px;         /* łagodne zaokrąglenie zamiast 20px */
        }

        /* Naprawia błędne width:70% height:20% z main.min.css */
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .gallery-image {
            height: 300px;
            overflow: hidden;
        }

        .gallery-image .image-placeholder {
            width: 100%;
            height: 100%;
            transition: var(--transition);
        }

        .gallery-item:hover .image-placeholder {
            transform: scale(1.1);
        }

        .gallery-info {
            padding: 30px 20px;
            background: var(--white);
            text-align: center;
            transition: var(--transition);
        }

        .gallery-item:hover .gallery-info {
            background: var(--primary-color);
        }

        .gallery-item:hover .gallery-info h3,
        .gallery-item:hover .gallery-info p {
            color: var(--white);
        }

        .gallery-info h3 {
            font-size: 24px;
            color: var(--primary-color);
            margin-bottom: 10px;
            transition: var(--transition);
        }

        .gallery-info p {
            font-size: 14px;
            color: var(--text-light);
            transition: var(--transition);
        }

        /* Sekcja aktualności */
        .news {
            padding: 120px 0;
            background: var(--white);
        }

        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
        }

        .news-item {
            background: var(--light-bg);
            overflow: hidden;
            transition: var(--transition);
            border-radius: 8px;
        }

        .news-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .news-image {
            height: 250px;
            overflow: hidden;
        }

        .news-content {
            padding: 30px;
        }

        .news-content h3 {
            font-size: 22px;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        .news-content p {
            font-size: 14px;
            color: var(--text-light);
            margin-bottom: 20px;
            line-height: 1.7;
        }

        .news-link {
            color: var(--accent-color);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
            transition: var(--transition);
            position: relative;
        }

        .news-link::after {
            content: '→';
            margin-left: 5px;
            transition: var(--transition);
        }

        .news-link:hover {
            color: var(--primary-color);
        }

        .news-link:hover::after {
            transform: translateX(5px);
        }

        /* Contact*/
        /* === CONTACT SECTION === */
        .contact .contact-content {
        display: grid;
        gap: clamp(24px, 3vw, 40px);
        }

        /* Desktop Layout */
        @media (min-width: 992px) {
        .contact .contact-content {
            grid-template-columns: 1fr 1fr;
            grid-template-rows: auto 1fr;
            grid-template-areas:
            "info map"
            "form map";
            align-items: start;
        }
        .contact .contact-info { grid-area: info; }
        .contact .contact-form-wrapper { grid-area: form; }
        .contact .contact-map { 
            grid-area: map; 
            min-height: 620px;
            height: 90%;
        }
        }

        /* Mobile Layout */
        @media (max-width: 991.98px) {
        .contact .contact-content {
            grid-template-columns: 1fr;
            grid-template-areas:
            "info"
            "form"
            "map";
        }
        .contact .contact-map { 
            min-height: 1105px;
        }
        }

        /* Contact Info */
        .contact-info {
        padding: 1.5rem 0;
        }

        .contact-details {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 2rem;
        }

        .contact-item {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        }

        .contact-icon {
        font-size: 1.25rem;
        margin-top: 0.25rem;
        flex-shrink: 0;
        }

        .contact-item h3 {
        margin: 0 0 0.25rem 0;
        font-size: 1.1rem;
        color: var(--text-primary, #333);
        }

        .contact-item address,
        .contact-item p {
        margin: 0;
        font-style: normal;
        line-height: 1.5;
        color: var(--text-secondary, #666);
        }

        .contact-item a {
        color: inherit;
        text-decoration: none;
        transition: color 0.3s ease;
        }

        .contact-item a:hover {
        color: var(--primary-color, #d4a574);
        }

        /* Contact Form */
        .contact-form-wrapper {
        padding: 1.5rem 0;
        }

        .form-card {
        background: var(--background-light, #f8f8f8);
        padding: 2rem;
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        }

        .form-card h3 {
        margin: 0 0 1.5rem 0;
        font-size: 1.5rem;
        color: var(--text-primary, #333);
        }

        .form-group {
        margin-bottom: 1.25rem;
        }

        .contact-form input,
        .contact-form textarea {
        width: 100%;
        padding: 0.875rem 1rem;
        border: 2px solid var(--border-color, #e0e0e0);
        border-radius: 8px;
        font-size: 1rem;
        transition: all 0.3s ease;
        background: white;
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
        outline: none;
        border-color: var(--primary-color, #d4a574);
        box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
        }

        .contact-form textarea {
        resize: vertical;
        min-height: 120px;
        font-family: inherit;
        }

        .btn-primary {
        width: 100%;
        padding: 1rem 2rem;
        background: var(--primary-color, #d4a574);
        color: white;
        border: none;
        border-radius: 8px;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        }

        .btn-primary:hover {
        background: var(--primary-dark, #b58a5c);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(212, 165, 116, 0.3);
        }

        /* Map Styles */
        .contact-map {
        position: relative;
        border-radius: 16px;
        overflow: hidden;
        /* box-shadow: 0 8px 32px rgba(0,0,0,0.15); */
        min-height: 1105px;
        }

        .contact-map::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(112, 66, 20, 0.1); /* brązowy overlay */
        mix-blend-mode: multiply;
        pointer-events: none;
        z-index: 1000;
        border-radius: 16px;
        }

        .contact-map::after {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        background: linear-gradient(135deg, rgba(0,0,0,0.03) 0%, transparent 50%);
        mix-blend-mode: multiply;
        }

        .leaflet-container {
        width: 100%;
        height: 100%;
        filter: sepia(0.5) saturate(0.8) hue-rotate(-10deg);
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
        .form-card {
            padding: 1.5rem;
        }
        
        .contact-details {
            gap: 1.25rem;
            margin-top: 1.5rem;
        }
        
        .contact-item {
            gap: 0.875rem;
        }
        }

        /* Map */
        /* --- CONTACT GRID W/ MAP --- */
        .contact .contact-content {
        display: grid;
        gap: clamp(16px, 2vw, 28px);
        }

        /* Desktop: info | mapa (wysoka), pod spodem form | (mapa nadal) */
        @media (min-width: 992px) {
        .contact .contact-content {
            grid-template-columns: 1.1fr 0.9fr;
            grid-template-areas:
            "info map"
            "form map";
            align-items: start;
        }
        .contact .contact-info { grid-area: info; }
        .contact .contact-form-wrapper { grid-area: form; }
        .contact .contact-map { grid-area: map; min-height: 520px; }
        }

        /* Mobile/tablet: wszystko w kolumnie, mapa na dole */
        @media (max-width: 991.98px) {
        .contact .contact-content > * { width: 100%; }
        .contact .contact-map { min-height: 360px; }
        }

        /* Płytka mapy */
        .contact .contact-map {
        position: relative;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 8px 28px rgba(0,0,0,.25);
        isolation: isolate;
        min-height: 1105px;
        }

        /* Opcjonalny delikatny overlay dla lepszego kontrastu przy ciemnym tle strony */
        .contact .contact-map::after {
        content: "";
        position: absolute; inset: 0;
        pointer-events: none;
        background: linear-gradient(to bottom right, rgba(0,0,0,.08), rgba(0,0,0,0));
        mix-blend-mode: multiply;
        }

        /* Leaflet reset (zapewnia, że mapa wypełnia kontener) */
        .leaflet-container {
        width: 100%;
        height: 100%;
        }

        /* Footer */
                .footer {
            background: var(--primary-color);
            color: var(--white);
            padding: 80px 0 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 60px;
            margin-bottom: 50px;
        }

        .footer-logo h2 {
            font-size: 32px;
            letter-spacing: 3px;
            margin-bottom: 5px;
        }

        .footer-logo span {
            display: block;
            font-size: 12px;
            letter-spacing: 4px;
            color: white;
            margin-bottom: 15px;
        }

        .footer-logo p {
            font-size: 14px;
            color: rgb(255, 255, 255);
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .footer-links h4,
        .footer-social h4,
        .footer-contact h4,
        .footer-newsletter h4 {
            font-size: 16px;
            margin-bottom: 20px;
            color: var(--accent-color);
            position: relative;
        }

        .footer-links h4::after,
        .footer-social h4::after,
        .footer-contact h4::after,
        .footer-newsletter h4::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -8px;
            width: 30px;
            height: 2px;
            background: var(--accent-color);
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 14px;
            line-height: 2.2;
            transition: var(--transition);
            display: flex;
            align-items: center;
        }

        .footer-links a:hover {
            color: var(--accent-color);
            transform: translateX(5px);
        }

        .footer-links a::before {
            content: '›';
            margin-right: 8px;
            color: var(--accent-color);
            opacity: 0;
            transition: var(--transition);
        }

        .footer-links a:hover::before {
            opacity: 1;
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-bottom: 25px;
        }

        .social-icons a {
            width: 40px;
            height: 40px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            text-decoration: none;
            font-size: 14px;
            transition: var(--transition);
            border-radius: 50%;
        }

        .social-icons a:hover {
            background: var(--accent-color);
            border-color: var(--accent-color);
            color: var(--primary-color);
            transform: translateY(-3px);
        }

        .footer-contact p {
            font-size: 14px;
            color: var(--light-gray);
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
        }

        .footer-contact i {
            color: var(--accent-color);
            margin-right: 10px;
            min-width: 16px;
        }

        .footer-newsletter p {
            font-size: 14px;
            color: var(--light-gray);
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .newsletter-form {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .newsletter-form input {
            padding: 12px 15px;
            
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 4px;
            color: var(--white);
            font-size: 14px;
            transition: var(--transition);
        }

        .newsletter-form input:focus {
            outline: none;
            border-color: var(--accent-color);
        }

        .newsletter-form button {
            padding: 12px 20px;
            background: var(--accent-color);
            color: var(--primary-color);
            border: none;
            border-radius: 4px;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .newsletter-form button:hover {
            background: #e6c035;
            transform: translateY(-2px);
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            flex-wrap: wrap;
            gap: 15px;
        }

        .footer-bottom p {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.5);
        }

        .footer-bottom-links {
            display: flex;
            gap: 20px;
        }

        .footer-bottom-links a {
            color: rgba(255, 255, 255, 0.5);
            text-decoration: none;
            font-size: 13px;
            transition: var(--transition);
        }

        .footer-bottom-links a:hover {
            color: var(--accent-color);
        }

                /* Przycisk Go Up */
        .go-up-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--accent-color);
            color: var(--primary-color);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            transition: var(--transition);
            opacity: 0;
            visibility: hidden;
            z-index: 1000;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .go-up-btn.visible {
            opacity: 1;
            visibility: visible;
        }

        .go-up-btn:hover {
            background: #e6c035;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
        }

        /* --- FROKOST & LUNSJ – OFFERS SECTION --- */
.offers {
    padding: 100px 0;
    background: var(--white);
}

.offers .section-header {
    margin-bottom: 60px;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 30px;
}

.offer-card {
    background: var(--light-bg);
    border-radius: 12px;
    padding: 24px 24px 28px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(139, 115, 85, 0.15);
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.offer-card::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    background: radial-gradient(circle at top left, rgba(212, 175, 55, 0.26), transparent 52%);
    transition: var(--transition);
}

.offer-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.offer-card:hover::before {
    opacity: 1;
}

.offer-card h3 {
    font-size: 20px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.offer-card p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.offer-time {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--secondary-color);
    margin-top: 4px;
}

.offer-price,
.offer-price-extra {
    font-size: 20px;
    font-weight: 600;
    color: var(--accent-color);
    margin-top: 10px;
}

.offer-note {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 8px;
}

.offer-highlight {
    background: var(--primary-color);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.25);
}

.offer-highlight h3,
.offer-highlight p,
.offer-highlight .offer-price-extra {
    color: var(--white);
}

/* --- BUSINESS – PRICING CARDS --- */
.business-pricing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin: 10px 0 32px;
}

.price-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px 22px;
    border: 1px solid rgba(139, 115, 85, 0.18);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

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

.price-card h4 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 6px;
}

.price-main {
    font-size: 20px;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 4px;
}

.price-note {
    font-size: 13px;
    color: var(--text-light);
}

.business-contact {
    font-size: 14px;
    color: var(--text-light);
    margin: 20px 0;
}

.business-contact a {
    color: var(--accent-color);
    text-decoration: none;
    border-bottom: 1px solid rgba(212, 175, 55, 0.4);
    padding-bottom: 1px;
}

.business-contact a:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .offers {
        padding: 70px 0;
    }
}


        /* Responsywność */
        @media (max-width: 992px) {
            .footer-content {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }
        }

        @media (max-width: 768px) {
            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            
            .footer-bottom-links {
                justify-content: center;
            }
        }
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes scrollDown {
            0%, 100% {
                transform: translateY(0);
                opacity: 0;
            }
            50% {
                opacity: 1;
            }
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .container {
                padding: 0 30px;
            }
            
            .nav-container {
                padding: 0 30px;
            }
            
            .hero-title {
                font-size: 70px;
            }
            
            .section-title {
                font-size: 42px;
            }
            
            .about-content,
            .contact-content,
            .business-content {
                grid-template-columns: 1fr;
                gap: 50px;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .values-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .menu-toggle {
                display: flex;
                z-index: 1001;
            }
            
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 70%;
                height: 100vh;
                background: var(--primary-color);
                flex-direction: column;
                padding: 100px 40px;
                gap: 30px;
                transition: var(--transition);
            }
            
            .nav-menu.active {
                right: 0;
            }
            
            .nav-menu a {
                color: var(--white);
                font-size: 18px;
            }
            
            .hero-title {
                font-size: 50px;
            }
            
            .hero-title span {
                font-size: 24px;
            }
            
            .section-title {
                font-size: 36px;
            }
            
            .gallery {
                grid-template-columns: 1fr;
            }
            
            .contact-form-wrapper {
                padding: 30px;
            }
            
            .news-grid {
                grid-template-columns: 1fr;
            }
            
            .about-conclusion {
                padding: 30px 20px;
            }
            
            .value-item {
                padding: 20px;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 20px;
            }
            
            .nav-container {
                padding: 0 20px;
            }
            
            .hero-title {
                font-size: 38px;
                letter-spacing: 4px;
            }
            
            .hero-title span {
                font-size: 18px;
                letter-spacing: 6px;
            }
            
            .section-title {
                font-size: 32px;
            }
            
            .btn-primary {
                padding: 15px 35px;
                font-size: 12px;
            }
            
            .menu-item {
                flex-direction: column;
                gap: 15px;
            }
            
            .menu-item-price {
                margin-left: 0;
            }
            
            .values-title {
                font-size: 24px;
            }
            
            .about-conclusion h3 {
                font-size: 20px;
            }
            
            .service-item h3 {
                font-size: 18px;
            }
            
            .news-content {
                padding: 20px;
            }
            
            .news-content h3 {
                font-size: 18px;
            }
        }
    
        /* --- FIX: keep hero in normal flow, avoid overlap; improve anchor offset --- */
        .hero { transform: none !important; will-change: auto; }
        section { scroll-margin-top: 90px; }

        /* =========================================================
   TABLET-ONLY FIX (769–1199.98px) — hamburger + layout
   ========================================================= */
@media (min-width: 769px) and (max-width: 1199.98px) {
  /* Hamburger widoczny na tabletach */
  .menu-toggle {
    display: flex;
    z-index: 1100;
  }

  /* Off-canvas menu jak na mobile */
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(88vw, 420px);
    height: 100dvh;
    background: var(--primary-color);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 96px 32px 32px;
    gap: 22px;
    transition: var(--transition);
    box-shadow: -12px 0 32px rgba(0,0,0,.25);
  }
  .nav-menu.active { right: 0; }
  .nav-menu a { color: var(--white); font-size: 16px; }
  .navbar.scrolled .nav-menu a { color: var(--white); } /* czytelność w off-canvas */

  /* Delikatne dopasowanie nagłówka i hero na tabletach */
  .navbar { padding: 18px 0; }
  .hero { min-height: 82dvh; }
  .hero-title {
    font-size: clamp(44px, 7vw, 68px);
    letter-spacing: clamp(2px, .6vw, 6px);
    line-height: 1.1;
  }
  .hero-title span {
    font-size: clamp(18px, 2.4vw, 28px);
    letter-spacing: clamp(4px, 1vw, 10px);
  }
  .scroll-indicator { display: none; }

  /* Siatki sekcji -> 1 kolumna na tabletach */
  .about-content,
  .business-content {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .about-image,
  .business-image { height: auto; }

  /* Galeria – 2 kolumny na tabletach */
  .gallery { grid-template-columns: repeat(2, minmax(260px, 1fr)); height: auto; }
  .gallery-image { height: clamp(240px, 36vw, 360px); }

  /* Kontakt – sensowna wysokość mapy */
  .contact .contact-map { min-height: clamp(460px, 60dvh, 680px); }
  .leaflet-container { height: 100%; min-height: inherit; }

  /* Animacja burgera do „X” (opcjonalnie, ale miło) */
  .menu-toggle span { transition: transform .25s ease, opacity .25s ease, background-color .25s ease; }
  .menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.active span:nth-child(2) { opacity: 0; }
  .menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* Blokada przewijania tła przy otwartym menu */
body.lock { overflow: hidden; }

/* =========================================================
   HP JOBS – SEKCJA NA STRONIE GŁÓWNEJ
   ========================================================= */

.hp-jobs {
    background: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.hp-jobs::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 0% 50%, rgba(212, 175, 55, 0.10) 0%, transparent 65%),
        radial-gradient(ellipse 40% 60% at 100% 100%, rgba(212, 175, 55, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.hp-jobs::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4), transparent);
}

.hp-jobs__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 80px;
}

/* ── Nagłówek ── */
.hp-jobs__eyebrow {
    display: block;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.hp-jobs__title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(52px, 7vw, 84px);
    font-weight: 300;
    line-height: 0.92;
    letter-spacing: 0.04em;
    color: var(--white);
    margin: 0 0 28px;
}

.hp-jobs__title em {
    font-style: italic;
    color: var(--accent-color);
}

.hp-jobs__ornament {
    margin-bottom: 28px;
}

.hp-jobs__desc {
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 40px;
}

.hp-jobs__desc strong {
    color: var(--white);
    font-weight: 500;
}

.hp-jobs__cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--white);
    border-bottom: 1px solid rgba(212, 175, 55, 0.4);
    padding-bottom: 4px;
    transition: color 0.25s, border-color 0.25s, gap 0.25s;
}

.hp-jobs__cta:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
    gap: 18px;
}

/* ── Lista ogłoszeń ── */
.hp-jobs__list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hp-jobs__item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 26px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    transition: background 0.25s;
    position: relative;
}

.hp-jobs__item::before {
    content: '';
    position: absolute;
    left: -24px;
    top: 0; bottom: 0;
    width: 3px;
    background: var(--accent-color);
    transform: scaleY(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.hp-jobs__item:hover::before {
    transform: scaleY(1);
}

.hp-jobs__item-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    color: rgba(212, 175, 55, 0.7);
    transition: color 0.25s, transform 0.25s;
}

.hp-jobs__item:hover .hp-jobs__item-icon {
    color: var(--accent-color);
    transform: translateY(-1px);
}

.hp-jobs__item-body {
    flex: 1;
    min-width: 0;
}

.hp-jobs__item-title {
    display: block;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 0.03em;
    color: var(--white);
    margin-bottom: 6px;
    transition: color 0.25s;
}

.hp-jobs__item:hover .hp-jobs__item-title {
    color: var(--accent-color);
}

.hp-jobs__item-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.hp-jobs__item-tag {
    padding: 2px 8px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: rgba(212, 175, 55, 0.7);
    font-size: 10px;
    letter-spacing: 0.15em;
}

/* Odliczanie do końca rekrutacji */
.hp-jobs__deadline {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    padding: 2px 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.hp-jobs__deadline--urgent {
    color: #e8b84b;
    border-color: rgba(232, 184, 75, 0.45);
    animation: deadlinePulse 2.5s ease-in-out infinite;
}

@keyframes deadlinePulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.65; }
}

.hp-jobs__item-arrow {
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.3);
    transition: color 0.25s, transform 0.25s;
}

.hp-jobs__item:hover .hp-jobs__item-arrow {
    color: var(--accent-color);
    transform: translateX(4px);
}

.hp-jobs__more-hint {
    margin-top: 20px;
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    text-align: right;
}

/* Responsywność */
@media (max-width: 1024px) {
    .hp-jobs__inner {
        grid-template-columns: 300px 1fr;
        gap: 60px;
        padding: 80px 60px;
    }
}

@media (max-width: 768px) {
    .hp-jobs__inner {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 72px 24px;
    }

    .hp-jobs__title {
        font-size: clamp(48px, 12vw, 72px);
    }

    .hp-jobs__item::before {
        left: -12px;
    }
}

/* =========================================================
   JOBB HOS OSS – LUXURY REDESIGN
   ========================================================= */

/* ── ARCHIVE HERO ────────────────────────────────────────── */
.jobb-archive-hero {
    padding: 160px 0 100px;
    background: var(--primary-color);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.jobb-archive-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(212, 175, 55, 0.12) 0%, transparent 70%),
        radial-gradient(ellipse 60% 40% at 80% 100%, rgba(212, 175, 55, 0.06) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.jobb-archive-hero--with-media::before {
    background:
        linear-gradient(135deg, rgba(15, 12, 8, 0.38) 0%, rgba(15, 12, 8, 0.22) 48%, rgba(15, 12, 8, 0.34) 100%),
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
}

.jobb-archive-hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.jobb-archive-hero__video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.jobb-archive-hero__video--mobile {
    display: none;
}

.jobb-archive-hero__inner {
    position: relative;
    z-index: 2;
    max-width: 680px;
    margin: 0 auto;
    padding: 0 40px;
}

.jobb-archive-hero__eyebrow {
    display: block;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 20px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.jobb-archive-hero__title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(56px, 9vw, 100px);
    font-weight: 300;
    line-height: 0.95;
    letter-spacing: 0.04em;
    color: var(--white);
    margin: 0 0 28px;
    text-shadow: 0 3px 18px rgba(0, 0, 0, 0.48);
}

.jobb-archive-hero__title em {
    font-style: italic;
    color: var(--accent-color);
}

.jobb-archive-hero__ornament {
    margin: 0 auto 28px;
    display: flex;
    justify-content: center;
}

.jobb-archive-hero__sub {
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.72);
    letter-spacing: 0.02em;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.42);
}

/* ── ARCHIVE LISTINGS ────────────────────────────────────── */
.jobb-archive-listings {
    padding: 80px 0 120px;
    background: var(--light-bg);
}

.jobb-archive-meta {
    text-align: center;
    margin-bottom: 56px;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-light);
}

.jobb-archive-meta strong {
    font-size: 18px;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--primary-color);
}

/* ── JOB CARDS GRID ──────────────────────────────────────── */
.jobb-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 2px;
    background: rgba(139, 115, 85, 0.12);
    border: 1px solid rgba(139, 115, 85, 0.12);
}

/* ── JOB CARD ────────────────────────────────────────────── */
.jobb-card {
    background: var(--white);
    display: flex;
    flex-direction: column;
    padding: 40px 36px 32px;
    position: relative;
    transition: background 0.35s ease, box-shadow 0.35s ease;
    overflow: hidden;
}

.jobb-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--accent-color);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.jobb-card:hover {
    background: #fdfbf8;
    box-shadow: 0 20px 60px rgba(44, 36, 22, 0.08);
    z-index: 1;
}

.jobb-card:hover::before {
    transform: scaleY(1);
}

/* Icon per kategorię */
.jobb-card__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    color: var(--accent-color);
    opacity: 0.85;
    transition: opacity 0.3s, transform 0.3s;
}

.jobb-card:hover .jobb-card__icon {
    opacity: 1;
    transform: translateY(-2px);
}

.jobb-card__body {
    flex: 1;
}

/* Tagi */
.jobb-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.jobb-tag {
    display: inline-block;
    padding: 3px 10px;
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border: 1px solid currentColor;
    border-radius: 2px;
}

.jobb-tag--heltid     { color: var(--primary-color); border-color: rgba(116, 73, 0, 0.4); }
.jobb-tag--deltid     { color: var(--secondary-color); border-color: rgba(139, 115, 85, 0.4); }
.jobb-tag--helg       { color: #7a6200; border-color: rgba(212, 175, 55, 0.5); }
.jobb-tag--ekstra     { color: var(--text-dark); border-color: rgba(44, 36, 22, 0.25); }
.jobb-tag--ferievikar { color: #005c38; border-color: rgba(0, 92, 56, 0.35); }

/* Tytuł */
.jobb-card__title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(22px, 2.5vw, 28px);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.03em;
    margin-bottom: 14px;
}

.jobb-card__title a {
    text-decoration: none;
    color: var(--text-dark);
    transition: color 0.25s;
}

.jobb-card__title a:hover {
    color: var(--primary-color);
}

.jobb-card__location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 14px;
}

.jobb-card__excerpt {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-light);
}

/* Footer karty */
.jobb-card__footer {
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid rgba(139, 115, 85, 0.12);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.jobb-card__deadline {
    font-size: 12px;
    letter-spacing: 0.06em;
    color: var(--text-light);
}

.jobb-card__deadline--open {
    color: #005c38;
    font-style: italic;
}

.jobb-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--primary-color);
    transition: gap 0.25s, color 0.25s;
}

.jobb-card__cta:hover {
    color: var(--accent-color);
    gap: 12px;
}

/* ── EMPTY STATE ─────────────────────────────────────────── */
.jobb-empty {
    text-align: center;
    padding: 80px 20px;
}

.jobb-empty__ornament {
    margin: 0 auto 32px;
    display: flex;
    justify-content: center;
    opacity: 0.6;
}

.jobb-empty__text {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 22px;
    font-weight: 300;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.jobb-empty__sub {
    font-size: 14px;
    color: var(--text-light);
}

.jobb-empty__sub a {
    color: var(--accent-color);
    text-decoration: none;
    border-bottom: 1px solid rgba(212, 175, 55, 0.4);
    transition: border-color 0.2s;
}

/* ── SINGLE JOB HERO ─────────────────────────────────────── */
.single-jobb {
    padding-top: 0;
}

.jobb-single-hero {
    padding: 130px 0 80px;
    background: var(--primary-color);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.jobb-single-hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.jobb-single-hero__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(28, 22, 12, 0.48) 0%, rgba(28, 22, 12, 0.38) 35%, rgba(28, 22, 12, 0.62) 100%),
        linear-gradient(90deg, rgba(116, 73, 0, 0.18) 0%, rgba(116, 73, 0, 0.08) 50%, rgba(116, 73, 0, 0.18) 100%);
    pointer-events: none;
}

.jobb-single-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.jobb-single-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(212, 175, 55, 0.14) 0%, transparent 70%);
    pointer-events: none;
}

.jobb-single-hero--with-image::before {
    background:
        linear-gradient(180deg, rgba(28, 22, 12, 0.56) 0%, rgba(28, 22, 12, 0.42) 35%, rgba(28, 22, 12, 0.62) 100%),
        radial-gradient(ellipse 70% 60% at 50% 0%, rgba(212, 175, 55, 0.18) 0%, transparent 70%);
}

/* Per-kategoria akcenty */
.single-jobb--barista  .jobb-single-hero::after,
.single-jobb--konditor .jobb-single-hero::after,
.single-jobb--selger   .jobb-single-hero::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 0; right: 0;
    height: 2px;
    background: var(--accent-color);
    opacity: 0.6;
}

.jobb-single-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Breadcrumb w hero */
.jobb-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 32px;
}

.jobb-breadcrumb a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s;
}

.jobb-breadcrumb a:hover {
    color: var(--accent-color);
}

.jobb-breadcrumb span:last-child {
    color: rgba(255, 255, 255, 0.8);
}

.jobb-single-hero__icon {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--accent-color);
    opacity: 0.9;
}

.jobb-single-hero__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 20px;
}

.jobb-single-hero .jobb-tag {
    border-color: rgba(212, 175, 55, 0.4);
    color: rgba(255, 255, 255, 0.75);
}

.jobb-single-hero__title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: 0.04em;
    color: var(--white);
    margin: 0 0 24px;
}

.jobb-single-hero__ornament {
    display: flex;
    justify-content: center;
}

/* ── SINGLE BODY – TWO COLUMN ────────────────────────────── */
.jobb-single-body {
    padding: 72px 0 80px;
    background: var(--white);
}

.jobb-single-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 64px;
    align-items: start;
}

/* Treść */
.jobb-single-content {
    min-width: 0;
}

.jobb-single-article {
    font-size: 16px;
    line-height: 1.85;
    color: var(--text-dark);
    counter-reset: job-section;
}

/* ── Sekcje: licznik + linia ─────────────────────────────── */
.jobb-single-article > h2 {
    counter-increment: job-section;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(20px, 2.2vw, 26px);
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--primary-color);
    margin: 56px 0 20px;
    padding: 0;
    border: none;
    display: flex;
    align-items: center;
    gap: 14px;
}

/* Numer sekcji: 01, 02 ... */
.jobb-single-article > h2::before {
    content: '0' counter(job-section);
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: var(--accent-color);
    flex-shrink: 0;
}

/* Rozciągająca się linia po tytule */
.jobb-single-article > h2::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.35) 0%, transparent 100%);
}

.jobb-single-article > h2:first-child {
    margin-top: 0;
}

/* ── Paragrafy (np. Om stillingen) ───────────────────────── */
.jobb-single-article > p {
    font-size: 15px;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 20px;
    max-width: 640px;
}

/* ── Listy → 2-kolumnowy otwarty grid ────────────────────── */
.jobb-single-article ul {
    list-style: none;
    padding: 0;
    margin: 0 0 8px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}

.jobb-single-article ul li {
    position: relative;
    padding: 14px 16px 14px 34px;
    background: var(--light-bg);
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-dark);
    /* brak border — otwarty feel */
    transition: background 0.2s;
}

.jobb-single-article ul li:hover {
    background: #f0ebe3;
}

/* Złota kreska */
.jobb-single-article ul li::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 22px;
    width: 10px;
    height: 1px;
    background: var(--accent-color);
}

/* ── Na mobile: 1 kolumna ────────────────────────────────── */
@media (max-width: 600px) {
    .jobb-single-article ul {
        grid-template-columns: 1fr;
    }
}

.jobb-single-back {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(139, 115, 85, 0.12);
}

.jobb-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--text-light);
    transition: color 0.25s, gap 0.25s;
}

.jobb-back-link:hover {
    color: var(--primary-color);
    gap: 12px;
}

/* ── SIDEBAR CARD ────────────────────────────────────────── */
.jobb-single-sidebar {
    position: sticky;
    top: 100px;
}

.jobb-sidebar-card {
    background: var(--light-bg);
    border: 1px solid rgba(139, 115, 85, 0.15);
    padding: 36px 32px;
    position: relative;
}

.jobb-sidebar-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
}

.jobb-sidebar-card__category {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.04em;
}

.jobb-sidebar-card__ornament {
    margin-bottom: 24px;
    opacity: 0.6;
}

.jobb-sidebar-card__facts {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.jobb-sidebar-card__facts li {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.jobb-sidebar-fact__label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-light);
}

.jobb-sidebar-fact__value {
    font-size: 15px;
    color: var(--text-dark);
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.jobb-sidebar-apply-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    padding: 16px 24px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border: 0;
    cursor: pointer;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    transition: background 0.3s, gap 0.3s;
}

.jobb-sidebar-apply-btn:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}

/* ── APPLICATION FORM SECTION ────────────────────────────── */
.jobb-apply-section {
    padding: 100px 0 120px;
    background: var(--light-bg);
    overflow: hidden;
    transition: opacity 0.25s ease, transform 0.25s ease, max-height 0.25s ease, padding 0.25s ease;
}

.jobb-apply-section.is-collapsed {
    opacity: 0;
    transform: translateY(-16px);
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
}

.jobb-apply-section.is-open {
    opacity: 1;
    transform: translateY(0);
    max-height: 3000px;
}

/* Catalog page */
.catalog-page {
    background: linear-gradient(180deg, #fbf8f3 0%, #f4efe7 100%);
}

.catalog-hero {
    position: relative;
    overflow: hidden;
    padding: 140px 0 88px;
    background:
        radial-gradient(circle at top left, rgba(212, 175, 55, 0.14), transparent 32%),
        linear-gradient(135deg, rgba(116, 73, 0, 0.96) 0%, rgba(86, 56, 11, 0.92) 100%);
    color: var(--white);
}

.catalog-hero__inner {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.catalog-hero__eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 11px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
}

.catalog-hero__title {
    margin: 0 0 18px;
    color: var(--white);
    font-size: clamp(44px, 7vw, 82px);
    line-height: 1.02;
}

.catalog-hero__lead {
    max-width: 640px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.82);
    font-size: 16px;
    line-height: 1.8;
}

.catalog-showcase {
    padding: 76px 0 110px;
}

.catalog-page__intro {
    max-width: 760px;
    margin: 0 auto 38px;
    padding: 26px 30px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(139, 115, 85, 0.12);
    box-shadow: 0 18px 45px rgba(44, 36, 22, 0.05);
    backdrop-filter: blur(10px);
}

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

.catalog-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(139, 115, 85, 0.14);
    box-shadow: 0 20px 48px rgba(44, 36, 22, 0.08);
    overflow: hidden;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.catalog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px rgba(44, 36, 22, 0.12);
    border-color: rgba(212, 175, 55, 0.28);
}

.catalog-card__media {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: linear-gradient(145deg, #f8ecdd 0%, #f1dcc4 100%);
}

.catalog-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.catalog-card:hover .catalog-card__media img {
    transform: scale(1.04);
}

.catalog-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(116, 73, 0, 0.7);
    font-size: 30px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-family: 'Cormorant Garamond', Georgia, serif;
}

.catalog-card__badge {
    position: absolute;
    left: 18px;
    top: 18px;
    padding: 8px 14px;
    background: rgba(28, 22, 12, 0.78);
    color: #fff;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.catalog-card__body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 14px;
    padding: 24px 24px 26px;
}

.catalog-card__title {
    margin: 0;
    color: var(--primary-color);
    font-size: 30px;
    line-height: 1.1;
}

.catalog-card__desc {
    margin: 0;
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.75;
}

.catalog-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: auto;
    padding-top: 8px;
}

.catalog-card__link,
.catalog-card__download {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 18px;
    text-decoration: none;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-size: 11px;
    transition: all 0.25s ease;
}

.catalog-card__link {
    background: var(--primary-color);
    color: var(--white);
}

.catalog-card__link:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}

.catalog-card__download {
    border: 1px solid rgba(116, 73, 0, 0.22);
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.7);
}

.catalog-card__download:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .catalog-hero {
        padding: 120px 0 72px;
    }

    .catalog-showcase {
        padding: 56px 0 84px;
    }

    .catalog-page__intro {
        padding: 20px 18px;
    }

    .catalog-card__body {
        padding: 20px 18px 22px;
    }

    .catalog-card__title {
        font-size: 24px;
    }
}

.jobb-apply-header {
    text-align: center;
    margin-bottom: 60px;
}

.jobb-apply-header__eyebrow {
    display: block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 14px;
}

.jobb-apply-header__title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 300;
    letter-spacing: 0.04em;
    color: var(--primary-color);
    margin: 0 0 20px;
}

.jobb-apply-header__ornament {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.jobb-apply-header__sub {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.jobb-apply-form-wrap {
    max-width: 760px;
    margin: 0 auto;
}

/* ── FORM STYLING ────────────────────────────────────────── */
.jobb-form-wrapper {
    background: var(--white);
    border: 1px solid rgba(139, 115, 85, 0.15);
    padding: 52px 56px;
    box-shadow: 0 8px 48px rgba(44, 36, 22, 0.06);
    position: relative;
}

.jobb-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
}

.jobb-form-section {
    margin-bottom: 44px;
    padding-bottom: 44px;
    border-bottom: 1px solid rgba(139, 115, 85, 0.1);
}

.jobb-form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.jobb-form-section-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 0.06em;
    color: var(--primary-color);
    margin-bottom: 28px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.jobb-form-row--2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.jobb-form .form-row {
    margin-bottom: 24px;
}

.jobb-form .form-row:last-child {
    margin-bottom: 0;
}

.jobb-form .form-row label {
    display: block;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 8px;
}

.jobb-form input[type="text"],
.jobb-form input[type="email"],
.jobb-form input[type="tel"],
.jobb-form input[type="date"] {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(139, 115, 85, 0.3);
    border-bottom-width: 2px;
    border-radius: 0;
    font-size: 15px;
    font-family: inherit;
    background: transparent;
    color: var(--text-dark);
    transition: border-color 0.25s, background 0.25s;
    outline: none;
}

.jobb-form input[type="text"]:focus,
.jobb-form input[type="email"]:focus,
.jobb-form input[type="tel"]:focus,
.jobb-form input[type="date"]:focus {
    border-color: var(--accent-color);
    border-bottom-color: var(--primary-color);
    background: rgba(248, 246, 243, 0.5);
}

.jobb-form input[type="file"] {
    width: 100%;
    padding: 14px 16px;
    border: 1px dashed rgba(139, 115, 85, 0.35);
    border-radius: 0;
    font-size: 13px;
    font-family: inherit;
    background: rgba(248, 246, 243, 0.5);
    cursor: pointer;
    color: var(--text-light);
    transition: border-color 0.25s, background 0.25s;
    outline: none;
}

.jobb-form input[type="file"]:hover,
.jobb-form input[type="file"]:focus {
    border-color: var(--primary-color);
    background: rgba(116, 73, 0, 0.03);
}

.jobb-form-hint {
    font-size: 11px;
    letter-spacing: 0.06em;
    color: var(--text-light);
    margin-top: 6px;
}

.jobb-form-submit {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.btn-jobb-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 48px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s;
    min-width: 200px;
    border-radius: 0;
}

.btn-jobb-submit:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}

.btn-jobb-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Alerty */
.contact-alert {
    padding: 14px 20px;
    margin-bottom: 24px;
    font-size: 14px;
    letter-spacing: 0.03em;
    border-left: 3px solid currentColor;
}

.contact-info    { background: rgba(0, 92, 185, 0.05);  color: #003d7a; }
.contact-success { background: rgba(0, 120, 60, 0.05);  color: #004d22; }
.contact-error   { background: rgba(180, 30, 30, 0.05); color: #7a0000; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
    .jobb-single-layout {
        grid-template-columns: 1fr 300px;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .jobb-archive-hero {
        padding: 130px 0 72px;
    }

    .jobb-archive-hero__video--desktop {
        display: none;
    }

    .jobb-archive-hero__video--mobile {
        display: block;
    }

    .jobb-archive-hero__inner {
        padding: 0 24px;
    }

    .jobb-cards {
        grid-template-columns: 1fr;
    }

    .jobb-card {
        padding: 32px 28px 28px;
    }

    .jobb-single-layout {
        grid-template-columns: 1fr;
    }

    .jobb-single-sidebar {
        position: static;
        order: -1;
    }

    .jobb-single-hero__inner {
        padding: 0 24px;
    }

    .jobb-form-wrapper {
        padding: 36px 28px;
    }

    .jobb-form-row--2col {
        grid-template-columns: 1fr;
    }

    .jobb-apply-section {
        padding: 72px 0 80px;
    }
}

@media (max-width: 480px) {
    .jobb-form-wrapper {
        padding: 28px 20px;
    }
}

.loyalty-perks {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.loyalty-perk {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: #fff;
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 999px;
    box-shadow: 0 8px 24px rgba(44, 36, 22, 0.06);
}

.perk-icon {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
}

.perk-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.perk-text {
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary-color);
}

@media (max-width: 640px) {
    .loyalty-perks {
        gap: 10px;
    }

    .loyalty-perk {
        width: calc(50% - 5px);
        justify-content: center;
        padding: 10px 12px;
    }
}

.catalog-showcase .container {
    max-width: 1180px;
}

.catalog-showcase .section-header {
    margin-bottom: 46px;
}

.catalog-grid__lead {
    max-width: 640px;
    margin: 14px auto 0;
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.75;
    text-align: center;
}

.catalog-page__intro {
    max-width: 820px;
    margin-bottom: 52px;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 360px));
    justify-content: center;
    gap: 34px 26px;
}

.catalog-card {
    display: flex;
    flex-direction: column;
    min-height: auto;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(139, 115, 85, 0.12);
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(44, 36, 22, 0.08);
    overflow: hidden;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.catalog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 70px rgba(44, 36, 22, 0.12);
    border-color: rgba(212, 175, 55, 0.26);
}

.catalog-card__media {
    position: relative;
    padding: 20px 20px 0;
    background:
        radial-gradient(circle at top right, rgba(212, 175, 55, 0.16), transparent 30%),
        linear-gradient(180deg, #f8efe3 0%, #f6ecde 100%);
}

.catalog-card__sheet,
.catalog-card__sheet--back {
    display: none;
}

.catalog-card__preview,
.catalog-card__pdf-frame {
    position: relative;
    width: 100%;
    height: 360px;
    overflow: hidden;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 18px 36px rgba(44, 36, 22, 0.1);
    border: 1px solid rgba(116, 73, 0, 0.08);
}

.catalog-card__preview::after,
.catalog-card__pdf-frame::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 34%;
    background: linear-gradient(180deg, rgba(15, 10, 4, 0) 0%, rgba(15, 10, 4, 0.08) 100%);
    pointer-events: none;
}

.catalog-card__pdf-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    background: #fff;
}

.catalog-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.catalog-card:hover .catalog-card__media img {
    transform: scale(1.03);
}

.catalog-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(116, 73, 0, 0.78);
    font-size: 24px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-family: 'Cormorant Garamond', Georgia, serif;
}

.catalog-card__badge {
    position: absolute;
    left: 14px;
    top: 14px;
    padding: 8px 12px;
    background: rgba(28, 22, 12, 0.72);
    color: #fff;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border-radius: 999px;
    z-index: 3;
}

.catalog-card__body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 22px 22px 24px;
}

.catalog-card__meta {
    display: inline-flex;
    width: fit-content;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(212, 175, 55, 0.12);
    color: var(--primary-color);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.catalog-card__title {
    margin: 0;
    color: var(--primary-color);
    font-size: 28px;
    line-height: 1.08;
}

.catalog-card__desc {
    margin: 0;
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.72;
}

.catalog-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
    padding-top: 4px;
}

.catalog-card__link,
.catalog-card__download {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 10px 14px;
    text-decoration: none;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-size: 10px;
    border-radius: 999px;
    transition: all 0.25s ease;
}

.catalog-card__link {
    background: var(--primary-color);
    color: var(--white);
}

.catalog-card__link:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}

.catalog-card__download {
    border: 1px solid rgba(116, 73, 0, 0.18);
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.75);
}

.catalog-card__download:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

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

    .catalog-card__preview,
    .catalog-card__pdf-frame {
        height: 300px;
    }

    .catalog-card__body {
        padding: 18px 18px 20px;
    }

    .catalog-card__title {
        font-size: 24px;
    }
}

.catalog-showcase .container {
    max-width: 1280px;
}

.catalog-grid {
    grid-template-columns: repeat(auto-fit, minmax(210px, 240px));
    justify-content: center;
    gap: 34px 24px;
}

.catalog-card {
    min-height: auto;
    border-radius: 22px;
    overflow: visible;
    box-shadow: none;
    background: transparent;
    border: none;
}

.catalog-card:hover {
    transform: translateY(-4px);
    box-shadow: none;
    border-color: transparent;
}

.catalog-card__media {
    position: relative;
    aspect-ratio: 0.78;
    background: transparent;
    overflow: visible;
    padding: 18px 14px 0 0;
}

.catalog-card__sheet {
    position: absolute;
    inset: 14px 8px 10px 22px;
    border-radius: 18px;
    background: rgba(132, 95, 34, 0.1);
    border: 1px solid rgba(116, 73, 0, 0.08);
    transform: rotate(-5deg);
}

.catalog-card__sheet--back {
    inset: 24px 0 0 34px;
    background: rgba(212, 175, 55, 0.12);
    transform: rotate(4deg);
}

.catalog-card__preview {
    position: relative;
    z-index: 2;
    height: 100%;
    overflow: hidden;
    border-radius: 18px;
    background: linear-gradient(145deg, #f7efe5 0%, #eadbc4 100%);
    box-shadow: 0 22px 40px rgba(44, 36, 22, 0.12);
}

.catalog-card__preview::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 42%;
    background: linear-gradient(180deg, rgba(10, 8, 5, 0) 0%, rgba(10, 8, 5, 0.12) 100%);
    pointer-events: none;
}

.catalog-card__pdf-frame {
    position: relative;
    z-index: 2;
    height: 100%;
    overflow: hidden;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 22px 40px rgba(44, 36, 22, 0.12);
    border: 1px solid rgba(116, 73, 0, 0.08);
}

.catalog-card__pdf-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    background: #fff;
}

.catalog-card__media img {
    transition: transform 0.45s ease;
}

.catalog-card:hover .catalog-card__media img {
    transform: scale(1.03);
}

.catalog-card__badge {
    left: 14px;
    top: 14px;
    padding: 7px 12px;
    font-size: 10px;
    letter-spacing: 0.2em;
    border-radius: 999px;
    background: rgba(28, 22, 12, 0.72);
    backdrop-filter: blur(8px);
}

.catalog-card--pdf .catalog-card__media {
    padding: 0;
}

.catalog-card__body {
    gap: 10px;
    padding: 18px 8px 0;
}

.catalog-card__meta {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(212, 175, 55, 0.12);
    color: var(--primary-color);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.catalog-card__title {
    font-size: 24px;
    line-height: 1.05;
}

.catalog-card__desc {
    font-size: 13px;
    line-height: 1.65;
}

.catalog-card__actions {
    gap: 10px;
    padding-top: 2px;
}

.catalog-card__link,
.catalog-card__download {
    min-height: 40px;
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 10px;
    letter-spacing: 0.18em;
}

.catalog-card__link {
    box-shadow: 0 10px 18px rgba(116, 73, 0, 0.14);
}

@media (max-width: 768px) {
    .catalog-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 28px 18px;
    }

    .catalog-card__title {
        font-size: 21px;
    }

    .catalog-card__body {
        padding: 16px 4px 0;
    }
}
