
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        /* Respect user motion preferences */
        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
                scroll-behavior: auto !important;
            }
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: #1a1a1a;
            background: #ffffff;
            min-height: 100vh;
            position: relative;
        }

        /* Subtle gradient overlay with candy colors (no pink!!) */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, 
                rgba(255, 200, 0, 0.02) 0%,
                rgba(255, 150, 0, 0.02) 20%,
                rgba(128, 255, 0, 0.02) 40%,
                rgba(0, 255, 200, 0.02) 60%,
                rgba(100, 150, 255, 0.02) 80%,
                rgba(200, 100, 255, 0.02) 100%
            );
            pointer-events: none;
            z-index: 0;
        }
        
        /* Skip to main content link for accessibility */
        .skip-link {
            position: absolute;
            top: -40px;
            left: 0;
            background: #000;
            color: #fff;
            padding: 8px;
            text-decoration: none;
            z-index: 100;
        }
        
        .skip-link:focus {
            top: 0;
        }

        header {
            background: #ffffff;
            padding: 3rem 2rem 2rem 2rem;
            text-align: center;
            border-bottom: 6px solid transparent;
            border-image: linear-gradient(90deg, 
                #ffc800 0%,
                #ff9600 16.67%,
                #80ff00 33.33%,
                #00ffc8 50%,
                #6496ff 66.67%,
                #c864ff 83.33%,
                #ffc800 100%
            ) 1;
            position: relative;
            z-index: 1;
        }

        .title {
            font-family: 'Inter', sans-serif;
            font-size: clamp(3rem, 9vw, 9rem);
            line-height: 0.9;
            letter-spacing: -0.04em;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, 
                #ffc800 0%,
                #ff9600 16.67%,
                #80ff00 33.33%,
                #00ffc8 50%,
                #6496ff 66.67%,
                #c864ff 83.33%,
                #ffc800 100%
            );
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 900;
            text-transform: uppercase;
        }

        header p {
            font-family: 'Inter', sans-serif;
            font-size: clamp(1rem, 2.5vw, 2rem);
            color: #666666;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            font-weight: 700;
        }

        main {
            max-width: 1600px;
            margin: 0 auto;
            padding: 0rem 2rem;
            position: relative;
            z-index: 1;
        }

        #gallery-section {
            margin: 1rem 0;
        }

        #gallery-section h3 {
            font-family: 'Inter', sans-serif;
            font-size: clamp(3rem, 8vw, 7rem);
            text-align: center;
            background: linear-gradient(135deg, 
                #ffc800 0%,
                #ff9600 16.67%,
                #80ff00 33.33%,
                #00ffc8 50%,
                #6496ff 66.67%,
                #c864ff 83.33%,
                #ffc800 100%
            );
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 900;
            letter-spacing: -0.03em;
            text-transform: uppercase;
        }

        .filter-buttons {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin: 2rem 0;
            flex-wrap: wrap;
        }

        .filter-btn {
            padding: 0.75rem 1.5rem;
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            text-decoration: none;
            color: #1a1a1a;
            background: #ffffff;
            border: 3px solid #f0f0f0;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: capitalize;
            letter-spacing: 0.05em;
            min-height: 44px;
            min-width: 44px;
        }
        
        .filter-btn:focus {
            outline: 3px solid #6496ff;
            outline-offset: 2px;
        }

        .filter-btn:hover {
            border-color: #6496ff;
            box-shadow: 0 3px 10px rgba(100, 150, 255, 0.2);
            transform: translateY(-2px);
        }

        .filter-btn.active {
            border-color: transparent;
            border-image: linear-gradient(135deg, 
                #ffc800,
                #80ff00,
                #00ffc8
            ) 1;
            background: linear-gradient(135deg, 
                rgba(255, 200, 0, 0.1),
                rgba(128, 255, 0, 0.1)
            );
            font-weight: 900;
        }

        .masonry-grid {
            column-count: 4;
            column-gap: 2rem;
            margin-top: 1rem;
        }

        .masonry-item {
            display: inline-block;
            width: 100%;
            margin-bottom: 2rem;
            break-inside: avoid;
            position: relative;
            background: #ffffff;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* Filtered-out state: hide items completely - must override all gallery-specific display rules */
        .masonry-item.filtered-out,
        #tall-gallery .masonry-item.filtered-out,
        #wide-gallery .masonry-item.filtered-out,
        #small-gallery .masonry-item.filtered-out {
            display: none !important;
        }
        
        /* Tall images section - displayed side by side */
        #tall-section {
            margin-top: 0;
            padding-top: 0;
        }
        
        #tall-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            column-gap: 2rem;
            margin-top: 2rem;
        }
        
        #tall-gallery .masonry-item {
            display: block;
            width: auto;
            max-width: 100%;
        }
        
        #tall-gallery .masonry-item img {
            width: auto;
            max-width: 100%;
        }
        
        /* Wide images section - full width display */
        #wide-section {
            margin-top: 2rem;
            padding-top: 0;
        }
        
        #wide-gallery {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            margin-top: 2rem;
        }
        
        #wide-gallery .masonry-item {
            display: block;
            width: 100%;
            max-width: 100%;
        }
        
        /* Small images section - displayed at natural size */
        #small-section {
            margin-top: 2rem;
            padding-top: 0;
        }
        
        #small-gallery {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            justify-content: center;
            margin-top: 2rem;
        }
        
        #small-gallery .masonry-item {
            display: block;
            width: auto;
            max-width: 100%;
        }
        
        #small-gallery .masonry-item img {
            width: auto;
            max-width: 100%;
        }
        
        @media (max-width: 900px) {
            #tall-gallery {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            }
        }
        
        @media (max-width: 600px) {
            #tall-gallery {
                grid-template-columns: 1fr 1fr;
            }
        }

        .masonry-item:hover figure {
            border-color: transparent;
            border-image: linear-gradient(135deg, 
                #ffc800,
                #80ff00,
                #00ffc8,
                #6496ff
            ) 1;
            box-shadow: 
                0 10px 40px rgba(255, 200, 0, 0.15),
                0 5px 20px rgba(100, 150, 255, 0.15);
        }
        
        .masonry-item:hover {
            transform: translateY(-4px);
        }

        .masonry-item img {
            width: 100%;
            height: auto;
            display: block;
            background-color: #f5f5f5; /* Placeholder color while loading */
            transition: all 0.3s ease;
        }
        
        /* Lazy loading fade-in effect */
        img[loading="lazy"] {
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        img[loading="lazy"].loaded {
            opacity: 1;
        }

        .masonry-item figure {
            margin: 0;
            padding: 0;
            overflow: hidden;
            border: 3px solid #f0f0f0;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            width: fit-content;
            max-width: 100%;
        }

        .masonry-item figure img {
            width: 100%;
            height: auto;
            display: block;
            transition: all 0.3s ease;
        }

        .masonry-item:hover img {
            filter: brightness(1.05) saturate(1.1);
        }

        .masonry-item:hover figure img {
            filter: brightness(1.05) saturate(1.1);
        }

        .masonry-item figcaption {
            padding: 1rem;
            font-size: 0.9rem;
            line-height: 1.4;
            color: #333333;
            font-weight: 400;
            background: rgba(255, 255, 255, 0.95);
            font-style: italic;
        }

        .callout-box {
            background: #ffffff;
            color: #1a1a1a;
            padding: 2rem;
            border: 4px solid transparent;
            border-image: linear-gradient(135deg, 
                #ffc800,
                #ff9600,
                #80ff00,
                #00ffc8,
                #6496ff,
                #c864ff
            ) 1;
            margin: 2rem 0;
            position: relative;
        }

        .callout-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, 
                rgba(255, 200, 0, 0.02),
                rgba(128, 255, 0, 0.02),
                rgba(0, 255, 200, 0.02),
                rgba(100, 150, 255, 0.02)
            );
            z-index: -1;
        }

        .callout-box h3 {
            font-family: 'Inter', sans-serif;
            font-size: clamp(2rem, 5vw, 4rem);
            font-weight: 900;
            background: linear-gradient(135deg, 
                #ffc800,
                #80ff00,
                #00ffc8
            );
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-transform: uppercase;
        }

        .callout-box p {
            font-size: clamp(1rem, 2vw, 1.3rem);
            line-height: 1;
            color: #333333;
            font-weight: 400;
        }
        
         .callout-box p.smaller {
            font-size: clamp(.9rem, 1.5vw, 1rem);
            line-height: 1;
            color: #333333;
            font-weight: 400;
        }

        .callout-box a {
            color: #00a896;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s ease;
            border-bottom: 3px solid rgba(0, 168, 150, 0.3);
        }

        .callout-box a:hover {
            color: #80ff00;
            border-bottom-color: rgba(128, 255, 0, 0.5);
        }

        nav {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin: 4rem auto;
            padding: 0 2rem;
            max-width: 1600px;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }

        nav a {
            padding: 1rem 2.5rem;
            font-family: 'Inter', sans-serif;
            font-size: clamp(0.9rem, 2vw, 1.2rem);
            font-weight: 900;
            text-decoration: none;
            color: #1a1a1a;
            background: #ffffff;
            border: 3px solid transparent;
            border-image: linear-gradient(135deg, 
                #ffc800,
                #80ff00
            ) 1;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            min-height: 44px;
            display: inline-block;
        }
        
        nav a:focus {
            outline: 3px solid #6496ff;
            outline-offset: 2px;
        }

        nav a:hover {
            background: linear-gradient(135deg, 
                rgba(255, 200, 0, 0.1),
                rgba(128, 255, 0, 0.1)
            );
            box-shadow: 
                0 5px 20px rgba(255, 200, 0, 0.2),
                0 3px 10px rgba(128, 255, 0, 0.2);
            transform: translateY(-2px);
        }

        footer {
            text-align: center;
            padding: 3rem 2rem;
            color: #666666;
            background: #ffffff;
            margin-top: 4rem;
            border-top: 6px solid transparent;
            border-image: linear-gradient(90deg, 
                #ffc800 0%,
                #ff9600 16.67%,
                #80ff00 33.33%,
                #00ffc8 50%,
                #6496ff 66.67%,
                #c864ff 83.33%,
                #ffc800 100%
            ) 1;
            position: relative;
            z-index: 1;
            font-weight: 400;
        }

        footer a {
            color: #00a896;
            text-decoration: none;
            font-weight: 700;
            border-bottom: 3px solid rgba(0, 168, 150, 0.3);
            transition: all 0.3s ease;
        }

        footer a:hover {
            color: #80ff00;
            border-bottom-color: rgba(128, 255, 0, 0.5);
        }

        @media (max-width: 1200px) {
            .masonry-grid { column-count: 3; }
        }

        @media (max-width: 900px) {
            .masonry-grid { column-count: 2; }
            header { padding: 4rem 1.5rem 3rem; }
        }
        
        @media (max-width: 768px) {
            main {
                padding: 0 1rem;
            }
            #tall-gallery {
                grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            }
        }

        @media (max-width: 600px) {
            .masonry-grid { column-count: 1; }
            header { padding: 3rem 1rem 2rem; }
            .callout-box { padding: 2rem; }
            nav { gap: 1rem; }
        }
    