
        :root {
            --ink: #0a0a0a;
            --paper: #f5f2ec;
            --mid: #e8e3d8;
            --gray: #5a5a5a;
            --border: 3px solid #0a0a0a;
            --accent: #07948B;
            --social-icon-filter: none;
            --social-icon-filter-hover: invert(1);
        }

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

        /* Apply dark mode to html element to avoid FOUC */
        html.dark-mode body {
            --ink: #f0ece4;
            --paper: #0a0a0a;
            --mid: #1a1a1a;
            --gray: #9a9a9a;
        }

        html.dark-mode {
            --ink: #f0ece4;
            --paper: #0a0a0a;
            --mid: #1a1a1a;
            --gray: #9a9a9a;
            --social-icon-filter: invert(1);
            --social-icon-filter-hover: none;
        }

        body {
            background: var(--paper);
            color: var(--ink);
            font-family: 'Dosis', sans-serif;
            font-weight: 500;
            font-size: 16px;
            line-height: 1.5;
            transition: background 0.3s, color 0.3s;
            min-height: 100vh;
        }

        body.dark-mode {
            --ink: #f0ece4;
            --paper: #0a0a0a;
            --mid: #1a1a1a;
            --gray: #9a9a9a;
        }

        /* === HEADER === */
        header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: var(--paper);
            border-bottom: var(--border);
            padding: 0 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 60px;
            transition: background 0.3s;
        }

        .logo {
            font-family: 'Amatic SC', sans-serif;
            font-weight: 700;
            font-size: 2rem;
            color: var(--ink);
            text-decoration: none;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        nav {
            display: flex;
            align-items: center;
            gap: 0;
        }

        nav a {
            font-family: 'Dosis', sans-serif;
            font-weight: 700;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--ink);
            text-decoration: none;
            padding: 0 1rem;
            height: 60px;
            display: flex;
            align-items: center;
            border-left: 1px solid var(--ink);
            transition: background 0.2s, color 0.2s;
        }

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

        .nav-icons {
            display: flex;
            align-items: center;
            gap: 0;
            border-left: var(--border);
            margin-left: 0.5rem;
        }

        .nav-icons a {
            width: 44px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-left: 1px solid var(--ink);
            color: var(--ink);
            text-decoration: none;
            transition: background 0.2s, color 0.2s;
        }

        .nav-icons a:hover {
            background: var(--ink);
            color: var(--paper);
        }

        .nav-icons a:first-child { border-left: none; }

        .social-icon-img {
            width: 18px;
            height: 18px;
            display: block;
            object-fit: contain;
            filter: var(--social-icon-filter);
        }

        .nav-icons a:hover .social-icon-img,
        .nav-icons a:focus-visible .social-icon-img {
            filter: var(--social-icon-filter-hover);
        }

        /* Theme toggle */
        .toggle-btn {
            width: 44px;
            height: 60px;
            border: none;
            background: none;
            cursor: pointer;
            border-left: 1px solid var(--ink);
            color: var(--ink);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s, color 0.2s;
            padding: 0;
        }

        .toggle-btn:hover { background: var(--ink); color: var(--paper); }

        .toggle-btn svg { pointer-events: none; }

        /* Show/hide sun and moon icons */
        .icon-sun { display: block; }
        .icon-moon { display: none; }

        body.dark-mode .icon-sun { display: none; }
        body.dark-mode .icon-moon { display: block; }

        /* Hamburger Menu */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
        }

        .hamburger span {
            display: block;
            width: 25px;
            height: 3px;
            background: var(--ink);
            transition: transform 0.3s, opacity 0.3s;
        }

        .hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
        .hamburger.active span:nth-child(2) { opacity: 0; }
        .hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

        @media (max-width: 768px) {
            body.menu-open { overflow: hidden; }
            header { padding: 0 0.75rem; }
            .hamburger { display: flex; }

            .toggle-btn {
                width: 44px;
                border-left: none;
                border-right: 1px solid var(--ink);
            }

            nav {
                position: fixed;
                top: 60px;
                left: 0;
                width: 100%;
                background: var(--paper);
                border-top: var(--border);
                flex-direction: column;
                align-items: stretch;
                gap: 0;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
            }

            nav.active {
                max-height: calc(100dvh - 60px);
                overflow-y: auto;
                overscroll-behavior: contain;
                -webkit-overflow-scrolling: touch;
                padding-bottom: env(safe-area-inset-bottom);
            }

            nav a {
                border-left: none;
                border-bottom: 1px solid var(--ink);
                min-height: 52px;
                width: 100%;
                justify-content: center;
                padding: 0 1rem;
            }

            .nav-icons {
                display: flex;
                flex-direction: row;
                border-left: none;
                border-top: none;
                border-bottom: none;
                margin-left: 0;
                width: 100%;
            }

            .nav-icons a {
                flex: 1;
                border-left: 1px solid var(--ink);
                min-height: 52px;
            }

            .nav-icons a:first-child { border-left: none; }
            .social-icon-img { width: 20px; height: 20px; }
        }

        /* === HERO === */
        .hero {
            max-width: 950px;
            margin: 0 auto;
            padding: 6rem 2rem 4rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            border-bottom: var(--border);
        }

        @media (max-width: 680px) {
            .hero { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1rem; }
            nav a { padding: 0 0.6rem; font-size: 0.75rem; }
        }

        .hero-text h1 {
            font-family: 'Amatic SC', sans-serif;
            font-weight: 700;
            font-size: clamp(3rem, 8vw, 5rem);
            line-height: 1;
            text-transform: uppercase;
            margin-bottom: 1rem;
            letter-spacing: 2px;
        }

        .hero-text h1 span {
            display: block;
            font-size: clamp(1.5rem, 4vw, 2.5rem);
            font-weight: 400;
            letter-spacing: 4px;
            color: var(--gray);
            margin-bottom: 0.5rem;
        }

        .hero-text p {
            font-size: 1.1rem;
            line-height: 1.7;
            color: var(--gray);
            margin-bottom: 2rem;
        }

        .hero-cta {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .btn {
            font-family: 'Dosis', sans-serif;
            font-weight: 700;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            padding: 0.75rem 2rem;
            text-decoration: none;
            border: var(--border);
            display: inline-block;
            transition: background 0.2s, color 0.2s;
            color: var(--ink);
            background: transparent;
        }

        .btn:hover, .btn-solid {
            background: var(--ink);
            color: var(--paper);
        }

        .btn-solid:hover {
            background: transparent;
            color: var(--ink);
        }

        .hero-image {
            display: flex;
            justify-content: center;
        }

        .hero-image img {
            width: 100%;
            max-width: 320px;
            border: var(--border);
            animation: floatnm 4s ease-in-out infinite;
        }

        @keyframes floatnm {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-12px); }
        }

        /* === STATS BAR === */
        .stats-bar {
            max-width: 950px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            border-bottom: var(--border);
        }

        .stat {
            padding: 2rem;
            border-right: 1px solid var(--ink);
            text-align: center;
        }

        .stat:last-child { border-right: none; }

        .stat-num {
            font-family: 'Amatic SC', sans-serif;
            font-size: 3rem;
            font-weight: 700;
            display: block;
        }

        .stat-label {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--gray);
        }

        /* === ROLES === */
        .roles {
            max-width: 950px;
            margin: 0 auto;
            padding: 4rem 2rem;
            border-bottom: var(--border);
        }

        .roles-title {
            font-family: 'Amatic SC', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 2rem;
            letter-spacing: 2px;
        }

        .roles-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 0;
        }

        .role-card {
            border: 1px solid var(--ink);
            padding: 2rem 1.5rem;
            margin: -1px 0 0 -1px;
            transition: background 0.2s;
        }

        .role-card:hover {
            background: var(--ink);
            color: var(--paper);
        }

        .role-card h3 {
            font-family: 'Amatic SC', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 0.5rem;
        }

        .role-card p {
            font-size: 0.9rem;
            color: var(--gray);
            line-height: 1.6;
        }

        .role-card:hover p { color: var(--paper); opacity: 0.8; }

        /* === FOOTER === */
        footer {
            border-top: var(--border);
            padding: 2rem;
            text-align: center;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--gray);
            max-width: 950px;
            margin: 0 auto;
        }

        ::-webkit-scrollbar { width: 3px; }
        ::-webkit-scrollbar-thumb { background: var(--ink); }
    