:root {
    --color-brand: #edddcd;   
    --color-white: #f9f9f9;   
    --color-text: #151723;    
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--color-text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.section-brand { background-color: var(--color-brand); }
.section-white { background-color: var(--color-white); }

/* Navegación */
nav {
    padding: 2rem 10%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    background: rgba(237, 221, 205, 0.15);
    backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.brand-logo {
    height: 50px; 
    width: auto;
}

.lang-selector button {
    background: none;
    border: none;
    color: var(--color-text);
    font-size: 0.7rem;
    letter-spacing: 2px;
    cursor: pointer;
    opacity: 0.4;
    transition: 0.3s;
}

.lang-selector button.active { opacity: 1; font-weight: 600; }

/* SECCIÓN HERO */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 10% 80px;
}

.hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center; 
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

h1 {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    letter-spacing: 10px;
    font-weight: 400;
    line-height: 1.3;
}

.accent-line {
    width: 60px;
    height: 1px;
    background-color: var(--color-text);
    margin: 2.5rem auto;
}

.hero p {
    font-size: 0.8rem;
    letter-spacing: 3px;
    font-weight: 300;
    max-width: 750px;
    margin: 0 auto 4rem;
    text-transform: uppercase;
    line-height: 2;
    text-align: center;
}

.cta-button {
    text-decoration: none;
    color: var(--color-brand);
    background-color: var(--color-text);
    padding: 1.2rem 3.5rem;
    font-size: 0.75rem;
    letter-spacing: 4px;
    transition: all 0.4s ease;
    border: 1px solid var(--color-text);
}

.cta-button:hover {
    background-color: transparent;
    color: var(--color-text);
}

/* Bloque Pinterest */
.projects-banner {
    padding: 12rem 10%;
    display: flex;
    justify-content: center;
}

.banner-content {
    max-width: 800px;
    width: 100%;
    text-align: center;
}

.banner-content h2 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    letter-spacing: 6px;
}

.pin-link {
    display: inline-block;
    margin-top: 1rem;
    text-decoration: none;
    color: var(--color-text);
    border: 1px solid var(--color-text);
    padding: 1rem 2.5rem;
    font-size: 0.75rem;
    letter-spacing: 3px;
    font-weight: 600;
    transition: 0.3s;
}

.pin-link:hover {
    background-color: var(--color-text);
    color: var(--color-white);
}

/* Footer */
footer {
    padding: 8rem 10% 4rem;
    text-align: center;
}

.footer-socials {
    margin-bottom: 3rem;
}

.footer-socials a {
    color: var(--color-text);
    font-size: 1.5rem;
    margin: 0 20px;
    transition: 0.3s;
}

.footer-socials a:hover { opacity: 0.5; }

.email-address {
    text-decoration: none;
    color: var(--color-text);
    font-size: 1.3rem;
    font-weight: 300;
    border-bottom: 1px solid rgba(21, 23, 35, 0.2);
    padding-bottom: 5px;
}

.copyright {
    margin-top: 6rem;
    font-size: 0.6rem;
    letter-spacing: 3px;
    opacity: 0.5;
}

/* MÓVIL */
@media (max-width: 768px) {
    nav { padding: 1rem 5%; }
    
    .brand-logo { 
        height: 36px; /* TÉRMINO MEDIO: Ni 50px ni 32px */
    }
    
    h1 { 
        font-size: 1.4rem; 
        letter-spacing: 6px; 
    }
    
    .hero { padding: 100px 5% 60px; }
    
    .hero p { 
        font-size: 0.7rem; 
        letter-spacing: 2px; 
        line-height: 1.8;
    }
    
    .projects-banner { padding: 6rem 5%; }
}