        /* ============================================
           TOKENS — neutral near-black, photos own the colour
        ============================================ */
        :root {
            --bg:        #0e0f12;
            --surface:   #15171c;
            --ink:       #f0f1f4;
            --muted:     #9aa0ab;
            --paper:     #ffffff;
            --paper-ink: #131418;
            --line:      rgba(255, 255, 255, 0.09);
            --r-sm:      10px;
            --r-lg:      22px;
            --shadow-soft: 0 20px 50px rgba(0, 0, 0, 0.5);
        }

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

        /* the hidden attribute must always win, even over .btn's display */
        [hidden] { display: none !important; }

        body {
            font-family: 'Space Grotesk', sans-serif;
            color: var(--ink);
            background: var(--bg);
            overflow-x: hidden;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        /* faint neutral glow at the top of the page */
        body::before {
            content: "";
            position: fixed;
            inset: 0;
            z-index: -1;
            background:
                radial-gradient(900px 460px at 50% -120px, #1b1d23 0%, rgba(27,29,35,0) 70%),
                var(--bg);
        }

        /* film grain over everything — ties flat color to the photos */
        body::after {
            content: "";
            position: fixed;
            inset: 0;
            pointer-events: none;
            z-index: 2000;
            opacity: 0.06;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
        }

        main { flex: 1; }

        /* ============================================
           TYPE — the logo is the only loud voice;
           everything else is quiet tracked caps
        ============================================ */
        .kicker {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.42em;
            text-indent: 0.42em;
            text-transform: uppercase;
            color: var(--muted);
        }

        .title {
            font-size: clamp(17px, 2.2vw, 22px);
            font-weight: 700;
            letter-spacing: 0.34em;
            text-indent: 0.34em;
            text-transform: uppercase;
        }

        /* ============================================
           TOP BAR — floats over every tab
        ============================================ */
        .topbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px 24px;
            padding: 36px 36px 16px;
            /* frosted bar — content scrolling beneath blurs instead of
               clashing; invisible against the dark home hero */
            background: rgba(14, 15, 18, 0.72);
            -webkit-backdrop-filter: blur(14px);
            backdrop-filter: blur(14px);
            /* the bar spans the viewport — don't let its empty area eat clicks */
            pointer-events: none;
        }

        .topbar > * { pointer-events: auto; }

        /* home never scrolls, and the frost would sit over the hero logo */
        body[data-tab="home"] .topbar {
            background: none;
            -webkit-backdrop-filter: none;
            backdrop-filter: none;
        }

        .main-nav {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 6px 34px;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            margin-right: 8px;
            transition: opacity 0.15s;
        }

        .nav-logo:hover { opacity: 0.75; }

        .nav-logo img { height: 32px; display: block; }

        /* the Matilda nav voice: bold warm serif, title case */
        .main-nav a:not(.nav-logo) {
            color: var(--muted);
            text-decoration: none;
            font-family: 'Lora', Georgia, serif;
            font-size: 18px;
            font-weight: 600;
            letter-spacing: 0.01em;
            padding: 4px 0;
            transition: color 0.15s;
        }

        .main-nav a:hover,
        .main-nav a.active { color: var(--ink); }

        .social-links {
            margin-left: auto;
            display: flex;
            align-items: center;
            gap: 19px;
        }

        .social-links a {
            color: var(--muted);
            display: flex;
            transition: color 0.15s, transform 0.18s ease;
        }

        .social-links a:hover {
            color: var(--ink);
            transform: scale(1.18);
        }

        /* ---------- mobile menu ---------- */
        .menu-btn {
            display: none;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            width: 40px;
            height: 40px;
            padding: 8px;
            background: none;
            border: none;
            cursor: pointer;
            z-index: 600;
        }

        .menu-btn span {
            display: block;
            width: 22px;
            height: 2px;
            background: var(--ink);
            border-radius: 2px;
            transition: transform 0.25s ease, opacity 0.2s ease;
        }

        body.menu-open .menu-btn span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
        body.menu-open .menu-btn span:nth-child(2) { opacity: 0; }
        body.menu-open .menu-btn span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

        .menu-overlay {
            position: fixed;
            inset: 0;
            z-index: 500;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 8vh;
            background: rgba(14, 15, 18, 0.96);
            -webkit-backdrop-filter: blur(16px);
            backdrop-filter: blur(16px);
            animation: fade-in 0.25s ease;
        }

        .menu-links {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 26px;
        }

        .menu-links a {
            font-family: 'Lora', Georgia, serif;
            font-size: 28px;
            font-weight: 600;
            color: var(--muted);
            text-decoration: none;
            transition: color 0.15s;
        }

        .menu-links a.active,
        .menu-links a:hover { color: var(--ink); }

        .menu-socials {
            display: flex;
            gap: 30px;
        }

        .menu-socials a {
            color: var(--muted);
            display: flex;
            transition: color 0.15s;
        }

        .menu-socials a:hover { color: var(--ink); }

        /* keep the topbar (logo + close button) above the open overlay */
        body.menu-open .topbar { z-index: 600; }

        body.menu-open { overflow: hidden; }

        /* ============================================
           TABS — nav switches views, no scrolling
        ============================================ */
        .tab {
            display: none;
            padding: 84px 24px 56px;
        }

        .tab.active {
            display: block;
            animation: tab-in 0.3s ease;
        }

        @keyframes tab-in {
            from { opacity: 0; transform: translateY(10px); }
            to   { opacity: 1; transform: none; }
        }

/* ============================================
           SHARED PIECES
        ============================================ */
.btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 9px;
            background: var(--paper);
            color: var(--paper-ink);
            border: none;
            border-radius: 999px;
            padding: 13px 26px;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            text-decoration: none;
            white-space: nowrap;
            cursor: pointer;
            transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s;
        }

        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
        }

        .btn:active { transform: translateY(0) scale(0.98); }

        /* vignette that melts a dark-edged photo into the page */
        .melt {
            position: relative;
        }

        .melt::after {
            content: "";
            position: absolute;
            inset: 0;
            pointer-events: none;
            box-shadow: inset 0 0 120px 50px var(--bg);
            background: linear-gradient(180deg,
                var(--bg) 5%, rgba(14,15,18,0) 40%,
                rgba(14,15,18,0) 50%, var(--bg) 90%);
        }

        /* ============================================
           HOME — the image is the page
        ============================================ */
        .tab.home { padding: 0; }

        .hero {
            position: relative;
            height: 100vh;
            height: 100dvh;
        }

        /* image sits lower and fades in from nothing via its own mask —
           clear space above her head for the logo, no hard edges */
        .hero-bg {
            position: absolute;
            top: 13vh;
            left: 0;
            width: 100%;
            height: calc(100% - 13vh);
            object-fit: cover;
            object-position: center 30%;
            display: block;
            -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 20%, #000 70%, transparent 97%);
            mask-image: linear-gradient(180deg, transparent 0, #000 20%, #000 70%, transparent 97%);
        }

        .hero-logo {
            position: absolute;
            top: 26px;
            left: 50%;
            transform: translateX(-50%);
            width: min(38vw, 200px);
            z-index: 1;
            filter: drop-shadow(0 4px 20px rgba(0,0,0,0.6));
        }

        .hero .ep-callout {
            position: absolute;
            left: 0;
            right: 0;
            bottom: 36px;
            text-align: center;
            z-index: 1;
        }

        .ep-callout .title { display: block; }

        .ep-callout .kicker { display: block; margin-top: 10px; }

        body[data-tab="home"] .copyright { display: none; }

        /* ============================================
           MUSIC — the EP centred like a shrine
        ============================================ */
        .tab.music.active {
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
            min-height: 100dvh;
            padding: 84px 24px 64px;
        }

        .music-block { text-align: center; }

        .cover {
            width: min(64vw, 340px);
            margin: 0 auto;
            display: block;
            filter: drop-shadow(0 22px 44px rgba(0,0,0,0.65));
        }

        .music-block .title { display: block; margin-top: 34px; }

        .music-block .kicker { display: block; margin-top: 12px; }

        .stream-row {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 30px;
        }

        /* ============================================
           TOUR — maintained from the SHOWS array in the
           script; past dates hide automatically
        ============================================ */
        .tab.tour { padding: 0 0 56px; }

        .tour-hero { height: min(44vh, 460px); }

        .tour-hero img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center 42%;
            display: block;
        }

        .tour-list-wrap {
            max-width: 880px;
            margin: 52px auto 0;
            padding: 0 24px;
        }

        .tour-list-wrap > .title {
            display: block;
            text-align: center;
            margin-bottom: 38px;
        }

        /* the South Arcade pattern: aligned columns, generous rows */
        .show-row {
            display: grid;
            grid-template-columns: 150px 1.2fr 1fr auto;
            align-items: center;
            gap: 28px;
            padding: 26px 8px;
            border-bottom: 1px solid var(--line);
        }

        .show-row:first-child { border-top: 1px solid var(--line); }

        .show-date {
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
        }

        .show-venue {
            font-size: 17px;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }

        .show-loc {
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--muted);
        }

        .btn-sm { padding: 10px 22px; font-size: 11px; }

        .btn-ghost {
            display: inline-flex;
            align-items: center;
            padding: 10px 22px;
            border: 1px solid var(--line);
            border-radius: 999px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: var(--muted);
            white-space: nowrap;
        }

        .no-dates-note {
            margin-top: 34px;
            text-align: center;
            font-size: 12px;
            font-weight: 500;
            letter-spacing: 0.1em;
            color: var(--muted);
        }

        /* ============================================
           MERCH — sold here directly; product view is a
           full mock-up, Stripe checkout to come
        ============================================ */
        .tab.store.active {
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
            min-height: 100dvh;
            padding: 84px 24px 56px;
        }

        .merch-wrap { width: min(1080px, 100%); }

        .store-head {
            display: flex;
            align-items: baseline;
            justify-content: space-between;
            gap: 16px;
            padding-bottom: 16px;
            border-bottom: 1px solid var(--line);
            margin-bottom: 34px;
        }

        .store-head .store-title {
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.3em;
            text-transform: uppercase;
        }

        .store-head .kicker { letter-spacing: 0.3em; text-indent: 0; }

        .merch-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px 24px;
        }

        .merch-card {
            display: flex;
            flex-direction: column;
            background: none;
            border: none;
            font: inherit;
            color: var(--ink);
            text-align: center;
            cursor: pointer;
            opacity: 0;
            animation: card-in 0.45s ease forwards;
        }

        /* the EP leads the store as a double-size feature tile */
        .merch-card.featured {
            grid-column: span 2;
            grid-row: span 2;
        }

        .merch-card.featured .merch-thumb {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .merch-card.featured .merch-thumb img {
            aspect-ratio: auto;
            width: 100%;
            height: 100%;
        }

        .tab.active .merch-card:nth-child(1) { animation-delay: 0.05s; }
        .tab.active .merch-card:nth-child(2) { animation-delay: 0.12s; }
        .tab.active .merch-card:nth-child(3) { animation-delay: 0.19s; }
        .tab.active .merch-card:nth-child(4) { animation-delay: 0.26s; }
        .tab.active .merch-card:nth-child(5) { animation-delay: 0.33s; }

        @keyframes card-in {
            from { opacity: 0; transform: translateY(16px); }
            to   { opacity: 1; transform: none; }
        }

        /* flat editorial tiles — no card chrome, the product is the design */
        .merch-thumb {
            display: block;
            background: #f4f4f2;
            border-radius: 4px;
            overflow: hidden;
            transition: background 0.25s ease;
        }

        .merch-card:hover .merch-thumb,
        .merch-card:focus-visible .merch-thumb { background: #ebebe8; }

        .merch-thumb img {
            width: 100%;
            aspect-ratio: 3 / 4;
            object-fit: contain;
            display: block;
            padding: 13%;
            transition: transform 0.35s ease;
        }

        .merch-card:hover .merch-thumb img { transform: scale(1.05); }

        .merch-meta {
            display: flex;
            align-items: baseline;
            justify-content: space-between;
            gap: 12px;
            margin-top: 14px;
            padding: 0 4px;
        }

        .merch-name {
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            text-align: left;
        }

        .merch-price {
            font-size: 12px;
            font-weight: 600;
            color: var(--muted);
            white-space: nowrap;
        }

        /* sold-out tiles stay clickable (modal explains) but read as gone */
        .merch-card.sold-out .merch-thumb img {
            opacity: 0.45;
            filter: grayscale(0.4);
        }

        .merch-card.sold-out .merch-price {
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }

        /* ---------- product modal ---------- */
        .modal {
            position: fixed;
            inset: 0;
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .modal-back {
            position: absolute;
            inset: 0;
            background: rgba(8, 9, 12, 0.65);
            -webkit-backdrop-filter: blur(14px);
            backdrop-filter: blur(14px);
            animation: fade-in 0.25s ease;
        }

        @keyframes fade-in { from { opacity: 0; } }

        .modal-panel {
            position: relative;
            width: min(780px, 100%);
            max-height: calc(100vh - 40px);
            overflow-y: auto;
            background: var(--surface);
            border: 1px solid var(--line);
            border-radius: var(--r-lg);
            box-shadow: var(--shadow-soft);
            display: grid;
            grid-template-columns: 5fr 6fr;
            animation: panel-in 0.32s cubic-bezier(0.22, 0.9, 0.26, 1);
        }

        @keyframes panel-in {
            from { opacity: 0; transform: translateY(20px) scale(0.98); }
            to   { opacity: 1; transform: none; }
        }

        .modal-close {
            position: absolute;
            top: 14px;
            right: 14px;
            z-index: 2;
            width: 34px;
            height: 34px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.1);
            color: var(--ink);
            border: none;
            border-radius: 999px;
            font-size: 17px;
            line-height: 1;
            cursor: pointer;
            transition: background 0.15s, transform 0.15s;
        }

        .modal-close:hover {
            background: rgba(255, 255, 255, 0.22);
            transform: rotate(90deg);
        }

        .modal-img {
            background: #f4f4f2;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modal-img img {
            width: 100%;
            aspect-ratio: 1;
            object-fit: contain;
            padding: 9%;
        }

        .modal-info { padding: 32px 32px 28px; }

        .m-name {
            font-size: 16px;
            font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            padding-right: 36px;
        }

        .m-price {
            font-size: 14px;
            font-weight: 600;
            color: var(--muted);
            margin-top: 6px;
        }

        .m-label {
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.24em;
            text-transform: uppercase;
            color: var(--muted);
            margin: 24px 0 10px;
        }

        .size-row {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .size-chip {
            min-width: 46px;
            padding: 9px 14px;
            background: none;
            color: var(--ink);
            border: 1px solid var(--line);
            border-radius: var(--r-sm);
            font: inherit;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            text-align: center;
            cursor: pointer;
            transition: border-color 0.15s, background 0.15s, color 0.15s;
        }

        .size-chip:hover { border-color: rgba(255, 255, 255, 0.35); }

        .size-chip.selected {
            background: var(--paper);
            color: var(--paper-ink);
            border-color: var(--paper);
        }

        .qty-row {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .qty-btn {
            width: 34px;
            height: 34px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: none;
            color: var(--ink);
            border: 1px solid var(--line);
            border-radius: 999px;
            font: inherit;
            font-size: 16px;
            line-height: 1;
            cursor: pointer;
            transition: border-color 0.15s, background 0.15s, opacity 0.15s;
        }

        .qty-btn:hover:not(:disabled) { border-color: rgba(255, 255, 255, 0.35); }

        .qty-btn:disabled { opacity: 0.3; cursor: default; }

        .qty-val {
            min-width: 18px;
            text-align: center;
            font-size: 15px;
            font-weight: 700;
        }

        .ship-list {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .ship-option {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding: 12px 16px;
            background: none;
            color: var(--ink);
            border: 1px solid var(--line);
            border-radius: var(--r-sm);
            font: inherit;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: border-color 0.15s, background 0.15s;
        }

        .ship-option:hover { border-color: rgba(255, 255, 255, 0.35); }

        .ship-option.selected {
            border-color: rgba(255, 255, 255, 0.85);
            background: rgba(255, 255, 255, 0.05);
        }

        .ship-option .ship-price { color: var(--muted); font-weight: 600; }

        .m-order { width: 100%; margin-top: 22px; padding: 15px 26px; }

        .m-soon {
            margin-top: 16px;
            padding: 18px 20px;
            text-align: center;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid var(--line);
            border-radius: var(--r-sm);
            animation: tab-in 0.3s ease;
        }

        .m-soon-badge {
            display: block;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.26em;
            text-indent: 0.26em;
            text-transform: uppercase;
        }

        .m-soon-note {
            font-size: 12px;
            font-weight: 500;
            color: var(--muted);
            margin-top: 8px;
        }

        .m-soon-note a { color: var(--ink); }

        body.modal-open { overflow: hidden; }

        /* ============================================
           CART — topbar button + slide-in drawer.
           Reuses the modal's frosted backdrop and the
           .ship-option / .qty-btn vocabulary.
        ============================================ */
        .cart-btn {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            margin-left: 10px;
            background: none;
            border: none;
            color: var(--muted);
            cursor: pointer;
            transition: color 0.15s, transform 0.18s ease;
        }

        .cart-btn:hover { color: var(--ink); transform: scale(1.14); }

        .cart-count {
            position: absolute;
            top: -2px;
            right: -4px;
            min-width: 17px;
            height: 17px;
            padding: 0 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--paper);
            color: var(--paper-ink);
            border-radius: 999px;
            font-size: 10px;
            font-weight: 700;
            line-height: 1;
        }

        .cart { position: fixed; inset: 0; z-index: 1000; }

        .cart-back {
            position: absolute;
            inset: 0;
            background: rgba(8, 9, 12, 0.65);
            -webkit-backdrop-filter: blur(14px);
            backdrop-filter: blur(14px);
            animation: fade-in 0.25s ease;
        }

        .cart-panel {
            position: absolute;
            top: 0;
            right: 0;
            width: min(430px, 100%);
            height: 100%;
            display: flex;
            flex-direction: column;
            background: var(--surface);
            border-left: 1px solid var(--line);
            box-shadow: var(--shadow-soft);
            animation: cart-in 0.34s cubic-bezier(0.22, 0.9, 0.26, 1);
        }

        @keyframes cart-in { from { transform: translateX(100%); } }

        .cart-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 26px 24px 18px;
            border-bottom: 1px solid var(--line);
        }

        .cart-head .title { display: block; }

        /* the close button isn't pinned inside the drawer */
        .cart-head .modal-close { position: static; }

        .cart-body { flex: 1; overflow-y: auto; padding: 4px 24px; }

        .cart-empty {
            text-align: center;
            color: var(--muted);
            padding: 64px 0;
            font-size: 13px;
            letter-spacing: 0.04em;
        }

        .cart-line {
            display: grid;
            grid-template-columns: 56px 1fr auto;
            gap: 14px;
            align-items: start;
            padding: 18px 0;
            border-bottom: 1px solid var(--line);
        }

        .cart-line-thumb {
            width: 56px;
            height: 56px;
            background: #f4f4f2;
            border-radius: 6px;
            object-fit: contain;
            padding: 6px;
            display: block;
        }

        .cart-line-name {
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }

        .cart-line-sub { font-size: 11px; color: var(--muted); margin-top: 4px; }

        .cart-qty { display: inline-flex; align-items: center; gap: 9px; margin-top: 10px; }

        .cart-qty .qty-btn { width: 26px; height: 26px; font-size: 14px; }

        .cart-qty .qty-val { min-width: 14px; font-size: 13px; }

        .cart-line-right { text-align: right; }

        .cart-line-price { font-size: 12px; font-weight: 700; }

        .cart-remove {
            background: none;
            border: none;
            color: var(--muted);
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            cursor: pointer;
            margin-top: 10px;
            padding: 0;
            transition: color 0.15s;
        }

        .cart-remove:hover { color: var(--ink); }

        .cart-foot { padding: 18px 24px 24px; border-top: 1px solid var(--line); }

        .cart-foot .m-label { margin-top: 0; }

        .cart-totals { margin: 18px 0 4px; }

        .cart-row {
            display: flex;
            justify-content: space-between;
            font-size: 13px;
            color: var(--muted);
            margin-bottom: 9px;
        }

        .cart-row.cart-grand {
            color: var(--ink);
            font-weight: 700;
            font-size: 15px;
            letter-spacing: 0.04em;
            padding-top: 14px;
            margin-top: 2px;
            border-top: 1px solid var(--line);
        }

        .cart-foot .btn { width: 100%; margin-top: 10px; padding: 15px 26px; }

        .cart-foot .btn:disabled { opacity: 0.45; cursor: default; transform: none; box-shadow: none; }

        .cart-note {
            font-size: 11px;
            color: var(--muted);
            text-align: center;
            margin-top: 12px;
            line-height: 1.6;
        }

        body.cart-open { overflow: hidden; }

        .toast {
            position: fixed;
            left: 50%;
            bottom: 28px;
            transform: translateX(-50%);
            z-index: 1200;
            max-width: calc(100vw - 32px);
            background: var(--surface);
            border: 1px solid var(--line);
            border-radius: 999px;
            padding: 14px 24px;
            font-size: 13px;
            font-weight: 600;
            text-align: center;
            box-shadow: var(--shadow-soft);
            animation: fade-in 0.3s ease;
        }

        /* ============================================
           ABOUT — gallery strip + centered bio
        ============================================ */
        .tab.about.active {
            display: flex;
            flex-direction: column;
            min-height: 100vh;
            min-height: 100dvh;
            padding: 84px 0 32px;
        }

        .gallery {
            display: flex;
            gap: 8px;
            height: min(52vh, 520px);
            padding: 0 24px;
        }

        .gallery img {
            flex: 1;
            min-width: 0;
            height: 100%;
            object-fit: cover;
            display: block;
            border-radius: var(--r-sm);
            filter: saturate(0.92);
            transition: flex 0.45s cubic-bezier(0.3, 0.8, 0.3, 1), filter 0.3s ease;
        }

        /* the signing shot leads the gallery; its neighbours grow on hover */
        .gallery img:nth-child(3) {
            flex: 2.1;
            filter: saturate(1.02);
        }

        .gallery img:not(:nth-child(3)):hover {
            flex: 1.9;
            filter: saturate(1.05);
        }

        .about-text {
            max-width: 600px;
            margin: auto;
            padding: 30px 24px;
            text-align: center;
        }

        .about-text p {
            font-size: 15px;
            font-weight: 500;
            line-height: 1.8;
            color: #c9ccd4;
        }

        .about-text p + p { margin-top: 14px; }

        .about-text strong { font-weight: 700; color: var(--ink); }

        .copyright {
            text-align: center;
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: #7a8090;
            padding: 0 24px 18px;
        }
        .copyright a {
            color: inherit;
            text-decoration: none;
            border-bottom: 1px solid transparent;
            transition: color 0.2s ease, border-color 0.2s ease;
        }
        .copyright a:hover { color: #cfd3da; border-color: #cfd3da; }

        /* visually hidden, available to screen readers */
        .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;
        }

        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after { animation: none !important; transition: none !important; }
            .merch-card { opacity: 1; }
        }

        /* ============================================
           RESPONSIVE
        ============================================ */
        @media (max-width: 820px) {
            /* topbar collapses: hamburger left, logo centred */
            .topbar { padding: 14px 16px 10px; }

            .menu-btn { display: flex; }

            .main-nav a:not(.nav-logo) { display: none; }

            .topbar .social-links { display: none; }

            .nav-logo {
                position: absolute;
                left: 50%;
                transform: translateX(-50%);
                margin: 0;
            }

            .nav-logo img { height: 34px; }

            /* one logo on mobile — the topbar one is the brand mark */
            .hero-logo { display: none; }

            .tab { padding: 76px 20px 48px; }

            .tab.home { padding: 0; }

            /* phones see the full image height, so the head sits inside
               the top fade — shorten the fade so the face stays visible */
            .hero-bg {
                top: 6vh;
                height: calc(100% - 6vh);
                object-position: center 20%;
                -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 9%, #000 72%, transparent 97%);
                mask-image: linear-gradient(180deg, transparent 0, #000 9%, #000 72%, transparent 97%);
            }

            .hero .ep-callout { bottom: 30px; }

            .tab.music.active { padding: 76px 20px 48px; }

            .tab.tour { padding: 0 0 48px; }

            .tour-hero { height: 36vh; }

            .show-row {
                grid-template-columns: 1fr auto;
                grid-template-areas:
                    "date  tix"
                    "venue tix"
                    "loc   tix";
                gap: 4px 16px;
                padding: 18px 2px;
            }

            .show-date  { grid-area: date; color: var(--muted); }
            .show-venue { grid-area: venue; }
            .show-loc   { grid-area: loc; }
            .show-row .btn-sm,
            .show-row .btn-ghost { grid-area: tix; align-self: center; }

            .tab.store.active {
                display: block;
                min-height: 0;
                padding: 76px 20px 48px;
            }

            .merch-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 26px 14px;
            }

            .merch-card.featured {
                grid-column: 1 / -1;
                grid-row: auto;
            }

            .merch-card.featured .merch-thumb img {
                aspect-ratio: 4 / 3;
                height: auto;
            }

            .store-head { margin-bottom: 26px; }

            .modal { padding: 12px; }

            .modal-panel { grid-template-columns: 1fr; }

            /* the panel scrolls on phones — pin the close button to the
               screen so it can't scroll out of reach, and make it solid
               so it reads over the white product image */
            .modal-close {
                position: fixed;
                top: 18px;
                right: 18px;
                width: 42px;
                height: 42px;
                font-size: 20px;
                background: rgba(14, 15, 18, 0.85);
                border: 1px solid var(--line);
                -webkit-backdrop-filter: blur(8px);
                backdrop-filter: blur(8px);
            }

            .modal-close:hover { background: rgba(14, 15, 18, 0.95); }

            .modal-img img { aspect-ratio: 4 / 3; }

            .modal-info { padding: 24px 22px; }

            .tab.about.active {
                display: flex;
                flex-direction: column;
                min-height: 0;
                padding: 76px 0 48px;
            }

            /* full-bleed swipe carousel at the top — slides touch the
               screen edges and each other; the signing shot leads */
            .gallery {
                height: auto;
                gap: 0;
                padding: 0;
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
            }

            .gallery::-webkit-scrollbar { display: none; }

            .gallery img,
            .gallery img:nth-child(3),
            .gallery img:not(:nth-child(3)):hover {
                flex: 0 0 100vw;
                width: 100vw;
                height: auto;
                aspect-ratio: 3 / 2;
                border-radius: 0;
                scroll-snap-align: start;
            }

            .gallery img:nth-child(3) { order: -1; }

            .about-text { margin: 34px auto 0; }
        }
