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

        :root {
            --bg-color: #2c5530;
            --text-color: #f1f0ea;
            --text-secondary: #c9c7bd;
            --accent: #e8dcc4;
            --link-color: #f1f0ea;
        }

        body {
            font-family: 'Crimson Pro', serif;
            background-color: var(--bg-color);
            color: var(--text-color);
            line-height: 1.6;
            transition: background-color 0.8s cubic-bezier(0.4, 0, 0.2, 1);
            -webkit-font-smoothing: antialiased;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 30px 60px;
        }

        /* Header */
        header {
            margin-bottom: 20px;
            padding-bottom: 50px;
        }

        .name-container {
            margin-bottom: 5px;
        }

        h1 {
            font-family: 'Fraunces', serif;
            font-size: clamp(3.5rem, 10vw, 7rem);
            font-weight: 600;
            letter-spacing: -0.03em;
            line-height: 0.95;
            display: block;
            margin: 0;
            cursor: pointer;
            font-variation-settings: 'opsz' 144;
        }


        .tagline {
            font-size: 1.15rem;
            font-weight: 300;
            color: var(--text-secondary);
            margin-top: 0px;
            font-style: italic;
        }

        nav {
            margin-top: 30px;
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
            font-family: 'Crimson Pro', monospace;
            font-size: 0.85rem;
        }

        nav a {
            color: var(--link-color);
            text-decoration: none;
            position: relative;
            transition: color 0.2s ease;
        }

        nav a:hover {
            color: var(--accent);
        }
        
        nav a.active {
    color: #f0cb95;
}

        /* Sections */
        section {
            margin-bottom: 80px;
        }

        h2 {
            font-family: 'Fraunces', serif;
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 35px;
            letter-spacing: -0.02em;
            font-variation-settings: 'opsz' 144;
        }

        h3 {
            font-family: 'Fraunces', serif;
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 12px;
            line-height: 1.3;
        }

        /* About section */
        .about-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 60px;
            align-items: start;
        }

        .about-text {
            font-size: 1.15rem;
            line-height: 1.75;
        }

        .about-text p {
            margin-bottom: 22px;
        }

        .credentials {
            margin-top: 40px;
            padding-top: 30px;
            border-top: 1px solid rgba(241, 240, 234, 0.15);
        }

        .credentials h3 {
            font-family: 'Crimson Pro', monospace;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            opacity: 0.6;
            font-weight: 400;
            margin-bottom: 20px;
        }

        .credentials ul {
            list-style: none;
        }

        .credentials li {
            margin-bottom: 12px;
            font-size: 1rem;
            line-height: 1.6;
        }

.photo-container img {
    width: 100%;
    max-width: 280px;
    height: auto;
    display: block;
}

        .photo-placeholder {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(241, 240, 234, 0.05), rgba(241, 240, 234, 0.02));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.85rem;
            opacity: 0.5;
        }

        /* Justified Gallery Layout */
        .gallery {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .gallery-row {
            display: flex;
            gap: 0;
            width: 100%;
        }

        .gallery-item {
            flex-grow: 1;
            cursor: pointer;
            transition: opacity 0.3s ease;
            overflow: hidden;
            position: relative;
        }

        .gallery-item:hover {
            opacity: 0.85;
        }

        .gallery-item img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .gallery-placeholder {
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.85rem;
            opacity: 0.4;
            background: rgba(241, 240, 234, 0.03);
            width: 100%;
            height: 100%;
        }

        /* Objects section */
        .objects-grid {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .objects-row {
            display: flex;
            gap: 0;
            width: 100%;
        }

        .object-item {
            flex-grow: 1;
            cursor: pointer;
            transition: transform 0.3s ease;
            overflow: hidden;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            background: transparent;
        }

        .object-item:hover {
            transform: scale(1.05);
        }

        .object-item img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .object-placeholder {
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.85rem;
            opacity: 0.4;
            background: rgba(241, 240, 234, 0.03);
            width: 100%;
            height: 100%;
        }

        /* Tooltip */
        .tooltip-word {
            position: relative;
            border-bottom: 1px dotted var(--accent);
            cursor: help;
        }

        .tooltip {
            position: absolute;
            bottom: 100%;
            left: 50%;
            transform: translateX(-50%) translateY(-8px);
            background: rgba(0, 0, 0, 0.92);
            color: var(--text-color);
            padding: 8px 14px;
            border-radius: 4px;
            font-size: 0.8rem;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.2s ease, transform 0.2s ease;
            z-index: 1000;
            font-family: 'Crimson Pro', monospace;
        }

        .tooltip-word:hover .tooltip {
            opacity: 1;
            transform: translateX(-50%) translateY(-4px);
        }

        /* Miscellaneous */
        .misc-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 30px;
        }

        .misc-item {
            padding: 0;
        }

        .misc-item h3 {
            font-size: 1.1rem;
            margin-bottom: 16px;
            font-weight: 600;
        }

        .misc-item p {
            font-size: 1rem;
            line-height: 1.7;
        }

        .misc-item a {
            color: var(--accent);
            text-decoration: none;
            transition: opacity 0.2s ease;
        }

        .misc-item a:hover {
            opacity: 0.7;
        }

        /* Lightbox */
        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            z-index: 9999;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }

        .lightbox.active {
            display: flex;
        }

        .lightbox img {
            max-width: 90%;
            max-height: 90vh;
            object-fit: contain;
        }

        /* Footer */
        footer {
            text-align: left;
            padding: 60px 0 40px;
            color: rgba(245,242,235,0.42);
            font-size: 0.85rem;
            opacity: 0.5;
            font-family: 'Crimson Pro', monospace;
        }

    footer a { color: #f1f0ea; text-decoration: none; }
    footer a:hover { color: var(--cream): #f1f0ea; }


        /* Mobile */
        @media (max-width: 900px) {
            .container {
                padding: 30px 20px 50px;
            }

            h1 {
                font-size: 3rem;
            }

            h2 {
                font-size: 2.2rem;
            }

            .about-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .photo-container {
                position: static;
                width: 100%;
            }

            .photo-container img {
                max-width: 300px;
            }

        }

        @media (max-width: 600px) {
            h1 {
                font-size: 2.5rem;
            }

            .tagline {
                font-size: 1rem;
            }

            .about-text {
                font-size: 1.05rem;
            }

            nav {
                gap: 16px;
            }
        }
    </style>