:root {
    --bg-start: #d0d0d6;
    --bg-mid: #87878d;
    --bg-end: #1a1a1a;
    --panel: rgba(255,255,255,0.88);
    --text: #1f1f1f;
    --muted: #666666;
    --line: #d9d9d9;
    --red: #b32121;
    --shadow: 0 16px 40px rgba(0,0,0,0.08);
    --radius: 20px;
    --whatsapp: #25D366;
    --footer-bg: #585858;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Inter', Arial, Helvetica, sans-serif;
    color: var(--text);
    background: linear-gradient(315deg, var(--bg-start) 0%, var(--bg-mid) 50%, var(--bg-end) 100%);
}
body::after {
    content: '';
    position: fixed;
    inset: -20%;
    background: linear-gradient(115deg, transparent 28%, rgba(255,255,255,0.26) 42%, rgba(255,255,255,0.46) 50%, rgba(255,255,255,0.22) 58%, transparent 72%);
    transform: translateX(-150%) translateY(-8%) rotate(8deg);
    animation: sheen 18s linear infinite;
    pointer-events: none;
    z-index: 0;
}
@keyframes sheen {
    0% { transform: translateX(-150%) translateY(-6%) rotate(8deg); }
    100% { transform: translateX(150%) translateY(6%) rotate(8deg); }
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.cine { color: var(--red); }

.site-shell {
    position: relative;
    z-index: 1;
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
    min-height: 100vh;
    padding: 20px 0 28px;
}

.site-header {
    position: sticky;
    top: 12px;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    border: 1px solid rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.brand,
.page-brand-title {
    text-decoration: none;
    color: var(--text);
    font-size: clamp(26px, 4vw, 44px);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin: 0;
}

.actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lang-switcher,
.menu-switcher {
    position: relative;
}

.icon-button {
    width: 48px;
    height: 48px;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 14px;
    cursor: pointer;
    display: grid;
    place-items: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.hamburger { width: 20px; }
.hamburger span {
    display: block;
    height: 2px;
    background: #111;
    margin: 4px 0;
    border-radius: 2px;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.dropdown-panel,
.menu-drawer {
    position: fixed;
    top: 88px;
    right: 16px;
    width: min(320px, calc(100vw - 32px));
    background: rgba(255,255,255,0.94);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.8);
    border-radius: 20px;
    padding: 18px;
    box-shadow: var(--shadow);
    display: none;
    z-index: 40;
}
.dropdown-panel.is-open,
.menu-drawer.is-open { display: block; }

.dropdown-link,
.menu-item > a {
    display: block;
    width: 100%;
    text-align: left;
    color: var(--text);
    padding: 12px 14px;
    border-radius: 12px;
    margin: 4px 0;
}
.dropdown-link:hover,
.menu-item > a:hover,
.menu-item.is-active > a { background: #efefef; }

.menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.menu-item.has-children > .menu-list {
    margin-left: 14px;
    padding-left: 10px;
    border-left: 1px solid var(--line);
}

.hero-block,
.content-block {
    position: relative;
    margin: 26px 0;
    padding: 24px;
    background: var(--panel);
    border: 1px solid rgba(255,255,255,0.7);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.hero-block {
    margin-top: 72px;
}
.eyebrow {
    margin: 0 0 10px;
    color: var(--muted);
    letter-spacing: 0.16em;
    font-size: 12px;
    font-weight: 700;
}
h1 {
    margin: 0;
    font-size: clamp(27px, 4.8vw, 58px);
    line-height: 0.95;
    letter-spacing: -0.05em;
    max-width: 900px;
}
.lead,
.text-column p {
    font-size: 18px;
    line-height: 1.75;
    color: #4f4f4f;
}
.lead { max-width: 760px; margin-top: 18px; }
.content-block {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
    align-items: center;
}
.content-block.media-left { grid-template-columns: 0.9fr 1.1fr; }
.content-block.media-left .media-column { order: -1; }

.content-block.no-media {
    grid-template-columns: 1fr;
}
.content-block.no-media .text-column {
    width: 100%;
}
.text-column h2 {
    margin: 0 0 12px;
    font-size: clamp(24px, 3vw, 34px);
    letter-spacing: -0.03em;
}
.text-column p {
    margin: 0;
    white-space: normal;
}
.single-panel .text-column p { white-space: pre-line; }
.section-intro { margin-bottom: 22px; }
.media-column > img,
.image-placeholder,
.gallery-frame,
.gallery-stage {
    width: 100%;
    aspect-ratio: 3 / 2;
    border-radius: 18px;
    border: 1px dashed #bdbdbd;
    background: linear-gradient(135deg, #f5f5f5, #e9e9e9);
    overflow: hidden;
}
.video-stage,
.video-placeholder {
    width: 100%;
    aspect-ratio: var(--media-aspect-ratio, 25 / 9);
    border-radius: 18px;
    border: 1px dashed #bdbdbd;
    background: linear-gradient(135deg, #f5f5f5, #e9e9e9);
    overflow: hidden;
}
.media-column > img,
.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.image-placeholder,
.video-placeholder,
.gallery-stage {
    display: grid;
    place-items: center;
    color: #888;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.gallery-player,
.video-player {
    position: relative;
    width: 100%;
}
.gallery-frame {
    position: relative;
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f5f5, #e9e9e9);
    border: 1px solid rgba(0,0,0,0.08);
}
.video-frame {
    position: relative;
    width: 100%;
}
.gallery-stage,
.video-stage,
.video-placeholder {
    width: 100%;
    border-radius: 18px;
}
.gallery-stage {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: block;
    border: 0;
    background: transparent;
    aspect-ratio: 3 / 2;
}
.gallery-image {
    display: block;
    user-select: none;
    -webkit-user-drag: none;
}
.video-stage {
    display: block;
    width: 100%;
    aspect-ratio: var(--media-aspect-ratio, 25 / 9);
    min-height: 0;
    object-fit: contain;
    background: #111;
    border: 1px dashed #bdbdbd;
}
.video-placeholder,
.image-placeholder {
    display: grid;
    place-items: center;
    color: #888;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.08em;
}
.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 140px;
    border: 0;
    background: rgba(0,0,0,0.20);
    color: #fff;
    cursor: pointer;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    line-height: 1;
    transition: background 0.2s ease;
}
.gallery-arrow:hover { background: rgba(0,0,0,0.32); }
.gallery-arrow.prev { left: 0; border-radius: 0 16px 16px 0; }
.gallery-arrow.next { right: 0; border-radius: 16px 0 0 16px; }

.content-block.media-below {
    grid-template-columns: 1fr;
}
.content-block.media-below .media-column {
    width: 100%;
}
.content-block.media-below .video-frame,
.content-block.media-below .video-player {
    width: 100%;
}
.content-block.media-below .text-column {
    width: 100%;
}
.contact-panel .media-column { display: none; }
.contact-panel { grid-template-columns: 1fr; }
.inline-whatsapp { margin-top: 18px; }

.site-footer {
    margin: 32px 0 12px;
    padding: 26px;
    background: #585858;
    color: #fff;
    border-radius: 24px;
}
.site-footer h2 {
    margin: 0 0 10px;
    font-size: 24px;
}
.whatsapp-link {
    color: #fff;
    text-decoration: none;
    display: inline-block;
    padding: 10px 14px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    margin-top: 8px;
    background: var(--whatsapp);
    font-weight: 600;
}


.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.82);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 32px;
}
.lightbox.is-open { display: flex; }
.lightbox-stage {
    position: relative;
    width: min(1200px, 100%);
    height: min(86vh, 900px);
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox-stage img,
.lightbox-stage video {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.lightbox-close,
.lightbox-arrow {
    position: absolute;
    border: 0;
    color: #fff;
    cursor: pointer;
    z-index: 3;
}
.lightbox-close {
    top: 18px;
    right: 18px;
    width: 48px;
    height: 48px;
    border-radius: 999px;
    background: rgba(255,255,255,0.18);
    font-size: 28px;
}
.lightbox-arrow {
    top: 50%;
    transform: translateY(-50%);
    width: 58px;
    height: 160px;
    background: rgba(255,255,255,0.16);
    font-size: 34px;
}
.lightbox-arrow.prev { left: 18px; border-radius: 0 18px 18px 0; }
.lightbox-arrow.next { right: 18px; border-radius: 18px 0 0 18px; }

@media (max-width: 840px) {
    .site-shell { width: min(100% - 20px, 1200px); }
    .content-block,
    .content-block.media-left {
        grid-template-columns: 1fr;
    }
    .content-block.media-left .media-column { order: 0; }
    .hero-block { margin-top: 44px; }
    .dropdown-panel,
    .menu-drawer {
        top: 78px;
    }
    .gallery-frame,
    .gallery-stage { aspect-ratio: 3 / 2; }
    .gallery-image { height: 100%; }
    .gallery-arrow {
        width: 48px;
        height: 110px;
    }
    .lightbox { padding: 14px; }
    .lightbox-arrow {
        width: 46px;
        height: 110px;
    }
}
