
        * { 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;
        }

        /* Skip 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; }

        /* Screen-reader only */
        .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;
        }

        /* ── Header ── */
        header {
            background: #fff;
            border-bottom: 2px solid #1a1a1a;
            padding: 1.25rem 2rem 1.5rem;
        }
        .breadcrumb {
            font-family: 'IBM Plex Mono', monospace;
            font-size: 0.72rem;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            margin-bottom: 0.9rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            flex-wrap: wrap;
        }
        .breadcrumb a { color: #666; text-decoration: none; transition: color 0.2s; }
        .breadcrumb a:hover { color: #00D9FF; }
        .breadcrumb a:focus { outline: 3px solid #00D9FF; outline-offset: 2px; }
        .breadcrumb-sep { color: #bbb; }
        .breadcrumb-current { color: #1a1a1a; }
        .page-title {
            font-family: 'DM Sans', sans-serif;
            font-size: clamp(2rem, 6vw, 4.5rem);
            font-weight: 700;
            line-height: 1.05;
            color: #1a1a1a;
            text-transform: uppercase;
            letter-spacing: -0.03em;
        }
        .page-subtitle {
            font-family: 'IBM Plex Mono', monospace;
            font-size: clamp(0.78rem, 1.4vw, 0.95rem);
            color: #00D9FF;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-top: 0.4rem;
        }

        /* ── Main layout ── */
        main {
            max-width: 1100px;
            margin: 0 auto;
            padding: 2.5rem 2rem 4rem;
        }

        /* Back link */
        .sp-back-nav { margin-bottom: 2.5rem; }
        .sp-back-nav a {
            font-family: 'IBM Plex Mono', monospace;
            font-size: 0.78rem;
            color: #666;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            transition: color 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }
        .sp-back-nav a:hover { color: #00D9FF; }
        .sp-back-nav a:focus { outline: 3px solid #00D9FF; outline-offset: 2px; }

        /* ── Sections ── */
        .sp-section { margin-bottom: 3.5rem; }
        .sp-section + .sp-section {
            border-top: 1px solid #e0e0e0;
            padding-top: 3rem;
        }
        .sp-section-label {
            font-family: 'IBM Plex Mono', monospace;
            font-size: 0.68rem;
            color: #999;
            text-transform: uppercase;
            letter-spacing: 0.18em;
            margin-bottom: 1.25rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        .sp-section-label::after {
            content: '';
            flex: 1;
            height: 1px;
            background: #e0e0e0;
        }
        .sp-h2 {
            font-family: 'DM Sans', sans-serif;
            font-size: clamp(1.35rem, 2.5vw, 1.9rem);
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 1.1rem;
        }
        .sp-p {
            font-size: 1rem;
            line-height: 1.75;
            color: #1a1a1a;
            margin-bottom: 1rem;
            max-width: 74ch;
        }
        .sp-p:last-child { margin-bottom: 0; }
        .sp-p a { color: #1a1a1a; text-decoration: underline; text-underline-offset: 3px; transition: color 0.2s; }
        .sp-p a:hover { color: #00D9FF; }
        .sp-p a:focus { outline: 3px solid #00D9FF; outline-offset: 2px; }
        .sp-smaller-italic { font-size: 0.9rem; font-style: italic; color: #555; }

        /* ── Stats bar ── */
        .sp-stats {
            display: flex;
            gap: 2.5rem;
            flex-wrap: wrap;
            margin-top: 1.5rem;
            padding: 1.25rem 1.5rem;
            background: #f5f5f5;
            border: 1px solid #e0e0e0;
            border-radius: 4px;
        }
        .sp-stat-number {
            font-family: 'DM Sans', sans-serif;
            font-size: 1.75rem;
            font-weight: 700;
            color: #00D9FF;
            display: block;
        }
        .sp-stat-label {
            font-family: 'IBM Plex Mono', monospace;
            font-size: 0.65rem;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        /* ── Photo gallery ── */
        .sp-featured-images {
            display: flex;
            gap: 0.75rem;
            margin-bottom: 1.25rem;
            flex-wrap: wrap;
        }
        .sp-featured-images img {
            flex: 1 1 200px;
            min-width: 150px;
            max-height: 320px;
            object-fit: cover;
            border-radius: 2px;
            display: block;
        }
        .sp-gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 0.6rem;
            margin-top: 1rem;
        }
        .sp-gallery-item {
            aspect-ratio: 4/3;
            overflow: hidden;
            border-radius: 2px;
            background: #e0e0e0;
        }
        .sp-gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        .sp-gallery-item img.loaded { opacity: 1; }
        .sp-gallery-caption {
            font-family: 'IBM Plex Mono', monospace;
            font-size: 0.68rem;
            color: #888;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            margin-top: 0.6rem;
        }

        /* Puns masonry grid */
        .sp-puns-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            gap: 0.6rem;
            margin-top: 1rem;
        }
        .sp-puns-grid .sp-gallery-item { aspect-ratio: unset; }
        .sp-puns-grid .sp-gallery-item img { height: auto; aspect-ratio: unset; }

        /* ── Type database table ── */
        .sp-db-notice {
            background: #fff;
            border: 1px dashed #ccc;
            border-radius: 4px;
            padding: 1.5rem 2rem;
            text-align: center;
            margin-top: 1.25rem;
        }
        .sp-db-notice-label {
            font-family: 'IBM Plex Mono', monospace;
            font-size: 0.68rem;
            color: #aaa;
            text-transform: uppercase;
            letter-spacing: 0.14em;
            margin-bottom: 0.35rem;
        }
        .sp-db-notice p {
            font-size: 0.9rem;
            color: #777;
        }
        .sp-table-wrap {
            overflow-x: auto;
            margin-top: 1.25rem;
            border: 1px solid #e0e0e0;
            border-radius: 4px;
        }
        .sp-table {
            width: 100%;
            border-collapse: collapse;
            font-family: 'IBM Plex Mono', monospace;
            font-size: 0.78rem;
        }
        .sp-table thead th {
            background: #1a1a1a;
            color: #fff;
            padding: 0.6rem 1rem;
            text-align: left;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            font-size: 0.68rem;
            white-space: nowrap;
        }
        .sp-table tbody tr:nth-child(even) { background: #f8f8f8; }
        .sp-table td {
            padding: 0.55rem 1rem;
            color: #555;
            border-bottom: 1px solid #ebebeb;
            vertical-align: top;
        }
        .sp-table .sp-table-empty td {
            text-align: center;
            color: #aaa;
            font-style: italic;
            padding: 2rem 1rem;
            font-family: 'DM Sans', sans-serif;
            font-size: 0.9rem;
        }

        /* ── Credits ── */
        .sp-credits-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.4rem;
            margin-top: 0.75rem;
        }
        .sp-credits-list li {
            font-size: 0.95rem;
            color: #444;
        }
        .sp-credits-list a { color: #1a1a1a; text-decoration: underline; text-underline-offset: 3px; }
        .sp-credits-list a:hover { color: #00D9FF; }
        .sp-credits-list a:focus { outline: 3px solid #00D9FF; outline-offset: 2px; }

        /* ── External links row ── */
        .sp-links {
            display: flex;
            gap: 0.75rem;
            flex-wrap: wrap;
            margin-top: 1.5rem;
        }
        .sp-link-btn {
            font-family: 'IBM Plex Mono', monospace;
            font-size: 0.78rem;
            color: #1a1a1a;
            text-decoration: none;
            padding: 0.45rem 1.1rem;
            border: 1px solid #1a1a1a;
            border-radius: 50px;
            transition: all 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            min-height: 44px;
        }
        .sp-link-btn:hover { background: #1a1a1a; color: #fff; }
        .sp-link-btn:focus { outline: 3px solid #00D9FF; outline-offset: 2px; }

        /* "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;
        }

        /* ── Highlighted note box ── */
        .sp-highlight-box {
            background: #fff;
            border: 1px solid #e0e0e0;
            border-left: 3px solid #00D9FF;
            border-radius: 4px;
            padding: 1.5rem;
            margin-top: 1.5rem;
        }
        .sp-highlight-box h3 {
            font-family: 'IBM Plex Mono', monospace;
            font-size: 0.78rem;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: #555;
            margin-bottom: 0.75rem;
        }
        .sp-highlight-box ul {
            padding-left: 1.25rem;
            display: flex;
            flex-direction: column;
            gap: 0.35rem;
            font-size: 0.95rem;
            color: #444;
        }

        /* ── Footer ── */
        footer {
            background: #fff;
            color: #1a1a1a;
            text-align: center;
            padding: 3rem 2rem;
            border-top: 1px solid #e0e0e0;
            font-family: 'DM Sans', sans-serif;
            font-size: 0.9rem;
        }
        footer a { color: #00D9FF; text-decoration: none; }
        footer a:hover { text-decoration: underline; }
        footer a:focus { outline: 3px solid #00D9FF; outline-offset: 2px; }

        /* ── Responsive ── */
        @media (max-width: 768px) {
            header { padding: 1rem 1rem 1.25rem; }
            main { padding: 2rem 1rem 3rem; }
            .sp-gallery-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
            .sp-puns-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); }
            .sp-featured-images img { max-height: 220px; }
        }
        @media (prefers-reduced-motion: reduce) {
            * { animation: none !important; transition: none !important; }
        }
        a:focus-visible, button:focus-visible {
            outline: 3px solid #00D9FF;
            outline-offset: 2px;
        }
        :focus:not(:focus-visible) { outline: none; }
