* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --bg-primary: #fafafa;
            --bg-secondary: #ffffff;
            --bg-dark: #0a0a0a;
            --text-primary: #111111;
            --text-secondary: #666666;
            --text-light: #999999;
            --accent: #c9a962;
            --accent-dark: #b8984d;
            --border: #e8e8e8;
            --border-light: #f2f2f2;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
            cursor: none;
        }

        /* Custom Cursor */
        .cursor {
            width: 12px;
            height: 12px;
            background: var(--accent);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 9999;
            mix-blend-mode: difference;
            transition: transform 0.15s ease, width 0.3s ease, height 0.3s ease;
        }

        .cursor.hover {
            width: 60px;
            height: 60px;
            background: transparent;
            border: 1px solid var(--accent);
        }

        .cursor-dot {
            width: 4px;
            height: 4px;
            background: var(--text-primary);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 10000;
        }

        /* Grain Overlay */
        .grain {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 9998;
            opacity: 0.03;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 2rem 4rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            mix-blend-mode: difference;
        }

        nav.scrolled {
            background: rgba(250, 250, 250, 0.9);
            backdrop-filter: blur(20px);
            mix-blend-mode: normal;
            padding: 1.25rem 4rem;
        }

        .logo {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            font-weight: 600;
            color: white;
            text-decoration: none;
            letter-spacing: 0.5px;
        }

        nav.scrolled .logo {
            color: var(--text-primary);
        }

        .nav-links {
            display: flex;
            gap: 3rem;
            list-style: none;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            font-size: 0.875rem;
            font-weight: 500;
            letter-spacing: 0.5px;
            position: relative;
            padding: 0.5rem 0;
        }

        nav.scrolled .nav-links a {
            color: var(--text-secondary);
        }

        .nav-links a::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: var(--accent);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .nav-links a:hover::before {
            transform: scaleX(1);
            transform-origin: left;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            position: relative;
            overflow: hidden;
            background: var(--bg-dark);
            display: flex;
            align-items: center;
            padding-top: 8rem;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            overflow: hidden;
        }

        .hero-bg::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 50%, rgba(0,0,0,0.8) 100%);
        }

        .hero-content {
            position: relative;
            z-index: 2;
            padding: 0 4rem;
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: center;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.75rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 2rem;
            font-weight: 600;
        }

        .hero-badge::before {
            content: '◆';
            font-size: 1rem;
        }

        .hero-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(3.5rem, 6vw, 6rem);
            font-weight: 400;
            line-height: 1;
            letter-spacing: -3px;
            color: white;
            margin-bottom: 1rem;
        }

        .hero-subtitle {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(1.5rem, 3vw, 2.5rem);
            font-weight: 400;
            font-style: italic;
            color: var(--accent);
            margin-bottom: 2rem;
            letter-spacing: -1px;
        }

        .hero-description {
            font-size: 1.125rem;
            color: rgba(255,255,255,0.6);
            line-height: 1.8;
            margin-bottom: 3rem;
            max-width: 500px;
        }

        .hero-cta {
            display: flex;
            gap: 1.5rem;
            align-items: center;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1.25rem 2.5rem;
            background: var(--accent);
            color: white;
            text-decoration: none;
            font-size: 0.875rem;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            transition: all 0.4s ease;
            border: none;
            cursor: none;
        }

        .btn-primary:hover {
            background: var(--accent-dark);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(201, 169, 98, 0.3);
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1.25rem 2.5rem;
            background: transparent;
            color: white;
            text-decoration: none;
            font-size: 0.875rem;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            border: 1px solid rgba(255,255,255,0.3);
            transition: all 0.4s ease;
            cursor: none;
        }

        .btn-secondary:hover {
            border-color: var(--accent);
            color: var(--accent);
        }

        /* Founder Image */
        .founder-image-container {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .founder-image-wrapper {
            position: relative;
            width: 100%;
            max-width: 500px;
        }

        .founder-image {
            width: 100%;
            height: auto;
            border-radius: 20px;
            position: relative;
            z-index: 2;
            filter: contrast(1.05);
        }

        .image-frame {
            position: absolute;
            inset: -20px;
            border: 2px solid var(--accent);
            border-radius: 24px;
            z-index: 1;
            opacity: 0.5;
        }

        .image-accent {
            position: absolute;
            bottom: -30px;
            right: -30px;
            width: 150px;
            height: 150px;
            background: var(--accent);
            border-radius: 20px;
            z-index: 0;
            opacity: 0.2;
        }

        .experience-badge {
            position: absolute;
            bottom: 40px;
            left: -40px;
            background: var(--bg-secondary);
            padding: 1.5rem 2rem;
            border-radius: 12px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
            z-index: 3;
        }

        .experience-number {
            font-family: 'Cormorant Garamond', serif;
            font-size: 3rem;
            font-weight: 600;
            color: var(--accent);
            line-height: 1;
        }

        .experience-text {
            font-size: 0.875rem;
            color: var(--text-secondary);
            margin-top: 0.25rem;
        }

        /* Stats Bar */
        .stats-bar {
            background: var(--bg-secondary);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
            padding: 4rem 0;
        }

        .stats-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 4rem;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 3rem;
        }

        .stat-item {
            text-align: center;
            padding: 0 1.5rem;
            border-right: 1px solid var(--border);
        }

        .stat-item:last-child {
            border-right: none;
        }

        .stat-value {
            font-family: 'Cormorant Garamond', serif;
            font-size: 3.5rem;
            font-weight: 400;
            color: var(--accent);
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 0.875rem;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* About Section */
        .about-section {
            background: var(--bg-primary);
            padding: 8rem 4rem;
        }

        .about-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: start;
        }

        .about-header {
            position: sticky;
            top: 120px;
        }

        .about-header h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2.5rem, 4vw, 3.5rem);
            font-weight: 400;
            letter-spacing: -1px;
            margin-bottom: 1.5rem;
            line-height: 1.1;
        }

        .about-header h2 em {
            font-style: italic;
            color: var(--accent);
        }

        .about-content p {
            color: var(--text-secondary);
            font-size: 1.125rem;
            line-height: 1.9;
            margin-bottom: 1.5rem;
        }

        .about-content p.lead {
            color: var(--text-primary);
            font-size: 1.25rem;
            font-weight: 500;
        }

        /* Expertise Section */
        .expertise-section {
            background: var(--bg-dark);
            color: white;
            padding: 8rem 4rem;
            position: relative;
            overflow: hidden;
        }

        .expertise-decoration {
            position: absolute;
            top: 50%;
            right: -200px;
            transform: translateY(-50%);
            width: 600px;
            height: 600px;
            border: 1px solid rgba(255,255,255,0.05);
            border-radius: 50%;
            pointer-events: none;
        }

        .expertise-header {
            text-align: center;
            margin-bottom: 5rem;
            position: relative;
            z-index: 1;
        }

        .expertise-header h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 400;
            letter-spacing: -1px;
        }

        .expertise-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .expertise-card {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.1);
            padding: 3rem 2.5rem;
            transition: all 0.4s ease;
        }

        .expertise-card:hover {
            background: rgba(255,255,255,0.05);
            border-color: var(--accent);
            transform: translateY(-5px);
        }

        .expertise-icon {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }

        .expertise-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
            letter-spacing: -0.5px;
        }

        .expertise-description {
            color: rgba(255,255,255,0.6);
            font-size: 0.9375rem;
            line-height: 1.7;
        }

        /* Philosophy Section */
        .philosophy-section {
            background: var(--bg-secondary);
            padding: 8rem 4rem;
        }

        .philosophy-container {
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
        }

        .philosophy-quote {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2rem, 4vw, 3.5rem);
            font-weight: 400;
            font-style: italic;
            line-height: 1.3;
            color: var(--text-primary);
            margin-bottom: 3rem;
            position: relative;
        }

        .philosophy-quote::before {
            content: '"';
            font-size: 8rem;
            color: var(--accent);
            opacity: 0.3;
            position: absolute;
            top: -4rem;
            left: -2rem;
            font-family: 'Cormorant Garamond', serif;
        }

        .philosophy-attribution {
            font-size: 1rem;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        /* Journey Section */
        .journey-section {
            background: var(--bg-primary);
            padding: 8rem 4rem;
        }

        .journey-header {
            text-align: center;
            margin-bottom: 5rem;
        }

        .journey-header h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 400;
            letter-spacing: -1px;
            background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .timeline {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 1px;
            height: 100%;
            background: var(--border);
        }

        .timeline-item {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            margin-bottom: 4rem;
            position: relative;
        }

        .timeline-item:nth-child(even) .timeline-content {
            grid-column: 2;
        }

        .timeline-item:nth-child(even) .timeline-year {
            grid-column: 1;
            text-align: right;
        }

        .timeline-dot {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 16px;
            height: 16px;
            background: var(--accent);
            border-radius: 50%;
            border: 4px solid var(--bg-primary);
        }

        .timeline-year {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2rem;
            font-weight: 600;
            color: var(--accent);
        }

        .timeline-content h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            letter-spacing: -0.5px;
        }

        .timeline-content p {
            color: var(--text-secondary);
            font-size: 0.9375rem;
            line-height: 1.7;
        }

        /* Contact Section */
        .contact-section {
            background: var(--bg-dark);
            color: white;
            padding: 8rem 4rem;
            position: relative;
            overflow: hidden;
        }

        .contact-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at center, rgba(201, 169, 98, 0.1) 0%, transparent 70%);
            pointer-events: none;
        }

        .contact-container {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .contact-header h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 400;
            letter-spacing: -1px;
            margin-bottom: 1.5rem;
        }

        .contact-header p {
            color: rgba(255,255,255,0.6);
            font-size: 1.25rem;
            margin-bottom: 3rem;
        }

        .contact-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .contact-link {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1.25rem 2.5rem;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            color: white;
            text-decoration: none;
            font-size: 0.875rem;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            transition: all 0.4s ease;
        }

        .contact-link:hover {
            background: var(--accent);
            border-color: var(--accent);
            transform: translateY(-2px);
        }

        /* Footer */
        footer {
            padding: 4rem 4rem 3rem;
            background: var(--bg-primary);
            border-top: 1px solid var(--border);
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-logo {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--text-primary);
            text-decoration: none;
        }

        .footer-links {
            display: flex;
            gap: 2rem;
        }

        .footer-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 0.875rem;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--accent);
        }

        .footer-copyright {
            font-size: 0.875rem;
            color: var(--text-light);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero-content {
                grid-template-columns: 1fr;
                gap: 4rem;
                text-align: center;
            }

            .hero-description {
                margin-left: auto;
                margin-right: auto;
            }

            .hero-cta {
                justify-content: center;
            }

            .founder-image-container {
                order: -1;
            }

            .founder-image-wrapper {
                max-width: 400px;
                margin: 0 auto;
            }

            .experience-badge {
                left: 20px;
                bottom: 20px;
            }

            .stats-container {
                grid-template-columns: repeat(2, 1fr);
            }

            .stat-item {
                border-right: none;
                border-bottom: 1px solid var(--border);
                padding-bottom: 2rem;
            }

            .stat-item:nth-child(3),
            .stat-item:nth-child(4) {
                border-bottom: none;
                padding-bottom: 0;
                padding-top: 2rem;
            }

            .about-container {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .about-header {
                position: relative;
                top: 0;
            }

            .expertise-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .timeline::before {
                left: 0;
            }

            .timeline-item {
                grid-template-columns: 1fr;
                padding-left: 2rem;
            }

            .timeline-item:nth-child(even) .timeline-content,
            .timeline-item:nth-child(even) .timeline-year {
                grid-column: 1;
                text-align: left;
            }

            .timeline-dot {
                left: 0;
            }

            .timeline-year {
                margin-bottom: 0.5rem;
            }
        }

        @media (max-width: 768px) {
            body {
                cursor: auto;
            }

            .cursor, .cursor-dot {
                display: none;
            }

            nav {
                padding: 1.5rem 2rem;
            }

            .nav-links {
                display: none;
            }

            .hero {
                padding: 6rem 2rem;
                min-height: auto;
            }

            .hero-content {
                padding: 0;
            }

            section {
                padding: 6rem 2rem;
            }

            .stats-container {
                grid-template-columns: 1fr;
                padding: 0 2rem;
            }

            .stat-item {
                border-bottom: 1px solid var(--border);
                border-right: none;
                padding-bottom: 2rem;
            }

            .stat-item:last-child {
                border-bottom: none;
                padding-bottom: 0;
            }

            .expertise-grid {
                grid-template-columns: 1fr;
            }

            .contact-links {
                flex-direction: column;
                align-items: center;
            }

            .footer-content {
                flex-direction: column;
                gap: 1.5rem;
                text-align: center;
            }
        }

        /* Animations */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }