/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: #0F0E0C;
    color: #EFE6D2;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-weight: 300;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }

:root {
    --bg: #0F0E0C;
    --bg-elev: #18150F;
    --cream: #EFE6D2;
    --cream-dim: #B8AE96;
    --gold: #C9A66B;
    --gold-soft: #8B6F3D;
    --red: #8C2A2A;
    --line: rgba(239, 230, 210, 0.12);
    --serif: 'Cormorant Garamond', 'Georgia', serif;
}

/* ---------- Typography ---------- */
h1, h2, h3 {
    font-family: var(--serif);
    font-weight: 500;
    letter-spacing: -0.01em;
    margin: 0;
}
h2 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); line-height: 1.05; }
h3 { font-size: 1.4rem; font-weight: 600; margin-top: 2rem; }
.eyebrow {
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.72rem;
    color: var(--gold);
    margin: 0 0 1.2rem 0;
}
em { color: var(--cream); font-style: italic; }
strong { color: var(--cream); font-weight: 500; }

/* ---------- Top nav ---------- */
.topnav {
    position: fixed;
    top: 0; left: 0; right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(15,14,12,0.95), rgba(15,14,12,0.6));
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.topnav .brand {
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--cream);
}
.brand__mark {
    width: 32px;
    height: 19px;
    color: var(--gold);
    flex-shrink: 0;
}
.topnav ul {
    display: flex;
    gap: 2rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}
.topnav a { transition: color 0.2s; }
.topnav a:hover { color: var(--gold); }

/* ---------- Hero ---------- */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 0;
    padding-top: 5rem;
}
.hero__media {
    height: 100vh;
    overflow: hidden;
    position: relative;
}
.hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: contrast(1.05);
}
.hero__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 60%, rgba(15,14,12,0.6) 100%);
    pointer-events: none;
}
.hero__content {
    padding: 4rem 5rem;
}
.hero__title {
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(4rem, 9vw, 8rem);
    line-height: 0.92;
    letter-spacing: -0.03em;
    margin: 0.5rem 0 2rem;
    color: var(--cream);
}
.hero__tagline {
    font-size: 1.15rem;
    color: var(--cream-dim);
    max-width: 28rem;
    margin: 0 0 3rem;
    line-height: 1.5;
}
.hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    border-top: 1px solid var(--line);
    padding-top: 2rem;
}
.hero__meta li {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--cream-dim);
    border: 1px solid var(--line);
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
}

/* ---------- Nuevo Lanzamiento ---------- */
.release {
    background: var(--bg-elev);
    padding: 6rem 5rem;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.release__head {
    max-width: 1400px;
    margin: 0 auto 3rem;
}
.release__head h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    margin-top: 0.6rem;
}
.release__video {
    position: relative;
    display: block;
    max-width: 1200px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #000;
    box-shadow: 0 30px 80px -30px rgba(0,0,0,0.7), 0 0 0 1px var(--line);
    cursor: pointer;
}
.release__video iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}
.release__video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.4s ease;
    filter: brightness(0.78);
}
.release__video:hover img {
    transform: scale(1.03);
    filter: brightness(0.9);
}
.release__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 96px;
    height: 96px;
    color: var(--cream);
    transition: color 0.2s, transform 0.3s ease;
}
.release__video:hover .release__play {
    color: var(--gold);
    transform: translate(-50%, -50%) scale(1.06);
}
.release__play svg { width: 100%; height: 100%; display: block; }
.release__cta {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    background: rgba(15, 14, 12, 0.85);
    color: var(--gold);
    padding: 0.6rem 1.1rem;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    backdrop-filter: blur(4px);
    border: 1px solid var(--line);
}

/* ---------- Embeds Spotify / YouTube ---------- */
.embed-spotify, .embed-youtube {
    background: var(--bg-elev);
    border: 1px solid var(--line);
    overflow: hidden;
    border-radius: 4px;
}
.embed-spotify iframe { display: block; }
.embed-youtube {
    aspect-ratio: 16 / 9;
}
.embed-youtube iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* ---------- YouTube channel card ---------- */
.yt-channel {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #000;
    border-radius: 4px;
    border: 1px solid var(--line);
}
.yt-channel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    transition: transform 0.6s ease, filter 0.4s ease;
    filter: brightness(0.55) grayscale(0.15);
}
.yt-channel:hover img {
    transform: scale(1.04);
    filter: brightness(0.65);
}
.yt-channel__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--cream);
    padding: 1.5rem;
    background: linear-gradient(180deg, transparent 30%, rgba(15,14,12,0.55) 100%);
}
.yt-channel__icon {
    width: 72px;
    height: auto;
    color: #FF0000;
    margin-bottom: 1.2rem;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5));
}
.yt-channel:hover .yt-channel__icon {
    transform: scale(1.08);
}
.yt-channel__title {
    font-family: var(--serif);
    font-size: 1.6rem;
    margin: 0;
    color: var(--cream);
}
.yt-channel__cta {
    margin: 0.6rem 0 0;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--gold);
}

/* ---------- Sections ---------- */
.section {
    padding: 8rem 5rem;
    max-width: 1400px;
    margin: 0 auto;
}
.section__head {
    margin-bottom: 4rem;
    max-width: 50rem;
}
.section__sub {
    color: var(--cream-dim);
    margin-top: 1rem;
}

/* ---------- Bio ---------- */
.bio__grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 5rem;
    align-items: start;
}
.bio__text p {
    margin: 0 0 1.4rem;
    font-size: 1.05rem;
    color: var(--cream-dim);
}
.bio__text .lead {
    font-size: 1.3rem;
    color: var(--cream);
    line-height: 1.5;
    margin-bottom: 2rem;
}
.bio__text h3 {
    color: var(--gold);
    margin-top: 3rem;
    font-size: 1.5rem;
    border-top: 1px solid var(--line);
    padding-top: 2rem;
}

/* Stats destacados dentro de la bio */
.bio__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    margin: 2rem 0 1rem;
}
.bio__stats li {
    background: var(--bg-elev);
    border: 1px solid var(--line);
    padding: 1.8rem 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.bio__stats strong {
    font-family: var(--serif);
    font-size: 2.4rem;
    line-height: 1;
    color: var(--gold);
    font-weight: 600;
}
.bio__stats span {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--cream-dim);
    line-height: 1.5;
}

/* Lista de hitos */
.bio__list {
    margin: 1.5rem 0;
    display: grid;
    gap: 1rem;
}
.bio__list li {
    position: relative;
    padding: 1rem 0 1rem 1.8rem;
    border-bottom: 1px solid var(--line);
    font-size: 1.02rem;
    color: var(--cream-dim);
    line-height: 1.55;
}
.bio__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1.55rem;
    width: 10px;
    height: 1px;
    background: var(--gold);
}
.bio__list li strong {
    color: var(--cream);
}

/* Pullquote / perfil de artista */
.bio__quote {
    margin: 3rem 0;
    padding: 2.5rem 0 2rem;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    position: relative;
}
.bio__quote p {
    font-family: var(--serif);
    font-size: clamp(1.4rem, 2.2vw, 1.8rem);
    font-style: italic;
    line-height: 1.35;
    color: var(--cream);
    margin: 0 0 1rem;
}
.bio__quote p::before {
    content: '"';
    color: var(--gold);
    margin-right: 0.1em;
}
.bio__quote p::after {
    content: '"';
    color: var(--gold);
    margin-left: 0.05em;
}
.bio__quote cite {
    display: block;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--gold);
}
.bio__aside {
    position: sticky;
    top: 6rem;
}
.bio__aside img {
    margin-bottom: 2rem;
    filter: grayscale(0.1);
}
.factsheet {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.6rem 1.5rem;
    margin: 0;
    font-size: 0.92rem;
}
.factsheet dt {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.72rem;
    padding-top: 0.3rem;
}
.factsheet dd {
    margin: 0;
    color: var(--cream);
}

/* ---------- Música ---------- */
.musica__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}
.musica__card h3 {
    color: var(--gold);
    margin: 0 0 1rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}
.embed-placeholder {
    aspect-ratio: 16 / 9;
    background: var(--bg-elev);
    border: 1px dashed var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--cream-dim);
    padding: 2rem;
    border-radius: 4px;
}
.embed-placeholder p { margin: 0; }
.embed-placeholder small { color: var(--gold-soft); display: block; margin-top: 0.5rem; }

.tracks {
    border-top: 1px solid var(--line);
    padding-top: 3rem;
}
.tracks h3 {
    margin-bottom: 1.5rem;
    color: var(--cream);
    font-family: var(--serif);
    font-size: 2rem;
}
.tracks ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem 3rem;
}
.tracks li {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
    align-items: baseline;
    gap: 1rem;
}
.tracks li span {
    font-family: var(--serif);
    font-size: 1.3rem;
    color: var(--cream);
}
.tracks li small {
    color: var(--cream-dim);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    text-align: right;
    flex-shrink: 0;
}

/* ---------- Galería ---------- */
.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.gallery__item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: var(--bg-elev);
}
.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.4s ease;
    filter: brightness(0.92);
}
.gallery__item:hover img {
    transform: scale(1.04);
    filter: brightness(1);
}
.gallery__download {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(15, 14, 12, 0.85);
    color: var(--gold);
    padding: 0.5rem 1rem;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.25s, transform 0.25s;
    backdrop-filter: blur(4px);
}
.gallery__item:hover .gallery__download {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Contacto ---------- */
.contacto__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: stretch;
}
.contacto__card {
    border: 1px solid var(--line);
    padding: 2.5rem;
    background: var(--bg-elev);
    display: flex;
    flex-direction: column;
}
.contacto__card h3 {
    color: var(--gold);
    margin: 0 0 1.5rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

/* Booking card (click-to-WhatsApp) */
.contacto__card--booking {
    color: inherit;
    transition: border-color 0.25s, background 0.25s;
    justify-content: space-between;
}
.contacto__card--booking:hover {
    border-color: var(--gold);
    background: #1E1B14;
}
.contacto__phone {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 2.8vw, 2.4rem);
    color: var(--cream);
    margin: 0.5rem 0 auto;
    letter-spacing: 0.01em;
    line-height: 1.2;
}
.contacto__cta {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin: 2rem 0 0;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
    color: var(--gold);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}
.contacto__cta svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}
.contacto__cta .arrow {
    margin-left: auto;
    letter-spacing: 0;
    transition: transform 0.25s;
}
.contacto__card--booking:hover .contacto__cta .arrow {
    transform: translateX(4px);
}
.redes {
    display: grid;
    gap: 0.8rem;
}
.redes a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--serif);
    font-size: 1.4rem;
    transition: color 0.2s, padding 0.2s;
}
.redes a::after {
    content: '→';
    color: var(--gold);
    font-family: 'Inter', sans-serif;
    transition: transform 0.2s;
}
.redes a:hover { color: var(--gold); }
.redes a:hover::after { transform: translateX(4px); }

/* ---------- Footer ---------- */
.footer {
    border-top: 1px solid var(--line);
    padding: 2.5rem 5rem;
    display: flex;
    justify-content: space-between;
    font-size: 0.78rem;
    color: var(--cream-dim);
    text-transform: uppercase;
    letter-spacing: 0.18em;
}
.footer p { margin: 0; }

/* ---------- Reveal on scroll ---------- */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
    .topnav { padding: 0.8rem 1.2rem; }
    .topnav ul { display: none; }
    .hero { grid-template-columns: 1fr; padding-top: 4rem; }
    .hero__media { height: 70vh; }
    .hero__media::after {
        background: linear-gradient(0deg, var(--bg) 0%, transparent 50%);
    }
    .hero__content { padding: 3rem 1.5rem; }
    .section { padding: 5rem 1.5rem; }
    .release { padding: 4rem 1.5rem; }
    .bio__grid { grid-template-columns: 1fr; gap: 3rem; }
    .bio__aside { position: static; }
    .musica__grid { grid-template-columns: 1fr; }
    .tracks ul { grid-template-columns: 1fr; }
    .bio__stats { grid-template-columns: 1fr; gap: 0.8rem; }
    .bio__stats strong { font-size: 2rem; }
    .gallery { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
    .gallery__download { opacity: 1; transform: none; font-size: 0.65rem; padding: 0.4rem 0.8rem; }
    .contacto__grid { grid-template-columns: 1fr; }
    .footer { padding: 2rem 1.5rem; flex-direction: column; gap: 0.5rem; }
}
@media (max-width: 560px) {
    .gallery { grid-template-columns: 1fr; }
    .hero__stats { gap: 1.5rem; }
    .hero__stats strong { font-size: 1.4rem; }
}
