/* ============================================
   LUBOZ STUDIOS — NOSOTROS PERFECT v9.0
   ============================================ */

:root {
    --gold: #c4a33d;
    --bg: #000;
    --surface: #0a0a0a;
    --text: #ffffff;
    --muted: rgba(255,255,255,0.6);
    --border: rgba(255,255,255,0.1);
    --transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.ns-main { background: var(--bg); color: var(--text); overflow-x: hidden; font-family: 'Syne', sans-serif; }

/* ── Hero ────────────────────────────────── */
.ns-hero {
    height: 80vh; display: flex; align-items: center; justify-content: center;
    position: relative; text-align: center; padding: 0 5%;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                url('https://lubozstudios.com/wp-content/uploads/2023/10/agencia-de-branding-valencia-venezuela-luboz-studios.jpg') center/cover no-repeat;
}
.ns-hero-h1 {
    font-size: clamp(2.5rem, 8vw, 6rem); font-weight: 900; line-height: 1; letter-spacing: -0.04em;
    max-width: 1200px;
}
.ns-hero-h1 span { color: var(--gold); }

/* ── Misión / Visión (Minimalist) ────────── */
.ns-mv-section { padding: 120px 5%; max-width: 1400px; margin: 0 auto; }
.ns-mv-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; position: relative;
}
.ns-mv-grid::after {
    content: ''; position: absolute; left: 50%; top: 0; width: 1px; height: 100%;
    background: var(--border); transform: translateX(-50%);
}
@media(max-width: 900px) { 
    .ns-mv-grid { grid-template-columns: 1fr; gap: 60px; }
    .ns-mv-grid::after { display: none; }
}

.ns-mv-item { position: relative; }
.ns-mv-num { font-size: 0.8rem; color: var(--gold); letter-spacing: 5px; text-transform: uppercase; margin-bottom: 20px; display: block; font-weight: 800; }
.ns-mv-h2 { font-size: 3rem; font-weight: 800; margin-bottom: 30px; line-height: 1; }
.ns-mv-p { font-size: 1.25rem; line-height: 1.8; color: var(--muted); max-width: 550px; }

/* ── Video ───────────────────────────────── */
.ns-video-wrap { padding: 0 5% 120px; }
.ns-video-box {
    max-width: 1200px; margin: 0 auto; aspect-ratio: 16/9;
    border-radius: 12px; overflow: hidden; border: 1px solid var(--border);
}
.ns-video-box iframe { width: 100%; height: 100%; border: none; }

/* ── Team (Elegant Gallery) ──────────────── */
.ns-team-section { padding: 120px 5%; background: var(--surface); }
.ns-team-header { text-align: center; margin-bottom: 100px; }
.ns-team-label { font-size: 0.7rem; color: var(--gold); letter-spacing: 8px; text-transform: uppercase; margin-bottom: 20px; display: block; }

.ns-team-grid {
    max-width: 1300px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px;
}
@media(max-width: 1100px) { .ns-team-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width: 600px) { .ns-team-grid { grid-template-columns: 1fr; } }

.ns-member-card {
    cursor: pointer; transition: var(--transition);
}
.ns-member-card:hover { transform: translateY(-15px); }

.ns-member-photo {
    width: 100%; aspect-ratio: 1/1; border-radius: 50%; overflow: hidden;
    margin-bottom: 30px; border: 1px solid var(--border);
    background: #000; transition: var(--transition);
}
.ns-member-photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1); transition: 0.8s; }
.ns-member-card:hover .ns-member-photo { border-color: var(--gold); }
.ns-member-card:hover .ns-member-photo img { filter: grayscale(0); transform: scale(1.1); }

.ns-member-details { text-align: center; }
.ns-member-name { font-size: 1.6rem; font-weight: 800; margin-bottom: 8px; }
.ns-member-role { font-size: 0.65rem; color: var(--gold); text-transform: uppercase; letter-spacing: 3px; font-weight: 700; }

/* ── Wolf Origin ────────────────────────── */
.ns-wolf-section { padding: 150px 5%; text-align: center; background: var(--bg); }
.ns-wolf-inner { max-width: 800px; margin: 0 auto; }
.ns-wolf-icon { font-size: 4rem; margin-bottom: 40px; color: var(--gold); }
.ns-wolf-h3 { font-size: 3rem; font-weight: 900; margin-bottom: 30px; }
.ns-wolf-p { font-size: 1.4rem; line-height: 1.8; color: var(--muted); }

/* ── CTA ─────────────────────────────────── */
.ns-cta { padding: 150px 5%; text-align: center; }
.ns-cta-h2 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 900; margin-bottom: 50px; }
.ns-cta-h2 span { color: var(--gold); }
.ns-btn-wa {
    display: inline-flex; align-items: center; gap: 15px;
    background: var(--gold); color: #000; padding: 22px 60px; border-radius: 4px;
    font-weight: 900; text-decoration: none; text-transform: uppercase; letter-spacing: 2px;
    transition: var(--transition);
}
.ns-btn-wa:hover { transform: translateY(-5px) scale(1.05); box-shadow: 0 20px 40px rgba(196,163,61,0.3); }

/* ── Modal ───────────────────────────────── */
.ns-modal {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.95); backdrop-filter: blur(20px);
    z-index: 10000; display: none; padding: 60px 5%;
}
.ns-modal-inner {
    max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: center; height: 100%;
}
/* Modal Base Styles */
.ns-modal-img { width: 100%; aspect-ratio: 1/1; border-radius: 50%; overflow: hidden; border: 2px solid var(--gold); }
.ns-modal-img img { width: 100%; height: 100%; object-fit: cover; }
.ns-modal-close { position: absolute; top: 40px; right: 40px; font-size: 3rem; color: #fff; cursor: pointer; }
.ns-modal-name { font-size: 4rem; font-weight: 900; margin-bottom: 10px; line-height: 1; }
.ns-modal-role { font-size: 0.8rem; color: var(--gold); letter-spacing: 5px; text-transform: uppercase; margin-bottom: 40px; display: block; }
.ns-modal-bio { font-size: 1.3rem; color: var(--muted); line-height: 1.8; margin-bottom: 50px; }
.ns-modal-skills { display: flex; flex-direction: column; gap: 30px; }
.ns-skill-bar { height: 1px; background: rgba(255,255,255,0.1); position: relative; }
.ns-skill-fill { position: absolute; top: 0; left: 0; height: 3px; background: var(--gold); transition: width 1.5s ease; box-shadow: 0 0 15px var(--gold); }

/* Responsive Overrides */
@media (max-width: 1024px) {
    .ns-hero { height: 60vh; }
    .ns-hero-h1 { font-size: clamp(2.2rem, 10vw, 4.5rem); }
    .ns-mv-h2 { font-size: 2.5rem; }
    .ns-modal-inner { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 768px) {
    .ns-hero { height: auto; padding: 160px 5% 100px; }
    .ns-mv-section, .ns-team-section, .ns-wolf-section, .ns-cta { padding: 80px 5%; }
    .ns-mv-h2 { font-size: 2.2rem; }
    .ns-mv-p { font-size: 1.1rem; }
    .ns-member-photo { width: 180px; height: 180px; margin-left: auto; margin-right: auto; }
    .ns-wolf-h3 { font-size: 2.2rem; }
    .ns-wolf-p { font-size: 1.1rem; }
    .ns-modal-name { font-size: 2.5rem; }
    .ns-modal-bio { font-size: 1.1rem; }
}

@media (max-width: 480px) {
    .ns-hero-h1 { font-size: 2.2rem; }
    .ns-member-photo { width: 150px; height: 150px; }
    .ns-modal-close { top: 20px; right: 20px; font-size: 2.5rem; }
}
