:root {
    --primary: #222222;
    --accent: #888888;
    --bg: #fdfdfb;
    --font: 'Lato', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { 
    font-family: var(--font); 
    background: var(--bg); 
    color: var(--primary); 
    overflow-x: hidden; 
    -webkit-font-smoothing: antialiased; 
}

/* NAV */
.main-nav { 
    position: fixed; 
    top: 0; 
    width: 100%; 
    height: 110px; 
    z-index: 4000; 
    transition: 0.6s ease; 
    display: flex; 
    align-items: center; 
}
.main-nav.scrolled { 
    height: 80px; 
    background: rgba(255,255,255,0.4); 
    backdrop-filter: blur(20px); 
    -webkit-backdrop-filter: blur(20px); 
}
.nav-container { 
    width: 100%; 
    padding: 0 50px; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}
.logo-img { height: 45px; transition: 0.5s; }
.nav-links a, .nav-extra a { 
    text-decoration: none; 
    color: var(--primary); 
    font-size: 10px; 
    letter-spacing: 3px; 
    text-transform: uppercase; 
    font-weight: 400; 
}
.nav-links a { margin-left: 30px; }
.highlight-link { font-weight: 700 !important; }
.separator { opacity: 0.2; margin: 0 10px; font-size: 10px; }

/* HERO */
.hero { 
    height: 100vh; 
    position: relative; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    overflow: hidden; 
}
.hero-video { 
    position: absolute; 
    inset: 0; 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    z-index: 1; 
}


/* --- ESTILOS PARA TODO EL HERO (LATO) --- */
.hero-content {
    text-align: center;
    padding: 0 5%;
    width: 100%;
    box-sizing: border-box;
    z-index: 10;
    position: relative;
    font-family: 'Lato', sans-serif; /* Fuente global */
}

.tagline {
    font-size: 10px !important;
    letter-spacing: 10px !important;
    margin-bottom: 30px;
    opacity: 0.6;
    display: block;
    text-transform: uppercase;
}

.hero-content h1 {
    margin: 0;
    padding: 0;
}

.hero-content h1 .big-text {
    display: block;
    font-size: 34px !important; /* Base móvil */
    letter-spacing: 6px !important; 
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 400;
    text-transform: uppercase;
}

.hero-content h1 .small-text {
    display: block;
    font-size: 13px !important;
    letter-spacing: 4px !important;
    line-height: 1.6;
    opacity: 0.8;
    max-width: 85%;
    margin: 0 auto;
}

/* --- ESCALADO PARA DESKTOP --- */
@media (min-width: 1024px) {
    .tagline {
        font-size: 12px !important;
        letter-spacing: 14px !important;
        margin-bottom: 45px;
    }

    .hero-content h1 .big-text {
        font-size: 68px !important; /* Impacto visual en monitores */
        letter-spacing: 12px !important; 
        margin-bottom: 30px;
    }

    .hero-content h1 .small-text {
        font-size: 16px !important;
        letter-spacing: 6px !important;
        max-width: 700px; /* Control de lectura en pantallas anchas */
    }
}


/* Sección General */
.manifesto-section {
    background-color: #d9d9d9; /* Fondo 15% gris */
    padding: 60px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 80vh;
}

/* Contenedor Flex */
.manifesto-wrapper {
    display: flex;
    flex-direction: row; /* Fuerza Imagen Izquierda, Texto Derecha */
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    width: 80%;
    margin: 0 auto;
    gap: 50px;
}

/* Columnas */
.manifesto-col {
    flex: 1;
    width: 50%;
}

/* Estilo de Imagen */
.manifesto-image-box img {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(20%); /* Un toque sutil para el estilo visual de Washé */
    transition: transform 0.5s ease;
}

/* Estilo de Texto (Basado en el diseño de tu sitio) */
.manifesto-text-box {
    color: #1a1a1a; /* Texto oscuro para contraste sobre gris claro */
    font-family: 'Montserrat', sans-serif; /* O la que uses en index.html */
    line-height: 1.8;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    text-align: left;
}

/* --- Adaptación para Móviles --- */
@media (max-width: 768px) {
    .manifesto-wrapper {
        flex-direction: column; /* Apila: Imagen arriba, texto abajo */
        gap: 30px;
        text-align: center;
    }
    
    .manifesto-col {
        width: 100%;
    }

    .manifesto-text-box {
        text-align: center;
        padding: 0 10px;
    }
}
}

/* GALLERY */
.editorial-gallery { display: flex; width: 100vw; }
.full-image-container { flex: 1; height: 100vh; overflow: hidden; }
.full-img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: transform 2s ease; 
}
.full-image-container:hover .full-img { transform: scale(1.04); }

/* WORKS ACTUALIZADO */
.works { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    border-top: 1px solid rgba(0,0,0,0.05);
    background: var(--bg);
}
.work-item { 
    padding: 140px 40px; 
    text-align: center; 
    border-right: 1px solid rgba(0,0,0,0.05); 
    text-decoration: none; 
    color: var(--primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.work-item:hover { background: #ffffff; }
.work-label {
    display: block;
    font-size: 8px;
    letter-spacing: 5px;
    opacity: 0.3;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.work-item h2 { 
    font-size: 24px; 
    font-weight: 300; 
    letter-spacing: 12px; 
    margin-bottom: 20px;
    transition: 0.4s;
}
.work-item:hover h2 { letter-spacing: 15px; }
.work-item p { 
    font-size: 11px; 
    letter-spacing: 2px; 
    opacity: 0.5; 
    text-transform: uppercase; 
    max-width: 280px; 
    margin: 0 auto 40px; 
    line-height: 1.8; 
}
.work-btn {
    display: inline-block;
    font-size: 9px;
    letter-spacing: 4px;
    text-transform: uppercase;
    padding: 12px 30px;
    border: 1px solid rgba(0,0,0,0.1);
    transition: 0.4s;
    opacity: 0.6;
}
.work-item:hover .work-btn {
    opacity: 1;
    border-color: var(--primary);
    background: var(--primary);
    color: #fff;
}

/* SECCIÓN AERIAL */
.aerea-section { 
    height: 80vh; 
    position: relative; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    overflow: hidden; 
    text-align: center;
    background: #fdfdfb; 
}
.aerea-video { 
    position: absolute; 
    inset: 0; 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    z-index: 1; 
    opacity: 0.08; 
}
.aerea-content { position: relative; z-index: 10; max-width: 600px; padding: 0 20px; }
.aerea-content h2 { 
    font-size: 40px; 
    font-weight: 300; 
    letter-spacing: 15px; 
    margin-bottom: 30px; 
}
.aerea-content p { 
    font-size: 16px; 
    font-weight: 300; 
    line-height: 1.8; 
    opacity: 0.7; 
    margin-bottom: 40px; 
    letter-spacing: 1px; 
}
.radio-btn { 
    display: inline-block; 
    text-decoration: none; 
    color: var(--primary); 
    border: 1px solid var(--primary); 
    padding: 15px 40px; 
    font-size: 10px; 
    letter-spacing: 4px; 
    text-transform: uppercase; 
    transition: 0.4s; 
}
.radio-btn:hover { background: var(--primary); color: #fff; }

/* AUDIO CONTROL */
.audio-control-fixed { 
    position: fixed; 
    bottom: 50px; 
    right: 50px; 
    z-index: 3000; 
    display: flex; 
    align-items: center; 
    cursor: pointer; 
    opacity: 0.7; 
    transition: 0.3s; 
}
.audio-control-fixed:hover { opacity: 1; }
.sound-visualizer { display: flex; align-items: flex-end; height: 14px; gap: 3px; }

/* Diferentes alturas iniciales para las barras */
.sound-visualizer .bar:nth-child(1) { height: 40%; animation-delay: 0.1s; }
.sound-visualizer .bar:nth-child(2) { height: 100%; animation-delay: 0.3s; }
.sound-visualizer .bar:nth-child(3) { height: 60%; animation-delay: 0.2s; }
.sound-visualizer .bar:nth-child(4) { height: 80%; animation-delay: 0.4s; }

@keyframes visualize {
    0% { height: 20%; }
    100% { height: 100%; }
}

/* Responsive para móvil */
@media (max-width: 768px) {
    .audio-control-fixed {
        bottom: 30px;
        right: 30px;
        gap: 10px;
    }
    .audio-label {
        font-size: 9px;
    }
}

.bar { width: 1.5px; background: var(--primary); height: 100%; }
.active .bar { animation: wave 1s infinite ease-in-out; }
@keyframes wave { 0%, 100% { transform: scaleY(0.5); } 50% { transform: scaleY(1.3); } }
.audio-text { display: flex; flex-direction: column; margin-left: 12px; }
.status-label { font-size: 7px; font-weight: 700; letter-spacing: 2px; opacity: 0.5; }
.main-label { font-size: 11px; font-weight: 700; letter-spacing: 3px; }

.bottom-left-fixed { position: fixed; bottom: 50px; left: 50px; z-index: 3000; }
.vertical-link { 
    text-decoration: none; 
    color: var(--primary); 
    font-size: 9px; 
    letter-spacing: 4px; 
    writing-mode: vertical-rl; 
    transform: rotate(180deg); 
    opacity: 0.4; 
    transition: 0.3s; 
}
.vertical-link:hover { opacity: 1; }

/* MODAL */
.modal { 
    position: fixed; 
    inset: 0; 
    z-index: 5000; 
    display: none; 
    align-items: center; 
    justify-content: center; 
    background: rgba(0, 0, 0, 0.15); 
    backdrop-filter: blur(10px); 
    -webkit-backdrop-filter: blur(10px); 
}
.modal.visible { display: flex; }
.modal-content { 
    background: #fff; 
    width: 420px; 
    padding: 70px 40px; 
    position: relative; 
    text-align: center; 
    box-shadow: 0 40px 100px rgba(0,0,0,0.06); 
    border: 1px solid rgba(0,0,0,0.03); 
}
.modal-label { 
    font-size: 8px; 
    letter-spacing: 5px; 
    opacity: 0.3; 
    display: block; 
    margin-bottom: 15px; 
    text-transform: uppercase; 
}
.modal-content h3 { 
    font-size: 16px; 
    letter-spacing: 8px; 
    font-weight: 400; 
    margin-bottom: 50px; 
    color: var(--primary); 
}
.platform-links a { 
    display: block; 
    margin: 25px 0; 
    text-decoration: none; 
    color: var(--primary); 
    font-size: 11px; 
    letter-spacing: 5px; 
    opacity: 0.4; 
    transition: 0.4s; 
}
.platform-links a:hover { opacity: 1; letter-spacing: 8px; }
.close-modal-btn { 
    position: absolute; 
    top: 30px; 
    right: 30px; 
    background: none; 
    border: none; 
    cursor: pointer; 
    opacity: 0.3; 
    transition: 0.3s; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
}
.close-modal-btn:hover { opacity: 1; }
.close-modal-btn span { font-size: 18px; }
.close-modal-btn small { font-size: 7px; letter-spacing: 2px; margin-top: 5px; font-weight: 700; }

/* NEWSLETTER & FOOTER */
.newsletter-section { padding: 180px 0 80px; text-align: center; background: var(--bg); }
.section-label { display: block; font-size: 9px; letter-spacing: 6px; opacity: 0.4; margin-bottom: 20px; text-transform: uppercase; }
.newsletter-msg { font-size: 18px; font-weight: 300; letter-spacing: 2px; opacity: 0.7; margin-bottom: 40px; }
.newsletter-form { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid rgba(0,0,0,0.1); width: 320px; margin: 0 auto; transition: 0.4s ease; }
.newsletter-form:focus-within { border-color: var(--primary); }
.newsletter-form input { border: none; background: none; outline: none; padding: 15px 10px; font-family: var(--font); width: 100%; text-align: center; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; }
.submit-btn { background: none; border: none; font-size: 20px; cursor: pointer; opacity: 0.4; transition: 0.3s; }
.submit-btn:hover { opacity: 1; transform: translateX(5px); }

.main-footer { margin-top: 150px; opacity: 0.3; font-size: 9px; letter-spacing: 4px; text-transform: uppercase; line-height: 2; }
.copyright { margin-top: 20px; font-size: 7px; opacity: 0.6; }

/* RESPONSIVE */
@media (max-width: 768px) {
    .editorial-gallery { flex-direction: column; }
    .works { grid-template-columns: 1fr; }
    .work-item { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.05); padding: 100px 20px; }
    .modal-content { width: 90%; }
    .nav-container { padding: 0 20px; }
    .nav-links { display: none; }
}