        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --forest-green: #2e543b;
            --moss-green: #2e543b;
            --sage: #8b9d83;
            --cream: #f4f1e8;
            --bark-brown: #5c4033;
            --mist: #e8ebe4;
            --deep-shadow: #1a2f0f;
            --autumn-rust: #a0522d;
        }

        body {
            font-family: 'Lato', sans-serif;
            line-height: 1.7;
            color: #333;
            background-color: var(--cream);
        }

        h1, h2, h3, h4 {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 600;
            color: var(--forest-green);
        }

        /* Header */
        header {
            background-color: var(--forest-green);
            padding: 1rem 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        nav {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
        }

        .logo {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--cream);
            text-decoration: none;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            color: var(--cream);
            text-decoration: none;
            transition: color 0.3s;
            font-size: 0.95rem;
        }

        .nav-links a:hover {
            color: var(--sage);
        }

        /* Hero */
        .hero {
            background: linear-gradient(rgba(29, 48, 15, 0.75), rgba(29, 48, 15, 0.75)),
                        url('/images/forest1920x600.webp') center/cover;
            min-height: 50vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--cream);
            padding: 2rem;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            color: var(--cream);
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .hero-content p {
            font-size: 1.2rem;
            color: var(--sage);
            max-width: 700px;
            margin: 0 auto;
        }

        /* Filter Section */
        .filter-section {
            background: white;
            padding: 2rem;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            margin: -60px auto 3rem;
            max-width: 1200px;
            border-radius: 10px;
            position: relative;
        }

        .filter-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
        }

        .filter-btn {
            padding: 0.7rem 1.5rem;
            border: 2px solid var(--sage);
            background: white;
            color: var(--forest-green);
            border-radius: 999px;
            cursor: pointer;
            font-size: 0.95rem;
            font-weight: 600;
            transition: all 0.3s;
            font-family: 'Lato', sans-serif;
        }

        .filter-btn:hover {
            border-color: var(--moss-green);
            background: var(--mist);
        }

        .filter-btn.active {
            background: var(--forest-green);
            color: var(--cream);
            border-color: var(--forest-green);
        }

        /* Main Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem 4rem;
        }

        /* Category Section */
        .category-section {
            margin-bottom: 4rem;
        }

        .category-section.hidden {
            display: none;
        }

        .category-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 3px solid var(--moss-green);
        }

        .category-icon {
            font-size: 2rem;
            color: var(--moss-green);
        }

        .category-header h2 {
            font-size: 2.5rem;
            margin: 0;
        }

        .category-description {
            color: var(--bark-brown);
            font-size: 1.05rem;
            margin-bottom: 2rem;
        }

        /* Artist Grid */
        .artist-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 2rem;
        }

        .artist-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            cursor: pointer;
        }

        .artist-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

        .artist-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
            background: var(--mist);
        }

        .artist-info {
            padding: 1.5rem;
        }

        .artist-name {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            color: var(--forest-green);
        }

        .artist-specialty {
            color: var(--moss-green);
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 0.75rem;
        }

        .artist-description {
            color: var(--bark-brown);
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .artist-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--moss-green);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: gap 0.3s;
        }

        .artist-link:hover {
            gap: 0.75rem;
        }

        /* Footer */
        footer {
            background-color: var(--deep-shadow);
            color: var(--cream);
            padding: 3rem 2rem 1.5rem;
            margin-top: 4rem;
        }

        .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 h4 {
            color: var(--cream);
            margin-bottom: 1rem;
        }

        .footer-section a {
            color: var(--sage);
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
            transition: color 0.3s;
        }

        .footer-section a:hover {
            color: var(--cream);
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-links a {
            color: var(--cream);
            font-size: 1.5rem;
            transition: color 0.3s;
        }

        .social-links a:hover {
            color: var(--sage);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid var(--moss-green);
            font-size: 0.9rem;
            color: var(--sage);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hero-content h1 {
                font-size: 2.5rem;
            }

            .filter-section {
                margin: -40px 1rem 2rem;
                padding: 1.5rem;
            }

            .container {
                padding: 0 1rem 3rem;
            }

            .artist-grid {
                grid-template-columns: 1fr;
            }

            .category-header h2 {
                font-size: 2rem;
            }
        }