/* ============================================================ */
/* style.css - Zuzanna Czupryńska | zuzanna-czuprynska.pl       */
/* Ekstraktion z inline CSS + page-transition.css               */
/* ============================================================ */


/* --- Blok 1 (z index.html) --- */
:root {
            /* Palette: Organic Luxury */
            --bg-paper: #F9F8F6;
            --bg-white: #FFFFFF;
            --text-primary: #1A2E28;
            /* Deep Forest Green */
            --text-secondary: #5C6B66;
            --text-light: #8E9C98;
            --accent-sage: #8DA399;
            --accent-gold: #C5A065;
            --footer-bg: #0D1714;

            --spacing-unit: 1rem;
            --container-width: 1400px;
            --section-heading-size: clamp(2.35rem, 3.25vw, 3.2rem);
            --section-heading-size-mobile: clamp(2.05rem, 9vw, 2.6rem);
            --sidebar-width: 100px;

            /* Effects */
            --shadow-soft: 0 20px 40px -10px rgba(26, 46, 40, 0.08);
            --transition: cubic-bezier(0.22, 1, 0.36, 1);
            --glass-bg: rgba(255, 255, 255, 0.7);
            --glass-border: rgba(255, 255, 255, 0.5);
        }

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

        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
            width: 100%;
        }

        body {
            background-color: var(--bg-paper);
            color: var(--text-primary);
            font-family: 'Plus Jakarta Sans', sans-serif;
            line-height: 1.7;
            overflow-x: hidden;
            /* FIX */
            max-width: 100%;
            -webkit-font-smoothing: antialiased;
            padding-left: var(--sidebar-width);
        }

        /* Noise Texture Overlay (Global) */
        body::before {
            content: "";
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
            pointer-events: none;
            z-index: 9999;
        }

        h1,
        h2,
        h3,
        h4,
        .serif {
            font-family: 'Cormorant Garamond', serif;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.4s var(--transition);
        }

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

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

        .section-py {
            padding: 8rem 0;
        }

        /* --- TYPOGRAPHY --- */
        .display-text {
            font-size: clamp(3rem, 5.5vw, 5rem);
            line-height: 1.1;
            font-weight: 400;
            letter-spacing: -0.02em;
            color: var(--text-primary);
        }

        .section-title {
            font-size: var(--section-heading-size);
            line-height: 0.98;
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
            font-weight: 300;
        }

        @keyframes shimmerLine {
            0% {
                background-position: -200% 0;
            }

            100% {
                background-position: 200% 0;
            }
        }

        .subtitle {
            font-family: 'Syne', sans-serif;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.25em;
            color: var(--accent-gold);
            font-weight: 700;
            margin: 0 auto 1rem auto;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            width: fit-content;
        }

        .subtitle.subtitle-left {
            margin-left: 0;
            justify-content: flex-start;
        }

        .subtitle::before,
        .subtitle::after {
            display: none;
        }

        /* --- ANIMATIONS SYSTEM --- */
        .reveal {
            opacity: 0;
            transition: all 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        .reveal-up {
            transform: translateY(50px);
        }

        .reveal-left {
            transform: translateX(-50px);
        }

        .reveal-right {
            transform: translateX(50px);
        }

        .reveal-zoom {
            transform: scale(0.95);
        }

        .reveal-scale-in {
            transform: scale(0.2);
        }

        .reveal-draw-line {
            height: 0 !important;
            bottom: auto !important;
        }

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

        .reveal-draw-line.active {
            height: 100% !important;
        }

        .reveal-soft-blur {
            transform: translateY(28px) scale(0.985);
            filter: blur(10px);
            clip-path: inset(0 0 18% 0);
        }

        .reveal-soft-blur.active {
            filter: blur(0);
            clip-path: inset(0);
        }

        .delay-100 {
            transition-delay: 0.1s;
        }

        .delay-200 {
            transition-delay: 0.2s;
        }

        .delay-300 {
            transition-delay: 0.3s;
        }

        .delay-400 {
            transition-delay: 0.4s;
        }

        .delay-500 {
            transition-delay: 0.5s;
        }

        @keyframes float {
            0% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-10px);
            }

            100% {
                transform: translateY(0px);
            }
        }

        .animate-float {
            animation: float 6s ease-in-out infinite;
        }

        /* --- BUTTONS --- */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 1rem 2.5rem;
            border: 1px solid #ba955d;
            background: transparent;
            color: var(--text-primary);
            font-family: 'Syne', 'Plus Jakarta Sans', sans-serif;
            font-weight: 700;
            font-size: 0.9rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            transition: color 0.4s;
            z-index: 1;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: var(--text-primary);
            transition: width 0.4s var(--transition);
            z-index: -1;
        }

        .btn:hover {
            color: white !important;
            cursor: pointer;
        }

        .btn:hover::before {
            width: 100%;
        }

        .btn-gold {
            border-color: var(--accent-gold);
            color: var(--accent-gold);
        }

        .btn-gold::before {
            background: var(--accent-gold);
        }

        .btn-gold:hover {
            color: white !important;
            cursor: pointer;
        }

        .btn-small {
            padding: 0.7rem 1.5rem;
            font-size: 0.7rem;
        }

        /* --- SIDEBAR & NAV --- */
        .sidebar {
            position: fixed;
            top: 0;
            left: 0;
            width: var(--sidebar-width);
            height: 100vh;
            background: white;
            border-right: 1px solid rgba(26, 46, 40, 0.07);
            z-index: 1100;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: space-between;
            padding: 2rem 0;
        }

        .sidebar-mail-btn,
        .sidebar-mail {
            width: 44px;
            height: 44px;
            border: 1px solid var(--accent-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-gold);
            transition: all 0.3s var(--transition);
            background: transparent;
            margin-top: 1rem;
        }

        .sidebar-mail-btn:hover,
        .sidebar-mail:hover {
            background: var(--accent-gold);
            color: white;
            transform: scale(1.1);
        }

        .sidebar-socials {
            display: none !important;
            /* Hidden temporarily */
            flex-direction: column;
            gap: 1.8rem;
            align-items: center;
        }

        .sidebar-socials a {
            color: var(--text-primary);
            font-size: 1rem;
            transition: 0.3s;
        }

        .sidebar-socials a:hover {
            color: var(--accent-gold);
            transform: scale(1.15) translateY(-2px);
        }

        .sidebar .sidebar-socials {
            display: none !important;
            /* Hidden temporarily */
            gap: 1.5rem;
            align-items: center;
        }

        .sidebar .sidebar-socials a {
            width: 38px;
            height: 38px;
            border: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: var(--text-primary);
            background: transparent;
            transition: all 0.3s var(--transition);
        }

        .sidebar .sidebar-socials a:hover,
        .sidebar .sidebar-socials a:focus-visible {
            color: var(--accent-gold);
            background: transparent;
            transform: scale(1.15) translateY(-2px);
        }

        .sidebar-line {
            width: 1px;
            height: 50px;
            background: rgba(26, 46, 40, 0.12);
            margin-top: 1rem;
        }

        .sidebar-socials a svg,
        .sidebar-mail svg,
        .sidebar-mail-btn svg {
            width: 22px;
            height: 22px;
            display: block;
        }

        .sidebar-mail svg,
        .sidebar-mail-btn svg {
            width: 20px;
            height: 20px;
        }

        /* Styl dla zdjęcia w sidebarze "O mnie" na stronach artykułów */
        .sidebar .about img,
        .sidebar-about img,
        aside .about img,
        .article-sidebar .about img,
        .sidebar .author-img,
        .sidebar-about .author-img,
        .sidebar img[alt*="O mnie"],
        .sidebar img[alt*="Zuzanna"] {
            width: 500px !important;
            height: 500px !important;
            border-radius: 100% !important;
            object-fit: cover;
        }

        nav {
            position: fixed;
            top: 0;
            left: var(--sidebar-width);
            width: calc(100% - var(--sidebar-width));
            z-index: 2001;
            padding: 1.5rem 0;
            transition: padding 0.4s, background 0.4s;
        }

        nav.scrolled {
            padding: 1rem 0;
            background: rgba(249, 248, 246, 0.9);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .nav-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.3rem;
            font-weight: 600;
            letter-spacing: -0.5px;
        }

        .logo img {
            max-height: 42px;
            width: auto;
            display: block;
            opacity: 0.85;
            transition: max-height 0.4s var(--transition);
        }

        nav.scrolled .logo img {
            max-height: 42px;
        }

        @media (max-width: 1024px) {
            .logo img {
                max-height: 42px;
            }

            nav.scrolled .logo img {
                max-height: 42px;
            }
        }

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

            nav.scrolled .logo img {
                max-height: 42px;
            }


            nav#navbar .logo img {
                max-height: 50px;
                padding: 10px;
            }
        }

        @media (max-width: 480px) {
            .logo img {
                max-height: 35px;
            }

            nav.scrolled .logo img {
                max-height: 35px;
            }

            nav#navbar .logo img {
                max-height: 50px;
                padding: 10px;
            }
        }

        .logo span {
            color: var(--accent-gold);
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 2.5rem;
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            align-items: center;
        }

        .nav-links a.nav-item {
            font-family: 'Syne', sans-serif;
            font-size: 0.7rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            position: relative;
            color: var(--text-primary);
            opacity: 0.75;
            transition: all 0.3s var(--transition);
        }

        .nav-links a.nav-item:hover {
            color: var(--text-primary);
            opacity: 1;
        }

        .nav-links a.nav-item::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--text-primary);
            transition: width 0.3s var(--transition);
        }

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

        .nav-links .nav-dropdown {
            position: relative;
            display: flex;
            align-items: center;
        }

        .nav-links .nav-dropdown-toggle {
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
        }

        .nav-dropdown-icon {
            font-size: 0.55rem;
            color: var(--accent-gold);
            transition: transform 0.3s var(--transition);
        }

        .nav-dropdown:hover .nav-dropdown-icon,
        .nav-dropdown:focus-within .nav-dropdown-icon {
            transform: rotate(180deg);
        }

        .nav-links a.nav-item.active {
            opacity: 1;
            color: var(--text-primary);
        }

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

        .nav-dropdown-menu {
            position: absolute;
            top: calc(100% + 0.9rem);
            left: 0;
            min-width: 420px;
            width: max-content;
            max-width: 80vw;
            padding: 0.55rem;
            background: rgba(249, 248, 246, 0.97);
            border: 1px solid rgba(197, 160, 101, 0.22);
            box-shadow: 0 18px 42px rgba(26, 46, 40, 0.12);
            opacity: 0;
            visibility: hidden;
            transform: translateY(8px);
            transition: opacity 0.24s var(--transition), transform 0.24s var(--transition), visibility 0.24s var(--transition);
            z-index: 90;
        }

        .nav-dropdown-menu::before {
            content: '';
            position: absolute;
            top: -0.9rem;
            left: 0;
            right: 0;
            height: 0.9rem;
        }

        .nav-dropdown:hover .nav-dropdown-menu,
        .nav-dropdown:focus-within .nav-dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .nav-subitem {
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-family: 'Syne', sans-serif;
            font-size: 0.66rem;
            font-weight: 650;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--text-primary);
            opacity: 0.78;
            padding: 0.78rem 0.85rem;
            white-space: nowrap;
            transition: color 0.25s var(--transition), background 0.25s var(--transition), opacity 0.25s var(--transition);
        }

        .nav-subitem:hover,
        .nav-subitem:focus-visible,
        .nav-subitem.active {
            color: var(--accent-gold);
            background: rgba(197, 160, 101, 0.08);
            opacity: 1;
            outline: none;
        }

        .lang-container {
            position: relative;
            margin-left: -0.15rem;
            z-index: 50;
        }

        .lang-btn {
            background: rgba(255, 255, 255, 0.72);
            border: none;
            cursor: pointer;
            padding: 0.56rem 0.7rem 0.56rem 0.82rem;
            min-width: 66px;
            min-height: 40px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.42rem;
            border-radius: 0;
            color: var(--text-primary, var(--ink));
            opacity: 1;
            transition: background 0.3s var(--transition, var(--r)), border-color 0.3s var(--transition, var(--r)), box-shadow 0.3s var(--transition, var(--r)), transform 0.3s var(--transition, var(--r));
            font-family: 'Syne', sans-serif;
            font-size: 0.68rem;
            font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
        }

        .lang-btn:hover,
        .lang-container.is-open .lang-btn {
            background: rgba(255, 255, 255, 0.96);
            border-color: rgba(197, 160, 101, 0.48);
            box-shadow: 0 14px 32px rgba(26, 46, 40, 0.1);
            transform: translateY(-1px);
        }

        .lang-btn__code {
            line-height: 1;
            opacity: 0.75;
            transition: opacity 0.3s var(--transition, var(--r));
        }

        .lang-btn__chevron {
            color: currentColor;
            font-size: 0.64rem;
            opacity: 0.75;
            transition: transform 0.3s var(--transition, var(--r)), opacity 0.3s var(--transition, var(--r));
        }

        .lang-btn:hover .lang-btn__code,
        .lang-btn:hover .lang-btn__chevron,
        .lang-container.is-open .lang-btn__code,
        .lang-container.is-open .lang-btn__chevron {
            opacity: 1;
        }

        .lang-container.is-open .lang-btn__chevron {
            transform: rotate(180deg);
        }

        .lang-dropdown {
            position: absolute;
            top: calc(100% + 0.7rem);
            right: 0;
            width: 240px;
            background: rgba(255, 255, 255, 0.97);
            -webkit-backdrop-filter: blur(18px);
            backdrop-filter: blur(18px);
            padding: 0.85rem;
            border-radius: 0;
            box-shadow: 0 22px 46px rgba(26, 46, 40, 0.14);
            display: grid;
            gap: 0.45rem;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transform: translateY(-8px) scale(0.98);
            transform-origin: top right;
            transition: opacity 0.25s var(--transition, var(--r)), transform 0.25s var(--transition, var(--r)), visibility 0.25s;
            border: 1px solid rgba(26, 46, 40, 0.08);
        }

        .lang-dropdown::before {
            content: '';
            position: absolute;
            top: -6px;
            right: 20px;
            width: 10px;
            height: 10px;
            background: rgba(255, 255, 255, 0.97);
            border-left: 1px solid rgba(26, 46, 40, 0.08);
            border-top: 1px solid rgba(26, 46, 40, 0.08);
            transform: rotate(45deg);
        }

        .lang-dropdown.active {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            transform: translateY(0) scale(1);
        }

        .lang-dropdown__label {
            font-family: 'Syne', sans-serif;
            font-size: 0.58rem;
            font-weight: 700;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--text-secondary, var(--text-muted));
            padding: 0 0.2rem 0.25rem;
        }

        .lang-option {
            width: 100%;
            border: 1px solid transparent;
            background: transparent;
            padding: 0.62rem;
            border-radius: 0;
            display: grid;
            grid-template-columns: auto 1fr auto;
            align-items: center;
            gap: 0.65rem;
            color: var(--text-primary, var(--ink));
            cursor: pointer;
            text-align: left;
            transition: background 0.24s var(--transition, var(--r)), border-color 0.24s var(--transition, var(--r)), transform 0.24s var(--transition, var(--r));
            font-family: inherit;
        }

        .lang-option:hover,
        .lang-option:focus-visible {
            background: rgba(197, 160, 101, 0.1);
            border-color: rgba(197, 160, 101, 0.24);
            transform: translateX(2px);
            outline: none;
        }

        .lang-option.active {
            background: rgba(197, 160, 101, 0.14);
            border-color: rgba(197, 160, 101, 0.3);
        }

        .lang-option__badge {
            width: 38px;
            height: 24px;
            border-radius: 0;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 3px;
            background: rgba(255, 255, 255, 0.82);
            border: 1px solid rgba(26, 46, 40, 0.1);
            overflow: hidden;
            box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55);
        }

        .lang-option__badge img {
            width: 100%;
            height: 100%;
            border-radius: 0;
            display: block;
            object-fit: cover;
        }

        .lang-option.active .lang-option__badge {
            background: rgba(197, 160, 101, 0.22);
            border-color: rgba(197, 160, 101, 0.44);
            box-shadow: 0 8px 18px rgba(26, 46, 40, 0.1);
        }

        .lang-option__copy {
            display: grid;
            gap: 0.18rem;
        }

        .lang-option__name {
            font-family: 'Syne', sans-serif;
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 0.04em;
        }

        .lang-option__meta {
            font-size: 0.72rem;
            color: var(--text-secondary, var(--text-muted));
        }

        .lang-option__check {
            color: var(--accent-gold, var(--gold));
            font-size: 0.75rem;
            opacity: 0;
            transform: scale(0.7);
            transition: opacity 0.2s ease, transform 0.2s ease;
        }

        .lang-option.active .lang-option__check {
            opacity: 1;
            transform: scale(1);
        }

        .lang-btn img {
            display: none;

        }

        /* --- HERO --- */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 5rem;
            position: relative;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1.1fr 1fr;
            gap: 5rem;
            align-items: center;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            padding-right: 2rem;
        }

        .hero-content p {
            font-size: 1.15rem;
            color: var(--text-secondary);
            margin: 2rem 0 3rem;
            max-width: 550px;
            line-height: 1.7;
        }

        .hero-kicker {
            margin: 0 0 2.25rem;
            gap: 0.95rem;
            color: var(--accent-gold);
        }

        .hero-kicker span {
            display: inline-flex;
            align-items: center;
            gap: 0.95rem;
        }

        .hero-kicker span+span::before {
            content: '';
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background: currentColor;
            opacity: 0.85;
        }

        .hero-eyebrow {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .hero-eyebrow-line {
            display: none;
        }

        .eyebrow {
            font-family: 'Syne', sans-serif;
            font-size: 0.68rem;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            color: var(--text-secondary);
        }

        .typed-wrap {
            display: inline;
            font-style: italic;
            color: var(--accent-gold);
        }

        .typed-cursor {
            display: inline-block;
            width: 2px;
            height: 0.85em;
            background: var(--accent-gold);
            margin-left: 2px;
            vertical-align: bottom;
            animation: blink 0.7s step-end infinite;
        }

        @keyframes blink {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: 0;
            }
        }

        .hero-actions {
            display: flex;
            align-items: center;
            gap: clamp(1.2rem, 2.5vw, 1.75rem);
            flex-wrap: nowrap;
        }

        .hero-action-primary {
            flex: 0 0 auto;
            min-height: 48px;
            padding: 0.8rem 1.8rem;
            gap: 0.8rem;
            background: linear-gradient(135deg, var(--accent-gold) 0%, #b8935a 100%);
            color: #fff;
            font-size: 0.8rem;
            letter-spacing: 0.14em;
            white-space: nowrap;
            box-shadow: 0 12px 30px rgba(197, 160, 101, 0.35);
            transition: color 0.35s var(--transition), transform 0.35s var(--transition), box-shadow 0.35s var(--transition);
        }

        .hero-action-primary::before {
            width: 100%;
            background: linear-gradient(120deg, transparent 0%, transparent 34%, rgba(255, 255, 255, 0.22) 46%, transparent 58%, transparent 100%);
            transform: translateX(-135%);
            transition: transform 0.7s var(--transition);
            z-index: 0;
        }

        .hero-action-primary span,
        .hero-action-primary i {
            position: relative;
            z-index: 1;
        }

        .hero-action-primary:hover::before,
        .hero-action-primary:focus-visible::before {
            transform: translateX(135%);
        }

        .hero-action-primary:hover,
        .hero-action-primary:focus-visible {
            color: #fff !important;
            transform: translateY(-2px);
            box-shadow: 0 20px 40px rgba(197, 160, 101, 0.45);
            outline: none;
        }

        .hero-action-secondary {
            flex: 0 0 auto;
            min-height: 48px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            padding: 0.8rem 0;
            color: var(--text-secondary);
            font-family: 'Syne', 'Plus Jakarta Sans', sans-serif;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            white-space: nowrap;
            position: relative;
        }

        .hero-action-secondary::after {
            content: '';
            position: absolute;
            left: 0;
            right: 1.4rem;
            bottom: 0.75rem;
            height: 1px;
            background: rgba(197, 160, 101, 0.45);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.35s var(--transition);
        }

        .hero-action-secondary:hover,
        .hero-action-secondary:focus-visible {
            color: var(--text-primary);
            outline: none;
        }

        .hero-action-secondary:hover::after,
        .hero-action-secondary:focus-visible::after {
            transform: scaleX(1);
        }

        .hero-image-container {
            position: relative;
        }

        .hero-img-main {
            width: 100%;
            height: 75vh;
            object-fit: cover;
            border-radius: 200px 200px 0 0;
            filter: sepia(10%) contrast(1.05);
            box-shadow: var(--shadow-soft);
        }

        .hero-decoration {
            position: absolute;
            bottom: 2.4rem;
            right: -2.3rem;
            z-index: 3;
            width: min(430px, calc(100% + 1.25rem));
            color: var(--text-primary);
            background: rgba(249, 248, 246, 0.94);
            border-left: 3px solid var(--accent-gold);
            border-top: 1px solid rgba(197, 160, 101, 0.22);
            border-bottom: 1px solid rgba(10, 26, 20, 0.08);
            border-radius: 0;
            box-shadow: 0 28px 60px rgba(10, 26, 20, 0.18);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            overflow: hidden;
            transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1),
                background 0.5s ease;
        }

        .hero-decoration::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, var(--accent-gold), transparent 70%);
            opacity: 0.75;
        }

        .hero-decoration:hover {
            background: rgba(255, 255, 255, 0.97);
            transform: translateY(-5px);
            box-shadow: 0 34px 70px rgba(10, 26, 20, 0.23);
        }

        .hero-decoration-accent {
            display: none;
        }

        .hero-decoration-inner {
            padding: 1.18rem 1.35rem 1.12rem;
            display: grid;
            grid-template-columns: 58px minmax(0, 1fr);
            align-items: flex-start;
            gap: 1rem;
            text-align: left;
        }

        .hero-emblem-container {
            width: 58px;
            height: 58px;
            border-radius: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .hero-emblem {
            width: 40px;
            height: 40px;
            object-fit: contain;
            filter: drop-shadow(0 4px 10px rgba(197, 160, 101, 0.24));
        }

        .hero-emblem-icon {
            color: var(--accent-gold);
            font-size: 1.35rem;
            line-height: 1;
        }

        .hero-decoration-text {
            display: flex;
            flex-direction: column;
            min-width: 0;
            gap: 0.42rem;
        }

        .hero-decoration h4 {
            margin: 0;
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.52rem;
            font-weight: 400;
            letter-spacing: 0;
            color: var(--text-primary);
            line-height: 0.98;
            white-space: nowrap;
        }

        .hero-decoration-role {
            display: inline-flex;
            align-items: center;
            margin: 0 0 0.05rem;
            padding: 0;
            font-size: 0.56rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.18em;
            color: var(--accent-gold);
            background: transparent;
            border: none;
            border-radius: 0;
            font-family: 'Syne', sans-serif;
            width: fit-content;
        }

        .hero-decoration p {
            font-size: 0.78rem;
            color: var(--text-secondary);
            margin: 0;
            line-height: 1.48;
            max-width: 19.5rem;
            font-weight: 400;
            letter-spacing: 0;
        }

        /* --- ROLES --- */
        .roles-marquee-wrap {
            overflow: hidden;
            border-top: 1px solid rgba(197, 160, 101, 0.25);
            border-bottom: 1px solid rgba(197, 160, 101, 0.25);
            padding: 1.5rem 0;
            background: #FAF8F4;
            white-space: nowrap;
            position: relative;
            display: flex;
        }

        .roles-marquee-wrap::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to right, #FAF8F4 0%, transparent 6%, transparent 94%, #FAF8F4 100%);
            pointer-events: none;
            z-index: 5;
        }

        .roles-marquee-track {
            display: flex;
            width: max-content;
            gap: 4rem;
            align-items: center;
            padding-right: 4rem;
            /* padding equal to gap for seamless loop */
            animation: marqueeScroll 45s linear infinite;
        }

        .roles-marquee-track:hover {
            animation-play-state: paused;
        }

        .roles-marquee-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            transition: transform 0.4s var(--transition);
        }

        .roles-marquee-item:hover {
            transform: scale(1.03);
        }

        .roles-marquee-item h3,
        .roles-marquee-item .marquee-role-label {
            font-size: 1.4rem;
            font-family: 'Cormorant Garamond', serif;
            font-style: italic;
            color: var(--text-primary);
            font-weight: 300;
            margin: 0 0 0.3rem 0;
            letter-spacing: 0.03em;
            display: block;
        }

        .roles-marquee-item .role-link {
            font-size: 0.65rem;
            text-transform: uppercase;
            letter-spacing: 0.25em;
            color: var(--accent-gold);
            font-weight: 600;
            font-family: 'Syne', sans-serif;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            text-decoration: none;
            transition: all 0.3s;
            opacity: 0.85;
        }

        .roles-marquee-item .role-link i {
            font-size: 0.55rem;
            transition: transform 0.3s;
        }

        .roles-marquee-item .role-link:hover {
            color: var(--text-primary);
            opacity: 1;
        }

        .roles-marquee-item .role-link:hover i {
            transform: translate(2px, -2px);
        }

        .roles-marquee-dot {
            width: 4px;
            height: 4px;
            background: var(--accent-gold);
            border-radius: 50%;
            opacity: 0.5;
            box-shadow: 0 0 8px rgba(197, 160, 101, 0.3);
        }

        @keyframes marqueeScroll {
            from {
                transform: translateX(0);
            }

            to {
                transform: translateX(-50%);
            }
        }

        /* --- ABOUT NEW --- */
        .about-section-new {
            background-color: var(--bg-paper);
            padding: 8rem 0;
            overflow: hidden;
        }

        @media (max-width: 768px) {
            .about-section-new {
                background-color: var(--bg-paper);
                padding: 2rem 0;
                overflow: hidden;
            }
        }

        .about-grid-new {
            display: grid;
            grid-template-columns: 1.1fr 1fr;
            gap: 5rem;
            align-items: center;
        }

        .about-content-new {
            padding-left: 2rem;
        }

        .about-bio-new {
            margin-bottom: 3rem;
        }

        .about-bio-new p {
            font-size: 0.95rem;
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .about-bio-new strong {
            color: #5e6d67;
            font-weight: 600;
        }

        .about-values-new {
            counter-reset: aboutValue;
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: clamp(0.9rem, 1.7vw, 1.15rem);
            margin-top: clamp(2rem, 4vw, 2.85rem);
            border: 0;
            background: transparent;
        }

        .value-card-new {
            counter-increment: aboutValue;
            position: relative;
            min-height: 168px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            gap: 1.15rem;
            padding: clamp(1.35rem, 2.5vw, 1.8rem);
            background: rgba(255, 255, 255, 0.72);
            border: none;
            box-shadow: 0 16px 38px rgba(26, 46, 40, 0.06);
            overflow: hidden;
            isolation: isolate;
            transition: background 0.35s var(--transition), box-shadow 0.35s ease, transform 0.35s var(--transition);
        }

        .value-card-new:last-child {
            border: none;
        }

        .value-card-new::before {
            content: "0" counter(aboutValue);
            font-family: 'Syne', sans-serif;
            font-size: 0.62rem;
            font-weight: 700;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--accent-gold);
            line-height: 1;
        }

        .value-card-new:hover {
            transform: translateY(-2px);
            background: rgba(255, 255, 255, 0.86);
            box-shadow: 0 20px 46px rgba(26, 46, 40, 0.08);
        }

        .vcn-icon-wrap {
            position: absolute;
            top: clamp(1.1rem, 2vw, 1.45rem);
            right: clamp(1.1rem, 2vw, 1.45rem);
            width: 42px;
            height: 42px;
            border-radius: 20px;
            background: rgba(197, 160, 101, 0.09);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s var(--transition);
        }

        .value-card-new:hover .vcn-icon-wrap {
            background: rgba(197, 160, 101, 0.14);
            border-color: var(--accent-gold);
            transform: translateY(-2px) rotate(-3deg);
        }

        .vcn-icon-wrap i {
            font-size: 0.9rem;
            color: var(--accent-gold);
        }

        .vcn-body {
            padding-top: 1.55rem;
        }

        .vcn-body h4 {
            font-size: 20px;
            font-family: 'Cormorant Garamond', serif;
            font-weight: 400;
            letter-spacing: 0;
            text-transform: none;
            color: var(--text-primary);
            margin: 0 0 0.5rem;
            line-height: 1.02;
        }

        .vcn-body p {
            max-width: 20rem;
            font-size: 0.86rem;
            color: var(--text-secondary);
            margin: 0;
            line-height: 1.55;
            font-family: 'Cormorant Garamond';
        }

        /* --- ABOUT QUOTE BLOCK --- */
        .about-quote-block {
            margin-bottom: 2rem;
            padding: 1.6rem 0 1.2rem;
            border-top: 1px solid rgba(197, 160, 101, 0.18);
            border-bottom: 1px solid rgba(197, 160, 101, 0.18);
        }

        .aqb-ornament {
            display: flex;
            justify-content: flex-start;
            line-height: 0;
            margin-bottom: 1.2rem;
        }

        .aqb-quote {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(1.25rem, 2vw, 1.6rem);
            font-weight: 300;
            line-height: 1.5;
            color: var(--text-primary);
            margin: 0 0 0.85rem;
            padding: 0;
            border: none;
            position: relative;
        }

        .aqb-quotemark {
            font-size: 3.5rem;
            line-height: 0;
            vertical-align: -0.55em;
            color: var(--accent-gold);
            font-family: 'Cormorant Garamond', serif;
            margin-right: 0.1em;
            opacity: 0.7;
        }

        .aqb-quote em {
            font-style: italic;
            color: var(--accent-gold);
        }

        .aqb-attribution {
            font-family: 'Syne', sans-serif;
            font-size: 0.62rem;
            font-weight: 600;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: rgba(100, 115, 110, 0.65);
            margin: 0;
        }

        .about-visuals-new {
            position: relative;
            height: 700px;
        }

        .image-wrapper-main {
            position: absolute;
            top: 0;
            left: 0;
            bottom: auto;
            right: auto;
            width: 80%;
            height: 100%;
            border-radius: 0px;
            overflow: hidden;
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
        }

        .image-wrapper-main::after {
            content: '';
            position: absolute;
            inset: 0;
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 0px;
            pointer-events: none;
            z-index: 2;
        }

        .image-wrapper-main img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: sepia(5%) contrast(1.05);
            transition: transform 0.7s ease;
        }

        .about-visuals-new:hover .image-wrapper-main img {
            transform: scale(1.03);
        }

        .image-wrapper-sub {
            position: absolute;
            bottom: 5%;
            right: 0;
            top: auto;
            left: auto;
            width: 320px;
            height: 320px;
            border-radius: 50%;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
            border: 0px solid var(--bg-paper);
            z-index: 3;
            animation: floatSubImage 6s ease-in-out infinite;
        }

        .image-wrapper-sub img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        @keyframes floatSubImage {
            0% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-15px);
            }

            100% {
                transform: translateY(0px);
            }
        }

        .quote-card-new {
            position: relative;
            background: var(--bg-paper);
            padding: 1.5rem 2rem;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(0, 0, 0, 0.03);
            border-left: 4px solid var(--accent-gold);
            width: 100%;
            margin-bottom: 2rem;
            overflow: hidden;
        }

        .quote-card-new::before {
            content: '”';
            position: absolute;
            top: -10px;
            left: 20px;
            font-size: 6rem;
            color: var(--accent-gold);
            opacity: 0.1;
            font-family: 'Cormorant Garamond', serif;
            pointer-events: none;
            line-height: 1;
        }

        .quote-card-new p {
            position: relative;
            z-index: 1;
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.2rem;
            font-style: italic;
            color: var(--text-primary);
            margin: 0;
            line-height: 1.5;
        }

        /* --- MODERN TIMELINE STYLES --- */
        .modern-timeline {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
            padding: 2rem 0;
        }

        .timeline-line {
            position: absolute;
            top: 0;
            left: 50%;
            width: 1px;
            height: 100%;
            background: rgba(197, 160, 101, 0.4);
            transform: translateX(-50%);
            z-index: 1;
        }

        /* Specific override to prevent animations system from breaking centering */
        .timeline-line.reveal.active {
            transform: translateX(-50%) scale(1);
        }

        .timeline-item {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 4rem;
            position: relative;
            width: 100%;
        }

        /* Dots Styling */
        .timeline-dot-wrapper {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            z-index: 3;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Specific override to prevent animations system from breaking centering */
        .timeline-dot-wrapper.reveal.active {
            transform: translate(-50%, -50%) scale(1);
        }

        .timeline-dot-core {
            width: 12px;
            height: 12px;
            background: var(--accent-gold);
            border-radius: 50%;
            z-index: 2;
            box-shadow: 0 0 0 4px rgba(197, 160, 101, 0.2);
            transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
        }

        /* Hover effect - scale up and increase gold shadow when hovering over timeline item */
        .timeline-item:hover .timeline-dot-core {
            transform: scale(1.3);
            box-shadow: 0 0 0 6px rgba(197, 160, 101, 0.35);
        }

        .timeline-dot-pulse {
            position: absolute;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: rgba(197, 160, 101, 0.15);
            z-index: 1;
            animation: pulse-dot 2.5s infinite ease-in-out;
            pointer-events: none;
        }

        .timeline-item:hover .timeline-dot-pulse {
            animation: pulse-dot 1.2s infinite ease-in-out;
            background: rgba(197, 160, 101, 0.25);
        }

        @keyframes pulse-dot {
            0% {
                transform: scale(0.6);
                opacity: 0.3;
            }

            50% {
                transform: scale(1.2);
                opacity: 0.9;
            }

            100% {
                transform: scale(0.6);
                opacity: 0.3;
            }
        }

        /* Glass Card Styling - Premium Redesign */
        .glass-card {
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(197, 160, 101, 0.3);
            box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.08);
            padding: 2.5rem;
            border-radius: 0;
            /* Usunięty border-radius zgodnie z życzeniem */
            transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
            width: 40%;
            position: relative;
            z-index: 2;
            overflow: visible;
        }

        .timeline-stage-image {
            display: block;
            width: calc(100% + 5rem);
            max-width: none;
            height: 180px;
            margin: -2.5rem -2.5rem 2rem -2.5rem;
            object-fit: cover;
            z-index: 1;
            transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
            border-bottom: 2px solid var(--accent-gold);
        }

        .timeline-content>* {
            position: relative;
            z-index: 2;
        }

        .glass-card:hover .timeline-stage-image {
            transform: scale(1.05);
        }

        .glass-card:hover {
            background: rgba(255, 255, 255, 0.9);
            transform: translateY(-5px);
            box-shadow: 0 20px 50px -15px rgba(197, 160, 101, 0.15);
        }

        .timeline-content {
            display: flex;
            flex-direction: column;
        }

        /* Alternating Layout */
        .timeline-item:nth-child(odd) {
            flex-direction: row-reverse;
        }

        .timeline-item:nth-child(odd) .timeline-content {
            margin-left: auto;
            text-align: left;
        }

        /* Connecting Line Horizontal - Odd (Card is on the RIGHT, line should be on LEFT pointing to center) */
        .timeline-item:nth-child(odd) .glass-card::before {
            content: '';
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            left: -25%;
            width: 25%;
            height: 1px;
            background: rgba(197, 160, 101, 0.6);
        }

        .timeline-item:nth-child(even) {
            flex-direction: row;
        }

        .timeline-item:nth-child(even) .timeline-content {
            margin-right: auto;
            text-align: right;
        }

        /* Connecting Line Horizontal - Even (Card is on the LEFT, line should be on RIGHT pointing to center) */
        .timeline-item:nth-child(even) .glass-card::before {
            content: '';
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            right: -25%;
            width: 25%;
            height: 1px;
            background: rgba(197, 160, 101, 0.6);
        }

        /* Content Typography */
        .timeline-year {
            font-family: 'Cormorant Garamond', serif;
            font-style: italic;
            color: var(--accent-gold);
            font-size: 1.25rem;
            margin-bottom: 0.5rem;
            display: block;
        }

        .timeline-role {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 600;
            font-size: 1.8rem;
            color: var(--text-primary);
            margin-bottom: 0.3rem;
            line-height: 1.1;
        }

        .timeline-org {
            font-family: 'Syne', sans-serif;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: var(--accent-sage);
            font-weight: 700;
            margin-bottom: 1.2rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid rgba(141, 163, 153, 0.2);
        }

        .timeline-desc {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
            margin: 0;
            font-weight: 300;
        }

        /* --- BEEHOUSES FOUNDATION STYLES --- */

        /* ─── FOUNDATION SECTION — PREMIUM REDESIGN ─── */
        .foundation-section {
            --found-gold: #C8A96E;
            --found-gold-pale: rgba(200, 169, 110, 0.12);
            background: #ffffff;
            color: var(--text-primary);
            position: relative;
            overflow: hidden;
            cursor: none;
            padding: 9rem 0;
        }

        .foundation-section * {
            cursor: none;
        }

        .foundation-section a {
            cursor: none;
        }

        /* Refined background texture — very faint honeycomb */
        .found-bg-img {
            position: absolute;
            inset: 0;
            background: url('https://www.beehouses.org/bento_beehive.png') center / cover no-repeat;
            opacity: 0.055;
            -webkit-mask-image: linear-gradient(90deg,
                    transparent 0%,
                    transparent 48%,
                    rgba(0, 0, 0, 0.18) 56%,
                    rgba(0, 0, 0, 0.72) 68%,
                    #000 100%);
            mask-image: linear-gradient(90deg,
                    transparent 0%,
                    transparent 48%,
                    rgba(0, 0, 0, 0.18) 56%,
                    rgba(0, 0, 0, 0.72) 68%,
                    #000 100%);
            pointer-events: none;
        }

        /* Warm radial glow top-right */
        .found-bg-glow {
            position: absolute;
            top: -15%;
            right: -8%;
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, rgba(200, 169, 110, .09) 0%, transparent 68%);
            pointer-events: none;
        }

        /* Second ambient glow bottom-left */
        .found-bg-glow::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(200, 169, 110, .05) 0%, transparent 70%);
        }

        /* ── Section header ── */
        .found-section-header {
            text-align: center;
            margin-bottom: 6rem;
            position: relative;
            z-index: 1;
        }

        .found-section-eyebrow {
            font-family: 'Syne', sans-serif;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.28em;
            text-transform: uppercase;
            color: var(--found-gold);
            display: block;
            margin-bottom: 1.25rem;
        }

        .found-section-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2.6rem, 4.5vw, 4.2rem);
            font-weight: 300;
            letter-spacing: -0.01em;
            line-height: 1.05;
            color: var(--text-primary);
            margin: 0 0 2rem;
        }

        /* Thin decorative gold rule under title */
        .found-section-rule {
            display: none;
        }

        .found-section-rule::before,
        .found-section-rule::after {
            content: '';
            display: block;
            width: 60px;
            height: 1px;
            background: linear-gradient(to right, transparent, var(--found-gold));
        }

        .found-section-rule::after {
            background: linear-gradient(to left, transparent, var(--found-gold));
        }

        .found-section-rule-dot {
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: var(--found-gold);
            opacity: .7;
        }

        .found-section-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-family: 'Syne', sans-serif;
            font-size: 0.72rem;
            font-weight: 600;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--found-gold);
            text-decoration: none;
            transition: color 0.35s;
            padding-bottom: 2px;
            border-bottom: 1px solid rgba(200, 169, 110, 0.4);
        }

        .found-section-link:hover {
            color: var(--found-gold);
        }

        /* ── Two-column grid ── */
        .found-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: start;
            position: relative;
            z-index: 1;
        }

        /* ── Left column ── */
        .found-logo {
            width: 72px;
            opacity: .85;
            margin-bottom: 2.5rem;
            display: block;
        }

        .found-tagline {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2.4rem, 3.8vw, 3.6rem);
            font-weight: 300;
            line-height: 1.1;
            margin: 0 0 2rem;
            letter-spacing: -0.01em;
            color: var(--text-primary);
        }

        .found-tagline em {
            font-style: italic;
            color: var(--found-gold);
        }

        .found-desc {
            font-size: 1rem;
            color: var(--text-secondary);
            line-height: 1.85;
            margin-bottom: 3rem;
            max-width: 100%;
            font-family: 'Cormorant Garamond';
        }

        /* Formal data table */
        .found-data {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            border-top: 1px solid rgba(26, 46, 40, .07);
        }

        .found-data-item {
            padding: 1.25rem 0;
            border-bottom: 1px solid rgba(26, 46, 40, .07);
        }

        .found-data-item:nth-child(odd) {
            padding-right: 1.5rem;
            border-right: 1px solid rgba(26, 46, 40, .07);
        }

        .found-data-item:nth-child(even) {
            padding-left: 1.5rem;
        }

        .found-data-item h5 {
            font-family: 'Syne', sans-serif;
            font-size: .6rem;
            letter-spacing: .22em;
            text-transform: uppercase;
            color: var(--found-gold);
            margin-bottom: .45rem;
            font-weight: 700;
        }

        .found-data-item p {
            font-size: 12px;
            color: #545454;
            font-weight: 500;
            letter-spacing: .01em;
        }

        /* ── Right column — cards ── */
        .found-cards {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .found-card {
            padding: 2.2rem 3rem;
            background: rgba(255, 255, 255, 0.5);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(26, 46, 40, 0.04);
            border-radius: 0px;
            box-shadow: 0 10px 30px -5px rgba(26, 46, 40, 0.03);
            transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
            overflow: hidden;
        }

        /* Gold left accent that slides in */
        .found-card::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background: var(--found-gold);
            transform: scaleY(0);
            transform-origin: top;
            transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
            border-radius: 0;
        }

        .found-card:hover {
            background: rgba(255, 255, 255, 0.9);
            transform: translateY(-5px);
            box-shadow: 0 15px 40px -10px rgba(26, 46, 40, 0.08);
            border-color: rgba(200, 169, 110, 0.2);
            padding-left: 3.5rem;
        }

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

        /* Small number index */
        .found-card-num {
            font-family: 'Syne', sans-serif;
            font-size: 0.8rem;
            font-weight: 700;
            color: var(--found-gold);
            opacity: 0.9;
            display: block;
            margin-bottom: 0.8rem;
            letter-spacing: 0.1em;
        }

        .found-card h4 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            font-weight: 500;
            margin-bottom: 0.6rem;
            color: var(--text-primary);
            letter-spacing: -0.01em;
        }

        .found-card p {
            font-size: 0.92rem;
            color: var(--text-secondary);
            line-height: 1.75;
            margin: 0;
            font-family: 'Cormorant Garamond';
        }

        /* ── Responsive ── */
        @media (max-width: 1024px) {
            .found-grid {
                grid-template-columns: 1fr;
                gap: 4rem;
            }
        }

        /* --- NEWS --- NEWS LAYOUT --- */

        /* --- NEWS TABS --- */
        .news-layout {
            display: grid;
            gap: 2rem;
        }

        .news-main {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
        }

        .news-left {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .news-left .post {
            height: auto;
        }

        .news-grid .post {
            height: auto;
        }

        .post {
            background: white;
            border: 1px solid rgba(0, 0, 0, 0.05);
            transition: transform 0.4s, box-shadow 0.4s;
            display: flex;
            flex-direction: column;
        }

        .post:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-soft);
        }

        .post-img {
            overflow: hidden;
            position: relative;
        }

        .post-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s;
        }

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

        .post-content {
            padding: 1.5rem 2rem;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .post-meta {
            display: flex;
            gap: 1rem;
            font-size: 0.75rem;
            color: var(--text-secondary);
            margin-bottom: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .post-category {
            color: var(--accent-gold);
            font-weight: 600;
        }

        .post h3 {
            font-size: 1.7rem;
            font-weight: 500;
            margin-bottom: 1rem;
            line-height: 1.4;
            max-width: 100%;
        }

        .post h3 a:hover {
            color: var(--accent-gold);
        }

        .post p {
            font-size: 0.95rem;
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .read-more {
            margin-top: auto;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--text-primary);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .read-more:hover {
            color: var(--accent-gold);
            gap: 0.8rem;
        }

        .post.featured {
            border: none;
            box-shadow: var(--shadow-soft);
        }

        .post.featured .post-img {
            height: 200px;
        }

        .post.featured h3 {
            font-size: 1.7rem;
            font-weight: 500;
            min-height: 3.2rem;
            line-height: 1.4;
            max-width: 100%;
        }

        .post.featured p {
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            min-height: 4.5rem;
        }

        .news-grid {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        /* Szablon 1: Obraz po lewej, tekst po prawej */
        .post.template-left-image {
            flex-direction: row;
            align-items: center;
            min-height: 180px;
        }

        .post.template-left-image .post-img {
            width: 35%;
            height: 100%;
            flex-shrink: 0;
        }

        .post.template-left-image .post-content {
            padding: 1.5rem;
            width: 65%;
        }

        .post.template-left-image h3 {
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }

        .post.template-left-image p {
            display: none;
        }

        /* Szablon 2: Obraz po prawej, tekst po lewej */
        .post.template-right-image {
            flex-direction: row-reverse;
            align-items: center;
            min-height: 180px;
        }

        .post.template-right-image .post-img {
            width: 35%;
            height: 100%;
            flex-shrink: 0;
        }

        .post.template-right-image .post-content {
            padding: 1.5rem;
            width: 65%;
        }

        .post.template-right-image h3 {
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }

        .post.template-right-image p {
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            margin-bottom: 1rem;
        }

        /* Szablon 3: Obraz na górze, tekst na dole (klasyczny wertykalny) */
        .post.template-vertical {
            flex-direction: column;
        }

        .post.template-vertical .post-img {
            width: 100%;
            height: 200px;
            flex-shrink: 0;
        }

        .post.template-vertical .post-content {
            padding: 1.5rem 2rem;
            width: 100%;
            display: flex;
            flex-direction: column;
        }

        .post.template-vertical h3 {
            font-size: 1.7rem;
            font-weight: 500;
            margin-bottom: 0.8rem;
            line-height: 1.4;
            min-height: 3.2rem;
            max-width: 100%;
        }

        .post.template-vertical p {
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            margin-bottom: 1rem;
            min-height: 4.5rem;
        }

        .post.template-vertical .read-more {
            margin-top: auto;
        }

        /* Szablon 4: Minimalistyczny - bez obrazu, tylko tekst */
        .post.template-minimal {
            padding: 2rem;
            border-left: 4px solid var(--accent-gold);
        }

        .post.template-minimal .post-img {
            display: none;
        }

        .post.template-minimal .post-content {
            padding: 0;
            width: 100%;
        }

        .post.template-minimal h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
        }

        .post.template-minimal p {
            display: -webkit-box;
            -webkit-line-clamp: 4;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        /* Szablon 5: Obraz jako tło z overlay */
        .post.template-overlay {
            position: relative;
            min-height: 280px;
            overflow: hidden;
        }

        .post.template-overlay .post-img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .post.template-overlay .post-img::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
            z-index: 2;
        }

        .post.template-overlay .post-img img {
            height: 100%;
            object-fit: cover;
        }

        .post.template-overlay .post-content {
            position: relative;
            z-index: 3;
            padding: 2rem;
            color: white;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
        }

        .post.template-overlay .post-meta {
            color: rgba(255, 255, 255, 0.9);
        }

        .post.template-overlay .post-category {
            color: var(--accent-gold);
        }

        .post.template-overlay h3 {
            color: white;
            font-size: 1.4rem;
            margin-bottom: 0.8rem;
        }

        .post.template-overlay h3 a {
            color: white;
        }

        .post.template-overlay p {
            color: rgba(255, 255, 255, 0.95);
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .post.template-overlay .read-more {
            color: white;
        }

        .post.template-overlay .read-more:hover {
            color: var(--accent-gold);
        }

        /* Zachowanie kompatybilności wstecznej */
        .post.card {
            flex-direction: row;
            align-items: center;
            min-height: 180px;
        }

        .post.card .post-img {
            width: 35%;
            height: 100%;
            flex-shrink: 0;
        }

        .post.card .post-content {
            padding: 1.5rem;
            width: 65%;
        }

        .post.card h3 {
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }

        .post.card p {
            display: none;
        }

        .post.card .read-more {
            margin-top: 1rem;
        }

        .dark-sections-wrapper {
            background: none;
            color: white;
            position: relative;
            overflow: hidden;
        }

        /* warstwa tła — identyczna jak .manifesto-bg */
        .dark-sections-wrapper::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url('/images/LWGQw9V.webp') center/cover;
            transform: scale(1.15);
            filter: brightness(.25) saturate(.6);
            will-change: transform;
            z-index: 0;
        }

        /* warstwa overlay — identyczna jak .manifesto-overlay */
        .dark-sections-wrapper::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg,
                    rgba(10, 26, 20, 0.92) 0%,
                    rgba(10, 26, 20, 0.75) 50%,
                    rgba(10, 26, 20, 0.88) 100%);
            z-index: 1;
        }

        .campaign-section {
            padding: 5rem 0 0 0;
            /* Zmniejszona odległość z 8rem na 5rem */
            text-align: center;
            position: relative;
            z-index: 2;
            background: none;
            /* USUWAMY TŁO STĄD */
        }

        .insta-section {
            padding-bottom: 8rem;
            position: relative;
            padding-top: 0;
            /* Usunięto górny padding (z 2rem na 0) */
            z-index: 2;
            background: none;
            /* Upewniamy się, że tu też nie ma tła */
        }


        /* ADDED GRAIN TO DARK SECTIONS */
        /* Noise removed */

        .campaign-section {
            padding: 5rem 0 0 0;
            /* Zmniejszona odległość */
            text-align: center;
            position: relative;
            z-index: 2;
            background-position: center;
        }

        .campaign-bg-deco {
            display: none;
        }

        /* UPDATED NEWSLETTER STYLES - MINIMALIST */
        .newsletter-form-container {
            max-width: 500px;
            margin: 3rem auto 0;
            position: relative;
            z-index: 2;
        }

        .newsletter-wrapper {
            display: flex;
            align-items: center;
            background: transparent;
            border: none;
            border-bottom: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 0;
            padding: 0;
            transition: all 0.3s ease;
        }

        .newsletter-wrapper:focus-within {
            border-bottom-color: var(--accent-gold);
            background: transparent;
            box-shadow: none;
        }

        .newsletter-input {
            flex: 1;
            background: transparent;
            border: none;
            color: white;
            font-size: 1.1rem;
            padding: 1rem 0;
            outline: none;
            font-family: 'Plus Jakarta Sans', sans-serif;
            text-align: left;
        }

        .newsletter-input::placeholder {
            color: rgba(255, 255, 255, 0.5);
            font-weight: 300;
        }

        .newsletter-btn {
            background: transparent;
            border: none;
            color: var(--accent-gold);
            font-weight: 600;
            text-transform: uppercase;
            cursor: pointer;
            padding: 1rem 0 1rem 1.5rem;
            border-radius: 0;
            font-size: 0.9rem;
            letter-spacing: 2px;
            transition: all 0.3s;
        }

        .newsletter-btn:hover {
            color: white;
            transform: translateX(5px);
            box-shadow: none;
            background: transparent;
        }


        /* ── POLLEN PARTICLES ── */
        .pollen-particle {
            position: fixed;
            border-radius: 50%;
            pointer-events: none;
            z-index: 99998;
            background: radial-gradient(circle at 30% 30%,
                    rgba(255, 255, 255, 0.9) 0%,
                    rgba(255, 215, 0, 1) 20%,
                    rgba(255, 165, 0, 0.8) 60%,
                    rgba(218, 165, 32, 0.4) 80%,
                    transparent 100%);
            box-shadow:
                0 0 10px rgba(255, 215, 0, 0.8),
                inset 0 0 4px rgba(255, 140, 0, 0.6);
            filter: drop-shadow(0 0 2px rgba(255, 200, 0, 0.5));
        }

        /* ── ANIMATED BEE CURSOR ── */
        .bee3d-container {
            position: absolute;
            inset: 0;
            pointer-events: none;
            z-index: 99999;
        }

        .bee3d-container canvas {
            display: block;
            width: 100% !important;
            height: 100% !important;
        }

        @media (max-width: 768px) {
            .bee3d-container {
                display: none !important;
            }
        }

        @keyframes pollen-fall {
            0% {
                transform: translateY(0) translateX(0) scale(1);
                opacity: 0.9;
            }

            40% {
                opacity: 0.7;
            }

            100% {
                transform: translateY(70px) translateX(var(--random-x, 0px)) scale(0.1);
                opacity: 0;
            }
        }

        /* ── INSTAGRAM GRID ── */
        .insta-section {
            padding: 0 0 8rem;
            position: relative;
            z-index: 2;
        }

        .insta-photo-grid {
            display: grid;
            grid-template-columns: repeat(5, minmax(0, 1fr));
            gap: 1.15rem;
            margin-bottom: 3.5rem;
        }

        .insta-photo-item {
            position: relative;
            overflow: hidden;
            aspect-ratio: 3 / 4;
            cursor: pointer;
            display: block;
            background: rgba(255, 255, 255, 0.04);
            text-decoration: none;
        }

        .insta-photo-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
                filter 0.5s ease;
            filter: brightness(0.96) saturate(0.95);
            display: block;
        }

        /* Dark overlay on hover */
        .insta-photo-item::after {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(10, 26, 20, 0.45);
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 2;
        }

        /* Heart icon centred, fades in and scales up */
        .insta-photo-item .insta-overlay-icon {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 3;
            opacity: 0;
            transform: scale(0.6);
            transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .insta-photo-item .insta-overlay-icon i {
            font-size: 2.2rem;
            color: #fff;
            filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.35));
        }

        .insta-photo-item:hover img {
            transform: scale(1.05);
            filter: brightness(0.85);
        }

        .insta-photo-item:hover::after {
            opacity: 1;
        }

        .insta-photo-item:hover .insta-overlay-icon {
            opacity: 1;
            transform: scale(1.15);
        }

        .insta-photo-item:focus-visible {
            outline: 2px solid var(--accent-gold);
            outline-offset: 4px;
        }

        /* Redesigned Follow Button - Minimalist Premium */
        .insta-follow-minimal {
            position: relative;
            margin: 3rem auto 0;
            width: fit-content;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 1.2rem;
            color: rgba(255, 255, 255, 0.75);
            background: transparent;
            font-family: 'Syne', sans-serif;
            font-size: 0.72rem;
            font-weight: 500;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            text-decoration: none;
            padding: 1.1rem 2.8rem;
            border: 1px solid rgba(197, 160, 101, 0.25);
            border-radius: 2px;
            transition: all 0.5s ease;
            z-index: 10;
            overflow: hidden;
        }

        .insta-follow-minimal::after {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(197, 160, 101, 0.05);
            transform: scaleY(0);
            transform-origin: bottom;
            transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
            z-index: -1;
        }

        .insta-follow-minimal i.fa-instagram {
            font-size: 1.1rem;
            color: var(--accent-gold);
            transition: transform 0.5s ease;
        }

        .insta-follow-minimal .arrow-icon {
            font-size: 0.75rem;
            color: var(--accent-gold);
            opacity: 0;
            transform: translateX(-10px);
            transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .insta-follow-minimal:hover {
            color: #fff;
            border-color: rgba(197, 160, 101, 0.8);
            gap: 0.8rem;
        }

        .insta-follow-minimal:hover::after {
            transform: scaleY(1);
        }

        .insta-follow-minimal:hover .arrow-icon {
            opacity: 1;
            transform: translateX(0);
        }

        @media (max-width: 768px) {
            .insta-photo-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.75rem;
            }
        }

        /* --- CONTACT --- */
        .contact-section {
            background: white;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: .45fr .55fr;
            gap: 6rem;
            align-items: start;
        }

        .contact-info {
            padding-top: 1rem;
        }

        .contact-info .section-title {
            margin-bottom: 1.5rem;
        }

        .contact-info p {
            color: var(--text-muted, #6B7F77);
            font-size: 1.05rem;
            line-height: 1.8;
            margin-bottom: 2.5rem;
        }

        .contact-detail {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.2rem;
        }

        .contact-detail-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(200, 169, 110, .1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-gold);
            font-size: .9rem;
            flex-shrink: 0;
        }

        .contact-detail a {
            color: var(--text-primary);
            font-size: .95rem;
            transition: .3s;
        }

        .contact-detail a:hover {
            color: var(--accent-gold);
        }

        /* Form */
        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .contact-form .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.75rem;
        }

        .contact-form .field {
            position: relative;
            margin-bottom: 2rem;
        }

        .contact-form .field-input {
            width: 100%;
            padding: 1rem 0;
            background: transparent;
            border: none;
            border-bottom: 1.5px solid rgba(10, 26, 20, .12);
            color: var(--text-primary);
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: .95rem;
            outline: none;
            transition: border-color .3s;
        }

        .contact-form .field-input:focus {
            border-bottom-color: var(--accent-gold);
        }

        .contact-form select.field-input {
            -webkit-appearance: none;
            cursor: pointer;
        }

        .contact-form .field-label {
            position: absolute;
            top: 1rem;
            left: 0;
            font-size: .9rem;
            color: #9EADA7;
            pointer-events: none;
            transition: .25s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .contact-form .field-input:focus~.field-label,
        .contact-form .field-input:not(:placeholder-shown)~.field-label,
        .contact-form select.field-input:valid~.field-label {
            top: -.8rem;
            font-size: .72rem;
            color: var(--accent-gold);
            letter-spacing: .06em;
            text-transform: uppercase;
        }

        .contact-form .field-line {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1.5px;
            background: var(--accent-gold);
            transition: width .4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .contact-form .field-input:focus~.field-label~.field-line {
            width: 100%;
        }

        .contact-form .field-input:focus~.field-line {
            width: 100%;
        }

        .checkbox-row {
            display: flex;
            gap: .8rem;
            align-items: flex-start;
            margin-bottom: 1.2rem;
        }

        .custom-check {
            appearance: none;
            -webkit-appearance: none;
            width: 18px;
            height: 18px;
            flex-shrink: 0;
            border: 1.5px solid rgba(10, 26, 20, .2);
            background: transparent;
            cursor: pointer;
            margin-top: .15rem;
            transition: .3s;
            display: grid;
            place-content: center;
        }

        .custom-check::before {
            content: '✓';
            font-size: .7rem;
            color: var(--accent-gold);
            opacity: 0;
            transition: .2s;
        }

        .custom-check:checked {}

        .custom-check:checked::before {
            opacity: 1;
        }

        .check-label {
            font-size: .82rem;
            color: var(--text-muted, #6B7F77);
            line-height: 1.5;
        }

        .form-alert {
            display: none;
            padding: .8rem 1rem;
            margin-bottom: 1rem;
            font-size: .85rem;
            border-left: 3px solid;
        }

        .form-alert.success {
            background: rgba(122, 158, 138, .1);
            border-color: #8DA399;
            color: #1C3028;
        }

        .form-alert.error {
            background: rgba(200, 80, 80, .08);
            border-color: #c05050;
            color: #7a2020;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: .8rem;
            padding: 1rem 2.5rem;
            background: #0A1A14;
            color: white;
            font-family: 'Syne', sans-serif;
            font-size: .8rem;
            font-weight: 700;
            letter-spacing: .1em;
            text-transform: uppercase;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: color .4s cubic-bezier(0.16, 1, 0.3, 1), transform .3s;
            border: none;
            width: auto;
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            inset: 0;
            background: var(--accent-gold);
            transform: translateX(-101%);
            transition: transform .4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .btn-primary:hover {
            color: white;
            transform: translateY(-2px);
        }

        .btn-primary:hover::before {
            transform: translateX(0);
        }

        .btn-primary span,
        .btn-primary i {
            position: relative;
            z-index: 1;
        }

        @media(max-width:1200px) {
            .contact-grid {
                gap: 4rem;
            }
        }

        @media(max-width:1024px) {
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
        }

        @media(max-width:768px) {
            .contact-form .form-row {
                grid-template-columns: 1fr;
                gap: 0;
            }
        }

        /* --- PREMIUM FOOTER REDESIGN --- */

        .modern-footer {
            background: none;
            padding: 0;
            position: relative;
            z-index: 5;
            overflow: hidden;
        }

        /* warstwa tła — identyczna jak .manifesto-bg */
        .modern-footer::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url('/images/LWGQw9V.webp') center/cover;
            transform: scale(1.15);
            filter: brightness(.25) saturate(.6);
            will-change: transform;
            z-index: 0;
        }

        /* warstwa overlay — identyczna jak .manifesto-overlay */
        .modern-footer::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg,
                    rgba(10, 26, 20, 0.92) 0%,
                    rgba(10, 26, 20, 0.75) 50%,
                    rgba(10, 26, 20, 0.88) 100%);
            z-index: 1;
        }

        /* warstwa dolnego blur/fade na tle */
        .footer-bg-blur {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 40%;
            background: linear-gradient(to bottom,
                    transparent 0%,
                    rgba(10, 26, 20, 0.4) 40%,
                    rgba(10, 26, 20, 0.85) 100%);
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
            z-index: 2;
            pointer-events: none;
        }

        .modern-footer .container {
            position: relative;
            z-index: 5;
        }

        /* ── FOOTER TOP BRAND ── */
        .footer-brand-section {
            text-align: center;
            padding: 6rem 0 2rem;
        }

        .footer-logo {
            display: block;
            width: min(380px, 80vw);
            height: auto;

            opacity: 0.92;
            margin: 0 auto 2.5rem;
        }

        .footer-tagline-block {
            max-width: 700px;
            margin: 0 auto;
        }

        .footer-tagline-text {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(1.4rem, 2vw, 1.75rem);
            color: rgba(255, 255, 255, 0.7);
            font-style: italic;
            font-weight: 300;
            line-height: 1.55;
            letter-spacing: 0.01em;
        }

        .footer-tagline-deco {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            margin-top: 2rem;
        }

        .footer-tagline-deco::before,
        .footer-tagline-deco::after {
            content: '';
            width: 50px;
            height: 1px;
            background: linear-gradient(to right, transparent, rgba(197, 160, 101, 0.4));
        }

        .footer-tagline-deco::after {
            background: linear-gradient(to left, transparent, rgba(197, 160, 101, 0.4));
        }

        .footer-tagline-deco-dot {
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: var(--accent-gold);
            opacity: 0.6;
        }

        /* ── SOCIAL STRIP ── */
        .footer-social-strip {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1.2rem;
            padding: 2rem 0;
            /* border-top: 1px solid rgba(255, 255, 255, 0.06); */
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }

        .footer-social-strip a {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.92rem;
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            /* border: 1px solid rgba(255, 255, 255, 0.1); */
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            background: rgba(255, 255, 255, 0.02);
            transition: all 0.4s var(--transition);
        }

        .footer-social-strip a:hover {
            background: rgba(197, 160, 101, 0.15);
            /* border-color: rgba(197, 160, 101, 0.35); */
            box-shadow: 0 6px 20px rgba(197, 160, 101, 0.25);
            color: var(--accent-gold);
            transform: translateY(-3px);
        }

        /* ── FOOTER CONTENT GRID ── */
        .footer-content-area {
            padding: 4rem 0;
        }

        .footer-grid-premium {
            display: grid;
            grid-template-columns: 1.3fr 1fr 1fr 1.5fr;
            gap: 2.5rem 0;
            max-width: var(--container-width);
            margin: 0 auto;
        }

        .footer-grid-premium>.footer-col {
            padding: 0 2.5rem;
            /* border-right: 1px solid rgba(255, 255, 255, 0.06); */
        }

        .footer-grid-premium>.footer-col:first-child {
            padding-left: 0;
        }

        .footer-grid-premium>.footer-col:last-child {
            padding-right: 0;
            border-right: none;
        }

        .footer-col-brand {
            padding-right: 2rem;
        }

        .footer-col-brand-desc {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.45);
            line-height: 1.75;
            font-weight: 300;
        }

        .footer-col h5 {
            color: var(--accent-gold);
            font-family: 'Syne', sans-serif;
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 2.5px;
            margin-bottom: 1.5rem;
            font-weight: 700;
            position: relative;
            padding-bottom: 1rem;
        }

        .footer-col h5::before,
        .footer-col h5::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            height: 1px;
        }

        .footer-col h5::before {
            width: 50px;
            background: linear-gradient(90deg, rgba(197, 160, 101, 0.15), transparent);
        }

        .footer-col h5::after {
            width: 0;
            background: linear-gradient(90deg, var(--accent-gold), rgba(197, 160, 101, 0.3), transparent);
            transition: width 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.3s;
            box-shadow: 0 0 6px rgba(197, 160, 101, 0.15);
        }

        .reveal.active .footer-col h5::after {
            width: 36px;
        }

        .premium-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .premium-links li {
            margin-bottom: 0.85rem;
        }

        .premium-links li a {
            color: rgba(255, 255, 255, 0.55);
            text-decoration: none;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 0.9rem;
            transition: all 0.35s var(--transition);
            position: relative;
            display: inline-block;
            font-weight: 300;
        }

        .premium-links li a::before {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--accent-gold);
            transition: width 0.4s var(--transition);
        }

        .premium-links li a:hover {
            color: rgba(255, 255, 255, 0.95);
        }

        .premium-links li a:hover::before {
            width: 100%;
        }

        .premium-email-link {
            color: rgba(255, 255, 255, 0.55);
            font-size: 0.9rem;
            font-family: 'Plus Jakarta Sans', sans-serif;
            text-decoration: none;
            border-bottom: 1px solid rgba(197, 160, 101, 0.25);
            padding-bottom: 3px;
            transition: all 0.4s var(--transition);
            font-weight: 300;
        }

        .premium-email-link:hover {
            color: var(--accent-gold);
            border-bottom-color: var(--accent-gold);
        }

        .footer-contact-address {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.35);
            line-height: 1.7;
            font-weight: 300;
            margin-top: 1.2rem;
        }

        /* ── NEWSLETTER IN FOOTER ── */
        .footer-premium-newsletter {
            width: 100%;
            max-width: 100%;
        }

        .footer-newsletter-label {
            color: var(--accent-gold);
            display: block;
            font-family: 'Syne', sans-serif;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 2.5px;
            margin-bottom: 1rem;
            text-transform: uppercase;
            position: relative;
            padding-bottom: 1rem;
        }

        .footer-newsletter-label::before,
        .footer-newsletter-label::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            height: 1px;
        }

        .footer-newsletter-label::before {
            width: 50px;
            background: linear-gradient(90deg, rgba(197, 160, 101, 0.15), transparent);
        }

        .footer-newsletter-label::after {
            width: 0;
            background: linear-gradient(90deg, var(--accent-gold), rgba(197, 160, 101, 0.3), transparent);
            transition: width 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.5s;
            box-shadow: 0 0 6px rgba(197, 160, 101, 0.15);
        }

        .reveal.active .footer-newsletter-label::after {
            width: 36px;
        }

        .footer-newsletter-title {
            color: rgba(255, 255, 255, 0.5);
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 0.9rem;
            font-weight: 300;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            max-width: 100%;
        }

        .premium-subscribe-form {
            display: flex;
            /* border: 1px solid rgba(255, 255, 255, 0.12); */
            border-radius: 0;
            transition: border-color 0.4s ease, box-shadow 0.4s ease;
            align-items: center;
            width: 100%;
            max-width: 100%;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
        }

        .premium-subscribe-form:focus-within {
            border-color: rgba(197, 160, 101, 0.4);
        }

        .premium-subscribe-form input {
            appearance: none;
            -webkit-appearance: none;
            background: rgba(255, 255, 255, 0.045);
            border: 1px solid rgba(197, 160, 101, 0.22);
            border-right: 0;
            color: rgba(255, 255, 255, 0.92);
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 0.84rem;
            font-weight: 300;
            height: 2.75rem;
            letter-spacing: 0;
            min-width: 0;
            outline: none;
            padding: 0 1rem 0 1.1rem;
            width: 100%;
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 10px 24px rgba(0, 0, 0, 0.12);
            transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, color 0.35s ease;
        }

        .premium-subscribe-form input:focus {
            background: rgba(255, 255, 255, 0.065);
            border-color: rgba(197, 160, 101, 0.52);
            color: white;
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 0 0 1px rgba(197, 160, 101, 0.18), 0 12px 28px rgba(0, 0, 0, 0.18);
        }

        .premium-subscribe-form input::placeholder {
            color: rgba(255, 255, 255, 0.43);
            font-weight: 300;
        }

        .premium-subscribe-form input:-webkit-autofill,
        .premium-subscribe-form input:-webkit-autofill:hover,
        .premium-subscribe-form input:-webkit-autofill:focus {
            -webkit-text-fill-color: rgba(255, 255, 255, 0.92);
            caret-color: white;
            box-shadow: 0 0 0 1000px rgba(16, 35, 28, 0.95) inset, 0 0 0 1px rgba(197, 160, 101, 0.25);
        }

        .premium-subscribe-form button {
            background: var(--accent-gold);
            border: none;
            color: white;
            font-size: 0.85rem;
            cursor: pointer;
            transition: all 0.4s var(--transition);
            padding: 0.9rem 1.2rem;
            flex-shrink: 0;
        }

        .premium-subscribe-form button:hover {
            background: #d4af72;
        }

        /* ── BOTTOM BAR ── */
        .footer-bottom-premium {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding: 2rem 0;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 0.78rem;
            color: rgba(255, 255, 255, 0.35);
            font-weight: 300;
            letter-spacing: 0.02em;
        }

        .legal-links {
            display: flex;
            gap: 1.5rem;
        }

        .legal-links a {
            color: rgba(255, 255, 255, 0.35);
            text-decoration: none;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 0.78rem;
            font-weight: 300;
            transition: color 0.4s var(--transition);
            letter-spacing: 0.02em;
        }

        .legal-links a:hover {
            color: var(--accent-gold);
        }

        /* --- PREMIUM COOKIE POPUP --- */
        .cookie-banner {
            position: fixed;
            bottom: 40px;
            left: calc(var(--sidebar-width) + 40px);
            max-width: 540px;
            background: #ffffff;
            padding: 1.5rem 2rem;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06), 0 4px 12px rgba(0, 0, 0, 0.03);
            border: 1px solid rgba(200, 169, 110, 0.15);
            z-index: 9999;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            transform: translateY(150%) scale(0.95);
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
            border-radius: 0;
            border-left: 4px solid var(--accent-gold);
        }

        .cookie-banner.active {
            transform: translateY(0) scale(1);
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }

        .cookie-header {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .cookie-icon {
            width: 46px;
            height: 46px;
            background: #fbf7f1;
            border-radius: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-gold);
            font-size: 1.3rem;
            box-shadow: inset 0 0 0 1px rgba(200, 169, 110, 0.2);
        }

        .cookie-title {
            font-family: 'Syne';
            font-size: 15px;
            margin: 0;
            color: var(--text-primary);
            letter-spacing: 0.5px;
        }

        .cookie-text {
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        .cookie-btns {
            display: flex;
            gap: 1.5rem;
            align-items: center;
            margin-top: 0.5rem;
        }

        .cookie-btns .btn {
            flex: 1;
            justify-content: center;
            background: transparent;
            border: 1px solid var(--accent-gold);
            color: var(--accent-gold);
            letter-spacing: 2px;
            font-weight: 600;
            padding: 0.8rem 1.5rem;
            text-transform: uppercase;
            border-radius: 0;
            transition: all 0.4s ease;
        }

        .cookie-btns .btn:hover {
            background: var(--accent-gold);
            color: white;
            box-shadow: 0 8px 20px rgba(200, 169, 110, 0.25);
            transform: translateY(-2px);
        }

        .cookie-link {
            text-decoration: none;
            color: var(--text-secondary);
            font-size: 0.9rem;
            transition: color 0.3s;
            position: relative;
            font-family: 'Syne';
        }

        .cookie-link::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 1px;
            background: var(--text-secondary);
            transition: 0.3s;
        }

        .cookie-link:hover {
            color: var(--accent-gold);
        }

        .cookie-link:hover::after {
            background: var(--accent-gold);
        }

        /* --- SCROLL PROGRESS & BACK TO TOP --- */
        .progress-bar {
            position: fixed;
            top: 0;
            left: 0;
            height: 2px;
            background: linear-gradient(90deg, #A88647, var(--accent-gold), #E2C99A);
            z-index: 9997;
            width: 0%;
            transition: width .1s linear;
            box-shadow: 0 0 8px rgba(200, 169, 110, .4);
        }

        .back-top {
            position: fixed;
            bottom: 2.5rem;
            right: 2.5rem;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: #0A1A14;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: .9rem;
            cursor: pointer;
            z-index: 900;
            opacity: 0;
            pointer-events: none;
            visibility: hidden;
            transform: translateY(20px);
            transition: .4s cubic-bezier(0.16, 1, 0.3, 1);
            box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
        }

        .back-top:not(.visible) {
            opacity: 0 !important;
            transform: translateY(20px) !important;
            pointer-events: none !important;
            visibility: hidden;
        }


        .back-top.visible {
            opacity: 1 !important;
            pointer-events: auto !important;
            visibility: visible;
            transform: none;
        }

        .back-top:hover {
            background: var(--accent-gold);
            transform: translateY(-4px);
        }


        /* --- SUPPORT POPUP MODAL --- */
        .support-popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(10, 26, 20, 0.4);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            z-index: 10000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
        }

        .support-popup-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .support-popup-content {
            background: #fff;
            padding: 3.5rem 3rem;
            border-radius: 24px;
            max-width: 480px;
            width: 90%;
            max-height: 90vh;
            overflow-y: auto;
            box-shadow: 0 24px 80px rgba(10, 26, 20, 0.15);
            transform: scale(0.95) translateY(20px);
            transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
            position: relative;
            border: 1px solid rgba(0, 0, 0, 0.05);
            text-align: center;
        }

        .support-popup-overlay.active .support-popup-content {
            transform: scale(1) translateY(0);
        }

        .support-popup-close {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            width: 40px;
            height: 40px;
            border: 1px solid rgba(0, 0, 0, 0.05);
            background: #fff;
            font-size: 1.2rem;
            color: var(--text-secondary);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
        }

        .support-popup-close:hover {
            background: var(--bg-paper);
            color: var(--text-primary);
            transform: rotate(90deg);
        }

        .support-popup-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.2rem;
            color: var(--text-primary);
            margin-bottom: 1.25rem;
            line-height: 1.1;
        }

        .support-popup-text {
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 2.5rem;
            font-size: 1.05rem;
        }

        @media (max-width: 768px) {
            .support-popup-content {
                padding: 2.5rem 1.5rem;
                max-width: 95%;
            }

            .support-popup-title {
                font-size: 1.8rem;
            }
        }


        /* --- SUPPORT POPUP REFINEMENT --- */
        .support-popup-overlay {
            background: rgba(10, 26, 20, 0.58);
            backdrop-filter: blur(12px) saturate(1.05);
            -webkit-backdrop-filter: blur(12px) saturate(1.05);
            padding: clamp(1rem, 4vw, 2rem);
        }

        .support-popup-content:not(.project-popup-content) {
            width: min(92vw, 560px);
            max-width: 560px;
            padding: 0;
            border-radius: 0;
            background: linear-gradient(180deg, #fffdf9 0%, #f7f4ee 100%);
            border: 1px solid rgba(26, 46, 40, 0.12);
            box-shadow: 0 34px 90px rgba(10, 26, 20, 0.24);
            text-align: left;
            overflow: hidden;
            transform: translateY(18px);
        }

        .support-popup-content:not(.project-popup-content)::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--accent-gold);
        }

        .support-popup-overlay.active .support-popup-content:not(.project-popup-content) {
            transform: translateY(0);
        }

        .support-popup-close {
            top: 1rem;
            right: 1rem;
            width: 40px;
            height: 40px;
            border-radius: 0;
            border: 1px solid rgba(26, 46, 40, 0.1);
            background: rgba(255, 255, 255, 0.72);
            color: var(--text-primary);
            box-shadow: none;
        }

        .support-popup-close:hover {
            background: var(--text-primary);
            color: #fff;
            transform: none;
        }

        .support-popup-header {
            padding: 3.35rem 3rem 1rem;
        }

        .support-popup-kicker {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 0.9rem;
            font-family: 'Syne', sans-serif;
            font-size: 0.66rem;
            font-weight: 700;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--accent-gold);
        }

        .support-popup-kicker::before {
            content: '';
            width: 30px;
            height: 1px;
            background: currentColor;
        }

        .support-popup-title {
            margin: 0;
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2.35rem, 5vw, 3rem);
            font-weight: 300;
            line-height: 0.98;
            color: var(--text-primary);
        }

        .support-popup-text {
            margin: 0;
            padding: 0 3rem 2.35rem;
            color: var(--text-secondary);
            font-size: 1rem;
            line-height: 1.75;
        }

        .support-popup-text p {
            margin: 0;
        }

        .support-popup-options {
            padding: 1.25rem 3rem 3rem;
            border-top: 1px solid rgba(26, 46, 40, 0.08);
            background: rgba(255, 255, 255, 0.42);
        }

        .support-popup-action {
            width: 100%;
            min-height: 54px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.7rem;
            border: 1px solid rgba(197, 160, 101, 0.72);
            color: var(--text-primary);
            background: transparent;
            font-family: 'Syne', sans-serif;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            text-decoration: none;
            transition: background 0.3s var(--transition, var(--r)), color 0.3s var(--transition, var(--r)), border-color 0.3s var(--transition, var(--r)), transform 0.3s var(--transition, var(--r));
        }

        .support-popup-action:hover,
        .support-popup-action:focus-visible {
            background: var(--text-primary);
            border-color: var(--text-primary);
            color: #fff;
            transform: translateY(-1px);
            outline: none;
        }

        .support-popup-action i {
            color: var(--accent-gold);
            font-size: 0.78rem;
            transition: transform 0.3s var(--transition, var(--r));
        }

        .support-popup-action:hover i,
        .support-popup-action:focus-visible i {
            transform: translateX(3px);
        }

        @media (max-width: 768px) {
            .support-popup-overlay {
                align-items: flex-end;
                padding: 0.75rem;
            }

            .support-popup-content:not(.project-popup-content) {
                width: 100%;
                max-width: none;
                max-height: calc(100vh - 1.5rem);
            }

            .support-popup-header {
                padding: 3rem 1.35rem 0.85rem;
            }

            .support-popup-title {
                font-size: clamp(2.1rem, 12vw, 2.65rem);
            }

            .support-popup-text {
                padding: 0 1.35rem 2rem;
                font-size: 0.98rem;
            }

            .support-popup-options {
                padding: 1.1rem 1.35rem 1.35rem;
            }

            .support-popup-close {
                top: 0.75rem;
                right: 0.75rem;
            }
        }

        /* Removed scroll-icon hover */

        @media (max-width: 1024px) {
            body {
                padding-left: 0;
            }

            .sidebar {
                display: none;
            }

            nav {
                left: 0;
                width: 100%;
                padding: 1rem 0;
            }

            .container {
                padding: 0 1.5rem;
            }

            .nav-links,
            .lang-container {
                display: none;
            }

            .mobile-toggle {
                display: flex !important;
            }

            /* Hero Section */
            .hero {
                padding-top: 6rem;
                min-height: auto;
            }

            .hero-grid {
                display: block;
                gap: 3rem;
            }

            .hero-content {
                margin-bottom: 3rem;
                text-align: center;
                padding-right: 0;
            }

            .hero-content p {
                margin: 1.5rem auto 2rem;
            }

            .hero-eyebrow {
                justify-content: center;
            }

            .hero-content .hero-kicker {
                justify-content: center;
                margin-left: auto;
                margin-right: auto;
            }

            .hero-actions {
                justify-content: center;
                flex-wrap: wrap;
            }

            .display-text {
                font-size: 2.5rem;
            }

            .hero-img-main {
                height: 60vh;
                border-radius: 80px 80px 0 0;
            }

            .hero-decoration {
                position: relative;
                top: auto;
                right: auto;
                left: 0;
                bottom: 0;
                margin: -3rem 1rem 0;
                min-width: auto;
                width: calc(100% - 2rem);
                flex-direction: column;
                text-align: center;
                align-items: center;
                padding: 1.5rem;
            }

            .hero-emblem {
                margin: 0 auto 1rem;
            }

            /* Roles Strip */
            .roles-marquee-wrap {
                padding: 1.5rem 0;
                max-width: 100vw;
                contain: paint;
            }

            .roles-marquee-track {
                gap: 2.5rem;
                padding-right: 2.5rem;
            }

            .roles-marquee-item h3 {
                font-size: 1.1rem;
            }

            /* About Section */
            .about-grid-new {
                grid-template-columns: 1fr;
                gap: 4rem;
            }

            .about-content-new {
                padding-left: 0;
            }

            .about-visuals-new {
                height: 500px;
            }

            .image-wrapper-sub {
                width: clamp(150px, 42vw, 220px);
                height: clamp(150px, 42vw, 220px);
                right: clamp(0.5rem, 4vw, 1.25rem);
                bottom: 4%;
            }

            .about-values-new {
                grid-template-columns: 1fr;
                margin-top: 1.55rem;
            }

            .value-card-new {
                min-height: 138px;
                padding: 1.18rem 1rem 1.15rem;
                border: none;
            }

            .value-card-new:last-child {
                border: none;
            }

            .vcn-icon-wrap {
                top: 1rem;
                right: 1rem;
                width: 36px;
                height: 36px;
            }

            .vcn-body {
                padding-top: 1.35rem;
            }

            .vcn-body h4 {
                font-size: 20px;
                margin-bottom: 0.5rem;
            }

            .vcn-body p {
                max-width: 17.5rem;
                font-size: 0.8rem;
                line-height: 1.45;
            }

            /* Mobile quote card uses desktop defaults */

            /* Timeline */
            .resume-heading {
                margin-bottom: 0 !important;
            }

            .timeline-line {
                left: 30px;
            }

            .timeline-line.reveal.active {
                transform: translateX(-50%) scale(1);
            }

            .timeline-item {
                flex-direction: column !important;
                align-items: flex-start;
                margin-bottom: 3rem;
            }

            .timeline-dot-wrapper {
                left: 30px;
                top: 2rem;
                transform: translate(-50%, 0);
            }

            .timeline-dot-wrapper.reveal.active {
                transform: translate(-50%, 0) scale(1);
            }

            .glass-card {
                width: calc(100% - 60px) !important;
                margin-left: 60px !important;
                text-align: left !important;
                padding: 1.5rem !important;
            }

            .timeline-stage-image {
                width: calc(100% + 3rem) !important;
                margin: -1.5rem -1.5rem 1.5rem -1.5rem !important;
                height: 160px;
            }

            .timeline-item:nth-child(odd) .glass-card::before,
            .timeline-item:nth-child(even) .glass-card::before {
                display: none;
            }

            /* Foundation Section */
            .found-section-header {
                margin-bottom: 4rem;
            }

            .found-grid {
                gap: 3.5rem;
            }

            /* News Section */
            .news-main {
                grid-template-columns: 1fr;
            }

            .news-left {
                gap: 2rem;
            }

            .news-grid {
                gap: 2rem;
            }

            .post.featured .post-img {
                height: 250px;
            }

            .post.card {
                flex-direction: column;
                min-height: auto;
            }

            .post.card .post-img {
                width: 100%;
                height: 200px;
            }

            .post.card .post-content {
                width: 100%;
                padding: 1.5rem;
            }

            /* Responsive styles for new templates */
            .post.template-left-image,
            .post.template-right-image {
                flex-direction: column;
                min-height: auto;
            }

            .post.template-left-image .post-img,
            .post.template-right-image .post-img {
                width: 100%;
                height: 200px;
            }

            .post.template-left-image .post-content,
            .post.template-right-image .post-content {
                width: 100%;
                padding: 1.5rem;
            }

            .post.template-right-image p {
                display: -webkit-box;
            }

            .post.template-overlay {
                min-height: 250px;
            }

            .post.template-vertical .post-img {
                height: 200px;
            }

            .post.template-minimal {
                padding: 1.5rem;
            }

            /* Contact Section */
            .contact-flex {
                display: block;
                min-height: auto;
            }

            .contact-text {
                margin-bottom: 3rem;
            }

            .contact-form-wrapper {
                padding: 2rem 1.5rem;
                box-shadow: none;
                border-radius: 0;
            }

            .form-row {
                grid-template-columns: 1fr;
                gap: 0;
            }

            /* Footer */
            .footer-brand-section {
                padding: 4rem 0 3rem;
            }

            .footer-grid-premium {
                grid-template-columns: 1fr 1fr;
                gap: 2.5rem 3rem;
            }

            .footer-grid-premium>.footer-col {
                padding: 0;
                border-right: none;
            }

            .footer-col.footer-premium-newsletter {
                grid-column: 1 / -1;
            }

            .footer-col-brand {
                grid-column: 1 / -1;
                padding-right: 0;
                text-align: center;
            }

            .footer-col h5::after {
                left: 50%;
                transform: translateX(-50%);
            }

            .footer-col-brand .footer-col-brand-desc {
                max-width: 500px;
                margin: 0 auto;
            }

            .footer-bottom-premium {
                flex-direction: column;
                align-items: center;
                text-align: center;
                gap: 1rem;
            }

            .legal-links {
                flex-wrap: wrap;
                justify-content: center;
                gap: 1rem;
            }

            /* Cookie Banner */
            .cookie-banner {
                left: 0;
                bottom: 0;
                max-width: 100%;
                border-left: none;
                border-top: 4px solid var(--accent-gold);
                border-radius: 0;
                padding: 1.5rem;
            }

            .cookie-btns {
                flex-direction: column;
                align-items: stretch;
                gap: 0.8rem;
            }

            .cookie-btns .btn {
                width: 100%;
            }

            .cookie-btns .cookie-link {
                text-align: center;
                padding: 0.5rem;
            }

            /* Section Padding */
            .section-py {
                padding: 4rem 0;
            }

            /* Back To Top Mobile */
            .back-top {
                bottom: 1rem;
                right: 1rem;
                width: 45px;
                height: 45px;
            }
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 1rem;
            }

            .display-text {
                font-size: 2rem;
            }

            .section-title {
                font-size: var(--section-heading-size-mobile);
            }

            /* Hero */
            .hero-img-main {
                height: 50vh;
                border-radius: 60px 60px 0 0;
            }

            .hero-decoration {
                padding: 1rem;
            }

            /* Timeline */
            .glass-card {
                width: calc(100% - 50px) !important;
                margin-left: 50px !important;
                padding: 1rem !important;
            }

            .timeline-stage-image {
                width: calc(100% + 2rem) !important;
                margin: -1rem -1rem 1rem -1rem !important;
                height: 140px;
            }

            .timeline-role {
                font-size: 1.2rem;
            }

            /* Foundation */
            .foundation-section {
                --found-gold: #C8A96E;
                --found-gold-pale: rgba(200, 169, 110, 0.12);
                background: #ffffff;
                color: var(--text-primary);
                position: relative;
                overflow: hidden;
                cursor: none;
                padding: 4rem 0;
            }

            .found-section-title {
                font-size: clamp(2rem, 8vw, 2.8rem);
            }

            .found-tagline {
                font-size: clamp(2rem, 7vw, 2.8rem);
            }

            .found-card {
                padding: 1.5rem 1.75rem;
            }

            /* News */
            .post.featured h3 {
                font-size: 1.5rem;
            }

            /* Newsletter Minimalist Mobile */
            .newsletter-wrapper {
                flex-direction: column;
                align-items: stretch;
                border: none;
                gap: 0;
            }

            .newsletter-input {
                width: 100%;
                background: transparent;
                padding: 1rem 0;
                border: none;
                border-bottom: 1px solid rgba(255, 255, 255, 0.3);
                border-radius: 0;
                text-align: left;
                box-shadow: none;
                color: white;
            }

            .newsletter-input:focus {
                border-bottom-color: var(--accent-gold);
            }

            .newsletter-btn {
                width: auto;
                padding: 1.5rem 0 0.5rem 0;
                text-align: left;
                border-radius: 0;
                box-shadow: none;
                margin-top: 0;
                background: transparent;
            }

            /* Instagram Grid (MOBILE) */
            .insta-photo-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.75rem;
            }

            /* Schedule */
            .schedule-item {
                flex-direction: column !important;
                align-items: flex-start !important;
                gap: 1rem !important;
                padding: 1rem !important;
            }

            .schedule-item .btn {
                width: 100%;
            }

            /* Footer */
            .footer-brand-section {
                padding: 3rem 0 2.5rem;
            }

            .footer-tagline-text {
                font-size: 1.2rem;
            }

            .footer-content-area {
                padding: 3rem 0;
            }

            .footer-col h5::after {
                left: 50%;
                transform: translateX(-50%);
            }
        }

        @media (max-width: 480px) {
            .section-py {
                padding: 3rem 0;
            }

            .display-text {
                font-size: 1.75rem;
            }

            .hero {
                padding-top: 5rem;
            }

            .hero-img-main {
                height: 40vh;
            }

            .btn {
                padding: 0.8rem 1.5rem;
                font-size: 0.8rem;
            }

            .glass-card {
                font-size: 0.9rem;
            }

            .post-content {
                padding: 1rem;
            }

            .footer-grid-premium {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 2.5rem;
            }

            .footer-grid-premium .footer-col {
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            .footer-col h5::after {
                left: 50%;
                transform: translateX(-50%);
            }

            .premium-links {
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            .premium-links li a::before {
                left: 50%;
                transform: translateX(-50%);
            }

            .footer-brand-section {
                padding: 2.5rem 0 2rem;
            }

            .footer-logo {
                width: min(170px, 50vw);
                margin-bottom: 1.5rem;
            }

            .footer-social-strip {
                gap: 0.8rem;
            }

            .footer-social-strip a {
                width: 40px;
                height: 40px;
            }

            .premium-subscribe-form {
                flex-direction: column;
                border: none;
            }

            .premium-subscribe-form input {
                border-right: 1px solid rgba(197, 160, 101, 0.22);
                text-align: left;
            }

            .premium-subscribe-form button {
                width: 100%;
                margin-top: 0.5rem;
            }
        }

        /* Zwiększenie odstępów w podtytule Hero - Minimalistyczny, dekoracyjny wygląd */
        .hero-content .subtitle {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 0.65rem;
            font-weight: 700;
            letter-spacing: 0.4em;
            text-transform: uppercase;
            color: var(--accent-gold);
            background: none;
            border: none;
            padding: 0;
            margin-bottom: 2.5rem;
            box-shadow: none;
            word-spacing: 0.5em;
            opacity: 0.9;
        }

        .hero-content .subtitle::before,
        .hero-content .subtitle::after {
            display: none;
        }

        .hero-content .hero-kicker {
            justify-content: flex-start;
            gap: 0.95rem;
            width: fit-content;
            margin: 0 0 2.25rem;
            letter-spacing: 0.24em;
            word-spacing: 0;
        }


        /* ============================================
           NOWE FULLSCREEN MENU — DARK EDITORIAL
        ============================================ */

        /* --- TOGGLE BUTTON --- */
        .mobile-toggle {
            display: none;
            width: 44px;
            height: 44px;
            border: 1px solid rgba(197, 160, 101, 0.35);
            border-radius: 0;
            background: transparent;
            color: var(--text-primary);
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            z-index: 2002;
            position: relative;
            transition: background 0.35s, border-color 0.35s, color 0.35s;
            -webkit-tap-highlight-color: transparent;
        }

        /* On transparent hero — white bars */
        .transparent-hero-header nav:not(.scrolled) .mobile-toggle {
            border-color: rgba(255, 255, 255, 0.3);
            color: white;
        }

        .mobile-toggle .bar {
            display: block;
            height: 1px;
            background-color: currentColor;
            border-radius: 0;
            transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease, width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
            transform-origin: center;
        }

        .mobile-toggle .bar:nth-of-type(1) {
            width: 20px;
        }

        .mobile-toggle .bar:nth-of-type(2) {
            width: 12px;
            align-self: flex-end;
        }

        .mobile-toggle .bar:nth-of-type(3) {
            width: 20px;
        }

        .mobile-toggle:hover {
            border-color: var(--accent-gold);
            color: var(--accent-gold);
        }

        .mobile-toggle:hover .bar:nth-of-type(2) {
            width: 20px;
        }

        .mobile-toggle.active {
            background: transparent;
            border-color: rgba(197, 160, 101, 0.5);
            color: rgba(197, 160, 101, 0.9);
        }

        .mobile-toggle.active .bar:nth-of-type(1) {
            transform: translateY(6px) rotate(45deg);
            width: 20px;
        }

        .mobile-toggle.active .bar:nth-of-type(2) {
            opacity: 0;
            transform: scaleX(0);
        }

        .mobile-toggle.active .bar:nth-of-type(3) {
            transform: translateY(-6px) rotate(-45deg);
            width: 20px;
        }

        /* --- FULLSCREEN OVERLAY --- */
        .mobile-menu-overlay {
            position: fixed;
            inset: 0;
            width: 100%;
            height: 100dvh;
            min-height: 100vh;
            z-index: 1900;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.6s;
            overflow: hidden;
        }

        /* Full-width rich green gradient panel */
        .mobile-menu-overlay::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background:
                radial-gradient(ellipse 80% 60% at 90% 110%, rgba(138, 112, 71, 0.08) 0%, transparent 60%),
                radial-gradient(ellipse 60% 50% at 10% 0%, rgba(28, 56, 46, 0.6) 0%, transparent 70%),
                linear-gradient(160deg,
                    #0b1612 0%,
                    #0f1e19 18%,
                    #12221c 35%,
                    #152922 52%,
                    #0f1e18 72%,
                    #09130f 100%);
            transform: translateY(-101%);
            transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
        }

        /* Subtle gold bottom accent line */
        .mobile-menu-overlay::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(to right, transparent 0%, rgba(197, 160, 101, 0.7) 30%, rgba(197, 160, 101, 0.7) 70%, transparent 100%);
            z-index: 3;
        }

        .mobile-menu-overlay.active {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }

        .mobile-menu-overlay.active::before {
            transform: translateY(0);
        }

        /* --- INNER CONTENT --- */
        .mobile-menu-content {
            position: relative;
            z-index: 2;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        /* LEFT PANEL — full width */
        .mobile-menu-left {
            position: relative;
            flex: 1;
            padding: calc(2.5rem + env(safe-area-inset-top, 0px)) clamp(2rem, 8vw, 4rem) clamp(2rem, 5vh, 3rem);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            overflow: hidden;
        }

        /* Decorative large letter */
        .mobile-menu-left::after {
            content: 'Z';
            position: absolute;
            bottom: -0.1em;
            right: -0.02em;
            font-family: 'Cormorant Garamond', serif;
            font-size: 55vw;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.025);
            line-height: 1;
            pointer-events: none;
            user-select: none;
        }

        /* RIGHT PANEL — hidden, content moved to left panel */
        .mobile-menu-right {
            display: none;
        }

        /* Decorative large monogram */
        .mobile-menu-right::before {
            content: 'Z';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-family: 'Cormorant Garamond', serif;
            font-size: 55vw;
            font-weight: 700;
            color: rgba(26, 46, 40, 0.05);
            line-height: 1;
            pointer-events: none;
            user-select: none;
        }

        /* Thin gold vertical accent line */
        .mobile-menu-right::after {
            content: '';
            position: absolute;
            top: 15%;
            left: 0;
            width: 1px;
            height: 70%;
            background: linear-gradient(to bottom, transparent 0%, rgba(197, 160, 101, 0.45) 30%, rgba(197, 160, 101, 0.45) 70%, transparent 100%);
        }

        /* --- NAV LABEL --- */
        .mobile-nav-label {
            font-family: 'Syne', sans-serif;
            font-size: 0.5rem;
            font-weight: 700;
            letter-spacing: 0.32em;
            text-transform: uppercase;
            color: rgba(197, 160, 101, 0.6);
            opacity: 0;
            transform: translateY(-10px);
            transition: opacity 0.5s ease 0.1s, transform 0.5s ease 0.1s;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.7rem;
        }

        /* Short gold line before label */
        .mobile-nav-label::before {
            content: '';
            display: inline-block;
            width: 1.5rem;
            height: 1px;
            background: rgba(197, 160, 101, 0.5);
            flex-shrink: 0;
        }

        .mobile-menu-overlay.active .mobile-nav-label {
            opacity: 1;
            transform: translateY(0);
        }

        /* --- MAIN NAV LINKS --- */
        .mobile-menu-links {
            display: flex;
            flex-direction: column;
            gap: 0;
            position: relative;
            z-index: 1;
        }

        .mobile-link {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2.6rem, 9.5vw, 4.2rem);
            font-weight: 300;
            line-height: 1.05;
            color: rgba(249, 248, 246, 0.55);
            display: flex;
            align-items: baseline;
            justify-content: space-between;
            gap: 1rem;
            padding: 0.6rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(18px);
            transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), color 0.3s ease;
            text-decoration: none;
            letter-spacing: -0.01em;
        }

        /* Gold underline sweep */
        .mobile-link::before {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0;
            height: 1px;
            width: 0;
            background: linear-gradient(to right, var(--accent-gold), rgba(197, 160, 101, 0.4));
            transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
        }

        /* No pseudo arrow — numbers handle the right side */
        .mobile-link::after {
            display: none;
        }

        .mobile-link:hover {
            color: rgba(249, 248, 246, 0.92);
        }

        .mobile-link:hover::before {
            width: 100%;
        }

        .mobile-link.active-page {
            color: var(--accent-gold) !important;
            font-style: italic;
            opacity: 1;
        }

        .mobile-link .mobile-submenu-icon {
            display: inline-block;
            font-size: 0.28em;
            color: var(--accent-gold);
            margin-left: 0.35rem;
            vertical-align: middle;
            transition: transform 0.3s ease;
        }

        .mobile-submenu {
            display: flex;
            justify-content: flex-start;
            width: 100%;
            max-height: 0;
            margin: 0;
            opacity: 0;
            overflow: hidden;
            pointer-events: none;
            transform: translateY(8px);
            transition: max-height 0.35s ease, margin 0.35s ease, opacity 0.3s ease, transform 0.35s ease;
        }

        .mobile-sublink {
            width: calc(100% - clamp(2rem, 12vw, 4rem));
            margin-left: clamp(1.55rem, 7.5vw, 3.25rem);
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(1.45rem, 6.2vw, 2.2rem);
            font-weight: 300;
            line-height: 1.05;
            color: rgba(249, 248, 246, 0.58);
            display: flex;
            align-items: baseline;
            justify-content: space-between;
            gap: 1rem;
            padding: 0.4rem 0 0.5rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            position: relative;
            overflow: hidden;
            text-decoration: none;
            letter-spacing: -0.01em;
            transition: color 0.3s ease;
        }

        .mobile-sublink::before {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0;
            height: 1px;
            width: 0;
            background: linear-gradient(to right, var(--accent-gold), rgba(197, 160, 101, 0.4));
            transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .mobile-sublink::after {
            display: none;
        }

        .mobile-sublink:hover,
        .mobile-sublink:focus-visible {
            color: rgba(249, 248, 246, 0.92);
            outline: none;
        }

        .mobile-sublink:hover::before,
        .mobile-sublink:focus-visible::before {
            width: 100%;
        }

        .mobile-sublink.active-page {
            color: var(--accent-gold) !important;
            font-style: italic;
            outline: none;
        }

        .mobile-menu-overlay.active .mobile-submenu.is-open {
            max-height: 104px !important;
            margin: -0.15rem 0 0.45rem !important;
            opacity: 1 !important;
            pointer-events: auto;
            transform: translateY(0) !important;
        }

        .mobile-link.is-submenu-open .mobile-submenu-icon {
            transform: rotate(180deg) !important;
        }

        .mobile-menu-overlay.active .mobile-link {
            opacity: 1;
            transform: translateY(0);
        }

        .mobile-menu-overlay.active .mobile-link:nth-child(1) {
            transition-delay: 0.15s;
        }

        .mobile-menu-overlay.active .mobile-link:nth-child(2) {
            transition-delay: 0.22s;
        }

        .mobile-menu-overlay.active .mobile-link:nth-child(3) {
            transition-delay: 0.29s;
        }

        .mobile-menu-overlay.active .mobile-link:nth-child(4) {
            transition-delay: 0.36s;
        }

        .mobile-menu-overlay.active .mobile-link:nth-child(5) {
            transition-delay: 0.43s;
        }

        .mobile-menu-overlay.active .mobile-link:nth-child(6) {
            transition-delay: 0.50s;
        }

        /* --- LEFT BOTTOM --- */
        .mobile-menu-left-bottom {
            opacity: 0;
            transform: translateY(12px);
            transition: opacity 0.5s ease 0.5s, transform 0.5s ease 0.5s;
        }

        .mobile-menu-overlay.active .mobile-menu-left-bottom {
            opacity: 1;
            transform: translateY(0);
        }

        /* Bottom row: socials + lang */
        .mobile-menu-bottom-row {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            width: 100%;
        }

        /* Socials + lang wrapper */
        .mobile-bottom-right {
            display: flex;
            align-items: center;
            gap: 1.2rem;
        }

        .mobile-support-link {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            padding: 0.8rem 1.6rem;
            border: 1px solid rgba(197, 160, 101, 0.6);
            color: var(--accent-gold);
            font-family: 'Syne', sans-serif;
            font-size: 0.68rem;
            font-weight: 700;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            background: transparent;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: color 0.35s;
            text-decoration: none;
        }

        .mobile-support-link::before {
            content: '';
            position: absolute;
            inset: 0;
            background: var(--accent-gold);
            transform: translateX(-100%);
            transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .mobile-support-link:hover {
            color: var(--text-primary) !important;
        }

        .mobile-support-link:hover::before {
            transform: translateX(0);
        }

        .mobile-support-link>* {
            position: relative;
            z-index: 1;
        }

        /* --- RIGHT PANEL CONTENT --- */
        .mobile-menu-right-top {
            opacity: 0;
            transform: translateY(-12px);
            transition: opacity 0.5s ease 0.25s, transform 0.5s ease 0.25s;
        }

        .mobile-menu-overlay.active .mobile-menu-right-top {
            opacity: 1;
            transform: translateY(0);
        }

        /* Monogram */
        .mobile-right-monogram {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2.8rem, 10vw, 4.5rem);
            font-weight: 300;
            color: var(--text-primary);
            letter-spacing: 0.08em;
            line-height: 1;
            margin-bottom: 0.5rem;
            opacity: 0;
            transform: translateY(-10px);
            transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
        }

        .mobile-menu-overlay.active .mobile-right-monogram {
            opacity: 1;
            transform: translateY(0);
        }

        /* Subtitle label */
        .mobile-right-label {
            font-family: 'Syne', sans-serif;
            font-size: 0.52rem;
            font-weight: 700;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--accent-gold);
            line-height: 1.7;
            opacity: 0;
            transform: translateY(-8px);
            transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s;
        }

        .mobile-menu-overlay.active .mobile-right-label {
            opacity: 1;
            transform: translateY(0);
        }

        .mobile-menu-tagline {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(1rem, 3.5vw, 1.4rem);
            font-weight: 400;
            font-style: italic;
            color: var(--text-primary);
            line-height: 1.5;
            margin-bottom: 1.5rem;
        }

        .mobile-menu-tagline strong {
            display: block;
            font-style: normal;
            font-weight: 600;
            font-size: 0.78em;
            letter-spacing: 0.05em;
            color: var(--text-secondary);
        }

        .mobile-menu-separator {
            width: 40px;
            height: 1px;
            background: linear-gradient(to right, var(--accent-gold), transparent);
            margin-bottom: 1.5rem;
        }

        /* Right info block */
        .mobile-info-block {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .mobile-info-item {
            display: flex;
            flex-direction: column;
            gap: 0.2rem;
        }

        .mobile-info-item__label {
            font-family: 'Syne', sans-serif;
            font-size: 0.52rem;
            font-weight: 700;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--text-light);
        }

        .mobile-info-item__value {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 0.78rem;
            color: var(--text-secondary);
            font-weight: 500;
        }

        /* --- RIGHT BOTTOM --- */
        .mobile-menu-right-bottom {
            opacity: 0;
            transform: translateY(12px);
            transition: opacity 0.5s ease 0.48s, transform 0.5s ease 0.48s;
            position: relative;
            z-index: 1;
        }

        .mobile-menu-overlay.active .mobile-menu-right-bottom {
            opacity: 1;
            transform: translateY(0);
        }

        /* (line removed — socials moved to bottom bar) */

        .mobile-socials {
            display: flex;
            flex-direction: row;
            gap: 0.45rem;
            margin-bottom: 0;
        }

        .mobile-socials a {
            width: 32px;
            height: 32px;
            border: 1px solid rgba(197, 160, 101, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(197, 160, 101, 0.7);
            background: transparent;
            transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.3s;
            text-decoration: none;
            flex-shrink: 0;
        }

        .mobile-socials a:hover {
            background: rgba(197, 160, 101, 0.15);
            color: var(--accent-gold);
            border-color: var(--accent-gold);
            transform: translateY(-2px);
        }

        .mobile-menu-mail {
            font-family: 'Syne', sans-serif;
            font-size: 0.52rem;
            font-weight: 600;
            letter-spacing: 0.08em;
            color: var(--text-light);
            text-transform: lowercase;
            text-decoration: none;
            transition: color 0.3s;
            display: block;
            word-break: break-all;
            margin-bottom: 0.2rem;
        }

        .mobile-menu-mail:hover {
            color: var(--accent-gold);
        }

        /* Language switcher in menu */
        .mobile-menu-language {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-top: 0;
        }

        .mobile-menu-language__label {
            font-family: 'Syne', sans-serif;
            font-size: 0.52rem;
            font-weight: 700;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: rgba(197, 160, 101, 0.6);
        }

        .mobile-lang-switch {
            display: flex;
            gap: 0;
            border: 1px solid rgba(197, 160, 101, 0.25);
        }

        .mobile-lang-option {
            padding: 0.3rem 0.6rem;
            font-family: 'Syne', sans-serif;
            font-size: 0.56rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            background: transparent;
            border: 0;
            color: rgba(249, 248, 246, 0.5);
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
            transition: background 0.25s, color 0.25s;
        }

        .mobile-lang-option+.mobile-lang-option {
            border-left: 1px solid rgba(197, 160, 101, 0.2);
        }

        .mobile-lang-option img {
            width: 16px;
            height: 11px;
            object-fit: cover;
        }

        .mobile-lang-option.active {
            background: rgba(197, 160, 101, 0.15);
            color: var(--accent-gold);
        }

        .mobile-lang-option:hover:not(.active) {
            background: rgba(197, 160, 101, 0.08);
            color: rgba(249, 248, 246, 0.8);
        }

        /* Number accents on links */
        .mobile-link-num {
            font-family: 'Syne', sans-serif;
            font-size: 0.5rem;
            font-weight: 700;
            letter-spacing: 0.15em;
            color: rgba(197, 160, 101, 0.4);
            flex-shrink: 0;
            display: block;
            align-self: center;
            margin-bottom: 0.1em;
            transition: color 0.3s;
        }

        .mobile-link:hover .mobile-link-num,
        .mobile-sublink:hover .mobile-link-num {
            color: rgba(197, 160, 101, 0.8);
        }

        /* ---- short screens ---- */
        @media (max-height: 700px) {

            .mobile-menu-left,
            .mobile-menu-right {
                padding-top: calc(5.5rem + env(safe-area-inset-top, 0px));
            }

            .mobile-link {
                font-size: clamp(1.9rem, 7vw, 2.8rem);
                padding: 0.4rem 0;
            }

            .mobile-nav-label {
                margin-bottom: 1rem;
            }
        }

        body.menu-open {
            overflow: hidden;
        }

        body.menu-open nav {
            background: transparent;
            border-bottom-color: transparent;
            backdrop-filter: none;
            -webkit-backdrop-filter: none;
        }

        body.menu-open .container.nav-inner {
            background: transparent;
            border-color: transparent;
            box-shadow: none;
            backdrop-filter: none;
            -webkit-backdrop-filter: none;
        }

        /* Hide logo and bottom separator when fullscreen menu is open */
        body.menu-open nav .logo {
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.25s ease;
        }

        body.menu-open nav::after {
            opacity: 0 !important;
        }

        @media (max-width: 1024px) {
            nav {
                padding: calc(0.72rem + env(safe-area-inset-top, 0px)) 0 0;
                background: transparent;
                backdrop-filter: none;
                -webkit-backdrop-filter: none;
                border-bottom: 0;
            }

            nav.scrolled {
                padding: calc(0.5rem + env(safe-area-inset-top, 0px)) 0 0;
                background: rgba(249, 248, 246, 0.97);
                backdrop-filter: blur(20px);
                -webkit-backdrop-filter: blur(20px);
                box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
            }

            .container.nav-inner {
                max-width: none;
                width: 100%;
                min-height: 62px;
                margin: 0;
                box-sizing: border-box;
                padding-left: clamp(1.2rem, 5vw, 1.5rem);
                padding-right: clamp(1.2rem, 5vw, 1.5rem);
                background: transparent;
                border: none;
                border-radius: 0;
                box-shadow: none;
                backdrop-filter: none;
                -webkit-backdrop-filter: none;
                transition: min-height 0.4s var(--transition), background 0.4s;
            }

            nav.scrolled .container.nav-inner {
                min-height: 58px;
                background: transparent;
            }

            .logo img {
                width: auto;
                max-height: 44px;
                filter: none;
                transition: filter 0.4s, max-height 0.4s;
            }

            /* On transparent hero — invert logo to white */
            .transparent-hero-header nav:not(.scrolled) .logo img {
                filter: brightness(0) invert(1);
            }

            nav.scrolled .logo img {
                width: auto;
                max-height: 42px;
                filter: none;
            }

            .nav-right {
                gap: 0.75rem;
            }

            .mobile-toggle {
                display: flex !important;
                width: 44px;
                height: 44px;
                background: rgba(255, 255, 255, 0.82);
                border: 1px solid rgba(26, 46, 40, 0.1);
                backdrop-filter: blur(8px);
                -webkit-backdrop-filter: blur(8px);
                box-shadow: 0 2px 12px rgba(26, 46, 40, 0.08);
            }
        }

        /* --- POPRAWKI HIERARCHII HERO (MOBILE) --- */
        @media (max-width: 768px) {
            .hero {
                padding-top: 4rem;
            }

            .hero-content {
                margin-bottom: 2.4rem;
            }

            .hero-content .display-text {
                font-size: clamp(2.75rem, 12vw, 3.35rem) !important;
                line-height: 1;
                letter-spacing: 0;
                margin-bottom: 1.15rem;
            }

            .hero-content p {
                font-size: clamp(0.84rem, 3.6vw, 0.94rem) !important;
                line-height: 1.62 !important;
                margin: 1.15rem auto 2rem;
                color: var(--text-secondary);
                max-width: min(100%, 29rem) !important;
                padding: 0 0.15rem;
                text-wrap: pretty;
                overflow-wrap: break-word;
            }

            .hero-content .subtitle {
                font-size: 0.66rem !important;
                letter-spacing: 0.22em;
                word-spacing: 0.2em;
                line-height: 1.8;
                margin-bottom: 2rem;
                max-width: 100%;
                white-space: normal;
                opacity: 0.88;
            }

            .hero-eyebrow .eyebrow {
                font-size: 0.58rem;
                letter-spacing: 0.18em;
            }

            .hero-content .hero-kicker {
                gap: 0.7rem;
                word-spacing: 0;
            }

            .hero-kicker span {
                gap: 0.7rem;
            }

            .hero-actions {
                gap: 0.5rem 1.15rem;
            }

            .hero-action-primary {
                min-height: 41px;
                width: min(100%, 248px);
                padding: 0.65rem 1.23rem;
                font-size: 0.68rem;
            }

            .hero-action-secondary {
                min-height: 44px;
                padding: 0.7rem 0;
            }

            .hero-image-container {
                max-width: 520px;
                margin: 0 auto;
            }

            .hero-img-main {
                height: min(58vh, 560px);
                border-radius: 48px;
            }

            .hero-decoration {
                padding: 0;
                width: calc(100% - 2rem);
                margin: -4rem auto 2rem;
                left: auto;
                right: auto;
                border-radius: 0px;
            }

            .hero-decoration-inner {
                padding: 0.95rem 1rem;
                grid-template-columns: 46px minmax(0, 1fr);
                gap: 0.82rem;
            }

            .hero-decoration-title-row {
                flex-wrap: wrap;
                gap: 0.55rem;
            }

            .hero-decoration h4 {
                white-space: normal;
                font-size: 1.15rem;
                line-height: 1.02;
            }

            .hero-decoration p {
                font-size: 0.68rem;
                line-height: 1.42;
                max-width: 100%;
            }

            .hero-emblem-container {
                width: 46px;
                height: 46px;
            }

            .hero-emblem {
                width: 32px;
                height: 32px;
                margin: 0;
            }

            .hero-emblem-icon {
                font-size: 1.16rem;
            }
        }

        @media (max-width: 480px) {
            nav {
                padding: calc(0.62rem + env(safe-area-inset-top, 0px)) 0 0;
            }

            .container.nav-inner {
                min-height: 72px;
                margin: 0;
                box-sizing: border-box;
                padding-left: 0.65rem;
                padding-right: 0.4rem;
            }

            .logo img {
                width: auto;
            }

            nav.scrolled .logo img {
                width: auto;
            }

            .mobile-toggle {
                width: 42px;
                height: 42px;
            }

            .mobile-toggle .bar {
                width: 26px;
            }

            .mobile-menu-content {
                padding-top: calc(5.8rem + env(safe-area-inset-top, 0px));
            }

            .mobile-link {
                font-size: clamp(2rem, 10.5vw, 2.55rem);
                padding: 0.88rem 0;
            }

            .mobile-socials a {
                width: 42px;
                height: 42px;
            }

            .hero {
                padding-top: 2.8rem;
            }

            .hero-content .display-text {
                font-size: clamp(2.55rem, 12vw, 3.05rem) !important;
            }

            .hero-content p {
                font-size: 0.82rem !important;
                line-height: 1.55 !important;
                max-width: 19.5rem !important;
                padding: 0;
            }

            .hero-eyebrow .eyebrow {
                font-size: 0.5rem;
                letter-spacing: 0.14em;
            }

            .hero-content .hero-kicker {
                font-size: 0.58rem !important;
                letter-spacing: 0.16em;
                gap: 0.55rem;
            }

            .hero-kicker span {
                gap: 0.55rem;
            }

            .hero-actions {
                flex-direction: column;
                align-items: center;
                gap: 0.7rem;
            }

            .hero-action-primary {
                width: min(100%, 243px);
            }

            .hero-action-secondary {
                width: auto;
            }

            .hero-img-main {
                height: min(52vh, 500px);
                border-radius: 38px;
            }

            .hero-decoration-inner {
                padding: 0.88rem 0.9rem;
                grid-template-columns: 40px minmax(0, 1fr);
                gap: 0.72rem;
                align-items: flex-start;
                text-align: left;
            }

            .hero-decoration {
                width: calc(100% - 1.55rem);
                margin: -3.65rem auto 1.6rem;
            }

            .hero-decoration h4 {
                font-size: 1.03rem;
            }

            .hero-decoration p {
                font-size: 0.64rem;
            }

            .hero-emblem-container {
                width: 40px;
                height: 40px;
            }

            .hero-emblem {
                width: 29px;
                height: 29px;
            }

            .hero-emblem-icon {
                font-size: 1.02rem;
            }

            .hero-decoration-role {
                font-size: 0.46rem;
                letter-spacing: 0.14em;
            }
        }

        /* ═══════════════════════════════════════════
           PARALLAX MANIFESTO SECTION
        ═══════════════════════════════════════════ */
        .manifesto-section {
            position: relative;
            min-height: 50vh;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .manifesto-bg {
            position: absolute;
            inset: 0;
            background: url('/images/LWGQw9V.webp') center/cover;
            transform: scale(1.15);
            filter: brightness(.25) saturate(.6);
            will-change: transform;
        }

        .manifesto-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg,
                    rgba(10, 26, 20, .92) 0%,
                    rgba(10, 26, 20, .75) 50%,
                    rgba(10, 26, 20, .88) 100%);
        }

        .manifesto-deco {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
        }

        .manifesto-content {
            position: relative;
            z-index: 2;
            max-width: 1400px;
            margin: 0 auto;
            text-align: center;
            padding: 5rem 2rem;
            color: white;
        }

        .manifesto-eyebrow {
            font-family: 'Syne', sans-serif;
            font-size: .68rem;
            letter-spacing: .3em;
            text-transform: uppercase;
            color: var(--accent-gold);
            margin-bottom: 2.5rem;
            display: block;
        }

        .manifesto-quote {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(1.75rem, 4vw, 3.2rem);
            font-weight: 300;
            line-height: 1.2;
            font-style: italic;
            margin-bottom: 3rem;
        }

        .manifesto-quote em {
            color: rgba(197, 160, 101, 1);
            font-style: normal;
        }

        .manifesto-author {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1.5rem;
        }

        .manifesto-line {
            width: 60px;
            height: 1px;
            background: rgba(255, 255, 255, .3);
        }

        .manifesto-author span {
            font-family: 'Syne', sans-serif;
            font-size: .72rem;
            letter-spacing: .2em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, .5);
        }

        .manifesto-values {
            display: flex;
            gap: 0;
            margin-top: 5rem;
            border-top: 1px solid rgba(255, 255, 255, .08);
        }

        .manifesto-val {
            flex: 1;
            padding: 2.5rem 2rem;
            border-right: 1px solid rgba(255, 255, 255, .08);
            text-align: center;
            transition: .3s var(--transition);
        }

        .manifesto-val:last-child {
            border-right: none;
        }

        .manifesto-val:hover {
            background: rgba(255, 255, 255, .04);
        }

        .manifesto-val i {
            font-size: 1.8rem;
            color: var(--accent-gold);
            margin-bottom: 1rem;
            display: block;
        }

        .manifesto-val h4 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.2rem;
            color: white;
            margin-bottom: .5rem;
        }

        .manifesto-val p {
            font-size: .82rem;
            color: rgba(255, 255, 255, .45);
            line-height: 1.6;
        }

        @media(max-width:768px) {
            .manifesto-section {
                min-height: auto;
                padding: 0;
            }

            .manifesto-content {
                padding: 2rem;
            }

            .manifesto-quote {
                font-family: 'Cormorant Garamond', serif;
                font-size: clamp(1.3rem, 4vw, 3.2rem);
                font-weight: 300;
                line-height: 1.2;
                font-style: italic;
                margin-bottom: 3rem;
            }

            .manifesto-values {
                flex-direction: column;
            }

            .manifesto-val {
                border-right: none;
                border-bottom: 1px solid rgba(255, 255, 255, .08);
            }
        }

        /* ═══════════════════════════════════════════
           SECTION-SPECIFIC REVEAL MOTIONS
        ═══════════════════════════════════════════ */
        .foundation-section .found-section-header.reveal {
            opacity: 0;
            transform: translateY(26px) scale(0.985);
            filter: blur(12px);
            clip-path: inset(16% 0 16% 0);
            transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.85s cubic-bezier(0.22, 1, 0.36, 1),
                filter 0.85s cubic-bezier(0.22, 1, 0.36, 1),
                clip-path 0.85s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .foundation-section .found-section-header.reveal.active {
            opacity: 1;
            transform: translateY(0) scale(1);
            filter: blur(0);
            clip-path: inset(0);
        }

        .foundation-section .found-grid>.reveal {
            opacity: 0;
            transform: translateY(38px) rotateX(8deg) scale(0.975);
            transform-origin: center top;
            filter: blur(10px);
            transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
                filter 0.9s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .foundation-section .found-grid>.reveal.active {
            opacity: 1;
            transform: translateY(0) rotateX(0) scale(1);
            filter: blur(0);
        }

        .foundation-section .found-cards.reveal .found-card {
            opacity: 0;
            transform: translateY(30px) scale(0.965);
            filter: blur(7px);
            transition: opacity 0.72s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.72s cubic-bezier(0.16, 1, 0.3, 1),
                filter 0.72s cubic-bezier(0.16, 1, 0.3, 1),
                background 0.45s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.45s cubic-bezier(0.16, 1, 0.3, 1),
                padding-left 0.45s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .foundation-section .found-cards.reveal.active .found-card {
            opacity: 1;
            transform: translateY(0) scale(1);
            filter: blur(0);
        }

        .foundation-section .found-cards.reveal.active .found-card:nth-child(1) {
            transition-delay: 0.12s;
        }

        .foundation-section .found-cards.reveal.active .found-card:nth-child(2) {
            transition-delay: 0.24s;
        }

        .foundation-section .found-cards.reveal.active .found-card:nth-child(3) {
            transition-delay: 0.36s;
        }

        .manifesto-section .manifesto-eyebrow.reveal {
            opacity: 0;
            transform: translateY(18px);
            filter: blur(10px);
            transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
                filter 0.75s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .manifesto-section .manifesto-eyebrow.reveal.active {
            opacity: 1;
            transform: translateY(0);
            filter: blur(0);
        }

        @keyframes manifestoQuoteEntrance {
            0% {
                opacity: 0;
                transform: translate3d(0, 56px, 0) scale(0.94);
                filter: blur(18px);
                clip-path: inset(0 0 32% 0);
                text-shadow: 0 0 0 rgba(197, 160, 101, 0);
            }

            52% {
                opacity: 1;
                filter: blur(4px);
                clip-path: inset(0 0 0 0);
                text-shadow: 0 20px 46px rgba(197, 160, 101, 0.16);
            }

            78% {
                transform: translate3d(0, -5px, 0) scale(1.006);
            }

            100% {
                opacity: 1;
                transform: translate3d(0, 0, 0) scale(1);
                filter: blur(0);
                clip-path: inset(0);
                text-shadow: 0 0 0 rgba(197, 160, 101, 0);
            }
        }

        .manifesto-section .manifesto-quote.reveal {
            opacity: 0;
            transform: translate3d(0, 56px, 0) scale(0.94);
            filter: blur(18px);
            clip-path: inset(0 0 32% 0);
            will-change: opacity, transform, filter, clip-path;
            transition: none;
        }

        .manifesto-section .manifesto-quote.reveal.active {
            animation: manifestoQuoteEntrance 1.18s cubic-bezier(0.16, 1, 0.3, 1) 0.06s both;
        }

        .manifesto-section .manifesto-quote.reveal em {
            display: inline-block;
            opacity: 0;
            transform: translateY(24px);
            filter: blur(10px);
            transition: opacity 0.72s cubic-bezier(0.16, 1, 0.3, 1) 0.42s,
                transform 0.72s cubic-bezier(0.16, 1, 0.3, 1) 0.42s,
                filter 0.72s cubic-bezier(0.16, 1, 0.3, 1) 0.42s;
        }

        .manifesto-section .manifesto-quote.reveal.active em {
            opacity: 1;
            transform: translateY(0);
            filter: blur(0);
        }

        .manifesto-section .manifesto-author.reveal {
            opacity: 0;
            transform: translateY(18px) scale(0.98);
            transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .manifesto-section .manifesto-author.reveal.active {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        .manifesto-section .manifesto-author .manifesto-line {
            transform: scaleX(0);
            transform-origin: center;
            transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.22s;
        }

        .manifesto-section .manifesto-author.active .manifesto-line {
            transform: scaleX(1);
        }

        @keyframes photoRiseIn {
            0% {
                opacity: 0;
                transform: translateY(40px) scale(0.88) rotateX(14deg);
                filter: blur(12px) brightness(0.7);
                clip-path: inset(12% 6% 12% 6% round 4px);
            }

            45% {
                opacity: 0.85;
                filter: blur(2px) brightness(1.04);
            }

            100% {
                opacity: 1;
                transform: translateY(0) scale(1) rotateX(0deg);
                filter: blur(0) brightness(1);
                clip-path: inset(0% 0% 0% 0% round 0px);
            }
        }


        .contact-section .contact-info.reveal {
            opacity: 0;
            transform: translateY(34px) skewY(0.7deg);
            filter: blur(10px);
            clip-path: inset(0 10% 0 0);
            transition: opacity 0.86s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.86s cubic-bezier(0.16, 1, 0.3, 1),
                filter 0.86s cubic-bezier(0.16, 1, 0.3, 1),
                clip-path 0.86s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .contact-section .contact-info.reveal.active {
            opacity: 1;
            transform: translateY(0) skewY(0);
            filter: blur(0);
            clip-path: inset(0);
        }

        .contact-section .contact-grid>.reveal:not(.contact-info) {
            opacity: 0;
            transform: translateY(42px) scale(0.975);
            filter: blur(9px);
            transition: opacity 0.86s cubic-bezier(0.16, 1, 0.3, 1) 0.08s,
                transform 0.86s cubic-bezier(0.16, 1, 0.3, 1) 0.08s,
                filter 0.86s cubic-bezier(0.16, 1, 0.3, 1) 0.08s;
        }

        .contact-section .contact-grid>.reveal:not(.contact-info).active {
            opacity: 1;
            transform: translateY(0) scale(1);
            filter: blur(0);
        }

        .contact-section .contact-grid>.reveal:not(.contact-info) .field,
        .contact-section .contact-grid>.reveal:not(.contact-info) .checkbox-row,
        .contact-section .contact-grid>.reveal:not(.contact-info) .btn-primary {
            opacity: 0;
            transform: translateY(18px);
            transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .contact-section .contact-grid>.reveal:not(.contact-info).active .field,
        .contact-section .contact-grid>.reveal:not(.contact-info).active .checkbox-row,
        .contact-section .contact-grid>.reveal:not(.contact-info).active .btn-primary {
            opacity: 1;
            transform: translateY(0);
        }

        .contact-section .contact-grid>.reveal:not(.contact-info).active .field:nth-child(1) {
            transition-delay: 0.14s;
        }

        .contact-section .contact-grid>.reveal:not(.contact-info).active .field:nth-child(2) {
            transition-delay: 0.20s;
        }

        .contact-section .contact-grid>.reveal:not(.contact-info).active .field:nth-child(3) {
            transition-delay: 0.26s;
        }

        .contact-section .contact-grid>.reveal:not(.contact-info).active .field:nth-child(4) {
            transition-delay: 0.32s;
        }

        .contact-section .contact-grid>.reveal:not(.contact-info).active .checkbox-row {
            transition-delay: 0.38s;
        }

        .contact-section .contact-grid>.reveal:not(.contact-info).active .btn-primary {
            transition-delay: 0.48s;
        }

        .modern-footer .footer-brand-section.reveal {
            opacity: 0;
            transform: translateY(36px) scale(0.985);
            filter: blur(12px);
            clip-path: inset(12% 0 0 0);
            transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
                filter 0.9s cubic-bezier(0.16, 1, 0.3, 1),
                clip-path 0.9s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .modern-footer .footer-brand-section.reveal.active {
            opacity: 1;
            transform: translateY(0) scale(1);
            filter: blur(0);
            clip-path: inset(0);
        }

        .modern-footer .footer-social-strip.reveal,
        .modern-footer .footer-grid-premium.reveal,
        .modern-footer .footer-bottom-premium.reveal {
            opacity: 0;
            transform: translateY(28px);
            filter: blur(8px);
            transition: opacity 0.82s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.82s cubic-bezier(0.16, 1, 0.3, 1),
                filter 0.82s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .modern-footer .footer-social-strip.reveal.active,
        .modern-footer .footer-grid-premium.reveal.active,
        .modern-footer .footer-bottom-premium.reveal.active {
            opacity: 1;
            transform: translateY(0);
            filter: blur(0);
        }

        .modern-footer .footer-social-strip.reveal a,
        .modern-footer .footer-grid-premium.reveal .footer-col {
            opacity: 0;
            transform: translateY(18px);
            transition: opacity 0.58s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.58s cubic-bezier(0.22, 1, 0.36, 1),
                background 0.4s var(--transition),
                box-shadow 0.4s var(--transition),
                color 0.4s var(--transition);
        }

        .modern-footer .footer-social-strip.reveal.active a,
        .modern-footer .footer-grid-premium.reveal.active .footer-col {
            opacity: 1;
            transform: translateY(0);
        }

        .modern-footer .footer-social-strip.reveal.active a:nth-child(1) {
            transition-delay: 0.10s;
        }

        .modern-footer .footer-social-strip.reveal.active a:nth-child(2) {
            transition-delay: 0.18s;
        }

        .modern-footer .footer-social-strip.reveal.active a:nth-child(3) {
            transition-delay: 0.26s;
        }

        .modern-footer .footer-grid-premium.reveal.active .footer-col:nth-child(1) {
            transition-delay: 0.12s;
        }

        .modern-footer .footer-grid-premium.reveal.active .footer-col:nth-child(2) {
            transition-delay: 0.20s;
        }

        .modern-footer .footer-grid-premium.reveal.active .footer-col:nth-child(3) {
            transition-delay: 0.28s;
        }

        .modern-footer .footer-grid-premium.reveal.active .footer-col:nth-child(4) {
            transition-delay: 0.36s;
        }

        @media (prefers-reduced-motion: reduce) {

            .foundation-section .reveal,
            .foundation-section .found-card,
            .manifesto-section .reveal,
            .insta-section .insta-photo-grid.reveal,
            .insta-section .insta-photo-item,
            .contact-section .reveal,
            .contact-section .field,
            .contact-section .checkbox-row,
            .contact-section .btn-primary,
            .modern-footer .reveal,
            .modern-footer .footer-col,
            .modern-footer .footer-social-strip a {
                opacity: 1 !important;
                transform: none !important;
                filter: none !important;
                clip-path: none !important;
                animation: none !important;
                transition: none !important;
            }
        }

/* --- Blok 2 (z index.html) --- */
/* Premium Minimalism & Equal Height Columns Override */
        @media (min-width: 992px) {
            .news-wrapper {
                align-items: stretch !important;
            }

            .news-card.featured {
                display: flex !important;
                flex-direction: column;
                height: 100%;
                border: 1px solid rgba(0, 0, 0, 0.04);
                border-radius: 0;
                padding: 0 !important;
                background: #fff;
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
                overflow: hidden;
            }

            .news-card.featured .news-img-wrapper {
                margin: 0 !important;
                border-radius: 0 !important;
                box-shadow: none !important;
            }

            .news-card.featured .news-content {
                flex-grow: 1;
                display: flex;
                flex-direction: column;
                padding: 1.5rem !important;
            }

            .news-card.featured .news-btn {
                margin-top: auto;
            }

            .news-side-list {
                display: flex !important;
                flex-direction: column;
                justify-content: space-between;
                height: 100%;
                gap: 0.75rem;
            }

            /* Make side cards stretch to fill space */
            .news-card--compact {
                flex: 1;
                display: flex;
                flex-direction: column;
                border: 1px solid rgba(0, 0, 0, 0.04) !important;
                border-radius: 0;
                padding: 0 !important;
                background: #fff !important;
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02) !important;
                justify-content: flex-start;
                overflow: hidden;
            }

            .news-card--compact .news-img-link {
                display: block !important;
                height: 240px;
                width: 100%;
            }

            .news-card--compact .news-img-wrapper {
                height: 100% !important;
                width: 100% !important;
                border-radius: 0 !important;
                margin: 0 !important;
            }

            .news-card--compact .news-content {
                padding: 1.25rem !important;
                margin-top: 0 !important;
                flex-grow: 1;
                display: flex;
                flex-direction: column;
            }
        }

        /* Side list images: refine outside media query to be safe */
        .news-card--compact .news-img-link {
            display: block !important;
            height: 240px;
            width: 100%;
        }

        .news-card--compact .news-img-wrapper {
            height: 100% !important;
            width: 100% !important;
            border-radius: 0 !important;
            margin: 0 !important;
        }

        .news-card--compact .news-content {
            padding: 1.25rem !important;
            margin-top: 0 !important;
        }

/* --- Blok 3 (z index.html) --- */
/* Force sharp corners on all news cards as requested */
        .news-card,
        .news-card .news-img-wrapper,
        .news-card img,
        .news-card--compact,
        .news-card.featured {
            border-radius: 0 !important;
        }

/* --- Blok 4 (z index.html) --- */
/* Force remove labels and all border-radius in news section */
        .news-section .category-label {
            display: none !important;
        }

        .news-section,
        .news-section * {
            border-radius: 0 !important;
        }

/* --- Blok 5 (z index.html) --- */
/* Contact Section Enhancements */
        .contact-section {
            padding: 12rem 0 !important;
            background: linear-gradient(180deg, #FDFDFD 0%, #F5F4F0 100%) !important;
            position: relative;
        }

        .contact-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(200, 169, 110, 0.3), transparent);
        }

        .contact-grid {
            gap: 8rem !important;
        }

        @media (max-width: 992px) {
            .contact-section {
                padding: 8rem 0 !important;
            }

            .contact-grid {
                gap: 4rem !important;
            }
        }

/* --- Blok 6 (z index.html) --- */
/* Mobile header: transparent by default, solid when scrolled */
        nav#navbar::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: clamp(7.5rem, 15vw, 12rem);
            z-index: 0;
            pointer-events: none;
            opacity: 0;
            background: linear-gradient(180deg, rgb(8 18 14 / 69%) 0%, rgba(8, 18, 14, 0.34) 44%, rgb(18 29 25 / 56%) 100%);
            backdrop-filter: blur(12px) saturate(1.04);
            -webkit-backdrop-filter: blur(12px) saturate(1.04);
            mask-image: linear-gradient(180deg, #000 0%, #000 54%, transparent 100%);
            -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 54%, transparent 100%);
            transition: opacity var(--sticky-header-duration) var(--sticky-header-ease);
        }

        @media (max-width: 1024px) {
            nav#navbar {
                background: transparent !important;
                border-bottom: none !important;
                box-shadow: none !important;
            }

            nav#navbar.scrolled {
                background: rgba(249, 248, 246, 0.97) !important;
                border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
                backdrop-filter: blur(20px) !important;
                -webkit-backdrop-filter: blur(20px) !important;
            }

            /* When over dark hero — keep white box, white bars */
            .transparent-hero-header nav#navbar:not(.scrolled) .mobile-toggle {
                background: rgb(0 0 0 / 15%) !important;
                border-color: rgba(255, 255, 255, 0.4) !important;
                color: white !important;
                backdrop-filter: blur(8px) !important;
                -webkit-backdrop-filter: blur(8px) !important;
            }

            /* When menu is open — dark square with gold bars */
            body.menu-open nav#navbar .mobile-toggle {
                background: rgba(255, 255, 255, 0.08) !important;
                border-color: rgba(197, 160, 101, 0.4) !important;
                color: rgba(197, 160, 101, 0.9) !important;
                backdrop-filter: none !important;
            }

            /* Menu open state — keep transparent, overlay covers */
            body.menu-open nav#navbar {
                background: transparent !important;
                border-bottom: none !important;
                backdrop-filter: none !important;
                -webkit-backdrop-filter: none !important;
                box-shadow: none !important;
            }

            nav#navbar .container.nav-inner,
            nav#navbar.scrolled .container.nav-inner,
            body.menu-open nav#navbar .container.nav-inner {
                border: 0 !important;
                box-shadow: none !important;
                background: transparent !important;
            }
        }

/* --- Blok 7 (z index.html) --- */
@media (max-width: 1024px) {
            body.home-page:not(.mobile-header-visible):not(.menu-open) nav#navbar {
                opacity: 0 !important;
                pointer-events: none !important;
                transform: translateY(-105%) scale(0.985) !important;
                filter: blur(8px);
            }

            body.home-page nav#navbar {
                will-change: transform, opacity, filter;
                transition: transform var(--sticky-header-duration, 0.36s) var(--sticky-header-ease, var(--transition)),
                    opacity var(--sticky-header-duration, 0.36s) var(--sticky-header-ease, var(--transition)),
                    filter var(--sticky-header-duration, 0.36s) var(--sticky-header-ease, var(--transition)),
                    background var(--sticky-header-duration, 0.36s) var(--sticky-header-ease, var(--transition)),
                    padding var(--sticky-header-duration, 0.36s) var(--sticky-header-ease, var(--transition)) !important;
            }

            body.home-page.mobile-header-visible nav#navbar,
            body.home-page.menu-open nav#navbar {
                opacity: 1;
                pointer-events: auto !important;
                transform: translateY(0);
                filter: blur(0);
            }

            body.home-page .container.nav-inner::after {
                content: '';
                position: absolute;
                left: 0;
                right: 0;
                bottom: 0;
                height: 1px;
                background: linear-gradient(90deg, transparent, rgba(197, 160, 101, 0.78), transparent);
                opacity: 0;
                transform: scaleX(0);
                transform-origin: center;
                pointer-events: none;
            }

            body.home-page.mobile-header-animate-in nav#navbar {
                animation: siteStickyHeaderReveal var(--sticky-header-duration, 0.36s) var(--sticky-header-ease, var(--transition)) both;
            }

            body.home-page.mobile-header-animate-in .container.nav-inner {
                animation: siteStickyHeaderSurface var(--sticky-header-duration, 0.36s) var(--sticky-header-ease, var(--transition)) both;
            }

            body.home-page.mobile-header-animate-in .container.nav-inner::after {
                animation: siteStickyHeaderLine var(--sticky-header-duration, 0.36s) var(--sticky-header-ease, var(--transition)) both;
            }
        }

        /* Compact mobile cookie window */
        .cookie-banner .cookie-title,
        .cookie-banner h1,
        .cookie-banner h2,
        .cookie-banner h3,
        .cookie-banner h4,
        .cookie h1,
        .cookie h2,
        .cookie h3,
        .cookie h4 {
            letter-spacing: 0 !important;
            text-transform: none !important;
        }

        @media (max-width: 768px) {
            .cookie-banner {
                left: 1rem !important;
                right: 1rem !important;
                bottom: calc(1rem + env(safe-area-inset-bottom, 0px)) !important;
                width: auto !important;
                max-width: 360px !important;
                margin: 0 auto !important;
                padding: 1rem 1.05rem !important;
                gap: 0.65rem !important;
                border-left: 0 !important;
                border-top: 2px solid var(--accent-gold) !important;
                box-shadow: 0 14px 38px rgba(26, 46, 40, 0.12) !important;
            }

            .cookie-header {
                gap: 0.7rem !important;
                align-items: center !important;
            }

            .cookie-icon {
                width: 34px !important;
                height: 34px !important;
                font-size: 0.95rem !important;
            }

            .cookie-title,
            .cookie-banner h4 {
                font-size: 1.12rem !important;
                line-height: 1.12 !important;
                margin: 0 !important;
            }

            .cookie-text,
            .cookie-banner p {
                font-size: 0.8rem !important;
                line-height: 1.45 !important;
                margin: 0 !important;
            }

            .cookie-btns {
                gap: 0.55rem !important;
                margin-top: 0.15rem !important;
            }

            .cookie-btns .btn,
            .cookie-btn {
                min-height: 38px !important;
                padding: 0.65rem 1rem !important;
                font-size: 0.68rem !important;
            }

            .cookie-link {
                font-size: 0.78rem !important;
                padding: 0.25rem 0 !important;
            }

            .cookie {
                left: 1rem !important;
                right: 1rem !important;
                bottom: calc(1rem + env(safe-area-inset-bottom, 0px)) !important;
                max-width: 360px !important;
                margin: 0 auto !important;
                padding: 1rem 1.05rem !important;
                border-left: 0 !important;
                border-top: 2px solid var(--gold) !important;
                box-shadow: 0 14px 38px rgba(10, 26, 20, 0.14) !important;
            }

            .cookie h4 {
                font-size: 1.12rem !important;
                line-height: 1.12 !important;
                margin-bottom: 0.45rem !important;
            }

            .cookie p {
                font-size: 0.78rem !important;
                line-height: 1.45 !important;
                margin-bottom: 0.8rem !important;
            }
        }

        /* --- PREMIUM RICH CAROUSELS (WYSTĄPIENIA & POSTULATY) --- */
        .zc-carousel-wrapper {
            position: relative;
            width: 100%;
            margin-top: 5.5rem;
        }
        .zc-carousel-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 2.5rem;
            gap: 1.5rem;
            flex-wrap: wrap;
            border-bottom: 1px solid rgba(26, 46, 40, 0.08);
            padding-bottom: 1.5rem;
        }
        .zc-carousel-title-group {
            max-width: 650px;
        }
        .zc-carousel-actions {
            display: flex;
            gap: 0.75rem;
            align-items: center;
        }
        .zc-carousel-btn {
            width: 38px;
            height: 28px;
            border-radius: 4px;
            background: transparent;
            border: 1px solid rgba(26, 46, 40, 0.18);
            color: var(--text-secondary, #5C6B66);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            font-size: 0.7rem;
            box-shadow: none;
            flex-shrink: 0;
        }
        .zc-carousel-btn:hover {
            background: var(--accent-gold, #C5A065);
            border-color: transparent;
            color: #FFFFFF;
            transform: none;
            box-shadow: none;
        }
        .zc-carousel-btn:active {
            transform: scale(0.95);
        }
        @media (max-width: 768px) {
            .zc-carousel-btn {
                width: 34px;
                height: 26px;
                font-size: 0.65rem;
            }
        }
        .zc-carousel-track {
            display: flex;
            flex-wrap: nowrap;
            gap: 2rem;
            overflow: hidden;
            padding: 0.5rem 0 2.5rem 0;
            will-change: transform;
        }
        .zc-video-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin-top: 2rem;
        }
        @media (max-width: 640px) {
            .zc-video-grid {
                grid-template-columns: 1fr;
            }
        }
        .zc-slide {
            flex: 0 0 calc(50% - 1rem);
            min-width: 0;
            border-radius: 0px;
            overflow: visible;
            position: relative;
            transition: transform 0.4s ease;
            display: flex;
        }
        @media (max-width: 640px) {
            .zc-slide {
                flex: 0 0 100%;
            }
        }

        /* Wystąpienia Video Slide Style (Modern Luxury Brutalism & Card) */
        .zc-video-card {
            background: #FFFFFF;
            border: 1px solid rgba(26, 46, 40, 0.08);
            box-shadow: 0 16px 38px -10px rgba(26, 46, 40, 0.07);
            border-radius: 0px;
            display: flex;
            flex-direction: column;
            width: 100%;
            overflow: hidden;
            position: relative;
            transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .zc-video-card:hover {
            transform: translateY(-8px);
            border-color: rgba(197, 160, 101, 0.45);
            box-shadow: 0 28px 54px -12px rgba(26, 46, 40, 0.15);
        }
        .zc-video-wrap {
            position: relative;
            width: 100%;
            aspect-ratio: 16 / 10;
            background: #1A2E28;
            overflow: hidden;
        }
        .zc-video-el {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            border-radius: 0px;
            transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .zc-video-card:hover .zc-video-el {
            transform: scale(1.06);
        }
        .zc-video-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(26, 46, 40, 0.1) 0%, rgba(26, 46, 40, 0.55) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.35s ease;
            z-index: 2;
        }
        .zc-video-card:hover .zc-video-overlay {
            background: linear-gradient(180deg, rgba(26, 46, 40, 0.05) 0%, rgba(26, 46, 40, 0.35) 100%);
        }
        .zc-play-btn {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.12);
            border: none;
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            color: #FFFFFF;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            padding-left: 4px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .zc-video-card:hover .zc-play-btn {
            background: rgba(197, 160, 101, 0.85);
            border: none;
            color: #FFFFFF;
            transform: scale(1.12);
            box-shadow: 0 12px 32px rgba(197, 160, 101, 0.4);
        }
        .zc-duration {
            position: absolute;
            bottom: 14px;
            right: 14px;
            background: rgba(13, 23, 20, 0.75);
            backdrop-filter: blur(6px);
            color: #FFFFFF;
            font-size: 0.75rem;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: 0px;
            letter-spacing: 0.04em;
            border: 1px solid rgba(255, 255, 255, 0.15);
        }
        .zc-video-info {
            padding: 1.8rem 1.8rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1.2rem;
            background: #FFFFFF;
            flex-grow: 1;
        }
        .zc-info-main {
            display: flex;
            flex-direction: column;
            gap: 0.55rem;
            text-align: left;
        }
        .zc-video-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.72rem;
            font-weight: 700;
            color: var(--accent-gold, #C5A065);
            text-transform: uppercase;
            letter-spacing: 0.14em;
            font-family: 'Syne', sans-serif;
        }
        .zc-diamond {
            width: 6px;
            height: 6px;
            background: var(--accent-gold, #C5A065);
            transform: rotate(45deg);
            display: inline-block;
            transition: transform 0.4s ease;
        }
        .zc-video-card:hover .zc-diamond {
            transform: rotate(225deg) scale(1.3);
        }
        .zc-video-info h4 {
            font-size: clamp(1.25rem, 1.5vw, 1.42rem);
            font-weight: 500;
            color: #1A2E28;
            font-family: 'Cormorant Garamond', serif;
            line-height: 1.3;
            margin: 0;
            transition: color 0.3s ease;
        }
        .zc-video-card:hover .zc-video-info h4 {
            color: var(--accent-gold, #C5A065);
        }
        @media (max-width: 576px) {
            .zc-video-info {
                padding: 1.4rem 1.4rem;
            }
        }

        /* Minimalist Manifesto List */
        .manifesto-list-wrapper {
            margin-top: 4.5rem;
            max-width: 1020px;
            margin-left: auto;
            margin-right: auto;
            text-align: left;
        }
        .manifesto-list {
            display: flex;
            flex-direction: column;
            border-top: 1px solid rgba(197, 160, 101, 0.2);
        }
        .manifesto-item {
            display: grid;
            grid-template-columns: 64px 1fr auto;
            align-items: center;
            gap: 1.5rem;
            padding: 2rem 1rem;
            border-bottom: 1px solid rgba(197, 160, 101, 0.2);
            background: transparent;
            position: relative;
            overflow: hidden;
            transition: background 0.4s ease, padding 0.4s ease;
            cursor: default;
        }
        .manifesto-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 2px;
            height: 100%;
            background: var(--accent-gold, #C5A065);
            transform: scaleY(0);
            transform-origin: bottom;
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .manifesto-item:hover {
            background: rgba(197, 160, 101, 0.04);
            padding-left: 2rem;
        }
        .manifesto-item:hover::before {
            transform: scaleY(1);
        }
        .manifesto-item:hover .manifesto-item-num {
            color: #fff;
            opacity: 1;
        }
        .manifesto-item:hover .manifesto-item-body h4 {
            color: var(--accent-gold, #C5A065);
        }
        .manifesto-item-num {
            font-size: 0.8rem;
            font-weight: 400;
            font-family: 'Syne', sans-serif;
            color: var(--accent-gold, #C5A065);
            opacity: 0.6;
            flex-shrink: 0;
            letter-spacing: 0.18em;
            padding-top: 0.5rem;
            transition: color 0.4s ease, opacity 0.4s ease;
        }
        .manifesto-item-body {
            display: flex;
            flex-direction: column;
            gap: 0.55rem;
            padding: 0.2rem 0;
        }
        .manifesto-item-body h4 {
            font-size: 1.6rem;
            font-weight: 600;
            color: #fff;
            margin: 0;
            font-family: 'Cormorant Garamond', serif;
            letter-spacing: 0.02em;
            line-height: 1.2;
            transition: color 0.4s ease;
        }
        .manifesto-item-body p {
            font-size: 1rem;
            color: rgb(180 180 180 / 51%);
            line-height: 1.7;
            margin: 0;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 300;
            padding-right: 150px;
        }
        .manifesto-item-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            justify-self: end;
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .manifesto-item-icon img {
            width: 76px;
            height: 76px;
            object-fit: contain;
            opacity: 0.88;
            transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .manifesto-item:hover .manifesto-item-icon img {
            opacity: 1;
            transform: scale(1.08);
        }
        @media (max-width: 768px) {
            .manifesto-item {
                grid-template-columns: 48px 1fr auto;
                gap: 1rem;
                padding: 1.6rem 0.5rem;
            }
            .manifesto-item-icon img {
                width: 52px;
                height: 52px;
            }
        }
        @media (max-width: 480px) {
            .manifesto-item {
                grid-template-columns: 40px 1fr;
            }
            .manifesto-item-icon {
                display: none;
            }
            .manifesto-item-num {
                font-size: 0.72rem;
            }
            .manifesto-item-body h4 {
                font-size: 1.3rem;
            }
            .manifesto-item-body p {
                font-size: 0.88rem;
            }
        }

        /* Dots */
        .zc-carousel-dots {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0.65rem;
            margin-top: 1rem;
        }
        .zc-dot {
            width: 14px;
            height: 3px;
            border-radius: 0px;
            background: rgba(141, 163, 153, 0.35);
            cursor: pointer;
            transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .zc-dot:hover {
            background: var(--accent-sage, #8DA399);
            transform: scaleY(1.5);
        }
        .manifesto-section .zc-dot {
            background: rgba(255, 255, 255, 0.25);
        }
        .zc-dot.active {
            width: 38px;
            border-radius: 0px;
            background: var(--accent-gold, #C5A065);
            box-shadow: 0 4px 12px rgba(197, 160, 101, 0.35);
        }

/* --- Blok 8 (z index.html) --- */
.skip-link { position: absolute; top: -100px; left: 1rem; background: #1A2E28; color: #C9A84C; padding: 0.6rem 1.2rem; border-radius: 4px; font-weight: 700; z-index: 99999; text-decoration: none; transition: top 0.2s; }
.skip-link:focus { top: 1rem; }

/* --- Blok 9 (z index.html) --- */
/* --- MAGAZINE NEWS SECTION --- */
            .news-section {
                background: linear-gradient(180deg, var(--bg-paper) 0%, #fff 46%, #f6f5f1 100%);
                overflow: hidden;
                padding-bottom: clamp(5.25rem, 8vw, 7.5rem);
                padding-top: clamp(5.5rem, 8vw, 7.25rem);
                position: relative;
            }

            .news-section::before {
                background:
                    linear-gradient(90deg, transparent, rgba(197, 160, 101, 0.44), transparent),
                    linear-gradient(180deg, rgba(255, 255, 255, 0.78), transparent 42%);
                content: '';
                height: 1px;
                left: 0;
                pointer-events: none;
                position: absolute;
                right: 0;
                top: 0;
            }

            .news-section::after {
                border-left: 1px solid rgba(26, 46, 40, 0.045);
                border-right: 1px solid rgba(26, 46, 40, 0.045);
                content: '';
                inset: 0 calc(50% - 700px);
                pointer-events: none;
                position: absolute;
            }

            .news-section .container {
                max-width: var(--container-width);
                z-index: 1;
            }

            .news-heading-grid {
                display: block;
                margin-bottom: clamp(3.25rem, 6vw, 4.75rem);
                max-width: 850px;
            }

            .news-heading-grid .section-title {
                line-height: 0.98;
                margin-bottom: 0;
                max-width: 760px;
            }

            .news-heading-copy {
                border-top: 1px solid rgba(197, 160, 101, 0.32);
                color: var(--text-secondary);
                font-size: 0.98rem;
                line-height: 1.85;
                margin: 1.25rem 0 0;
                max-width: 620px;
                padding: 1.15rem 0 0;
            }

            .news-wrapper {
                align-items: start;
                display: grid;
                gap: 4rem;
                grid-template-columns: 1.15fr 0.85fr;
            }

            /* PRETTIER FEATURED CARD */
            .news-card.featured {
                display: block;
                position: relative;
                transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            }

            .news-card.featured:hover {
                transform: translateY(-8px);
            }

            .news-card.featured .news-img-wrapper {
                aspect-ratio: 16 / 10;
                margin-bottom: 2.2rem;
                height: auto;
                min-height: auto;
                box-shadow: 0 20px 40px rgba(26, 46, 40, 0.08);
                border-radius: 12px;
                overflow: hidden;
            }

            .news-card.featured .news-img-wrapper img {
                transition: transform 0.8s ease;
            }

            .news-card.featured:hover .news-img-wrapper img {
                transform: scale(1.05);
            }

            .news-card.featured .news-content {
                background: transparent;
                position: static;
                padding: 0;
                width: 100%;
                max-width: 100%;
                color: var(--text-primary);
            }

            .news-card.featured .news-title {
                font-size: clamp(1.8rem, 2.4vw, 2.4rem);
                margin-bottom: 1.2rem;
                transition: color 0.3s;
            }

            .news-card.featured:hover .news-title {
                color: var(--accent-gold);
            }

            .news-card.featured .news-excerpt {
                color: var(--text-secondary);
                font-family: 'Cormorant Garamond', serif;
                font-size: 1.1rem;
                line-height: 1.65;
                margin-bottom: 2rem;
                -webkit-line-clamp: 4;
            }

            /* PRETTIER SIDE LIST */
            .news-side-list {
                display: flex;
                flex-direction: column;
                gap: 0.75rem;
            }

            .news-list-header {
                align-items: center;
                border-bottom: 1px solid rgba(197, 160, 101, 0.3);
                color: var(--accent-gold);
                display: flex;
                font-size: 0.8rem;
                font-weight: 700;
                padding-bottom: 1rem;
                margin-bottom: 0.5rem;
                text-transform: uppercase;
                letter-spacing: 0.15em;
            }

            .news-card--compact {
                display: flex;
                flex-direction: column;
                gap: 1.25rem;
                background: transparent;
                border: none;
                padding: 0 0 2rem 0;
                box-shadow: none;
                transition: transform 0.4s ease;
            }

            .news-card--compact:hover {
                transform: translateY(-3px);
                box-shadow: none;
                border-color: transparent;
            }

            .news-card--compact .news-img-link {
                display: block;
                width: 100%;
                border-radius: 12px;
                overflow: hidden;
            }

            .news-card--compact .news-img-wrapper {
                aspect-ratio: 16 / 9;
                border-radius: 12px;
                height: 100%;
                width: 100%;
                box-shadow: none;
            }

            .news-card--compact .news-img-wrapper img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                transition: transform 0.6s ease;
            }

            .news-card--compact:hover .news-img-wrapper img {
                transform: scale(1.05);
            }

            .news-card--compact .news-content {
                padding: 0;
                display: flex;
                flex-direction: column;
                align-items: flex-start;
            }

            .news-card--compact .news-meta {
                margin-bottom: 0.8rem;
            }

            .news-card--compact .category-label {
                font-size: 0.65rem;
                padding: 0.35rem 0.8rem;
                background: rgba(197, 160, 101, 0.1);
                color: var(--text-primary);
                border: 1px solid rgba(197, 160, 101, 0.2);
            }

            .news-card--compact .news-title {
                font-size: 1.25rem;
                line-height: 1.4;
                margin-bottom: 0;
                font-weight: 400;
                font-family: 'Cormorant Garamond', serif;
                transition: color 0.3s;
            }

            .news-card--compact:hover .news-title {
                color: var(--accent-gold);
            }

            @media (max-width: 1100px) {
                .news-wrapper {
                    grid-template-columns: 1fr;
                    gap: 3rem;
                }
            }

            .news-card {
                background: transparent;
                border: 0;
                border-radius: 0;
                box-shadow: none;
                display: flex;
                flex-direction: column;
                height: 100%;
                overflow: visible;
                position: relative;
                transition: transform 0.35s var(--transition);
            }

            .news-card:hover {
                transform: none;
            }

            .news-img-link {
                color: inherit;
                display: block;
            }

            .news-img-wrapper {
                aspect-ratio: 16 / 10;
                background: rgba(26, 46, 40, 0.08);
                border-radius: 8px;
                overflow: hidden;
                position: relative;
            }

            .news-img-wrapper img {
                height: 100%;
                object-fit: cover;
                transition: transform 0.9s var(--transition), filter 0.9s var(--transition);
                width: 100%;
            }

            .news-card:hover .news-img-wrapper img {
                filter: saturate(1.04);
                transform: scale(1.035);
            }

            .news-badge {
                backdrop-filter: blur(10px);
                -webkit-backdrop-filter: blur(10px);
                background: rgba(249, 248, 246, 0.9);
                border: 1px solid rgba(255, 255, 255, 0.58);
                border-radius: 999px;
                color: var(--text-primary);
                display: inline-flex;
                font-size: 0.68rem;
                font-weight: 800;
                left: 1rem;
                letter-spacing: 0.08em;
                line-height: 1;
                padding: 0.62rem 0.82rem;
                position: absolute;
                text-transform: uppercase;
                top: 1rem;
                z-index: 2;
            }

            .news-content {
                display: flex;
                flex: 1;
                flex-direction: column;
                padding: 0;
            }

            .news-meta {
                align-items: center;
                color: var(--text-light);
                display: flex;
                flex-wrap: wrap;
                font-size: 0.72rem;
                font-weight: 800;
                gap: 0.65rem 0.9rem;
                letter-spacing: 0.04em;
                margin-bottom: 0.8rem;
                text-transform: uppercase;
            }

            .news-meta i {
                color: var(--accent-gold);
                margin-right: 0.35rem;
            }

            .news-meta .category-label {
                background: rgba(197, 160, 101, 0.1);
                border: 1px solid rgba(197, 160, 101, 0.16);
                border-radius: 999px;
                color: var(--text-primary);
                display: inline-flex;
                line-height: 1;
                padding: 0.43rem 0.62rem;
            }

            .news-meta .read-time,
            .news-meta .date {
                align-items: center;
                display: inline-flex;
                font-family: 'Cormorant Garamond', serif;
                font-style: italic;
                font-size: 1rem;
                font-weight: 400;
                color: var(--text-secondary);
                letter-spacing: 0.01em;
                text-transform: none;
                border-left: 1.5px solid var(--accent-gold);
                padding-left: 0.6rem;
                gap: 0.3rem;
                line-height: 1;
            }

            .news-meta .date strong {
                color: var(--accent-gold);
                font-style: normal;
                font-weight: 600;
                font-size: 1.05rem;
            }

            .news-title {
                font-family: 'Cormorant Garamond', serif;
                font-size: clamp(1.25rem, 1.75vw, 1.55rem);
                font-weight: 500;
                line-height: 1.16;
                margin-bottom: 0.72rem;
            }

            .news-title a {
                background-image: linear-gradient(var(--accent-gold), var(--accent-gold));
                background-position: 0 100%;
                background-repeat: no-repeat;
                background-size: 0% 1px;
                color: var(--text-primary);
                transition: background-size 0.35s var(--transition), color 0.35s var(--transition);
            }

            .news-card:hover .news-title a {
                background-size: 100% 1px;
            }

            .news-excerpt {
                color: var(--text-secondary);
                display: -webkit-box;
                font-size: 0.9rem;
                line-height: 1.62;
                margin-bottom: 1rem;
                overflow: hidden;
                -webkit-box-orient: vertical;
                -webkit-line-clamp: 2;
            }

            .news-btn {
                align-items: center;
                color: var(--text-primary);
                display: inline-flex;
                font-size: 0.78rem;
                font-weight: 800;
                gap: 0.52rem;
                letter-spacing: 0.05em;
                margin-top: auto;
                text-transform: uppercase;
                transition: color 0.3s var(--transition), gap 0.3s var(--transition);
            }

            .news-btn:hover {
                color: var(--accent-gold);
                gap: 0.82rem;
            }



            @media (max-width: 1100px) {
                .news-section::after {
                    display: none;
                }

                .news-wrapper {
                    grid-template-columns: 1fr;
                }




            }

            @media (max-width: 768px) {
                .news-section {
                    padding-bottom: 4.5rem;
                    padding-top: 4.75rem;
                }

                .news-heading-grid {
                    gap: 1rem;
                    grid-template-columns: 1fr;
                    margin-bottom: 2.4rem;
                }

                .news-heading-grid .section-title {
                    font-size: var(--section-heading-size-mobile);
                }

                .news-heading-copy {
                    padding-left: 0;
                }


                .news-card--compact {
                    gap: 1rem;
                    grid-template-columns: 106px minmax(0, 1fr);
                    padding: 1.35rem 0;
                }

                .news-card--compact::before {
                    display: none;
                }

                .news-card--compact .news-img-wrapper {
                    height: 124px;
                }

                .news-card--compact .news-img-link {
                    height: 124px;
                    width: 106px;
                }
            }

            @media (max-width: 560px) {
                .news-card--compact {
                    grid-template-columns: 1fr;
                }

                .news-card--compact .news-img-link {
                    height: auto;
                    width: 100%;
                }

                .news-card--compact .news-img-wrapper {
                    aspect-ratio: 16 / 10;
                    height: auto;
                    min-height: auto;
                }
            }

            /* Breakout to full width if inside a container */
            .photo-carousel-section {
                width: 100vw;
                position: relative;
                left: 50%;
                right: 50%;
                margin-left: -50vw;
                margin-right: -50vw;
                overflow: hidden;
                margin-top: 0;
                /* Opcjonalnie usuń marginesy */
                margin-bottom: 0;
            }

            .carousel-container {
                position: relative;
                width: 100%;
                height: 600px;
                /* Wysokość karuzeli - dostosuj wg uznania */
                overflow: hidden;
                background: #000;
            }

            .carousel-track {
                display: flex;
                height: 100%;
                transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
            }

            .carousel-slide {
                min-width: 100%;
                height: 100%;
                position: relative;
            }

            .carousel-slide::before {
                content: '';
                position: absolute;
                left: 0;
                right: 0;
                bottom: 0;
                height: 68%;
                background:
                    linear-gradient(to top,
                        rgba(0, 0, 0, 0.74) 0%,
                        rgba(0, 0, 0, 0.46) 34%,
                        rgba(0, 0, 0, 0.18) 68%,
                        rgba(0, 0, 0, 0) 100%);
                pointer-events: none;
                z-index: 1;
            }

            .carousel-slide::after {
                content: '';
                position: absolute;
                left: 0;
                right: 0;
                bottom: 0;
                height: 46%;
                background: rgba(8, 12, 10, 0.28);
                backdrop-filter: blur(10px);
                -webkit-backdrop-filter: blur(10px);
                mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.72) 44%, rgba(0, 0, 0, 0.2) 78%, rgba(0, 0, 0, 0) 100%);
                -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.72) 44%, rgba(0, 0, 0, 0.2) 78%, rgba(0, 0, 0, 0) 100%);
                pointer-events: none;
                z-index: 2;
            }

            .carousel-slide img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                display: block;
                opacity: 0.9;
                transition: opacity 0.4s, transform 6s ease;
            }

            /* Delikatny zoom zdjęcia w tle */
            .carousel-slide:hover img {
                opacity: 0.8;
                transform: scale(1.05);
            }

            /* CAPTION STYLES */
            .slide-caption {
                position: absolute;
                bottom: 0;
                left: 0;
                width: 100%;
                max-width: none;
                padding: 12rem 4rem 4rem 4rem;
                background: transparent;
                backdrop-filter: none;
                -webkit-backdrop-filter: none;
                border: none;
                border-radius: 0;
                color: white;
                text-align: center;
                box-shadow: none;
                pointer-events: none;
                z-index: 3;
                transform: none;
            }

            .slide-caption h3 {
                font-family: 'Cormorant Garamond', serif;
                font-size: 2.2rem;
                margin-bottom: 0.8rem;
                color: white;
                line-height: 1.2;
                text-transform: none;
                letter-spacing: 1px;
                font-weight: 400;
            }

            .slide-caption p {
                font-family: 'Plus Jakarta Sans', sans-serif;
                font-size: 1.05rem;
                color: rgba(255, 255, 255, 0.7);
                line-height: 1.6;
                margin: 0 auto;
                font-weight: 300;
                max-width: 600px;
            }

            /* ARROWS - MINIMALIST */
            .carousel-arrow {
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                background: transparent;
                border: none;
                color: rgba(255, 255, 255, 0.7);
                width: 60px;
                height: 60px;
                font-size: 2.5rem;
                /* Większe, cieńsze strzałki jeśli to możliwe z fontu, lub po prostu duże */
                cursor: pointer;
                z-index: 10;
                transition: all 0.3s ease;
                display: flex;
                align-items: center;
                justify-content: center;
                opacity: 0.8;
                /* Dobrze widoczne, ale nienachalne */
                text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
                /* Lekki cień, by były widoczne na jasnych zdjęciach */
            }

            .carousel-container:hover .carousel-arrow {
                opacity: 1;
            }

            .carousel-arrow:hover {
                color: var(--accent-gold);
                transform: translateY(-50%) scale(1.1);
            }

            .arrow-prev {
                left: 5rem;
            }

            .arrow-next {
                right: 5rem;
            }

            /* DOTS */
            .carousel-dots {
                display: none;
                /* Ukryte zgodnie z życzeniem */
            }

            .dot {
                width: 12px;
                height: 12px;
                border: 2px solid rgba(255, 255, 255, 0.5);
                border-radius: 50%;
                cursor: pointer;
                transition: all 0.3s;
                background: transparent;
            }

            .dot:hover {
                background: rgba(255, 255, 255, 0.5);
            }

            .dot.active {
                background: var(--accent-gold);
                transform: scale(1.2);
            }

            @media (max-width: 768px) {
                .carousel-container {
                    height: 400px;
                }

                .slide-caption h3 {
                    font-size: 1.8rem;
                }

                .slide-caption p {
                    font-size: 0.9rem;
                }

                .carousel-arrow {
                    width: 40px;
                    height: 40px;
                    font-size: 1rem;
                    opacity: 1;
                }

                .arrow-prev {
                    left: 2rem;
                }

                .arrow-next {
                    right: 2rem;
                }
            }

/* --- page-transition.css --- */
/* page-transition.css — Light Organic Reveal */

/* ═══ OVERLAY CONTAINER ═══ */
.curtain-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99999;
    pointer-events: none;
    overflow: hidden;
}

/* ═══ TWO SPLIT PANELS ═══ */
.curtain-transition::before,
.curtain-transition::after {
    content: '';
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    background: #F5F3F0;
    transition: transform 0.9s cubic-bezier(0.77, 0, 0.175, 1);
    will-change: transform;
}

.curtain-transition::before {
    left: 0;
    transform-origin: left center;
}

.curtain-transition::after {
    right: 0;
    transform-origin: right center;
}

/* ═══ DECORATIVE GOLD LINE ═══ */
.curtain-line {
    display: none;
}

/* ═══ ORNAMENTAL DOTS ═══ */
.curtain-line::before,
.curtain-line::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%) scale(0);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #C5A065;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
}

.curtain-line::before {
    top: -3px;
}

.curtain-line::after {
    bottom: -3px;
}

/* ═══ LOADING STATE (initial) ═══ */
/* Panels are visible, line draws in */
.curtain-transition .curtain-line {
    height: 25vh;
}

.curtain-transition .curtain-line::before,
.curtain-transition .curtain-line::after {
    transform: translateX(-50%) scale(1);
}

/* ═══ REVEAL STATE ═══ */
.curtain-transition.is-loaded::before {
    transform: translateX(-102%);
}

.curtain-transition.is-loaded::after {
    transform: translateX(102%);
}

.curtain-transition.is-loaded .curtain-line {
    height: 25vh;
    opacity: 0;
}

.curtain-transition.is-loaded .curtain-line::before,
.curtain-transition.is-loaded .curtain-line::after {
    transform: translateX(-50%) scale(0);
    transition-delay: 0s;
}

/* ═══ SUBTLE PAGE CONTENT ENTRANCE ═══ */
body.page-entering > *:not(.curtain-transition):not(script):not(noscript):not(link) {
    opacity: 0;
    transform: scale(0.985) translateY(8px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.35s,
                transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.35s;
}

body.page-entered > *:not(.curtain-transition):not(script):not(noscript):not(link) {
    opacity: 1;
    transform: none;
}

/* ═══ STICKY HEADER REVEAL ═══ */
:root {
    --sticky-header-duration: 0.36s;
    --sticky-header-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

nav#navbar {
    will-change: transform, opacity, filter;
    transition: padding var(--sticky-header-duration) var(--sticky-header-ease),
                background var(--sticky-header-duration) var(--sticky-header-ease),
                border-color var(--sticky-header-duration) var(--sticky-header-ease),
                box-shadow var(--sticky-header-duration) var(--sticky-header-ease),
                backdrop-filter var(--sticky-header-duration) var(--sticky-header-ease),
                -webkit-backdrop-filter var(--sticky-header-duration) var(--sticky-header-ease),
                transform var(--sticky-header-duration) var(--sticky-header-ease),
                opacity var(--sticky-header-duration) var(--sticky-header-ease),
                filter var(--sticky-header-duration) var(--sticky-header-ease) !important;
}

nav#navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: clamp(10rem, 20vw, 16rem);
    z-index: 0;
    pointer-events: none;
    opacity: 0;
    background: linear-gradient(
        180deg,
        rgba(8, 18, 14, 0.85) 0%,
        rgba(8, 18, 14, 0.45) 45%,
        rgba(8, 18, 14, 0) 100%
    );
    backdrop-filter: blur(18px) saturate(1.1);
    -webkit-backdrop-filter: blur(18px) saturate(1.1);
    mask-image: linear-gradient(180deg, #000 0%, #000 45%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 45%, transparent 100%);
    transition: opacity var(--sticky-header-duration) var(--sticky-header-ease);
}

nav#navbar .container.nav-inner {
    position: relative;
    z-index: 1;
    transition: min-height var(--sticky-header-duration) var(--sticky-header-ease),
                background var(--sticky-header-duration) var(--sticky-header-ease),
                border-color var(--sticky-header-duration) var(--sticky-header-ease),
                box-shadow var(--sticky-header-duration) var(--sticky-header-ease),
                backdrop-filter var(--sticky-header-duration) var(--sticky-header-ease),
                -webkit-backdrop-filter var(--sticky-header-duration) var(--sticky-header-ease),
                transform var(--sticky-header-duration) var(--sticky-header-ease),
                opacity var(--sticky-header-duration) var(--sticky-header-ease) !important;
}

nav#navbar .logo img {
    transition: max-height var(--sticky-header-duration) var(--sticky-header-ease),
                filter var(--sticky-header-duration) var(--sticky-header-ease),
                opacity var(--sticky-header-duration) var(--sticky-header-ease),
                transform var(--sticky-header-duration) var(--sticky-header-ease) !important;
}

nav#navbar .nav-links a.nav-item,
nav#navbar .lang-btn {
    transition-delay: 0s !important;
    transition-duration: var(--sticky-header-duration) !important;
    transition-timing-function: var(--sticky-header-ease) !important;
}

nav#navbar .nav-links a.nav-item {
    transition-property: color, opacity, transform !important;
}

nav#navbar .lang-btn {
    transition-property: background, color, border-color, box-shadow, opacity, transform !important;
}

nav#navbar .lang-btn__code,
nav#navbar .lang-btn__chevron {
    transition-property: color, opacity, transform !important;
    transition-delay: 0s !important;
    transition-duration: var(--sticky-header-duration) !important;
    transition-timing-function: var(--sticky-header-ease) !important;
}

nav#navbar .lang-dropdown,
nav#navbar .lang-option,
nav#navbar .lang-option__check {
    transition-duration: var(--sticky-header-duration) !important;
    transition-timing-function: var(--sticky-header-ease) !important;
}

nav#navbar::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(197, 160, 101, 0.82), transparent);
    opacity: 0;
    transform: scaleX(0);
    transform-origin: center;
    pointer-events: none;
    z-index: 2;
}

nav#navbar.sticky-header-reveal {
    animation: siteStickyHeaderReveal var(--sticky-header-duration) var(--sticky-header-ease) both;
}

nav#navbar.sticky-header-reveal::after {
    animation: siteStickyHeaderLine var(--sticky-header-duration) var(--sticky-header-ease) both;
}

nav#navbar.sticky-header-reveal .container.nav-inner {
    animation: siteStickyHeaderSurface var(--sticky-header-duration) var(--sticky-header-ease) both;
}

@keyframes siteStickyHeaderReveal {
    0% {
        opacity: 0.24;
        transform: translateY(-18px) scale(0.992);
        filter: blur(8px);
    }

    64% {
        opacity: 1;
        transform: translateY(1px) scale(1);
        filter: blur(0);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes siteStickyHeaderSurface {
    0% {
        backdrop-filter: blur(0);
        -webkit-backdrop-filter: blur(0);
    }

    100% {
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }
}

@keyframes siteStickyHeaderLine {
    0% {
        opacity: 0;
        transform: scaleX(0);
    }

    32% {
        opacity: 1;
        transform: scaleX(0.52);
    }

    70% {
        opacity: 0.78;
        transform: scaleX(1);
    }

    100% {
        opacity: 0;
        transform: scaleX(1);
    }
}

/* ═══ CLOSING ANIMATION (navigating away) ═══ */
.curtain-transition.is-closing::before {
    transform: translateX(0);
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

.curtain-transition.is-closing::after {
    transform: translateX(0);
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

.curtain-transition.is-closing .curtain-line {
    height: 25vh;
    opacity: 1;
    transition: height 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.3s,
                opacity 0.3s ease 0.2s;
}

.curtain-transition.is-closing .curtain-line::before,
.curtain-transition.is-closing .curtain-line::after {
    transform: translateX(-50%) scale(1);
    transition-delay: 0.35s;
}

/* ═══ ACCESSIBILITY ═══ */
@media (prefers-reduced-motion: reduce) {
    .curtain-transition::before,
    .curtain-transition::after {
        transition: opacity 0.4s ease;
        transform: none;
    }
    .curtain-transition.is-loaded::before,
    .curtain-transition.is-loaded::after {
        opacity: 0;
        transform: none;
    }
    .curtain-line {
        display: none;
    }
    body.page-entering > * {
        opacity: 1 !important;
        transform: none !important;
    }
    nav#navbar.sticky-header-reveal,
    nav#navbar.sticky-header-reveal::after,
    nav#navbar.sticky-header-reveal .container.nav-inner {
        animation: none !important;
    }
}

/* Mobile nav/header surface */
@media (max-width: 1024px) {
    nav#navbar,
    nav#navbar.scrolled,
    body.menu-open nav#navbar {
        background: #F9F8F6 !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
        box-shadow: none !important;
        padding: 0 !important;
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
    }

    nav#navbar .container.nav-inner,
    nav#navbar.scrolled .container.nav-inner,
    body.menu-open nav#navbar .container.nav-inner {
        max-width: none !important;
        width: 100% !important;
        min-height: 80px !important;
        margin: 0 !important;
        box-sizing: border-box !important;
        padding-top: env(safe-area-inset-top, 0px) !important;
        padding-left: clamp(1rem, 4vw, 1.5rem) !important;
        padding-right: clamp(1rem, 4vw, 1.5rem) !important;
        justify-content: flex-end !important;
        background: var(--bg-paper, #F9F8F6) !important;
        border: 0 !important;
        border-bottom: 0 !important;
        box-shadow: none !important;
    }

    nav#navbar.scrolled .container.nav-inner {
        min-height: 70px !important;
    }

    nav#navbar .logo {
        position: absolute !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
    }

    nav#navbar *,
    nav#navbar *::before,
    nav#navbar *::after {
        box-shadow: none !important;
    }

    nav#navbar .logo img,
    nav#navbar .mobile-toggle,
    nav#navbar .lang-btn {
        filter: none !important;
    }

    nav#navbar .logo img,
    nav#navbar.scrolled .logo img {
        width: auto !important;
        max-height: 56px !important;
        padding: 0 !important;
    }

    nav#navbar .nav-right {
        gap: 0.75rem !important;
    }

    nav#navbar .mobile-toggle {
        display: flex !important;
        width: 40px !important;
        height: 40px !important;
        background: transparent !important;
        border: none !important;
        color: var(--text-primary) !important;
    }

    nav#navbar .mobile-toggle .bar {
        width: 22px !important;
        height: 1.5px !important;
        background-color: var(--text-primary) !important;
        border-radius: 2px !important;
    }

    nav#navbar .mobile-toggle:hover,
    nav#navbar .mobile-toggle:focus-visible,
    nav#navbar .mobile-toggle.active {
        background: transparent !important;
        color: var(--accent-gold) !important;
    }

    nav#navbar .mobile-toggle:hover .bar,
    nav#navbar .mobile-toggle:focus-visible .bar,
    nav#navbar .mobile-toggle.active .bar {
        background-color: var(--accent-gold) !important;
    }
}

@media (max-width: 480px) {
    nav#navbar {
        padding: calc(0.62rem + env(safe-area-inset-top, 0px)) 0 0 !important;
    }

    nav#navbar .container.nav-inner,
    body.menu-open nav#navbar .container.nav-inner {
        min-height: 72px !important;
        margin: 0 !important;
        box-sizing: border-box !important;
        padding-left: 1.2rem !important;
        padding-right: 1.2rem !important;
    }

    nav#navbar .mobile-toggle {
        width: 42px !important;
        height: 42px !important;
    }

    nav#navbar .mobile-toggle .bar {
        width: 26px !important;
    }

    .mobile-link {
        font-size: clamp(2rem, 10.5vw, 2.55rem) !important;
        padding: 1.3rem 0 !important;
    }
}

@media (max-width: 768px) {
    .carousel-arrow,
    .carousel-ctrl,
    .fs-control-btn {
        display: none !important;
    }
}

.mobile-socials a {
    width: 32px !important;
    height: 32px !important;
    border: 1px solid rgba(197, 160, 101, 0.3) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: rgba(197, 160, 101, 0.7) !important;
    background: transparent !important;
    transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.3s !important;
    text-decoration: none !important;
    flex-shrink: 0 !important;
    border-radius: 100px !important;
    box-shadow: none !important;
}

/* Transparent hero header for subpages */
body.transparent-hero-header:not(.menu-open) nav#navbar:not(.scrolled) {
    background: transparent !important;
    border-bottom-color: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

body.transparent-hero-header:not(.menu-open) nav#navbar:not(.scrolled)::before {
    opacity: 1;
    height: clamp(10rem, 20vw, 16rem);
    background: linear-gradient(180deg, rgba(8, 18, 14, 0.92) 0%, rgba(8, 18, 14, 0.6) 45%, rgba(8, 18, 14, 0) 100%);
    backdrop-filter: blur(18px) saturate(1.1);
    -webkit-backdrop-filter: blur(18px) saturate(1.1);
    mask-image: linear-gradient(180deg, #000 0%, #000 45%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 45%, transparent 100%);
}

body.transparent-hero-header:not(.menu-open) nav#navbar:not(.scrolled)::after {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.72), transparent);
}

body.transparent-hero-header:not(.menu-open) nav#navbar:not(.scrolled) .container.nav-inner {
    background: transparent !important;
    border-color: transparent !important;
    border-bottom-color: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

body.transparent-hero-header:not(.menu-open) nav#navbar:not(.scrolled) .nav-links a.nav-item,
body.transparent-hero-header:not(.menu-open) nav#navbar:not(.scrolled) .nav-links a.nav-item .nav-dropdown-icon {
    color: rgb(166 137 87) !important;
    text-shadow: none;
    opacity: 0.85;
}

body.transparent-hero-header:not(.menu-open) nav#navbar:not(.scrolled) .nav-links a.nav-item:hover,
body.transparent-hero-header:not(.menu-open) nav#navbar:not(.scrolled) .nav-links a.nav-item.active,
body.transparent-hero-header:not(.menu-open) nav#navbar:not(.scrolled) .nav-links a.nav-item:hover .nav-dropdown-icon,
body.transparent-hero-header:not(.menu-open) nav#navbar:not(.scrolled) .nav-links a.nav-item.active .nav-dropdown-icon {
    color: rgb(151 126 80) !important;
    text-shadow: none;
    opacity: 1;
}

body.transparent-hero-header:not(.menu-open) nav#navbar:not(.scrolled) .nav-links a.nav-item::after {
    background: rgb(197 160 101) !important;
    box-shadow: none !important;
}

body.transparent-hero-header:not(.menu-open) nav#navbar:not(.scrolled) .logo img {
    filter: brightness(0) invert(1) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.25)) !important;
    opacity: 0.5;
}

body.transparent-hero-header:not(.menu-open) nav#navbar:not(.scrolled) .lang-btn {
    background: transparent !important;
    border-color: transparent !important;
    box-shadow: none !important;
    color: rgb(88, 93, 88) !important;
    text-shadow: none;
    opacity: 0.85 !important;
}

body.transparent-hero-header:not(.menu-open) nav#navbar:not(.scrolled) .lang-btn__code,
body.transparent-hero-header:not(.menu-open) nav#navbar:not(.scrolled) .lang-btn__chevron {
    color: rgb(88, 93, 88) !important;
    text-shadow: none;
    opacity: 0.85 !important;
}

body.transparent-hero-header:not(.menu-open) nav#navbar:not(.scrolled) .lang-btn:hover,
body.transparent-hero-header:not(.menu-open) nav#navbar:not(.scrolled) .lang-container.is-open .lang-btn,
body.transparent-hero-header:not(.menu-open) nav#navbar:not(.scrolled) .lang-btn:hover .lang-btn__code,
body.transparent-hero-header:not(.menu-open) nav#navbar:not(.scrolled) .lang-btn:hover .lang-btn__chevron,
body.transparent-hero-header:not(.menu-open) nav#navbar:not(.scrolled) .lang-container.is-open .lang-btn .lang-btn__code,
body.transparent-hero-header:not(.menu-open) nav#navbar:not(.scrolled) .lang-container.is-open .lang-btn .lang-btn__chevron {
    background: rgba(88, 93, 88, 0.08) !important;
    border-color: rgba(88, 93, 88, 0.15) !important;
    color: rgb(88, 93, 88) !important;
    text-shadow: none;
}

body.transparent-hero-header:not(.menu-open) nav#navbar:not(.scrolled) .btn-gold {
    background: transparent !important;
    border-color: #b28f5661 !important;
    color: rgb(197 160 101) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
}

body.transparent-hero-header:not(.menu-open) nav#navbar:not(.scrolled) .btn-gold:hover {
    background: rgba(197, 160, 101, 0.22) !important;
    border-color: rgba(197, 160, 101, 0.5) !important;
    color: #fff !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25) !important;
}

body.transparent-hero-header:not(.menu-open) nav#navbar:not(.scrolled) .mobile-toggle {
    color: #fff !important;
}

body.transparent-hero-header:not(.menu-open) nav#navbar:not(.scrolled) .mobile-toggle .bar {
    background-color: #c5a065 !important;
}

@media (max-width: 1024px) {
    nav#navbar .mobile-toggle {
        width: 50px !important;
        height: 42px !important;
        padding: 0 9px !important;
        box-sizing: border-box !important;
    }

    nav#navbar .mobile-toggle .bar:nth-of-type(1),
    nav#navbar .mobile-toggle .bar:nth-of-type(3) {
        width: 20px !important;
    }

    nav#navbar .mobile-toggle .bar:nth-of-type(2) {
        width: 20px !important;
        align-self: flex-end !important;
    }
}

body.transparent-hero-header .mobile-menu-overlay.active .mobile-menu-left-bottom {
    opacity: 1;
    transform: translateY(0);
    margin-bottom: 20px;
}

.mobile-menu-overlay {
    background: #09130f !important;
}

.mobile-menu-overlay::before {
    content: '' !important;
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    border-radius: 0 !important;
    opacity: 1 !important;
    pointer-events: none !important;
    background:
        radial-gradient(ellipse 80% 60% at 90% 110%, rgba(138,112,71,0.08) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 10% 0%, rgba(28,56,46,0.6) 0%, transparent 70%),
        linear-gradient(160deg,
            #0b1612 0%,
            #0f1e19 18%,
            #12221c 35%,
            #152922 52%,
            #0f1e18 72%,
            #09130f 100%
        ) !important;
}

.mobile-menu-overlay .mobile-link {
    color: rgba(249, 248, 246, 0.72) !important;
}

.mobile-menu-overlay .mobile-link:hover,
.mobile-menu-overlay .mobile-link:focus-visible,
.mobile-menu-overlay .mobile-link.active-page {
    color: var(--accent-gold) !important;
}

.mobile-menu-overlay .mobile-menu-language__label,
.mobile-menu-overlay .mobile-menu-mail {
    color: rgba(249, 248, 246, 0.58) !important;
}

.mobile-menu-overlay .mobile-support-link {
    background: transparent !important;
    color: var(--accent-gold) !important;
    border-color: rgba(197, 160, 101, 0.55) !important;
}

@media (min-width: 1025px) {
    nav#navbar .lang-container {
        margin-left: 0.05rem !important;
    }

    nav#navbar .lang-btn {
        position: relative !important;
        min-width: auto !important;
        min-height: 32px !important;
        padding: 0.25rem 0.08rem !important;
        gap: 0.32rem !important;
        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
        color: var(--text-primary, var(--ink)) !important;
        opacity: 0.78 !important;
        transform: none !important;
    }

    nav#navbar .lang-btn::after {
        content: '' !important;
        position: absolute !important;
        left: 0.08rem !important;
        right: 0.08rem !important;
        bottom: 0.08rem !important;
        height: 1px !important;
        background: currentColor !important;
        opacity: 0.45 !important;
        transform: scaleX(0) !important;
        transform-origin: left center !important;
        transition: transform var(--sticky-header-duration) var(--sticky-header-ease),
                    opacity var(--sticky-header-duration) var(--sticky-header-ease) !important;
    }

    nav#navbar .lang-btn:hover,
    nav#navbar .lang-container.is-open .lang-btn {
        background: transparent !important;
        border-color: transparent !important;
        box-shadow: none !important;
        color: var(--text-primary, var(--ink)) !important;
        opacity: 1 !important;
        transform: none !important;
    }

    nav#navbar .lang-btn:hover::after,
    nav#navbar .lang-container.is-open .lang-btn::after {
        transform: scaleX(1) !important;
        opacity: 0.7 !important;
    }

    nav#navbar .lang-btn__code {
        line-height: 1 !important;
        letter-spacing: 0.16em !important;
        opacity: 1 !important;
    }

    nav#navbar .lang-btn__chevron {
        font-size: 0.52rem !important;
        opacity: 0.72 !important;
        transform-origin: center !important;
    }

    nav#navbar .lang-container.is-open .lang-btn__chevron {
        transform: rotate(180deg) !important;
    }

    body.transparent-hero-header:not(.menu-open) nav#navbar:not(.scrolled) .lang-btn {
        color: rgb(88, 93, 88) !important;
        text-shadow: none;
    }
    
    body.transparent-hero-header:not(.menu-open) nav#navbar:not(.scrolled) .lang-btn:hover,
    body.transparent-hero-header:not(.menu-open) nav#navbar:not(.scrolled) .lang-container.is-open .lang-btn,
    body.transparent-hero-header:not(.menu-open) nav#navbar:not(.scrolled) .lang-btn__code,
    body.transparent-hero-header:not(.menu-open) nav#navbar:not(.scrolled) .lang-btn__chevron {
        color: rgb(88, 93, 88) !important;
        text-shadow: none;
    }

    body.transparent-hero-header:not(.menu-open) nav#navbar:not(.scrolled) .lang-btn,
    body.transparent-hero-header:not(.menu-open) nav#navbar:not(.scrolled) .lang-btn:hover,
    body.transparent-hero-header:not(.menu-open) nav#navbar:not(.scrolled) .lang-container.is-open .lang-btn {
        background: transparent !important;
        border-color: transparent !important;
        box-shadow: none !important;
        opacity: 0.92 !important;
        transform: none !important;
    }

    nav#navbar .lang-dropdown {
        top: calc(100% + 0.58rem) !important;
        right: -0.35rem !important;
        width: 214px !important;
        padding: 0.68rem !important;
        gap: 0 !important;
        background: rgba(249, 248, 246, 0.94) !important;
        border: 1px solid rgba(197, 160, 101, 0.16) !important;
        box-shadow: 0 20px 46px rgba(8, 24, 18, 0.13) !important;
        -webkit-backdrop-filter: blur(18px) saturate(1.04) !important;
        backdrop-filter: blur(18px) saturate(1.04) !important;
    }

    nav#navbar .lang-dropdown::before {
        top: -5px !important;
        right: 1.05rem !important;
        width: 8px !important;
        height: 8px !important;
        background: rgba(249, 248, 246, 0.94) !important;
        border-left-color: rgba(197, 160, 101, 0.16) !important;
        border-top-color: rgba(197, 160, 101, 0.16) !important;
    }

    nav#navbar .lang-dropdown__label {
        padding: 0 0.18rem 0.48rem !important;
        margin: 0 0 0.12rem !important;
        border-bottom: 1px solid rgba(26, 46, 40, 0.07) !important;
        font-size: 0.52rem !important;
        letter-spacing: 0.17em !important;
        color: rgba(26, 46, 40, 0.48) !important;
    }

    nav#navbar .lang-option {
        min-height: 44px !important;
        padding: 0.55rem 0.36rem !important;
        gap: 0.54rem !important;
        border: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        transform: none !important;
    }

    nav#navbar .lang-option + .lang-option {
        box-shadow: inset 0 1px rgba(26, 46, 40, 0.06) !important;
    }

    nav#navbar .lang-option:hover,
    nav#navbar .lang-option:focus-visible,
    nav#navbar .lang-option.active {
        background: rgba(197, 160, 101, 0.07) !important;
        border-color: transparent !important;
        box-shadow: none !important;
        transform: none !important;
    }

    nav#navbar .lang-option + .lang-option:hover,
    nav#navbar .lang-option + .lang-option:focus-visible,
    nav#navbar .lang-option + .lang-option.active {
        box-shadow: inset 0 1px rgba(26, 46, 40, 0.06) !important;
    }

    nav#navbar .lang-option__badge {
        width: 24px !important;
        height: 16px !important;
        padding: 0 !important;
        background: transparent !important;
        border: 1px solid rgba(26, 46, 40, 0.12) !important;
        box-shadow: none !important;
    }

    nav#navbar .lang-option.active .lang-option__badge {
        background: transparent !important;
        border-color: rgba(197, 160, 101, 0.38) !important;
        box-shadow: none !important;
    }

    nav#navbar .lang-option__copy {
        gap: 0.12rem !important;
    }

    nav#navbar .lang-option__name {
        font-size: 0.72rem !important;
        font-weight: 650 !important;
        letter-spacing: 0.02em !important;
    }

    nav#navbar .lang-option__meta {
        font-size: 0.62rem !important;
        color: rgba(26, 46, 40, 0.5) !important;
    }

    nav#navbar .lang-option__check {
        font-size: 0.62rem !important;
        color: var(--accent-gold, var(--gold)) !important;
    }
}

/* =======================================================================
   GLOBAL FIX: TEXTAREA DOUBLE LINE ON FOCUS
   ======================================================================= */
.contact-form textarea.field-input,
textarea.field-input {
    display: block !important;
}

.contact-form .field-input:focus,
.contact-form-full .field-input:focus,
.recruitment-form .field-input:focus {
    border-bottom-color: rgba(10, 26, 20, 0.12) !important;
}

/* ==========================================================================
   ADDITIONAL SUBPAGE BASE STYLES
========================================================================== */
.hero-action-arrow {
    font-size: 0.78rem;
            transition: transform 0.35s var(--transition);
}

.hero-action-secondary:focus-visible .hero-action-arrow {
    transform: translateX(4px);
}

.value-card-new i {
    font-size: 1.5rem;
            color: var(--accent-gold);
            margin-top: 0.2rem;
}

.value-card-new h4 {
    font-size: 1.1rem;
            color: var(--text-primary);
            margin-bottom: 0.4rem;
            font-weight: 600;
}

.value-card-new p {
    font-size: 0.9rem;
            color: var(--text-secondary);
            margin: 0;
            line-height: 1.5;
}

.found-status {
    display: inline-flex;
            align-items: center;
            gap: .5rem;
            padding: .4rem 1rem;
            border: 1px solid rgba(200, 169, 110, .4);
            color: var(--gold);
            font-family: 'Syne', sans-serif;
            font-size: .7rem;
            letter-spacing: .15em;
            text-transform: uppercase;
            margin-bottom: 2rem;
}

.found-status::before {
    content: '●';
            font-size: .5rem;
            color: var(--gold);
}

.found-card-icon {
    font-size: 1.5rem;
            color: var(--gold);
            margin-bottom: 1rem;
}

.found-cta {
    margin-top: 3rem; /* Reduced from 5rem */
            padding: 2rem 3rem;
            background: #ffffff;
            border: 1px solid rgba(0, 0, 0, .06);
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.found-cta-text h4 {
    font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            margin-bottom: .3rem;
            color: var(--text-primary);
}

.found-cta-text p {
    color: var(--text-secondary);
            font-size: .9rem;
}

.insta-fan-wrapper {
    position: relative;
            height: 540px;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: -4rem;
            perspective: 1200px;
            isolation: isolate;
}

.insta-item {
    position: absolute;
            width: 292px;
            height: 420px;
            border-radius: 34px;
            overflow: hidden;
            transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s, filter 0.4s;
            box-shadow: 0 18px 45px rgba(0, 0, 0, 0.42);
            transform-origin: bottom center;
            transform: translateX(var(--tx, 0)) translateY(calc(var(--ty, 100px) + var(--ty-hover, 0px))) rotate(var(--rot, 0deg)) scale(var(--s, 1));
            cursor: pointer;
            z-index: 1;
}

.insta-item::after {
    content: '';
            position: absolute;
            inset: 0;
            border-radius: 34px;
            border: 1px solid rgba(255, 255, 255, 0.22);
            box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
            pointer-events: none;
}

.insta-item img {
    width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s;
}

.reveal.active .insta-item:nth-child(1) {
    --tx: -390px;
            --ty: 124px;
            --rot: -17deg;
            --s: 0.88;
            z-index: 1;
}

.reveal.active .insta-item:nth-child(2) {
    --tx: -205px;
            --ty: 82px;
            --rot: -8deg;
            --s: 0.96;
            z-index: 3;
}

.reveal.active .insta-item:nth-child(3) {
    --tx: 0px;
            --ty: 78px;
            --rot: 0deg;
            --s: 1.02;
            z-index: 7;
}

.reveal.active .insta-item:nth-child(4) {
    --tx: 205px;
            --ty: 82px;
            --rot: 8deg;
            --s: 0.96;
            z-index: 3;
}

.reveal.active .insta-item:nth-child(5) {
    --tx: 390px;
            --ty: 124px;
            --rot: 17deg;
            --s: 0.88;
            z-index: 1;
}

.insta-fan-wrapper .insta-item:hover {
    --ty-hover: -18px;
            z-index: 10 !important;
            filter: brightness(1.04);
            box-shadow: 0 28px 70px rgba(0, 0, 0, 0.58);
}

.insta-item:hover img {
    transform: scale(1.1);
}

.footer-grid-premium > .footer-col {
    padding: 0 2.5rem;
            /* border-right: 1px solid rgba(255, 255, 255, 0.06); */
}

.footer-grid-premium > .footer-col:first-child {
    padding-left: 0;
}

.footer-grid-premium > .footer-col:last-child {
    padding-right: 0;
            border-right: none;
}

.foundation-section-header {
    grid-template-columns: 1fr;
                margin-bottom: 3rem;
                text-align: center;
}

.foundation-section-header-link {
    grid-column: 1;
                grid-row: 3;
                justify-self: center;
                margin-top: 0;
                display: inline-flex;
}

.foundation-container {
    grid-template-columns: 1fr;
                gap: 3rem;
}

.foundation-identity {
    padding-left: 0;
                padding-right: 0;
}

.foundation-data-grid {
    grid-template-columns: 1fr 1fr;
                gap: 0;
}

.foundation-official-footer {
    flex-direction: column;
                gap: 0.75rem;
                text-align: center;
                padding: 1.5rem;
}

.foundation-floating-logo {
    width: 60px;
}

.foundation-logo-text {
    font-size: 2rem;
}

.honey-card {
    gap: 0.9rem;
                grid-template-columns: 1fr;
                padding: 1.35rem;
}

.honey-icon {
    height: auto;
                width: fit-content;
}

.data-item:nth-child(even) {
    border-left: 0;
                padding-left: 0;
}

.data-item:nth-child(n + 2) {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand h2 {
    font-size: 2rem;
}

.footer-bottom-creative {
    flex-direction: column;
                text-align: center;
                gap: 1rem;
}

.footer-bottom-creative>div:last-child {
    flex-direction: column;
                gap: 0.5rem;
}

.mobile-support-link > * {
    position: relative; z-index: 1;
}

.mobile-lang-option + .mobile-lang-option {
    border-left: 1px solid rgba(197, 160, 101, 0.2);
}

.mobile-toggle:focus-visible {
    background: rgba(255, 255, 255, 0.92);
            color: var(--accent-gold);
            outline: none;
            box-shadow: 0 14px 34px rgba(26, 46, 40, 0.12);
}

.mobile-menu-links::before {
    content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, rgba(26, 46, 40, 0.16), rgba(197, 160, 101, 0.2), transparent);
}

.mobile-menu-overlay.active .mobile-menu-links .mobile-link:nth-child(1) {
    transition-delay: 0.05s;
}

.mobile-menu-overlay.active .mobile-menu-links .mobile-link:nth-child(2) {
    transition-delay: 0.09s;
}

.mobile-menu-overlay.active .mobile-menu-links .mobile-link:nth-child(3) {
    transition-delay: 0.13s;
}

.mobile-menu-overlay.active .mobile-menu-links .mobile-link:nth-child(4) {
    transition-delay: 0.17s;
}

.mobile-menu-overlay.active .mobile-menu-links .mobile-link:nth-child(5) {
    transition-delay: 0.21s;
}

.mobile-link:focus-visible {
    color: var(--accent-gold);
            outline: none;
}

.mobile-menu-footer {
    display: grid;
            align-self: end;
            justify-items: center;
            gap: 1rem;
            opacity: 0;
            transform: translateY(16px);
            transition: opacity 0.45s ease 0.28s, transform 0.45s ease 0.28s;
}

.mobile-menu-overlay.active .mobile-menu-footer {
    opacity: 1;
            transform: translateY(0);
}

.mobile-support-link:focus-visible {
    font-style: normal;
            color: white !important;
            outline: none;
}

.mobile-menu-overlay.active .mobile-menu-language {
    opacity: 1;
            transform: translateY(0);
}

.mobile-lang-option.active img {
    border-color: rgba(255, 255, 255, 0.34);
}

.mobile-lang-option:focus-visible {
    background: var(--accent-gold);
            color: #fff;
            outline: none;
}

.mobile-socials a:focus-visible {
    color: white;
            background-color: var(--accent-gold);
            transform: translateY(-3px);
            outline: none;
}

.project-popup-content {
    max-width: 960px;
            padding: 0;
            text-align: left;
            overflow: hidden;
}

.project-popup-grid {
    display: grid;
            grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
            min-height: 520px;
}

.project-popup-image {
    min-height: 520px;
            background: var(--bg-paper);
}

.project-popup-image img {
    display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
}

.project-popup-body {
    display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 4rem 3.5rem;
}

.project-popup-kicker {
    display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            font-family: 'Syne', sans-serif;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.24em;
            text-transform: uppercase;
            color: var(--accent-gold);
            margin-bottom: 1rem;
}

.project-popup-kicker::before {
    content: '';
            width: 32px;
            height: 1px;
            background: var(--accent-gold);
}

.project-popup-title {
    font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2.3rem, 4vw, 3.5rem);
            font-weight: 300;
            line-height: 1.05;
            color: var(--text-primary);
            margin-bottom: 1.4rem;
}

.project-popup-title em {
    color: var(--accent-gold);
            font-style: italic;
}

.project-popup-text {
    color: var(--text-secondary);
            font-size: 1rem;
            line-height: 1.75;
            margin-bottom: 1.8rem;
}

.project-popup-list {
    display: grid;
            gap: 0.85rem;
            margin: 0;
            padding: 0;
            list-style: none;
}

.project-popup-list li {
    display: flex;
            gap: 0.75rem;
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.55;
}

.project-popup-list i {
    color: var(--accent-gold);
            margin-top: 0.25rem;
            flex-shrink: 0;
}

#projectPopup.support-popup-overlay {
    background:
                radial-gradient(circle at 50% 18%, rgba(197, 160, 101, 0.08), transparent 28%),
                rgba(8, 18, 14, 0.72);
            backdrop-filter: blur(16px) saturate(1.02);
            -webkit-backdrop-filter: blur(16px) saturate(1.02);
}

#projectPopup .project-popup-content {
    width: min(92vw, 980px);
            max-width: 980px;
            padding: 0;
            border-radius: 0;
            background: #fffdf9;
            border: 1px solid rgba(255, 255, 255, 0.46);
            box-shadow: 0 36px 96px rgba(6, 16, 12, 0.34);
            text-align: left;
            overflow: hidden;
            transform: translateY(18px) scale(0.985);
}

#projectPopup .project-popup-content::before {
    content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(197, 160, 101, 0.86), transparent);
            z-index: 3;
}

#projectPopup.support-popup-overlay.active .project-popup-content {
    transform: translateY(0) scale(1);
}

#projectPopup .project-popup-grid {
    display: grid;
            grid-template-columns: minmax(330px, 0.92fr) minmax(0, 1.08fr);
            min-height: 560px;
}

#projectPopup .project-popup-image {
    position: relative;
            min-height: 560px;
            background:
                linear-gradient(135deg, rgba(197, 160, 101, 0.18), transparent 46%),
                linear-gradient(180deg, #6f7a70 0%, #12231d 100%);
            overflow: hidden;
}

#projectPopup .project-popup-image::after {
    content: '';
            position: absolute;
            inset: 0;
            background:
                linear-gradient(180deg, rgba(10, 26, 20, 0.04) 0%, rgba(10, 26, 20, 0.48) 100%),
                linear-gradient(90deg, rgba(10, 26, 20, 0.24), transparent 42%);
            pointer-events: none;
}

#projectPopup .project-popup-image img {
    width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
            color: transparent;
            font-size: 0;
            filter: saturate(0.94) contrast(0.98);
}

.project-popup-photo-label {
    position: absolute;
            left: 1.4rem;
            right: 1.4rem;
            bottom: 1.4rem;
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(255, 255, 255, 0.34);
            color: #fff;
}

.project-popup-link {
    font-family: 'Syne', sans-serif;
            font-size: 0.62rem;
            font-weight: 700;
            letter-spacing: 0.16em;
            text-transform: uppercase;
}

.project-popup-photo-label strong {
    font-family: 'Cormorant Garamond', serif;
            font-size: clamp(1.4rem, 2.4vw, 1.9rem);
            font-weight: 400;
            line-height: 1;
}

#projectPopup .project-popup-body {
    display: flex;
            flex-direction: column;
            justify-content: center;
            padding: clamp(3rem, 5vw, 4.7rem);
            background:
                linear-gradient(140deg, rgba(197, 160, 101, 0.09), transparent 38%),
                linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(249, 248, 246, 0.45)),
                #fffdf9;
}

#projectPopup .project-popup-kicker {
    display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 1rem;
            font-family: 'Syne', sans-serif;
            font-size: 0.64rem;
            font-weight: 700;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--accent-gold);
}

#projectPopup .project-popup-kicker::before {
    content: '';
            width: 32px;
            height: 1px;
            background: currentColor;
}

#projectPopup .project-popup-title {
    margin: 0 0 1.15rem;
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2.45rem, 4.4vw, 3.7rem);
            font-weight: 300;
            line-height: 0.98;
            color: var(--text-primary);
}

#projectPopup .project-popup-title em {
    color: var(--accent-gold);
            font-style: italic;
}

#projectPopup .project-popup-text {
    max-width: 30rem;
            margin: 0 0 1.35rem;
            color: var(--text-secondary);
            font-size: 0.96rem;
            line-height: 1.62;
}

#projectPopup .project-popup-list {
    display: grid;
            grid-template-columns: 1fr;
            gap: 0;
            margin: 0;
            padding: 0;
            list-style: none;
            border-top: 1px solid rgba(26, 46, 40, 0.08);
            border-bottom: 1px solid rgba(26, 46, 40, 0.08);
}

#projectPopup .project-popup-list li {
    display: flex;
            align-items: center;
            gap: 0.85rem;
            min-height: 0;
            padding: 0.82rem 0;
            background: transparent;
            border: 0;
            box-shadow: none;
            color: var(--text-primary);
            font-family: 'Syne', sans-serif;
            font-size: 0.64rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            line-height: 1.35;
            text-transform: uppercase;
}

#projectPopup .project-popup-list li + li {
    border-top: 1px solid rgba(26, 46, 40, 0.07);
}

#projectPopup .project-popup-list i {
    width: 32px;
            height: 32px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            background: rgba(197, 160, 101, 0.1);
            color: var(--accent-gold);
            margin-top: 0;
            font-size: 0.86rem;
}

.project-popup-link:focus-visible {
    color: var(--accent-gold);
            gap: 1rem;
            outline: none;
}

#projectPopup .support-popup-close {
    z-index: 4;
            background: rgba(255, 253, 249, 0.9);
            border: 0;
            color: var(--text-primary);
            box-shadow: 0 12px 26px rgba(10, 26, 20, 0.16);
}

#projectPopup .project-popup-photo-label {
    left: 1rem;
                right: 1rem;
                bottom: 0.9rem;
                padding-top: 0.75rem;
}

#projectPopup .project-popup-link {
    font-size: 0.52rem;
                letter-spacing: 0.14em;
}

#projectPopup .project-popup-photo-label strong {
    font-size: 1.25rem;
}

.mobile-menu-top-spacer {
    flex-shrink: 0;
            height: 88px;
}

.mobile-link:focus-visible::after {
    transform: translateX(-50%) scaleX(1);
}

.mobile-sublink:focus-visible::after {
    transform: scaleX(1);
}

.mobile-menu-footer-divider {
    width: 40px;
            height: 1px;
            background: rgba(26, 46, 40, 0.12);
}

.mobile-toggle:focus-visible .bar {
    background-color: var(--accent-gold);
}

.mobile-toggle.active .bar {
    background-color: var(--accent-gold);
}

nav::after {
    content: '';
            position: absolute;
            bottom: 0;
            left: 5%;
            width: 90%;
            height: 1px;
            background: linear-gradient(to right, transparent, rgba(197,160,101,0.25), transparent);
            opacity: 0;
            transition: opacity 0.5s;
}

nav.scrolled::after {
    opacity: 1;
}

.transparent-hero-header nav:not(.scrolled) {
    background: transparent !important;
            box-shadow: none;
}

/* ==========================================================================
   aktualnosci.html Section (aktualnosci.html)
========================================================================== */
/* =============================================
           REDESIGNED PREMIUM NEWS SECTION
        ============================================= */
        .news-section {
            background: #F5F0E8 !important; /* Luksusowe lekko beżowe tło */
            padding: 8rem 0 !important;
            position: relative;
            /* Kompensacja bocznego paska nawigacji dla pełnej szerokości */
            margin-left: calc(-1 * var(--sidebar-width));
            width: calc(100% + var(--sidebar-width));
        }

        @media (max-width: 1024px) {
            .news-section {
                margin-left: 0;
                width: 100%;
            }
        }

        .news-heading-centered {
            text-align: left;
            max-width: 650px;
            margin: 0 0 5rem 0;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 1.25rem;
            padding: 0;
        }
        .news-heading-kicker {
            font-family: 'Syne', sans-serif;
            font-size: 0.65rem;
            font-weight: 600;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            color: var(--accent-gold);
        }
        .news-heading-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2.4rem, 4vw, 3.5rem);
            font-weight: 300;
            line-height: 1.1;
            color: var(--text-primary);
            margin: 0;
            letter-spacing: -0.01em;
        }
        .news-heading-title em {
            font-style: italic;
            color: var(--accent-gold);
        }
        .news-heading-ornament {
            display: flex;
            justify-content: center;
            margin: 0.25rem 0;
            line-height: 0;
        }
        .news-heading-desc {
            font-size: 0.95rem;
            color: rgba(26, 46, 40, 0.7);
            line-height: 1.7;
            margin: 0;
            font-weight: 300;
        }

        /* --- PREMIUM EDITORIAL LIST --- */
        .news-list-premium {
            display: flex;
            flex-direction: column;
            gap: 3.5rem;
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 1;
        }

        .news-list-item-premium {
            background: #ffffff;
            border: 1px solid rgba(197, 160, 101, 0.12);
            display: grid;
            grid-template-columns: 380px 1fr;
            height: 320px;
            transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
            overflow: hidden;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(26, 46, 40, 0.02);
        }

        .news-list-item-premium:hover {
            transform: translateY(-5px);
            border-color: rgba(197, 160, 101, 0.35);
            box-shadow: 0 25px 50px -12px rgba(26, 46, 40, 0.08);
        }

        .nlip-img-wrapper {
            position: relative;
            height: 100%;
            min-height: 0;
            overflow: hidden;
            background: #1a2e28;
        }

        .nlip-img-link {
            display: block;
            width: 100%;
            height: 100%;
        }

        .nlip-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: grayscale(0.1) saturate(0.85);
            transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s ease;
        }

        .news-list-item-premium:hover .nlip-img {
            transform: scale(1.03);
            filter: grayscale(0) saturate(1);
        }

        .nlip-badge {
            position: absolute;
            top: 1.25rem;
            left: 1.25rem;
            background: var(--text-primary);
            color: var(--accent-gold);
            font-family: 'Syne', sans-serif;
            font-size: 0.55rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            padding: 0.45rem 0.9rem;
            z-index: 2;
            border-radius: 6px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        }

        .nlip-content {
            padding: 2.5rem 3rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 1.2rem;
        }

        .nlip-meta {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            font-family: 'Syne', sans-serif;
            font-size: 0.62rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
        }

        .nlip-category {
            color: var(--accent-gold);
        }

        .nlip-sep {
            width: 4px;
            height: 4px;
            background: rgba(197, 160, 101, 0.35);
            border-radius: 50%;
        }

        .nlip-date {
            color: var(--text-light);
        }

        .nlip-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(1.6rem, 2.4vw, 1.9rem);
            font-weight: 400;
            line-height: 1.25;
            color: var(--text-primary);
            margin: 0;
            transition: color 0.3s;
            letter-spacing: -0.01em;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .nlip-title a {
            color: inherit;
            text-decoration: none;
        }

        .nlip-title a:hover {
            color: var(--accent-gold);
        }

        .nlip-excerpt {
            font-size: 0.9rem;
            line-height: 1.7;
            color: var(--text-secondary);
            font-weight: 300;
            margin: 0;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .nlip-btn-wrapper {
            margin-top: 0.5rem;
        }

        .nlip-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            font-family: 'Syne', sans-serif;
            font-size: 0.68rem;
            font-weight: 700;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--text-primary);
            text-decoration: none;
            position: relative;
            padding-bottom: 0.25rem;
            transition: color 0.3s;
        }

        .nlip-btn::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: var(--accent-gold);
            transform: scaleX(0.18);
            transform-origin: left;
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .nlip-btn:hover {
            color: var(--accent-gold);
        }

        .nlip-btn:hover::after {
            transform: scaleX(1);
        }

        .nlip-btn i {
            font-size: 0.7rem;
            transition: transform 0.3s;
        }

        .nlip-btn:hover i {
            transform: translateX(5px);
        }

        /* Responsywność */
        @media (max-width: 900px) {
            .news-list-item-premium {
                grid-template-columns: 1fr;
                height: auto;
            }
            .nlip-img-wrapper {
                height: 240px;
                min-height: auto;
            }
            .nlip-content {
                padding: 2.2rem 2rem;
            }
        }
        @media (max-width: 650px) {
            .news-list-premium {
                gap: 2.5rem;
                padding: 0 1.5rem;
            }
            .news-heading-centered {
                margin-bottom: 3.5rem;
            }
            .nlip-content {
                padding: 1.8rem 1.5rem;
            }
            .nlip-title {
                font-size: 1.45rem;
            }
        }

/* ==========================================================================
   section-title em styling (aktualnosci.html)
========================================================================== */
/* section-title em styling */
        .section-title em { font-style: italic; color: var(--accent-gold); }
        /* Force solid nav background on subpages to avoid transparency issues without hero */
        nav#navbar {
            background: #F9F8F6 !important;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
            padding: 1rem 0 !important;
        }
        nav#navbar .logo img {
            max-height: 42px;
        }
        @media (max-width: 1024px) {
            nav#navbar .logo img {
                max-height: 42px;
            }
        }
        @media (max-width: 768px) {
            nav#navbar .logo img {
                max-height: 50px;
                padding: 10px;
            }
        }
        @media (max-width: 480px) {
            nav#navbar .logo img {
                max-height: 50px;
                padding: 10px;
            }
        }

/* ==========================================================================
   .page-hero-desc, .khm-desc { (aktualnosci.html)
========================================================================== */
.page-hero-desc, .khm-desc {
            max-width: 450px !important;
        }
        .hero-more-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: rgba(255,255,255,0.7);
            font-family: 'Syne', sans-serif;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            text-decoration: none;
            margin-top: 1.5rem;
            transition: color 0.3s, transform 0.3s;
        }
        .hero-more-btn:hover {
            color: var(--accent-gold);
            transform: translateY(3px);
        }

/* ==========================================================================
   aktualnosci.html Section (aktualnosci.html)
========================================================================== */
/* =============================================
           PAGE HERO BANNER – KLASA I MINIMALIZM
        ============================================= */
        /* Ukryj grain na tej podstronie */
        body:has(.page-hero-banner)::before {
            display: none !important;
        }

        .page-hero-banner {
            min-height: 48vh;
            background: var(--text-primary);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 1.5rem;
            text-align: center;
            position: relative;
            /* Kompensacja sidebaru 100px – sekcja na pełną szerokość okna */
            margin-left: calc(-1 * var(--sidebar-width));
            width: calc(100% + var(--sidebar-width));
            padding: 13rem 2rem 1rem;
            overflow: hidden;
            border-bottom: none;
        }

        /* Zdjęcie tła */
        .page-hero-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
        }
        .page-hero-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center 20%;
            filter: blur(3px) saturate(0.7);
            transform: scale(1.06);
        }
        /* Podwójny overlay: głęboki ciemny + złoty akcent od dołu */
        .page-hero-overlay {
            position: absolute;
            inset: 0;
            background:
                linear-gradient(
                    to bottom,
                    rgba(10, 18, 15, 0.72) 0%,
                    rgba(26, 46, 40, 0.80) 50%,
                    rgba(10, 18, 15, 0.88) 100%
                );
            z-index: 1;
        }

        /* Wszystkie elementy nad tłem */
        .page-hero-banner > *:not(.page-hero-bg) {
            position: relative;
            z-index: 1;
        }

        .page-hero-breadcrumb {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-family: 'Syne', sans-serif;
            font-size: 0.62rem;
            font-weight: 600;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.5);
            justify-content: center;
            margin-bottom: 0;
        }
        .page-hero-breadcrumb a {
            color: rgba(255,255,255,0.5);
            text-decoration: none;
            transition: color 0.3s;
        }
        .page-hero-breadcrumb a:hover { color: var(--accent-gold); }
        .page-hero-breadcrumb__sep {
            color: rgba(197,160,101,0.5);
        }

        /* Ornament SVG */
        .page-hero-ornament {
            display: flex;
            justify-content: center;
            line-height: 0;
        }

        /* Tytuł */
        .page-hero-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2.6rem, 4.5vw, 4.2rem);
            font-weight: 300;
            line-height: 1.05;
            letter-spacing: -0.02em;
            color: #fff;
            margin: 0;
        }
        .page-hero-title em {
            font-style: italic;
            color: var(--accent-gold);
        }

        /* Opis */
        .page-hero-desc {
            font-size: 0.92rem;
            color: rgba(255,255,255,0.58);
            line-height: 1.7;
            max-width: 340px;
            font-weight: 300;
            margin: 0 auto;
        }

        /* Scroll */
        .page-hero-scroll-indicator {
            position: absolute;
            bottom: 1.75rem;
            left: 50%;
            transform: translateX(-50%);
            z-index: 1;
        }
        .scroll-line {
            width: 1px;
            height: 48px;
            background: linear-gradient(to bottom, rgba(197,160,101,0.8), transparent);
            animation: scrollPulse 2s ease-in-out infinite;
        }
        @keyframes scrollPulse { 0%, 100% { opacity: 0.4; } 50% { opacity: 1; } }

        .hero-more-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            font-family: 'Syne', sans-serif;
            font-size: 0.65rem;
            font-weight: 600;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--accent-gold);
            text-decoration: none;
            padding: 0.6rem 1.4rem;
            /* border: 1px solid rgba(197, 160, 101, 0.3); */
            border-radius: 0px;
            transition: all 0.3s;
            background: rgba(197,160,101,0.05);
        }
        .hero-more-btn:hover {
            background: rgba(197,160,101,0.15);
            border-color: rgba(197,160,101,0.6);
            transform: translateY(-2px);
        }

        @media (max-width: 1024px) {
            .page-hero-banner {
                margin-left: 0;
                width: 100%;
            }
        }
        @media (max-width: 600px) {
            .page-hero-banner {
                min-height: auto;
                padding: 9.5rem 1.5rem 1rem;
                gap: 1.25rem;
            }
            .page-hero-title {
                font-size: clamp(2.4rem, 10vw, 3.2rem);
            }
        }

/* ==========================================================================
   Slider CSS (aktualnosci.html)
========================================================================== */
/* Slider CSS */
.featured-slider-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    height: 460px;
    margin: 0 auto 5rem auto;
    border-radius: 0;
    overflow: hidden;
    background: var(--text-primary);
    box-shadow: none;
}
.featured-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s ease-in-out, visibility 1.2s ease-in-out;
    display: flex;
    align-items: flex-end;
    z-index: 1;
}
.featured-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}
.fs-img-wrapper {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.fs-img-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10,18,15,0.85) 0%, rgba(10,18,15,0.4) 50%, transparent 100%),
                linear-gradient(0deg, rgba(10,18,15,0.5) 0%, transparent 50%);
    z-index: 2;
}
.fs-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.95) saturate(1.1);
    transform: scale(1.05);
    transition: transform 6s ease-out;
}
.featured-slide.active .fs-img-wrapper img {
    transform: scale(1);
}
.fs-content {
    position: relative;
    z-index: 3;
    padding: 5rem 6rem;
    color: #fff;
    max-width: 1000px;
    width: 100%;
    transform: translateY(15px);
    opacity: 0;
    transition: all 0.8s ease 0.3s;
}
.featured-slide.active .fs-content {
    transform: translateY(0);
    opacity: 1;
}
.fs-badge {
    background: transparent;
    color: var(--accent-gold);
    padding: 0;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    border-radius: 0;
    margin-bottom: 1.2rem;
    display: inline-block;
    font-family: 'Syne';
}
.fs-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.6rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 1rem;
}
.fs-excerpt {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin-bottom: 2rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.fs-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.5rem 0;
    border-radius: 0;
    transition: all 0.4s ease;
    font-family: 'Syne';
}
.fs-btn:hover {
    background: transparent;
    color: var(--accent-gold);
    border-bottom-color: var(--accent-gold);
    gap: 1.2rem;
}
.fs-controls {
    position: absolute;
    bottom: 4rem;
    right: 5rem;
    z-index: 3;
    display: flex;
    gap: 1rem;
}
.fs-control-btn {
    width: 48px;
    height: 48px;
    border-radius: 0;
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}
.fs-control-btn:hover {
    background: transparent;
    color: var(--accent-gold);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .fs-content { padding: 2rem; }
    .fs-title { font-size: 2rem; }
    .fs-excerpt {
        display: -webkit-box;
        font-size: 0.82rem;
        line-height: 1.42;
        margin-bottom: 1.35rem;
        max-width: 92%;
        overflow: hidden;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }
    .fs-controls { display: none; }
}

@media (max-width: 480px) {
    .fs-excerpt {
        font-size: 0.76rem;
        line-height: 1.36;
        margin-bottom: 1.15rem;
        max-width: 88%;
    }
}

/* ==========================================================================
   Contact Section Enhancements (cookies.html)
========================================================================== */
/* Contact Section Enhancements */
        .contact-section {
            padding: 8rem 0 !important;
            background: linear-gradient(180deg, #FDFDFD 0%, #F5F4F0 100%) !important;
            position: relative;
        }
        .contact-grid {
            display: flex !important;
            flex-direction: column !important;
            gap: 0 !important;
        }
        /* Górna cześć: heading + dane kontaktowe obok siebie */
        .contact-top-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
            margin-bottom: 4rem;
            padding-bottom: 3rem;
            border-bottom: 1px solid rgba(197,160,101,0.15);
        }
        /* Dolna cześć: formularz na całej szerokości */
        .contact-form-full {
            width: 100%;
        }
        .contact-form-full .contact-form {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0 2.5rem;
        }
        .contact-form-full .contact-form .form-row {
            display: contents !important;
        }
        .contact-form-full .contact-form .field {
            grid-column: span 1;
        }
        /* Pola zajmujące całą szerokość */
        .contact-form-full .contact-form .field--full,
        .contact-form-full .contact-form .field:has(select),
        .contact-form-full .contact-form .field:has(textarea),
        .contact-form-full .contact-form .checkbox-row,
        .contact-form-full .contact-form .form-alert,
        .contact-form-full .contact-form .btn-primary {
            grid-column: span 2;
        }
        @media (max-width: 992px) {
            .contact-section {
                padding: 6rem 0 !important;
            }
            .contact-top-row {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            .contact-form-full .contact-form {
                grid-template-columns: 1fr;
            }
            .contact-form-full .contact-form .field,
            .contact-form-full .contact-form .field--full,
            .contact-form-full .contact-form .field:has(select),
            .contact-form-full .contact-form .field:has(textarea),
            .contact-form-full .contact-form .checkbox-row,
            .contact-form-full .contact-form .btn-primary {
                grid-column: span 1;
            }
        }

        /* === ZŁOTE SEPARATORY MIĖDZY SEKCJAMI === */
        .section-gold-divider {
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg,
                transparent 0%,
                rgba(197, 160, 101, 0.12) 15%,
                rgba(197, 160, 101, 0.45) 40%,
                rgba(197, 160, 101, 0.55) 50%,
                rgba(197, 160, 101, 0.45) 60%,
                rgba(197, 160, 101, 0.12) 85%,
                transparent 100%
            );
            position: relative;
        }
        /* Dekoracyjny romb pośrodku separatora */
        .section-gold-divider::after {
            content: '\25C6';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 0.5rem;
            color: rgba(197, 160, 101, 0.7);
            background: var(--bg-paper);
            padding: 0 0.5rem;
            line-height: 1;
        }
        /* Jeśli separator jest na białym tle */
        .section-gold-divider--white::after {
            background: #fff;
        }

/* ==========================================================================
   .legal-content-wrapper { (cookies.html)
========================================================================== */
.legal-content-wrapper {
            max-width: 840px;
            margin: 0 auto;
            color: var(--text-secondary);
            font-family: 'Inter', sans-serif;
            font-size: 1.05rem;
            line-height: 1.8;
        }
        .legal-content-wrapper h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.4rem;
            color: var(--text-primary);
            margin: 3.5rem 0 1.5rem;
            font-weight: 300;
            border-bottom: 1px solid rgba(197, 160, 101, 0.2);
            padding-bottom: 0.5rem;
        }
        .legal-content-wrapper h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.6rem;
            color: var(--text-primary);
            margin: 2.5rem 0 1rem;
            font-weight: 400;
        }
        .legal-content-wrapper p {
            margin-bottom: 1.25rem;
        }
        .legal-content-wrapper ul {
            margin-bottom: 1.5rem;
            padding-left: 1.5rem;
            list-style-type: square;
        }
        .legal-content-wrapper li {
            margin-bottom: 0.5rem;
        }
        .legal-content-wrapper a {
            color: var(--accent-gold);
            text-decoration: none;
            transition: opacity 0.3s;
        }
        .legal-content-wrapper a:hover {
            opacity: 0.8;
            text-decoration: underline;
        }
        .legal-content-wrapper strong {
            color: var(--text-primary);
            font-weight: 600;
        }
        
        .sitemap-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin-top: 2rem;
        }
        .sitemap-col h3 {
            margin-top: 0;
            border-bottom: 1px solid rgba(197, 160, 101, 0.2);
            padding-bottom: 0.5rem;
        }
        .sitemap-list {
            list-style: none !important;
            padding: 0 !important;
        }
        .sitemap-list li {
            margin-bottom: 0.8rem;
        }
        .sitemap-list a {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.1rem;
            color: var(--text-primary);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .sitemap-list a::before {
            content: '\2014';
            color: var(--accent-gold);
            transition: transform 0.3s ease;
        }
        .sitemap-list a:hover {
            color: var(--accent-gold);
            text-decoration: none;
        }
        .sitemap-list a:hover::before {
            transform: translateX(5px);
        }
        @media (max-width: 768px) {
            .sitemap-grid { grid-template-columns: 1fr; }
            .legal-content-wrapper h2 { font-size: 2rem; }
        }

/* ==========================================================================
   fundacja-beehouses.html Section (fundacja-beehouses.html)
========================================================================== */
/* =============================================
           PAGE HERO BANNER – KLASA I MINIMALIZM
        ============================================= */
        /* Ukryj grain na tej podstronie */
        body:has(.page-hero-banner)::before {
            display: none !important;
        }

        .page-hero-banner {
            min-height: 48vh;
            background: var(--text-primary);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 1.5rem;
            text-align: center;
            position: relative;
            /* Kompensacja sidebaru 100px – sekcja na pełną szerokość okna */
            margin-left: calc(-1 * var(--sidebar-width));
            width: calc(100% + var(--sidebar-width));
            padding: 13rem 2rem 1rem;
            overflow: hidden;
            border-bottom: none;
        }

        /* Zdjęcie tła */
        .page-hero-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
        }
        .page-hero-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center 20%;
            filter: blur(3px) saturate(0.7);
            transform: scale(1.06);
        }
        /* Podwójny overlay: głęboki ciemny + złoty akcent od dołu */
        .page-hero-overlay {
            position: absolute;
            inset: 0;
            background:
                linear-gradient(
                    to bottom,
                    rgba(10, 18, 15, 0.72) 0%,
                    rgba(26, 46, 40, 0.80) 50%,
                    rgba(10, 18, 15, 0.88) 100%
                );
            z-index: 1;
        }

        /* Wszystkie elementy nad tłem */
        .page-hero-banner > *:not(.page-hero-bg) {
            position: relative;
            z-index: 1;
        }

        .page-hero-breadcrumb {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-family: 'Syne', sans-serif;
            font-size: 0.62rem;
            font-weight: 600;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.5);
            justify-content: center;
            margin-bottom: 0;
        }
        .page-hero-breadcrumb a {
            color: rgba(255,255,255,0.5);
            text-decoration: none;
            transition: color 0.3s;
        }
        .page-hero-breadcrumb a:hover { color: var(--accent-gold); }
        .page-hero-breadcrumb__sep {
            color: rgba(197,160,101,0.5);
        }

        /* Ornament SVG */
        .page-hero-ornament {
            display: flex;
            justify-content: center;
            line-height: 0;
        }

        /* Tytuł */
        .page-hero-headline.reveal-soft-blur {
            overflow: visible;
            clip-path: inset(-0.2rem -1.5rem 18% -0.25rem);
        }

        .page-hero-headline.reveal-soft-blur.active {
            clip-path: inset(-0.2rem -1.5rem -0.2rem -0.25rem);
        }

        .page-hero-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2.6rem, 4.5vw, 4.2rem);
            font-weight: 300;
            line-height: 1.05;
            letter-spacing: -0.02em;
            color: #fff;
            margin: 0;
        }
        .page-hero-title em {
            display: inline-block;
            font-style: italic;
            color: var(--accent-gold);
            padding-right: 0.16em;
            margin-right: -0.16em;
        }

        /* Opis */
        .page-hero-desc {
            font-size: 0.86rem;
            color: rgba(255,255,255,0.58);
            line-height: 1.55;
            max-width: 340px;
            font-weight: 300;
            margin: 0 auto;
        }

        /* Scroll */
        .page-hero-scroll-indicator {
            position: absolute;
            bottom: 0.7rem;
            left: 50%;
            transform: translateX(-50%);
            z-index: 1;
        }
        .scroll-line {
            width: 1px;
            height: 26px;
            background: linear-gradient(to bottom, transparent, rgba(197,160,101,0.6));
            animation: scrollPulse 2s ease-in-out infinite;
        }

        @keyframes scrollPulse { 0%, 100% { opacity: 0.4; } 50% { opacity: 1; } }

        @media (max-width: 1024px) {
            .page-hero-banner {
                margin-left: 0;
                width: 100%;
            }
        }
        @media (max-width: 600px) {
            .page-hero-banner {
                min-height: auto;
                padding: 9.5rem 1.5rem 1rem;
                gap: 1.25rem;
            }
            .page-hero-title {
                font-size: clamp(2.4rem, 10vw, 3.2rem);
            }
            .foundation-visit-btn {
                font-size: 0.64rem;
                letter-spacing: 0.08em;
            }
            .foundation-visit-btn i {
                margin-left: 0.38rem !important;
                font-size: 0.72em !important;
            }
        }

/* ==========================================================================
   --- NEW ABOUT FOUNDATION SECTION --- (fundacja-beehouses.html)
========================================================================== */
/* --- NEW ABOUT FOUNDATION SECTION --- */
        .foundation-about-section {
            padding: 8rem 0;
            background: #fff;
            position: relative;
        }
        .foundation-about-grid {
            display: grid;
            grid-template-columns: 0.9fr 1.1fr;
            gap: 8rem;
            align-items: center;
        }
        .foundation-label {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }
        .fl-line {
            width: 50px;
            height: 1px;
            background: var(--accent-gold);
        }
        .fl-text {
            font-family: 'Syne', sans-serif;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.25em;
            color: var(--accent-gold);
            font-weight: 700;
        }
        .foundation-about-content {
            max-width: 600px;
        }
        .foundation-about-content .section-title {
            margin-bottom: 2.5rem;
            font-size: clamp(2.2rem, 4vw, 3.2rem);
        }
        .foundation-about-desc {
            font-size: 1.05rem;
            line-height: 1.8;
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
        }
        .foundation-award-badge {
            display: inline-flex;
            align-items: center;
            max-width: 100%;
            box-sizing: border-box;
            gap: 1.25rem;
            margin-top: 2.5rem;
            padding: 1.5rem 2rem;
            background: #fff;
            border: 1px solid rgba(197, 160, 101, 0.25);
            border-left: 4px solid var(--accent-gold);
            box-shadow: 0 16px 40px rgba(26, 46, 40, 0.05);
            border-radius: 4px;
        }
        .fa-badge-icon {
            font-size: 2.2rem;
            color: var(--accent-gold);
            flex: 0 0 auto;
        }
        .fa-badge-content {
            display: flex;
            flex-direction: column;
            min-width: 0;
            gap: 0.25rem;
        }
        .fa-badge-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--text-primary);
            line-height: 1.2;
            overflow-wrap: anywhere;
        }
        .fa-badge-desc {
            font-size: 0.85rem;
            color: var(--text-secondary);
            font-weight: 400;
            line-height: 1.45;
            overflow-wrap: anywhere;
        }
        .foundation-about-img-wrapper {
            position: relative;
            border-radius: 0;
            aspect-ratio: 4/5;
            margin-left: 20px;
            margin-top: 20px;
        }
        .foundation-about-img-wrapper::before {
            content: '';
            position: absolute;
            top: -20px;
            left: -20px;
            width: 100%;
            height: 100%;
            border: 1px solid var(--accent-gold);
            z-index: 0;
            pointer-events: none;
        }
        .foundation-about-img-wrapper::after {
            display: none;
        }
        .foundation-about-img-wrapper img {
            position: relative;
            z-index: 1;
            width: 100%;
            height: 100%;
            object-fit: cover;
            box-shadow: 0 30px 60px rgba(0,0,0,0.1);
        }
        .foundation-about-logo {
            display: none;
            position: absolute;
            left: clamp(1.05rem, 3vw, 1.6rem);
            bottom: clamp(1rem, 3vw, 1.45rem);
            z-index: 3;
            width: clamp(128px, 18vw, 188px);
            padding: 0;
            background: transparent;
            border: 0;
            box-shadow: none;
            filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.42));
        }
        .foundation-about-logo img {
            width: 100%;
            height: auto;
            display: block;
            object-fit: contain;
            box-shadow: none;
        }
        @media (max-width: 992px) {
            .foundation-about-grid {
                grid-template-columns: 1fr;
                gap: 4rem;
            }
            .foundation-about-img-wrapper {
                aspect-ratio: 16/10;
            }
        }

        @media (max-width: 600px) {
            .foundation-about-section {
                padding: 3rem 0;
                background: #fff;
                position: relative;
            }

            .foundation-about-desc {
                font-size: 0.86rem;
                line-height: 1.62;
                margin-bottom: 1.1rem;
            }

            .foundation-about-logo {
                width: 118px;
                left: 1rem;
                right: auto;
                bottom: 0.95rem;
            }

            .foundation-award-badge {
                width: 100%;
                align-items: flex-start;
                gap: 0.95rem;
                margin-top: 2rem;
                padding: 1.15rem 1.1rem;
            }

            .fa-badge-icon {
                font-size: 1.65rem;
                margin-top: 0.15rem;
            }

            .fa-badge-title {
                font-size: 1.22rem;
            }

            .fa-badge-desc {
                font-size: 0.78rem;
            }
        }

/* ==========================================================================
   .creative-project-showcase { (fundacja-beehouses.html)
========================================================================== */
.creative-project-showcase {
            display: flex;
            align-items: center;
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem 0;
        }
        .cp-image {
            width: 40%;
            position: relative;
            z-index: 1;
        }
        .cp-image img {
            width: 100%;
            height: 700px;
            object-fit: cover;
            display: block;
            box-shadow: 0 40px 80px rgba(0,0,0,0.15);
        }
        .cp-content {
            width: 70%;
            background: #fff;
            padding: 6rem 5rem;
            position: relative;
            z-index: 2;
            margin-left: -10%;
            box-shadow: 0 30px 60px rgba(0,0,0,0.08);
        }
        .cp-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 3.5rem;
            font-weight: 300;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            color: var(--text-primary);
        }
        .cp-title em {
            color: var(--accent-gold);
            font-style: italic;
        }
        .cp-desc {
            font-size: 1.05rem;
            line-height: 1.8;
            color: var(--text-secondary);
            margin-bottom: 2.5rem;
        }
        .cp-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            font-family: 'Syne', sans-serif;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            font-weight: 700;
            color: var(--text-primary);
            border-bottom: 1px solid var(--accent-gold);
            border-top: 0;
            border-right: 0;
            border-left: 0;
            background: transparent;
            padding-bottom: 0.3rem;
            text-decoration: none;
            cursor: pointer;
            transition: gap 0.3s, color 0.3s;
        }
        .cp-btn:hover {
            color: var(--accent-gold);
            gap: 1.2rem;
        }
        @media (max-width: 992px) {
            .creative-project-showcase { flex-direction: column; padding: 0; }
            .cp-image {
                width: min(86%, 360px);
                margin: 0 auto;
            }
            .cp-image img {
                height: clamp(280px, 82vw, 360px);
                object-fit: cover;
                object-position: center;
                background: transparent;
                box-shadow: 0 22px 46px rgba(26, 46, 40, 0.1);
            }
            .cp-content { width: 95%; margin-left: 0; margin-top: -10%; padding: 3rem 2rem; }
            .cp-title { font-size: 2.5rem; }
        }

/* ==========================================================================
   .foundation-recruitment-section { (fundacja-beehouses.html)
========================================================================== */
.foundation-recruitment-section {
            position: relative;
            overflow: hidden;
            padding: clamp(3rem, 6vw, 5.25rem) 0;
            background:
                linear-gradient(135deg, rgba(13, 28, 23, 0.98), rgba(24, 45, 37, 0.94)),
                radial-gradient(circle at top right, rgba(197, 160, 101, 0.18), transparent 44%);
            color: #fff;
        }

        .foundation-recruitment-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, rgba(197, 160, 101, 0.14), transparent 34%, rgba(255, 255, 255, 0.04));
            opacity: 0.65;
            pointer-events: none;
        }

        .foundation-recruitment-grid {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.58fr);
            gap: clamp(2rem, 5vw, 4rem);
            align-items: center;
        }

        .foundation-recruitment-copy {
            max-width: 760px;
        }

        .foundation-recruitment-label {
            display: inline-flex;
            align-items: center;
            gap: 0.95rem;
            margin-bottom: 1rem;
            font-family: 'Syne', sans-serif;
            font-size: 0.68rem;
            font-weight: 700;
            letter-spacing: 0.24em;
            line-height: 1.5;
            text-transform: uppercase;
            color: var(--accent-gold);
        }

        .foundation-recruitment-label::before {
            content: '';
            width: 42px;
            height: 1px;
            background: currentColor;
            opacity: 0.72;
        }

        .foundation-recruitment-title {
            margin: 0;
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2.45rem, 5vw, 4.8rem);
            font-weight: 300;
            line-height: 0.96;
            color: #fff;
        }

        .foundation-recruitment-title em {
            color: var(--accent-gold);
            font-style: italic;
        }

        .foundation-recruitment-text {
            max-width: 620px;
            margin: 1.2rem 0 0;
            color: rgba(255, 255, 255, 0.76);
            font-size: clamp(0.98rem, 1.2vw, 1.08rem);
            line-height: 1.75;
        }

        .foundation-recruitment-actions {
            display: flex;
            align-items: center;
            gap: 1rem;
            flex-wrap: wrap;
            margin-top: 1.8rem;
        }

        .foundation-recruitment-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            min-height: 52px;
            padding: 0.9rem 1.45rem;
            border: 1px solid var(--accent-gold);
            background: var(--accent-gold);
            color: var(--text-primary);
            font-family: 'Syne', sans-serif;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            text-decoration: none;
            transition: background 0.25s ease, color 0.25s ease, gap 0.25s ease;
        }

        .foundation-recruitment-btn:hover,
        .foundation-recruitment-btn:focus-visible {
            gap: 1rem;
            background: transparent;
            color: #fff;
            outline: none;
        }

        .foundation-recruitment-note {
            margin: 0;
            color: rgba(255, 255, 255, 0.58);
            font-size: 0.86rem;
            line-height: 1.6;
        }

        .foundation-recruitment-photo {
            position: relative;
            margin: 0;
            min-height: clamp(260px, 31vw, 390px);
            overflow: hidden;
            border: 1px solid rgba(197, 160, 101, 0.32);
            box-shadow: 0 34px 76px rgba(0, 0, 0, 0.22);
        }

        .foundation-recruitment-photo img {
            width: 100%;
            height: 100%;
            min-height: inherit;
            object-fit: cover;
            display: block;
            filter: saturate(0.96) contrast(1.04);
        }

        .foundation-recruitment-photo figcaption {
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            padding: 1rem 1.1rem;
            background: linear-gradient(180deg, transparent, rgba(10, 26, 20, 0.82));
            color: rgba(255, 255, 255, 0.78);
            font-family: 'Syne', sans-serif;
            font-size: 0.58rem;
            font-weight: 700;
            letter-spacing: 0.2em;
            text-transform: uppercase;
        }

        @media (max-width: 900px) {
            .foundation-recruitment-grid {
                grid-template-columns: 1fr;
            }

            .foundation-recruitment-photo {
                min-height: 260px;
            }
        }

        @media (max-width: 600px) {
            .foundation-recruitment-section {
                padding: 2.5rem 0;
            }

            .foundation-recruitment-actions {
                align-items: flex-start;
                flex-direction: column;
            }

            .foundation-recruitment-btn {
                width: 100%;
            }
        }

/* ==========================================================================
   --- ARTICLE SPECIFIC STYLES --- (inicjatywa-brodnica-beehouses-z-nagroda-srebrnego-wilka.html)
========================================================================== */
/* --- ARTICLE SPECIFIC STYLES --- */

        /* ── Layout ── */
        .article-hero {
            padding-top: 8rem;
            padding-bottom: 6rem;
            position: relative;
            background: var(--bg-paper);
        }

        .article-layout {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 4rem;
            position: relative;
            align-items: start;
        }

        /* ── Main Article Card ── */
        .article-content {
            background: var(--bg-white);
            padding: 3.5rem;
            border-radius: 0;
            box-shadow: var(--shadow-soft);
            border: 1px solid rgba(197, 160, 101, 0.08);
        }

        /* ── Article Header ── */
        .article-header {
            margin-bottom: 2.5rem;
            border-bottom: 1px solid rgba(197, 160, 101, 0.15);
            padding-bottom: 2rem;
        }

        .article-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 1.5rem;
            font-family: 'Syne', sans-serif;
            font-size: 0.68rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.22em;
            color: var(--accent-gold);
            margin-bottom: 1.5rem;
            align-items: center;
        }
        .article-meta span {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--text-secondary);
        }
        .article-meta span:not(:last-child)::after {
            content: '·';
            margin-left: 1.5rem;
            color: rgba(197, 160, 101, 0.4);
        }
        .article-meta i { color: var(--accent-gold); }

        /* ── Breadcrumb row — sits above the article card ── */
        .breadcrumb-row {
            margin-bottom: 1.5rem;
        }
        .article-breadcrumb {
            font-family: 'Syne', sans-serif;
            font-size: 0.65rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--text-light);
            display: flex;
            align-items: center;
            gap: 0.5rem;
            flex-wrap: wrap;
        }
        .article-breadcrumb a { color: var(--accent-gold); transition: opacity 0.3s; text-decoration: none; }
        .article-breadcrumb a:hover { opacity: 0.7; }
        .article-breadcrumb i { font-size: 0.55rem; color: var(--text-light); }
        .article-breadcrumb span { color: var(--text-secondary); }

        /* ── Article Title ── */
        .article-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2.2rem, 3.5vw, 3.4rem);
            font-weight: 300;
            line-height: 1.12;
            letter-spacing: -0.01em;
            color: var(--text-primary);
            margin-bottom: 0;
        }

        /* ── Featured Image ── */
        .article-featured-img {
            width: 100%;
            height: 420px;
            object-fit: cover;
            border-radius: 0;
            margin-bottom: 2.5rem;
            border-bottom: 3px solid var(--accent-gold);
            display: block;
        }

        /* ── Body Typography ── */
        .article-body {
            font-family: 'Plus Jakarta Sans', sans-serif;
        }

        .article-body p {
            margin-bottom: 1.6rem;
            font-size: 1rem;
            line-height: 1.85;
            color: var(--text-secondary);
            font-weight: 300;
        }

        .article-body p.lead {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.35rem;
            font-weight: 400;
            line-height: 1.6;
            color: var(--text-primary);
            font-style: italic;
            margin-bottom: 2rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid rgba(197, 160, 101, 0.15);
        }

        .article-body strong {
            font-weight: 600;
            color: var(--text-primary);
        }

        /* ── Section Headings in Body ── */
        .article-body h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(1.7rem, 2.5vw, 2.2rem);
            font-weight: 300;
            line-height: 1.15;
            letter-spacing: -0.01em;
            color: var(--text-primary);
            margin: 3rem 0 1.25rem;
            padding-top: 2rem;
            position: relative;
        }
        .article-body h2::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 32px;
            height: 2px;
            background: var(--accent-gold);
        }

        .article-body h3 {
            font-family: 'Syne', sans-serif;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.22em;
            color: var(--accent-gold);
            margin: 2rem 0 0.75rem;
        }

        /* ── Pull Quote ── */
        .article-quote {
            border-left: 3px solid var(--accent-gold);
            padding: 1.75rem 2.25rem;
            margin: 2.5rem 0;
            background: rgba(197, 160, 101, 0.04);
            position: relative;
        }
        .article-quote::before {
            content: '“';
            position: absolute;
            top: -0.5rem;
            left: 1.5rem;
            font-family: 'Cormorant Garamond', serif;
            font-size: 5rem;
            line-height: 1;
            color: var(--accent-gold);
            opacity: 0.15;
            pointer-events: none;
        }
        .article-quote p,
        .article-quote {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.35rem;
            font-style: italic;
            font-weight: 300;
            line-height: 1.55;
            color: var(--text-primary);
            margin: 0;
        }

        /* ── Lists in body ── */
        .article-body ul,
        .article-body ol {
            margin-bottom: 1.75rem;
            padding-left: 0;
            list-style: none;
        }
        .article-body li {
            position: relative;
            padding-left: 1.75rem;
            margin-bottom: 0.85rem;
            font-size: 1rem;
            line-height: 1.75;
            color: var(--text-secondary);
            font-weight: 300;
        }
        .article-body li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0.65em;
            width: 8px;
            height: 1px;
            background: var(--accent-gold);
        }
        /* Keep inline icon lists working (they use <i> tags) */
        .article-body li i.fa-solid,
        .article-body li i.fa-check,
        .article-body li i.fa-seedling,
        .article-body li i.fa-laptop,
        .article-body li i.fa-map-location-dot,
        .article-body li i.fa-users {
            position: absolute;
            left: 0;
            top: 0.2rem;
            color: var(--accent-gold);
        }
        .article-body li:has(i.fa-solid),
        .article-body li:has(i.fa-check),
        .article-body li:has(i.fa-seedling),
        .article-body li:has(i.fa-laptop),
        .article-body li:has(i.fa-map-location-dot),
        .article-body li:has(i.fa-users) {
            padding-left: 2rem;
        }
        .article-body li:has(i.fa-solid)::before,
        .article-body li:has(i.fa-check)::before,
        .article-body li:has(i.fa-seedling)::before,
        .article-body li:has(i.fa-laptop)::before,
        .article-body li:has(i.fa-map-location-dot)::before,
        .article-body li:has(i.fa-users)::before {
            display: none;
        }

        /* ── Gallery ── */
        .article-gallery {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 0.75rem;
            margin: 2.5rem 0;
        }
        .article-gallery img {
            width: 100%;
            height: 240px;
            object-fit: cover;
            border-radius: 0;
            transition: transform 0.5s var(--transition), filter 0.5s ease;
            filter: sepia(5%) contrast(1.03);
        }
        .article-gallery img:hover {
            transform: scale(1.02);
            filter: sepia(0%) contrast(1.06);
        }

        /* ── Right Sidebar ── */
        .article-sidebar-sticky {
            position: sticky;
            top: 110px;
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .sidebar-widget {
            background: var(--bg-white);
            padding: 2rem;
            border: 1px solid rgba(197, 160, 101, 0.1);
            box-shadow: var(--shadow-soft);
            border-radius: 0;
        }

        /* Widget heading — matches footer col h5 */
        .widget-title {
            font-family: 'Syne', sans-serif;
            font-size: 0.65rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.25em;
            color: var(--accent-gold);
            margin-bottom: 1.5rem;
            padding-bottom: 0.75rem;
            border-bottom: 1px solid rgba(197, 160, 101, 0.2);
            display: block;
            position: relative;
        }

        /* ── Author Widget ── */
        .author-widget { text-align: center; }
        .author-img {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 1.25rem;
            border: 1px solid rgba(197, 160, 101, 0.25);
            padding: 3px;
            display: block;
        }
        .author-name {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.4rem;
            font-weight: 400;
            letter-spacing: -0.01em;
            margin-bottom: 0.5rem;
            color: var(--text-primary);
        }
        .author-bio {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 0.85rem;
            font-weight: 300;
            color: var(--text-secondary);
            margin-bottom: 1.25rem;
            line-height: 1.65;
        }

        /* ── Tags ── */
        .tags-cloud { display: flex; flex-wrap: wrap; gap: 0.4rem; }
        .tag-item {
            padding: 0.35rem 0.9rem;
            background: rgba(197, 160, 101, 0.06);
            border: 1px solid rgba(197, 160, 101, 0.18);
            font-family: 'Syne', sans-serif;
            font-size: 0.62rem;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--text-secondary);
            border-radius: 0;
            transition: all 0.3s var(--transition);
            cursor: pointer;
        }
        .tag-item:hover {
            background: var(--accent-gold);
            border-color: var(--accent-gold);
            color: white;
        }

        /* ── Related Posts ── */
        .related-post {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.25rem;
            align-items: flex-start;
            padding-bottom: 1.25rem;
            border-bottom: 1px solid rgba(26, 46, 40, 0.05);
        }
        .related-post:last-child {
            margin-bottom: 0;
            border-bottom: none;
            padding-bottom: 0;
        }
        .related-img {
            width: 64px;
            height: 64px;
            object-fit: cover;
            border-radius: 0;
            flex-shrink: 0;
            filter: sepia(5%) contrast(1.03);
            transition: transform 0.4s var(--transition);
        }
        .related-post:hover .related-img { transform: scale(1.04); }
        .related-info h4 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.05rem;
            font-weight: 500;
            line-height: 1.35;
            margin-bottom: 0.4rem;
            color: var(--text-primary);
            transition: color 0.3s;
        }
        .related-post:hover .related-info h4 { color: var(--accent-gold); }
        .related-info span {
            font-family: 'Syne', sans-serif;
            font-size: 0.6rem;
            font-weight: 600;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--accent-gold);
            opacity: 0.8;
        }

        /* ── Responsive ── */
        @media (max-width: 1024px) {
            .article-layout {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            .article-sidebar-sticky {
                position: static;
            }
        }
        @media (max-width: 768px) {
            .article-content {
                padding: 2rem 1.5rem;
            }
            .article-title {
                font-size: clamp(1.9rem, 7vw, 2.6rem);
            }
            .article-featured-img {
                height: 260px;
            }
            .article-body h2 {
                font-size: 1.6rem;
            }
            .article-quote {
                padding: 1.25rem 1.5rem;
                font-size: 1.15rem;
            }
        }

/* ==========================================================================
   PRZEPROJEKTOWANE OBSZARY WSPÓŁPRACY (kontakt.html)
========================================================================== */
/* === PRZEPROJEKTOWANE OBSZARY WSPÓŁPRACY === */
        .contact-topics-section {
            position: relative;
            overflow: hidden;
            isolation: isolate;
            background: #F5F0E8;
        }

        .contact-topics-section::before {
            content: '';
            position: absolute;
            inset: 0;
            z-index: 0;
            background: url('sejm_bg.webp') center/cover no-repeat;
            opacity: 0.34;
            filter: grayscale(0.2) saturate(0.75);
            transform: scale(1.04);
        }

        .contact-topics-section::after {
            content: '';
            position: absolute;
            inset: 0;
            z-index: 1;
            background:
                linear-gradient(180deg, rgba(245,240,232,0.88) 0%, rgba(245,240,232,0.94) 58%, rgba(245,240,232,0.9) 100%),
                linear-gradient(135deg, rgba(26,46,40,0.1) 0%, rgba(197,160,101,0.18) 100%);
            pointer-events: none;
        }

        .contact-topics-section > .container {
            position: relative;
            z-index: 2;
        }

        .contact-topics-heading {
            align-items: flex-start;
            text-align: left;
        }

        .contact-topics-heading .kontakt-heading__desc {
            margin-left: 0;
            margin-right: 0;
            padding-top: 16px;
            max-width: 720px;
            font-size: clamp(1rem, 1.15vw, 1.08rem);
            line-height: 1.85;
            color: rgba(26, 46, 40, 0.72);
        }

        .topics-cards-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .topic-card {
            background: #fff;
            border: 1px solid rgba(197,160,101,0.15);
            padding: 2.5rem 2rem;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            position: relative;
            overflow: hidden;
            transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.5s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.4s;
        }
        .topic-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-gold);
            transition: width 0.5s cubic-bezier(0.25, 1, 0.5, 1);
        }
        .topic-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 24px 48px -12px rgba(26,46,40,0.15), inset 0 0 60px rgba(197, 160, 101, 0.06);
            border-color: rgba(197,160,101,0.45);
        }
        .topic-card:hover::after {
            width: 100%;
        }

        .topic-card__num {
            font-family: 'Cormorant Garamond', serif;
            font-size: 3rem;
            font-weight: 300;
            color: rgba(197,160,101,0.2);
            line-height: 1;
            position: absolute;
            top: 1.25rem;
            right: 1.5rem;
            transition: color 0.3s;
        }
        .topic-card:hover .topic-card__num {
            color: rgba(197,160,101,0.4);
        }

        .topic-card__icon {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: rgba(197,160,101,0.1);
            border: 1px solid rgba(197,160,101,0.25);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-gold);
            font-size: 1.05rem;
            margin-bottom: 0.5rem;
            transition: background 0.4s, transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s;
        }
        .topic-card:hover .topic-card__icon {
            background: rgba(197,160,101,0.18);
            transform: scale(1.08);
            box-shadow: 0 4px 12px rgba(197,160,101,0.15);
        }

        .topic-card__title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.35rem;
            font-weight: 400;
            color: var(--text-primary);
            line-height: 1.2;
        }

        .topic-card__desc {
            font-size: 0.87rem;
            color: var(--text-secondary);
            line-height: 1.7;
            flex-grow: 1;
        }

        .topic-card__cta {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-family: 'Syne', sans-serif;
            font-size: 0.68rem;
            font-weight: 700;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--accent-gold);
            text-decoration: none;
            margin-top: 0.5rem;
            transition: gap 0.3s;
        }
        .topic-card__cta:hover {
            gap: 0.85rem;
        }
        .topic-card__cta i {
            font-size: 0.65rem;
        }

        .topic-card--media {
            grid-column: 1 / -1;
            display: grid;
            grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
            gap: 0;
            padding: 0;
            height: clamp(320px, 34vw, 420px);
            min-height: 320px;
        }

        .topic-card--media .topic-card__num {
            z-index: 1;
        }

        .topic-card__slider {
            height: 100%;
            min-height: 0;
            position: relative;
            background: #fff;
            overflow: hidden;
        }

        .topic-card__slide {
            position: absolute;
            inset: 0;
            opacity: 0;
            visibility: hidden;
            transition: opacity 1s ease-in-out, visibility 1s ease-in-out, transform 4s linear;
            transform: scale(1);
            overflow: hidden;
        }

        .topic-card__slide.active {
            opacity: 1;
            visibility: visible;
            transform: scale(1.04);
            z-index: 1;
        }

        .topic-card__slide img {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
            object-position: center;
            filter: saturate(0.95) contrast(1.02);
        }

        /* Nav controls */
        .slider-side-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: transparent;
            border: none;
            color: #fff;
            font-size: 1.25rem;
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 3;
            transition: all 0.3s var(--transition);
            opacity: 0;
        }

        .topic-card__slider:hover .slider-side-arrow {
            opacity: 0.8;
        }

        .slider-side-arrow:hover {
            background: transparent;
            color: var(--accent-gold);
            transform: translateY(-50%) scale(1.1);
            opacity: 1;
        }

        .slider-side-arrow--prev {
            left: 1.25rem;
        }

        .slider-side-arrow--next {
            right: 1.25rem;
        }

        .topic-card__media-content {
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 0.9rem;
            padding: 3rem;
        }

        .topic-card--media .topic-card__title {
            font-size: clamp(1.8rem, 3vw, 2.6rem);
        }

        .topic-card--media .topic-card__desc {
            max-width: 680px;
            font-size: 0.95rem;
        }

        @media (max-width: 992px) {
            .topics-cards-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .topic-card--media {
                grid-template-columns: 1fr;
                height: auto;
            }

            .topic-card__slider {
                height: 320px;
            }

            .slider-side-arrow {
                display: none;
            }
        }
        @media (max-width: 540px) {
            .topics-cards-grid {
                grid-template-columns: 1fr;
            }

            .topic-card--media {
                min-height: 0;
            }

            .topic-card__slider {
                height: 340px;
            }

            .topic-card__media-content {
                padding: 2.25rem 1.75rem;
            }
        }

/* ==========================================================================
   TOPICS (kontakt.html)
========================================================================== */
/* TOPICS */
        .contact-topics-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
        .contact-topics-list { display: flex; flex-direction: column; gap: 0; }
        .ct-item {
            display: flex; gap: 1.5rem; align-items: flex-start;
            padding: 1.75rem 0; border-bottom: 1px solid rgba(26,46,40,0.07);
        }
        .ct-item:last-child { border-bottom: none; }
        .ct-num {
            font-family: 'Cormorant Garamond', serif; font-size: 1.8rem;
            font-weight: 300; color: var(--accent-gold); opacity: 0.7;
            line-height: 1; flex-shrink: 0; min-width: 2.5rem;
        }
        .ct-item h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 400; color: var(--text-primary); margin-bottom: 0.35rem; }
        .ct-item p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.65; }
        @media (max-width: 900px) { .contact-topics-grid { grid-template-columns: 1fr; gap: 3rem; } }

/* ==========================================================================
   kontakt.html Section (kontakt.html)
========================================================================== */
/* ===================================================
           KONTAKT – REDESIGNED SUBHEADERS
           Styl polityczny, spójny z identyfikacją wizualną
        =================================================== */

        /* Wrapper */
        .kontakt-heading {
            display: flex;
            flex-direction: column;
            gap: 0.6rem;
            position: relative;
        }

        /* Opcja centrowania */
        .kontakt-heading.centered {
            align-items: center;
            text-align: center;
        }

        /* Kicker – górna etykieta */
        .kontakt-heading__kicker {
            display: inline-flex;
            align-items: center;
            gap: 0.85rem;
            font-family: 'Syne', sans-serif;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.28em;
            text-transform: uppercase;
            color: var(--accent-gold);
        }

        /* Dekoracyjna kreska przy kickerze */
        .kontakt-heading__kicker::before {
            content: '';
            display: block;
            width: 32px;
            height: 1px;
            background: var(--accent-gold);
            flex-shrink: 0;
        }

        /* Gdy wycentrowany – kreska z obu stron */
        .kontakt-heading.centered .kontakt-heading__kicker::after {
            content: '';
            display: block;
            width: 32px;
            height: 1px;
            background: var(--accent-gold);
            flex-shrink: 0;
        }

        /* Główny tytuł */
        .kontakt-heading__title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2.4rem, 3.5vw, 3.4rem);
            font-weight: 300;
            line-height: 1.0;
            letter-spacing: -0.02em;
            color: var(--text-primary);
            margin: 0;
        }

        /* Kursywa w tytule */
        .kontakt-heading__title em {
            font-style: italic;
            color: var(--accent-gold);
        }

        /* Podtytuł / opis pod tytułem */
        .kontakt-heading__desc {
            font-size: 1.0rem;
            color: var(--text-secondary);
            line-height: 1.75;
            max-width: 480px;
            margin-top: 0.25rem;
        }

        .kontakt-heading.centered .kontakt-heading__desc {
            margin-left: auto;
            margin-right: auto;
        }


        @media (max-width: 768px) {
            .kontakt-heading__title {
                font-size: clamp(2rem, 8vw, 2.8rem);
            }

            .contact-topics-heading {
                margin-bottom: 2rem !important;
            }

            .contact-topics-heading .kontakt-heading__title {
                font-size: clamp(2.8rem, 13vw, 3.65rem);
                line-height: 0.94;
            }

            .contact-topics-heading .kontakt-heading__desc {
                max-width: 100%;
                font-size: 0.94rem;
                line-height: 1.7;
                padding-top: 0.85rem;
            }
        }

/* ==========================================================================
   kontakt.html Section (kontakt.html)
========================================================================== */
/* ===================================================
           CONTACT BANNER – PREMIUM REDESIGN
        =================================================== */
        .contact-banner {
            position: relative;
            display: block;
            background: transparent;
            border: 0;
            padding: 0;
            margin-bottom: 4.5rem;
            overflow: visible;
            text-align: center;
            width: 100%;
        }

        /* Dekoracyjna ikona w tle lewej strony */
        .contact-banner::before {
            content: '\f0e0'; /* fa-envelope */
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            top: -10%;
            left: -5%;
            font-size: clamp(14rem, 25vw, 25rem);
            color: rgba(197, 160, 101, 0.03);
            pointer-events: none;
            z-index: 0;
            transform: rotate(-10deg);
        }

        /* Lewa strona */
        .contact-banner__left {
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 100%;
            text-align: center;
        }

        .contact-banner .kontakt-heading__title {
            font-size: clamp(3rem, 5vw, 4.35rem);
            line-height: 0.96;
        }

        .contact-banner .kontakt-heading__desc {
            max-width: 430px;
            font-size: 0.9rem;
            line-height: 1.62;
            margin-top: 0.1rem;
            display: none;
        }

        .contact-banner .kontakt-heading__kicker::after {
            display: none;
        }

        .contact-banner .kontakt-heading.centered .kontakt-heading__kicker::after {
            content: none !important;
            display: none !important;
        }

        /* Kicker */
        .contact-kicker {
            display: inline-flex;
            align-items: center;
            font-family: 'Syne', sans-serif;
            font-size: 0.68rem;
            font-weight: 700;
            letter-spacing: 0.28em;
            text-transform: uppercase;
            color: var(--accent-gold);
            margin-bottom: 1.5rem;
        }

        .contact-banner__title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2.6rem, 4vw, 3.8rem);
            font-weight: 300;
            line-height: 1.05;
            letter-spacing: -0.02em;
            color: var(--text-primary);
            margin: 0 0 1.5rem;
        }
        .contact-banner__title em {
            font-style: italic;
            color: var(--accent-gold);
        }

        .contact-banner__desc {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(1.2rem, 1.5vw, 1.5rem);
            color: var(--text-primary);
            line-height: 1.5;
            max-width: 480px;
            font-style: italic;
            margin: 0 auto;
            text-align: center;
        }

        .contact-minimal-links {
            display: grid;
            grid-template-columns: minmax(300px, 440px);
            justify-content: center;
            gap: 1rem;
            margin: 2.25rem auto 0;
            max-width: 440px;
            width: 100%;
        }

        .contact-minimal-link {
            position: relative;
            display: grid;
            grid-template-columns: auto minmax(0, 1fr);
            align-items: center;
            gap: 1rem;
            min-height: 104px;
            padding: 1.15rem 1.3rem;
            background: rgba(255, 255, 255, 0.78);
            border: 1px solid rgba(197, 160, 101, 0.18);
            color: var(--text-primary);
            text-decoration: none;
            text-align: left;
            overflow: hidden;
            transition: transform 0.28s var(--transition), border-color 0.28s var(--transition), background 0.28s var(--transition), box-shadow 0.28s var(--transition);
        }

        .contact-minimal-link::after {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            height: 2px;
            background: var(--accent-gold);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.28s var(--transition);
        }

        .contact-minimal-link i {
            width: 42px;
            height: 42px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(197, 160, 101, 0.08);
            border: 1px solid rgba(197, 160, 101, 0.2);
            color: var(--accent-gold);
            font-size: 0.95rem;
        }

        .contact-minimal-link__copy {
            display: flex;
            flex-direction: column;
            min-width: 0;
            gap: 0.26rem;
        }

        .contact-minimal-link__label {
            font-family: 'Syne', sans-serif;
            font-size: 0.58rem;
            font-weight: 600;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: var(--accent-gold);
        }

        .contact-minimal-link__value {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.22rem;
            line-height: 1.05;
            color: var(--text-primary);
            overflow-wrap: normal;
            word-break: normal;
        }

        .contact-minimal-link:first-child .contact-minimal-link__value {
            font-size: 1.1rem;
            white-space: nowrap;
        }

        .contact-minimal-link__action {
            font-family: 'Syne', sans-serif;
            font-size: 0.58rem;
            font-weight: 700;
            letter-spacing: 0.13em;
            text-transform: uppercase;
            color: var(--text-light);
        }

        .contact-minimal-link:hover,
        .contact-minimal-link:focus-visible {
            transform: translateY(-2px);
            border-color: rgba(197, 160, 101, 0.4);
            background: #fff;
            box-shadow: 0 18px 36px rgba(26, 46, 40, 0.08);
            outline: none;
        }

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

        /* Responsywność */
        @media (max-width: 900px) {
            .contact-banner::before {
                display: none;
            }

            .contact-minimal-links {
                grid-template-columns: 1fr;
                max-width: 620px;
            }

            .contact-minimal-link:first-child .contact-minimal-link__value {
                white-space: normal;
                overflow-wrap: anywhere;
            }
        }
        @media (max-width: 480px) {
            .contact-banner .kontakt-heading__title {
                font-size: clamp(2.45rem, 10.5vw, 3.15rem);
                line-height: 0.98;
            }

            .contact-banner .kontakt-heading__desc {
                max-width: 320px;
                font-size: 0.8rem;
                line-height: 1.5;
            }

            .contact-banner__title {
                font-size: clamp(2.2rem, 8vw, 2.8rem);
            }
            .contact-minimal-links {
                grid-template-columns: 1fr;
                gap: 0.65rem;
                margin-top: 1.7rem;
            }

            .contact-minimal-link {
                min-height: 82px;
                padding: 0.95rem 1rem;
                gap: 0.85rem;
            }

            .contact-minimal-link i {
                width: 36px;
                height: 36px;
                font-size: 0.82rem;
            }

            .contact-minimal-link__value {
                font-size: 1.06rem;
            }
        }

/* ==========================================================================
   o-mnie.html Section (o-mnie.html)
========================================================================== */
/* =============================================
           PAGE HERO BANNER – KLASA I MINIMALIZM
        ============================================= */
        /* Ukryj grain na tej podstronie */
        body:has(.page-hero-banner)::before {
            display: none !important;
        }

        .page-hero-banner {
            min-height: 48vh;
            background: var(--text-primary);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 1.5rem;
            text-align: center;
            position: relative;
            /* Kompensacja sidebaru 100px – sekcja na pełną szerokość okna */
            margin-left: calc(-1 * var(--sidebar-width));
            width: calc(100% + var(--sidebar-width));
            padding: 13rem 2rem 1rem;
            overflow: hidden;
            border-bottom: none;
        }

        /* Zdjęcie tła */
        .page-hero-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
        }

        .page-hero-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center 20%;
            filter: blur(3px) saturate(0.7);
            transform: scale(1.06);
        }

        /* Podwójny overlay: głęboki ciemny + złoty akcent od dołu */
        .page-hero-overlay {
            position: absolute;
            inset: 0;
            background:
                linear-gradient(to bottom,
                    rgba(10, 18, 15, 0.72) 0%,
                    rgba(26, 46, 40, 0.80) 50%,
                    rgba(10, 18, 15, 0.88) 100%);
            z-index: 1;
        }

        /* Wszystkie elementy nad tłem */
        .page-hero-banner>*:not(.page-hero-bg) {
            position: relative;
            z-index: 1;
        }

        .page-hero-breadcrumb {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-family: 'Syne', sans-serif;
            font-size: 0.62rem;
            font-weight: 600;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.5);
            justify-content: center;
            margin-bottom: 0;
        }

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

        .page-hero-breadcrumb a:hover {
            color: var(--accent-gold);
        }

        .page-hero-breadcrumb__sep {
            color: rgba(197, 160, 101, 0.5);
        }

        /* Ornament SVG */
        .page-hero-ornament {
            display: flex;
            justify-content: center;
            line-height: 0;
        }

        /* Tytuł */
        .page-hero-headline.reveal-soft-blur {
            overflow: visible;
            clip-path: inset(-0.2rem -1.5rem 18% -0.25rem);
        }

        .page-hero-headline.reveal-soft-blur.active {
            clip-path: inset(-0.2rem -1.5rem -0.2rem -0.25rem);
        }

        .page-hero-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2.6rem, 4.5vw, 4.2rem);
            font-weight: 300;
            line-height: 1.08;
            letter-spacing: -0.02em;
            color: #fff;
            margin: 0;
        }

        .page-hero-title em {
            display: inline-block;
            font-style: italic;
            color: var(--accent-gold);
            padding-right: 0.16em;
            margin-right: -0.16em;
        }

        /* Opis */
        .page-hero-desc {
            font-size: 0.92rem;
            color: rgba(255, 255, 255, 0.58);
            line-height: 1.7;
            max-width: 340px;
            font-weight: 300;
            margin: 0 auto;
        }

        /* Scroll */
        .page-hero-scroll-indicator {
            position: absolute;
            bottom: 1.75rem;
            left: 50%;
            transform: translateX(-50%);
            z-index: 1;
        }

        .scroll-line {
            width: 1px;
            height: 48px;
            background: linear-gradient(to bottom, transparent, rgba(197, 160, 101, 0.6));
            animation: scrollPulse 2s ease-in-out infinite;
        }

        @keyframes scrollPulse {

            0%,
            100% {
                opacity: 0.4;
            }

            50% {
                opacity: 1;
            }
        }

        @media (max-width: 1024px) {
            .page-hero-banner {
                margin-left: 0;
                width: 100%;
            }
        }
        @media (max-width: 600px) {
            .page-hero-banner {
                min-height: auto;
                padding: 9.5rem 1.5rem 1rem;
                gap: 1.25rem;
            }
            .page-hero-title {
                font-size: clamp(2.4rem, 10vw, 3.2rem);
            }
        }

/* ==========================================================================
   o-mnie.html Section (o-mnie.html)
========================================================================== */
/* =============================================
   PROFILE ABOUT – EDITORIAL PREMIUM DESIGN
============================================= */
        .profile-about-section {
            background: linear-gradient(180deg, #f7f6f3 0%, #f2f0ec 50%, #f7f6f3 100%);
            position: relative;
            overflow: hidden;
            padding: 0;
        }

        /* Ambient glow – top right */
        .profile-about-section::before {
            content: '';
            position: absolute;
            top: -200px;
            right: -200px;
            width: 700px;
            height: 700px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(197, 160, 101, 0.06) 0%, transparent 65%);
            pointer-events: none;
            z-index: 0;
        }

        /* Ambient glow – bottom left */
        .profile-about-section::after {
            content: '';
            position: absolute;
            bottom: -120px;
            left: -120px;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(26, 46, 40, 0.04) 0%, transparent 65%);
            pointer-events: none;
            z-index: 0;
        }

        .profile-about-section .container {
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 1;
        }

        .profile-about-layout {
            display: grid;
            grid-template-columns: 0.85fr 1.15fr;
            gap: clamp(4rem, 7vw, 8rem);
            align-items: center;
            padding: clamp(6rem, 9vw, 10rem) 0;
        }

        /* === IMAGE COLUMN === */
        .profile-portrait {
            position: relative;
            margin: 0;
        }

        /* Corner frame decoration */
        .profile-portrait::before {
            content: '';
            position: absolute;
            top: -10px;
            left: -10px;
            width: 40px;
            height: 40px;
            border-top: 1px solid var(--accent-gold);
            border-left: 1px solid var(--accent-gold);
            z-index: 2;
            pointer-events: none;
            opacity: 0.55;
            transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .profile-portrait:hover::before {
            width: 50px;
            height: 50px;
            top: -14px;
            left: -14px;
            opacity: 0.95;
            filter: drop-shadow(0 0 2px rgba(197, 160, 101, 0.3));
        }

        .profile-portrait::after {
            content: '';
            position: absolute;
            bottom: -10px;
            right: -10px;
            width: 40px;
            height: 40px;
            border-bottom: 1px solid var(--accent-gold);
            border-right: 1px solid var(--accent-gold);
            z-index: 2;
            pointer-events: none;
            opacity: 0.55;
            transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .profile-portrait:hover::after {
            width: 50px;
            height: 50px;
            bottom: -14px;
            right: -14px;
            opacity: 0.95;
            filter: drop-shadow(0 0 2px rgba(197, 160, 101, 0.3));
        }

        .profile-portrait-inner {
            position: relative;
            overflow: hidden;
        }

        /* Subtle gradient overlay on photo */
        .profile-portrait-inner::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(26, 46, 40, 0.12) 0%, transparent 40%);
            pointer-events: none;
            z-index: 1;
            transition: opacity 0.5s ease;
        }

        .profile-portrait:hover .profile-portrait-inner::after {
            opacity: 0.6;
        }

        .profile-portrait-inner img {
            width: 100%;
            height: clamp(500px, 52vw, 680px);
            object-fit: cover;
            object-position: center 10%;
            display: block;
            transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), filter 0.6s ease;
            box-shadow: 0 40px 90px rgba(26, 46, 40, 0.14), 0 8px 24px rgba(26, 46, 40, 0.06);
            filter: saturate(0.92) contrast(1.03);
        }

        .profile-portrait:hover .profile-portrait-inner img {
            transform: scale(1.04);
            filter: saturate(1) contrast(1.05);
        }

        /* Floating experience badge */
        .profile-badge {
            position: absolute;
            bottom: 2.5rem;
            left: -2rem;
            background: rgba(255, 255, 255, 0.78);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.4);
            border-left: 3px solid var(--accent-gold);
            padding: 1.1rem 1.5rem;
            box-shadow: 0 20px 50px rgba(26, 46, 40, 0.08), 0 4px 12px rgba(26, 46, 40, 0.04);
            display: flex;
            flex-direction: column;
            gap: 0.2rem;
            z-index: 3;
            min-width: 140px;
            transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .profile-badge:hover {
            transform: translateY(-6px) scale(1.02);
            background: rgba(255, 255, 255, 0.88);
            border-color: rgba(197, 160, 101, 0.35);
            border-left-color: var(--accent-gold);
            box-shadow: 0 30px 60px rgba(197, 160, 101, 0.16), 0 6px 20px rgba(26, 46, 40, 0.06);
        }

        .profile-badge-num {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.4rem;
            font-weight: 600;
            color: var(--text-primary);
            line-height: 1;
        }

        .profile-badge-num sup {
            font-size: 1rem;
            color: var(--accent-gold);
            vertical-align: super;
        }

        .profile-badge-label {
            font-family: 'Syne', sans-serif;
            font-size: 0.56rem;
            font-weight: 700;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: rgb(26 46 40);
        }

        /* === COPY COLUMN === */
        .profile-about-copy {
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 0;
            position: relative;
            min-width: 0;
        }

        /* Watermark initial */
        .profile-about-copy::before {
            content: 'Z';
            position: absolute;
            top: -3rem;
            right: -2rem;
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(12rem, 18vw, 20rem);
            font-weight: 700;
            color: rgba(197, 160, 101, 0.04);
            line-height: 1;
            pointer-events: none;
            user-select: none;
            z-index: 0;
            transition: color 0.6s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .profile-about-copy:hover::before {
            color: rgba(197, 160, 101, 0.08);
            transform: scale(1.05) rotate(-2deg);
        }

        .profile-about-copy>* {
            position: relative;
            z-index: 1;
        }

        /* Kicker */
        .profile-kicker {
            font-family: 'Syne', sans-serif;
            font-size: 0.64rem;
            font-weight: 700;
            letter-spacing: 0.4em;
            text-transform: uppercase;
            color: var(--accent-gold);
            margin-bottom: 1.4rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .profile-kicker::before {
            content: '';
            display: inline-block;
            width: 36px;
            height: 1px;
            background: var(--accent-gold);
            opacity: 0.6;
            transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
        }

        .profile-about-copy:hover .profile-kicker::before {
            width: 50px;
            opacity: 1;
        }

        /* Name */
        .profile-name {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(3rem, 5.2vw, 4.8rem);
            font-weight: 400;
            letter-spacing: normal;
            color: var(--text-primary);
            margin: 0 0 3.8rem;
            line-height: 1.1;
            display: inline-block;
            position: relative;
            text-transform: none;
        }


        /* Main title */
        .profile-main-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(3rem, 5vw, 5.5rem);
            font-weight: 300;
            line-height: 0.96;
            letter-spacing: -0.025em;
            color: var(--text-primary);
            margin: 0.6rem 0 0;
            padding-bottom: 2.2rem;
        }

        .profile-main-title em {
            font-style: italic;
            color: var(--accent-gold);
            position: relative;
        }

        /* Lead quote */
        .profile-lead {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(1.25rem, 1.8vw, 1.65rem);
            line-height: 1.5;
            color: var(--text-primary);
            margin: 0 0 2.2rem;
            max-width: 560px;
            font-weight: 400;
            padding-left: 1.5rem;
            border-left: 2px solid rgba(197, 160, 101, 0.55);
            font-style: italic;
            position: relative;
        }

        /* Body text */
        .profile-body {
            display: grid;
            gap: 1.4rem;
            max-width: 600px;
            margin-bottom: 1rem;
        }

        .profile-body p {
            color: var(--text-secondary);
            font-size: 1rem;
            line-height: 1.9;
            margin: 0;
        }

        .profile-body p strong {
            /* color: #00000087; */
            font-weight: 400;
            text-decoration: underline;
        }

        /* Gold divider */
        .profile-divider {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin: 0.8rem 0 2rem;
            max-width: 600px;
        }

        .profile-divider-line {
            flex: 1;
            height: 1px;
            background: linear-gradient(to right, rgba(197, 160, 101, 0.45), transparent);
        }

        .profile-divider-diamond {
            width: 6px;
            height: 6px;
            background: var(--accent-gold);
            transform: rotate(45deg);
            opacity: 0.7;
            flex-shrink: 0;
        }

        /* === STATS ROW === */
        .profile-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.2rem;
            margin-bottom: 2.5rem;
            max-width: 600px;
        }

        .profile-stat {
            position: relative;
            padding: 1.4rem 1.2rem;
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border: 1px solid rgba(197, 160, 101, 0.12);
            transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
            text-align: center;
            overflow: hidden;
        }

        /* Gold shine on hover */
        .profile-stat::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, transparent 0%, rgba(197, 160, 101, 0.06) 50%, transparent 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .profile-stat:hover {
            transform: translateY(-4px);
            border-color: rgba(197, 160, 101, 0.35);
            box-shadow: 0 16px 40px rgba(197, 160, 101, 0.1), 0 4px 12px rgba(26, 46, 40, 0.04);
        }

        .profile-stat:hover::before {
            opacity: 1;
        }

        .profile-stat-value {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2rem;
            font-weight: 600;
            color: var(--text-primary);
            line-height: 1;
            margin-bottom: 0.35rem;
            position: relative;
            z-index: 1;
        }

        .profile-stat-value span {
            color: var(--accent-gold);
            font-size: 0.7em;
        }

        .profile-stat-label {
            font-family: 'Syne', sans-serif;
            font-size: 0.52rem;
            font-weight: 700;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--text-secondary);
            line-height: 1.3;
            position: relative;
            z-index: 1;
        }

        /* Tags */
        .profile-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.55rem;
            padding-top: 3rem;
            border-top: 1px solid rgba(26, 46, 40, 0.07);
        }

        .profile-tag {
            font-family: 'Syne', sans-serif;
            font-size: 0.58rem;
            font-weight: 700;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--text-secondary);
            border: 1px solid rgba(26, 46, 40, 0.1);
            padding: 0.55rem 1.15rem;
            transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
            cursor: default;
            background: rgba(255, 255, 255, 0.5);
            position: relative;
            overflow: hidden;
        }

        /* Subtle gold fill on hover */
        .profile-tag::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(197, 160, 101, 0.08) 0%, rgba(197, 160, 101, 0.03) 100%);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .profile-tag:hover::before {
            transform: scaleX(1);
        }

        .profile-tag:hover {
            border-color: var(--accent-gold);
            color: var(--accent-gold);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(197, 160, 101, 0.1);
        }

        /* Tag icon */
        .profile-tag i {
            font-size: 0.7rem;
            margin-right: 0.3rem;
            opacity: 0.7;
            position: relative;
            z-index: 1;
            transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), color 0.35s ease, opacity 0.35s ease;
        }

        .profile-tag:hover i {
            transform: scale(1.18) translateY(-1px);
            color: var(--accent-gold);
            opacity: 1;
        }

        .profile-tag-text {
            position: relative;
            z-index: 1;
        }

        /* === CTA LINK === */
        .profile-cta-link {
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            margin-top: 2rem;
            font-family: 'Syne', sans-serif;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--text-primary);
            text-decoration: none;
            position: relative;
            transition: all 0.35s ease;
        }

        .profile-cta-link::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--accent-gold);
            transition: width 0.35s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .profile-cta-link:hover {
            color: var(--accent-gold);
        }

        .profile-cta-link:hover::after {
            width: 100%;
        }

        .profile-cta-link i {
            font-size: 0.65rem;
            transition: transform 0.35s ease;
        }

        .profile-cta-link:hover i {
            transform: translateX(4px);
        }

        /* === RESPONSIVE === */
        @media (max-width: 1100px) {
            .profile-about-layout {
                grid-template-columns: 1fr;
                padding: clamp(4rem, 6vw, 6rem) 0;
                gap: 3rem;
            }

            .profile-portrait-inner img {
                height: auto;
                max-height: 520px;
            }

            .profile-badge {
                left: 1rem;
                bottom: 1.5rem;
            }

            .profile-stats {
                max-width: none;
            }
        }

        @media (max-width: 600px) {
            .profile-portrait-inner img {
                aspect-ratio: 3 / 4;
                min-height: 320px;
            }

            .profile-main-title br {
                display: none;
            }

            .profile-about-copy::before {
                display: none;
            }

            .profile-lead {
                font-size: 1.15rem;
            }

            .profile-badge {
                display: none;
            }

            .profile-portrait::before {
                top: -10px;
                left: -10px;
                width: 40px;
                height: 40px;
            }

            .profile-portrait::after {
                bottom: -10px;
                right: -10px;
                width: 40px;
                height: 40px;
            }

            .profile-stats {
                grid-template-columns: 1fr;
                gap: 0.8rem;
            }

            .profile-stat {
                padding: 1rem;
                display: flex;
                align-items: center;
                gap: 1rem;
                text-align: left;
            }

            .profile-stat-value {
                font-size: 1.6rem;
                margin-bottom: 0;
                min-width: 50px;
            }

            .profile-name {
                margin-bottom: 1.6rem;
            }

            .profile-body {
                margin-bottom: 2.2rem;
            }

            .profile-tags {
                gap: 0.4rem;
                padding-top: 2rem;
            }

            .profile-tag {
                padding: 0.45rem 0.9rem;
                font-size: 0.55rem;
            }
        }

        .hscroll-section {
            padding: clamp(5rem, 8vw, 7rem) 0 clamp(3rem, 5vw, 4.5rem);
            background: var(--bg-white);
            overflow: hidden;
        }

        .hscroll-header {
            width: min(var(--container-width), calc(100% - 4rem));
            margin: 0 auto 3rem;
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            gap: 2rem;
        }

        .gallery-heading {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }

        .gallery-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            font-family: 'Syne', sans-serif;
            font-size: 0.64rem;
            font-weight: 700;
            letter-spacing: 0.4em;
            text-transform: uppercase;
            color: var(--accent-gold);
        }

        .gallery-eyebrow::before {
            content: '';
            width: 36px;
            height: 1px;
            background: var(--accent-gold);
            opacity: 0.65;
        }

        .gallery-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2.4rem, 4vw, 3.6rem);
            font-weight: 300;
            line-height: 1;
            color: var(--text-primary);
            margin: 0;
        }

        .gallery-title em {
            color: var(--accent-gold);
            font-style: italic;
        }

        .hscroll-scroll-hint {
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            font-family: 'Syne', sans-serif;
            font-size: 0.65rem;
            font-weight: 700;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--text-light);
            white-space: nowrap;
        }

        .hscroll-controls {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .hscroll-arrows {
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
        }

        .hscroll-arrow {
            width: 42px;
            height: 42px;
            border: 1px solid rgba(197, 160, 101, 0.35);
            border-radius: 50%;
            background: #fff;
            color: var(--text-primary);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: color 0.3s var(--transition), background 0.3s var(--transition), border-color 0.3s var(--transition), transform 0.3s var(--transition), opacity 0.3s ease;
        }

        .hscroll-arrow:hover:not(:disabled),
        .hscroll-arrow:focus-visible:not(:disabled) {
            background: var(--accent-gold);
            border-color: var(--accent-gold);
            color: #fff;
            transform: translateY(-2px);
            outline: none;
        }

        .hscroll-arrow:disabled {
            opacity: 0.35;
            cursor: default;
        }

        .hscroll-track-wrap {
            overflow-x: auto;
            overflow-y: hidden;
            scrollbar-width: none;
            cursor: grab;
        }

        .hscroll-track-wrap::-webkit-scrollbar {
            display: none;
        }

        .hscroll-track-wrap.grabbing {
            cursor: grabbing;
        }

        .hscroll-track {
            display: flex;
            gap: 1.5rem;
            width: max-content;
            padding: 0 max(2rem, calc((100vw - var(--container-width)) / 2 + 2rem)) 4rem;
        }

        .hscroll-item {
            width: min(340px, 78vw);
            height: clamp(360px, 42vw, 440px);
            flex-shrink: 0;
            position: relative;
            overflow: hidden;
            background: var(--bg-paper);
            box-shadow: 0 24px 60px rgba(26, 46, 40, 0.08);
        }

        .hscroll-item::before {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            height: 52%;
            z-index: 1;
            background: linear-gradient(to top, rgba(10, 26, 20, 0.86) 0%, rgba(10, 26, 20, 0.58) 42%, rgba(10, 26, 20, 0.18) 74%, transparent 100%);
            backdrop-filter: blur(2px);
            -webkit-backdrop-filter: blur(8px);
            mask-image: linear-gradient(to top, #000 0%, #000 52%, rgba(0, 0, 0, 0.62) 76%, transparent 100%);
            -webkit-mask-image: linear-gradient(to top, #000 0%, #000 52%, rgba(0, 0, 0, 0.62) 76%, transparent 100%);
            pointer-events: none;
            transition: opacity 0.35s var(--transition);
        }

        .hscroll-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.8s var(--transition), filter 0.45s ease;
            filter: none;
        }

        .hscroll-item:hover img {
            transform: scale(1.08);
            filter: none;
        }

        .hscroll-overlay {
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 2;
            min-height: 7.5rem;
            padding: 2rem 1.8rem 1.8rem;
            background: transparent;
            color: #fff;
            display: flex;
            align-items: flex-start;
            transform: none;
            opacity: 1;
            transition: transform 0.4s var(--transition);
        }

        .hscroll-item:hover .hscroll-overlay {
            transform: translateY(-4px);
        }

        .hscroll-overlay h4 {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(1.28rem, 1.6vw, 1.55rem);
            font-weight: 400;
            margin: 0;
            line-height: 1.34;
            text-shadow: 0 2px 18px rgba(0, 0, 0, 0.22);
        }

        .hscroll-label {
            position: absolute;
            top: 1.2rem;
            left: 1.2rem;
            font-family: 'Syne', sans-serif;
            font-size: 0.6rem;
            font-weight: 700;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            background: rgba(197, 160, 101, 0.9);
            color: #fff;
            padding: 0.35rem 0.8rem;
            z-index: 2;
        }

        @media (max-width: 768px) {
            .hscroll-header {
                width: calc(100% - 3rem);
                position: relative;
                flex-direction: column;
                align-items: flex-start;
                gap: 0.75rem;
                margin-bottom: 1.55rem;
            }

            .hscroll-controls {
                position: absolute;
                top: clamp(4rem, 15vw, 4.45rem);
                right: 0;
                width: auto;
                justify-content: flex-end;
                z-index: 2;
                opacity: 1 !important;
                transform: none !important;
            }

            .hscroll-scroll-hint {
                display: none;
            }

            .hscroll-arrows {
                gap: 0.5rem;
            }

            .hscroll-arrow {
                width: 38px;
                height: 38px;
                background: rgba(255, 255, 255, 0.9);
                border-color: rgba(197, 160, 101, 0.28);
                box-shadow: 0 12px 26px rgba(26, 46, 40, 0.06);
            }

            .hscroll-track {
                padding: 0 1.5rem 3rem;
                gap: 1rem;
            }
        }

/* ==========================================================================
   .team-call-section { (rekrutacja-do-fundacji-beehouses.html)
========================================================================== */
.team-call-section {
            position: relative;
            overflow: hidden;
            padding: clamp(1.35rem, 2.6vw, 2.35rem) 0 clamp(1.35rem, 2.4vw, 2.2rem);
            background: linear-gradient(180deg, #f7f6f3 0%, #ffffff 52%, #f4f5f1 100%);
        }

        .team-call-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(197, 160, 101, 0.05) 100%);
            pointer-events: none;
        }

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

        .team-call-frame {
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(260px, 0.54fr);
            align-items: stretch;
            gap: clamp(1rem, 2vw, 2rem);
            border-top: 1px solid rgba(197, 160, 101, 0.38);
            border-bottom: 1px solid rgba(26, 46, 40, 0.1);
            min-height: clamp(240px, 24vw, 310px);
        }

        .team-call-copy {
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: clamp(1.8rem, 3.4vw, 3rem) 0;
            min-width: 0;
        }

        .team-call-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 0.9rem;
            width: fit-content;
            font-family: 'Syne', sans-serif;
            font-size: 0.64rem;
            font-weight: 700;
            letter-spacing: 0.24em;
            line-height: 1.6;
            text-transform: uppercase;
            color: var(--accent-gold);
            margin-bottom: 0.55rem;
        }

        .team-call-eyebrow::before {
            content: '';
            width: 38px;
            height: 1px;
            background: currentColor;
            opacity: 0.7;
        }

        .team-call-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2.35rem, 4.1vw, 3.75rem);
            font-weight: 300;
            line-height: 0.92;
            color: var(--text-primary);
            margin: 0;
            max-width: 720px;
            padding: 20px 0px;
        }

        .team-call-title em {
            color: var(--accent-gold);
            font-style: italic;
        }

        .team-call-lead {
            max-width: 680px;
            margin: clamp(0.8rem, 1.6vw, 1.15rem) 0 0;
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(1.05rem, 1.35vw, 1.28rem);
            line-height: 1.38;
            color: rgba(26, 46, 40, 0.92);
        }

        .team-call-link {
            display: inline-flex;
            align-items: center;
            gap: 0.7rem;
            width: fit-content;
            margin-top: 0.75rem;
            font-family: 'Syne', sans-serif;
            font-size: 0.68rem;
            font-weight: 700;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--text-primary);
            text-decoration: none;
            border-bottom: 1px solid rgba(197, 160, 101, 0.6);
            padding-bottom: 0.35rem;
            transition: color 0.3s ease, gap 0.3s ease;
        }

        .team-call-link:hover,
        .team-call-link:focus-visible {
            color: var(--accent-gold);
            gap: 1rem;
            outline: none;
        }

        .team-call-visual {
            position: relative;
            margin: 0;
            min-height: 100%;
            overflow: hidden;
            align-self: stretch;
            background: var(--text-primary);
            box-shadow: 0 34px 80px rgba(26, 46, 40, 0.12);
        }

        .team-call-visual img {
            width: 100%;
            height: 100%;
            min-height: clamp(240px, 24vw, 310px);
            object-fit: cover;
            object-position: center;
            display: block;
            filter: saturate(0.96) contrast(1.04);
            transition: transform 1.1s var(--transition);
        }

        .team-call-visual:hover img {
            transform: scale(1.045);
        }

        .team-call-photo-caption {
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            display: grid;
            grid-template-columns: 1fr auto;
            align-items: end;
            gap: 1rem;
            padding: clamp(0.8rem, 1.5vw, 1.1rem);
            color: #fff;
            background: linear-gradient(180deg, transparent, rgba(10, 26, 20, 0.82));
        }

        .team-call-photo-caption span {
            font-family: 'Syne', sans-serif;
            font-size: 0.58rem;
            font-weight: 700;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.78);
        }

        .team-call-photo-caption strong {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(1.55rem, 2.3vw, 2.2rem);
            font-weight: 400;
            line-height: 0.95;
            color: #fff;
        }

        .team-call-brief {
            position: relative;
            overflow: hidden;
            z-index: 1;
            margin: clamp(0.95rem, 1.7vw, 1.25rem) 0 0;
            padding: clamp(0.75rem, 1.35vw, 1rem) 0;
            background:
                linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(247, 246, 243, 0.98)),
                radial-gradient(circle at top right, rgba(197, 160, 101, 0.14), transparent 40%);
            border-top: 1px solid rgba(197, 160, 101, 0.28);
            border-bottom: 1px solid rgba(26, 46, 40, 0.1);
            box-shadow: inset 0 18px 38px rgba(26, 46, 40, 0.04);
        }

        .team-call-roles {
            display: grid;
            grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
            gap: clamp(0.55rem, 1.05vw, 0.95rem);
            align-items: stretch;
            padding: 0;
            background: transparent;
        }

        .team-call-step-arrow {
            align-self: center;
            justify-self: center;
            width: 34px;
            height: 34px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(197, 160, 101, 0.34);
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.82);
            color: var(--accent-gold);
            box-shadow: 0 12px 24px rgba(26, 46, 40, 0.08);
            pointer-events: none;
        }

        .team-call-step-arrow i {
            font-size: 0.72rem;
            transform: translateX(1px);
        }

        .team-call-role {
            position: relative;
            overflow: hidden;
            background:
                linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(247, 244, 238, 0.86)),
                radial-gradient(circle at top right, rgba(197, 160, 101, 0.12), transparent 42%);
            border: 1px solid rgba(197, 160, 101, 0.24);
            border-radius: 6px;
            box-shadow: none;
            padding: clamp(0.95rem, 1.35vw, 1.2rem);
            min-height: 96px;
            display: grid;
            grid-template-columns: auto minmax(0, 1fr);
            align-items: center;
            gap: 0.8rem;
            transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
        }

        .team-call-role::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(197, 160, 101, 0.1), transparent 46%);
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }

        .team-call-role:hover {
            background: #fff;
            transform: translateY(-3px);
            box-shadow: 0 16px 32px rgba(26, 46, 40, 0.1);
        }

        .team-call-role:hover::before {
            opacity: 1;
        }

        .team-call-role span {
            position: relative;
            z-index: 1;
            width: 32px;
            height: 32px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: var(--text-primary);
            border: 1px solid rgba(197, 160, 101, 0.34);
            font-family: 'Syne', sans-serif;
            font-size: 0.62rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            color: var(--accent-gold);
            box-shadow: 0 10px 20px rgba(26, 46, 40, 0.12);
        }

        .team-call-role--active {
            background:
                linear-gradient(135deg, rgba(26, 46, 40, 0.98), rgba(19, 38, 32, 0.94)),
                radial-gradient(circle at top right, rgba(197, 160, 101, 0.18), transparent 42%);
            border-color: rgba(197, 160, 101, 0.52);
        }

        .team-call-role--active:hover {
            background: rgba(26, 46, 40, 0.98);
        }

        .team-call-role.team-call-role--active strong {
            color: #fff;
        }

        .team-call-role.team-call-role--active small {
            color: rgba(255, 255, 255, 0.72);
        }

        .team-call-role div {
            position: relative;
            z-index: 1;
            min-width: 0;
        }

        .team-call-role strong {
            display: block;
            margin: 0;
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(1.08rem, 1.35vw, 1.28rem);
            font-weight: 500;
            line-height: 1.05;
            color: var(--text-primary);
        }

        .team-call-role small {
            display: block;
            margin-top: 0.3rem;
            font-family: 'Syne', sans-serif;
            font-size: 0.56rem;
            font-weight: 700;
            letter-spacing: 0.16em;
            line-height: 1.25;
            text-transform: uppercase;
            color: rgba(26, 46, 40, 0.58);
        }

        @media (max-width: 1100px) {
            .team-call-frame {
                grid-template-columns: minmax(0, 1fr) minmax(240px, 0.56fr);
            }

            .team-call-visual {
                grid-column: auto;
                min-height: 250px;
            }

            .team-call-visual img {
                min-height: 250px;
            }

            .team-call-roles {
                grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
            }
        }

        @media (max-width: 760px) {
            .team-call-section {
                padding: 1.75rem 0 1.85rem;
            }

            .team-call-frame {
                grid-template-columns: 1fr;
                min-height: 0;
                gap: 0;
            }

            .team-call-copy {
                padding: 1.45rem 0 1.6rem;
            }

            .team-call-title {
                font-size: clamp(2.25rem, 10vw, 3.2rem);
                line-height: 0.96;
            }

            .team-call-visual {
                grid-column: auto;
                min-height: 210px;
            }

            .team-call-visual img {
                min-height: 210px;
            }

            .team-call-photo-caption {
                grid-template-columns: 1fr;
            }

            .team-call-brief {
                grid-template-columns: 1fr;
            }

            .team-call-roles {
                grid-template-columns: 1fr;
            }

            .team-call-step-arrow {
                display: none;
            }

            .team-call-role {
                min-height: 0;
            }
        }

/* ==========================================================================
   .recruitment-cta-section { (rekrutacja-do-fundacji-beehouses.html)
========================================================================== */
.recruitment-cta-section {
            background: linear-gradient(180deg, #f7f6f3 0%, #ffffff 100%);
            padding: clamp(2.25rem, 4vw, 3.5rem) 0;
            position: relative;
            overflow: visible;
        }

        .recruitment-cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            width: min(880px, 86vw);
            height: 1px;
            transform: translateX(-50%);
            background: linear-gradient(90deg, transparent, rgba(197, 160, 101, 0.45), transparent);
        }

        .recruitment-cta-grid {
            display: grid;
            grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.55fr);
            gap: clamp(1rem, 2.4vw, 2rem);
            align-items: center;
            margin-bottom: clamp(1rem, 2vw, 1.7rem);
        }

        .recruitment-cta-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 0.9rem;
            font-family: 'Syne', sans-serif;
            font-size: 0.64rem;
            font-weight: 700;
            letter-spacing: 0.35em;
            text-transform: uppercase;
            color: var(--accent-gold);
            margin-bottom: 0.75rem;
        }

        .recruitment-cta-eyebrow::before {
            content: '';
            width: 34px;
            height: 1px;
            background: currentColor;
            opacity: 0.7;
        }

        .recruitment-cta-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(1.9rem, 3vw, 2.75rem);
            font-weight: 300;
            line-height: 1.05;
            color: var(--text-primary);
            margin: 0 0 0.75rem;
        }

        .recruitment-cta-title em {
            color: var(--accent-gold);
            font-style: italic;
        }

        .recruitment-cta-copy {
            max-width: 620px;
            color: var(--text-secondary);
            font-size: 0.92rem;
            line-height: 1.55;
            margin: 0 0 1.1rem;
        }

        .recruitment-actions {
            display: grid;
            grid-template-columns: repeat(2, minmax(220px, 1fr));
            gap: 0.8rem;
            align-items: center;
            max-width: 720px;
            margin-top: 1.15rem;
        }

        .recruitment-actions .btn {
            min-height: 50px;
            padding: 0.6rem 0.8rem;
            gap: 0.65rem;
            justify-content: space-between;
            border-color: rgba(197, 160, 101, 0.5);
            box-shadow: 0 16px 34px rgba(26, 46, 40, 0.06);
            font-size: 0.62rem;
            letter-spacing: 0.17em;
            line-height: 1.2;
            transition: color 0.35s ease, border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
        }

        .recruitment-actions .btn::before {
            width: 100%;
            opacity: 0;
            transform: scaleX(0.92);
            transform-origin: left;
            transition: opacity 0.35s ease, transform 0.35s ease;
        }

        .recruitment-actions .btn:hover,
        .recruitment-actions .btn:focus-visible {
            transform: translateY(-2px);
            box-shadow: 0 22px 45px rgba(26, 46, 40, 0.1);
            outline: none;
        }

        .recruitment-actions .btn:hover::before,
        .recruitment-actions .btn:focus-visible::before {
            opacity: 1;
            transform: scaleX(1);
        }

        .recruitment-actions .btn span {
            flex: 1;
            text-align: center;
        }

        .recruitment-actions .btn i {
            width: 28px;
            height: 28px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border: 1px solid currentColor;
            font-size: 0.76rem;
            line-height: 1;
            flex: 0 0 auto;
            transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
        }

        .recruitment-actions .btn:hover i,
        .recruitment-actions .btn:focus-visible i {
            transform: translateX(2px);
        }

        .recruitment-actions .btn-gold {
            background: var(--text-primary);
            border-color: var(--text-primary);
            color: #fff;
        }

        .recruitment-actions .btn-gold::before {
            background: linear-gradient(135deg, #b89150 0%, var(--accent-gold) 100%);
        }

        .recruitment-actions .btn-gold i {
            color: #fff;
            border-color: rgba(255, 255, 255, 0.34);
            background: rgba(255, 255, 255, 0.08);
        }

        .recruitment-actions .btn-gold:hover,
        .recruitment-actions .btn-gold:focus-visible {
            border-color: var(--accent-gold);
            color: #fff !important;
        }

        .recruitment-actions .btn-outline {
            background: rgba(255, 255, 255, 0.86);
            color: var(--text-primary);
            border-color: rgba(26, 46, 40, 0.18);
        }

        .recruitment-actions .btn-outline::before {
            background: var(--text-primary);
        }

        .recruitment-actions .btn-outline:hover,
        .recruitment-actions .btn-outline:focus-visible {
            border-color: var(--text-primary);
            color: #fff !important;
        }

        .recruitment-actions .btn-outline i {
            color: var(--accent-gold);
            border-color: rgba(197, 160, 101, 0.42);
            background: rgba(197, 160, 101, 0.07);
        }

        .recruitment-steps {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 0.7rem;
        }

        .recruitment-step {
            position: relative;
            overflow: hidden;
            background:
                linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(248, 246, 241, 0.88)),
                radial-gradient(circle at top right, rgba(197, 160, 101, 0.13), transparent 44%);
            border: 1px solid rgba(197, 160, 101, 0.26);
            border-radius: 8px;
            box-shadow: 0 14px 32px rgba(26, 46, 40, 0.06);
            padding: 0.85rem 0.9rem;
            min-height: 0;
            display: grid;
            grid-template-columns: auto minmax(0, 1fr);
            gap: 0.7rem;
            align-items: start;
            transition: transform 0.35s var(--transition), box-shadow 0.35s var(--transition), border-color 0.35s ease;
        }

        .recruitment-step::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--text-primary), var(--accent-gold));
            opacity: 0.9;
        }

        .recruitment-step:hover {
            transform: translateY(-4px);
            border-color: rgba(197, 160, 101, 0.46);
            box-shadow: 0 28px 62px rgba(26, 46, 40, 0.11);
        }

        .recruitment-step span {
            width: 30px;
            height: 30px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: var(--text-primary);
            border: 1px solid rgba(197, 160, 101, 0.34);
            font-family: 'Syne', sans-serif;
            font-size: 0.62rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--accent-gold);
            margin-bottom: 0;
            box-shadow: 0 10px 20px rgba(26, 46, 40, 0.12);
        }

        .recruitment-step strong {
            display: block;
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(1.08rem, 1.35vw, 1.3rem);
            font-weight: 500;
            line-height: 1.15;
            color: var(--text-primary);
            margin-bottom: 0.25rem;
        }

        .recruitment-step p {
            margin: 0;
            color: var(--text-secondary);
            font-size: 0.78rem;
            line-height: 1.35;
        }

        .recruitment-form-panel {
            background: rgba(255, 255, 255, 0.82);
            border: 1px solid rgba(197, 160, 101, 0.22);
            box-shadow: 0 24px 60px rgba(26, 46, 40, 0.08);
            overflow: visible;
        }

        .recruitment-form-panel.reveal,
        .recruitment-form-panel.reveal.active {
            transform: none;
        }

        .recruitment-form-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            padding: 1.15rem 1.35rem;
            background: rgba(26, 46, 40, 0.96);
            color: #fff;
        }

        .recruitment-form-header span {
            font-family: 'Syne', sans-serif;
            font-size: 0.62rem;
            font-weight: 700;
            letter-spacing: 0.24em;
            text-transform: uppercase;
            color: var(--accent-gold);
        }

        .recruitment-form-header a {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-family: 'Syne', sans-serif;
            font-size: 0.62rem;
            font-weight: 700;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.84);
        }

        .recruitment-form-header a:hover {
            color: var(--accent-gold);
        }

        .recruitment-progress {
            position: sticky;
            top: 0;
            z-index: 2202;
            padding: 1rem clamp(1.35rem, 3vw, 2.4rem);
            border-bottom: 1px solid rgba(197, 160, 101, 0.2);
            background:
                linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 246, 241, 0.9)),
                radial-gradient(circle at top left, rgba(197, 160, 101, 0.1), transparent 42%);
            box-shadow: 0 12px 34px rgba(26, 46, 40, 0.08);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
        }

        .recruitment-progress__meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            margin-bottom: 0.65rem;
            font-family: 'Syne', sans-serif;
            font-size: 0.62rem;
            font-weight: 700;
            letter-spacing: 0.18em;
            line-height: 1.45;
            text-transform: uppercase;
            color: var(--text-primary);
        }

        .recruitment-progress__meta strong {
            color: var(--accent-gold);
            font-size: 0.7rem;
            white-space: nowrap;
        }

        .recruitment-progress__track {
            height: 5px;
            overflow: hidden;
            background: rgba(26, 46, 40, 0.1);
        }

        .recruitment-progress__bar {
            display: block;
            width: 0;
            height: 100%;
            background: linear-gradient(90deg, #071811 0%, #123228 52%, #1f4a3b 100%);
            box-shadow: 0 0 18px rgba(18, 50, 40, 0.28);
            transition: width 0.28s ease;
        }

        .recruitment-form-body {
            padding: clamp(1.35rem, 3vw, 2.4rem);
            background:
                linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(248, 246, 241, 0.9)),
                radial-gradient(circle at top right, rgba(197, 160, 101, 0.12), transparent 42%);
        }

        .recruitment-form-layout {
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
            gap: clamp(2rem, 4vw, 3rem);
            align-items: start;
        }

        .recruitment-form-intro {
            max-width: 760px;
            margin: 0 0 1.45rem;
            color: var(--text-secondary);
            font-size: 0.92rem;
            line-height: 1.65;
        }

        .recruitment-form .field--full {
            grid-column: 1 / -1;
        }

        .recruitment-form textarea.field-input {
            min-height: 136px;
            resize: vertical;
            line-height: 1.65;
        }

        .recruitment-choice-group {
            margin-bottom: 2rem;
        }

        .recruitment-choice-title {
            display: block;
            margin-bottom: 0.95rem;
            font-family: 'Syne', sans-serif;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--accent-gold);
        }

        .recruitment-choice-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 0.8rem;
        }

        .recruitment-choice {
            display: flex;
            align-items: center;
            gap: 0.7rem;
            min-height: 58px;
            padding: 0.9rem 0.95rem;
            border: 1px solid rgba(197, 160, 101, 0.22);
            background: rgba(255, 255, 255, 0.66);
            color: var(--text-primary);
            font-size: 0.88rem;
            line-height: 1.35;
            cursor: pointer;
            transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
        }

        .recruitment-choice:hover {
            transform: translateY(-2px);
            border-color: rgba(197, 160, 101, 0.5);
            background: rgba(255, 255, 255, 0.92);
        }

        .recruitment-radio {
            border-radius: 999px;
        }

        .recruitment-radio::before {
            content: '';
            width: 8px;
            height: 8px;
            border-radius: 999px;
            background: var(--accent-gold);
        }

        .recruitment-consent {
            margin-top: 0.25rem;
            padding: 1rem 1rem 0.1rem;
            border: 1px solid rgba(197, 160, 101, 0.2);
            background: rgba(255, 255, 255, 0.62);
        }

        .recruitment-consent .check-label {
            font-size: 0.78rem;
        }

        .recruitment-submit-row {
            display: flex;
            align-items: center;
            gap: 1rem;
            flex-wrap: wrap;
            margin-top: 1.6rem;
        }

        .recruitment-privacy-note {
            max-width: 420px;
            margin: 0;
            color: var(--text-secondary);
            font-size: 0.78rem;
            line-height: 1.55;
        }

        .recruitment-faq {
            position: sticky;
            top: 110px;
            padding-left: clamp(1.25rem, 2.5vw, 2rem);
            border-left: 1px solid rgba(197, 160, 101, 0.28);
        }

        .recruitment-faq__eyebrow {
            display: inline-block;
            margin-bottom: 0.65rem;
            font-family: 'Syne', sans-serif;
            font-size: 0.62rem;
            font-weight: 700;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--accent-gold);
        }

        .recruitment-faq__title {
            margin: 0 0 1.45rem;
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(1.7rem, 2.2vw, 2.25rem);
            font-weight: 500;
            line-height: 1.08;
            color: var(--text-primary);
        }

        .recruitment-faq details {
            border-top: 1px solid rgba(26, 46, 40, 0.12);
            overflow: hidden;
        }

        .recruitment-faq details:last-child {
            border-bottom: 1px solid rgba(26, 46, 40, 0.12);
        }

        .recruitment-faq details.is-faq-animating {
            will-change: height;
            transition: height 320ms cubic-bezier(0.22, 1, 0.36, 1);
        }

        .recruitment-faq summary {
            list-style: none;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            padding: 1.25rem 0;
            color: var(--text-primary);
            cursor: pointer;
            font-family: 'Syne', sans-serif;
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 0.06em;
            line-height: 1.45;
            text-transform: uppercase;
            transition: color 0.25s ease;
        }

        .recruitment-faq summary::-webkit-details-marker {
            display: none;
        }

        .recruitment-faq summary::after {
            content: '+';
            flex: 0 0 auto;
            color: var(--accent-gold);
            font-size: 1rem;
            line-height: 1;
            transition: transform 0.25s ease;
        }

        .recruitment-faq details[open] summary::after {
            transform: rotate(45deg);
        }

        .recruitment-faq p {
            margin: 0;
            padding: 0 0 1.45rem;
            color: var(--text-secondary);
            font-size: 0.8rem;
            line-height: 1.85;
            opacity: 0;
            transform: translateY(-6px);
            transition: opacity 0.24s ease, transform 0.24s ease;
        }

        .recruitment-faq details[open] p {
            opacity: 1;
            transform: translateY(0);
        }

        .recruitment-faq details.is-faq-closing p {
            opacity: 0;
            transform: translateY(-6px);
        }

        @media (prefers-reduced-motion: reduce) {
            .recruitment-faq details,
            .recruitment-faq p,
            .recruitment-faq summary,
            .recruitment-faq summary::after {
                transition: none;
                animation: none;
            }
        }

        @media (max-width: 900px) {
            .recruitment-cta-grid {
                grid-template-columns: 1fr;
            }

            .recruitment-form-layout {
                grid-template-columns: 1fr;
            }

            .recruitment-faq {
                position: static;
                padding-left: 0;
                border-left: 0;
                border-top: 1px solid rgba(197, 160, 101, 0.28);
                padding-top: 1.75rem;
            }

            .recruitment-choice-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 600px) {
            .recruitment-actions {
                grid-template-columns: 1fr;
            }

            .recruitment-steps {
                grid-template-columns: 1fr;
            }

            .recruitment-actions .btn {
                width: 100%;
                justify-content: center;
                min-height: 50px;
                padding: 0.6rem 0.8rem;
            }

            .recruitment-form-header {
                align-items: flex-start;
                flex-direction: column;
            }

            .recruitment-progress {
                padding: 0.95rem 1.25rem;
            }

            .recruitment-progress__meta {
                align-items: flex-start;
                flex-direction: column;
                gap: 0.35rem;
            }

            .recruitment-choice-grid {
                grid-template-columns: 1fr;
            }

            .recruitment-form-body {
                padding: 1.25rem;
            }
        }
