/* ════════════════════════════════════════════════════
   DIGITAL FILM WORK — Design System & Styles
   ════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400&family=Montserrat:wght@300;400&display=swap');

/* ─── Variables ─── */
:root {
    --black: #000000;
    --white: #FFFFFF;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    --section-pad: 120px;
    --ease: all 0.4s ease;
}

/* ─── Reset ─── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border-radius: 0 !important;
    box-shadow: none !important;
}
*:focus { outline: none; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--black);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.9;
    -webkit-font-smoothing: antialiased;
}
img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── Buttons ─── */
.btn {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 12px;
    padding: 16px 40px;
    border: 1px solid;
    background: transparent;
    cursor: pointer;
    transition: var(--ease);
}
.btn--white { color: var(--white); border-color: var(--white); }
.btn--white:hover { background: var(--white); color: var(--black); }
.btn--black { color: var(--black); border-color: var(--black); }
.btn--black:hover { background: var(--black); color: var(--white); }

/* ─── Divider ─── */
.divider {
    width: 80px;
    height: 1px;
    margin: 32px auto 64px;
    background: var(--black);
}
.divider--white { background: var(--white); }

/* ════════════════════════════════
   HERO
   ════════════════════════════════ */
.hero {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background: var(--black);
}
.hero__video {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 1;
}
.hero__logo {
    position: absolute;
    top: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: 180px;
    height: auto;
    object-fit: contain;
    opacity: 0;
}
.hero__menu {
    position: absolute;
    top: 52px; right: 48px;
    z-index: 10;
    cursor: pointer;
    opacity: 0;
    padding: 8px;
}
.hero__menu span {
    display: block;
    width: 32px;
    height: 2px;
    background: var(--white);
    margin-bottom: 7px;
    transition: var(--ease);
    filter: drop-shadow(0 1px 3px rgba(0,0,0,0.6));
}
.hero__menu span:last-child { margin-bottom: 0; }
.hero__menu:hover span { opacity: 0.7; }
.hero__location {
    position: absolute;
    bottom: 48px; left: 48px;
    z-index: 10;
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 11px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.4em;
    opacity: 0.7;
}
.hero__cta {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 16px;
}
.hero__cta .btn {
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

/* ════════════════════════════════
   PAGE HEADER (Contact, Booking)
   ════════════════════════════════ */
.page-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 48px;
    background: var(--black);
}
.page-header__logo img { width: 160px; height: auto; }
.page-header .hero__menu { opacity: 1; }

/* ════════════════════════════════
   MENU OVERLAY
   ════════════════════════════════ */
.menu-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: var(--black);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease;
}
.menu-overlay.active {
    opacity: 1;
    pointer-events: all;
}
.menu-overlay__close {
    position: absolute;
    top: 48px; right: 48px;
    cursor: pointer;
    width: 32px; height: 20px;
}
.menu-overlay__close span {
    display: block;
    width: 32px; height: 1px;
    background: var(--white);
    position: absolute;
    top: 50%;
}
.menu-overlay__close span:first-child { transform: rotate(45deg); }
.menu-overlay__close span:last-child { transform: rotate(-45deg); }
.menu-overlay__nav { text-align: center; }
.menu-overlay__nav li { margin: 28px 0; }
.menu-overlay__nav a {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 48px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: opacity 0.3s ease;
}
.menu-overlay__nav a:hover { opacity: 0.4; }

/* ════════════════════════════════
   SERVICIOS
   ════════════════════════════════ */
.servicios {
    background: var(--white);
    padding: var(--section-pad) 0 0;
}
.servicios__title {
    text-align: center;
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: clamp(40px, 6vw, 80px);
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 0 20px;
}
.servicios__row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    padding: 0 10px;
    margin-bottom: 10px;
}
.servicios__card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.servicios__card--short { height: 480px; margin-top: 60px; }
.servicios__card--tall  { height: 640px; margin-top: 0; }
.servicios__card img {
    transition: transform 0.7s ease;
}
.servicios__card-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.7s ease;
}
.servicios__card:hover .servicios__card-overlay {
    background: rgba(0,0,0,0.5);
}
.servicios__card:hover img { transform: scale(1.05); }
.servicios__card-label {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 14px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.35em;
}

/* ════════════════════════════════
   ABOUT
   ════════════════════════════════ */
.about {
    background: var(--black);
    display: grid;
    grid-template-columns: 45% 55%;
    min-height: 100vh;
}
.about__text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px;
    color: var(--white);
}
.about__label {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5em;
    opacity: 0.6;
}
.about__title {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: clamp(36px, 4vw, 60px);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 20px 0 32px;
    line-height: 1.15;
}
.about__desc {
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 16px;
}
.about__desc--muted { opacity: 0.8; }
.about__btn { margin-top: 48px; align-self: flex-start; }
.about__image {\n    position: relative;\n    overflow: hidden;\n}\n.about__image img {\n    height: 100%;\n}

/* ════════════════════════════════
   STATS
   ════════════════════════════════ */
.stats {
    height: 500px;
    background: var(--black);
    background-image: url('https://images.unsplash.com/photo-1585951237318-6843f8b05769?auto=format&fit=crop&w=1920&q=80');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.stats::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.65);
    z-index: 1;
}
.stats__inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 64px;
}
.stats__item { text-align: center; }
.stats__number {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 80px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.stats__number--large { font-size: 96px; }
.stats__label {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 11px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.4em;
    opacity: 0.85;
    margin-top: 12px;
}
.stats__sep {
    width: 1px;
    height: 70px;
    background: var(--white);
    opacity: 0.5;
}

/* ════════════════════════════════
   PORTAFOLIO
   ════════════════════════════════ */
.portafolio {
    background: var(--white);
    padding: var(--section-pad) 0;
}
.portafolio__title {
    text-align: center;
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: clamp(40px, 5vw, 72px);
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}
.portafolio__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 0 10px;
    min-height: 200px;
}
.portafolio__loading {
    grid-column: 1 / -1;
    text-align: center;
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    opacity: 0.4;
    padding: 80px 0;
}
.portafolio__card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    height: 360px;
}
.portafolio__card img {
    transition: transform 0.7s ease;
}
.portafolio__card-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: background 0.5s ease;
}
.portafolio__card:hover .portafolio__card-overlay {
    background: rgba(0,0,0,0.5);
}
.portafolio__card:hover img { transform: scale(1.05); }
.portafolio__card-play {
    width: 56px;
    height: 56px;
    border: 2px solid var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--ease);
    opacity: 0.8;
}
.portafolio__card:hover .portafolio__card-play {
    opacity: 1;
    background: var(--white);
}
.portafolio__card-play svg { transition: var(--ease); }
.portafolio__card:hover .portafolio__card-play svg { fill: var(--black); stroke: var(--black); }
.portafolio__card-title {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 11px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-top: 16px;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.5s ease 0.1s;
    text-align: center;
    padding: 0 12px;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.portafolio__card:hover .portafolio__card-title {
    opacity: 0.8;
    transform: translateY(0);
}
.portafolio__btn {
    text-align: center;
    margin-top: 80px;
}

/* ════════════════════════════════
   CTA
   ════════════════════════════════ */
.cta {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}
.cta__bar-left,
.cta__bar-right {
    position: absolute;
    top: 0;
    width: 60px;
    height: 100%;
    background: var(--black);
    z-index: 3;
}
.cta__bar-left  { left: 0; }
.cta__bar-right { right: 0; }
.cta__bg {
    position: absolute;
    top: 0; left: 60px;
    width: calc(100% - 120px);
    height: 100%;
    object-fit: cover;
    z-index: 1;
}
.cta__box {
    position: absolute;
    left: 60px;
    top: 50%;
    transform: translateY(-50%);
    width: 52%;
    max-width: 680px;
    background: var(--white);
    padding: 80px;
    z-index: 4;
}
.cta__label {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5em;
    opacity: 0.5;
    margin-bottom: 24px;
}
.cta__title {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: clamp(32px, 4vw, 52px);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1.1;
    margin-bottom: 24px;
}
.cta__desc {
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 40px;
}
.cta__contact {
    margin-top: 32px;
}
.cta__contact-item {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-top: 12px;
    opacity: 0.7;
}

/* ════════════════════════════════
   FOOTER
   ════════════════════════════════ */
.footer {
    background: var(--black);
    padding: 80px 48px 48px;
    color: var(--white);
    text-align: center;
}
.footer__logo {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 36px;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    margin-bottom: 40px;
}
.footer__links {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.footer__links a {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--white);
    opacity: 0.6;
    transition: opacity 0.3s ease;
}
.footer__links a:hover { opacity: 1; }
.footer__social {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 40px;
}
.footer__social a {
    color: var(--white);
    opacity: 0.5;
    transition: opacity 0.3s ease;
    display: flex;
}
.footer__social a:hover { opacity: 1; }
.footer__line {
    width: 80px;
    height: 1px;
    background: var(--white);
    opacity: 0.3;
    margin: 0 auto 32px;
}
.footer__copy {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    opacity: 0.4;
}

/* Menu overlay social */
.menu-overlay__social {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 40px;
}
.menu-overlay__social a {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 11px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}
.menu-overlay__social a:hover { opacity: 1; }

/* ════════════════════════════════
   ESTUDIO PAGE
   ════════════════════════════════ */
.estudio-hero {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
}
.estudio-hero__bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
}
.estudio-hero__overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.28);
    z-index: 1;
}
.estudio-hero__logo {
    position: absolute;
    top: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}
.estudio-hero__logo img {
    width: 180px;
    height: auto;
    object-fit: contain;
}
.estudio-hero__content {
    position: absolute;
    bottom: 80px;
    left: 80px;
    z-index: 5;
    color: var(--white);
}
.estudio-hero__label {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5em;
    opacity: 0.7;
}
.estudio-hero__title {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: clamp(40px, 6vw, 72px);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin: 12px 0 8px;
    line-height: 1.1;
}
.estudio-hero__sub {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    opacity: 0.7;
}

/* Estudio Intro */
.estudio-intro {
    background: var(--white);
    padding: var(--section-pad) 0;
}
.estudio-intro__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 48px;
    text-align: center;
}
.estudio-intro__label {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5em;
    opacity: 0.5;
}
.estudio-intro__title {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: clamp(32px, 4vw, 56px);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin: 16px 0 0;
}
.estudio-intro__cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    text-align: left;
}
.estudio-intro__cols p {
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 16px;
}

/* Estudio Services */
.estudio-services {
    background: var(--black);
    padding: 0;
}
.estudio-services__item {
    display: grid;
    grid-template-columns: 55% 45%;
    min-height: 500px;
}
.estudio-services__item--reverse {
    direction: rtl;
}
.estudio-services__item--reverse > * {
    direction: ltr;
}
.estudio-services__img {
    overflow: hidden;
    height: 100%;
}
.estudio-services__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}
.estudio-services__item:hover .estudio-services__img img {
    transform: scale(1.03);
}
.estudio-services__text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px;
    color: var(--white);
}
.estudio-services__num {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 48px;
    opacity: 0.2;
    letter-spacing: 0.1em;
}
.estudio-services__title {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: clamp(28px, 3vw, 40px);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin: 8px 0 24px;
}
.estudio-services__text p {
    font-size: 15px;
    line-height: 1.9;
    opacity: 0.8;
}

/* Estudio CTA */
.estudio-cta {
    background: var(--black);
    padding: var(--section-pad) 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.estudio-cta__inner {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 24px;
}
.estudio-cta__title {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: clamp(36px, 5vw, 64px);
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 24px;
}
.estudio-cta__desc {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 15px;
    color: var(--white);
    opacity: 0.7;
    line-height: 1.9;
    margin-bottom: 48px;
}
.estudio-cta__actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.estudio-cta__info {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.estudio-cta__info span {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 12px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    opacity: 0.5;
}

/* ════════════════════════════════
   SERVICIOS PAGE
   ════════════════════════════════ */
.svc-hero {
    position: relative; width: 100%; height: 45vh; min-height: 340px;
    background: var(--black); display: flex; align-items: flex-end; overflow: hidden;
}
.svc-hero__overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.svc-hero__content { position: relative; z-index: 5; padding: 80px; color: var(--white); }
.svc-hero__label {
    font-family: var(--font-body); font-weight: 300; font-size: 11px;
    text-transform: uppercase; letter-spacing: 0.5em; opacity: 0.6;
}
.svc-hero__title {
    font-family: var(--font-heading); font-weight: 300; font-size: clamp(48px, 8vw, 96px);
    text-transform: uppercase; letter-spacing: 0.15em; margin-top: 8px; line-height: 1;
}
.svc-section { padding: var(--section-pad) 0; }
.svc-section--white { background: var(--white); color: var(--black); }
.svc-section--black { background: var(--black); color: var(--white); }
.svc-section__header { max-width: 700px; margin: 0 auto 64px; text-align: center; padding: 0 24px; }
.svc-section__num {
    font-family: var(--font-heading); font-weight: 300; font-size: 48px;
    opacity: 0.15; letter-spacing: 0.1em; display: block; margin-bottom: 8px;
}
.svc-section__title {
    font-family: var(--font-heading); font-weight: 300; font-size: clamp(36px, 5vw, 64px);
    text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 24px;
}
.svc-section__desc { font-family: var(--font-body); font-weight: 300; font-size: 15px; line-height: 1.9; opacity: 0.7; }

/* Masonry Gallery */
.svc-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    padding: 0 10px;
}
.svc-gallery__item {
    height: 260px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}
.svc-gallery__item::after {
    content: '+';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0);
    transition: all 0.5s ease;
    pointer-events: none;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-heading);
    font-size: 36px; font-weight: 300;
    color: var(--white);
    opacity: 0;
}
.svc-gallery__item:hover::after {
    background: rgba(0,0,0,0.4);
    opacity: 1;
}
.svc-gallery__item img {
    width: 100%; height: 100%; object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.svc-gallery__item:hover img { transform: scale(1.12); }

/* YouTube Lite Embed */
.svc-video { max-width: 1100px; margin: 0 auto; padding: 0 10px; }
.svc-video__player {
    position: relative; width: 100%; aspect-ratio: 16/9;
    overflow: hidden; cursor: pointer; background: var(--black);
}
.svc-video__player img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.svc-video__player:hover img { transform: scale(1.03); }
.svc-video__play {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
    width: 80px; height: 80px; border: 2px solid var(--white);
    display: flex; align-items: center; justify-content: center; transition: var(--ease); z-index: 2;
}
.svc-video__player:hover .svc-video__play { background: var(--white); }
.svc-video__player:hover .svc-video__play svg { fill: var(--black); }
.svc-video__player iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }

/* Lightbox */
.lightbox {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.95); z-index: 2000;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: opacity 0.4s ease;
}
.lightbox.active { opacity: 1; pointer-events: all; }
.lightbox__img { max-width: 90vw; max-height: 85vh; object-fit: contain; width: auto; height: auto; }
.lightbox__close {
    position: absolute; top: 32px; right: 40px; font-size: 36px; color: var(--white);
    cursor: pointer; opacity: 0.7; transition: opacity 0.3s ease; z-index: 2001; font-weight: 300;
}
.lightbox__close:hover { opacity: 1; }
.lightbox__prev, .lightbox__next {
    position: absolute; top: 50%; transform: translateY(-50%); font-size: 48px;
    color: var(--white); cursor: pointer; opacity: 0.5; transition: opacity 0.3s ease;
    z-index: 2001; user-select: none; padding: 20px; font-weight: 300;
}
.lightbox__prev:hover, .lightbox__next:hover { opacity: 1; }
.lightbox__prev { left: 16px; }
.lightbox__next { right: 16px; }

/* ════════════════════════════════
   RESPONSIVE
   ════════════════════════════════ */
@media (max-width: 1024px) {
    .about { grid-template-columns: 1fr; min-height: auto; }
    .about__text { padding: 80px 48px; }
    .about__image { height: 60vh; overflow: hidden; }
    .about__image img { height: 100%; bottom: 0; }
    .cta__box { width: 65%; padding: 60px; }
    .portafolio__grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .portafolio__card { height: 340px; }
    .svc-gallery { columns: 2; }
}
@media (max-width: 768px) {
    :root { --section-pad: 80px; }
    .hero__logo { width: 120px; top: 28px; }
    .hero__menu { top: 32px; right: 20px; }
    .hero__menu span { width: 28px; }
    .hero__location { bottom: 24px; left: 20px; font-size: 10px; }
    .servicios__title { font-size: 32px; padding: 0 16px; }
    .servicios__row { grid-template-columns: 1fr; gap: 8px; padding: 0 8px; }
    .servicios__card--short, .servicios__card--tall { height: 280px; margin-top: 0; }
    .divider { margin: 24px auto 40px; }
    .about__text { padding: 60px 24px; }
    .about__title { font-size: 28px; }
    .about__desc { font-size: 14px; }
    .about__image { height: 50vh; overflow: hidden; }
    .about__image img { bottom: 0; height: 100%; }
    .stats { height: auto; padding: 80px 24px; background-attachment: scroll; }
    .stats__inner { flex-direction: column; gap: 40px; }
    .stats__number { font-size: 60px; }
    .stats__number--large { font-size: 72px; }
    .stats__sep { width: 70px; height: 1px; }
    .portafolio__title { font-size: 32px; }
    .portafolio__grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .portafolio__card { height: 240px; }
    .portafolio__btn { margin-top: 48px; }
    .cta { height: auto; min-height: auto; }
    .cta__bar-left, .cta__bar-right { display: none; }
    .cta__bg { left: 0; width: 100%; height: 300px; position: relative; }
    .cta__box { position: relative; left: 0; top: 0; transform: none; width: 100%; max-width: 100%; padding: 48px 24px; }
    .cta__title { font-size: 28px; }
    .menu-overlay__nav a { font-size: 28px; }
    .menu-overlay__nav li { margin: 20px 0; }
    .menu-overlay__close { top: 32px; right: 24px; }
    .menu-overlay__social { gap: 24px; bottom: 32px; }
    .menu-overlay__social a { font-size: 10px; }
    .footer { padding: 60px 24px 36px; }
    .footer__logo { font-size: 24px; letter-spacing: 0.3em; margin-bottom: 32px; }
    .footer__links { gap: 16px 24px; margin-bottom: 32px; }
    .footer__links a { font-size: 10px; }
    .footer__social { gap: 24px; margin-bottom: 32px; }
    .estudio-hero { height: 50vh; min-height: 360px; }
    .estudio-hero__content { bottom: 40px; left: 24px; }
    .estudio-hero__logo img { width: 120px; }
    .estudio-intro__inner { padding: 0 24px; }
    .estudio-intro__cols { grid-template-columns: 1fr; gap: 24px; }
    .estudio-services__item { grid-template-columns: 1fr; min-height: auto; }
    .estudio-services__item--reverse { direction: ltr; }
    .estudio-services__img { height: 300px; }
    .estudio-services__text { padding: 48px 24px; }
    .svc-hero__content { padding: 48px 24px; }
    .svc-gallery { grid-template-columns: repeat(3, 1fr); }
    .svc-gallery__item { height: 200px; }
    .svc-section__header { margin-bottom: 40px; }
    .svc-video__play { width: 60px; height: 60px; }
    .lightbox__prev, .lightbox__next { font-size: 36px; }
}
@media (max-width: 480px) {
    .hero__logo { width: 100px; top: 24px; }
    .servicios__card--short, .servicios__card--tall { height: 240px; }
    .about__title { font-size: 24px; }
    .portafolio__card { height: 220px; }
    .stats__number { font-size: 48px; }
    .stats__number--large { font-size: 56px; }
    .cta__box { padding: 36px 20px; }
    .btn { padding: 14px 32px; font-size: 11px; }
    .estudio-hero__content { bottom: 32px; left: 20px; }
    .estudio-hero__logo img { width: 100px; }
    .estudio-services__img { height: 240px; }
    .svc-gallery { grid-template-columns: repeat(2, 1fr); }
    .svc-gallery__item { height: 180px; }
    .svc-hero { min-height: 280px; }
    .svc-hero__content { padding: 32px 20px; }
    .svc-video__play { width: 48px; height: 48px; }
    .lightbox__prev { left: 4px; }
    .lightbox__next { right: 4px; }
    /* Contact page */
    .contacto-grid { grid-template-columns: 1fr; }
    .contacto-info { padding: 48px 24px; }
    .contacto-form { padding: 48px 24px; }
}

/* ════════════════════════════════
   CONTACTO PAGE
   ════════════════════════════════ */
.contacto-grid {
    display: grid;
    grid-template-columns: 40% 60%;
    min-height: 80vh;
}
.contacto-info {
    background: var(--black);
    color: var(--white);
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.contacto-info__label {
    font-family: var(--font-body); font-weight: 300; font-size: 11px;
    text-transform: uppercase; letter-spacing: 0.5em; opacity: 0.5;
}
.contacto-info__title {
    font-family: var(--font-heading); font-weight: 300;
    font-size: clamp(36px, 4vw, 56px); text-transform: uppercase;
    letter-spacing: 0.15em; margin: 16px 0 32px; line-height: 1.1;
}
.contacto-info__desc {
    font-size: 15px; line-height: 1.9; opacity: 0.7; margin-bottom: 48px;
}
.contacto-info__items { display: flex; flex-direction: column; gap: 20px; }
.contacto-info__item {
    font-family: var(--font-body); font-weight: 300; font-size: 13px;
    text-transform: uppercase; letter-spacing: 0.3em; opacity: 0.6;
}
.contacto-info__item a { transition: opacity 0.3s ease; }
.contacto-info__item a:hover { opacity: 1; }
.contacto-info__social {
    display: flex; gap: 24px; margin-top: 48px;
}
.contacto-info__social a {
    color: var(--white); opacity: 0.4; transition: opacity 0.3s ease; display: flex;
}
.contacto-info__social a:hover { opacity: 1; }
.contacto-form {
    background: var(--white);
    padding: 80px;
    display: flex; flex-direction: column; justify-content: center;
}
.contacto-form__title {
    font-family: var(--font-heading); font-weight: 300;
    font-size: 28px; text-transform: uppercase;
    letter-spacing: 0.15em; margin-bottom: 48px;
}
.contacto-form__group { margin-bottom: 32px; }
.contacto-form__label {
    display: block; font-family: var(--font-body); font-weight: 300;
    font-size: 11px; text-transform: uppercase; letter-spacing: 0.3em;
    margin-bottom: 12px; opacity: 0.5;
}
.contacto-form__input,
.contacto-form__textarea {
    width: 100%; font-family: var(--font-body); font-weight: 300;
    font-size: 15px; padding: 16px 0; border: none;
    border-bottom: 1px solid rgba(0,0,0,0.2);
    background: transparent; color: var(--black);
    transition: border-color 0.3s ease; outline: none;
    border-radius: 0 !important;
}
.contacto-form__input:focus,
.contacto-form__textarea:focus {
    border-bottom-color: var(--black);
}
.contacto-form__textarea { resize: vertical; min-height: 120px; line-height: 1.7; }
.contacto-form__submit {
    margin-top: 16px;
}
