#menu-trigger {
            position: fixed;
            top: 20px;
            left: 20px;
            font-family: inherit;
            font-size: 18px;
            background: transparent;
            border: 1px solid #000;
            border-radius: 20rem;
            padding: 6px 16px;
            cursor: pointer;
            z-index: 100;
            transition: background 0.15s, color 0.15s;
            color: black;
        }
        #menu-trigger:hover { background: #000; color: #fff; }

        /* ── overlay ─────────────────────────────────────────────────── */
        #menu-overlay {
            position: fixed;
            inset: 0;
            z-index: 1000;
            display: flex;
            flex-direction: column;
            background: rgba(227, 227, 227, 0.97);
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.2s ease;
        }
        #menu-overlay.open {
            opacity: 1;
            pointer-events: auto;
        }

        /* ── top bar ─────────────────────────────────────────────────── */
        #menu-topbar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px 20px;
            border-bottom: 1px solid rgba(0,0,0,0.1);
            flex-shrink: 0;
        }

        #menu-topbar-label {
            font-size: 11px;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            opacity: 0.35;
        }

        #menu-close {
            background: none;
            border: 1px solid rgba(0,0,0,0.3);
            border-radius: 20rem;
            font-size: 16px;
            line-height: 1;
            padding: 6px 16px;
            cursor: pointer;
            font-family: inherit;
            opacity: 0.6;
            transition: opacity 0.15s, background 0.15s;
            color: black;
        }
        #menu-close:hover { opacity: 1; background: #000; color: #fff; border-color: #000; }

        /* ── columns wrapper ─────────────────────────────────────────── */
        #menu-columns {
            display: flex;
            flex: 1;
            min-height: 0;
            overflow: hidden;
        }

        /* ── single column ───────────────────────────────────────────── */
        .menu-col {
            flex: 1;
            display: flex;
            flex-direction: column;
            min-height: 0;
            min-width: 80px;
            transition: color 0.2s ease;
        }

        .col-narrow { color: lightgrey; }

        /* ── column resize handle ────────────────────────────────────── */
        .col-resizer {
            flex: 0 0 8px;
            position: relative;
            cursor: col-resize;
            z-index: 1;
            user-select: none;
        }
        .col-resizer::before {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            left: 50%;
            width: 1px;
            transform: translateX(-50%);
            background: rgba(0,0,0,0.1);
            transition: background 0.15s, width 0.15s;
        }
        .col-resizer:hover::before,
        .col-resizer.dragging::before {
            background: rgba(0,0,0,0.35);
            width: 2px;
        }

        .col-title {
            font-family: 'Crimson Pro';
            font-weight: 700;
            padding: 14px 20px 10px;
            font-size: 17px;
            letter-spacing: 0.04em;
            text-transform: lowercase;
            opacity: 0.85;
            flex-shrink: 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.07);
            background: rgba(227, 227, 227, 0.97);
        }

        .col-body {
            flex: 1;
            overflow-y: auto;
            overscroll-behavior: contain;
            scrollbar-width: thin;
            scrollbar-color: rgba(0,0,0,0.15) transparent;
        }
        .col-body::-webkit-scrollbar { width: 4px; }
        .col-body::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.15); border-radius: 2px; }

        /* ── accordion item ──────────────────────────────────────────── */
        .acc-item {
            border-bottom: 1px solid rgba(0,0,0,0.08);
        }

        .acc-header {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            padding: 13px 20px;
            cursor: pointer;
            font-size: 17px;
            user-select: none;
            gap: 10px;
        }
        .acc-header:hover .acc-name { text-decoration: underline; }

        .acc-name { flex: 1; }

        .acc-toggle {
            font-size: 20px;
            line-height: 1;
            opacity: 0.35;
            transition: transform 0.25s ease, opacity 0.15s;
            flex-shrink: 0;
        }
        .acc-item.open .acc-toggle {
            transform: rotate(45deg);
            opacity: 0.6;
        }

        /* collapse / expand via max-height */
        .acc-body {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease;
        }
        .acc-item.open .acc-body {
            max-height: 900px;
        }

        .acc-body-inner {
            padding: 4px 20px 18px;
        }

        .acc-text {
            font-size: 13.5px;
            line-height: 1.65;
            opacity: 0.75;
            margin-bottom: 10px;
        }

        .acc-link {
            display: inline-block;
            font-size: 13px;
            color: #000;
            text-decoration: underline;
            margin-top: 4px;
            margin-right: 14px;
            opacity: 0.7;
            transition: opacity 0.15s;
        }
        .acc-link:hover { opacity: 1; }

        /* ── contributor image + issue badge ────────────────────────── */
        .contrib-img {
            display: block;
            width: 100%;
            max-height: 260px;
            margin-bottom: 10px;
            object-fit: cover;
        }

        .contrib-divider {
            border: none;
            border-top: 1px solid rgba(0,0,0,0.08);
            margin: 16px 0;
        }

        .contrib-issue-label {
            display: flex;
            align-items: center;
            gap: 7px;
            font-size: 11px;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            opacity: 0.45;
            margin-bottom: 10px;
        }

        .contrib-issue-badge {
            flex-shrink: 0;
            width: 18px;
            height: 18px;
        }

        /* ── letter groups in contributors ───────────────────────────── */
        .letter-group {
            padding: 10px 20px 4px;
            font-size: 10px;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            opacity: 0.28;
        }

        /* ── editions ────────────────────────────────────────────────── */
        .edition-thumb {
            display: block;
            width: 100%;
            max-width: 70%;
            margin-bottom: 10px;
            cursor: pointer;
            transition: opacity 0.15s;
        }
        .edition-thumb:hover { opacity: 0.8; }

        img.edition-thumb { 
            max-height: 490px; 
            width: auto;
        }

        /* ── issues ──────────────────────────────────────────────────── */
        .issue-poster {
            display: block;
            width: 28%;
            float: right;
            margin: 0 0 8px 12px;
        }

        .issue-artists-list {
            list-style: none;
            margin-top: 12px;
            clear: both;
        }
        .issue-artists-list li {
            font-size: 13px;
            padding: 2px 0;
            opacity: 0.65;
        }
        .issue-artists-list li::before {
            content: '— ';
            opacity: 0.45;
        }

        /* ── newsletter form ─────────────────────────────────────────── */
        .subscribe-form {
            margin-top: 12px;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .subscribe-input {
            font-family: inherit;
            font-size: 14px;
            padding: 8px 12px;
            border: 1px solid rgba(0,0,0,0.25);
            background: transparent;
            width: 100%;
            outline: none;
        }
        .subscribe-input:focus { border-color: #000; }
        .subscribe-btn {
            font-family: inherit;
            font-size: 14px;
            padding: 8px 12px;
            border: 1px solid #000;
            background: transparent;
            cursor: pointer;
            text-align: left;
            transition: background 0.15s, color 0.15s;
        }
        .subscribe-btn:hover { background: #000; color: #fff; }

        /* ── carousel dots (mobile only) ─────────────────────────────── */
        #carousel-nav {
            display: none;
            justify-content: center;
            align-items: center;
            gap: 10px;
            padding: 14px;
            flex-shrink: 0;
            border-top: 1px solid rgba(0,0,0,0.08);
        }

        .nav-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            border: none;
            background: rgba(0,0,0,0.2);
            cursor: pointer;
            padding: 0;
            transition: background 0.2s, transform 0.2s;
        }
        .nav-dot.active {
            background: rgba(0,0,0,0.75);
            transform: scale(1.3);
        }

        .nav-label {
            font-size: 11px;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            opacity: 0.5;
            min-width: 90px;
            text-align: center;
        }

        /* ── mobile ──────────────────────────────────────────────────── */
        @media (max-width: 768px) {
            #menu-columns {
                overflow-x: scroll;
                overflow-y: hidden;
                scroll-snap-type: x mandatory;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
            }
            #menu-columns::-webkit-scrollbar { display: none; }

            .menu-col {
                flex: 0 0 100vw;
                scroll-snap-align: start;
            }

            .col-resizer { display: none; }

            #carousel-nav { display: flex; }
        }