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

:root {
    --primary-dark: #1a1a1a;
    --secondary-dark: #2d2d2d;
    --accent-gold: #c9a961;
    --accent-cream: #f5f1eb;
    --text-primary: #1a1a1a;
    --text-secondary: #5a5a5a;
    --text-light: #8a8a8a;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #ffbb99 0%, #ff9977 100%);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.container {
    width: 100%;
    max-width: 800px;
    animation: fadeIn 0.8s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card {
    background: white;
    border-radius: 2px;
    box-shadow: 
        0 1px 3px rgba(0,0,0,0.05),
        0 10px 40px rgba(0,0,0,0.08);
    padding: 4rem;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--accent-gold) 0%, var(--primary-dark) 100%);
}

.profile-section {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #e5e5e5;
}

.photo-container {
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.photo-container:hover {
    transform: scale(1.05);
}

.profile-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.name {
    font-family: 'Inter', sans-serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    letter-spacing: -0.03em;
}

.title {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.95rem;
}

.location {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.location svg {
    flex-shrink: 0;
}

.about-section {
    margin-bottom: 3rem;
}

.about-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
}

.expertise-section {
    margin-bottom: 3rem;
}

.section-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

.expertise-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}

.expertise-item {
    background: #f8f6f2;
    color: var(--text-secondary);
    padding: 0.6rem 1.25rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 400;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.expertise-item:hover {
    background: white;
    border-color: var(--accent-gold);
    color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.contact-section {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 2px;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid;
    letter-spacing: 0.02em;
}

.email-button {
    background: white;
    color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.email-button:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.linkedin-button {
    background: white;
    color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.linkedin-button:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 1rem;
    }

    .card {
        padding: 2.5rem 1.5rem;
    }

    .name {
        font-size: 2.5rem;
    }

    .title {
        font-size: 0.85rem;
    }

    .about-text {
        font-size: 1rem;
    }

    .photo-placeholder {
        width: 140px;
        height: 140px;
    }

    .contact-button {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }

    .expertise-item {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .name {
        font-size: 2rem;
    }

    .card {
        padding: 2rem 1.25rem;
    }

    .contact-section {
        flex-direction: column;
    }

    .contact-button {
        width: 100%;
        justify-content: center;
    }
}

