/* ==========================================================================
   AFQHL — EDITORIAL HIGH-CONTRAST DARK STYLESHEET
   ========================================================================== */

:root {
    --bg-dark: #050505;
    --bg-surface: #0a0a0c;
    --text-pure: #ffffff;
    --text-muted: #7d7d82;
    --border-fine: rgba(255, 255, 255, 0.08);
    --font-serif: 'Italiana', Georgia, serif;
    --font-sans: 'Plus Jakarta Sans', -apple-system, sans-serif;
    --ease-cinematic: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    cursor: none; /* Cursor personalizado */
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-dark);
}

body {
    background-color: var(--bg-dark);
    color: var(--text-pure);
    font-family: var(--font-sans);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Cursor Personalizado Circulo Smooth */
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 18px;
    height: 18px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s var(--ease-cinematic), height 0.3s var(--ease-cinematic), background-color 0.3s ease;
}

.custom-cursor.active {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

/* Header Editorial */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: linear-gradient(180deg, rgba(5,5,5,0.9) 0%, rgba(5,5,5,0) 100%);
}

.brand-logo {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--text-pure);
    text-decoration: none;
    letter-spacing: 0.1em;
}

.nav-menu {
    display: flex;
    gap: 3rem;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    transition: color 0.3s ease, transform 0.3s ease;
}

.nav-link:hover {
    color: var(--text-pure);
    transform: translateY(-2px);
}

.header-tag {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: var(--text-muted);
}

/* HERO SPLIT SECTION */
.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    width: 100vw;
}

.hero-left {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem;
    background-color: var(--bg-dark);
}

.vertical-meta {
    position: absolute;
    left: 3rem;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    display: flex;
    gap: 2rem;
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    color: var(--text-muted);
}

.hero-title-container {
    text-align: center;
}

.micro-date {
    font-size: 0.65rem;
    letter-spacing: 0.4em;
    color: var(--text-muted);
    display: block;
    margin-bottom: 1rem;
}

.hero-title-serif {
    font-family: var(--font-serif);
    font-size: clamp(5rem, 12vw, 11rem);
    font-weight: 400;
    line-height: 0.85;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 300;
}

.hero-right {
    position: relative;
    overflow: hidden;
    background-color: #000;
}

.image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(120%);
    transition: transform 1.2s var(--ease-cinematic);
}

.hero-right:hover .hero-img {
    transform: scale(1.05);
    filter: grayscale(80%) contrast(110%);
}

.hero-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--bg-dark) 0%, transparent 20%);
}

.watermark-brand {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    font-family: var(--font-sans);
    font-size: 5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    letter-spacing: -0.05em;
    pointer-events: none;
}

/* SECCIONES Y GALERÍA */
.section-gallery, .section-band, .section-contact {
    padding: 10rem 6rem;
    border-top: 1px solid var(--border-fine);
}

.section-num {
    font-size: 0.65rem;
    letter-spacing: 0.4em;
    color: var(--text-muted);
    display: block;
    margin-bottom: 0.8rem;
}

.editorial-heading {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400;
    letter-spacing: 0.05em;
    margin-bottom: 5rem;
}

/* GRID FOTOGRÁFICO ASIAMÉTRICO */
.editorial-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 3rem;
}

.item-large { grid-column: span 7; }
.item-tall { grid-column: span 5; margin-top: 4rem; }
.item-wide { grid-column: span 12; margin-top: 3rem; }

.img-container {
    width: 100%;
    overflow: hidden;
    background-color: var(--bg-surface);
}

.img-container img {
    width: 100%;
    height: 100%;
    max-height: 700px;
    object-fit: cover;
    filter: grayscale(100%);
    transition: transform 0.8s var(--ease-cinematic), filter 0.8s ease;
}

.gallery-item:hover img {
    transform: scale(1.04);
    filter: grayscale(0%);
}

.item-caption {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--text-muted);
}

/* INTEGRANTES GRID */
.band-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}

.member-card {
    display: flex;
    flex-direction: column;
}

.member-img-wrap {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    margin-bottom: 1.5rem;
    background-color: var(--bg-surface);
}

.member-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: transform 0.8s var(--ease-cinematic);
}

.member-card:hover img {
    transform: scale(1.05);
}

.member-name {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 400;
}

.member-role {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.2em;
    margin-top: 0.3rem;
}

/* CONTACTO */
.section-contact {
    text-align: center;
    background-color: #030303;
}

.contact-title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 6vw, 6rem);
    font-weight: 400;
    margin: 1rem 0;
}

.contact-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 3rem;
}

.contact-actions {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.btn-editorial {
    padding: 1.2rem 3.5rem;
    border: 1px solid var(--border-fine);
    background: transparent;
    color: var(--text-pure);
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    transition: all 0.5s var(--ease-cinematic);
}

.btn-editorial:hover {
    background: var(--text-pure);
    color: var(--bg-dark);
}

/* FOOTER */
.footer-editorial {
    display: flex;
    justify-content: space-between;
    padding: 3rem 6rem;
    border-top: 1px solid var(--border-fine);
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    color: var(--text-muted);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .hero-split { grid-template-columns: 1fr; }
    .hero-right { height: 60vh; }
    .section-gallery, .section-band, .section-contact { padding: 6rem 2rem; }
    .editorial-grid { grid-template-columns: 1fr; }
    .item-large, .item-tall, .item-wide { grid-column: span 1; margin-top: 0; }
    .band-grid { grid-template-columns: 1fr; }
    .main-header { padding: 1.5rem 2rem; }
    .nav-menu { display: none; }
    *, *::before, *::after { cursor: auto; }
    .custom-cursor { display: none; }
}