  :root {
            --forest: #1a2e1c;
            --moss: #2d4a2e;
            --mist: #f5f0e8;
            --gold: #c9a84c;
            --gold-light: #e8d5a3;
            --cream: #faf7f2;
            --bark: #7a6250;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }

        body {
            font-family: 'DM Sans', sans-serif;
            background: var(--cream);
            color: var(--forest);
            overflow-x: hidden;
        }

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

        /* ── NAVBAR ── */
        nav {
            position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
            padding: 22px 60px;
            display: flex; align-items: center; justify-content: space-between;
            background: rgba(26,46,28,0.97);
            backdrop-filter: blur(10px);
        }

        .nav-logo {
            font-family: 'Cormorant Garamond', serif; font-size: 1.7rem;
            color: white; letter-spacing: 3px; text-decoration: none; font-weight: 300;
        }
        .nav-logo span { color: var(--gold); }

        .nav-links { display: flex; gap: 32px; list-style: none; }
        .nav-links a {
            color: rgba(255,255,255,0.8); text-decoration: none; font-size: 13px;
            letter-spacing: 1.5px; text-transform: uppercase; font-weight: 500; transition: color 0.2s;
        }
        .nav-links a:hover { color: var(--gold); }
        .nav-book {
            background: var(--gold); color: var(--forest) !important;
            padding: 9px 24px; border-radius: 2px;
        }

        .nav-hamburger { display: none; background: none; border: none; color: white; font-size: 1.4rem; cursor: pointer; }

        /* Mobile menu */
        .mobile-menu {
            display: flex; flex-direction: column; align-items: flex-start;
            position: fixed; top: 0; right: 0; width: 280px; height: 100%;
            background: var(--forest); z-index: 1001;
            padding: 80px 40px 40px; gap: 24px;
            transform: translateX(100%);
            transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: -4px 0 30px rgba(0,0,0,0.3); overflow-y: auto;
        }
        .mobile-menu.open { transform: translateX(0); }
        .mobile-menu a { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; color: rgba(255,255,255,0.9); text-decoration: none; width: 100%; }
        .mobile-menu a:hover { color: var(--gold); }
        .mobile-close { position: absolute; top: 24px; right: 24px; background: none; border: none; color: white; font-size: 1.4rem; cursor: pointer; }
        .mobile-backdrop { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 1000; }
        .mobile-backdrop.open { display: block; }

        /* ── HERO BANNER ── */
        .page-hero {
            height: 50vh;
            min-height: 380px;
            position: relative;
            display: flex;
            align-items: flex-end;
            justify-content: center;
            padding-bottom: 60px;
            overflow: hidden;
        }

        .page-hero-bg {
            position: absolute; inset: 0;
            background:
                linear-gradient(to bottom, rgba(10,20,10,0.3) 0%, rgba(10,20,10,0.75) 100%),
                url('https://images.unsplash.com/photo-1540541338287-41700207dee6?w=1800') center/cover no-repeat;
            transform: scale(1.05);
            animation: gentleZoom 25s ease infinite alternate;
        }
        @keyframes gentleZoom {
            from { transform: scale(1.05); }
            to { transform: scale(1.12); }
        }

        .page-hero-content {
            position: relative; z-index: 2; text-align: center; color: white;
        }

        .breadcrumb-nav {
            display: flex; align-items: center; justify-content: center;
            gap: 8px; margin-bottom: 16px;
            font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
            color: rgba(255,255,255,0.6);
        }
        .breadcrumb-nav a { color: var(--gold); text-decoration: none; }
        .breadcrumb-nav a:hover { color: var(--gold-light); }

        .page-hero h1 {
            font-size: clamp(3rem, 7vw, 5.5rem);
            line-height: 1.05;
            margin-bottom: 12px;
        }
        .page-hero h1 em { font-style: italic; color: var(--gold-light); }

        .page-hero p {
            font-size: 1rem; color: rgba(255,255,255,0.7);
            letter-spacing: 1px; font-weight: 300;
        }

        /* ── FILTER BAR ── */
        .filter-section {
            background: var(--forest);
            padding: 0;
            position: sticky; top: 68px; z-index: 100;
        }

        .filter-inner {
            max-width: 1300px; margin: 0 auto;
            display: flex; align-items: center; gap: 0;
            overflow-x: auto; padding: 0 40px;
            scrollbar-width: none;
        }
        .filter-inner::-webkit-scrollbar { display: none; }

        .filter-btn {
            background: none; border: none; color: rgba(255,255,255,0.55);
            font-family: 'DM Sans', sans-serif; font-size: 11px;
            letter-spacing: 2px; text-transform: uppercase; font-weight: 500;
            padding: 18px 24px; cursor: pointer; white-space: nowrap;
            border-bottom: 2px solid transparent;
            transition: all 0.25s;
        }
        .filter-btn:hover { color: rgba(255,255,255,0.9); }
        .filter-btn.active {
            color: var(--gold);
            border-bottom-color: var(--gold);
        }

        .filter-count {
            background: rgba(201,168,76,0.2);
            color: var(--gold); font-size: 10px;
            padding: 2px 7px; border-radius: 10px;
            margin-left: 6px; font-weight: 600;
        }

        /* ── GALLERY CONTAINER ── */
        .gallery-section {
            padding: 60px 40px 100px;
            max-width: 1400px; margin: 0 auto;
        }

        /* Masonry layout using CSS columns */
        .masonry-grid {
            columns: 4;
            column-gap: 14px;
        }

        .masonry-item {
            break-inside: avoid;
            margin-bottom: 14px;
            position: relative;
            border-radius: 6px;
            overflow: hidden;
            cursor: pointer;
            display: block;
        }

        .masonry-item img {
            width: 100%; display: block;
            border-radius: 6px;
            transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.4s;
        }

        .masonry-item:hover img {
            transform: scale(1.04);
            filter: brightness(0.85);
        }

        .masonry-overlay {
            position: absolute; inset: 0;
            background: linear-gradient(to top, rgba(10,20,10,0.85) 0%, transparent 55%);
            opacity: 0; transition: opacity 0.35s;
            border-radius: 6px;
            display: flex; flex-direction: column;
            justify-content: flex-end; padding: 20px;
        }
        .masonry-item:hover .masonry-overlay { opacity: 1; }

        .overlay-cat {
            font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
            color: var(--gold); font-weight: 600; margin-bottom: 6px;
        }
        .overlay-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.15rem; color: white; line-height: 1.3;
        }
        .overlay-zoom {
            position: absolute; top: 14px; right: 14px;
            width: 36px; height: 36px; border-radius: 50%;
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(6px);
            display: flex; align-items: center; justify-content: center;
            color: white; font-size: 15px;
            transform: scale(0); transition: transform 0.3s;
        }
        .masonry-item:hover .overlay-zoom { transform: scale(1); }

        /* ── Empty state ── */
        .empty-state {
            text-align: center; padding: 100px 20px; color: var(--bark);
        }
        .empty-state i { font-size: 3.5rem; display: block; margin-bottom: 20px; opacity: 0.4; }
        .empty-state h3 { font-size: 1.5rem; margin-bottom: 8px; }

        /* ── LIGHTBOX ── */
        .lightbox {
            position: fixed; inset: 0; z-index: 9999;
            background: rgba(5,12,6,0.96);
            display: flex; align-items: center; justify-content: center;
            opacity: 0; pointer-events: none;
            transition: opacity 0.3s;
        }
        .lightbox.open { opacity: 1; pointer-events: all; }

        .lightbox-inner {
            position: relative; max-width: 90vw; max-height: 88vh;
            display: flex; align-items: center; justify-content: center;
        }

        .lightbox-img {
            max-width: 90vw; max-height: 82vh;
            object-fit: contain; border-radius: 4px;
            box-shadow: 0 40px 100px rgba(0,0,0,0.7);
            transform: scale(0.95); transition: transform 0.3s;
        }
        .lightbox.open .lightbox-img { transform: scale(1); }

        .lightbox-close {
            position: fixed; top: 28px; right: 32px;
            background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
            color: white; width: 46px; height: 46px; border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            cursor: pointer; font-size: 18px; transition: all 0.2s;
            backdrop-filter: blur(6px);
        }
        .lightbox-close:hover { background: rgba(255,255,255,0.2); }

        .lightbox-nav {
            position: fixed; top: 50%; transform: translateY(-50%);
            background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
            color: white; width: 52px; height: 52px; border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            cursor: pointer; font-size: 20px; transition: all 0.2s;
            backdrop-filter: blur(6px);
        }
        .lightbox-nav:hover { background: rgba(201,168,76,0.3); border-color: var(--gold); }
        .lightbox-prev { left: 24px; }
        .lightbox-next { right: 24px; }

        .lightbox-caption {
            position: fixed; bottom: 32px; left: 50%; transform: translateX(-50%);
            text-align: center; color: rgba(255,255,255,0.7); font-size: 13px;
            letter-spacing: 1px; background: rgba(0,0,0,0.4);
            padding: 8px 20px; border-radius: 20px; backdrop-filter: blur(6px);
            white-space: nowrap; max-width: 80vw; overflow: hidden; text-overflow: ellipsis;
        }

        .lightbox-counter {
            position: fixed; top: 36px; left: 50%; transform: translateX(-50%);
            font-size: 12px; color: rgba(255,255,255,0.5); letter-spacing: 2px;
        }

        /* ── FOOTER STRIP ── */
        .gallery-footer-strip {
            background: var(--forest);
            color: rgba(255,255,255,0.6);
            text-align: center;
            padding: 50px 24px;
        }
        .gallery-footer-strip h3 {
            font-size: 2rem; color: white; margin-bottom: 12px;
        }
        .gallery-footer-strip p { font-size: 14px; margin-bottom: 28px; }

        .btn-gold {
            background: var(--gold); color: var(--forest);
            padding: 14px 36px; border: none; border-radius: 2px;
            font-family: 'DM Sans', sans-serif; font-size: 13px;
            letter-spacing: 1.5px; text-transform: uppercase; font-weight: 500;
            cursor: pointer; text-decoration: none; transition: all 0.3s; display: inline-block;
        }
        .btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }

        /* ── STATS BAR ── */
        .stats-bar {
            display: flex; align-items: center; justify-content: center;
            gap: 60px; padding: 36px 40px;
            background: white;
            border-bottom: 1px solid rgba(26,46,28,0.07);
        }
        .stat-item { text-align: center; }
        .stat-item .num {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.2rem; color: var(--forest); display: block;
        }
        .stat-item .lbl {
            font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
            color: var(--bark); display: block; margin-top: 2px;
        }
        .stat-divider { width: 1px; height: 40px; background: rgba(26,46,28,0.1); }

        /* ── ANIMATION ── */
        .fade-in {
            opacity: 0; transform: translateY(20px);
            animation: fadeIn 0.5s ease forwards;
        }
        @keyframes fadeIn {
            to { opacity: 1; transform: translateY(0); }
        }

        /* ── RESPONSIVE ── */
        @media (max-width: 1200px) { .masonry-grid { columns: 3; } }
        @media (max-width: 900px) {
            nav { padding: 16px 20px; }
            .nav-links { display: none; }
            .nav-hamburger { display: block; }
            .masonry-grid { columns: 2; }
            .filter-inner { padding: 0 16px; }
            .gallery-section { padding: 40px 16px 80px; }
            .stats-bar { gap: 24px; padding: 24px 16px; flex-wrap: wrap; }
            .stat-divider { display: none; }
        }
        @media (max-width: 500px) {
            .masonry-grid { columns: 1; }
            .lightbox-nav { display: none; }
        }