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

        html {
            scroll-behavior: smooth;
        }

        :root {
            --bg-primary: #0a0a0a;
            --bg-secondary: #141414;
            --text-primary: #f5f5f5;
            --text-secondary: #888;
            --accent: #d4a574;
            --accent-hover: #e8c4a0;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 1.5rem 4rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: linear-gradient(to bottom, rgba(10, 10, 10, 0.95), transparent);
            transition: background 0.3s ease;
        }

        header.scrolled {
            background: rgba(10, 10, 10, 0.98);
            backdrop-filter: blur(10px);
        }

        .logo {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            font-weight: 300;
            letter-spacing: 0.3em;
            color: var(--text-primary);
            text-decoration: none;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 3rem;
        }

        nav a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 0.75rem;
            font-weight: 500;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            transition: color 0.3s ease;
            position: relative;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--accent);
            transition: width 0.3s ease;
        }

        nav a:hover,
        nav a.active {
            color: var(--text-primary);
        }

        nav a:hover::after,
        nav a.active::after {
            width: 100%;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 2rem;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at center, transparent 0%, var(--bg-primary) 70%);
            pointer-events: none;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            opacity: 0.15;
            background-size: cover;
            background-position: center;
            filter: grayscale(100%);
            transition: opacity 1s ease;
        }

        .hero h1 {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(3rem, 10vw, 7rem);
            font-weight: 300;
            letter-spacing: 0.2em;
            margin-bottom: 1rem;
            position: relative;
            z-index: 1;
        }

        .hero p {
            font-size: 0.9rem;
            letter-spacing: 0.4em;
            text-transform: uppercase;
            color: var(--text-secondary);
            position: relative;
            z-index: 1;
        }

        .scroll-indicator {
            position: absolute;
            bottom: 3rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            color: var(--text-secondary);
            font-size: 0.7rem;
            letter-spacing: 0.2em;
            animation: float 2s ease-in-out infinite;
        }

        .scroll-indicator span {
            width: 1px;
            height: 40px;
            background: linear-gradient(to bottom, var(--accent), transparent);
        }

        @keyframes float {

            0%,
            100% {
                transform: translateX(-50%) translateY(0);
            }

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

        /* Filter Bar */
        .filter-bar {
            padding: 2rem 4rem;
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
            background: var(--bg-secondary);
            position: sticky;
            top: 70px;
            z-index: 100;
        }

        .filter-btn {
            background: none;
            border: none;
            color: var(--text-secondary);
            font-family: 'Montserrat', sans-serif;
            font-size: 0.7rem;
            font-weight: 500;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            cursor: pointer;
            padding: 0.5rem 1rem;
            transition: all 0.3s ease;
            position: relative;
        }

        .filter-btn::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: width 0.3s ease;
        }

        .filter-btn:hover,
        .filter-btn.active {
            color: var(--text-primary);
        }

        .filter-btn.active::before {
            width: 100%;
        }

        /* Gallery */
        .gallery-container {
            padding: 4rem;
            max-width: 1800px;
            margin: 0 auto;
        }

        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 1.5rem;
        }

        .gallery-item {
            position: relative;
            aspect-ratio: 4/5;
            overflow: hidden;
            cursor: pointer;
            background: var(--bg-secondary);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), filter 0.4s ease;
            filter: grayscale(20%);
        }

        .gallery-item:hover img {
            transform: scale(1.08);
            filter: grayscale(0%);
        }

        .gallery-item .overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 50%);
            opacity: 0;
            transition: opacity 0.4s ease;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 2rem;
        }

        .gallery-item:hover .overlay {
            opacity: 1;
        }

        .overlay h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            font-weight: 400;
            margin-bottom: 0.5rem;
            transform: translateY(20px);
            transition: transform 0.4s ease 0.1s;
        }

        .overlay p {
            font-size: 0.75rem;
            color: var(--text-secondary);
            letter-spacing: 0.1em;
            transform: translateY(20px);
            transition: transform 0.4s ease 0.15s;
        }

        .gallery-item:hover .overlay h3,
        .gallery-item:hover .overlay p {
            transform: translateY(0);
        }

        /* Lightbox */
        .lightbox {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.95);
            z-index: 2000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
        }

        .lightbox.active {
            opacity: 1;
            visibility: visible;
        }

        .lightbox-content {
            max-width: 90vw;
            max-height: 90vh;
            position: relative;
        }

        .lightbox-content img {
            max-width: 100%;
            max-height: 85vh;
            object-fit: contain;
            transform: scale(0.9);
            transition: transform 0.4s ease;
        }

        .lightbox.active .lightbox-content img {
            transform: scale(1);
        }

        .lightbox-close {
            position: absolute;
            top: 2rem;
            right: 2rem;
            width: 50px;
            height: 50px;
            background: none;
            border: 1px solid var(--text-secondary);
            border-radius: 50%;
            color: var(--text-primary);
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .lightbox-close:hover {
            border-color: var(--accent);
            color: var(--accent);
            transform: rotate(90deg);
        }

        .lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: 1px solid var(--text-secondary);
            width: 60px;
            height: 60px;
            color: var(--text-primary);
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .lightbox-nav:hover {
            border-color: var(--accent);
            color: var(--accent);
        }

        .lightbox-prev {
            left: 2rem;
        }

        .lightbox-next {
            right: 2rem;
        }

        .lightbox-info {
            text-align: center;
            margin-top: 1.5rem;
        }

        .lightbox-info h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            font-weight: 400;
        }

        .lightbox-info p {
            color: var(--text-secondary);
            font-size: 0.8rem;
            margin-top: 0.5rem;
        }

        /* Loading State */
        .loading {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 4rem;
            color: var(--text-secondary);
        }

        .loader {
            width: 40px;
            height: 40px;
            border: 2px solid var(--bg-secondary);
            border-top-color: var(--accent);
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin-bottom: 1rem;
        }

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

        /* Footer */
        footer {
            padding: 4rem;
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        footer p {
            color: var(--text-secondary);
            font-size: 0.75rem;
            letter-spacing: 0.1em;
        }

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

        .social-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 3rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            transition: color 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
        }

        .social-links a span {
            font-size: 0.65rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
        }

        Ł .social-links a:hover {
            color: var(--accent);
        }

        /* Responsive */
        @media (max-width: 768px) {
            header {
                padding: 1rem 1.5rem;
            }

            nav ul {
                gap: 1.5rem;
            }

            nav a {
                font-size: 0.65rem;
            }

            .filter-bar {
                padding: 1.5rem;
                gap: 1rem;
            }

            .gallery-container {
                padding: 1.5rem;
            }

            .gallery {
                grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
                gap: 1rem;
            }

            .lightbox-nav {
                width: 45px;
                height: 45px;
            }

            .lightbox-prev {
                left: 1rem;
            }

            .lightbox-next {
                right: 1rem;
            }
        }

        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeIn 0.6s ease forwards;
        }

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

        .gallery-item:nth-child(1) {
            animation-delay: 0.1s;
        }

        .gallery-item:nth-child(2) {
            animation-delay: 0.15s;
        }

        .gallery-item:nth-child(3) {
            animation-delay: 0.2s;
        }

        .gallery-item:nth-child(4) {
            animation-delay: 0.25s;
        }

        .gallery-item:nth-child(5) {
            animation-delay: 0.3s;
        }

        .gallery-item:nth-child(6) {
            animation-delay: 0.35s;
        }



        .about-section {
            background: var(--bg-secondary);
            padding: 8rem 4rem;
            border-top: 1px solid rgba(255, 255, 255, 0.04);
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        }

        .about-inner {
            max-width: 1100px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 6rem;
            align-items: center;
        }

        /* Photo column */
        .about-photo-col {
            position: relative;
        }

        .circular_image {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            overflow: hidden;
            background-color: blue;
            display: inline-block;
            vertical-align: middle;
        }

        .circular_image img {
            width: 100%;
        }

        .about-photo-frame {
            position: relative;
            aspect-ratio: 3/4;
            overflow: hidden;
            background: var(--bg-primary);
        }

        .about-photo-frame img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top;
            display: block;
            filter: grayscale(15%);
            transition: filter 0.5s ease;
            position: relative;
            z-index: 1;
        }

        /* Text column */
        .about-text-col {
            display: flex;
            flex-direction: column;
            gap: 1.75rem;
        }

        .about-eyebrow {
            font-size: 0.65rem;
            font-weight: 500;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: var(--accent);
        }

        .about-heading {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2rem, 3vw, 2.7rem);
            font-weight: 300;
            line-height: 1.2;
            letter-spacing: 0.05em;
            color: var(--text-primary);
        }

        .about-line {
            width: 40px;
            height: 1px;
            background: var(--accent);
            opacity: 0.6;
        }

        .about-bio {
            font-size: 0.9rem;
            line-height: 1.9;
            text-align: justify;
            color: var(--text-secondary);
        }

        .about-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem;
        }

        .about-tag {
            font-size: 0.65rem;
            font-weight: 500;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--text-secondary);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 0.4rem 0.9rem;
            transition: border-color 0.3s ease, color 0.3s ease;
        }

        .about-tag:hover {
            border-color: var(--accent);
            color: var(--accent);
        }

        .about-cta {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 0.7rem;
            font-weight: 500;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--text-primary);
            text-decoration: none;
            border-bottom: 1px solid rgba(255, 255, 255, 0.15);
            padding-bottom: 0.5rem;
            width: fit-content;
            transition: border-color 0.3s ease, color 0.3s ease, gap 0.3s ease;
        }

        .about-cta:hover {
            color: var(--accent);
            border-color: var(--accent);
            gap: 1.1rem;
        }

        /* Responsive */
        @media (max-width: 900px) {
            .about-section {
                padding: 5rem 2rem;
            }

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

            .about-photo-frame {
                max-width: 360px;
                margin: 0 auto;
            }

            .about-photo-frame::after {
                display: none;
            }

            .about-text-col {
                gap: 1.25rem;
            }
        }