* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --cream: #F5F2EB;
            --charcoal: #1A1A1A;
            --accent: #D4AF37;
            --gray: #666666;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background-color: var(--cream);
            color: var(--charcoal);
            line-height: 1.6;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(245, 242, 235, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(26, 26, 26, 0.1);
            z-index: 1000;
            padding: 1.5rem 5%;
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            letter-spacing: -0.5px;
            text-decoration: none;
            color: var(--charcoal);
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            align-items: center;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--charcoal);
            font-size: 0.9rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            position: relative;
            transition: color 0.3s;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--charcoal);
            transition: width 0.3s;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .cv-btn {
            padding: 0.6rem 1.5rem;
            background: var(--charcoal);
            color: var(--cream) !important;
            border-radius: 50px;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .cv-btn::after {
            display: none !important;
        }

        .cv-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }

        .cv-btn i {
            font-size: 0.8rem;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 120px 5% 80px;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
        }

        .hero-label {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            color: var(--gray);
            margin-bottom: 1.5rem;
            display: block;
            animation: fadeInUp 0.8s ease-out;
        }

        .hero h1 {
            font-size: clamp(3rem, 8vw, 7rem);
            line-height: 0.95;
            font-weight: 700;
            letter-spacing: -0.03em;
            margin-bottom: 2rem;
            animation: fadeInUp 0.8s ease-out 0.1s both;
        }

        .hero h1 span {
            display: block;
            font-weight: 300;
            font-style: italic;
            opacity: 0.8;
        }

        .hero-desc {
            max-width: 600px;
            font-size: 1.25rem;
            color: var(--gray);
            margin-bottom: 3rem;
            line-height: 1.7;
            animation: fadeInUp 0.8s ease-out 0.2s both;
        }

        .hero-desc strong {
            color: var(--charcoal);
            font-weight: 600;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            animation: fadeInUp 0.8s ease-out 0.3s both;
        }

        .btn {
            padding: 1rem 2rem;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 500;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-primary {
            background: var(--charcoal);
            color: var(--cream);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .btn-secondary {
            border: 1px solid var(--charcoal);
            color: var(--charcoal);
        }

        .btn-secondary:hover {
            background: var(--charcoal);
            color: var(--cream);
        }

        .hero-stats {
            position: absolute;
            right: 5%;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 2rem;
            animation: fadeIn 1s ease-out 0.5s both;
        }

        .stat-item h3 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 0.2rem;
        }

        .stat-item p {
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--gray);
        }

        .stat-item a {
            color: var(--accent);
            text-decoration: none;
            font-weight: 600;
        }

        /* About Section */
        .about {
            padding: 120px 5%;
            background: white;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }

        .about-image {
            position: relative;
        }

        .about-image img {
            width: 100%;
            height: auto;
            border-radius: 20px;
            filter: grayscale(100%);
            transition: filter 0.5s;
        }

        .about-image:hover img {
            filter: grayscale(0%);
        }

        .about-image::after {
            content: '';
            position: absolute;
            top: 20px;
            left: 20px;
            right: -20px;
            bottom: -20px;
            border: 2px solid var(--accent);
            border-radius: 20px;
            z-index: -1;
            opacity: 0.3;
        }

        .about-content h2 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            line-height: 1.1;
        }

        .about-content h2 span {
            font-weight: 300;
            font-style: italic;
        }

        .about-content p {
            color: var(--gray);
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .highlight {
            background: linear-gradient(120deg, transparent 0%, rgba(212, 175, 55, 0.2) 100%);
            padding: 0 4px;
            color: var(--charcoal);
        }

        .quote {
            border-left: 4px solid var(--charcoal);
            padding-left: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
            font-size: 1.2rem;
            color: var(--charcoal);
            position: relative;
        }

        .quote::before {
            content: '\201C';
            font-size: 4rem;
            position: absolute;
            top: -1rem;
            left: -0.5rem;
            opacity: 0.1;
            font-family: Georgia, serif;
        }

        .skills {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            margin-top: 2rem;
        }

        .skill-tag {
            padding: 0.5rem 1rem;
            background: var(--cream);
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.3s;
        }

        .skill-tag:hover {
            background: var(--charcoal);
            color: var(--cream);
            transform: translateY(-2px);
        }

        /* Portfolio Section */
        .portfolio {
            padding: 120px 5%;
            background: var(--cream);
        }

        .section-header {
            text-align: center;
            max-width: 600px;
            margin: 0 auto 4rem;
        }

        .section-header p {
            text-transform: uppercase;
            letter-spacing: 0.2em;
            font-size: 0.9rem;
            color: var(--gray);
            margin-bottom: 1rem;
        }

        .section-header h2 {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .section-header h2 span {
            font-weight: 300;
            font-style: italic;
        }

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 3rem;
        }

        .portfolio-item {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            transition: transform 0.4s, box-shadow 0.4s;
            cursor: pointer;
            position: relative;
        }

        .portfolio-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .portfolio-img {
            height: 300px;
            overflow: hidden;
            position: relative;
        }

        .portfolio-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s;
        }

        .portfolio-item:hover .portfolio-img img {
            transform: scale(1.1);
        }

        .portfolio-icon {
            position: absolute;
            bottom: 1.5rem;
            right: 1.5rem;
            width: 50px;
            height: 50px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.3s;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }

        .portfolio-item:hover .portfolio-icon {
            opacity: 1;
            transform: translateY(0);
        }

        .portfolio-content {
            padding: 2rem;
        }

        .portfolio-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 0.5rem;
        }

        .portfolio-meta h3 {
            font-size: 1.5rem;
            font-weight: 600;
        }

        .portfolio-meta span {
            font-size: 0.85rem;
            color: var(--gray);
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }

        .portfolio-content p {
            color: var(--gray);
            line-height: 1.6;
        }

        /* Contact Section */
        .contact {
            padding: 120px 5%;
            background: var(--charcoal);
            color: var(--cream);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .contact-content {
            position: relative;
            z-index: 1;
            max-width: 700px;
            margin: 0 auto;
        }

        .contact h2 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
        }

        .contact h2 span {
            color: var(--accent);
            font-weight: 300;
            font-style: italic;
        }

        .contact > p {
            font-size: 1.2rem;
            opacity: 0.8;
            margin-bottom: 2.5rem;
            line-height: 1.6;
        }

        .contact-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            margin-bottom: 3rem;
            margin-top: 3rem;
        }

        .btn-light {
            background: var(--cream);
            color: var(--charcoal);
        }

        .btn-outline {
            border: 1px solid rgba(255,255,255,0.3);
            color: var(--cream);
        }

        .btn-outline:hover {
            background: rgba(255,255,255,0.1);
            border-color: rgba(255,255,255,0.5);
        }

        .social-links {
            display: flex;
            gap: 1rem;
            justify-content: center;
        }

        .social-icon {
            width: 50px;
            height: 50px;
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--cream);
            text-decoration: none;
            transition: all 0.3s;
        }

        .social-icon:hover {
            background: rgba(255,255,255,0.1);
            border-color: rgba(255,255,255,0.4);
            transform: translateY(-3px);
        }

        /* Footer */
        footer {
            padding: 2rem 5%;
            background: #111;
            color: rgba(255,255,255,0.4);
            text-align: center;
            font-size: 0.9rem;
            border-top: 1px solid rgba(255,255,255,0.1);
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        /* Mobile Menu Toggle */
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--charcoal);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero-stats {
                display: none;
            }
            
            .about-grid {
                gap: 3rem;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: var(--cream);
                flex-direction: column;
                padding: 2rem;
                border-bottom: 1px solid rgba(0,0,0,0.1);
                gap: 1.5rem;
            }

            .nav-links.active {
                display: flex;
            }

            .mobile-toggle {
                display: block;
            }

            .hero h1 {
                font-size: 3rem;
            }

            .about-grid {
                grid-template-columns: 1fr;
            }

            .about-image::after {
                display: none;
            }

            .portfolio-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .hero-buttons, .contact-buttons {
                flex-direction: column;
                align-items: stretch;
            }

            .contact h2, .about-content h2, .section-header h2 {
                font-size: 2rem;
            }

            .footer-content {
                flex-direction: column;
                gap: 1rem;
            }
        }