:root {
    --gold: #b3925d;
    --dark: #1a1a1a;
    --grey: #f8f8f8;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
}

.container { width: 90%; max-width: 1000px; margin: auto; }

/* Navigation Mobile-Optimized */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #eee;
}

.logo { font-family: 'Bodoni Moda', serif; font-size: 1.3rem; font-weight: bold; letter-spacing: 2px; }

.nav-links { display: flex; list-style: none; }
.nav-links li { margin-left: 25px; }
.nav-links a { text-decoration: none; color: var(--dark); font-weight: 600; font-size: 0.8rem; text-transform: uppercase; }

.menu-toggle { display: none; flex-direction: column; cursor: pointer; }
.bar { width: 25px; height: 3px; background: var(--dark); margin: 4px 0; transition: var(--transition); }

/* Hero Section */
#hero {
    height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(255,255,255,0.7), rgba(255,255,255,0.7)), url('https://images.unsplash.com/photo-1558769132-cb1aea458c5e?q=80&w=1974');
    background-size: cover;
    background-position: center;
    padding: 0 20px;
}

#hero h1 { font-family: 'Bodoni Moda', serif; font-size: clamp(2rem, 8vw, 3.5rem); margin-bottom: 10px; }
.subtitle { color: var(--gold); text-transform: uppercase; letter-spacing: 2px; font-weight: bold; margin-bottom: 20px; font-size: 1.1rem; }

.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background: var(--dark);
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* Sections */
section { padding: 80px 0; }
h2 { font-family: 'Bodoni Moda', serif; text-align: center; margin-bottom: 40px; text-transform: uppercase; font-size: 2rem; position: relative; }
h2::after { content: ''; display: block; width: 40px; height: 2px; background: var(--gold); margin: 15px auto; }

/* Cards XP */
.bg-light { background-color: var(--grey); }
.job-card {
    background: var(--white);
    padding: 25px;
    margin-bottom: 25px;
    border-left: 4px solid var(--gold);
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}
.date { color: var(--gold); font-weight: bold; font-size: 0.85rem; display: block; margin-bottom: 10px; }

/* Skills Grid */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
}
.skill-item {
    background: var(--grey);
    border: 1px solid #eee;
    padding: 20px;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Contact */
.contact-section { background: var(--dark); color: var(--white); text-align: center; padding: 80px 20px; }
.contact-card { max-width: 600px; margin: auto; }
.contact-section a { color: var(--gold); text-decoration: none; font-weight: bold; }
hr { border: 0; border-top: 1px solid #333; margin: 20px 0; }

footer { text-align: center; padding: 30px; background: #f0f0f0; font-size: 0.75rem; color: #666; }

/* MEDIA QUERY MOBILE */
@media (max-width: 768px) {
    .menu-toggle { display: flex; }
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background: var(--white);
        position: absolute;
        top: 60px;
        left: 0;
        text-align: center;
        padding: 30px 0;
        box-shadow: 0 10px 10px rgba(0,0,0,0.05);
    }
    .nav-links.active { display: flex; }
    .nav-links li { margin: 15px 0; }
    
    section { padding: 60px 0; }
    h2 { font-size: 1.6rem; }
}

