        :root {
            --bg: #0a0a0a;
            --text: #e5e5e5;
            --text-muted: #888;
            --accent: #d4ff00; /* Acid Citrus */
            --surface: #141414;
            --font-display: 'Playfair Display', serif;
            --font-body: 'Inter', system-ui, -apple-system, sans-serif;
        }

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

        body {
            background-color: var(--bg);
            color: var(--text);
            font-family: var(--font-body);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        /* Grain overlay */
        .grain {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            pointer-events: none;
            z-index: 9999;
            opacity: 0.03;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
        }

        a { color: inherit; text-decoration: none; transition: opacity 0.2s; }
        a:hover { opacity: 0.7; }

        header {
            padding: 2rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }

        .logo {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 1.5rem;
            letter-spacing: -0.02em;
        }
        .logo span { color: var(--accent); }

        .hero {
            padding: 8rem 5%;
            max-width: 1200px;
            margin: 0 auto;
        }

        h1 {
            font-family: var(--font-display);
            font-size: clamp(3rem, 8vw, 5rem);
            line-height: 1.1;
            margin-bottom: 2rem;
            font-weight: 400;
        }

        h1 span {
            display: block;
            color: var(--text-muted);
            font-size: 0.5em;
            font-family: var(--font-body);
            font-weight: 300;
            letter-spacing: 0.05em;
            margin-bottom: 0.5rem;
            text-transform: uppercase;
        }

        .cta-button {
            display: inline-block;
            background: var(--accent);
            color: black;
            padding: 1rem 2rem;
            font-weight: 600;
            border-radius: 2px;
            margin-top: 2rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            font-size: 0.9rem;
        }
        .cta-button:hover { background: #bfff00; opacity: 1; }
        .cta-button.compact {
            margin: 0;
            padding: 0.5rem 1rem;
            font-size: 0.8rem;
        }

        .hero-lede {
            max-width: 500px;
            color: #888;
            font-size: 1.1rem;
        }

        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem;
            padding: 4rem 5%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .card {
            background: var(--surface);
            padding: 2rem;
            border: 1px solid rgba(255,255,255,0.05);
            transition: transform 0.3s ease;
        }
        .card:hover { transform: translateY(-5px); border-color: rgba(255,255,255,0.1); }

        .card h3 {
            font-family: var(--font-display);
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .category {
            color: var(--accent);
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 1rem;
            display: block;
        }

        .samples {
            background: #111;
            padding: 6rem 5%;
            margin-top: 4rem;
        }

        .collection {
            padding: 1rem 5% 4rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .collection-shell {
            position: relative;
            overflow: hidden;
            padding: 2rem;
            background: linear-gradient(155deg, rgba(212,255,0,0.08), rgba(255,255,255,0.01));
            border: 1px solid rgba(255,255,255,0.14);
            border-radius: 16px;
        }

        .collection-shell:before {
            content: "";
            position: absolute;
            width: 380px;
            height: 380px;
            right: -120px;
            top: -120px;
            border-radius: 50%;
            background: radial-gradient(circle at center, rgba(212,255,0,0.18), rgba(212,255,0,0));
            pointer-events: none;
        }

        .collection-header {
            display: flex;
            justify-content: space-between;
            gap: 1.5rem;
            align-items: end;
            flex-wrap: wrap;
            margin-bottom: 1.5rem;
        }

        .collection-header h2 {
            font-family: var(--font-display);
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            line-height: 1.1;
            margin-bottom: 0.3rem;
        }
        .collection-subtitle { color: #bdbdbd; }

        .collection-count {
            color: var(--text-muted);
            font-size: 0.95rem;
        }

        .collection-controls {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .control {
            background: rgba(0,0,0,0.38);
            border: 1px solid rgba(255,255,255,0.15);
            border-radius: 10px;
            padding: 0.8rem 0.9rem;
            color: var(--text);
        }

        .control input,
        .control select {
            width: 100%;
            background: transparent;
            border: none;
            outline: none;
            color: var(--text);
            font-size: 0.95rem;
            font-family: var(--font-body);
        }

        .control select option {
            color: #111;
        }

        .filters-row {
            display: grid;
            gap: 0.7rem;
            margin-bottom: 1rem;
        }

        .filter-group-label {
            font-size: 0.8rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }

        .filter-wrap {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .filter-pill {
            border: 1px solid rgba(255,255,255,0.2);
            background: rgba(255,255,255,0.03);
            color: var(--text);
            border-radius: 999px;
            padding: 0.4rem 0.8rem;
            font-size: 0.78rem;
            cursor: pointer;
        }

        .filter-pill.is-active {
            background: var(--accent);
            color: #111;
            border-color: var(--accent);
        }

        .collection-grid {
            display: grid;
            gap: 1rem;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            margin-top: 1.2rem;
        }

        .collection-card {
            background: rgba(0,0,0,0.5);
            border: 1px solid rgba(255,255,255,0.13);
            border-radius: 12px;
            padding: 1rem;
            display: flex;
            flex-direction: column;
            min-height: 220px;
        }

        .collection-card h3 {
            font-size: 1.1rem;
            line-height: 1.25;
            margin: 0.3rem 0 0.45rem;
            font-family: var(--font-display);
        }

        .collection-card p {
            color: var(--text-muted);
            font-size: 0.92rem;
            margin-bottom: 0.9rem;
        }

        .collection-meta-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 0.7rem;
        }

        .collection-tag {
            font-size: 0.72rem;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--accent);
        }

        .collection-empty {
            padding: 2rem;
            border: 1px dashed rgba(255,255,255,0.25);
            border-radius: 12px;
            text-align: center;
        }
        
        .samples-container {
            max-width: 800px;
            margin: 0 auto;
        }
        .samples-title {
            font-family: var(--font-display);
            font-size: 2rem;
            margin-bottom: 1rem;
        }
        .samples-copy { color: #888; }

        .sample-list {
            list-style: none;
            margin-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
        }

        .sample-list li {
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .sample-list a {
            display: flex;
            justify-content: space-between;
            padding: 1.5rem 0;
            align-items: center;
        }
        .sample-list span.type {
            font-size: 0.8rem;
            background: rgba(255,255,255,0.1);
            padding: 0.2rem 0.5rem;
            border-radius: 2px;
        }

        footer {
            padding: 4rem 5%;
            border-top: 1px solid rgba(255,255,255,0.05);
            text-align: center;
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        .legal-links {
            margin-top: 1rem;
        }
        .legal-links a { margin: 0 1rem; }
        .contact-line {
            margin-top: 1rem;
            font-size: 0.8rem;
            opacity: 0.5;
        }
        .fulfilment-note {
            margin-top: 2rem;
            font-size: 0.75rem;
            opacity: 0.3;
        }

        @media (max-width: 768px) {
            h1 { font-size: 2.5rem; }
            .collection-shell { padding: 1.2rem; }
            .collection-controls { grid-template-columns: 1fr; }
        }

        .top-links { display: flex; gap: 0.7rem; flex-wrap: wrap; }
        .top-links a {
            border: 1px solid rgba(255,255,255,0.14);
            border-radius: 999px;
            padding: 0.45rem 0.8rem;
            font-size: 0.78rem;
            text-transform: uppercase;
            letter-spacing: 0.06em;
        }
        .top-links a[aria-current="page"] {
            background: var(--accent);
            color: #111;
            border-color: var(--accent);
        }

        .legal-wrap {
            max-width: 900px;
            margin: 0 auto;
            padding: 3rem 5% 4rem;
        }

        .legal-card {
            background: var(--surface);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 16px;
            padding: clamp(1.2rem, 3vw, 2rem);
        }

        .updated { color: var(--text-muted); margin-bottom: 1.4rem; }

        .legal-card h2 {
            font-size: 1.04rem;
            margin-top: 1.3rem;
            margin-bottom: 0.5rem;
            color: #fff;
        }

        .legal-card p,
        .legal-card li { color: var(--text-muted); }

        .legal-card ul { margin-left: 1.2rem; }
        .legal-card li { margin-bottom: 0.35rem; }

        .tableLike {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin: 12px 0;
        }

        .kv {
            border: 1px solid rgba(255,255,255,0.14);
            border-radius: 14px;
            padding: 12px;
            background: rgba(255,255,255,0.03);
        }

        .kv .k {
            font-size: 12px;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.10em;
        }

        .kv .v { margin-top: 6px; color: var(--text); }
