        :root {
            --off-black: #1a1a1a;
            --off-white: #fafafa;
            --mid-gray: #666;
            --light-gray: #e5e5e5;
            --accent: #2a2a2a;
        }

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

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--off-black);
            background-color: var(--off-white);
            font-weight: 300;
        }

        .container {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(250, 250, 250, 0.95);
            backdrop-filter: blur(8px);
            border-bottom: 1px solid var(--light-gray);
            z-index: 1000;
        }

        .nav-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 16px 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-weight: 500;
            font-size: 18px;
            color: var(--off-black);
            text-decoration: none;
        }

        .nav-links {
            display: flex;
            gap: 32px;
            list-style: none;
        }

        .nav-links a {
            color: var(--mid-gray);
            text-decoration: none;
            font-weight: 300;
            transition: color 0.2s ease;
            font-size: 14px;
        }

        .nav-links a:hover {
            color: var(--off-black);
        }

        /* Header */
        header {
            padding: 120px 0 80px;
            text-align: left;
        }

        h1 {
            font-size: 48px;
            font-weight: 300;
            margin-bottom: 16px;
            letter-spacing: -0.02em;
        }

        .tagline {
            font-size: 20px;
            color: var(--mid-gray);
            margin-bottom: 32px;
            font-weight: 300;
        }

        .intro {
            font-size: 16px;
            line-height: 1.7;
            max-width: 600px;
        }

        /* Section styling */
        section {
            margin-bottom: 80px;
        }

        .section-divider {
            width: 60px;
            height: 1px;
            background: var(--light-gray);
            margin: 80px 0 40px 0;
        }

        h2 {
            font-size: 24px;
            font-weight: 400;
            margin-bottom: 24px;
            letter-spacing: -0.01em;
        }

        h3 {
            font-size: 20px;
            font-weight: 400;
            margin-bottom: 16px;
            margin-top: 32px;
        }

        p {
            margin-bottom: 16px;
            line-height: 1.7;
        }

        /* Focus areas styling */
        .focus-areas {
            margin: 24px 0;
        }

        .focus-areas ul {
            list-style: none;
            margin-left: 0;
        }

        .focus-areas li {
            position: relative;
            padding-left: 16px;
            margin-bottom: 8px;
            color: var(--mid-gray);
        }

        .focus-areas li:before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--off-black);
        }

        /* Advisory sections */
        .advisory-section {
            margin-bottom: 48px;
            padding: 32px;
            background: rgba(255, 255, 255, 0.5);
            border: 1px solid var(--light-gray);
            border-radius: 2px;
        }

        /* Writing previews */
        .writing-preview {
            margin-bottom: 32px;
            padding-bottom: 32px;
            border-bottom: 1px solid var(--light-gray);
        }

        .writing-preview:last-child {
            border-bottom: none;
        }

        .writing-title {
            font-size: 18px;
            font-weight: 400;
            margin-bottom: 12px;
        }

        .writing-excerpt {
            color: var(--mid-gray);
            margin-bottom: 12px;
        }

        .read-more {
            color: var(--off-black);
            text-decoration: none;
            font-size: 14px;
            font-weight: 400;
        }

        .read-more:hover {
            text-decoration: underline;
        }

        /* Contact section */
        .contact-info {
            font-size: 16px;
            line-height: 1.8;
        }

        .contact-info a {
            color: var(--off-black);
            text-decoration: none;
        }

        .contact-info a:hover {
            text-decoration: underline;
        }

        /* Footer */
        footer {
            margin-top: 80px;
            padding: 40px 0;
            border-top: 1px solid var(--light-gray);
            font-size: 14px;
            color: var(--mid-gray);
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-links {
            display: flex;
            gap: 24px;
        }

        .footer-links a {
            color: var(--mid-gray);
            text-decoration: none;
        }

        .footer-links a:hover {
            color: var(--off-black);
        }

        /* Responsive design */
        @media (max-width: 768px) {
            .container {
                padding: 0 16px;
            }

            .nav-container {
                padding: 16px;
            }

            .nav-links {
                gap: 20px;
            }

            h1 {
                font-size: 36px;
            }

            .tagline {
                font-size: 18px;
            }

            header {
                padding: 100px 0 60px;
            }

            section {
                margin-bottom: 60px;
            }

            .advisory-section {
                padding: 24px;
            }

            .footer-content {
                flex-direction: column;
                gap: 16px;
                text-align: center;
            }
        }

        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }

        /* Archive page styles (hidden by default) */
        .archive-page {
            display: none;
            padding-top: 80px;
        }

        .archive-page.active {
            display: block;
        }

        .main-page.hidden {
            display: none;
        }

        .back-link {
            display: inline-block;
            margin-bottom: 32px;
            color: var(--mid-gray);
            text-decoration: none;
            font-size: 14px;
        }

        .back-link:hover {
            color: var(--off-black);
        }

        .article-list {
            list-style: none;
        }

        .article-item {
            margin-bottom: 40px;
            padding-bottom: 32px;
            border-bottom: 1px solid var(--light-gray);
        }

        .article-item:last-child {
            border-bottom: none;
        }