        /* ─── VARIABLES ─────────────────────────────────────── */
        :root {
            --pink: #d12464;
            --deep: #8b0f3c;
            --darkbg: #110608;
            --offwhite: #fdf6f0;
            --warm: #fce9e0;
            --text: #1a0a10;
            --muted: #7a4a5a;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Nunito', sans-serif;
            background: var(--offwhite);
            color: var(--text);
            overflow-x: hidden;
        }

        /* ─── STICKY HEADER ─────────────────────────────────── */
        #sticky-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: var(--pink);
            height: 58px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 20px;
            box-shadow: 0 3px 16px rgba(209, 36, 100, .35);
            opacity: 0;
            transform: translateY(-100%);
            pointer-events: none;
            transition: opacity .3s ease, transform .3s ease;
        }

        #sticky-header.visible {
            opacity: 1;
            transform: translateY(0);
            pointer-events: all;
        }

        .header-logo {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1.55rem;
            letter-spacing: .06em;
            color: #fff;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .hamburger {
            background: none;
            border: none;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            padding: 6px;
            border-radius: 6px;
            transition: background .2s;
            order: -1;
        }

        .hamburger:hover {
            background: rgba(255, 255, 255, .15);
        }

        .hamburger span {
            display: block;
            width: 22px;
            height: 2px;
            background: #fff;
            border-radius: 2px;
            transition: transform .3s ease, opacity .3s ease;
            transform-origin: center;
        }

        .hamburger.open span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        .hamburger.open span:nth-child(2) {
            opacity: 0;
            transform: scaleX(0);
        }

        .hamburger.open span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        .header-spacer {
            width: 34px;
        }

        /* ─── NAV DRAWER ─────────────────────────────────────── */
        #nav-drawer {
            position: fixed;
            top: 58px;
            left: 0;
            width: min(280px, 85vw);
            height: calc(100vh - 58px);
            background: var(--darkbg);
            z-index: 999;
            padding: 24px 0;
            transform: translateX(-100%);
            transition: transform .35s cubic-bezier(.4, 0, .2, 1);
            overflow-y: auto;
        }

        #nav-drawer.open {
            transform: translateX(0);
        }

        #nav-drawer nav a {
            display: flex;
            align-items: center;
            gap: 12px;
            color: #fff;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            padding: 14px 28px;
            transition: background .2s, color .2s;
            border-left: 3px solid transparent;
        }

        #nav-drawer nav a:hover {
            background: rgba(209, 36, 100, .25);
            border-left-color: var(--pink);
            color: #f9b8d2;
        }

        #nav-drawer nav a .icon {
            font-size: 1.15rem;
            width: 22px;
            text-align: center;
        }

        .drawer-divider {
            height: 1px;
            background: rgba(255, 255, 255, .08);
            margin: 10px 28px;
        }

        #drawer-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, .45);
            z-index: 998;
            opacity: 0;
            pointer-events: none;
            transition: opacity .35s;
        }

        #drawer-overlay.visible {
            opacity: 1;
            pointer-events: all;
        }

        /* ─── HERO ───────────────────────────────────────────── */
        .hero {
            min-height: 100vh;
            background: var(--darkbg);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 60px 24px 80px;
            position: relative;
            overflow: hidden;
        }

        /* Subtle texture overlay */
        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse 80% 60% at 50% 0%, rgba(209, 36, 100, .18) 0%, transparent 70%),
                radial-gradient(ellipse 60% 40% at 80% 80%, rgba(139, 15, 60, .25) 0%, transparent 60%);
            pointer-events: none;
        }

        /* Paw print watermark */
        .hero::after {
            content: '🐾';
            position: absolute;
            font-size: 40vw;
            opacity: .03;
            bottom: -5vw;
            right: -5vw;
            pointer-events: none;
            line-height: 1;
        }

        .hero-eyebrow {
            font-family: 'Nunito', sans-serif;
            font-size: .8rem;
            font-weight: 700;
            letter-spacing: .25em;
            text-transform: uppercase;
            color: var(--pink);
            margin-bottom: 20px;
            opacity: 0;
            animation: fadeUp .6s ease .2s forwards;
        }

        .hero h1 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: clamp(3.5rem, 12vw, 9rem);
            line-height: .95;
            letter-spacing: .03em;
            color: #fff;
            opacity: 0;
            animation: fadeUp .7s ease .35s forwards;
        }

        .hero h1 span {
            color: var(--pink);
        }

        .hero-tagline {
            font-family: 'Playfair Display', serif;
            font-style: italic;
            font-size: clamp(1rem, 2.5vw, 1.35rem);
            color: rgba(255, 255, 255, .7);
            max-width: 540px;
            margin-top: 24px;
            line-height: 1.6;
            opacity: 0;
            animation: fadeUp .7s ease .5s forwards;
        }

        .hero-cta-row {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            justify-content: center;
            margin-top: 40px;
            opacity: 0;
            animation: fadeUp .7s ease .65s forwards;
        }

        .btn-primary {
            background: var(--pink);
            color: #fff;
            border: none;
            padding: 14px 32px;
            font-family: 'Nunito', sans-serif;
            font-weight: 700;
            font-size: 1rem;
            letter-spacing: .04em;
            border-radius: 4px;
            cursor: pointer;
            text-decoration: none;
            transition: background .2s, transform .15s;
        }

        .btn-primary:hover {
            background: var(--deep);
            transform: translateY(-2px);
        }

        .btn-ghost {
            background: transparent;
            color: #fff;
            border: 2px solid rgba(255, 255, 255, .3);
            padding: 14px 32px;
            font-family: 'Nunito', sans-serif;
            font-weight: 700;
            font-size: 1rem;
            letter-spacing: .04em;
            border-radius: 4px;
            cursor: pointer;
            text-decoration: none;
            transition: border-color .2s, transform .15s;
        }

        .btn-ghost:hover {
            border-color: #fff;
            transform: translateY(-2px);
        }

        .scroll-hint {
            position: absolute;
            bottom: 32px;
            left: 50%;
            transform: translateX(-50%);
            color: rgba(255, 255, 255, .35);
            font-size: .8rem;
            letter-spacing: .1em;
            text-transform: uppercase;
            animation: bounce 1.6s infinite;
        }

        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(28px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes bounce {

            0%,
            100% {
                transform: translateX(-50%) translateY(0);
            }

            50% {
                transform: translateX(-50%) translateY(8px);
            }
        }

        /* ─── SECTION BASE ───────────────────────────────────── */
        section {
            padding: 100px 24px;
        }

        .section-inner {
            max-width: 960px;
            margin: 0 auto;
        }

        .section-label {
            font-size: .75rem;
            font-weight: 700;
            letter-spacing: .22em;
            text-transform: uppercase;
            color: var(--pink);
            margin-bottom: 12px;
        }

        .section-title {
            font-family: 'Bebas Neue', sans-serif;
            font-size: clamp(2.4rem, 6vw, 4rem);
            line-height: 1;
            color: var(--text);
            margin-bottom: 24px;
        }

        .section-title.light {
            color: #fff;
        }

        .lead {
            font-size: 1.15rem;
            line-height: 1.8;
            color: var(--muted);
            max-width: 680px;
        }

        .lead.light {
            color: rgba(255, 255, 255, .75);
        }

        /* ─── THE 300 SECTION ────────────────────────────────── */
        #the-300 {
            background: var(--darkbg);
            position: relative;
            overflow: hidden;
        }

        #the-300::before {
            content: '300';
            position: absolute;
            font-family: 'Bebas Neue', sans-serif;
            font-size: 40vw;
            color: rgba(255, 255, 255, .02);
            right: -5vw;
            top: 50%;
            transform: translateY(-50%);
            pointer-events: none;
            line-height: 1;
        }

        .shares-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
            margin-top: 56px;
        }

        .share-card {
            background: rgba(255, 255, 255, .04);
            border: 1px solid rgba(255, 255, 255, .08);
            border-radius: 8px;
            padding: 28px 24px;
            transition: border-color .25s, transform .2s;
            position: relative;
        }

        .share-card:hover {
            border-color: var(--pink);
            transform: translateY(-4px);
        }

        .share-card .fraction {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 2.6rem;
            color: var(--pink);
            line-height: 1;
        }

        .share-card .share-name {
            font-weight: 700;
            color: #fff;
            margin: 8px 0 4px;
            font-size: 1rem;
        }

        .share-card .share-price {
            font-size: .9rem;
            color: rgba(255, 255, 255, .5);
        }

        .share-card .share-desc {
            font-size: .85rem;
            color: rgba(255, 255, 255, .4);
            margin-top: 10px;
            line-height: 1.5;
        }

        .share-card.featured {
            border-color: var(--pink);
            background: rgba(209, 36, 100, .08);
        }

        .share-badge {
            position: absolute;
            top: -10px;
            right: 16px;
            background: var(--pink);
            color: #fff;
            font-size: .65rem;
            font-weight: 700;
            letter-spacing: .1em;
            text-transform: uppercase;
            padding: 3px 10px;
            border-radius: 20px;
        }

        .full-seat-box {
            margin-top: 24px;
            background: linear-gradient(135deg, rgba(209, 36, 100, .15), rgba(139, 15, 60, .2));
            border: 1px solid rgba(209, 36, 100, .3);
            border-radius: 8px;
            padding: 28px 32px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
        }

        .full-seat-box .seat-info h3 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1.8rem;
            color: #fff;
            letter-spacing: .04em;
        }

        .full-seat-box .seat-info p {
            color: rgba(255, 255, 255, .55);
            font-size: .9rem;
            margin-top: 4px;
        }

        .full-seat-box .seat-price {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 2.4rem;
            color: var(--pink);
            white-space: nowrap;
        }

        /* ─── LEGACY FUND SECTION ────────────────────────────── */
        #legacy {
            background: var(--warm);
        }

        .legacy-story {
            background: #fff;
            border-radius: 10px;
            padding: 40px 36px;
            margin-top: 40px;
            border-left: 5px solid var(--pink);
            box-shadow: 0 4px 30px rgba(209, 36, 100, .07);
        }

        .legacy-story p {
            font-size: 1.05rem;
            line-height: 1.85;
            color: var(--text);
            margin-bottom: 16px;
        }

        .legacy-story p:last-child {
            margin-bottom: 0;
        }

        .legacy-story strong {
            color: var(--pink);
        }

        .legacy-flow {
            display: flex;
            flex-wrap: wrap;
            gap: 0;
            margin-top: 48px;
            position: relative;
        }

        .flow-step {
            flex: 1;
            min-width: 180px;
            text-align: center;
            padding: 24px 16px;
            position: relative;
        }

        .flow-step::after {
            content: '→';
            position: absolute;
            right: -12px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.4rem;
            color: var(--pink);
            opacity: .5;
        }

        .flow-step:last-child::after {
            display: none;
        }

        .flow-icon {
            font-size: 2.4rem;
            margin-bottom: 12px;
        }

        .flow-step h4 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1.1rem;
            letter-spacing: .05em;
            color: var(--text);
            margin-bottom: 6px;
        }

        .flow-step p {
            font-size: .83rem;
            color: var(--muted);
            line-height: 1.5;
        }

        /* ─── MERCH / BOOK SECTION ───────────────────────────── */
        #merch {
            background: var(--offwhite);
        }

        .merch-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 24px;
            margin-top: 48px;
        }

        .merch-card {
            background: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 2px 16px rgba(0, 0, 0, .06);
            transition: transform .2s, box-shadow .2s;
        }

        .merch-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 32px rgba(209, 36, 100, .13);
        }

        .merch-thumb {
            background: linear-gradient(135deg, var(--pink), var(--deep));
            height: 180px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
        }

        .merch-body {
            padding: 20px;
        }

        .merch-body h3 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1.4rem;
            letter-spacing: .04em;
            color: var(--text);
            margin-bottom: 4px;
        }

        .merch-body p {
            font-size: .85rem;
            color: var(--muted);
            line-height: 1.5;
            margin-bottom: 16px;
        }

        .merch-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 20px;
            border-top: 1px solid #f0e8e8;
        }

        .merch-price {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1.5rem;
            color: var(--pink);
        }

        .merch-price small {
            font-family: 'Nunito', sans-serif;
            font-size: .7rem;
            color: var(--muted);
            font-weight: 600;
            display: block;
            line-height: 1;
            letter-spacing: .05em;
        }

        .btn-sm {
            background: var(--pink);
            color: #fff;
            border: none;
            padding: 9px 20px;
            font-family: 'Nunito', sans-serif;
            font-weight: 700;
            font-size: .85rem;
            border-radius: 4px;
            cursor: pointer;
            text-decoration: none;
            transition: background .2s;
        }

        .btn-sm:hover {
            background: var(--deep);
        }

        /* ─── FOOTER ─────────────────────────────────────────── */
        footer {
            background: var(--darkbg);
            color: rgba(255, 255, 255, .4);
            text-align: center;
            padding: 40px 24px;
            font-size: .85rem;
            line-height: 1.8;
        }

        footer a {
            color: var(--pink);
            text-decoration: none;
        }

        footer .footer-logo {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1.8rem;
            color: #fff;
            letter-spacing: .06em;
            margin-bottom: 8px;
        }

        /* ─── RESPONSIVE ─────────────────────────────────────── */
        @media (max-width: 600px) {
            .flow-step::after {
                display: none;
            }

            .flow-step {
                min-width: 100%;
                border-bottom: 1px solid rgba(0, 0, 0, .07);
            }

            .full-seat-box {
                flex-direction: column;
            }
        }