
        /* Base Variables - Off-white and Off-black for editorial feel */
        :root {
            --bg-color: #fcfbf9; 
            --text-main: #1a1a1a; 
            --text-muted: #595959;
            --accent: #b8a99a;
            --border-color: rgba(0,0,0,0.08);
        }

        /* Global Reset & Typography */
        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--bg-color);
            color: var(--text-main);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            position: relative;
        }

        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            font-weight: 400;
        }

        a { color: var(--text-main); text-decoration: none; }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Minimalist Navigation */
        header {
            border-bottom: 1px solid var(--border-color);
            position: relative;
            background-color: var(--bg-color);
            z-index: 100;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 2rem 0;
        }

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.25rem;
            letter-spacing: 1px;
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .nav-links a:hover {
            color: var(--accent);
            transition: color 0.3s ease;
        }

        /* Hamburger Menu */
        .hamburger {
            display: none;
            cursor: pointer;
            border: none;
            background: transparent;
            font-size: 1.5rem;
            color: var(--text-main);
        }

        /* Asymmetrical Hero Section */
        .hero {
            display: grid;
            grid-template-columns: 5fr 7fr;
            min-height: 75vh;
            align-items: center;
            gap: 4rem;
            padding: 4rem 0;
        }
        /* Container for the image and caption */
.hero-figure {
    margin: 0;
    width: 100%;
}

/* The photo credit text styling */
.photo-credit {
    font-size: 0.75rem; /* Keeps it minimal and unobtrusive */
    color: var(--text-muted); /* Uses the existing muted grey */
    margin-top: 0.75rem; /* Adds a little breathing room below the photo */
    text-align: right; /* Aligns to the right edge of the photo */
    font-style: italic; /* Gives it an editorial, published feel */
    letter-spacing: 0.5px;
}

        .hero-text h1 {
            font-size: 3.5rem;
            line-height: 1;
            margin-bottom: 1.5rem;
        }

        .hero-text h1 i { color: var(--text-muted); }

        .hero-text p {
            font-size: 1.1rem;
            color: var(--text-muted);
            margin-bottom: 2.5rem;
            max-width: 95%;
            font-weight: 300;
        }

        .hero-image-wrapper {
            width: 100%;
            height: 600px;
            background-color: #eaeaea; 
            overflow: hidden;
            position: relative;
        }

        .hero-image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: grayscale(15%); 
        }

        /* Buttons */
        .btn {
            display: inline-block;
            padding: 0.8rem 1.8rem;
            border: 1px solid var(--text-main);
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .btn:hover {
            background-color: var(--text-main);
            color: var(--bg-color);
        }
        
        .btn-group {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            margin-top: 1.5rem;
        }

        /* Artistic Research Section */
        .research {
            padding: 6rem 0;
            border-top: 1px solid var(--border-color);
        }

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

        .section-header h2 {
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
        }

        .section-header p {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--text-muted);
        }

        .album-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .album-cover {
            background-color: #ddd;
            aspect-ratio: 1 / 1;
            width: 100%;
            max-width: 500px;
            margin: 0 auto;
        }

        .album-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .album-info h3 {
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .album-info p {
            color: var(--text-muted);
            margin-bottom: 1.5rem;
            font-weight: 300;
        }

        /* Footer / Ledger */
        footer {
            border-top: 1px solid var(--border-color);
            padding: 3rem 0;
            margin-top: 4rem;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            max-width: 100%;
            align-items: center;
            flex-wrap: wrap;
            gap: 1.5rem;
        }

        .footer-content p {
            font-size: 0.85rem;
            max-width: 100%;
            color: var(--text-muted);
        }

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

        .footer-links a {
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--text-muted);
        }

        .footer-links a:hover {
            color: var(--text-main);
        }

        /* Responsive Design & Mobile Menu */
        @media (max-width: 900px) {
            .hero, .album-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            .hero-text h1 { font-size: 3.5rem; }
            .hero-image-wrapper { height: 400px; }
            
            /* Hamburger Logic */
            .hamburger { display: block; }
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--bg-color);
                padding: 2rem 0;
                text-align: center;
                border-bottom: 1px solid var(--border-color);
                box-shadow: 0 10px 15px rgba(0,0,0,0.03);
            }
            .nav-links.active {
                display: flex;
            }
            .footer {
                width: 100%;
                max-width: 100%;
                margin: 0;
                 box-sizing: border-box;
            }

            .footer-content {
                flex-direction: column;
                text-align: center;
                justify-content: center;
            }
        }
