/* =========================================
   1. VARIABLES & RESET
   ========================================= */
:root {
    --wine-dark: #1a0508;     
    --wine-main: #581822;     
    --wine-light: #9e2a3b; 
    --wine-light2: #f7425e;   
    --text: #e8e6e3;          
    --gray: #969696;
    --sand: #d4c5b0;          
    --sand-dim: #a39685;      
    
    --font-art: 'Cormorant Garamond', serif; 
    --font-alt: 'Syne', sans-serif; 
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--wine-dark);
    color: var(--text);
    font-family: var(--font-alt);
    overflow-x: hidden; 
    overflow-y: auto;   
    min-height: 100vh;
}

/* SOLO en el index.html (Home Fija) */
body.home-mode {
    overflow: hidden; 
    height: 100vh;
    width: 100vw;
}

a { text-decoration: none; color: inherit; transition: 0.4s; }
ul { list-style: none; }

/* --- EFECTOS --- */
.noise {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none; z-index: 900; opacity: 0.07;
    background: url('https://grainy-gradients.vercel.app/noise.svg');
}

/* =========================================
   2. NAVBAR & HEADER (Global)
   ========================================= */
header#navbar {
    position: fixed; top: 0; left: 0; width: 100%;
    padding: 2rem 4rem;
    display: flex; justify-content: space-between; align-items: center;
    z-index: 100;
    mix-blend-mode: normal;
}

body:not(.home-mode) { padding-top: 120px; }

body:not(.home-mode) header {
    background: rgba(26, 5, 8, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.logo {
    font-family: var(--font-art);
    font-weight: 200;
    font-size: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-menu { display: flex; }
.nav-menu ul { display: flex; gap: 3rem; }

.nav-menu a {
    font-family: var(--font-art);
    font-size: 1.1rem;
    text-transform: uppercase;
    position: relative;
    opacity: 0.7;
    font-weight: 300;
}

.nav-menu a.active, .nav-menu a:hover { opacity: 1; color: var(--wine-light); }

.nav-menu a::after {
    content: ''; position: absolute; bottom: -5px; left: 50%;
    width: 0; height: 1px; background: var(--wine-light);
    transition: 0.4s; transform: translateX(-50%);
}
.nav-menu a:hover::after { width: 100%; }

.hamburger { display: none; cursor: pointer; flex-direction: column; gap: 6px; }
.line { width: 30px; height: 2px; background: var(--text); }


/* =========================================
   3. HOME PAGE (index.html)
   ========================================= */
.static-hero-bg {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
}

.static-hero-bg img {
    width: 100%; height: 100%; object-fit: cover;
    opacity: 0.9; transform: scale(1.05);
}

.wine-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(26,5,8,0.4) 0%, rgba(26,5,8,0.8) 100%);
    mix-blend-mode: multiply; z-index: 1;
}

/* Navegación Lateral (Escritorio) */
.side-nav {
    position: fixed; top: 3rem; transform: none; 
    display: flex; flex-direction: row; gap: 2rem; 
    z-index: 100; mix-blend-mode: normal; 
}
.side-nav.left { left: 3rem; }
.side-nav.right { right: 3rem; }

.nav-link {
    font-family: var(--font-art); font-size: 1rem; 
    text-transform: uppercase; color: var(--gray); 
    letter-spacing: 2px; text-decoration: none;
    transition: 0.4s; position: relative; font-weight: 600;
}
.nav-link:hover { color: var(--wine-light2); letter-spacing: 3px; font-style: italic; }

.nav-link::before {
    content: ''; position: absolute; top: 50%; width: 20px; height: 1px;
    background: var(--wine-light); transition: 0.4s; opacity: 0;
}
.side-nav.left .nav-link::before { left: -30px; }
.side-nav.right .nav-link::before { right: -30px; }
.side-nav.left .nav-link:hover::before { opacity: 1; transform: translateX(10px); }
.side-nav.right .nav-link:hover::before { opacity: 1; transform: translateX(-10px); }

/* Contenido Central Home */
.hero-frame {
    height: 100vh; display: flex; flex-direction: column;
    justify-content: flex-start; align-items: center;
    padding: 3rem 2rem; position: relative; z-index: 10;
}

.title-container {
    text-align: center; margin-bottom: auto; margin-top: 0.5rem; 
}

.main-title {
    font-family: var(--font-art); font-size: 3.5rem; line-height: 1;
    color: #e0e0e0; text-transform: uppercase; font-weight: 300; 
    letter-spacing: 2px; text-shadow: 0 5px 20px rgba(0,0,0,0.3);
    mix-blend-mode: overlay; white-space: nowrap; 
}

.sub-role {
    font-family: var(--font-alt); font-size: 0.8rem;
    text-transform: uppercase; letter-spacing: 4px;
    color: var(--gray); margin-top: 1rem; font-weight: 700; opacity: 0.9;
}

.bottom-info {
    text-align: center; display: flex; flex-direction: column;
    align-items: center; gap: 1.5rem; margin-bottom: 2rem;
    margin-top: auto; 
}

.sculpt-text, .bottom-info p {
    font-family: var(--font-art); font-size: 1.2rem;
    color: rgba(255,255,255,0.6); font-style: italic; letter-spacing: 1px;
}

.scroll-line {
    width: 1px; height: 60px;
    background: linear-gradient(to bottom, var(--wine-light), transparent);
}

.hero-socials { display: flex; gap: 1.5rem; }
.hero-socials a {
    font-size: 1.3rem; color: var(--text); opacity: 0.7;
    transition: 0.3s; display: flex; align-items: center; justify-content: center;
}
.hero-socials a:hover {
    color: var(--wine-light); opacity: 1; transform: translateY(-3px);
}


/* =========================================
   4. GLOBAL FOOTER (Estilo General)
   ========================================= */

.global-footer {
    background-color: #0f0203; color: var(--text); position: relative;
    border-top: 1px solid rgba(255,255,255,0.05); overflow: hidden;
}

/* Marquee (Cinta Infinita) */
.footer-marquee {
    background: var(--wine-main); padding: 10px 0; overflow: hidden;
    border-bottom: 1px solid rgba(255,255,255,0.1); position: relative; width: 100%;
}

/* Pista de animación corregida para LOOP INFINITO */
.marquee-track {
    display: flex; width: fit-content; gap: 0;
    animation: scrollInfinite 20s linear infinite;
}

.marquee-content {
    flex-shrink: 0; display: flex; align-items: center; white-space: nowrap;
    font-family: var(--font-alt); font-weight: 700; text-transform: uppercase;
    font-size: 0.9rem; letter-spacing: 2px; color: var(--text); padding-right: 0;
}
.marquee-content span { margin: 0 20px; }
.marquee-content .dot { color: var(--sand); }

@keyframes scrollInfinite {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Resto del Footer */
.footer-container { padding: 4rem 8% 2rem 8%; }
.footer-top { text-align: center; margin-bottom: 3rem; }
.footer-logo { font-family: var(--font-art); font-size: 4rem; color: var(--wine-light); margin: 0; line-height: 1; }
.footer-tagline {
    font-family: var(--font-alt); color: var(--sand-dim); font-size: 0.9rem;
    letter-spacing: 1px; margin-top: 10px; text-transform: uppercase;
}
.footer-divider {
    width: 100%; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    margin-bottom: 4rem;
}
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4rem; margin-bottom: 4rem; }
.footer-col h4 { font-family: var(--font-art); color: var(--sand); font-size: 1.5rem; margin-bottom: 1.5rem; }
.footer-nav, .footer-socials { display: flex; flex-direction: column; gap: 0.8rem; }
.footer-nav a, .footer-col p, .footer-email, .footer-socials a {
    font-family: var(--font-alt); font-size: 0.95rem; color: #aaa;
    text-decoration: none; transition: 0.3s; display: flex; align-items: center; gap: 10px;
}
.footer-nav a:hover, .footer-socials a:hover, .footer-email:hover {
    color: var(--wine-light); transform: translateX(5px);
}
.footer-email {
    margin-top: 10px; color: var(--text) !important;
    text-decoration: underline; text-decoration-color: var(--wine-main);
}
.whatsapp-link:hover { color: #25D366 !important; }

.footer-bottom {
    text-align: center; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.05);
    font-family: var(--font-alt); font-size: 0.8rem; color: #666; display: flex; justify-content: space-between;
}

/* =========================================
   5. SECCIONES INTERNAS
   ========================================= */

/* Header Páginas */
.page-header { padding: 4rem 2rem 6rem 2rem; text-align: center; }
.page-title {
    font-family: var(--font-art); font-size: 4rem; color: var(--wine-light);
    margin-bottom: 1rem; text-shadow: 0 0 20px rgba(150, 40, 58, 0.3); font-weight: 300;
}
.page-subtitle {
    font-family: var(--font-alt); color: var(--sand);
    letter-spacing: 3px; text-transform: uppercase; font-size: 0.9rem;
}

/* WORK SECTION */
.work-section {
    padding: 0 8% 8rem 8%; display: flex; flex-direction: column; gap: 8rem;
}
.project-card {
    display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 4rem; align-items: center;
}
.project-card.reverse {
    grid-template-columns: 1.2fr 0.8fr; direction: rtl;
}
.project-card.reverse .project-info { direction: ltr; }

.video-container {
    position: relative; padding-bottom: 56.25%; height: 0;
    border-radius: 4px; overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
}
.video-facade {
    width: 100%; height: 100%; position: absolute; top: 0; left: 0;
    background-size: cover; background-position: center; cursor: pointer;
    display: flex; align-items: center; justify-content: center; transition: 0.3s;
}
.video-facade::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.2); transition: 0.3s;
}
.video-facade:hover::before { background: rgba(0,0,0,0.4); }
.video-play-btn {
    width: 70px; height: 70px; background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px); border: 1px solid rgba(255,255,255,0.5);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 2rem; color: white; z-index: 2; transition: 0.4s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.video-facade:hover .video-play-btn {
    background: var(--wine-light); border-color: var(--wine-light); transform: scale(1.1);
}
.video-container iframe {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 10;
}

.project-info { color: var(--text); }
.project-title {
    font-family: var(--font-art); font-size: 2.5rem; color: var(--sand);
    margin-bottom: 1.5rem; border-bottom: 1px solid var(--wine-main);
    padding-bottom: 10px; display: inline-block;
}
.project-desc {
    font-family: var(--font-alt); line-height: 1.7; color: #ccc;
    margin-bottom: 2rem; font-size: 0.95rem;
}
.project-desc strong { color: var(--wine-light); }
.credits {
    display: flex; flex-direction: column; gap: 5px;
    font-size: 0.8rem; font-family: var(--font-alt); text-transform: uppercase;
    letter-spacing: 1px; color: var(--sand-dim);
}
.credits .highlight { color: var(--wine-light); font-weight: 700; }

/* AUDIO SECTION */
.audio-section {
    padding: 6rem 8%; background: linear-gradient(to bottom, var(--wine-dark), #0f0203);
    border-top: 1px solid rgba(255,255,255,0.05);
}
.section-heading {
    text-align: center; font-family: var(--font-art); font-size: 3rem;
    color: var(--sand); margin-bottom: 4rem; font-weight: 300;
}
.audio-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 3rem;
}
.audio-card {
    display: flex; gap: 1.5rem; align-items: flex-start; padding: 2rem;
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05);
    border-radius: 4px; transition: 0.3s;
}
.audio-card:hover {
    background: rgba(255,255,255,0.06); border-color: var(--wine-light);
}
.play-btn {
    width: 60px; height: 60px; border-radius: 50%;
    border: 1px solid var(--wine-light); display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: var(--wine-light); cursor: pointer;
    transition: 0.3s; flex-shrink: 0;
}
.play-btn:hover { background: var(--wine-light); color: white; }
.audio-details h3 {
    font-family: var(--font-art); font-size: 1.5rem; color: var(--sand); margin: 0;
}
.artist {
    font-family: var(--font-art); font-style: italic; color: var(--sand-dim); margin-bottom: 1rem;
}
.desc {
    font-size: 0.9rem; line-height: 1.6; color: #bbb; margin-bottom: 1.5rem;
}
.audio-meta {
    font-size: 0.75rem; text-transform: uppercase; color: var(--wine-light);
    display: flex; flex-direction: column; gap: 4px;
}

/* BOOM SECTION */
.boom-section { padding: 6rem 8%; text-align: center; }
.boom-intro {
    max-width: 900px; margin: 0 auto 4rem auto;
    font-family: var(--font-alt); font-size: 1.1rem; line-height: 1.8;
    color: var(--sand); text-transform: uppercase; letter-spacing: 1px;
}
.boom-intro .highlight { color: var(--wine-light); font-weight: 800; }
.boom-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
}
.boom-item { position: relative; }
.img-frame {
    border: 1px solid var(--wine-main); border-radius: 12px;
    padding: 8px; margin-bottom: 1.5rem; transition: 0.3s;
}
.img-frame img {
    width: 100%; border-radius: 8px; display: block; filter: sepia(20%) contrast(1.1);
}
.boom-item:hover .img-frame { border-color: var(--wine-light); transform: translateY(-5px); }
.boom-caption p {
    font-size: 0.8rem; letter-spacing: 2px; color: var(--sand-dim);
    margin-bottom: 5px; text-transform: uppercase;
}
.boom-caption h3 {
    font-family: var(--font-art); font-size: 2rem; color: var(--wine-light);
}
.boom-caption .by {
    font-family: var(--font-alt); font-size: 0.9rem; color: var(--sand);
    margin-left: 10px; text-transform: uppercase; font-weight: 400;
}

/* ABOUT SECTION */
.about-hero { padding: 4rem 8% 6rem 8%; }
.big-title {
    font-size: 6rem; margin-bottom: 4rem; color: var(--wine-light);
    opacity: 0.9; font-weight: 300;
}
.bio-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: flex-start;
}
.bio-text {
    font-family: var(--font-alt); font-size: 1.1rem; line-height: 1.8; color: var(--text);
}
.bio-text p { margin-bottom: 2rem; }
.bio-text strong { color: var(--wine-light); font-weight: 700; }
.bio-text em { font-family: var(--font-art); font-size: 1.3rem; color: var(--sand); }
.bio-image { position: relative; }
.bio-image img {
    width: 100%; border-radius: 4px; filter: grayscale(30%);
    transition: 0.5s; position: relative; z-index: 2;
}
.bio-image:hover img { filter: grayscale(0%); }
.frame-decor {
    position: absolute; top: 20px; left: 20px; width: 100%; height: 100%;
    border: 1px solid var(--wine-light); z-index: 1; transition: 0.5s;
}
.bio-image:hover .frame-decor { top: 10px; left: 10px; }

/* Philosophy, Education, Workshops, Band */
.philosophy-banner {
    margin: 6rem 8%; padding: 4rem; background: rgba(255,255,255,0.03);
    border-radius: 50px; text-align: center; border: 1px solid rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
}
.philosophy-banner p { font-family: var(--font-art); font-size: 1.8rem; color: var(--sand); line-height: 1.4; }
.philosophy-banner.alt-bg {
    background: linear-gradient(135deg, rgba(88, 24, 34, 0.2), rgba(0,0,0,0));
    border-color: var(--wine-main);
}
.philosophy-banner h3 {
    font-family: var(--font-alt); font-size: 1rem; letter-spacing: 4px;
    color: var(--wine-light); text-transform: uppercase; margin-bottom: 2rem;
}
.sub-quote { margin-top: 2rem; font-family: var(--font-alt) !important; font-size: 1rem !important; color: #ccc !important; }

.education-section { padding: 4rem 8%; text-align: center; }
.section-heading-sm { font-family: var(--font-art); font-size: 2.5rem; color: var(--wine-light); margin-bottom: 3rem; }
.edu-container { max-width: 800px; margin: 0 auto; }
.edu-block { font-family: var(--font-alt); line-height: 1.8; color: #ddd; margin-bottom: 3rem; }
.edu-block strong { color: var(--sand); }
.separator-line { width: 100px; height: 1px; background: var(--wine-main); margin: 0 auto 3rem auto; }

.workshops-section { padding: 4rem 8%; }
.workshop-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
.workshop-card { background: transparent; text-align: center; }
.ws-img {
    width: 100%; height: 300px; overflow: hidden; border-radius: 100px 100px 0 0;
    margin-bottom: 1.5rem; border: 1px solid var(--wine-dark); transition: 0.4s;
}
.ws-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; filter: sepia(30%); }
.workshop-card:hover .ws-img { border-color: var(--wine-light); transform: translateY(-10px); }
.workshop-card:hover img { transform: scale(1.1); filter: sepia(0%); }
.ws-info h3 { font-family: var(--font-art); font-size: 1.3rem; color: var(--sand); margin-bottom: 0.5rem; }
.ws-info p { font-family: var(--font-alt); font-size: 0.85rem; color: #aaa; margin-bottom: 0.5rem; }
.year { display: block; color: var(--wine-light); font-size: 0.8rem; font-weight: 700; }

.band-section { padding: 6rem 8%; background: linear-gradient(to bottom, transparent, rgba(42, 10, 16, 0.5)); }
.band-intro { max-width: 800px; margin: 0 auto 4rem auto; text-align: center; font-family: var(--font-alt); line-height: 1.8; }
.band-intro strong { color: #ff0055; text-shadow: 0 0 10px rgba(255, 0, 85, 0.5); }
.band-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.band-img img { width: 100%; border-radius: 12px; border: 1px solid rgba(255,255,255,0.1); transition: 0.4s; }
.band-img:hover img { border-color: #ff0055; box-shadow: 0 0 30px rgba(255, 0, 85, 0.1); }

.final-quote {
    padding: 6rem 8%; text-align: center; background: var(--sand); color: var(--wine-dark);
    margin: 4rem 8%; border-radius: 100px;
}
.final-quote p { font-family: var(--font-art); font-size: 1.5rem; font-weight: 700; line-height: 1.5; }

/* SERVICES SECTION */
.services-section {
    padding: 2rem 5% 8rem 5%; display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem; max-width: 1600px; margin: 0 auto;
}
.service-card {
    background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 2px; overflow: hidden; transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex; flex-direction: column;
}
.service-card:hover {
    transform: translateY(-10px); border-color: var(--wine-light);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    background: linear-gradient(to bottom, rgba(42,10,16,0.4), rgba(0,0,0,0));
}
.service-img-wrapper {
    width: 100%; height: 300px; position: relative; overflow: hidden; border-bottom: 1px solid var(--wine-main);
}
.service-img-wrapper img {
    width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease;
    filter: sepia(20%) contrast(1.1);
}
.service-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: var(--wine-main); opacity: 0; mix-blend-mode: multiply; transition: 0.5s ease;
}
.service-card:hover .service-img-wrapper img { transform: scale(1.1); }
.service-card:hover .service-overlay { opacity: 0.6; }
.service-content { padding: 2.5rem 2rem; flex-grow: 1; display: flex; flex-direction: column; text-align: center; }
.service-title {
    font-family: var(--font-art); font-size: 2rem; color: var(--text);
    margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 1px;
}
.service-subtitle {
    font-family: var(--font-art); font-style: italic; color: var(--sand);
    font-size: 1.1rem; margin-bottom: 2rem; position: relative; display: inline-block;
}
.service-subtitle::after {
    content: ''; display: block; width: 40px; height: 1px;
    background: var(--wine-light); margin: 10px auto 0 auto;
}
.service-desc {
    font-family: var(--font-alt); font-size: 0.95rem; line-height: 1.8; color: #ccc; margin-bottom: 3rem; text-align: center;
}
.service-desc p { margin-bottom: 1.5rem; }
.btn-service {
    margin-top: auto; align-self: center; padding: 12px 35px;
    border: 1px solid var(--sand); border-radius: 50px; color: var(--sand);
    font-family: var(--font-art); text-transform: uppercase; font-size: 0.85rem;
    letter-spacing: 2px; transition: 0.4s; background: transparent;
}
.btn-service:hover {
    background: var(--sand); color: var(--wine-dark); box-shadow: 0 0 20px rgba(212, 197, 176, 0.3);
}

/* CONTACT SECTION */
.contact-page {
    min-height: 100vh; padding: 8rem 5% 4rem 5%;
    display: flex; align-items: center; justify-content: center;
}
.contact-container {
    width: 100%; max-width: 1400px; display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start;
}
.contact-title {
    font-family: var(--font-art); font-size: 5rem; line-height: 0.9;
    color: var(--wine-light); margin-bottom: 4rem;
    text-shadow: 0 0 30px rgba(150, 40, 58, 0.2);
}
.direct-links { display: flex; flex-direction: column; gap: 2rem; }
.big-link {
    display: grid; grid-template-columns: 1fr 2fr auto; align-items: center;
    padding: 1.5rem 0; border-top: 1px solid rgba(255,255,255,0.1);
    transition: 0.4s; font-family: var(--font-alt);
}
.big-link:last-child { border-bottom: 1px solid rgba(255,255,255,0.1); }
.big-link .label { font-size: 0.8rem; color: var(--sand-dim); text-transform: uppercase; letter-spacing: 2px; }
.big-link .value { font-size: 1.0rem; color: var(--text); font-weight: 700; transition: 0.3s; }
.big-link i {
    font-size: 1.5rem; color: var(--wine-light); opacity: 0;
    transform: translateX(-20px); transition: 0.4s;
}
.big-link:hover {
    padding-left: 20px; border-color: var(--wine-light);
    background: linear-gradient(90deg, rgba(150,40,58,0.1), transparent);
}
.big-link:hover .value { color: var(--sand); }
.big-link:hover i { opacity: 1; transform: translateX(0); }

.contact-form-wrapper {
    background: rgba(20, 20, 20, 0.6); padding: 3rem;
    border-radius: 2px; border: 1px solid rgba(255,255,255,0.05); backdrop-filter: blur(10px);
}
.form-header h2 { font-family: var(--font-art); font-size: 2.5rem; color: var(--sand); margin-bottom: 0.5rem; }
.form-header p { color: var(--sand-dim); margin-bottom: 3rem; font-size: 0.9rem; font-family: var(--font-alt); }
.cool-form { display: flex; flex-direction: column; gap: 2rem; }
.input-group { position: relative; width: 100%; }
.cool-form input, .cool-form textarea {
    width: 100%; padding: 10px 0; font-size: 1.1rem; color: var(--text);
    background: transparent; border: none; border-bottom: 1px solid rgba(255,255,255,0.2);
    outline: none; font-family: var(--font-alt); transition: 0.3s; border-radius: 0;
}
.cool-form input:focus, .cool-form textarea:focus { border-bottom-color: var(--wine-light); }
.cool-form label {
    position: absolute; top: 10px; left: 0; color: #666; font-size: 1rem;
    pointer-events: none; transition: 0.3s ease; text-transform: uppercase;
    font-size: 0.8rem; letter-spacing: 1px;
}
.cool-form input:focus ~ label, .cool-form input:not(:placeholder-shown) ~ label,
.cool-form textarea:focus ~ label, .cool-form textarea:not(:placeholder-shown) ~ label {
    top: -15px; font-size: 0.7rem; color: var(--sand);
}
.row-50 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.btn-submit {
    margin-top: 1rem; padding: 15px 0; background: var(--wine-main); color: white;
    border: none; font-family: var(--font-alt); text-transform: uppercase;
    letter-spacing: 2px; font-weight: 700; cursor: pointer; transition: 0.4s;
    display: flex; justify-content: center; align-items: center; gap: 10px;
}
.btn-submit:hover {
    background: var(--wine-light); letter-spacing: 4px; box-shadow: 0 0 20px rgba(150, 40, 58, 0.4);
}

/* Enlaces de créditos */
.credits a, .audio-meta a, .boom-caption .by a, .artist a {
    color: inherit; text-decoration: none;
    border-bottom: 1px solid transparent; transition: 0.3s; cursor: pointer;
}
.credits a:hover, .audio-meta a:hover, .boom-caption .by a:hover, .artist a:hover {
    color: var(--wine-light); border-bottom-color: var(--wine-light);
}


/* =========================================
   6. RESPONSIVE GENERAL & MÓVIL (AL FINAL)
   ========================================= */

/* (AQUÍ ESTÁ TODO EL RESPONSIVE UNIFICADO) */
@media (max-width: 900px) { /* Abarca tablets y móviles */

    /* --- HOME --- */
    .hero-frame { justify-content: flex-start; padding-top: 2vh; }

    .main-title {
        font-size: 19vw; line-height: 0.85; margin-top: 0; text-align: center; width: 100%;
        white-space: normal; overflow-wrap: break-word;
    }
    .sub-role { font-size: 0.7rem; letter-spacing: 3px; margin-top: 1.5rem; opacity: 0.8; }

    /* Menú Home Lateral en Móvil */
    .side-nav {
        position: fixed; left: auto !important; right: 2rem !important;
        transform: none !important; flex-direction: column !important;
        align-items: flex-end !important; gap: 1.2rem;
        z-index: 9999; opacity: 1 !important; transition: none !important; text-align: right;
    }
    .side-nav.right { top: auto; bottom: 3rem; }
    .side-nav.left { top: auto; bottom: 8rem; }
    .nav-link {
        font-size: 0.85rem; letter-spacing: 2px; font-weight: 400;
        color: rgba(255, 255, 255, 0.9) !important; text-transform: uppercase;
        padding: 2px 0; text-shadow: 0 2px 5px rgba(0,0,0,0.8);
    }

    /* Iconos Home en Móvil */
    .bottom-info {
        display: flex; position: fixed; left: 2rem; bottom: 3rem;
        z-index: 100; align-items: flex-start;
    }
    .sculpt-text, .scroll-line { display: none; }
    .hero-socials { flex-direction: column; gap: 1.2rem; }
    .hero-socials a { font-size: 1.4rem; opacity: 0.9; text-shadow: 0 2px 5px rgba(0,0,0,0.8); }

    /* --- NAVBAR INTERIOR --- */
    body:not(.home-mode) { padding-top: 100px; }
    header#navbar { padding: 1.5rem; background: var(--wine-dark); }
    .nav-menu {
        position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
        background: var(--wine-dark); flex-direction: column;
        justify-content: center; align-items: center;
        transform: translateY(-100%); transition: 0.5s ease; z-index: -1;
    }
    .nav-menu.active { transform: translateY(0); }
    .nav-menu ul { flex-direction: column; text-align: center; gap: 2rem; }
    .hamburger { display: flex; }

    /* --- PÁGINAS GENERALES --- */
    .project-card, .project-card.reverse { grid-template-columns: 1fr; gap: 2rem; direction: ltr; }
    .audio-grid { grid-template-columns: 1fr; }
    .boom-grid { grid-template-columns: 1fr; gap: 4rem; }
    .page-title { font-size: 3rem; }
    
    .big-title { font-size: 4rem; }
    .bio-grid { grid-template-columns: 1fr; gap: 3rem; }
    .band-gallery { grid-template-columns: 1fr; }
    .final-quote { border-radius: 30px; padding: 3rem 2rem; }
    
    /* --- CONTACTO FIX (SCROLL & ZOOM) --- */
    .contact-page {
        display: block !important; height: auto !important; min-height: 100vh;
        padding: 140px 1.5rem 4rem 1.5rem; overflow: visible !important; width: 100%;
    }
    .contact-container { display: block !important; width: 100%; max-width: 100%; }
    .contact-direct { margin-bottom: 3rem; }
    .contact-title { font-size: 3rem; line-height: 1; margin-bottom: 2rem; word-wrap: break-word; }
    .contact-form-wrapper { padding: 2rem 1.5rem; width: 100%; }
    .row-50 { grid-template-columns: 1fr; gap: 2rem; }
    
    /* --- FOOTER FIX MÓVIL (AHORA SÍ FUNCIONARÁ) --- */
    .footer-grid { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
    .footer-nav, .footer-socials { align-items: center; }
    .footer-bottom { flex-direction: column; gap: 1rem; }
    .footer-logo { font-size: 3rem; }
}