       * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --moss-green: #2e543b;
            --bark-brown: #6b4423;
            --misty-grey: #b8bdb5;
            --autumn-gold: #d4a574;
            --light-cream: #f5f3ed;
            --dark-forest: #3a4a35;
        }

        body {
            font-family: 'Georgia', serif;
            line-height: 1.7;
            color: var(--dark-forest);
            background-color: var(--light-cream);
        }

        /* Header */
        header {
            background-color: var(--moss-green);
            color: white;
            padding: 1rem 2rem;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            text-decoration: none;
            color: white;
        }

        .logo svg {
            flex-shrink: 0;
        }

        .back-link {
            color: white;
            font-size: 0.95rem;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.4rem 0.8rem;
            border-radius: 999px;
            border: 1px solid rgba(255,255,255,0.4);
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        .back-link svg {
            width: 16px;
            height: 16px;
            fill: white;
        }

        .back-link:hover {
            background-color: white;
            color: var(--moss-green);
        }

        .back-link:hover svg {
            fill: var(--moss-green);
        }

        /* Quick Action Menu */
        .quick-menu {
            position: fixed;
            right: 2rem;
            top: 50%;
            transform: translateY(-50%);
            z-index: 999;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .quick-menu-item {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: flex-end;
        }

        .quick-menu-icon {
            width: 50px;
            height: 50px;
            background-color: var(--moss-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
            text-decoration: none;
        }

        .quick-menu-icon:hover {
            background-color: var(--bark-brown);
            transform: scale(1.1);
        }

        .quick-menu-icon svg {
            width: 24px;
            height: 24px;
            fill: white;
        }

        .quick-menu-label {
            position: absolute;
            right: 60px;
            background-color: var(--dark-forest);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
            font-size: 0.9rem;
        }

        .quick-menu-item:hover .quick-menu-label {
            opacity: 1;
        }

        /* Hero / Banner */
        .hero {
            margin-top: 70px;
            background: linear-gradient(
                        rgba(58, 74, 53, 0.7),
                        rgba(58, 74, 53, 0.7)
                      ),
                      url("james1820x500.png");
            background-size: cover;
            background-position: center;
            color: white;
            padding: 4rem 2rem;
        }

        .hero-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: minmax(0, 2fr) minmax(0, 1.2fr);
            gap: 3rem;
            align-items: center;
        }

        .hero-text h1 {
            font-size: 2.8rem;
            margin-bottom: 0.5rem;
        }

        .hero-text h2 {
            font-size: 1.4rem;
            font-style: italic;
            opacity: 0.9;
            margin-bottom: 1.5rem;
        }

        .hero-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            font-size: 0.95rem;
            opacity: 0.95;
        }

        .meta-pill {
            padding: 0.35rem 0.9rem;
            border-radius: 999px;
            border: 1px solid rgba(255,255,255,0.6);
        }

        .profile-photo-wrapper {
            background-color: rgba(0,0,0,0.2);
            padding: 0.8rem;
            border-radius: 14px;
        }

        .profile-photo {
            width: 100%;
            max-height: 320px;
            object-fit: cover;
            border-radius: 10px;
            display: block;
        }

        .photo-caption {
            margin-top: 0.6rem;
            font-size: 0.9rem;
            opacity: 0.9;
        }

        /* Main layout */
        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 3rem 2rem 4rem;
            display: grid;
            grid-template-columns: minmax(0, 2.2fr) minmax(0, 1.2fr);
            gap: 2.5rem;
        }

        /* Sections */
        h3.section-title {
            font-size: 1.5rem;
            color: var(--bark-brown);
            margin-bottom: 1rem;
            position: relative;
        }

        h3.section-title::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -0.4rem;
            width: 60px;
            height: 3px;
            background: var(--autumn-gold);
            border-radius: 999px;
        }

        .bio-section p {
            margin-bottom: 1rem;
            font-size: 1rem;
        }

        .quote-block {
            margin: 1.5rem 0;
            padding: 1rem 1.2rem 1.1rem;
            border-left: 4px solid var(--autumn-gold);
            background-color: rgba(212,165,116,0.08);
            font-style: italic;
        }

        .quote-block span {
            display: block;
            margin-top: 0.6rem;
            font-style: normal;
            font-size: 0.9rem;
            color: var(--bark-brown);
        }

        /* Featured works */
        .works-grid {
            margin-top: 1.5rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 1.5rem;
        }

        .work-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 3px 12px rgba(0,0,0,0.1);
            display: flex;
            flex-direction: column;
        }

        .work-image {
            width: 100%;
            height: 170px;
            object-fit: cover;
            display: block;
        }

        .work-body {
            padding: 0.9rem 1rem 1.1rem;
        }

        .work-title {
            font-weight: bold;
            font-size: 1rem;
            color: var(--bark-brown);
            margin-bottom: 0.3rem;
        }

        .work-meta {
            font-size: 0.9rem;
            color: var(--moss-green);
            margin-bottom: 0.4rem;
        }

        .work-desc {
            font-size: 0.9rem;
        }

        /* Sidebar */
        .sidebar-card {
            background: white;
            border-radius: 10px;
            padding: 1.5rem;
            box-shadow: 0 3px 12px rgba(0,0,0,0.08);
            margin-bottom: 1.8rem;
        }

        .sidebar-card h4 {
            font-size: 1.1rem;
            color: var(--bark-brown);
            margin-bottom: 0.7rem;
        }

        .info-list {
            list-style: none;
            font-size: 0.95rem;
        }

        .info-list li {
            margin-bottom: 0.5rem;
        }

        .info-label {
            font-weight: bold;
        }

        .tag-list {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-top: 0.4rem;
        }

        .tag {
            font-size: 0.8rem;
            padding: 0.25rem 0.7rem;
            border-radius: 999px;
            background-color: var(--light-cream);
            border: 1px solid var(--misty-grey);
        }

        /* CTA Buttons */
        .btn {
            display: inline-block;
            padding: 0.8rem 1.6rem;
            background-color: var(--autumn-gold);
            color: var(--dark-forest);
            text-decoration: none;
            border-radius: 999px;
            font-weight: bold;
            transition: all 0.3s ease;
            font-size: 0.95rem;
            border: none;
            cursor: pointer;
        }

        .btn:hover {
            background-color: var(--bark-brown);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.25);
        }

        .btn-secondary {
            background-color: transparent;
            border: 1px solid var(--autumn-gold);
            color: var(--bark-brown);
        }

        .btn-secondary:hover {
            background-color: var(--autumn-gold);
            color: var(--dark-forest);
        }

        .btn-row {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            margin-top: 1.4rem;
        }

        /* Footer */
        footer {
            background-color: var(--dark-forest);
            color: white;
            padding: 3rem 2rem 1rem;
            margin-top: 1rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            color: var(--autumn-gold);
            margin-bottom: 1rem;
        }

        .social-icons {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            background-color: var(--moss-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background-color 0.3s ease;
            text-decoration: none;
        }

        .social-icon:hover {
            background-color: var(--autumn-gold);
        }

        .social-icon svg {
            width: 20px;
            height: 20px;
            fill: white;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid var(--moss-green);
            opacity: 0.8;
            font-size: 0.9rem;
        }

        /* Responsive */
        @media (max-width: 900px) {
            .hero-inner {
                grid-template-columns: minmax(0, 1fr);
            }

            main {
                grid-template-columns: minmax(0, 1fr);
                padding: 2.5rem 1.4rem 3.5rem;
            }

            .hero {
                padding: 3rem 1.4rem;
            }

            .hero-text h1 {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 480px) {
            header {
                padding: 0.8rem 1rem;
            }
            .logo {
                font-size: 1.2rem;
            }
            .quick-menu {
                right: 1rem;
            }
            .quick-menu-icon {
                width: 45px;
                height: 45px;
            }
        }