:root {
            --bg: #ffffff;
            --text: #000000;
            --accent: #d90429; /* Cinematic Red */
            --border: #eeeeee;
            --speed: 0.5s;
        }

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

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

        /* --- Page Structure --- */
        .page-grid {
            display: grid;
            grid-template-columns: 80px 1fr 80px;
            min-height: 100vh;
        }

        .side-bar {
            border-right: 1px solid var(--border);
            border-left: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            writing-mode: vertical-rl;
            text-transform: uppercase;
            letter-spacing: 5px;
            font-size: 0.65rem;
            color: #bbb;
        }

        .main-content {
            padding: 80px 60px;
            max-width: 1100px;
            margin: 0 auto;
        }

        /* --- Hero Section --- */
        header {
            margin-bottom: 120px;
        }

        .tagline {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 4px;
            margin-bottom: 20px;
            color: var(--accent);
            font-weight: 700;
        }

        h1 {
            font-family: 'Syne', sans-serif;
            font-size: clamp(3.5rem, 12vw, 8rem);
            line-height: 0.8;
            text-transform: uppercase;
            margin-left: -5px;
        }

        .intro-container {
            margin-top: 40px;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 40px;
        }

        .bio {
            max-width: 500px;
            font-size: 1.2rem;
            line-height: 1.6;
            font-weight: 300;
        }

        .bio b { font-weight: 600; color: var(--text); }

        /* --- Section Grid --- */
        .section-label {
            font-family: 'Syne', sans-serif;
            font-weight: 800;
            font-size: 1.5rem;
            margin-bottom: 20px;
            text-transform: uppercase;
            border-bottom: 2px solid var(--text);
            display: inline-block;
        }

        .work-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1px;
            background: var(--border);
            border: 1px solid var(--border);
            margin-bottom: 100px;
        }

        .work-item {
            background: var(--bg);
            padding: 40px;
            transition: var(--speed);
            text-decoration: none;
            color: inherit;
        }

        .work-item:hover {
            background: #fafafa;
        }

        .work-item i {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: var(--accent);
        }

        .work-item h3 {
            font-family: 'Syne', sans-serif;
            font-size: 1.8rem;
            margin-bottom: 10px;
        }

        .work-item p {
            color: #777;
            font-size: 0.95rem;
            line-height: 1.4;
        }

        /* --- Footer --- */
        footer {
            padding-top: 40px;
            border-top: 1px solid var(--border);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .social-circle {
            width: 50px;
            height: 50px;
            border: 1px solid var(--border);
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            transition: 0.3s;
            color: var(--text);
            text-decoration: none;
        }

        .social-circle:hover {
            background: var(--accent);
            color: white;
            border-color: var(--accent);
        }

        @media (max-width: 768px) {
            .page-grid { grid-template-columns: 1fr; }
            .side-bar { display: none; }
            .work-grid { grid-template-columns: 1fr; }
            .main-content { padding: 40px 20px; }
            .intro-container { flex-direction: column; }
        }