        :root {
            --navy: #0d1f3c;
            --navy-mid: #162d52;
            --gold: #c8973a;
            --gold-light: #e8b95a;
            --cream: #faf8f4;
            --text: #1a1a2e;
            --text-muted: #5a6272;
            --border: rgba(13,31,60,0.1);
            --white: #ffffff;
        }

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

        html { scroll-behavior: smooth; }

        body {
            font-family: 'Montserrat', sans-serif;
            background: var(--white);
            color: var(--text);
            font-size: 16px;
            line-height: 1.7;
        }

        h1, h2, h3, h4 {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 500;
            line-height: 1.2;
        }

        .container {
            width: 90%;
            max-width: 1160px;
            margin: 0 auto;
        }

        /* ─── NAVIGATION ─── */
        header {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 100;
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border);
        }

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

        .logo img {
            width:170px;
            height: auto;
            padding-top:5px;
        }

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

        nav { display: flex; gap: 32px; align-items: center; }

        nav a {
            text-decoration: none;
            color: var(--text-muted);
            font-size: 0.82rem;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            font-weight: 500;
            position: relative;
            padding-bottom: 4px;
            transition: color 0.2s, font-weight 0.1s;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--gold);
            transform: scaleX(0);
            transform-origin: left center;
            transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        }

        nav a:hover {
            color: var(--navy);
            font-weight: 600;
        }

        nav a:hover::after { transform: scaleX(1); }

        nav a.active {
            color: var(--navy);
            font-weight: 600;
        }

        nav a.active::after { transform: scaleX(1); }

        .nav-socials {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-left: 4px;
            padding-left: 24px;
            border-left: 1px solid var(--border);
        }

        .nav-socials a {
            display: flex;
            align-items: center;
            color: var(--text-muted);
            padding-bottom: 0;
            transition: color 0.2s;
        }

        .nav-socials a::after { display: none; }

        .nav-socials a:hover {
            color: var(--gold);
            font-weight: 400;
        }

        .nav-socials a svg {
            width: 17px;
            height: 17px;
            fill: currentColor;
            stroke: none;
        }

        /* ─── HAMBURGER ─── */
        .hamburger {
            display: none;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            width: 40px;
            height: 40px;
            background: none;
            border: 1px solid var(--border);
            border-radius: 2px;
            cursor: pointer;
            padding: 8px 10px;
        }

        .hamburger span {
            display: block;
            width: 100%;
            height: 1.5px;
            background: var(--navy);
            transition: transform 0.3s, opacity 0.3s;
            transform-origin: center;
        }

        .hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
        .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
        .hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

        /* ─── MOBILE MENU ─── */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 100px;
            left: 0; right: 0;
            background: rgba(255,255,255,0.98);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--border);
            z-index: 99;
            overflow: hidden;
            max-height: 0;
            transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1);
        }

        .mobile-menu.open { max-height: 420px; }

        .mobile-menu > a {
            display: block;
            padding: 18px 5%;
            text-decoration: none;
            color: var(--text-muted);
            font-size: 0.85rem;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            font-weight: 500;
            border-bottom: 1px solid var(--border);
            transition: color 0.2s, background 0.2s;
        }

        .mobile-menu > a:hover { color: var(--navy); background: var(--cream); }

        .mobile-socials {
            display: flex;
            justify-content: center;
            gap: 32px;
            padding: 20px 5%;
        }

        .mobile-socials a {
            color: var(--text-muted);
            transition: color 0.2s;
            display: flex;
            align-items: center;
            padding: 0;
            border: none;
            background: none;
            font-size: 0;
            letter-spacing: 0;
            text-transform: none;
        }

        .mobile-socials a:hover { color: var(--gold); background: none; }

        /* ─── HERO ─── */
        .hero {
            min-height: 100vh;
            background: var(--navy) url('top-bg.jpg') no-repeat center center;
            background-size: auto 100%;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding: 160px 0 80px;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: var(--gold);
            font-size: 0.75rem;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            margin-bottom: 28px;
        }

        .hero-eyebrow::before {
            content: '';
            width: 32px;
            height: 1px;
            background: var(--gold);
        }

        .hero h1 {
            font-size: clamp(2.8rem, 5vw, 4.2rem);
            color: var(--white);
            line-height: 1.1;
            margin-bottom: 28px;
        }

        .hero h1 em {
            font-style: italic;
            color: var(--gold-light);
        }

        .hero-desc {
            color: rgba(255,255,255,0.6);
            font-size: 0.95rem;
            line-height: 1.8;
            max-width: 440px;
            margin-bottom: 44px;
        }

        .hero-cta {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: var(--gold);
            color: var(--navy);
            padding: 14px 32px;
            border-radius: 2px;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.88rem;
            letter-spacing: 0.04em;
            transition: background 0.2s, transform 0.2s;
        }

        .hero-cta:hover {
            background: var(--gold-light);
            transform: translateY(-2px);
        }

        .hero-stats {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .stat-card {
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.08);
            border-left: 3px solid var(--gold);
            padding: 24px 28px;
            border-radius: 2px;
        }

        .stat-num {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.6rem;
            color: var(--white);
            line-height: 1;
            margin-bottom: 6px;
        }

        .stat-label {
            font-size: 0.78rem;
            color: rgba(255,255,255,0.45);
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        /* ─── SECTION COMMONS ─── */
        section { padding: 96px 0; scroll-margin-top: 100px; }

        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: var(--gold);
            font-size: 0.72rem;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            margin-bottom: 16px;
        }

        .section-label::before {
            content: '';
            width: 24px;
            height: 1px;
            background: var(--gold);
        }

        .section-title {
            font-size: clamp(2rem, 3.5vw, 3rem);
            color: var(--navy);
            max-width: 520px;
            margin-bottom: 16px;
        }

        .section-title em { font-style: italic; color: var(--gold); }

        .section-sub {
            color: var(--text-muted);
            max-width: 440px;
            font-size: 0.92rem;
            line-height: 1.8;
        }

        /* ─── O NAS ─── */
        #o-nas { background: var(--cream); }

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

        .about-left {}

        blockquote {
            margin-top: 28px;
            padding: 32px;
            background: var(--white);
            border-left: 3px solid var(--gold);
            border-radius: 0 2px 2px 0;
            cursor: default;
            position: relative;
        }

        blockquote p {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.95rem;
            font-weight: 300;
            font-style: italic;
            color: var(--navy);
            line-height: 1.55;
            margin-bottom: 16px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .quote-tooltip {
            position: absolute;
            bottom: 30px;
            left: 30px;
            right: 0;
            background: var(--navy);
            color: rgba(255,255,255,0.85);
            font-family: 'Montserrat', sans-serif;
            font-size: 0.82rem;
            font-weight: 300;
            font-style: italic;
            line-height: 1.7;
            padding: 20px 24px;
            border-radius: 2px;
            box-shadow: 0 8px 32px rgba(13,31,60,0.18);
            opacity: 0;
            pointer-events: none;
            transform: translateY(6px);
            transition: opacity 0.22s ease, transform 0.22s ease;
            z-index: 10;
        }

        .quote-tooltip::after {
            display: none;
        }

        blockquote:hover .quote-tooltip {
            opacity: 1;
            transform: translateY(0);
        }

        blockquote cite {
            display: flex;
            align-items: center;
            gap: 14px;
            font-size: 0.8rem;
            color: var(--text-muted);
            letter-spacing: 0.06em;
            text-transform: uppercase;
            font-style: normal;
        }

        .cite-photo {
            width: 70px;
            height: 70px;
            min-width: 70px;
            border-radius: 4px;
            background: url('mgurbisz.png') no-repeat center center;
            background-size: cover;
        }

        .about-right {
            display: flex;
            flex-direction: column;
            gap: 28px;
            padding-top: 70px;
        }

        .about-pillar {
            display: flex;
            gap: 22px;
            align-items: flex-start;
        }

        .pillar-icon {
            width: 66px;
            height: 66px;
            min-width: 66px;
            background: var(--navy);
            border-radius: 3px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .pillar-icon svg { width: 44px; height: 44px; fill: var(--gold); }

        .pillar-text h4 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.9rem;
            color: var(--navy);
            margin-bottom: 6px;
        }

        .pillar-text p {
            font-size: 1.1rem;
            color: var(--text-muted);
            line-height: 1.5;
        }

        .activity-subtitle {
            font-size: 0.95rem;
            color: var(--text-muted);
            max-width: 380px;
            line-height: 1.6;
            align-self: flex-end;
            padding-bottom: 4px;
        }
        #dzialalnosc {
            background: var(--white) url('inicjatywy-top.png') no-repeat center top;
            background-size: auto 360px;
        }

        .activity-header {
            margin-bottom: 56px;
        }

        .activity-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2px;
            background: var(--border);
        }

        .act-card {
            background: var(--white);
            padding: 40px;
            transition: background 0.25s;
            display: flex;
            flex-direction: column;
        }

        .act-card:hover { background: var(--cream); }

        .activity-banner-wrapper {
            margin-top: 56px;
            display: flex;
            justify-content: center;
        }

        .activity-banner {
            display: block;
			image-rendering: -webkit-optimize-contrast;
            width: 100%;
            max-width: 1080px;
            border-radius: 6px;
            overflow: hidden;
            transition: box-shadow 0.3s ease;
            cursor: pointer;
        }

        .activity-banner:hover {
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
        }

        .activity-banner img {
            display: block;
            width: 100%;
            height: auto;
        }

        .act-card .act-list { flex: 1; }

        .btn-details {
            margin-top: 28px;
            align-self: flex-start;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: none;
            border: 1px solid var(--border);
            color: var(--navy);
            font-family: 'Montserrat', sans-serif;
            font-size: 0.75rem;
            font-weight: 500;
            letter-spacing: 0.07em;
            text-transform: uppercase;
            padding: 10px 20px;
            border-radius: 2px;
            cursor: pointer;
            transition: background 0.2s, border-color 0.2s, color 0.2s;
        }

        .btn-details:hover {
            background: var(--navy);
            border-color: var(--navy);
            color: var(--white);
        }

        .btn-details svg { width: 12px; height: 12px; transition: transform 0.2s; }
        .btn-details:hover svg { transform: translateX(3px); }

        /* ─── MODAL ─── */
        .modal-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(13,31,60,0.72);
            backdrop-filter: blur(6px);
            z-index: 200;
            align-items: center;
            justify-content: center;
            padding: 24px;
        }

        .modal-overlay.open { display: flex; }

        .modal-box {
            background: var(--white);
            border-radius: 2px;
            width: 100%;
            max-width: 680px;
            max-height: 86vh;
            overflow-y: auto;
            position: relative;
            animation: modalIn 0.28s cubic-bezier(0.4,0,0.2,1);
        }

        /* Banner modal - wider without header */
        .modal-box[data-modal-type="banner"] {
            max-width: 1100px;
            background: transparent;
            border-radius: 6px;
            overflow: visible;
        }

        .modal-box[data-modal-type="banner"] .modal-header {
            position: absolute;
            top: 0;
            right: 0;
            border: none;
            padding: 0;
            background: none;
            width: auto;
            z-index: 10;
        }

        .modal-box[data-modal-type="banner"] .modal-header h3 {
            display: none;
        }

        .modal-box[data-modal-type="banner"] .modal-body {
            padding: 0;
            position: relative;
        }

        .modal-box[data-modal-type="banner"] .modal-body img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 6px;
        }

        @keyframes modalIn {
            from { opacity: 0; transform: translateY(16px); }
            to   { opacity: 1; transform: translateY(0); }
        }

        .modal-header {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            padding: 32px 36px 24px;
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            background: var(--white);
            z-index: 1;
        }

        .modal-header h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2rem;
            color: var(--navy);
            line-height: 1.2;
        }

        .modal-close {
            background: none;
            border: 1px solid var(--border);
            border-radius: 2px;
            width: 36px;
            height: 36px;
            min-width: 36px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: 16px;
            margin-top: 4px;
            transition: background 0.2s;
        }

        .modal-close:hover { background: var(--cream); }
        .modal-close svg { width: 16px; height: 16px; stroke: var(--navy); fill: none; stroke-width: 1.8; }

        /* Banner modal close button on image */
        .modal-box[data-modal-type="banner"] .modal-close {
            position: absolute;
            top: 16px;
            right: 16px;
            background: rgba(255, 255, 255, 0.95);
            border: none;
            border-radius: 50%;
            margin: 0;
            z-index: 10;
        }

        .modal-box[data-modal-type="banner"] .modal-close:hover {
            background: rgba(255, 255, 255, 1);
        }

        .modal-body {
            padding: 28px 36px 36px;
        }

        .modal-section { margin-bottom: 28px; }
        .modal-section:last-child { margin-bottom: 0; }

        .modal-section-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.2rem;
            color: var(--navy);
            margin-bottom: 12px;
            padding-bottom: 8px;
            border-bottom: 1px solid var(--border);
        }

        .modal-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .modal-list li {
            display: flex;
            gap: 12px;
            font-size: 0.875rem;
            color: var(--text-muted);
            line-height: 1.65;
            align-items: flex-start;
        }

        .modal-list li::before {
            content: '';
            width: 4px;
            height: 4px;
            min-width: 4px;
            background: var(--gold);
            border-radius: 50%;
            margin-top: 8px;
        }

        .modal-note {
            margin-top: 24px;
            padding: 16px 20px;
            background: var(--cream);
            border-left: 3px solid var(--gold);
            font-size: 0.85rem;
            color: var(--text-muted);
            line-height: 1.7;
        }

        .act-num {
            font-family: 'Cormorant Garamond', serif;
            font-size: 3.5rem;
            color: rgba(200,151,58,0.15);
            line-height: 1;
            margin-bottom: 12px;
            font-weight: 500;
        }

        .act-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            color: var(--navy);
            margin-bottom: 20px;
            padding-bottom: 16px;
            border-bottom: 1px solid var(--border);
        }

        .act-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .act-list li {
            display: flex;
            gap: 12px;
            font-size: 0.875rem;
            color: var(--text-muted);
            align-items: flex-start;
        }

        .act-list li::before {
            content: '';
            width: 4px;
            height: 4px;
            min-width: 4px;
            background: var(--gold);
            border-radius: 50%;
            margin-top: 8px;
        }

        .act-list strong {
            color: var(--text);
            font-weight: 500;
        }

        /* ─── CZŁONKOSTWO ─── */
        #czlonkostwo { background: var(--navy); }

        #czlonkostwo .section-title { color: var(--white); max-width: 600px; }
        #czlonkostwo .section-sub { color: rgba(255,255,255,0.5); }

        .membership-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 56px;
        }

        .mem-card {
            border: 1px solid rgba(255,255,255,0.08);
            padding: 36px;
            border-radius: 2px;
            transition: border-color 0.2s, background 0.2s;
        }

        .mem-card:hover {
            border-color: var(--gold);
            background: rgba(255,255,255,0.03);
        }

        .mem-card.featured {
            border-color: var(--gold);
            background: rgba(200,151,58,0.06);
            position: relative;
        }

        .mem-badge {
            position: absolute;
            top: -12px;
            left: 36px;
            background: var(--gold);
            color: var(--navy);
            font-size: 0.7rem;
            font-weight: 500;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            padding: 4px 12px;
            border-radius: 2px;
        }

        .mem-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: rgba(200,151,58,0.12);
            border: 1px solid rgba(200,151,58,0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 10px;
        }

        .mem-icon svg { width: 60px; height: 60px; fill: var(--gold); }

        .mem-card h3 {
            color: var(--white);
            font-size: 2.4rem;
            line-height: 1.1;
            margin-bottom: 12px;
        }

        .mem-subtitle {
            font-size: 1.05rem;
            color: var(--gold);
            letter-spacing: 0.03em;
            margin-bottom: 14px;
            line-height: 1.6;
        }

        .mem-card p:not(.mem-subtitle) {
            color: rgba(255,255,255,0.5);
            font-size: 0.875rem;
            line-height: 1.8;
        }

        .join-process {
            margin-top: 56px;
            padding: 40px 48px;
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 2px;
        }

        .join-process-label {
            font-size: 0.72rem;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 28px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .join-process-label::before {
            content: '';
            width: 24px;
            height: 1px;
            background: var(--gold);
        }

        .join-steps {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0;
            position: relative;
        }

        .join-steps::before {
            content: '';
            position: absolute;
            top: 20px;
            left: calc(100% / 6);
            right: calc(100% / 6);
            height: 1px;
            background: rgba(200,151,58,0.3);
        }

        .join-step {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 0 24px;
        }

        .join-step-num {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 1px solid var(--gold);
            background: var(--navy);
            color: var(--gold);
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
            position: relative;
            z-index: 1;
        }

        .join-step h4 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.1rem;
            color: var(--white);
            margin-bottom: 8px;
        }

        .join-step p {
            font-size: 0.8rem;
            color: rgba(255,255,255,0.45);
            line-height: 1.65;
        }

        .btn-download {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            border: 1px solid var(--gold);
            color: var(--gold);
            background: transparent;
            font-family: 'Montserrat', sans-serif;
            font-size: 0.78rem;
            font-weight: 500;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            text-decoration: none;
            padding: 14px 36px;
            border-radius: 2px;
            transition: background 0.2s, color 0.2s;
        }

        .btn-download:hover {
            background: var(--gold);
            color: var(--navy);
        }

        @media (max-width: 600px) {
            .join-steps { grid-template-columns: 1fr; gap: 28px; }
            .join-steps::before { display: none; }
            .join-process { padding: 28px 24px; }
        }

        /* ─── KONTAKT ─── */
        #kontakt { background: var(--cream); }

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

        .contact-item {
            display: flex;
            gap: 16px;
            align-items: flex-start;
            margin-bottom: 28px;
        }

        .contact-icon {
            width: 38px;
            height: 38px;
            min-width: 38px;
            border: 1px solid var(--border);
            border-radius: 2px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .contact-icon svg { width: 16px; height: 16px; stroke: var(--navy); fill: none; stroke-width: 1.5; }

        .contact-item-label {
            font-size: 0.72rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 3px;
        }

        .contact-item-val {
            font-size: 0.92rem;
            color: var(--navy);
            font-weight: 500;
        }

        .contact-socials {
            display: flex;
            gap: 10px;
            margin-top: 8px;
        }

        .contact-socials a {
            width: 38px;
            height: 38px;
            background: var(--navy);
            border-radius: 2px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255,255,255,0.7);
            transition: background 0.2s, color 0.2s;
        }

        .contact-socials a:hover {
            background: var(--gold);
            color: var(--navy);
        }

        .contact-socials a svg { width: 16px; height: 16px; }

        /* Form */
        .form-card {
            margin-top: 50px;
            background: var(--white);
            padding: 40px;
            border-radius: 2px;
            border: 1px solid var(--border);
        }

        .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--text-muted);
            margin-bottom: 8px;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid var(--border);
            border-radius: 2px;
            font-family: 'Montserrat', sans-serif;
            font-size: 0.9rem;
            color: var(--text);
            background: var(--cream);
            transition: border-color 0.2s;
            outline: none;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            border-color: var(--gold);
            background: var(--white);
        }

        .form-group textarea { resize: vertical; min-height: 120px; }

        .btn-submit {
            width: 100%;
            background: var(--navy);
            color: var(--white);
            border: none;
            padding: 15px;
            border-radius: 2px;
            font-family: 'Montserrat', sans-serif;
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            cursor: pointer;
            transition: background 0.2s;
        }

        .btn-submit:hover { background: var(--navy-mid); }

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

        .btn-submit.loading {
            position: relative;
        }

        /* Błędy formularza */
        .form-error {
            display: block;
            font-size: 0.75rem;
            color: #d32f2f;
            margin-top: 4px;
            font-weight: 500;
        }

        .form-group input.error,
        .form-group textarea.error {
            border-color: #d32f2f;
            background: rgba(211, 47, 47, 0.02);
        }

        /* Komunikat formularza */
        .form-message {
            padding: 16px 20px;
            border-radius: 2px;
            margin-bottom: 20px;
            font-size: 0.9rem;
            display: none;
            animation: slideDown 0.3s ease-out;
        }

        .form-message.success {
            display: block !important;
            background: #e8f5e9;
            color: #2e7d32;
            border-left: 4px solid #4caf50;
        }

        .form-message.error {
            display: block !important;
            background: #ffebee;
            color: #c62828;
            border-left: 4px solid #f44336;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ─── FOOTER ─── */
        footer {
            background: #070f1e;
            padding: 40px 0;
        }

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

        .footer-logo {
            font-family: 'Montserrat', sans-serif;
            color: rgba(255,255,255,0.4);
            font-size: 0.95rem;
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }

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

        footer p {
            font-size: 0.78rem;
            color: rgba(255,255,255,0.25);
        }

        /* ─── RESPONSIVE ─── */
        @media (max-width: 1100px) {
            /* Nav */
            nav { display: none; }
            .hamburger { display: flex; }
            .mobile-menu { display: block; }

            /* Hero */
            .hero { padding: 130px 0 64px; }
            .hero-grid { grid-template-columns: 1fr; gap: 40px; }
            .hero h1 { font-size: 2.4rem; }
            .hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
            .stat-card { padding: 18px 16px; }
            .stat-num { font-size: 2rem; }

            /* Sections */
            .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
            .about-right { padding-top: 0; }
            .activity-grid { grid-template-columns: 1fr; gap: 0; }
            .membership-grid { grid-template-columns: 1fr; gap: 16px; }
            .section-title { font-size: 2rem; }
            #dzialalnosc {
            background: var(--white) url('inicjatywy-top.png') no-repeat;
            background-size: auto 300px;
            background-position: -220px 0;
            }            

            /* Form */
            .form-row { grid-template-columns: 1fr; }
            .form-card { padding: 28px 20px; margin-top:0; }

            /* Footer */
            .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
        }

        @media (max-width: 480px) {
            .hero-stats { grid-template-columns: 1fr; }
            .hero h1 { font-size: 2rem; }
            .mem-card { padding: 28px 24px; }
            section { padding: 64px 0; }
            .hero {
                min-height: 30vh;
                background: #101927 url('top-bg-sm.jpg') no-repeat center center;
                background-size: auto 100%;
                padding: 160px 0 20px;            
            }  
            #dzialalnosc {
            background: var(--white);
            }        
        }
		
	