:root {
            --color-bg: #0a0a0a;
            --color-surface: #141414;
            --color-surface-hover: #1a1a1a;
            --color-border: #222;
            --color-text: #e8e8e8;
            --color-text-muted: #888;
            --color-accent: #c9a96e;
            --color-accent-dim: rgba(201, 169, 110, 0.12);
            --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            --font-serif: 'Playfair Display', Georgia, serif;
            --max-width: 820px;
        }

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

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: var(--font-sans);
            background: var(--color-bg);
            color: var(--color-text);
            line-height: 1.7;
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            background: rgba(10, 10, 10, 0.85);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--color-border);
        }

        .nav-inner {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 1.5rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 60px;
        }

        .nav-logo {
            font-family: var(--font-serif);
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--color-text);
            text-decoration: none;
            letter-spacing: -0.02em;
        }

        .nav-logo span {
            color: var(--color-accent);
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            color: var(--color-text-muted);
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 0.03em;
            text-transform: uppercase;
            transition: color 0.2s;
        }

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

        .nav-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
        }

        .nav-toggle span {
            display: block;
            width: 22px;
            height: 2px;
            background: var(--color-text);
            margin: 5px 0;
            transition: all 0.3s;
        }

        /* Hero */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 6rem 1.5rem 4rem;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -40%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, var(--color-accent-dim) 0%, transparent 70%);
            pointer-events: none;
        }

        .hero-content {
            max-width: var(--max-width);
            width: 100%;
            position: relative;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            align-items: center;
        }

        .hero-image {
            position: relative;
        }

        .hero-image img {
            width: 100%;
            border-radius: 16px;
            object-fit: cover;
            aspect-ratio: 3 / 4;
            border: 1px solid var(--color-border);
        }

        .hero-image::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 16px;
            border: 1px solid rgba(201, 169, 110, 0.15);
            pointer-events: none;
        }

        .hero-label {
            display: inline-block;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--color-accent);
            margin-bottom: 1.5rem;
            padding: 0.4rem 1rem;
            border: 1px solid rgba(201, 169, 110, 0.3);
            border-radius: 100px;
        }

        .hero h1 {
            font-family: var(--font-serif);
            font-size: clamp(2.8rem, 7vw, 5rem);
            font-weight: 700;
            line-height: 1.1;
            letter-spacing: -0.03em;
            margin-bottom: 1.5rem;
        }

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

        .hero-subtitle {
            font-size: 1.15rem;
            color: var(--color-text-muted);
            max-width: 540px;
            line-height: 1.8;
            margin-bottom: 2.5rem;
        }

        .hero-meta {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .hero-meta-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
            color: var(--color-text-muted);
        }

        .hero-meta-item svg {
            width: 18px;
            height: 18px;
            stroke: var(--color-accent);
            fill: none;
            stroke-width: 1.5;
        }

        .hero-meta-item a {
            color: inherit;
            text-decoration: none;
            transition: color 0.2s, text-decoration-color 0.2s;
        }

        .hero-meta-item a:hover {
            text-decoration: underline;
            text-underline-offset: 0.15em;
        }

        /* Sections */
        section {
            padding: 5rem 1.5rem;
        }

        .container {
            max-width: var(--max-width);
            margin: 0 auto;
        }

        .section-label {
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--color-accent);
            margin-bottom: 1rem;
        }

        .section-title {
            font-family: var(--font-serif);
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            font-weight: 700;
            letter-spacing: -0.02em;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .section-intro {
            color: var(--color-text-muted);
            font-size: 1.05rem;
            max-width: 600px;
            margin-bottom: 3rem;
            line-height: 1.8;
        }

        .divider {
            border: none;
            border-top: 1px solid var(--color-border);
            margin: 0;
        }

        /* About */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
        }

        .about-text p {
            color: var(--color-text-muted);
            margin-bottom: 1.25rem;
            line-height: 1.8;
        }

        .about-text p strong {
            color: var(--color-text);
            font-weight: 600;
        }

        .about-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            align-content: start;
        }

        .stat-card {
            background: var(--color-surface);
            border: 1px solid var(--color-border);
            border-radius: 12px;
            padding: 1.5rem;
            transition: border-color 0.2s;
        }

        .stat-card:hover {
            border-color: rgba(201, 169, 110, 0.3);
        }

        .stat-number {
            font-family: var(--font-serif);
            font-size: 2rem;
            font-weight: 700;
            color: var(--color-accent);
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 0.8rem;
            color: var(--color-text-muted);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        /* Timeline */
        .timeline {
            position: relative;
            padding-left: 2rem;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0.5rem;
            bottom: 0.5rem;
            width: 1px;
            background: var(--color-border);
        }

        .timeline-item {
            position: relative;
            padding-bottom: 2.5rem;
        }

        .timeline-item:last-child {
            padding-bottom: 0;
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: -2rem;
            top: 0.5rem;
            width: 9px;
            height: 9px;
            border-radius: 50%;
            background: var(--color-accent);
            transform: translateX(-4px);
        }

        .timeline-year {
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--color-accent);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 0.4rem;
        }

        .timeline-title {
            font-weight: 600;
            font-size: 1.05rem;
            margin-bottom: 0.4rem;
        }

        .timeline-desc {
            color: var(--color-text-muted);
            font-size: 0.95rem;
            line-height: 1.7;
        }

        /* Expertise */
        .expertise-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.25rem;
        }

        .expertise-card {
            background: var(--color-surface);
            border: 1px solid var(--color-border);
            border-radius: 12px;
            padding: 2rem 1.5rem;
            transition: all 0.2s;
        }

        .expertise-card:hover {
            border-color: rgba(201, 169, 110, 0.3);
            transform: translateY(-2px);
        }

        .expertise-icon {
            width: 44px;
            height: 44px;
            border-radius: 10px;
            background: var(--color-accent-dim);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.25rem;
        }

        .expertise-icon svg {
            width: 22px;
            height: 22px;
            stroke: var(--color-accent);
            fill: none;
            stroke-width: 1.5;
        }

        .expertise-card h3 {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 0.6rem;
        }

        .expertise-card p {
            color: var(--color-text-muted);
            font-size: 0.9rem;
            line-height: 1.7;
        }

        /* Quotes / Perspectives */
        .quotes-grid {
            display: grid;
            gap: 1.25rem;
        }

        .quote-card {
            background: var(--color-surface);
            border: 1px solid var(--color-border);
            border-radius: 12px;
            padding: 2rem;
            position: relative;
        }

        .quote-card::before {
            content: '\201C';
            font-family: var(--font-serif);
            font-size: 3.5rem;
            color: var(--color-accent);
            opacity: 0.4;
            position: absolute;
            top: 0.5rem;
            left: 1.5rem;
            line-height: 1;
        }

        .quote-card p {
            color: var(--color-text-muted);
            font-size: 0.95rem;
            line-height: 1.8;
            padding-top: 1rem;
            font-style: italic;
        }

        .quote-topic {
            display: inline-block;
            margin-top: 1rem;
            font-size: 0.7rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--color-accent);
            font-style: normal;
        }

        /* Writing Style */
        .style-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.25rem;
        }

        .style-item {
            display: flex;
            gap: 1rem;
            padding: 1.5rem;
            background: var(--color-surface);
            border: 1px solid var(--color-border);
            border-radius: 12px;
        }

        .style-item-icon {
            flex-shrink: 0;
            width: 36px;
            height: 36px;
            border-radius: 8px;
            background: var(--color-accent-dim);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .style-item-icon svg {
            width: 18px;
            height: 18px;
            stroke: var(--color-accent);
            fill: none;
            stroke-width: 1.5;
        }

        .style-item h4 {
            font-size: 0.95rem;
            font-weight: 600;
            margin-bottom: 0.3rem;
        }

        .style-item p {
            color: var(--color-text-muted);
            font-size: 0.85rem;
            line-height: 1.6;
        }

        /* Personal */
        .personal-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.25rem;
        }

        .personal-card {
            background: var(--color-surface);
            border: 1px solid var(--color-border);
            border-radius: 12px;
            padding: 1.75rem 1.5rem;
        }

        .personal-card h4 {
            font-size: 0.95rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .personal-card h4 svg {
            width: 18px;
            height: 18px;
            stroke: var(--color-accent);
            fill: none;
            stroke-width: 1.5;
        }

        .personal-card p {
            color: var(--color-text-muted);
            font-size: 0.9rem;
            line-height: 1.7;
        }

        /* Footer */
        footer {
            border-top: 1px solid var(--color-border);
            padding: 3rem 1.5rem;
        }

        .footer-inner {
            max-width: var(--max-width);
            margin: 0 auto;
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 2rem;
        }

        .footer-brand {
            display: flex;
            flex-direction: column;
            gap: 0.85rem;
            min-width: 0;
        }

        .footer-name {
            font-family: var(--font-serif);
            font-weight: 700;
            font-size: 1.1rem;
        }

        .footer-name span {
            color: var(--color-accent);
        }

        .footer-external {
            display: flex;
            flex-direction: row;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.35rem 1.25rem;
        }

        .footer-external a {
            color: var(--color-text-muted);
            text-decoration: none;
            font-size: 0.85rem;
            transition: color 0.2s;
        }

        .footer-external a:hover {
            color: var(--color-accent);
        }

        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            flex-shrink: 0;
        }

        .footer-links a {
            color: var(--color-text-muted);
            text-decoration: none;
            font-size: 0.85rem;
            transition: color 0.2s;
        }

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

        /* Mobile */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 60px;
                left: 0;
                right: 0;
                background: rgba(10, 10, 10, 0.95);
                backdrop-filter: blur(20px);
                -webkit-backdrop-filter: blur(20px);
                flex-direction: column;
                padding: 1.5rem;
                gap: 1rem;
                border-bottom: 1px solid var(--color-border);
            }

            .nav-links.active {
                display: flex;
            }

            .nav-toggle {
                display: block;
            }

            .about-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .expertise-grid {
                grid-template-columns: 1fr;
            }

            .style-features {
                grid-template-columns: 1fr;
            }

            .personal-grid {
                grid-template-columns: 1fr;
            }

            .hero {
                min-height: auto;
                padding: 7rem 1.5rem 3rem;
            }

            .hero-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .hero-image {
                order: -1;
                max-width: 240px;
            }

            .hero-meta {
                gap: 1rem;
            }

            section {
                padding: 3.5rem 1.5rem;
            }

            .footer-inner {
                flex-direction: column;
                align-items: center;
                gap: 1.25rem;
                text-align: center;
            }

            .footer-external {
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .about-stats {
                grid-template-columns: 1fr 1fr;
            }

            .hero h1 {
                font-size: 2.4rem;
            }
        }