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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'DM Sans', sans-serif;
            line-height: 1.7;
            color: #1a1a1a;
            background: #fafafa;
            min-height: 100vh;
        }

        header {
            background: #fff;
            padding: 1rem 2rem 1.5rem;
            border-bottom: 1px solid #e0e0e0;
        }

        .home-link {
            display: inline-block;
            font-family: 'IBM Plex Mono', monospace;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: #666;
            text-decoration: none;
            margin-bottom: 0.75rem;
            transition: color 0.2s;
        }

        .home-link:hover {
            color: #00D9FF;
        }

        .home-link:focus {
            outline: 3px solid #00D9FF;
            outline-offset: 2px;
        }

        .site-title {
            font-family: 'DM Sans', sans-serif;
            font-size: clamp(3rem, 10vw, 8rem);
            font-weight: 700;
            line-height: 1;
            color: #1a1a1a;
            text-transform: uppercase;
            letter-spacing: -0.04em;
            margin-bottom: 0.5rem;
        }

        .site-subtitle {
            font-family: 'IBM Plex Mono', monospace;
            font-size: clamp(1rem, 2vw, 2rem);
            color: #00D9FF;
            font-weight: 400;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-top: 2rem;
        }
        
        .puns {
            display: inline-block;
            background: #FF6B6B;
            color: #fff;
            padding: 0.2rem 0.6rem;
            transform: rotate(-3deg);
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            border-radius: 3px;
            box-shadow: 2px 2px 0 rgba(0,0,0,0.1);
        }

        .puns:hover {
            transform: rotate(-1deg) scale(1.05);
            box-shadow: 3px 3px 0 rgba(0,0,0,0.15);
        }

        .puns-link {
            text-decoration: none;
            display: inline-block;
            position: relative;
        }

        /* Sun rays above the puns button only */
        .puns-link::before {
            content: '';
            position: absolute;
            left: 50%;
            bottom: 100%;
            transform: translateX(-50%) translateY(50%);
            width: 90px;
            height: 90px;
            background: conic-gradient(
                rgba(255, 220, 0, 0.60) 0deg 14deg,
                transparent 14deg 30deg,
                rgba(255, 220, 0, 0.60) 30deg 44deg,
                transparent 44deg 60deg,
                rgba(255, 220, 0, 0.60) 60deg 74deg,
                transparent 74deg 90deg,
                rgba(255, 220, 0, 0.60) 90deg 104deg,
                transparent 104deg 120deg,
                rgba(255, 220, 0, 0.60) 120deg 134deg,
                transparent 134deg 150deg,
                rgba(255, 220, 0, 0.60) 150deg 164deg,
                transparent 164deg 180deg,
                rgba(255, 220, 0, 0.60) 180deg 194deg,
                transparent 194deg 210deg,
                rgba(255, 220, 0, 0.60) 210deg 224deg,
                transparent 224deg 240deg,
                rgba(255, 220, 0, 0.60) 240deg 254deg,
                transparent 254deg 270deg,
                rgba(255, 220, 0, 0.60) 270deg 284deg,
                transparent 284deg 300deg,
                rgba(255, 220, 0, 0.60) 300deg 314deg,
                transparent 314deg 330deg,
                rgba(255, 220, 0, 0.60) 330deg 344deg,
                transparent 344deg 360deg
            );
            border-radius: 50%;
            clip-path: inset(0 0 50% 0);
            z-index: 0;
            pointer-events: none;
        }

        .puns-link > .puns {
            position: relative;
            z-index: 1;
        }

        /* Puns Section Masonry Grid */
        .puns-masonry-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
            margin-top: 2rem;
        }

        .puns-masonry-item {
            background: #fff;
            border: 1px solid #e0e0e0;
            overflow: hidden;
            border-radius: 4px;
        }

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

        .puns-masonry-item:hover img {
            transform: scale(1.03);
        }

        /* Vertical caption text along the right edge of the header */
        .header-vertical-text {
            position: absolute;
            right: 0.75rem;
            top: 0;
            bottom: 0;
            writing-mode: vertical-rl;
            transform: rotate(180deg);
            font-family: 'IBM Plex Mono', monospace;
            font-size: 0.6rem;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: #aaa;
            display: flex;
            justify-content: center;
            white-space: nowrap;
            user-select: none;
        }


        .hero-gallery {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1.5rem 2rem;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1rem;
        }

        /* Link above the first gallery column (project introduction CTA) */
        .pre-gallery-cta {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1.5rem 2rem 0;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1rem;
        }

        .pre-gallery-cta .collection-button {
            grid-column: 1;
        }

        /* Intro text box to the right of the puns CTA button */
        .pre-gallery-intro-text {
            grid-column: 2 / -1;
            display: block;
            margin: 0;
            font-size: .8em;
        }

        /* Column containers to keep images and buttons aligned */
        .gallery-column {
            display: grid;
            grid-template-rows: auto repeat(3, 250px) 1fr;
            gap: 1rem;
            position: relative;
        }

        /* Light gradient stripe behind each column — unique hue per column */
        .gallery-column::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80%;
            height: 100%;
            border-radius: 8px;
            z-index: 0;
        }

        /* Column 1: light blue gradient */
        .gallery-column:nth-child(1)::before {
            background: linear-gradient(180deg,
                rgba(173, 216, 230, 0.45) 0%,
                rgba(173, 216, 230, 0.25) 30%,
                rgba(173, 216, 230, 0.18) 70%,
                rgba(173, 216, 230, 0.38) 100%);
        }

        /* Column 2: light teal gradient */
        .gallery-column:nth-child(2)::before {
            background: linear-gradient(180deg,
                rgba(100, 200, 190, 0.40) 0%,
                rgba(100, 200, 190, 0.20) 30%,
                rgba(100, 200, 190, 0.12) 70%,
                rgba(100, 200, 190, 0.35) 100%);
        }

        /* Column 3: light steel blue gradient */
        .gallery-column:nth-child(3)::before {
            background: linear-gradient(180deg,
                rgba(176, 196, 222, 0.50) 0%,
                rgba(176, 196, 222, 0.24) 30%,
                rgba(176, 196, 222, 0.14) 70%,
                rgba(176, 196, 222, 0.38) 100%);
        }

        /* Column 4: light violet-blue gradient */
        .gallery-column:nth-child(4)::before {
            background: linear-gradient(180deg,
                rgba(147, 130, 230, 0.40) 0%,
                rgba(147, 130, 230, 0.20) 30%,
                rgba(147, 130, 230, 0.12) 70%,
                rgba(147, 130, 230, 0.35) 100%);
        }

        /* Column 5 (future): light violet gradient */
        .gallery-column:nth-child(5)::before {
            background: linear-gradient(180deg,
                rgba(210, 155, 230, 0.40) 0%,
                rgba(210, 155, 230, 0.18) 30%,
                rgba(210, 155, 230, 0.06) 70%,
                rgba(210, 155, 230, 0.05) 100%);
        }

        .masonry-item,
        .collection-button {
            position: relative;
            z-index: 1;
        }

        .masonry-item {
            background: #fff;
            border: 1px solid #e0e0e0;
            overflow: hidden;
            position: relative;
        }

        .masonry-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            background-color: #f5f5f5; /* Placeholder color while loading */
            transition: transform 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:hover img {
            transform: scale(1.05);
        }

        /* Small caption below last masonry item in each gallery column */
        .masonry-caption {
            display: flex;
            justify-content: center;
            align-items: flex-end;
            align-self: end;
            padding: 0.25rem 0.5rem;
            position: relative;
            z-index: 1;
        }

        .masonry-caption a {
            font-family: 'IBM Plex Mono', monospace;
            font-size: 0.9rem;
            color: #1a1a1a;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            text-align: center;
            justify-content: center;
            padding: 0.4rem 1.2rem;
            border-radius: 50px;
            background: linear-gradient(135deg,
                rgba(90, 150, 90, 0.40) 0%,
                rgba(176, 143, 230, 0.40) 100%);
            border: 1px solid rgba(130, 110, 180, 0.25);
            box-shadow: 0 2px 8px rgba(100, 100, 180, 0.12);
        }

        .masonry-caption a:hover {
            background: linear-gradient(135deg,
                rgba(90, 150, 90, 0.60) 0%,
                rgba(176, 143, 230, 0.60) 100%);
            color: #1a1a1a;
            transform: translateY(-1px);
            box-shadow: 0 4px 14px rgba(100, 100, 180, 0.22);
        }

        .masonry-caption a:focus {
            outline: 3px solid #00D9FF;
            outline-offset: 2px;
        }

        /* Collection Buttons */
        .collection-button {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1.5rem 1rem;
            background: #fff;
            border: 2px solid #1a1a1a;
            color: #1a1a1a;
            text-decoration: none;
            font-family: 'IBM Plex Mono', monospace;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            text-align: center;
            transition: all 0.3s ease;
            min-height: 44px;
            min-width: 44px;
        }

        .collection-button:hover {
            background: #00D9FF;
            border-color: #00D9FF;
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 217, 255, 0.3);
        }

        .collection-button:focus {
            outline: 3px solid #00D9FF;
            outline-offset: 2px;
        }
        
        #puns-project-button {
            background: #00D9FF;
            border: 2px solid #1a1a1a;
            color: #1a1a1a;
            font-size: 1.5em;
        }
        
        #puns-project-button:hover {
            background: #fff;
            border-color: #00D9FF;
            color: #000;
            box-shadow: 0 4px 12px rgba(0, 217, 255, 0.3);
        }
        
        #puns-project-button:focus {
            outline: 3px solid #00D9FF;
            outline-offset: 2px;
        }

        nav {
            background: #fff;
            padding: 2rem;
            border-bottom: 1px solid #e0e0e0;
            display: flex;
            gap: 3rem;
            justify-content: center;
        }

        nav a {
            color: #1a1a1a;
            text-decoration: none;
            font-family: 'IBM Plex Mono', monospace;
            font-size: 0.85rem;
            font-weight: 400;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            transition: color 0.2s;
            min-height: 44px;
            min-width: 44px;
        }

        nav a:hover {
            color: #00D9FF;
        }

        nav a:focus {
            outline: 3px solid #00D9FF;
            outline-offset: 2px;
        }

        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1.5rem 2rem;
        }

        .content-section {
            margin-bottom: 1.5rem;
        }

        /* Clean grid-based layout */
        .content-grid {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            gap: 2rem;
            margin-bottom: 1.5rem;
        }

        .section-header {
            grid-column: 1 / -1;
            font-family: 'DM Sans', sans-serif;
            font-size: clamp(2.5rem, 6vw, 5rem);
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: -0.03em;
        }

        .section-header-alt {
            grid-column: 1 / -1;
            font-family: 'IBM Plex Mono', monospace;
            font-size: clamp(1.5rem, 4vw, 2.5rem);
            font-weight: 600;
            color: #007a8f;
            margin-bottom: 2rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }
        
        #intro-heading {
        margin-bottom: 0px !important;
        }

        /* "Coming soon" grayed-out non-clickable links */
        span.coming {
            opacity: 0.5;
            cursor: not-allowed;
        }
        span.coming a {
            color: inherit;
            pointer-events: none;
            cursor: not-allowed;
            text-decoration: none;
        }

        /* "More coming soon" inline notice badge */
        .more-soon {
            font-family: 'IBM Plex Mono', monospace;
            font-size: 0.9rem;
            color: #1a1a1a;
            font-style: italic;
            display: inline-block;
            padding: 1rem 1.2rem;
            border-radius: 4px;
            border: 3px dashed rgba(176, 143, 230, 0.40);
            box-shadow: 0 2px 8px rgba(100, 100, 180, 0.12);
            margin: 0 0 1rem 0;
        }

        /* Highlighted section — same gradient as .more-soon but as a full-width background */
        .highlighted-section {
            grid-column: 1 / -1;
            background: linear-gradient(135deg,
                rgba(90, 150, 90, 0.22) 0%,
                rgba(176, 143, 230, 0.22) 100%);
            border: 1px solid rgba(130, 110, 180, 0.30);
            border-radius: 6px;
            padding: 2rem 2.5rem;
            margin: 1rem 0;
        }

        .highlighted-section h3 {
            font-family: 'IBM Plex Mono', monospace;
            font-size: clamp(0.95rem, 1.6vw, 1.1rem);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: #1a1a1a;
            margin-bottom: 1rem;
        }

        .highlighted-section p {
            font-size: clamp(0.95rem, 1.6vw, 1.05rem);
            line-height: 1.85;
            color: #1a1a1a;
            margin-bottom: 0.75rem;
        }

        .highlighted-section p:last-child {
            margin-bottom: 0;
        }

        .highlighted-section ul, #intro ul {
            padding-left: 1.5rem;
            margin: 0.5rem 0 0.75rem;
        }

        .highlighted-section li, #intro li {
            font-size: clamp(0.95rem, 1.6vw, 1.05rem);
            line-height: 1.85;
            color: #1a1a1a;
            margin-bottom: 0.4rem;
        }

        .section-paragraph {
            grid-column: 1 / -1;
            font-size: clamp(1rem, 1.8vw, 1.1rem);
            line-height: 1.9;
            margin-bottom: 1rem;
            color: #333;
        }

        .section-paragraph.smaller-italic {
            font-size: clamp(0.85rem, 1.5vw, 0.95rem);
            font-style: italic;
            color: #555;
        }

        .section-paragraph.first-para {
            font-size: clamp(1.1rem, 2vw, 1.3rem);
            line-height: 1.8;
            color: #1a1a1a;
        }

        /* Drop cap with color background */
        .section-paragraph.first-para::first-letter {
            font-family: 'DM Sans', sans-serif;
            font-size: clamp(3rem, 6vw, 4rem);
            font-weight: 700;
            line-height: 1;
            float: left;
            margin: 0.1rem 0.3rem 0 0;
            color: #fff;
            background: #00D9FF;
            padding: 0.3rem 0.5rem;
            box-shadow: 0 2px 8px rgba(0, 217, 255, 0.3);
        }

        /* Minimal photo containers */
        .photo-highlight {
            grid-column: 1 / -1;
            margin: 1.5rem 0;
            background: #fff;
            padding: 1rem;
            border: 1px solid #e0e0e0;
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .photo-highlight img {
            width: calc(50% - 0.5rem);
            height: auto;
            display: block;
            object-fit: cover;
        }

        .photo-highlight .photo-caption {
            width: 100%;
        }

        .photo-caption {
            font-family: 'IBM Plex Mono', monospace;
            font-size: clamp(0.7rem, 1.2vw, 0.75rem);
            color: #666;
            margin-top: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.15em;
        }

        .photo-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin: 1.5rem 0;
        }

        /* Clean quote style */
        .pull-quote {
            grid-column: 3 / 11;
            font-family: 'DM Sans', sans-serif;
            font-size: clamp(1.5rem, 4vw, 2.2rem);
            font-weight: 500;
            color: #1a1a1a;
            text-align: left;
            margin: 2rem 0;
            padding-left: 2rem;
            border-left: 3px solid #00D9FF;
            line-height: 1.5;
        }

        /* Lavender dashed section divider */
        .divider {
            height: 0;
            border: none;
            border-top: 2px dashed rgba(176, 143, 230, 0.55);
            margin: 1.25rem auto;
            max-width: 1200px;
            width: calc(100% - 4rem);
        }

        /* Number labels (like type specimens) - wider row with images */
        .specimen-row {
            grid-column: 1 / -1;
            display: flex;
            align-items: center;
            gap: 2rem;
            margin-bottom: 0.5rem;
        }

        .specimen-number {
            font-family: 'IBM Plex Mono', monospace;
            font-size: clamp(0.75rem, 1.2vw, 0.85rem);
            color: #00D9FF;
            font-weight: 600;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            margin-bottom: 0;
        }

        .specimen-images {
            display: flex;
            gap: 0.75rem;
            flex-shrink: 0;
        }

        .specimen-image {
            width: 80px;
            height: 80px;
            background: #e0e0e0;
            border: 1px solid #ccc;
            overflow: hidden;
        }

        .specimen-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Section Footer - back to top, links box, stats */
        .section-footer {
            grid-column: 1 / -1;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 1.5rem;
            padding-top: 1rem;
            border-top: 1px solid #e0e0e0;
        }

        .back-to-top {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: flex-start;
            gap: 1rem;
        }

        .back-to-top a {
            font-family: 'IBM Plex Mono', monospace;
            font-size: clamp(0.9rem, 1.5vw, 1rem);
            color: #1a1a1a;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            min-height: 44px;
            min-width: 44px;
            padding: 0.4rem 1.5rem;
            border-radius: 50px;
            background: linear-gradient(135deg,
                rgba(90, 150, 90, 0.40) 0%,
                rgba(176, 143, 230, 0.40) 100%);
            border: 1px solid rgba(130, 110, 180, 0.25);
            box-shadow: 0 2px 8px rgba(100, 100, 180, 0.12);
        }

        .back-to-top a:hover {
            background: linear-gradient(135deg,
                rgba(90, 150, 90, 0.60) 0%,
                rgba(176, 143, 230, 0.60) 100%);
            color: #1a1a1a;
            transform: translateY(-1px);
            box-shadow: 0 4px 14px rgba(100, 100, 180, 0.22);
        }

        .back-to-top a:focus {
            outline: 3px solid #00D9FF;
            outline-offset: 2px;
        }

        /* Links Box */
        .section-links-box {
            background: #fff;
            border: 1px solid #e0e0e0;
            padding: 1.5rem;
            border-radius: 4px;
        }

        .section-links-box h4 {
            font-family: 'IBM Plex Mono', monospace;
            font-size: 1.2rem;
            color: #999;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }

        .section-links-box ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .section-links-box li {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .section-links-box li a {
            font-family: 'IBM Plex Mono', monospace;
            font-size: 1rem;
            color: #00D9FF;
            text-decoration: none;
            transition: color 0.2s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            min-height: 44px;
            min-width: 44px;
        }

        .section-links-box li a:hover {
            text-decoration: underline;
        }

        .section-links-box li a:focus {
            outline: 3px solid #00D9FF;
            outline-offset: 2px;
        }

        .section-links-box li a::before {
            content: '→';
            color: #00D9FF;
        }

        /* Stats Area */
        .section-stats {
            background: #f5f5f5;
            border: 1px solid #e0e0e0;
            padding: 1.5rem;
            border-radius: 4px;
            display: flex;
            flex-direction: column;
        }

        .section-stats h4 {
            font-family: 'IBM Plex Mono', monospace;
            font-size: 1.2rem;
            color: #999;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            margin-bottom: 1rem;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }

        .stat-item {
		line-height: 1;
		padding-top: 30px;
        }

        .stat-number {
            font-family: 'DM Sans', sans-serif;
            font-size: 1.7rem;
            font-weight: 700;
            color: #00D9FF;
            display: block;
        }

        .stat-label {
            font-family: 'IBM Plex Mono', monospace;
            font-size: 0.9rem;
            color: #666;
            text-transform: uppercase;
        }

        .chart-placeholder {
            background: #fff;
            border: 1px dashed #ccc;
            border-radius: 4px;
            padding: 1rem;
            text-align: center;
            flex: 1;
            min-height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .chart-placeholder span {
            font-family: 'IBM Plex Mono', monospace;
            font-size: 0.7rem;
            color: #999;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        /* Responsive for section footer */
        @media (max-width: 900px) {
            .section-footer {
                grid-template-columns: 1fr;
            }
        }

        footer {
            background: #fff;
            color: #1a1a1a;
            text-align: center;
            padding: 4rem 2rem;
            border-top: 1px solid #e0e0e0;
        }

        footer a {
            color: #00D9FF;
            text-decoration: none;
            font-weight: 500;
        }

        footer a:hover {
            text-decoration: underline;
        }

        footer a:focus {
            outline: 3px solid #00D9FF;
            outline-offset: 2px;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero-gallery {
                grid-template-columns: repeat(2, 1fr);
                padding: 1.5rem 1.5rem;
            }
            .gallery-column {
                grid-template-rows: auto repeat(3, 225px) 1fr;
            }
            .gallery-column:nth-child(n+3) {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .section-paragraph { grid-column: 1 / -1; }
            .pull-quote { 
                grid-column: 1 / -1; 
                padding-left: 1rem;
                margin: 1rem 0;
            }
            .photo-grid { grid-template-columns: 1fr; }
            nav { 
                flex-direction: column; 
                gap: 1rem; 
                align-items: center;
                padding: 1.5rem 1rem;
            }
            .hero-gallery {
                grid-template-columns: 1fr;
                padding: 1rem 1rem;
            }
            .gallery-column {
                grid-template-rows: auto repeat(3, 200px) 1fr;
            }
            .gallery-column:nth-child(n+2) {
                display: none;
            }
            .specimen-row {
                flex-direction: column;
                align-items: flex-start;
            }
            .specimen-number {
                min-width: auto;
                max-width: none;
            }
            .specimen-image {
                width: 60px;
                height: 60px;
            }
            header {
                padding: 1rem 1rem 1.5rem;
            }
            main {
                padding: 1rem 1rem;
            }
            .content-section {
                margin-bottom: 1rem;
            }
            .puns-masonry-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 600px) {
            nav a, .collection-button, footer {
                min-height: 44px;
            }
        }

        /* Reduced motion */
        @media (prefers-reduced-motion: reduce) {
            * { animation: none !important; transition: none !important; }
        }

        /* Accessibility: Screen reader only content */
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

        /* Accessibility: Skip to main content link */
        .skip-link {
            position: absolute;
            top: -40px;
            left: 0;
            background: #1a1a1a;
            color: #fff;
            padding: 8px 16px;
            z-index: 100;
            text-decoration: none;
            font-family: 'IBM Plex Mono', monospace;
            font-size: 0.9rem;
        }

        .skip-link:focus {
            top: 0;
        }

        /* Accessibility: Enhanced focus styles for keyboard navigation */
        a:focus-visible,
        button:focus-visible,
        .collection-button:focus-visible {
            outline: 3px solid #00D9FF;
            outline-offset: 2px;
        }

        /* Accessibility: Ensure focus is visible on all interactive elements */
        :focus:not(:focus-visible) {
            outline: none;
        }
