        /* ── THEME VARIABLES ── */
        :root {
            --bg-main: #0d0a1a;
            --bg-card: #13102a;
            --text-main: #e8dff5;
            --text-muted: #9a87b8;
            --accent: #c084fc;
            --accent-hover: #e879f9;
            --gold: #f5c842;
            --rose: #f472b6;
            --border-color: #2a1f4a;
            --shadow: 0 4px 30px rgba(192,132,252,0.1);
            --card-glow: 0 0 20px rgba(192,132,252,0.08);
            --nav-h: 62px;
        }
        [data-theme="light"] {
            --bg-main: #fdf6ff;
            --bg-card: #fff9fe;
            --text-main: #1e0a2e;
            --text-muted: #6b4f8a;
            --accent: #9333ea;
            --accent-hover: #c026d3;
            --gold: #b45309;
            --rose: #db2777;
            --border-color: #e9d5ff;
            --shadow: 0 4px 30px rgba(147,51,234,0.08);
            --card-glow: 0 0 20px rgba(147,51,234,0.06);
        }

        /* ── RESET ── */
        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            font-family: 'Lato', sans-serif;
            font-weight: 300;
            background-color: var(--bg-main);
            color: var(--text-main);
            min-height: 100vh;
            overflow-x: hidden;
            transition: background-color 0.4s, color 0.4s;
        }
        body::before {
            content: '';
            position: fixed; inset: 0;
            background-image: radial-gradient(circle, rgba(192,132,252,0.05) 1px, transparent 1px);
            background-size: 32px 32px;
            pointer-events: none; z-index: 0;
        }
        a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
        a:hover { color: var(--accent-hover); }

        /* ── NAV ── */
        nav {
            position: sticky; top: 0; z-index: 100;
            height: var(--nav-h);
            background: var(--bg-main);
            border-bottom: 1px solid var(--border-color);
            transition: background 0.4s;
        }
        .nav-inner {
            max-width: 960px; margin: 0 auto;
            padding: 0 20px; height: 100%;
            display: flex; align-items: center;
            justify-content: space-between; gap: 16px;
        }
        .nav-logo {
            font-family: 'Cinzel Decorative', serif;
            font-size: 1.2rem; color: var(--accent); flex-shrink: 0;
        }
        /* Desktop links */
        .nav-links { display: flex; align-items: center; gap: 4px; }
        .nav-links a {
            font-size: 0.78rem; letter-spacing: 0.09em;
            text-transform: uppercase; color: var(--text-muted);
            padding: 6px 14px; border: 1px solid transparent;
            border-radius: 2px; transition: color 0.2s, border-color 0.2s;
        }
        .nav-links a:hover, .nav-links a.active {
            color: var(--accent); border-color: rgba(192,132,252,0.3);
        }
        .nav-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
        .theme-toggle {
            background: none; border: 1px solid var(--border-color);
            border-radius: 50%; width: 36px; height: 36px;
            font-size: 1rem; cursor: pointer; color: var(--text-main);
            display: flex; align-items: center; justify-content: center;
            transition: border-color 0.2s, transform 0.3s;
        }
        .theme-toggle:hover { border-color: var(--accent); transform: rotate(20deg); }

        /* Hamburger — hidden on desktop */
        .hamburger {
            display: none; flex-direction: column;
            align-items: center; justify-content: center; gap: 5px;
            background: none; border: 1px solid var(--border-color);
            border-radius: 2px; width: 36px; height: 36px;
            cursor: pointer; transition: border-color 0.2s;
        }
        .hamburger:hover { border-color: var(--accent); }
        .hamburger span {
            display: block; width: 16px; height: 1.5px;
            background: var(--text-muted); border-radius: 1px;
            transition: transform 0.25s, opacity 0.2s, background 0.2s;
        }
        .hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); background: var(--accent); }
        .hamburger.open span:nth-child(2) { opacity: 0; }
        .hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); background: var(--accent); }

        /* Mobile drawer */
        .nav-drawer {
            display: none;
            position: fixed; top: var(--nav-h); left: 0; right: 0;
            background: var(--bg-card);
            border-bottom: 1px solid var(--border-color);
            z-index: 99;
            transform: translateY(-6px); opacity: 0; pointer-events: none;
            transition: transform 0.25s ease, opacity 0.25s ease;
        }
        .nav-drawer.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
        .nav-drawer-inner { max-width: 960px; margin: 0 auto; padding: 10px 20px 18px; }
        .drawer-links { display: flex; flex-direction: column; gap: 2px; }
        .drawer-links a {
            display: flex; align-items: center; gap: 12px;
            font-size: 0.88rem; letter-spacing: 0.07em;
            text-transform: uppercase; color: var(--text-muted);
            padding: 11px 12px; border-radius: 2px;
            transition: color 0.2s, background 0.2s;
        }
        .drawer-links a .suit {
            font-size: 0.75rem; color: var(--rose);
            opacity: 0.5; width: 14px; flex-shrink: 0;
            transition: opacity 0.2s;
        }
        .drawer-links a:hover { color: var(--accent); background: rgba(192,132,252,0.06); }
        .drawer-links a:hover .suit { opacity: 1; }
        .drawer-links a.active { color: var(--accent); }
        .drawer-links a.active .suit { opacity: 1; color: var(--gold); }
        .drawer-divider {
            height: 1px;
            background: linear-gradient(to right, transparent, var(--border-color), transparent);
            margin: 6px 0;
        }

        /* ── HERO ── */
        .hero {
            position: relative; z-index: 1;
            max-width: 960px; margin: 52px auto 64px;
            text-align: center; padding: 0 20px;
        }
        .profile-frame {
            display: inline-block; position: relative; margin-bottom: 28px;
        }
        .profile-frame::before, .profile-frame::after {
            content: '♦'; position: absolute;
            font-size: 1.1rem; color: var(--gold); opacity: 0.7;
        }
        .profile-frame::before { top: -10px; left: -10px; }
        .profile-frame::after  { bottom: -10px; right: -10px; }
        .profile-pic {
            width: 140px; height: 140px; border-radius: 50%;
            object-fit: cover; border: 3px solid var(--accent);
            box-shadow: 0 0 0 6px rgba(192,132,252,0.1), var(--shadow);
            display: block;
        }
        .hero-eyebrow {
            font-family: 'IM Fell English', serif; font-style: italic;
            font-size: 0.9rem; color: var(--gold);
            letter-spacing: 0.08em; margin-bottom: 10px; opacity: 0.85;
        }
        h1 {
            font-family: 'Cinzel Decorative', serif;
            font-size: clamp(1.65rem, 5vw, 2.8rem);
            font-weight: 700; line-height: 1.2; margin-bottom: 14px;
            background: linear-gradient(135deg, var(--text-main) 0%, var(--accent) 60%, var(--rose) 100%);
            -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
        }
        .wonderland-divider {
            display: flex; align-items: center; gap: 12px;
            justify-content: center; margin: 14px 0;
            color: var(--accent); font-size: 0.85rem; opacity: 0.5;
        }
        .wonderland-divider::before, .wonderland-divider::after {
            content: ''; flex: 1; max-width: 100px; height: 1px;
            background: linear-gradient(to right, transparent, var(--accent), transparent);
        }
        .hero-bio {
            font-family: 'IM Fell English', serif; font-size: 1.05rem;
            color: var(--text-muted); max-width: 540px;
            margin: 0 auto 28px; line-height: 1.8;
        }
        .social-links { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
        .social-links a {
            font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase;
            padding: 8px 18px; border-radius: 2px;
            border: 1px solid var(--border-color); color: var(--text-muted);
            background: var(--bg-card);
            transition: border-color 0.2s, color 0.2s, box-shadow 0.2s;
        }
        .social-links a:hover { border-color: var(--accent); color: var(--accent); box-shadow: var(--card-glow); }

        /* ── CONTENT SECTION ── */
        .content-section {
            position: relative; z-index: 1;
            max-width: 960px; margin: 0 auto 80px; padding: 0 20px;
        }
        .section-heading { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
        .section-heading h2 {
            font-family: 'Cinzel Decorative', serif;
            font-size: 1.15rem; font-weight: 400; white-space: nowrap;
        }
        .section-heading::after {
            content: ''; flex: 1; height: 1px;
            background: linear-gradient(to right, var(--border-color), transparent);
        }
        .section-heading .suit { color: var(--rose); font-size: 0.9rem; }

        /* ── CARD GRID ── */
        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
        }
        .card {
            background: var(--bg-card); border-radius: 4px; overflow: hidden;
            border: 1px solid var(--border-color); box-shadow: var(--card-glow);
            transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
            display: flex; flex-direction: column;
            text-decoration: none; color: inherit; position: relative;
        }
        .card::before {
            content: '♠'; position: absolute; top: 10px; left: 12px;
            font-size: 0.8rem; color: var(--accent); opacity: 0.2;
            transition: opacity 0.2s; z-index: 2;
        }
        .card:hover::before { opacity: 0.7; }
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 36px rgba(192,132,252,0.18);
            border-color: rgba(192,132,252,0.35);
        }
        .card-img {
            width: 100%; height: 170px; object-fit: cover;
            filter: brightness(0.88) saturate(0.9);
            transition: filter 0.3s;
            border-bottom: 1px solid var(--border-color);
        }
        .card:hover .card-img { filter: brightness(1) saturate(1.05); }
        .card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
        .card-tag {
            font-size: 0.7rem; letter-spacing: 0.12em;
            text-transform: uppercase; color: var(--gold); margin-bottom: 8px;
        }
        .card-body h3 {
            font-family: 'IM Fell English', serif;
            font-size: 1.12rem; margin-bottom: 10px; line-height: 1.4;
        }
        .card-body p {
            font-size: 0.9rem; color: var(--text-muted);
            flex: 1; margin-bottom: 16px; line-height: 1.65;
        }
        .read-more {
            font-size: 0.78rem; letter-spacing: 0.1em;
            text-transform: uppercase; color: var(--accent);
        }
        .read-more::after { content: ' →'; }

        /* ── FOOTER ── */
        footer {
            position: relative; z-index: 1;
            text-align: center; padding: 28px 20px 40px;
            color: var(--text-muted);
            font-family: 'IM Fell English', serif; font-style: italic;
            font-size: 0.88rem; border-top: 1px solid var(--border-color);
        }
        footer span { color: var(--accent); }

        /* ── ANIMATION ── */
        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(16px); }
            to   { opacity: 1; transform: translateY(0); }
        }
        .hero            { animation: fadeUp 0.6s ease both; }
        .content-section { animation: fadeUp 0.6s 0.1s ease both; }

        /* ── RESPONSIVE: TABLET ── */
        @media (max-width: 768px) {
            .nav-links  { display: none; }
            .hamburger  { display: flex; }
            .nav-drawer { display: block; }
            .hero       { margin-top: 40px; }
            .grid       { grid-template-columns: 1fr 1fr; }
        }

        /* ── RESPONSIVE: MOBILE ── */
        @media (max-width: 520px) {
            .profile-pic { width: 110px; height: 110px; }
            .hero-bio    { font-size: 0.97rem; }
            .grid        { grid-template-columns: 1fr; }
            .social-links a { flex: 1 1 calc(50% - 5px); text-align: center; }
            .card-img    { height: 150px; }
        }