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

        :root {
            --primary-dark: #1a2332;
            --primary-blue: #2c4a6d;
            --accent-gold: #c9a961;
            --light-gray: #f8f9fa;
            --medium-gray: #6c757d;
            --dark-gray: #343a40;
            --white: #ffffff;
            --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
            --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
            --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--dark-gray);
            line-height: 1.7;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            line-height: 1.3;
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            box-shadow: var(--shadow-sm);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            box-shadow: var(--shadow-md);
        }

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

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-dark);
            text-decoration: none;
            letter-spacing: 0.5px;
        }

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

        .nav-menu {
            display: flex;
            gap: 2.5rem;
            list-style: none;
            align-items: center;
        }

        .nav-menu a {
            text-decoration: none;
            color: var(--dark-gray);
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-gold);
            transition: width 0.3s ease;
        }

        .nav-menu a:hover {
            color: var(--primary-blue);
        }

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

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

        .mobile-toggle span {
            width: 25px;
            height: 3px;
            background: var(--primary-dark);
            border-radius: 3px;
            transition: all 0.3s ease;
        }

        /* Hero Section */
        .hero {
            margin-top: 80px;
            min-height: 90vh;
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('https://images.unsplash.com/photo-1507838153414-b4b713384a76?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') center/cover;
            opacity: 0.08;
        }

        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 4rem 2rem;
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            color: var(--white);
            margin-bottom: 1.5rem;
            animation: fadeInUp 0.8s ease;
        }

        .hero .subtitle {
            font-size: clamp(1.2rem, 3vw, 1.8rem);
            color: var(--accent-gold);
            margin-bottom: 2rem;
            font-weight: 300;
            animation: fadeInUp 0.8s ease 0.2s both;
        }

        .hero p {
            font-size: 1.1rem;
            color: rgba(255,255,255,0.9);
            max-width: 600px;
            margin-bottom: 2.5rem;
            animation: fadeInUp 0.8s ease 0.4s both;
        }

        .cta-button {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: var(--accent-gold);
            color: var(--primary-dark);
            text-decoration: none;
            font-weight: 600;
            border-radius: 4px;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-md);
            animation: fadeInUp 0.8s ease 0.6s both;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
            background: #d4b670;
        }

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

        /* Section Styling */
        section {
            padding: 6rem 2rem;
        }

        .section-light {
            background: var(--white);
        }

        .section-gray {
            background: var(--light-gray);
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title {
            font-size: clamp(2rem, 4vw, 3rem);
            color: var(--primary-dark);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: var(--accent-gold);
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: var(--medium-gray);
            max-width: 700px;
            margin: 2rem auto 0;
        }

        /* About Section */
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-image {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }

        .about-image img {
            width: 100%;
            height: 600px;
            object-fit: cover;
            display: block;
        }

        .about-image::after {
            content: '';
            position: absolute;
            top: 20px;
            right: 20px;
            bottom: -20px;
            left: -20px;
            border: 3px solid var(--accent-gold);
            border-radius: 8px;
            z-index: -1;
        }

        .about-text h3 {
            font-size: 2rem;
            color: var(--primary-dark);
            margin-bottom: 1.5rem;
        }

        .about-text p {
            margin-bottom: 1.5rem;
            color: var(--dark-gray);
            font-size: 1.05rem;
        }

        .about-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin-top: 2.5rem;
        }

        .stat-item {
            text-align: center;
            padding: 1.5rem;
            background: var(--light-gray);
            border-radius: 8px;
            transition: transform 0.3s ease;
        }

        .stat-item:hover {
            transform: translateY(-5px);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--accent-gold);
            font-family: 'Playfair Display', serif;
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--medium-gray);
            margin-top: 0.5rem;
        }

        /* Experience Section */
        .experience-grid {
            display: grid;
            gap: 2rem;
            max-width: 900px;
            margin: 0 auto;
        }

        .experience-item {
            background: var(--white);
            padding: 2.5rem;
            border-radius: 8px;
            box-shadow: var(--shadow-sm);
            border-left: 4px solid var(--accent-gold);
            transition: all 0.3s ease;
        }

        .experience-item:hover {
            box-shadow: var(--shadow-md);
            transform: translateX(5px);
        }

        .experience-item h3 {
            font-size: 1.5rem;
            color: var(--primary-dark);
            margin-bottom: 0.5rem;
        }

        .experience-year {
            font-size: 0.9rem;
            color: var(--accent-gold);
            font-weight: 600;
            margin-bottom: 1rem;
            display: block;
        }

        .experience-item p {
            color: var(--dark-gray);
            line-height: 1.8;
        }

        /* Portfolio Section */
        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
        }

        .portfolio-card {
            background: var(--white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: all 0.4s ease;
            position: relative;
        }

        .portfolio-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .portfolio-image {
            height: 280px;
            overflow: hidden;
            position: relative;
        }

        .portfolio-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .portfolio-card:hover .portfolio-image img {
            transform: scale(1.1);
        }

        .portfolio-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, transparent 0%, rgba(26, 35, 50, 0.9) 100%);
        }

        .portfolio-content {
            padding: 2rem;
        }

        .portfolio-content h3 {
            font-size: 1.6rem;
            color: var(--primary-dark);
            margin-bottom: 1rem;
        }

        .portfolio-content p {
            color: var(--medium-gray);
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
        }

        .portfolio-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--accent-gold);
            text-decoration: none;
            font-weight: 600;
            transition: gap 0.3s ease;
        }

        .portfolio-link:hover {
            gap: 1rem;
        }

        .portfolio-link::after {
            content: '→';
            font-size: 1.2rem;
        }

        /* Offer Section */
        .offer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .offer-card {
            background: var(--white);
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: var(--shadow-sm);
            transition: all 0.3s ease;
            text-align: center;
            border-top: 4px solid transparent;
        }

        .offer-card:nth-child(1) { border-top-color: #c9a961; }
        .offer-card:nth-child(2) { border-top-color: #2c4a6d; }
        .offer-card:nth-child(3) { border-top-color: #1a2332; }
        .offer-card:nth-child(4) { border-top-color: #6c757d; }

        .offer-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }

        .offer-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
        }
		
		.offer-icon svg {
			width: 36px;
			height: 36px;
			stroke-width: 1.6;
			fill: none;
			stroke: currentColor;
			display: block;
		  }

		  /* jeden kolor dla wszystkich ikon (elegancki, neutralny) */
		  .offer-icon { color: #2b2b2b; background: rgba(43,43,43,0.04); }

		  /* opcjonalne: lekka personalizacja per karta (jeśli chcesz różne akcenty) */
		  .offer-card--accent-1 .offer-icon { color: #2b2b2b; background: rgba(43,43,43,0.04); }
		  .offer-card--accent-2 .offer-icon { color: #2b2b2b; background: rgba(43,43,43,0.04); }
		  .offer-card--accent-3 .offer-icon { color: #2b2b2b; background: rgba(43,43,43,0.04); }
		  .offer-card--accent-4 .offer-icon { color: #2b2b2b; background: rgba(43,43,43,0.04); }

        .offer-card h3 {
            font-size: 1.4rem;
            color: var(--primary-dark);
            margin-bottom: 1rem;
        }

        .offer-card p {
            color: var(--medium-gray);
            font-size: 0.95rem;
            line-height: 1.7;
        }

        /* Contact Section */
        .contact-content {
            max-width: 800px;
            margin: 0 auto;
            background: var(--white);
            padding: 3rem;
            border-radius: 12px;
            box-shadow: var(--shadow-lg);
        }

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

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--primary-dark);
            font-weight: 500;
            font-size: 0.95rem;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.9rem 1.2rem;
            border: 2px solid #e1e8ed;
            border-radius: 6px;
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: var(--light-gray);
        }

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

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

        .submit-button {
            width: 100%;
            padding: 1.2rem;
            background: var(--primary-dark);
            color: var(--white);
            border: none;
            border-radius: 6px;
            font-size: 1.05rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-md);
        }

        .submit-button:hover {
            background: var(--primary-blue);
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        .contact-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid #e1e8ed;
        }

        .contact-item {
            text-align: center;
        }

        .contact-item-icon {
            font-size: 2rem;
            color: var(--accent-gold);
            margin-bottom: 0.8rem;
        }

        .contact-item h4 {
            font-size: 1rem;
            color: var(--primary-dark);
            margin-bottom: 0.5rem;
        }

        .contact-item p {
            color: var(--medium-gray);
            font-size: 0.9rem;
        }

        /* Footer */
        footer {
            background: var(--primary-dark);
            color: rgba(255,255,255,0.8);
            padding: 3rem 2rem 1.5rem;
            text-align: center;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .social-links a {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.2rem;
        }

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

        .footer-bottom {
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
        }

        /* Responsive Design */
        @media (max-width: 968px) {
            .nav-menu {
                position: fixed;
                left: -100%;
                top: 80px;
                flex-direction: column;
                background: var(--white);
                width: 100%;
                text-align: center;
                transition: left 0.3s ease;
                box-shadow: var(--shadow-lg);
                padding: 2rem 0;
                gap: 1.5rem;
            }

            .nav-menu.active {
                left: 0;
            }

            .mobile-toggle {
                display: flex;
            }

            .about-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .about-image::after {
                display: none;
            }

            .portfolio-grid {
                grid-template-columns: 1fr;
            }

            .offer-grid {
                grid-template-columns: 1fr;
            }

            .contact-content {
                padding: 2rem 1.5rem;
            }
        }

        @media (max-width: 576px) {
            section {
                padding: 4rem 1.5rem;
            }

            .nav-container {
                padding: 1rem 1.5rem;
            }

            .hero-content {
                padding: 3rem 1.5rem;
            }

            .about-stats {
                grid-template-columns: 1fr;
            }
        }
